ETH Price: $3,076.17 (+1.20%)
Gas: 10 Gwei

Token

Launchpool token (LPOOL)
 

Overview

Max Total Supply

10,000,000 LPOOL

Holders

7,621 ( -0.013%)

Total Transfers

-

Market

Price

$0.36 @ 0.000116 ETH (-3.69%)

Onchain Market Cap

$3,564,970.00

Circulating Supply Market Cap

$3,455,174.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Launchpool believes investment funds and communities work side by side on projects, on the same terms, towards the same goals. Launchpool aims to harness their strengths and aligns their incentives, the sum is greater than its constituent parts.

Market

Volume (24H):$278,714.00
Market Capitalization:$3,455,174.00
Circulating Supply:9,711,446.00 LPOOL
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LaunchPoolToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 1 : LaunchPoolToken.sol
pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;

// Copyright 2020 Compound Labs, Inc.
// Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
// 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
// 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

contract LaunchPoolToken {
    /// @notice EIP-20 token name for this token
    string public constant name = "Launchpool token";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "LPOOL";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    uint public totalSupply;

    /// @notice Allowance amounts on behalf of others
    mapping (address => mapping (address => uint96)) internal allowances;

    /// @notice Official record of token balances for each account
    mapping (address => uint96) internal balances;

    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint96 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint256 amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /**
     * @notice Construct a new Fuel token
     * @param initialSupply The initial supply minted at deployment
     * @param account The initial account to grant all the tokens
     */
    constructor(uint initialSupply, address account) public {
        totalSupply = safe96(initialSupply, "Token::constructor:amount exceeds 96 bits");
        balances[account] = uint96(initialSupply);
        emit Transfer(address(0), account, initialSupply);
    }

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external view returns (uint) {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint rawAmount) external returns (bool) {
        uint96 amount;
        if (rawAmount == uint(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "Token::approve: amount exceeds 96 bits");
        }

        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint) {
        return balances[account];
    }

    /**
     * @notice Burn `amount` tokens
     * @param rawAmount The number of tokens to burn
     */
    function burn(uint rawAmount) external {
        uint96 amount = safe96(rawAmount, "Token::burn: amount exceeds 96 bits");
        _burnTokens(msg.sender, amount);
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint rawAmount) external returns (bool) {
        uint96 amount = safe96(rawAmount, "Token::transfer: amount exceeds 96 bits");
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint rawAmount) external returns (bool) {
        address spender = msg.sender;
        uint96 spenderAllowance = allowances[src][spender];
        uint96 amount = safe96(rawAmount, "Token::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint96(-1)) {
            uint96 newAllowance = sub96(spenderAllowance, amount, "Token::transferFrom: transfer amount exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "Token::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "Token::delegateBySig: invalid nonce");
        require(now <= expiry, "Token::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint96) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber) public view returns (uint96) {
        require(blockNumber < block.number, "Token::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint96 delegatorBalance = balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _transferTokens(address src, address dst, uint96 amount) internal {
        require(src != address(0), "Token::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "Token::_transferTokens: cannot transfer to the zero address");

        balances[src] = sub96(balances[src], amount, "Token::_transferTokens: transfer amount exceeds balance");
        balances[dst] = add96(balances[dst], amount, "Token::_transferTokens: transfer amount overflows");
        emit Transfer(src, dst, amount);

        _moveDelegates(delegates[src], delegates[dst], amount);
    }

    function _mintTokens(address dst, uint96 amount) internal {
        require(dst != address(0), "Token::_mintTokens: cannot transfer to the zero address");
        uint96 supply = safe96(totalSupply, "Token::_mintTokens: totalSupply exceeds 96 bits");
        totalSupply = add96(supply, amount, "Token::_mintTokens: totalSupply exceeds 96 bits");
        balances[dst] = add96(balances[dst], amount, "Token::_mintTokens: transfer amount overflows");
        emit Transfer(address(0), dst, amount);

        _moveDelegates(address(0), delegates[dst], amount);
    }

    function _burnTokens(address src, uint96 amount) internal {
        uint96 supply = safe96(totalSupply, "Token::_burnTokens: totalSupply exceeds 96 bits");
        totalSupply = sub96(supply, amount, "Token::_burnTokens:totalSupply underflow");
        balances[src] = sub96(balances[src], amount, "Token::_burnTokens: amount overflows");
        emit Transfer(src, address(0), amount);

        _moveDelegates(delegates[src], address(0), amount);
    }

    function _moveDelegates(address srcRep, address dstRep, uint96 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint96 srcRepNew = sub96(srcRepOld, amount, "Token::_moveVotes: vote amount underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint96 dstRepNew = add96(dstRepOld, amount, "Token::_moveVotes: vote amount overflows");
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal {
        uint32 blockNumber = safe32(block.number, "Token::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function safe96(uint n, string memory errorMessage) internal pure returns (uint96) {
        require(n < 2**96, errorMessage);
        return uint96(n);
    }

    function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        uint96 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

    function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        require(b <= a, errorMessage);
        return a - b;
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

Settings
{
  "metadata": {
    "useLiteralContent": false
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","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":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","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":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001c1338038062001c1383398101604081905262000034916200011b565b620000598260405180606001604052806029815260200162001bea60299139620000d7565b6001600160601b0390811660009081556001600160a01b0383168082526002602052604080832080546001600160601b0319169487169490941790935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620000c7908690620001ae565b60405180910390a35050620001b7565b6000816c010000000000000000000000008410620001135760405162461bcd60e51b81526004016200010a919062000158565b60405180910390fd5b509192915050565b600080604083850312156200012e578182fd5b825160208401519092506001600160a01b03811681146200014d578182fd5b809150509250929050565b6000602080835283518082850152825b81811015620001865785810183015185820160400152820162000168565b81811115620001985783604083870101525b50601f01601f1916929092016040019392505050565b90815260200190565b611a2380620001c76000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b4b5ea5711610071578063b4b5ea571461027d578063c3cda52014610290578063dd62ed3e146102a3578063e7a324dc146102b6578063f1127ed8146102be5761012c565b806370a082311461021c578063782d6fe11461022f5780637ecebe001461024f57806395d89b4114610262578063a9059cbb1461026a5761012c565b8063313ce567116100f4578063313ce5671461019f57806342966c68146101b4578063587cde1e146101c95780635c19a95c146101e95780636fcfff45146101fc5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461016f57806320606b701461018457806323b872dd1461018c575b600080fd5b6101396102df565b604051610146919061152f565b60405180910390f35b61016261015d3660046113a6565b61030b565b60405161014691906114b5565b6101776103ca565b60405161014691906114c0565b6101776103d0565b61016261019a366004611366565b6103f4565b6101a761053b565b6040516101469190611785565b6101c76101c236600461146e565b610540565b005b6101dc6101d7366004611317565b610574565b60405161014691906114a1565b6101c76101f7366004611317565b61058f565b61020f61020a366004611317565b61059c565b6040516101469190611755565b61017761022a366004611317565b6105b4565b61024261023d3660046113a6565b6105d8565b6040516101469190611793565b61017761025d366004611317565b6107ef565b610139610801565b6101626102783660046113a6565b610822565b61024261028b366004611317565b61085e565b6101c761029e3660046113d0565b6108cf565b6101776102b1366004611332565b610add565b610177610b11565b6102d16102cc36600461142f565b610b35565b604051610146929190611766565b6040518060400160405280601081526020016f2630bab731b43837b7b6103a37b5b2b760811b81525081565b6000806000198314156103215750600019610346565b610343836040518060600160405280602681526020016118a060269139610b6a565b90505b3360008181526001602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103b6908590611793565b60405180910390a360019150505b92915050565b60005481565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b03831660009081526001602090815260408083203380855290835281842054825160608101909352602680845291936001600160601b0390911692859261044c92889291906118a090830139610b6a565b9050866001600160a01b0316836001600160a01b03161415801561047957506001600160601b0382811614155b156105235760006104a383836040518060600160405280603e815260200161180e603e9139610b99565b6001600160a01b038981166000818152600160209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610519908590611793565b60405180910390a3505b61052e878783610bd8565b5060019695505050505050565b601281565b60006105648260405180606001604052806023815260200161184c60239139610b6a565b90506105703382610d83565b5050565b6003602052600090815260409020546001600160a01b031681565b6105993382610eb5565b50565b60056020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600260205260409020546001600160601b031690565b60004382106106025760405162461bcd60e51b81526004016105f990611582565b60405180910390fd5b6001600160a01b03831660009081526005602052604090205463ffffffff16806106305760009150506103c4565b6001600160a01b038416600090815260046020908152604080832063ffffffff6000198601811685529252909120541683106106ac576001600160a01b03841660009081526004602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b031690506103c4565b6001600160a01b038416600090815260046020908152604080832083805290915290205463ffffffff168310156106e75760009150506103c4565b600060001982015b8163ffffffff168163ffffffff1611156107aa57600282820363ffffffff160481036107196112e9565b506001600160a01b038716600090815260046020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610785576020015194506103c49350505050565b805163ffffffff1687111561079c578193506107a3565b6001820392505b50506106ef565b506001600160a01b038516600090815260046020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60066020526000908152604090205481565b60405180604001604052806005815260200164131413d3d360da1b81525081565b6000806108478360405180606001604052806027815260200161194c60279139610b6a565b9050610854338583610bd8565b5060019392505050565b6001600160a01b03811660009081526005602052604081205463ffffffff16806108895760006108c8565b6001600160a01b0383166000908152600460209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03165b9392505050565b60408051808201909152601081526f2630bab731b43837b7b6103a37b5b2b760811b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fdd4b7bd4d33233980ebcf51576dc561a0606dd193cc63dff16467461c11f4967610943610f3f565b3060405160200161095794939291906114ed565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8888886040516020016109a894939291906114c9565b604051602081830303815290604052805190602001209050600082826040516020016109d5929190611486565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610a129493929190611511565b6020604051602081039080840390855afa158015610a34573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610a675760405162461bcd60e51b81526004016105f990611684565b6001600160a01b03811660009081526006602052604090208054600181019091558914610aa65760405162461bcd60e51b81526004016105f9906116cb565b87421115610ac65760405162461bcd60e51b81526004016105f99061170e565b610ad0818b610eb5565b505050505b505050505050565b6001600160a01b0391821660009081526001602090815260408083209390941682529190915220546001600160601b031690565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600460209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b600081600160601b8410610b915760405162461bcd60e51b81526004016105f9919061152f565b509192915050565b6000836001600160601b0316836001600160601b031611158290610bd05760405162461bcd60e51b81526004016105f9919061152f565b505050900390565b6001600160a01b038316610bfe5760405162461bcd60e51b81526004016105f9906115ca565b6001600160a01b038216610c245760405162461bcd60e51b81526004016105f990611627565b6001600160a01b038316600090815260026020908152604091829020548251606081019093526037808452610c6f936001600160601b0390921692859291906117d790830139610b99565b6001600160a01b03848116600090815260026020908152604080832080546001600160601b0319166001600160601b03968716179055928616825290829020548251606081019093526031808452610cd7949190911692859290919061186f90830139610f43565b6001600160a01b038381166000818152600260205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d44908590611793565b60405180910390a36001600160a01b03808416600090815260036020526040808220548584168352912054610d7e92918216911683610f7f565b505050565b6000610da96000546040518060600160405280602f8152602001611973602f9139610b6a565b9050610dce81836040518060600160405280602881526020016119c660289139610b99565b6001600160601b0390811660009081556001600160a01b038516815260026020908152604091829020548251606081019093526024808452610e2094919091169286929091906119a290830139610b99565b6001600160a01b03841660008181526002602052604080822080546001600160601b0319166001600160601b03959095169490941790935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e87908690611793565b60405180910390a36001600160a01b03808416600090815260036020526040812054610d7e92169084610f7f565b6001600160a01b03808316600081815260036020818152604080842080546002845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610f39828483610f7f565b50505050565b4690565b6000838301826001600160601b038087169083161015610f765760405162461bcd60e51b81526004016105f9919061152f565b50949350505050565b816001600160a01b0316836001600160a01b031614158015610faa57506000816001600160601b0316115b15610d7e576001600160a01b03831615611062576001600160a01b03831660009081526005602052604081205463ffffffff169081610fea576000611029565b6001600160a01b0385166000908152600460209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061105082856040518060600160405280602981526020016118fb60299139610b99565b905061105e8684848461110d565b5050505b6001600160a01b03821615610d7e576001600160a01b03821660009081526005602052604081205463ffffffff16908161109d5760006110dc565b6001600160a01b0384166000908152600460209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b90506000611103828560405180606001604052806028815260200161192460289139610f43565b9050610ad5858484845b6000611131436040518060600160405280603581526020016118c6603591396112c2565b905060008463ffffffff1611801561117a57506001600160a01b038516600090815260046020908152604080832063ffffffff6000198901811685529252909120548282169116145b156111d9576001600160a01b0385166000908152600460209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b03851602179055611278565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600483528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600590935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516112b39291906117a7565b60405180910390a25050505050565b600081600160201b8410610b915760405162461bcd60e51b81526004016105f9919061152f565b604080518082019091526000808252602082015290565b80356001600160a01b03811681146103c457600080fd5b600060208284031215611328578081fd5b6108c88383611300565b60008060408385031215611344578081fd5b61134e8484611300565b915061135d8460208501611300565b90509250929050565b60008060006060848603121561137a578081fd5b8335611385816117c1565b92506020840135611395816117c1565b929592945050506040919091013590565b600080604083850312156113b8578182fd5b6113c28484611300565b946020939093013593505050565b60008060008060008060c087890312156113e8578182fd5b6113f28888611300565b95506020870135945060408701359350606087013560ff81168114611415578283fd5b9598949750929560808101359460a0909101359350915050565b60008060408385031215611441578182fd5b61144b8484611300565b9150602083013563ffffffff81168114611463578182fd5b809150509250929050565b60006020828403121561147f578081fd5b5035919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b8181101561155b5785810183015185820160400152820161153f565b8181111561156c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526028908201527f546f6b656e3a3a6765745072696f72566f7465733a206e6f74207965742064656040820152671d195c9b5a5b995960c21b606082015260800190565b6020808252603d908201527f546f6b656e3a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207460408201527f72616e736665722066726f6d20746865207a65726f2061646472657373000000606082015260800190565b6020808252603b908201527f546f6b656e3a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207460408201527f72616e7366657220746f20746865207a65726f20616464726573730000000000606082015260800190565b60208082526027908201527f546f6b656e3a3a64656c656761746542795369673a20696e76616c6964207369604082015266676e617475726560c81b606082015260800190565b60208082526023908201527f546f6b656e3a3a64656c656761746542795369673a20696e76616c6964206e6f6040820152626e636560e81b606082015260800190565b60208082526027908201527f546f6b656e3a3a64656c656761746542795369673a207369676e617475726520604082015266195e1c1a5c995960ca1b606082015260800190565b63ffffffff91909116815260200190565b63ffffffff9290921682526001600160601b0316602082015260400190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b0392831681529116602082015260400190565b6001600160a01b038116811461059957600080fdfe546f6b656e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365546f6b656e3a3a6275726e3a20616d6f756e7420657863656564732039362062697473546f6b656e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773546f6b656e3a3a617070726f76653a20616d6f756e7420657863656564732039362062697473546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473546f6b656e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773546f6b656e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773546f6b656e3a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473546f6b656e3a3a5f6275726e546f6b656e733a20746f74616c537570706c7920657863656564732039362062697473546f6b656e3a3a5f6275726e546f6b656e733a20616d6f756e74206f766572666c6f7773546f6b656e3a3a5f6275726e546f6b656e733a746f74616c537570706c7920756e646572666c6f77a264697066735822122099a3ad263e64aaf613d72a7b80cad2951a99676a057a69cf168b82ee8621ac0d64736f6c634300060c0033546f6b656e3a3a636f6e7374727563746f723a616d6f756e7420657863656564732039362062697473000000000000000000000000000000000000000000084595161401484a000000000000000000000000000000f477f4a37893bc36fbc7e5be0603407cc7f011f4

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b4b5ea5711610071578063b4b5ea571461027d578063c3cda52014610290578063dd62ed3e146102a3578063e7a324dc146102b6578063f1127ed8146102be5761012c565b806370a082311461021c578063782d6fe11461022f5780637ecebe001461024f57806395d89b4114610262578063a9059cbb1461026a5761012c565b8063313ce567116100f4578063313ce5671461019f57806342966c68146101b4578063587cde1e146101c95780635c19a95c146101e95780636fcfff45146101fc5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461016f57806320606b701461018457806323b872dd1461018c575b600080fd5b6101396102df565b604051610146919061152f565b60405180910390f35b61016261015d3660046113a6565b61030b565b60405161014691906114b5565b6101776103ca565b60405161014691906114c0565b6101776103d0565b61016261019a366004611366565b6103f4565b6101a761053b565b6040516101469190611785565b6101c76101c236600461146e565b610540565b005b6101dc6101d7366004611317565b610574565b60405161014691906114a1565b6101c76101f7366004611317565b61058f565b61020f61020a366004611317565b61059c565b6040516101469190611755565b61017761022a366004611317565b6105b4565b61024261023d3660046113a6565b6105d8565b6040516101469190611793565b61017761025d366004611317565b6107ef565b610139610801565b6101626102783660046113a6565b610822565b61024261028b366004611317565b61085e565b6101c761029e3660046113d0565b6108cf565b6101776102b1366004611332565b610add565b610177610b11565b6102d16102cc36600461142f565b610b35565b604051610146929190611766565b6040518060400160405280601081526020016f2630bab731b43837b7b6103a37b5b2b760811b81525081565b6000806000198314156103215750600019610346565b610343836040518060600160405280602681526020016118a060269139610b6a565b90505b3360008181526001602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103b6908590611793565b60405180910390a360019150505b92915050565b60005481565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b03831660009081526001602090815260408083203380855290835281842054825160608101909352602680845291936001600160601b0390911692859261044c92889291906118a090830139610b6a565b9050866001600160a01b0316836001600160a01b03161415801561047957506001600160601b0382811614155b156105235760006104a383836040518060600160405280603e815260200161180e603e9139610b99565b6001600160a01b038981166000818152600160209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610519908590611793565b60405180910390a3505b61052e878783610bd8565b5060019695505050505050565b601281565b60006105648260405180606001604052806023815260200161184c60239139610b6a565b90506105703382610d83565b5050565b6003602052600090815260409020546001600160a01b031681565b6105993382610eb5565b50565b60056020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600260205260409020546001600160601b031690565b60004382106106025760405162461bcd60e51b81526004016105f990611582565b60405180910390fd5b6001600160a01b03831660009081526005602052604090205463ffffffff16806106305760009150506103c4565b6001600160a01b038416600090815260046020908152604080832063ffffffff6000198601811685529252909120541683106106ac576001600160a01b03841660009081526004602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b031690506103c4565b6001600160a01b038416600090815260046020908152604080832083805290915290205463ffffffff168310156106e75760009150506103c4565b600060001982015b8163ffffffff168163ffffffff1611156107aa57600282820363ffffffff160481036107196112e9565b506001600160a01b038716600090815260046020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610785576020015194506103c49350505050565b805163ffffffff1687111561079c578193506107a3565b6001820392505b50506106ef565b506001600160a01b038516600090815260046020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60066020526000908152604090205481565b60405180604001604052806005815260200164131413d3d360da1b81525081565b6000806108478360405180606001604052806027815260200161194c60279139610b6a565b9050610854338583610bd8565b5060019392505050565b6001600160a01b03811660009081526005602052604081205463ffffffff16806108895760006108c8565b6001600160a01b0383166000908152600460209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03165b9392505050565b60408051808201909152601081526f2630bab731b43837b7b6103a37b5b2b760811b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fdd4b7bd4d33233980ebcf51576dc561a0606dd193cc63dff16467461c11f4967610943610f3f565b3060405160200161095794939291906114ed565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8888886040516020016109a894939291906114c9565b604051602081830303815290604052805190602001209050600082826040516020016109d5929190611486565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610a129493929190611511565b6020604051602081039080840390855afa158015610a34573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610a675760405162461bcd60e51b81526004016105f990611684565b6001600160a01b03811660009081526006602052604090208054600181019091558914610aa65760405162461bcd60e51b81526004016105f9906116cb565b87421115610ac65760405162461bcd60e51b81526004016105f99061170e565b610ad0818b610eb5565b505050505b505050505050565b6001600160a01b0391821660009081526001602090815260408083209390941682529190915220546001600160601b031690565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600460209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b600081600160601b8410610b915760405162461bcd60e51b81526004016105f9919061152f565b509192915050565b6000836001600160601b0316836001600160601b031611158290610bd05760405162461bcd60e51b81526004016105f9919061152f565b505050900390565b6001600160a01b038316610bfe5760405162461bcd60e51b81526004016105f9906115ca565b6001600160a01b038216610c245760405162461bcd60e51b81526004016105f990611627565b6001600160a01b038316600090815260026020908152604091829020548251606081019093526037808452610c6f936001600160601b0390921692859291906117d790830139610b99565b6001600160a01b03848116600090815260026020908152604080832080546001600160601b0319166001600160601b03968716179055928616825290829020548251606081019093526031808452610cd7949190911692859290919061186f90830139610f43565b6001600160a01b038381166000818152600260205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d44908590611793565b60405180910390a36001600160a01b03808416600090815260036020526040808220548584168352912054610d7e92918216911683610f7f565b505050565b6000610da96000546040518060600160405280602f8152602001611973602f9139610b6a565b9050610dce81836040518060600160405280602881526020016119c660289139610b99565b6001600160601b0390811660009081556001600160a01b038516815260026020908152604091829020548251606081019093526024808452610e2094919091169286929091906119a290830139610b99565b6001600160a01b03841660008181526002602052604080822080546001600160601b0319166001600160601b03959095169490941790935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e87908690611793565b60405180910390a36001600160a01b03808416600090815260036020526040812054610d7e92169084610f7f565b6001600160a01b03808316600081815260036020818152604080842080546002845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610f39828483610f7f565b50505050565b4690565b6000838301826001600160601b038087169083161015610f765760405162461bcd60e51b81526004016105f9919061152f565b50949350505050565b816001600160a01b0316836001600160a01b031614158015610faa57506000816001600160601b0316115b15610d7e576001600160a01b03831615611062576001600160a01b03831660009081526005602052604081205463ffffffff169081610fea576000611029565b6001600160a01b0385166000908152600460209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061105082856040518060600160405280602981526020016118fb60299139610b99565b905061105e8684848461110d565b5050505b6001600160a01b03821615610d7e576001600160a01b03821660009081526005602052604081205463ffffffff16908161109d5760006110dc565b6001600160a01b0384166000908152600460209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b90506000611103828560405180606001604052806028815260200161192460289139610f43565b9050610ad5858484845b6000611131436040518060600160405280603581526020016118c6603591396112c2565b905060008463ffffffff1611801561117a57506001600160a01b038516600090815260046020908152604080832063ffffffff6000198901811685529252909120548282169116145b156111d9576001600160a01b0385166000908152600460209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b03851602179055611278565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600483528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600590935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516112b39291906117a7565b60405180910390a25050505050565b600081600160201b8410610b915760405162461bcd60e51b81526004016105f9919061152f565b604080518082019091526000808252602082015290565b80356001600160a01b03811681146103c457600080fd5b600060208284031215611328578081fd5b6108c88383611300565b60008060408385031215611344578081fd5b61134e8484611300565b915061135d8460208501611300565b90509250929050565b60008060006060848603121561137a578081fd5b8335611385816117c1565b92506020840135611395816117c1565b929592945050506040919091013590565b600080604083850312156113b8578182fd5b6113c28484611300565b946020939093013593505050565b60008060008060008060c087890312156113e8578182fd5b6113f28888611300565b95506020870135945060408701359350606087013560ff81168114611415578283fd5b9598949750929560808101359460a0909101359350915050565b60008060408385031215611441578182fd5b61144b8484611300565b9150602083013563ffffffff81168114611463578182fd5b809150509250929050565b60006020828403121561147f578081fd5b5035919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b8181101561155b5785810183015185820160400152820161153f565b8181111561156c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526028908201527f546f6b656e3a3a6765745072696f72566f7465733a206e6f74207965742064656040820152671d195c9b5a5b995960c21b606082015260800190565b6020808252603d908201527f546f6b656e3a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207460408201527f72616e736665722066726f6d20746865207a65726f2061646472657373000000606082015260800190565b6020808252603b908201527f546f6b656e3a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207460408201527f72616e7366657220746f20746865207a65726f20616464726573730000000000606082015260800190565b60208082526027908201527f546f6b656e3a3a64656c656761746542795369673a20696e76616c6964207369604082015266676e617475726560c81b606082015260800190565b60208082526023908201527f546f6b656e3a3a64656c656761746542795369673a20696e76616c6964206e6f6040820152626e636560e81b606082015260800190565b60208082526027908201527f546f6b656e3a3a64656c656761746542795369673a207369676e617475726520604082015266195e1c1a5c995960ca1b606082015260800190565b63ffffffff91909116815260200190565b63ffffffff9290921682526001600160601b0316602082015260400190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b0392831681529116602082015260400190565b6001600160a01b038116811461059957600080fdfe546f6b656e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365546f6b656e3a3a6275726e3a20616d6f756e7420657863656564732039362062697473546f6b656e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773546f6b656e3a3a617070726f76653a20616d6f756e7420657863656564732039362062697473546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473546f6b656e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773546f6b656e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773546f6b656e3a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473546f6b656e3a3a5f6275726e546f6b656e733a20746f74616c537570706c7920657863656564732039362062697473546f6b656e3a3a5f6275726e546f6b656e733a20616d6f756e74206f766572666c6f7773546f6b656e3a3a5f6275726e546f6b656e733a746f74616c537570706c7920756e646572666c6f77a264697066735822122099a3ad263e64aaf613d72a7b80cad2951a99676a057a69cf168b82ee8621ac0d64736f6c634300060c0033

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

000000000000000000000000000000000000000000084595161401484a000000000000000000000000000000f477f4a37893bc36fbc7e5be0603407cc7f011f4

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 10000000000000000000000000
Arg [1] : account (address): 0xf477F4a37893Bc36FbC7E5be0603407cc7F011f4

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000084595161401484a000000
Arg [1] : 000000000000000000000000f477f4a37893bc36fbc7e5be0603407cc7f011f4


Deployed Bytecode Sourcemap

1537:14035:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1617:48;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5228:408;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1918:23::-;;;:::i;:::-;;;;;;;:::i;2782:122::-;;;:::i;7010:660::-;;;;;;:::i;:::-;;:::i;1822:35::-;;;:::i;:::-;;;;;;;:::i;6049:169::-;;;;;;:::i;:::-;;:::i;:::-;;2247:45;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7812:100::-;;;;;;:::i;:::-;;:::i;2663:49::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5832:106::-;;;;;;:::i;:::-;;:::i;9953:1187::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3190:39::-;;;;;;:::i;:::-;;:::i;1723:::-;;;:::i;6474:235::-;;;;;;:::i;:::-;;:::i;9312:219::-;;;;;;:::i;:::-;;:::i;8335:783::-;;;;;;:::i;:::-;;:::i;4626:134::-;;;;;;:::i;:::-;;:::i;2995:117::-;;;:::i;2527:70::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;1617:48::-;;;;;;;;;;;;;;-1:-1:-1;;;1617:48:0;;;;:::o;5228:408::-;5296:4;5312:13;-1:-1:-1;;5339:9:0;:21;5335:170;;;-1:-1:-1;;;5335:170:0;;;5435:59;5442:9;5435:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;5426:68;;5335:170;5526:10;5515:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;5515:31:0;;;;;;;;;;;:40;;-1:-1:-1;;;;;;5515:40:0;-1:-1:-1;;;;;5515:40:0;;;;;5571:37;;5515:31;;5526:10;5571:37;;;;5515:40;;5571:37;:::i;:::-;;;;;;;;5625:4;5618:11;;;5228:408;;;;;:::o;1918:23::-;;;;:::o;2782:122::-;2824:80;2782:122;:::o;7010:660::-;-1:-1:-1;;;;;7172:15:0;;7092:4;7172:15;;;:10;:15;;;;;;;;7126:10;7172:24;;;;;;;;;;7222:59;;;;;;;;;;;;7126:10;;-1:-1:-1;;;;;7172:24:0;;;;7092:4;;7222:59;;7229:9;;7222:59;;;;;;;:6;:59::i;:::-;7206:75;;7307:3;-1:-1:-1;;;;;7296:14:0;:7;-1:-1:-1;;;;;7296:14:0;;;:48;;;;-1:-1:-1;;;;;;7314:30:0;;;;;7296:48;7292:307;;;7360:19;7382:97;7388:16;7406:6;7382:97;;;;;;;;;;;;;;;;;:5;:97::i;:::-;-1:-1:-1;;;;;7493:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;;:39;;-1:-1:-1;;;;;;7493:39:0;-1:-1:-1;;;;;7493:39:0;;;;;7552:36;7493:39;;-1:-1:-1;7493:24:0;;7552:36;;;;7493:39;;7552:36;:::i;:::-;;;;;;;;7292:307;;7609:33;7625:3;7630;7635:6;7609:15;:33::i;:::-;-1:-1:-1;7659:4:0;;7010:660;-1:-1:-1;;;;;;7010:660:0:o;1822:35::-;1855:2;1822:35;:::o;6049:169::-;6098:13;6114:56;6121:9;6114:56;;;;;;;;;;;;;;;;;:6;:56::i;:::-;6098:72;;6180:31;6192:10;6204:6;6180:11;:31::i;:::-;6049:169;;:::o;2247:45::-;;;;;;;;;;;;-1:-1:-1;;;;;2247:45:0;;:::o;7812:100::-;7873:32;7883:10;7895:9;7873;:32::i;:::-;7812:100;:::o;2663:49::-;;;;;;;;;;;;;;;:::o;5832:106::-;-1:-1:-1;;;;;5914:17:0;5891:4;5914:17;;;:8;:17;;;;;;-1:-1:-1;;;;;5914:17:0;;5832:106::o;9953:1187::-;10032:6;10072:12;10058:11;:26;10050:79;;;;-1:-1:-1;;;10050:79:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;10162:23:0;;10140:19;10162:23;;;:14;:23;;;;;;;;10199:17;10195:56;;10239:1;10232:8;;;;;10195:56;-1:-1:-1;;;;;10308:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;10329:16:0;;10308:38;;;;;;;;;:48;;:63;-1:-1:-1;10304:145:0;;-1:-1:-1;;;;;10394:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;10415:16:0;;;;10394:38;;;;;;;;:44;-1:-1:-1;;;10394:44:0;;-1:-1:-1;;;;;10394:44:0;;-1:-1:-1;10387:51:0;;10304:145;-1:-1:-1;;;;;10507:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;10503:86:0;;;10577:1;10570:8;;;;;10503:86;10599:12;-1:-1:-1;;10640:16:0;;10666:418;10681:5;10673:13;;:5;:13;;;10666:418;;;10744:1;10727:13;;;10726:19;;;10718:27;;10786:20;;:::i;:::-;-1:-1:-1;;;;;;10809:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;10786:51;;;;;;;;;;;;;;;-1:-1:-1;;;10786:51:0;;;-1:-1:-1;;;;;10786:51:0;;;;;;;;;10855:27;;10851:223;;;10909:8;;;;-1:-1:-1;10902:15:0;;-1:-1:-1;;;;10902:15:0;10851:223;10942:12;;:26;;;-1:-1:-1;10938:136:0;;;10996:6;10988:14;;10938:136;;;11058:1;11049:6;:10;11041:18;;10938:136;10666:418;;;;;-1:-1:-1;;;;;;11100:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;-1:-1:-1;;;;;;;;11100:33:0;;;;;-1:-1:-1;;9953:1187:0;;;;:::o;3190:39::-;;;;;;;;;;;;;:::o;1723:::-;;;;;;;;;;;;;;-1:-1:-1;;;1723:39:0;;;;:::o;6474:235::-;6539:4;6555:13;6571:60;6578:9;6571:60;;;;;;;;;;;;;;;;;:6;:60::i;:::-;6555:76;;6641:40;6657:10;6669:3;6674:6;6641:15;:40::i;:::-;-1:-1:-1;6698:4:0;;6474:235;-1:-1:-1;;;6474:235:0:o;9312:219::-;-1:-1:-1;;;;;9417:23:0;;9377:6;9417:23;;;:14;:23;;;;;;;;9457:16;:67;;9523:1;9457:67;;;-1:-1:-1;;;;;9476:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;9497:16:0;;9476:38;;;;;;;;;:44;-1:-1:-1;;;9476:44:0;;-1:-1:-1;;;;;9476:44:0;9457:67;9450:74;9312:219;-1:-1:-1;;;9312:219:0:o;8335:783::-;8530:4;;;;;;;;;;;;-1:-1:-1;;;8530:4:0;;;;;8450:23;2824:80;8514:22;8538:12;:10;:12::i;:::-;8560:4;8486:80;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8476:91;;;;;;8450:117;;8577:18;3041:71;8640:9;8651:5;8658:6;8608:57;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8598:68;;;;;;8577:89;;8676:14;8732:15;8749:10;8703:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8693:68;;;;;;8676:85;;8771:17;8791:26;8801:6;8809:1;8812;8815;8791:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8791:26:0;;-1:-1:-1;;8791:26:0;;;-1:-1:-1;;;;;;;8835:23:0;;8827:75;;;;-1:-1:-1;;;8827:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8929:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;8920:28;;8912:76;;;;-1:-1:-1;;;8912:76:0;;;;;;;:::i;:::-;9013:6;9006:3;:13;;8998:65;;;;-1:-1:-1;;;8998:65:0;;;;;;;:::i;:::-;9080:31;9090:9;9101;9080;:31::i;:::-;9073:38;;;;8335:783;;;;;;;:::o;4626:134::-;-1:-1:-1;;;;;4725:19:0;;;4702:4;4725:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;-1:-1:-1;;;;;4725:28:0;;4626:134::o;2995:117::-;3041:71;2995:117;:::o;2527:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2527:70:0;;-1:-1:-1;;;;;2527:70:0;;:::o;14899:158::-;14974:6;15011:12;-1:-1:-1;;;15000:9:0;;14992:32;;;;-1:-1:-1;;;14992:32:0;;;;;;;;:::i;:::-;-1:-1:-1;15048:1:0;;14899:158;-1:-1:-1;;14899:158:0:o;15253:162::-;15339:6;15370:1;-1:-1:-1;;;;;15365:6:0;:1;-1:-1:-1;;;;;15365:6:0;;;15373:12;15357:29;;;;;-1:-1:-1;;;15357:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;15403:5:0;;;15253:162::o;11519:609::-;-1:-1:-1;;;;;11612:17:0;;11604:91;;;;-1:-1:-1;;;11604:91:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11713:17:0;;11705:89;;;;-1:-1:-1;;;11705:89:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11827:13:0;;;;;;:8;:13;;;;;;;;;;11821:87;;;;;;;;;;;;;;-1:-1:-1;;;;;11827:13:0;;;;11842:6;;11821:87;;;;;;;:5;:87::i;:::-;-1:-1:-1;;;;;11805:13:0;;;;;;;:8;:13;;;;;;;;:103;;-1:-1:-1;;;;;;11805:103:0;-1:-1:-1;;;;;11805:103:0;;;;;;11940:13;;;;;;;;;;11934:81;;;;;;;;;;;;;;11940:13;;;;;11955:6;;11934:81;;;;;;;;:5;:81::i;:::-;-1:-1:-1;;;;;11918:13:0;;;;;;;:8;:13;;;;;;;:97;;-1:-1:-1;;;;;;11918:97:0;-1:-1:-1;;;;;11918:97:0;;;;;;;;;;;12030:26;;;;;;;;;;12049:6;;12030:26;:::i;:::-;;;;;;;;-1:-1:-1;;;;;12082:14:0;;;;;;;:9;:14;;;;;;;12098;;;;;;;;12067:54;;12082:14;;;;12098;12114:6;12067:14;:54::i;:::-;11519:609;;;:::o;12704:453::-;12772:13;12788:70;12795:11;;12788:70;;;;;;;;;;;;;;;;;:6;:70::i;:::-;12772:86;;12882:65;12888:6;12896;12882:65;;;;;;;;;;;;;;;;;:5;:65::i;:::-;-1:-1:-1;;;;;12868:79:0;;;:11;:79;;;-1:-1:-1;;;;;12979:13:0;;;;:8;:13;;;;;;;;;;12973:68;;;;;;;;;;;;;;12979:13;;;;;12994:6;;12973:68;;;;;;;;:5;:68::i;:::-;-1:-1:-1;;;;;12957:13:0;;;;;;:8;:13;;;;;;:84;;-1:-1:-1;;;;;;12957:84:0;-1:-1:-1;;;;;12957:84:0;;;;;;;;;;;13056:33;;;;;;13082:6;;13056:33;:::i;:::-;;;;;;;;-1:-1:-1;;;;;13115:14:0;;;;;;;:9;:14;;;;;;13100:50;;13115:14;;13143:6;13100:14;:50::i;11146:367::-;-1:-1:-1;;;;;11248:20:0;;;11222:23;11248:20;;;:9;:20;;;;;;;;;;11304:8;:19;;;;;;11333:20;;;;:32;;;-1:-1:-1;;;;;;11333:32:0;;;;;;;11381:54;;11248:20;;;;;-1:-1:-1;;;;;11304:19:0;;;;11333:32;;11248:20;;;11381:54;;11222:23;11381:54;11446:60;11461:15;11478:9;11489:16;11446:14;:60::i;:::-;11146:367;;;;:::o;15421:149::-;15529:9;15421:149;:::o;15063:184::-;15149:6;15178:5;;;15209:12;-1:-1:-1;;;;;15201:6:0;;;;;;;;15193:29;;;;-1:-1:-1;;;15193:29:0;;;;;;;;:::i;:::-;-1:-1:-1;15239:1:0;15063:184;-1:-1:-1;;;;15063:184:0:o;13163:925::-;13267:6;-1:-1:-1;;;;;13257:16:0;:6;-1:-1:-1;;;;;13257:16:0;;;:30;;;;;13286:1;13277:6;-1:-1:-1;;;;;13277:10:0;;13257:30;13253:829;;;-1:-1:-1;;;;;13307:20:0;;;13303:378;;-1:-1:-1;;;;;13366:22:0;;13347:16;13366:22;;;:14;:22;;;;;;;;;13425:13;:60;;13484:1;13425:60;;;-1:-1:-1;;;;;13441:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;13461:13:0;;13441:34;;;;;;;;;:40;-1:-1:-1;;;13441:40:0;;-1:-1:-1;;;;;13441:40:0;13425:60;13406:79;;13503:16;13522:69;13528:9;13539:6;13522:69;;;;;;;;;;;;;;;;;:5;:69::i;:::-;13503:88;;13609:57;13626:6;13634:9;13645;13656;13609:16;:57::i;:::-;13303:378;;;;-1:-1:-1;;;;;13699:20:0;;;13695:377;;-1:-1:-1;;;;;13758:22:0;;13739:16;13758:22;;;:14;:22;;;;;;;;;13817:13;:60;;13876:1;13817:60;;;-1:-1:-1;;;;;13833:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;13853:13:0;;13833:34;;;;;;;;;:40;-1:-1:-1;;;13833:40:0;;-1:-1:-1;;;;;13833:40:0;13817:60;13798:79;;13895:16;13914:68;13920:9;13931:6;13914:68;;;;;;;;;;;;;;;;;:5;:68::i;:::-;13895:87;;14000:57;14017:6;14025:9;14036;14047;14094:635;14213:18;14234:77;14241:12;14234:77;;;;;;;;;;;;;;;;;:6;:77::i;:::-;14213:98;;14341:1;14326:12;:16;;;:85;;;;-1:-1:-1;;;;;;14346:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;14369:16:0;;14346:40;;;;;;;;;:50;:65;;;:50;;:65;14326:85;14322:334;;;-1:-1:-1;;;;;14427:22:0;;;;;;:11;:22;;;;;;;;-1:-1:-1;;14450:16:0;;14427:40;;;;;;;;;:57;;-1:-1:-1;;14427:57:0;-1:-1:-1;;;;;;;;14427:57:0;;;;;;14322:334;;;14554:33;;;;;;;;;;;;;;-1:-1:-1;;;;;14554:33:0;;;;;;;;;;-1:-1:-1;;;;;14515:22:0;;-1:-1:-1;14515:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;-1:-1:-1;;;14515:72:0;-1:-1:-1;;14515:72:0;;;-1:-1:-1;;14515:72:0;;;;;;;;;;;;;;;14601:25;;;:14;:25;;;;;;;:44;;14515:72;14629:16;;14601:44;;;;;;;;;;;;;14322:334;14692:9;-1:-1:-1;;;;;14671:51:0;;14703:8;14713;14671:51;;;;;;;:::i;:::-;;;;;;;;14094:635;;;;;:::o;14735:158::-;14810:6;14847:12;-1:-1:-1;;;14836:9:0;;14828:32;;;;-1:-1:-1;;;14828:32:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;5:130::-;72:20;;-1:-1;;;;;16344:54;;17418:35;;17408:2;;17467:1;;17457:12;684:241;;788:2;776:9;767:7;763:23;759:32;756:2;;;-1:-1;;794:12;756:2;856:53;901:7;877:22;856:53;:::i;932:366::-;;;1053:2;1041:9;1032:7;1028:23;1024:32;1021:2;;;-1:-1;;1059:12;1021:2;1121:53;1166:7;1142:22;1121:53;:::i;:::-;1111:63;;1229:53;1274:7;1211:2;1254:9;1250:22;1229:53;:::i;:::-;1219:63;;1015:283;;;;;:::o;1305:491::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;-1:-1;;1449:12;1411:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1501:63;-1:-1;1601:2;1640:22;;72:20;97:33;72:20;97:33;:::i;:::-;1405:391;;1609:63;;-1:-1;;;1709:2;1748:22;;;;346:20;;1405:391::o;1803:366::-;;;1924:2;1912:9;1903:7;1899:23;1895:32;1892:2;;;-1:-1;;1930:12;1892:2;1992:53;2037:7;2013:22;1992:53;:::i;:::-;1982:63;2082:2;2121:22;;;;346:20;;-1:-1;;;1886:283::o;2176:865::-;;;;;;;2363:3;2351:9;2342:7;2338:23;2334:33;2331:2;;;-1:-1;;2370:12;2331:2;2432:53;2477:7;2453:22;2432:53;:::i;:::-;2422:63;;2522:2;2565:9;2561:22;346:20;2530:63;;2630:2;2673:9;2669:22;346:20;2638:63;;2738:2;2779:9;2775:22;616:20;16655:4;17936:5;16644:16;17913:5;17910:33;17900:2;;-1:-1;;17947:12;17900:2;2325:716;;;;-1:-1;2325:716;;2844:3;2884:22;;209:20;;2953:3;2993:22;;;209:20;;-1:-1;2325:716;-1:-1;;2325:716::o;3048:364::-;;;3168:2;3156:9;3147:7;3143:23;3139:32;3136:2;;;-1:-1;;3174:12;3136:2;3236:53;3281:7;3257:22;3236:53;:::i;:::-;3226:63;;3326:2;3368:9;3364:22;482:20;16561:10;17816:5;16550:22;17792:5;17789:34;17779:2;;-1:-1;;17827:12;17779:2;3334:62;;;;3130:282;;;;;:::o;3419:241::-;;3523:2;3511:9;3502:7;3498:23;3494:32;3491:2;;;-1:-1;;3529:12;3491:2;-1:-1;346:20;;3485:175;-1:-1;3485:175::o;7886:659::-;-1:-1;;;6005:87;;5990:1;6111:11;;3969:37;;;;8397:12;;;3969:37;8508:12;;;8131:414::o;8552:222::-;-1:-1;;;;;16344:54;;;;3738:37;;8679:2;8664:18;;8650:124::o;8781:210::-;16177:13;;16170:21;3852:34;;8902:2;8887:18;;8873:118::o;8998:222::-;3969:37;;;9125:2;9110:18;;9096:124::o;9227:556::-;3969:37;;;-1:-1;;;;;16344:54;;;;9603:2;9588:18;;3738:37;9686:2;9671:18;;3969:37;9769:2;9754:18;;3969:37;9438:3;9423:19;;9409:374::o;9790:556::-;3969:37;;;10166:2;10151:18;;3969:37;;;;10249:2;10234:18;;3969:37;-1:-1;;;;;16344:54;10332:2;10317:18;;3738:37;10001:3;9986:19;;9972:374::o;10353:548::-;3969:37;;;16655:4;16644:16;;;;10721:2;10706:18;;7591:35;10804:2;10789:18;;3969:37;10887:2;10872:18;;3969:37;10560:3;10545:19;;10531:370::o;10908:310::-;;11055:2;;11076:17;11069:47;4322:5;15646:12;15803:6;11055:2;11044:9;11040:18;15791:19;-1:-1;16969:101;16983:6;16980:1;16977:13;16969:101;;;17050:11;;;;;17044:18;17031:11;;;15831:14;17031:11;17024:39;16998:10;;16969:101;;;17085:6;17082:1;17079:13;17076:2;;;-1:-1;15831:14;17141:6;11044:9;17132:16;;17125:27;17076:2;-1:-1;17338:7;17322:14;-1:-1;;17318:28;4480:39;;;;15831:14;4480:39;;11026:192;-1:-1;;;11026:192::o;11225:416::-;11425:2;11439:47;;;4756:2;11410:18;;;15791:19;4792:34;15831:14;;;4772:55;-1:-1;;;4847:12;;;4840:32;4891:12;;;11396:245::o;11648:416::-;11848:2;11862:47;;;5142:2;11833:18;;;15791:19;5178:34;15831:14;;;5158:55;5247:31;5233:12;;;5226:53;5298:12;;;11819:245::o;12071:416::-;12271:2;12285:47;;;5549:2;12256:18;;;15791:19;5585:34;15831:14;;;5565:55;5654:29;5640:12;;;5633:51;5703:12;;;12242:245::o;12494:416::-;12694:2;12708:47;;;6361:2;12679:18;;;15791:19;6397:34;15831:14;;;6377:55;-1:-1;;;6452:12;;;6445:31;6495:12;;;12665:245::o;12917:416::-;13117:2;13131:47;;;6746:2;13102:18;;;15791:19;6782:34;15831:14;;;6762:55;-1:-1;;;6837:12;;;6830:27;6876:12;;;13088:245::o;13340:416::-;13540:2;13554:47;;;7127:2;13525:18;;;15791:19;7163:34;15831:14;;;7143:55;-1:-1;;;7218:12;;;7211:31;7261:12;;;13511:245::o;13992:218::-;16561:10;16550:22;;;;7476:36;;14117:2;14102:18;;14088:122::o;14217:325::-;16561:10;16550:22;;;;7476:36;;-1:-1;;;;;16733:38;14528:2;14513:18;;7838:36;14368:2;14353:18;;14339:203::o;14549:214::-;16655:4;16644:16;;;;7591:35;;14672:2;14657:18;;14643:120::o;14770:220::-;-1:-1;;;;;16733:38;;;;7708:49;;14896:2;14881:18;;14867:123::o;15222:329::-;-1:-1;;;;;16733:38;;;7708:49;;16733:38;;15537:2;15522:18;;7708:49;15375:2;15360:18;;15346:205::o;17359:117::-;-1:-1;;;;;16344:54;;17418:35;;17408:2;;17467:1;;17457:12

Swarm Source

ipfs://99a3ad263e64aaf613d72a7b80cad2951a99676a057a69cf168b82ee8621ac0d
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.