ETH Price: $3,545.26 (+6.56%)

Token

Unibridge (UNIB)
 

Overview

Max Total Supply

10,000,000 UNIB

Holders

96

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: UNIB 8
Balance
7,763,756.333274921334738653 UNIB

Value
$0.00
0xc2f7fb41cfd5642d69114ac2283052f3665cecb0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Unibridge

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 9 : Unibridge.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
import 'solmate/src/tokens/ERC20.sol';
import 'solmate/src/utils/SafeTransferLib.sol';
import 'solmate/src/auth/Owned.sol';
import 'solmate/src/tokens/WETH.sol';

enum TRANSFER_TYPE {
  BUY,
  SELL,
  TRANSFER
}

contract Unibridge is ERC20, Owned {
  using SafeTransferLib for ERC20;

  modifier checkTaxes(uint256 _tax) {
    if (_tax > maxTax) revert TaxTooHigh();
    _;
  }

  modifier onlyAllowed() {
    if (msg.sender != deployer && msg.sender != owner) revert NotAllowed();
    _;
  }

  error NotTrading();
  error TaxTooHigh();
  error NotAllowed();
  error InvalidAddress();
  error MaxWallet();

  IUniswapV2Router02 internal constant router =
    IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
  WETH internal immutable weth;

  IUniswapV2Factory internal immutable factory;
  IUniswapV2Pair public immutable pair;

  address internal immutable deployer;
  address public treasury;

  uint256 public constant TOTAL_SUPPLY = 10_000_000 ether;
  uint256 internal constant MAX_SELL_CHUNK = TOTAL_SUPPLY / 100;

  uint256 public maxTax = 50; // 5%
  uint256 public maxWallet = TOTAL_SUPPLY / 100; // 1%

  uint256 public buyTax = 0;
  uint256 public sellTax = 0;
  bool public tradingEnabled;
  uint256 public tradingStart;
  uint256 internal rand;

  mapping(address => uint256) public boughtAt;

  constructor(
    string memory _name,
    string memory _symbol
  ) ERC20(_name, _symbol, 18) Owned(msg.sender) {
    weth = WETH(payable(router.WETH()));
    factory = IUniswapV2Factory(router.factory());
    pair = IUniswapV2Pair(factory.createPair(address(this), address(weth)));
    _mint(msg.sender, TOTAL_SUPPLY);
    approve(address(router), type(uint256).max);
    approve(address(this), type(uint256).max);
    deployer = msg.sender;
  }

  function setBuyTax(uint256 _tax) external onlyAllowed checkTaxes(_tax) {
    buyTax = _tax;
  }

  function setSellTax(uint256 _tax) external onlyAllowed checkTaxes(_tax) {
    sellTax = _tax;
  }

  function enableTrading() external onlyAllowed {
    tradingEnabled = true;
    tradingStart = block.number;
    rand = block.prevrandao;
  }

  function removeWalletLimit() external onlyAllowed {
    maxWallet = type(uint256).max;
  }

  function setTreasury(address _treasury) external onlyAllowed {
    treasury = _treasury;
  }

  function _transferHook(
    address from,
    address to,
    uint256 amount
  ) internal override returns (uint256) {
    (bool allowed, TRANSFER_TYPE transferType, bool skipTax) = _isAllowedToTrade(from, to, amount);

    if (!allowed) revert NotTrading();

    if (transferType == TRANSFER_TYPE.BUY && !skipTax) {
      if (boughtAt[to] == 0) boughtAt[to] = block.number;
      uint256 tax = (amount * buyTax) / 1000;
      amount -= tax;
      balanceOf[address(this)] += tax;
    } else if (transferType == TRANSFER_TYPE.SELL) {
      if (!skipTax) {
        uint256 tax = (amount * _sellTax(from)) / 1000;
        amount -= tax;
        balanceOf[address(this)] += tax;
      }
      _sellChunk();
    }

    return amount;
  }

  function _isAllowedToTrade(
    address _from,
    address _to,
    uint256 _amount
  ) internal view returns (bool allowed, TRANSFER_TYPE transferType, bool skipTax) {
    if (_from == deployer || _from == owner || _from == treasury || _from == address(this))
      return (true, TRANSFER_TYPE.TRANSFER, true);
    if (_to == deployer || _to == owner || _to == treasury || _to == address(this))
      return (true, TRANSFER_TYPE.TRANSFER, true);
    if (_from == address(pair) && tradingEnabled) {
      if (balanceOf[_to] + _amount >= maxWallet) revert MaxWallet();
      return (true, TRANSFER_TYPE.BUY, (false || buyTax == 0));
    }
    if (_to == address(pair) && tradingEnabled)
      return (true, TRANSFER_TYPE.SELL, ((false || (sellTax == 0 && !_checkSnipe(_from)))));

    return (false, TRANSFER_TYPE.TRANSFER, false);
  }

  function _sellChunk() internal {
    allowance[address(this)][address(router)] = type(uint256).max;
    uint256 balance = balanceOf[address(this)];
    if (balance > MAX_SELL_CHUNK) balance = MAX_SELL_CHUNK;
    if (balance == 0) return;

    address[] memory path = new address[](2);
    path[0] = address(this);
    path[1] = address(weth);

    router.swapExactTokensForETHSupportingFeeOnTransferTokens(
      balance,
      0,
      path,
      treasury,
      block.timestamp
    );
  }

  function _checkSnipe(address _holder) internal view returns (bool) {
    bool _boughtAtStart = (boughtAt[_holder] > 0 && boughtAt[_holder] - tradingStart <= 5);

    return
      block.chainid == 1 &&
      block.prevrandao != rand &&
      block.coinbase.balance > 0.5 ether &&
      _boughtAtStart;
  }

  function _sellTax(address _holder) internal view returns (uint256) {
    if (_checkSnipe(_holder)) {
      return 800;
    }
    return sellTax;
  }
}

File 2 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 3 of 9 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 4 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 5 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 6 of 9 : Owned.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

/// @notice Simple single owner authorization mixin.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol)
abstract contract Owned {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event OwnershipTransferred(address indexed user, address indexed newOwner);

    /*//////////////////////////////////////////////////////////////
                            OWNERSHIP STORAGE
    //////////////////////////////////////////////////////////////*/

    address public owner;

    modifier onlyOwner() virtual {
        require(msg.sender == owner, "UNAUTHORIZED");

        _;
    }

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(address _owner) {
        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    /*//////////////////////////////////////////////////////////////
                             OWNERSHIP LOGIC
    //////////////////////////////////////////////////////////////*/

    function transferOwnership(address newOwner) public virtual onlyOwner {
        owner = newOwner;

        emit OwnershipTransferred(msg.sender, newOwner);
    }
}

File 7 of 9 : ERC20.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed from, address indexed to, uint256 amount);

    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /*//////////////////////////////////////////////////////////////
                            METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    uint8 public immutable decimals;

    /*//////////////////////////////////////////////////////////////
                              ERC20 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 public totalSupply;

    mapping(address => uint256) public balanceOf;

    mapping(address => mapping(address => uint256)) public allowance;

    /*//////////////////////////////////////////////////////////////
                            EIP-2612 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 internal immutable INITIAL_CHAIN_ID;

    bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;

        INITIAL_CHAIN_ID = block.chainid;
        INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
    }

    /*//////////////////////////////////////////////////////////////
                               ERC20 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 amount) public virtual returns (bool) {
        allowance[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);

        return true;
    }

    function transfer(address to, uint256 amount) public virtual returns (bool) {
        balanceOf[msg.sender] -= amount;
        amount = _transferHook(msg.sender, to, amount);

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(msg.sender, to, amount);

        return true;
    }

    function _transferHook(address from, address to, uint256 amount) internal virtual returns (uint256 amountTo) {
        return amount;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.

        if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;
        balanceOf[from] -= amount;
        amount = _transferHook(from, to, amount);

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(from, to, amount);

        return true;
    }

    /*//////////////////////////////////////////////////////////////
                             EIP-2612 LOGIC
    //////////////////////////////////////////////////////////////*/

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");

        // Unchecked because the only math done is incrementing
        // the owner's nonce which cannot realistically overflow.
        unchecked {
            address recoveredAddress = ecrecover(
                keccak256(
                    abi.encodePacked(
                        "\x19\x01",
                        DOMAIN_SEPARATOR(),
                        keccak256(
                            abi.encode(
                                keccak256(
                                    "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
                                ),
                                owner,
                                spender,
                                value,
                                nonces[owner]++,
                                deadline
                            )
                        )
                    )
                ),
                v,
                r,
                s
            );

            require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");

            allowance[recoveredAddress][spender] = value;
        }

        emit Approval(owner, spender, value);
    }

    function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
        return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
    }

    function computeDomainSeparator() internal view virtual returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                    keccak256(bytes(name)),
                    keccak256("1"),
                    block.chainid,
                    address(this)
                )
            );
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 amount) internal virtual {
        totalSupply += amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(address(0), to, amount);
    }

    function _burn(address from, uint256 amount) internal virtual {
        balanceOf[from] -= amount;

        // Cannot underflow because a user's balance
        // will never be larger than the total supply.
        unchecked {
            totalSupply -= amount;
        }

        emit Transfer(from, address(0), amount);
    }
}

File 8 of 9 : WETH.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

import {ERC20} from "./ERC20.sol";

import {SafeTransferLib} from "../utils/SafeTransferLib.sol";

/// @notice Minimalist and modern Wrapped Ether implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/WETH.sol)
/// @author Inspired by WETH9 (https://github.com/dapphub/ds-weth/blob/master/src/weth9.sol)
contract WETH is ERC20("Wrapped Ether", "WETH", 18) {
    using SafeTransferLib for address;

    event Deposit(address indexed from, uint256 amount);

    event Withdrawal(address indexed to, uint256 amount);

    function deposit() public payable virtual {
        _mint(msg.sender, msg.value);

        emit Deposit(msg.sender, msg.value);
    }

    function withdraw(uint256 amount) public virtual {
        _burn(msg.sender, amount);

        emit Withdrawal(msg.sender, amount);

        msg.sender.safeTransferETH(amount);
    }

    receive() external payable virtual {
        deposit();
    }
}

File 9 of 9 : SafeTransferLib.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

import {ERC20} from "../tokens/ERC20.sol";

/// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol)
/// @dev Use with caution! Some functions in this library knowingly create dirty bits at the destination of the free memory pointer.
/// @dev Note that none of the functions in this library check that a token has code at all! That responsibility is delegated to the caller.
library SafeTransferLib {
    /*//////////////////////////////////////////////////////////////
                             ETH OPERATIONS
    //////////////////////////////////////////////////////////////*/

    function safeTransferETH(address to, uint256 amount) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Transfer the ETH and store if it succeeded or not.
            success := call(gas(), to, amount, 0, 0, 0, 0)
        }

        require(success, "ETH_TRANSFER_FAILED");
    }

    /*//////////////////////////////////////////////////////////////
                            ERC20 OPERATIONS
    //////////////////////////////////////////////////////////////*/

    function safeTransferFrom(
        ERC20 token,
        address from,
        address to,
        uint256 amount
    ) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Get a pointer to some free memory.
            let freeMemoryPointer := mload(0x40)

            // Write the abi-encoded calldata into memory, beginning with the function selector.
            mstore(freeMemoryPointer, 0x23b872dd00000000000000000000000000000000000000000000000000000000)
            mstore(add(freeMemoryPointer, 4), and(from, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "from" argument.
            mstore(add(freeMemoryPointer, 36), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument.
            mstore(add(freeMemoryPointer, 68), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.

            success := and(
                // Set success to whether the call reverted, if not we check it either
                // returned exactly 1 (can't just be non-zero data), or had no return data.
                or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
                // We use 100 because the length of our calldata totals up like so: 4 + 32 * 3.
                // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
                // Counterintuitively, this call must be positioned second to the or() call in the
                // surrounding and() call or else returndatasize() will be zero during the computation.
                call(gas(), token, 0, freeMemoryPointer, 100, 0, 32)
            )
        }

        require(success, "TRANSFER_FROM_FAILED");
    }

    function safeTransfer(
        ERC20 token,
        address to,
        uint256 amount
    ) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Get a pointer to some free memory.
            let freeMemoryPointer := mload(0x40)

            // Write the abi-encoded calldata into memory, beginning with the function selector.
            mstore(freeMemoryPointer, 0xa9059cbb00000000000000000000000000000000000000000000000000000000)
            mstore(add(freeMemoryPointer, 4), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument.
            mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.

            success := and(
                // Set success to whether the call reverted, if not we check it either
                // returned exactly 1 (can't just be non-zero data), or had no return data.
                or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
                // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.
                // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
                // Counterintuitively, this call must be positioned second to the or() call in the
                // surrounding and() call or else returndatasize() will be zero during the computation.
                call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
            )
        }

        require(success, "TRANSFER_FAILED");
    }

    function safeApprove(
        ERC20 token,
        address to,
        uint256 amount
    ) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Get a pointer to some free memory.
            let freeMemoryPointer := mload(0x40)

            // Write the abi-encoded calldata into memory, beginning with the function selector.
            mstore(freeMemoryPointer, 0x095ea7b300000000000000000000000000000000000000000000000000000000)
            mstore(add(freeMemoryPointer, 4), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument.
            mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.

            success := and(
                // Set success to whether the call reverted, if not we check it either
                // returned exactly 1 (can't just be non-zero data), or had no return data.
                or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
                // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.
                // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
                // Counterintuitively, this call must be positioned second to the or() call in the
                // surrounding and() call or else returndatasize() will be zero during the computation.
                call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
            )
        }

        require(success, "APPROVE_FAILED");
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"MaxWallet","type":"error"},{"inputs":[],"name":"NotAllowed","type":"error"},{"inputs":[],"name":"NotTrading","type":"error"},{"inputs":[],"name":"TaxTooHigh","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"boughtAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

610160604052603260085560646a084595161401484a00000061002291906106f4565b6009556000600a556000600b5534801561003b57600080fd5b50604051613ccd380380613ccd833981810160405281019061005d919061089a565b338282601282600090816100719190610b29565b5081600190816100819190610b29565b508060ff1660808160ff16815250504660a081815250506100a661043e60201b60201c565b60c0818152505050505080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101d09190610c59565b73ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610262573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102869190610c59565b73ffffffffffffffffffffffffffffffffffffffff166101008173ffffffffffffffffffffffffffffffffffffffff16815250506101005173ffffffffffffffffffffffffffffffffffffffff1663c9c653963060e0516040518363ffffffff1660e01b81526004016102fa929190610c95565b6020604051808303816000875af1158015610319573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061033d9190610c59565b73ffffffffffffffffffffffffffffffffffffffff166101208173ffffffffffffffffffffffffffffffffffffffff168152505061038c336a084595161401484a0000006104ca60201b60201c565b6103d0737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61059a60201b60201c565b50610401307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61059a60201b60201c565b503373ffffffffffffffffffffffffffffffffffffffff166101408173ffffffffffffffffffffffffffffffffffffffff16815250505050610e42565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516104709190610d61565b60405180910390207fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc646306040516020016104af959493929190610da0565b60405160208183030381529060405280519060200120905090565b80600260008282546104dc9190610df3565b9250508190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161058e9190610e27565b60405180910390a35050565b600081600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161067a9190610e27565b60405180910390a36001905092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006106ff8261068c565b915061070a8361068c565b92508261071a57610719610696565b5b828204905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61078c82610743565b810181811067ffffffffffffffff821117156107ab576107aa610754565b5b80604052505050565b60006107be610725565b90506107ca8282610783565b919050565b600067ffffffffffffffff8211156107ea576107e9610754565b5b6107f382610743565b9050602081019050919050565b60005b8381101561081e578082015181840152602081019050610803565b60008484015250505050565b600061083d610838846107cf565b6107b4565b9050828152602081018484840111156108595761085861073e565b5b610864848285610800565b509392505050565b600082601f83011261088157610880610739565b5b815161089184826020860161082a565b91505092915050565b600080604083850312156108b1576108b061072f565b5b600083015167ffffffffffffffff8111156108cf576108ce610734565b5b6108db8582860161086c565b925050602083015167ffffffffffffffff8111156108fc576108fb610734565b5b6109088582860161086c565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061096457607f821691505b6020821081036109775761097661091d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026109df7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826109a2565b6109e986836109a2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000610a26610a21610a1c8461068c565b610a01565b61068c565b9050919050565b6000819050919050565b610a4083610a0b565b610a54610a4c82610a2d565b8484546109af565b825550505050565b600090565b610a69610a5c565b610a74818484610a37565b505050565b5b81811015610a9857610a8d600082610a61565b600181019050610a7a565b5050565b601f821115610add57610aae8161097d565b610ab784610992565b81016020851015610ac6578190505b610ada610ad285610992565b830182610a79565b50505b505050565b600082821c905092915050565b6000610b0060001984600802610ae2565b1980831691505092915050565b6000610b198383610aef565b9150826002028217905092915050565b610b3282610912565b67ffffffffffffffff811115610b4b57610b4a610754565b5b610b55825461094c565b610b60828285610a9c565b600060209050601f831160018114610b935760008415610b81578287015190505b610b8b8582610b0d565b865550610bf3565b601f198416610ba18661097d565b60005b82811015610bc957848901518255600182019150602085019450602081019050610ba4565b86831015610be65784890151610be2601f891682610aef565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610c2682610bfb565b9050919050565b610c3681610c1b565b8114610c4157600080fd5b50565b600081519050610c5381610c2d565b92915050565b600060208284031215610c6f57610c6e61072f565b5b6000610c7d84828501610c44565b91505092915050565b610c8f81610c1b565b82525050565b6000604082019050610caa6000830185610c86565b610cb76020830184610c86565b9392505050565b600081905092915050565b60008190508160005260206000209050919050565b60008154610ceb8161094c565b610cf58186610cbe565b94506001821660008114610d105760018114610d2557610d58565b60ff1983168652811515820286019350610d58565b610d2e85610cc9565b60005b83811015610d5057815481890152600182019150602081019050610d31565b838801955050505b50505092915050565b6000610d6d8284610cde565b915081905092915050565b6000819050919050565b610d8b81610d78565b82525050565b610d9a8161068c565b82525050565b600060a082019050610db56000830188610d82565b610dc26020830187610d82565b610dcf6040830186610d82565b610ddc6060830185610d91565b610de96080830184610c86565b9695505050505050565b6000610dfe8261068c565b9150610e098361068c565b9250828201905080821115610e2157610e206106c5565b5b92915050565b6000602082019050610e3c6000830184610d91565b92915050565b60805160a05160c05160e051610100516101205161014051612dfc610ed160003960008181610a7301528181610b7f01528181610eb0015281816112b901528181611407015281816119640152611aaf015260008181610d6b01528181611bfa0152611d080152600050506000611fbc015260006109bf0152600061098b015260006109650152612dfc6000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638cd09d5011610104578063cc1776d3116100a2578063f0f4426011610071578063f0f4426014610512578063f11743f61461052e578063f2fde38b1461054c578063f8b45b0514610568576101cf565b8063cc1776d31461048c578063d505accf146104aa578063dc1052e2146104c6578063dd62ed3e146104e2576101cf565b806395d89b41116100de57806395d89b4114610416578063a8aa1b3114610434578063a9059cbb14610452578063b144896f14610482576101cf565b80638cd09d50146103be5780638da5cb5b146103da578063902d55a5146103f8576101cf565b80634f7041a5116101715780636d8813c51161014b5780636d8813c51461033657806370a08231146103545780637ecebe00146103845780638a8c523c146103b4576101cf565b80634f7041a5146102ca5780635ccbd0b2146102e857806361d027b314610318576101cf565b806323b872dd116101ad57806323b872dd14610240578063313ce567146102705780633644e5151461028e5780634ada218b146102ac576101cf565b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610222575b600080fd5b6101dc610586565b6040516101e99190612256565b60405180910390f35b61020c60048036038101906102079190612311565b610614565b604051610219919061236c565b60405180910390f35b61022a610706565b6040516102379190612396565b60405180910390f35b61025a600480360381019061025591906123b1565b61070c565b604051610267919061236c565b60405180910390f35b610278610963565b6040516102859190612420565b60405180910390f35b610296610987565b6040516102a39190612454565b60405180910390f35b6102b46109e4565b6040516102c1919061236c565b60405180910390f35b6102d26109f7565b6040516102df9190612396565b60405180910390f35b61030260048036038101906102fd919061246f565b6109fd565b60405161030f9190612396565b60405180910390f35b610320610a15565b60405161032d91906124ab565b60405180910390f35b61033e610a3b565b60405161034b9190612396565b60405180910390f35b61036e6004803603810190610369919061246f565b610a41565b60405161037b9190612396565b60405180910390f35b61039e6004803603810190610399919061246f565b610a59565b6040516103ab9190612396565b60405180910390f35b6103bc610a71565b005b6103d860048036038101906103d391906124c6565b610b7d565b005b6103e2610ca6565b6040516103ef91906124ab565b60405180910390f35b610400610ccc565b60405161040d9190612396565b60405180910390f35b61041e610cdb565b60405161042b9190612256565b60405180910390f35b61043c610d69565b6040516104499190612552565b60405180910390f35b61046c60048036038101906104679190612311565b610d8d565b604051610479919061236c565b60405180910390f35b61048a610eae565b005b610494610fb8565b6040516104a19190612396565b60405180910390f35b6104c460048036038101906104bf91906125c5565b610fbe565b005b6104e060048036038101906104db91906124c6565b6112b7565b005b6104fc60048036038101906104f79190612667565b6113e0565b6040516105099190612396565b60405180910390f35b61052c6004803603810190610527919061246f565b611405565b005b61053661152a565b6040516105439190612396565b60405180910390f35b6105666004803603810190610561919061246f565b611530565b005b61057061165e565b60405161057d9190612396565b60405180910390f35b60008054610593906126d6565b80601f01602080910402602001604051908101604052809291908181526020018280546105bf906126d6565b801561060c5780601f106105e15761010080835404028352916020019161060c565b820191906000526020600020905b8154815290600101906020018083116105ef57829003601f168201915b505050505081565b600081600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516106f49190612396565b60405180910390a36001905092915050565b60025481565b600080600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108425782816107c19190612736565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b82600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108919190612736565b925050819055506108a3858585611664565b925082600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161094f9190612396565b60405180910390a360019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f000000000000000000000000000000000000000000000000000000000000000046146109bd576109b86118d1565b6109df565b7f00000000000000000000000000000000000000000000000000000000000000005b905090565b600c60009054906101000a900460ff1681565b600a5481565b600f6020528060005260406000206000915090505481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b60036020528060005260406000206000915090505481565b60056020528060005260406000206000915090505481565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b1b5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610b52576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600c60006101000a81548160ff02191690831515021790555043600d8190555044600e81905550565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610c275750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c5e576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600854811115610c9b576040517faf1ee13400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b819055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6a084595161401484a00000081565b60018054610ce8906126d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d14906126d6565b8015610d615780601f10610d3657610100808354040283529160200191610d61565b820191906000526020600020905b815481529060010190602001808311610d4457829003601f168201915b505050505081565b7f000000000000000000000000000000000000000000000000000000000000000081565b600081600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dde9190612736565b92505081905550610df0338484611664565b915081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e9c9190612396565b60405180910390a36001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610f585750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610f8f576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600981905550565b600b5481565b42841015611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff8906127b6565b60405180910390fd5b6000600161100d610987565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98a8a8a600560008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050558b604051602001611095969594939291906127d6565b604051602081830303815290604052805190602001206040516020016110bc9291906128af565b60405160208183030381529060405280519060200120858585604051600081526020016040526040516110f294939291906128e6565b6020604051602081039080840390855afa158015611114573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561118857508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b6111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90612977565b60405180910390fd5b85600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516112a69190612396565b60405180910390a350505050505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156113615750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15611398576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008548111156113d5576040517faf1ee13400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600a819055505050565b6004602052816000526040600020602052806000526040600020600091509150505481565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156114af5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b156114e6576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b7906129e3565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b60095481565b60008060008061167587878761195d565b925092509250826116b2576040517f0bc3bfc600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060028111156116c6576116c5612a03565b5b8260028111156116d9576116d8612a03565b5b1480156116e4575080155b156117fe576000600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054036117755743600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60006103e8600a54876117889190612a32565b6117929190612aa3565b905080866117a09190612736565b955080600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117f19190612ad4565b92505081905550506118c4565b6001600281111561181257611811612a03565b5b82600281111561182557611824612a03565b5b036118c357806118ba5760006103e861183d89611db7565b876118489190612a32565b6118529190612aa3565b905080866118609190612736565b955080600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118b19190612ad4565b92505081905550505b6118c2611ddc565b5b5b8493505050509392505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516119039190612bab565b60405180910390207fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc64630604051602001611942959493929190612bc2565b60405160208183030381529060405280519060200120905090565b60008060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480611a095750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80611a615750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80611a9757503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b15611aad57600160026001925092509250611dae565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611b545750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80611bac5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80611be257503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15611bf857600160026001925092509250611dae565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611c5f5750600c60009054906101000a900460ff165b15611d065760095484600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb29190612ad4565b10611ce9576040517f4a4a9a6800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160008080611cfb57506000600a54145b925092509250611dae565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015611d6d5750600c60009054906101000a900460ff165b15611da157600180600080611d9657506000600b54148015611d955750611d93886120d8565b155b5b925092509250611dae565b6000600260009250925092505b93509350939050565b6000611dc2826120d8565b15611dd1576103209050611dd7565b600b5490505b919050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060646a084595161401484a000000611eed9190612aa3565b811115611f0f5760646a084595161401484a000000611f0c9190612aa3565b90505b60008103611f1d57506120d6565b6000600267ffffffffffffffff811115611f3a57611f39612c15565b5b604051908082528060200260200182016040528015611f685781602001602082028036833780820191505090505b5090503081600081518110611f8057611f7f612c44565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110611fef57611fee612c44565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016120a1959493929190612d6c565b600060405180830381600087803b1580156120bb57600080fd5b505af11580156120cf573d6000803e3d6000fd5b5050505050505b565b6000806000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411801561217757506005600d54600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121749190612736565b11155b905060014614801561218b5750600e544414155b80156121b557506706f05b59d3b200004173ffffffffffffffffffffffffffffffffffffffff1631115b80156121be5750805b915050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122005780820151818401526020810190506121e5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612228826121c6565b61223281856121d1565b93506122428185602086016121e2565b61224b8161220c565b840191505092915050565b60006020820190508181036000830152612270818461221d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122a88261227d565b9050919050565b6122b88161229d565b81146122c357600080fd5b50565b6000813590506122d5816122af565b92915050565b6000819050919050565b6122ee816122db565b81146122f957600080fd5b50565b60008135905061230b816122e5565b92915050565b6000806040838503121561232857612327612278565b5b6000612336858286016122c6565b9250506020612347858286016122fc565b9150509250929050565b60008115159050919050565b61236681612351565b82525050565b6000602082019050612381600083018461235d565b92915050565b612390816122db565b82525050565b60006020820190506123ab6000830184612387565b92915050565b6000806000606084860312156123ca576123c9612278565b5b60006123d8868287016122c6565b93505060206123e9868287016122c6565b92505060406123fa868287016122fc565b9150509250925092565b600060ff82169050919050565b61241a81612404565b82525050565b60006020820190506124356000830184612411565b92915050565b6000819050919050565b61244e8161243b565b82525050565b60006020820190506124696000830184612445565b92915050565b60006020828403121561248557612484612278565b5b6000612493848285016122c6565b91505092915050565b6124a58161229d565b82525050565b60006020820190506124c0600083018461249c565b92915050565b6000602082840312156124dc576124db612278565b5b60006124ea848285016122fc565b91505092915050565b6000819050919050565b600061251861251361250e8461227d565b6124f3565b61227d565b9050919050565b600061252a826124fd565b9050919050565b600061253c8261251f565b9050919050565b61254c81612531565b82525050565b60006020820190506125676000830184612543565b92915050565b61257681612404565b811461258157600080fd5b50565b6000813590506125938161256d565b92915050565b6125a28161243b565b81146125ad57600080fd5b50565b6000813590506125bf81612599565b92915050565b600080600080600080600060e0888a0312156125e4576125e3612278565b5b60006125f28a828b016122c6565b97505060206126038a828b016122c6565b96505060406126148a828b016122fc565b95505060606126258a828b016122fc565b94505060806126368a828b01612584565b93505060a06126478a828b016125b0565b92505060c06126588a828b016125b0565b91505092959891949750929550565b6000806040838503121561267e5761267d612278565b5b600061268c858286016122c6565b925050602061269d858286016122c6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126ee57607f821691505b602082108103612701576127006126a7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612741826122db565b915061274c836122db565b925082820390508181111561276457612763612707565b5b92915050565b7f5045524d49545f444541444c494e455f45585049524544000000000000000000600082015250565b60006127a06017836121d1565b91506127ab8261276a565b602082019050919050565b600060208201905081810360008301526127cf81612793565b9050919050565b600060c0820190506127eb6000830189612445565b6127f8602083018861249c565b612805604083018761249c565b6128126060830186612387565b61281f6080830185612387565b61282c60a0830184612387565b979650505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000612878600283612837565b915061288382612842565b600282019050919050565b6000819050919050565b6128a96128a48261243b565b61288e565b82525050565b60006128ba8261286b565b91506128c68285612898565b6020820191506128d68284612898565b6020820191508190509392505050565b60006080820190506128fb6000830187612445565b6129086020830186612411565b6129156040830185612445565b6129226060830184612445565b95945050505050565b7f494e56414c49445f5349474e4552000000000000000000000000000000000000600082015250565b6000612961600e836121d1565b915061296c8261292b565b602082019050919050565b6000602082019050818103600083015261299081612954565b9050919050565b7f554e415554484f52495a45440000000000000000000000000000000000000000600082015250565b60006129cd600c836121d1565b91506129d882612997565b602082019050919050565b600060208201905081810360008301526129fc816129c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000612a3d826122db565b9150612a48836122db565b9250828202612a56816122db565b91508282048414831517612a6d57612a6c612707565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612aae826122db565b9150612ab9836122db565b925082612ac957612ac8612a74565b5b828204905092915050565b6000612adf826122db565b9150612aea836122db565b9250828201905080821115612b0257612b01612707565b5b92915050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612b35816126d6565b612b3f8186612b08565b94506001821660008114612b5a5760018114612b6f57612ba2565b60ff1983168652811515820286019350612ba2565b612b7885612b13565b60005b83811015612b9a57815481890152600182019150602081019050612b7b565b838801955050505b50505092915050565b6000612bb78284612b28565b915081905092915050565b600060a082019050612bd76000830188612445565b612be46020830187612445565b612bf16040830186612445565b612bfe6060830185612387565b612c0b608083018461249c565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000612c98612c93612c8e84612c73565b6124f3565b6122db565b9050919050565b612ca881612c7d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ce38161229d565b82525050565b6000612cf58383612cda565b60208301905092915050565b6000602082019050919050565b6000612d1982612cae565b612d238185612cb9565b9350612d2e83612cca565b8060005b83811015612d5f578151612d468882612ce9565b9750612d5183612d01565b925050600181019050612d32565b5085935050505092915050565b600060a082019050612d816000830188612387565b612d8e6020830187612c9f565b8181036040830152612da08186612d0e565b9050612daf606083018561249c565b612dbc6080830184612387565b969550505050505056fea264697066735822122034bdfc07dd3955f399f0a35991a3e5adca6b310f0426833ce0d7ecac4c06c9ff64736f6c634300081b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009556e6962726964676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004554e494200000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638cd09d5011610104578063cc1776d3116100a2578063f0f4426011610071578063f0f4426014610512578063f11743f61461052e578063f2fde38b1461054c578063f8b45b0514610568576101cf565b8063cc1776d31461048c578063d505accf146104aa578063dc1052e2146104c6578063dd62ed3e146104e2576101cf565b806395d89b41116100de57806395d89b4114610416578063a8aa1b3114610434578063a9059cbb14610452578063b144896f14610482576101cf565b80638cd09d50146103be5780638da5cb5b146103da578063902d55a5146103f8576101cf565b80634f7041a5116101715780636d8813c51161014b5780636d8813c51461033657806370a08231146103545780637ecebe00146103845780638a8c523c146103b4576101cf565b80634f7041a5146102ca5780635ccbd0b2146102e857806361d027b314610318576101cf565b806323b872dd116101ad57806323b872dd14610240578063313ce567146102705780633644e5151461028e5780634ada218b146102ac576101cf565b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610222575b600080fd5b6101dc610586565b6040516101e99190612256565b60405180910390f35b61020c60048036038101906102079190612311565b610614565b604051610219919061236c565b60405180910390f35b61022a610706565b6040516102379190612396565b60405180910390f35b61025a600480360381019061025591906123b1565b61070c565b604051610267919061236c565b60405180910390f35b610278610963565b6040516102859190612420565b60405180910390f35b610296610987565b6040516102a39190612454565b60405180910390f35b6102b46109e4565b6040516102c1919061236c565b60405180910390f35b6102d26109f7565b6040516102df9190612396565b60405180910390f35b61030260048036038101906102fd919061246f565b6109fd565b60405161030f9190612396565b60405180910390f35b610320610a15565b60405161032d91906124ab565b60405180910390f35b61033e610a3b565b60405161034b9190612396565b60405180910390f35b61036e6004803603810190610369919061246f565b610a41565b60405161037b9190612396565b60405180910390f35b61039e6004803603810190610399919061246f565b610a59565b6040516103ab9190612396565b60405180910390f35b6103bc610a71565b005b6103d860048036038101906103d391906124c6565b610b7d565b005b6103e2610ca6565b6040516103ef91906124ab565b60405180910390f35b610400610ccc565b60405161040d9190612396565b60405180910390f35b61041e610cdb565b60405161042b9190612256565b60405180910390f35b61043c610d69565b6040516104499190612552565b60405180910390f35b61046c60048036038101906104679190612311565b610d8d565b604051610479919061236c565b60405180910390f35b61048a610eae565b005b610494610fb8565b6040516104a19190612396565b60405180910390f35b6104c460048036038101906104bf91906125c5565b610fbe565b005b6104e060048036038101906104db91906124c6565b6112b7565b005b6104fc60048036038101906104f79190612667565b6113e0565b6040516105099190612396565b60405180910390f35b61052c6004803603810190610527919061246f565b611405565b005b61053661152a565b6040516105439190612396565b60405180910390f35b6105666004803603810190610561919061246f565b611530565b005b61057061165e565b60405161057d9190612396565b60405180910390f35b60008054610593906126d6565b80601f01602080910402602001604051908101604052809291908181526020018280546105bf906126d6565b801561060c5780601f106105e15761010080835404028352916020019161060c565b820191906000526020600020905b8154815290600101906020018083116105ef57829003601f168201915b505050505081565b600081600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516106f49190612396565b60405180910390a36001905092915050565b60025481565b600080600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108425782816107c19190612736565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b82600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108919190612736565b925050819055506108a3858585611664565b925082600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161094f9190612396565b60405180910390a360019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000001281565b60007f000000000000000000000000000000000000000000000000000000000000000146146109bd576109b86118d1565b6109df565b7fb56eb4ec50e7eeef0381840719e7d112b176c9062f190311fddf348a7ee108725b905090565b600c60009054906101000a900460ff1681565b600a5481565b600f6020528060005260406000206000915090505481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b60036020528060005260406000206000915090505481565b60056020528060005260406000206000915090505481565b7f0000000000000000000000004b9a5971e016fd8391fbe86b5ea077e53d889d6273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b1b5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610b52576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600c60006101000a81548160ff02191690831515021790555043600d8190555044600e81905550565b7f0000000000000000000000004b9a5971e016fd8391fbe86b5ea077e53d889d6273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610c275750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c5e576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600854811115610c9b576040517faf1ee13400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b819055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6a084595161401484a00000081565b60018054610ce8906126d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d14906126d6565b8015610d615780601f10610d3657610100808354040283529160200191610d61565b820191906000526020600020905b815481529060010190602001808311610d4457829003601f168201915b505050505081565b7f000000000000000000000000c2f7fb41cfd5642d69114ac2283052f3665cecb081565b600081600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dde9190612736565b92505081905550610df0338484611664565b915081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e9c9190612396565b60405180910390a36001905092915050565b7f0000000000000000000000004b9a5971e016fd8391fbe86b5ea077e53d889d6273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610f585750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610f8f576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600981905550565b600b5481565b42841015611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff8906127b6565b60405180910390fd5b6000600161100d610987565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98a8a8a600560008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050558b604051602001611095969594939291906127d6565b604051602081830303815290604052805190602001206040516020016110bc9291906128af565b60405160208183030381529060405280519060200120858585604051600081526020016040526040516110f294939291906128e6565b6020604051602081039080840390855afa158015611114573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561118857508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b6111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90612977565b60405180910390fd5b85600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516112a69190612396565b60405180910390a350505050505050565b7f0000000000000000000000004b9a5971e016fd8391fbe86b5ea077e53d889d6273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156113615750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15611398576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008548111156113d5576040517faf1ee13400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600a819055505050565b6004602052816000526040600020602052806000526040600020600091509150505481565b7f0000000000000000000000004b9a5971e016fd8391fbe86b5ea077e53d889d6273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156114af5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b156114e6576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b7906129e3565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b60095481565b60008060008061167587878761195d565b925092509250826116b2576040517f0bc3bfc600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060028111156116c6576116c5612a03565b5b8260028111156116d9576116d8612a03565b5b1480156116e4575080155b156117fe576000600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054036117755743600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60006103e8600a54876117889190612a32565b6117929190612aa3565b905080866117a09190612736565b955080600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117f19190612ad4565b92505081905550506118c4565b6001600281111561181257611811612a03565b5b82600281111561182557611824612a03565b5b036118c357806118ba5760006103e861183d89611db7565b876118489190612a32565b6118529190612aa3565b905080866118609190612736565b955080600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118b19190612ad4565b92505081905550505b6118c2611ddc565b5b5b8493505050509392505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516119039190612bab565b60405180910390207fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc64630604051602001611942959493929190612bc2565b60405160208183030381529060405280519060200120905090565b60008060007f0000000000000000000000004b9a5971e016fd8391fbe86b5ea077e53d889d6273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480611a095750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80611a615750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80611a9757503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b15611aad57600160026001925092509250611dae565b7f0000000000000000000000004b9a5971e016fd8391fbe86b5ea077e53d889d6273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611b545750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80611bac5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80611be257503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15611bf857600160026001925092509250611dae565b7f000000000000000000000000c2f7fb41cfd5642d69114ac2283052f3665cecb073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611c5f5750600c60009054906101000a900460ff165b15611d065760095484600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb29190612ad4565b10611ce9576040517f4a4a9a6800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160008080611cfb57506000600a54145b925092509250611dae565b7f000000000000000000000000c2f7fb41cfd5642d69114ac2283052f3665cecb073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015611d6d5750600c60009054906101000a900460ff165b15611da157600180600080611d9657506000600b54148015611d955750611d93886120d8565b155b5b925092509250611dae565b6000600260009250925092505b93509350939050565b6000611dc2826120d8565b15611dd1576103209050611dd7565b600b5490505b919050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060646a084595161401484a000000611eed9190612aa3565b811115611f0f5760646a084595161401484a000000611f0c9190612aa3565b90505b60008103611f1d57506120d6565b6000600267ffffffffffffffff811115611f3a57611f39612c15565b5b604051908082528060200260200182016040528015611f685781602001602082028036833780820191505090505b5090503081600081518110611f8057611f7f612c44565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110611fef57611fee612c44565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016120a1959493929190612d6c565b600060405180830381600087803b1580156120bb57600080fd5b505af11580156120cf573d6000803e3d6000fd5b5050505050505b565b6000806000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411801561217757506005600d54600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121749190612736565b11155b905060014614801561218b5750600e544414155b80156121b557506706f05b59d3b200004173ffffffffffffffffffffffffffffffffffffffff1631115b80156121be5750805b915050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122005780820151818401526020810190506121e5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612228826121c6565b61223281856121d1565b93506122428185602086016121e2565b61224b8161220c565b840191505092915050565b60006020820190508181036000830152612270818461221d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122a88261227d565b9050919050565b6122b88161229d565b81146122c357600080fd5b50565b6000813590506122d5816122af565b92915050565b6000819050919050565b6122ee816122db565b81146122f957600080fd5b50565b60008135905061230b816122e5565b92915050565b6000806040838503121561232857612327612278565b5b6000612336858286016122c6565b9250506020612347858286016122fc565b9150509250929050565b60008115159050919050565b61236681612351565b82525050565b6000602082019050612381600083018461235d565b92915050565b612390816122db565b82525050565b60006020820190506123ab6000830184612387565b92915050565b6000806000606084860312156123ca576123c9612278565b5b60006123d8868287016122c6565b93505060206123e9868287016122c6565b92505060406123fa868287016122fc565b9150509250925092565b600060ff82169050919050565b61241a81612404565b82525050565b60006020820190506124356000830184612411565b92915050565b6000819050919050565b61244e8161243b565b82525050565b60006020820190506124696000830184612445565b92915050565b60006020828403121561248557612484612278565b5b6000612493848285016122c6565b91505092915050565b6124a58161229d565b82525050565b60006020820190506124c0600083018461249c565b92915050565b6000602082840312156124dc576124db612278565b5b60006124ea848285016122fc565b91505092915050565b6000819050919050565b600061251861251361250e8461227d565b6124f3565b61227d565b9050919050565b600061252a826124fd565b9050919050565b600061253c8261251f565b9050919050565b61254c81612531565b82525050565b60006020820190506125676000830184612543565b92915050565b61257681612404565b811461258157600080fd5b50565b6000813590506125938161256d565b92915050565b6125a28161243b565b81146125ad57600080fd5b50565b6000813590506125bf81612599565b92915050565b600080600080600080600060e0888a0312156125e4576125e3612278565b5b60006125f28a828b016122c6565b97505060206126038a828b016122c6565b96505060406126148a828b016122fc565b95505060606126258a828b016122fc565b94505060806126368a828b01612584565b93505060a06126478a828b016125b0565b92505060c06126588a828b016125b0565b91505092959891949750929550565b6000806040838503121561267e5761267d612278565b5b600061268c858286016122c6565b925050602061269d858286016122c6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126ee57607f821691505b602082108103612701576127006126a7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612741826122db565b915061274c836122db565b925082820390508181111561276457612763612707565b5b92915050565b7f5045524d49545f444541444c494e455f45585049524544000000000000000000600082015250565b60006127a06017836121d1565b91506127ab8261276a565b602082019050919050565b600060208201905081810360008301526127cf81612793565b9050919050565b600060c0820190506127eb6000830189612445565b6127f8602083018861249c565b612805604083018761249c565b6128126060830186612387565b61281f6080830185612387565b61282c60a0830184612387565b979650505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000612878600283612837565b915061288382612842565b600282019050919050565b6000819050919050565b6128a96128a48261243b565b61288e565b82525050565b60006128ba8261286b565b91506128c68285612898565b6020820191506128d68284612898565b6020820191508190509392505050565b60006080820190506128fb6000830187612445565b6129086020830186612411565b6129156040830185612445565b6129226060830184612445565b95945050505050565b7f494e56414c49445f5349474e4552000000000000000000000000000000000000600082015250565b6000612961600e836121d1565b915061296c8261292b565b602082019050919050565b6000602082019050818103600083015261299081612954565b9050919050565b7f554e415554484f52495a45440000000000000000000000000000000000000000600082015250565b60006129cd600c836121d1565b91506129d882612997565b602082019050919050565b600060208201905081810360008301526129fc816129c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000612a3d826122db565b9150612a48836122db565b9250828202612a56816122db565b91508282048414831517612a6d57612a6c612707565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612aae826122db565b9150612ab9836122db565b925082612ac957612ac8612a74565b5b828204905092915050565b6000612adf826122db565b9150612aea836122db565b9250828201905080821115612b0257612b01612707565b5b92915050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612b35816126d6565b612b3f8186612b08565b94506001821660008114612b5a5760018114612b6f57612ba2565b60ff1983168652811515820286019350612ba2565b612b7885612b13565b60005b83811015612b9a57815481890152600182019150602081019050612b7b565b838801955050505b50505092915050565b6000612bb78284612b28565b915081905092915050565b600060a082019050612bd76000830188612445565b612be46020830187612445565b612bf16040830186612445565b612bfe6060830185612387565b612c0b608083018461249c565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000612c98612c93612c8e84612c73565b6124f3565b6122db565b9050919050565b612ca881612c7d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ce38161229d565b82525050565b6000612cf58383612cda565b60208301905092915050565b6000602082019050919050565b6000612d1982612cae565b612d238185612cb9565b9350612d2e83612cca565b8060005b83811015612d5f578151612d468882612ce9565b9750612d5183612d01565b925050600181019050612d32565b5085935050505092915050565b600060a082019050612d816000830188612387565b612d8e6020830187612c9f565b8181036040830152612da08186612d0e565b9050612daf606083018561249c565b612dbc6080830184612387565b969550505050505056fea264697066735822122034bdfc07dd3955f399f0a35991a3e5adca6b310f0426833ce0d7ecac4c06c9ff64736f6c634300081b0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009556e6962726964676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004554e494200000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Unibridge
Arg [1] : _symbol (string): UNIB

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 556e696272696467650000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 554e494200000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.