ETH Price: $2,942.33 (-6.02%)
Gas: 8 Gwei

Token

Impermax (IBEX)
 

Overview

Max Total Supply

87,250,000 IBEX

Holders

162

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,390.226775 IBEX

Value
$0.00
0x90b32e4bed4c89dce5ee0d926ba1992ec27833a3
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:
Ibex

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-21
*/

// File: contracts\libraries\SafeMath.sol

pragma solidity =0.6.6;

// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol
// Subject to the MIT license.

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting with custom message on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, errorMessage);

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction underflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, errorMessage);

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts with custom message on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: contracts\Ibex.sol

pragma solidity = 0.6.6;
pragma experimental ABIEncoderV2;


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

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

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

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 87_250_000e18; // 87.25 million IBEX

    /// @notice Address which may mint new tokens
    address public minter;

    /// @notice The timestamp after which minting may occur
    uint public mintingAllowedAfter;

    /// @notice Minimum time between mints
    uint32 public constant minimumTimeBetweenMints = 1 days * 365;

    /// @notice Cap on the percentage of totalSupply that can be minted at each mint
    uint8 public constant mintCap = 2;

    /// @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 The EIP-712 typehash for the permit struct used by the contract
    bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

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

    /// @notice An event thats emitted when the minter address is changed
    event MinterChanged(address minter, address newMinter);

    /// @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 IBEX token
     * @param account The initial account to grant all the tokens
     * @param minter_ The account with minting ability
     * @param mintingAllowedAfter_ The timestamp after which minting may occur
     */
    constructor(address account, address minter_, uint mintingAllowedAfter_) public {
        require(mintingAllowedAfter_ >= block.timestamp, "Ibex::constructor: minting can only begin after deployment");
		
        balances[account] = uint96(totalSupply);
        emit Transfer(address(0), account, totalSupply);
        minter = minter_;
        emit MinterChanged(address(0), minter);
        mintingAllowedAfter = mintingAllowedAfter_;
    }

    /**
     * @notice Change the minter address
     * @param minter_ The address of the new minter
     */
    function setMinter(address minter_) external {
        require(msg.sender == minter, "Ibex::setMinter: only the minter can change the minter address");
        emit MinterChanged(minter, minter_);
        minter = minter_;
    }

    /**
     * @notice Mint new tokens
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to be minted
     */
    function mint(address dst, uint rawAmount) external {
        require(msg.sender == minter, "Ibex::mint: only the minter can mint");
        require(block.timestamp >= mintingAllowedAfter, "Ibex::mint: minting not allowed yet");
        require(dst != address(0), "Ibex::mint: cannot transfer to the zero address");

        // record the mint
        mintingAllowedAfter = SafeMath.add(block.timestamp, minimumTimeBetweenMints);

        // mint the amount
        uint96 amount = safe96(rawAmount, "Ibex::mint: amount exceeds 96 bits");
        require(amount <= SafeMath.div(SafeMath.mul(totalSupply, mintCap), 100), "Ibex::mint: exceeded mint cap");
        totalSupply = safe96(SafeMath.add(totalSupply, amount), "Ibex::mint: totalSupply exceeds 96 bits");

        // transfer the amount to the recipient
        balances[dst] = add96(balances[dst], amount, "Ibex::mint: transfer amount overflows");
        emit Transfer(address(0), dst, amount);

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

    /**
     * @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, "Ibex::approve: amount exceeds 96 bits");
        }

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

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

    /**
     * @notice Triggers an approval from owner to spends
     * @param owner The address to approve from
     * @param spender The address to be approved
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @param deadline 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 permit(address owner, address spender, uint rawAmount, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        uint96 amount;
        if (rawAmount == uint(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "Ibex::permit: amount exceeds 96 bits");
        }

        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, rawAmount, nonces[owner]++, deadline));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "Ibex::permit: invalid signature");
        require(signatory == owner, "Ibex::permit: unauthorized");
        require(now <= deadline, "Ibex::permit: signature expired");

        allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);
    }
	
    /**
     * @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 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, "Ibex::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, "Ibex::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint96(-1)) {
            uint96 newAllowance = sub96(spenderAllowance, amount, "Ibex::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), "Ibex::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "Ibex::delegateBySig: invalid nonce");
        require(now <= expiry, "Ibex::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, "Ibex::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), "Ibex::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "Ibex::_transferTokens: cannot transfer to the zero address");

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

        _moveDelegates(delegates[src], delegates[dst], 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, "Ibex::_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, "Ibex::_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, "Ibex::_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;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"minter_","type":"address"},{"internalType":"uint256","name":"mintingAllowedAfter_","type":"uint256"}],"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":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"newMinter","type":"address"}],"name":"MinterChanged","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":[],"name":"PERMIT_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":"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":"minimumTimeBetweenMints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintCap","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingAllowedAfter","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":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","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":[{"internalType":"address","name":"minter_","type":"address"}],"name":"setMinter","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":[{"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"}]

60806040526a482be7fa3b57fd1f4000006000553480156200002057600080fd5b506040516200304b3803806200304b83398101604081905262000043916200016e565b428110156200006f5760405162461bcd60e51b81526004016200006690620001ca565b60405180910390fd5b600080546001600160a01b0385168083526004602052604080842080546001600160601b0319166001600160601b0390941693909317909255825491519092917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000dd919062000227565b60405180910390a3600180546001600160a01b0319166001600160a01b0384811691909117918290556040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6926200013c92600092911690620001b0565b60405180910390a160025550620002309050565b80516001600160a01b03811681146200016857600080fd5b92915050565b60008060006060848603121562000183578283fd5b6200018f858562000150565b9250620001a0856020860162000150565b9150604084015190509250925092565b6001600160a01b0392831681529116602082015260400190565b6020808252603a908201527f496265783a3a636f6e7374727563746f723a206d696e74696e672063616e206f60408201527f6e6c7920626567696e206166746572206465706c6f796d656e74000000000000606082015260800190565b90815260200190565b612e0b80620002406000396000f3fe608060405234801561001057600080fd5b50600436106101b95760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461036b578063e7a324dc1461037e578063f1127ed814610386578063fca3b5aa146103a7576101b9565b8063b4b5ea5714610332578063c3cda52014610345578063d505accf14610358576101b9565b8063782d6fe1116100d3578063782d6fe1146102e45780637ecebe001461030457806395d89b4114610317578063a9059cbb1461031f576101b9565b80636fcfff45146102b657806370a08231146102c957806376c71ca1146102dc576101b9565b806330adf81f1161016657806340c10f191161014057806340c10f1914610266578063587cde1e1461027b5780635c11d62f1461028e5780635c19a95c146102a3576101b9565b806330adf81f1461024157806330b36cef14610249578063313ce56714610251576101b9565b806318160ddd1161019757806318160ddd1461021157806320606b701461022657806323b872dd1461022e576101b9565b806306fdde03146101be57806307546172146101dc578063095ea7b3146101f1575b600080fd5b6101c66103ba565b6040516101d391906125b2565b60405180910390f35b6101e46103f3565b6040516101d39190612495565b6102046101ff366004612264565b61040f565b6040516101d391906124dd565b610219610534565b6040516101d391906124e8565b61021961053a565b61020461023c3660046121b8565b610551565b6102196106f3565b6102196106ff565b610259610705565b6040516101d39190612b6a565b610279610274366004612264565b61070a565b005b6101e4610289366004612169565b6109fa565b610296610a22565b6040516101d39190612b35565b6102796102b1366004612169565b610a2a565b6102966102c4366004612169565b610a37565b6102196102d7366004612169565b610a4f565b610259610a85565b6102f76102f2366004612264565b610a8a565b6040516101d39190612b78565b610219610312366004612169565b610d6c565b6101c6610d7e565b61020461032d366004612264565b610db7565b6102f7610340366004612169565b610df3565b61027961035336600461228e565b610ea2565b6102796103663660046121f8565b611127565b610219610379366004612184565b61155c565b6102196115a2565b6103996103943660046122e7565b6115ae565b6040516101d3929190612b46565b6102796103b5366004612169565b6115e9565b6040518060400160405280600881526020017f496d7065726d617800000000000000000000000000000000000000000000000081525081565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b6000807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83141561046157507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610486565b61048383604051806060016040528060258152602001612d59602591396116d5565b90505b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff891680855292529182902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610520908590612b78565b60405180910390a360019150505b92915050565b60005481565b604051610546906123d1565b604051809103902081565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602090815260408083203380855290835281842054825160608101909352602580845291936bffffffffffffffffffffffff9091169285926105bb9288929190612d59908301396116d5565b90508673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561060757506bffffffffffffffffffffffff82811614155b156106db57600061063183836040518060600160405280603d8152602001612c57603d9139611727565b73ffffffffffffffffffffffffffffffffffffffff8981166000818152600360209081526040808320948a16808452949091529081902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff86161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106d1908590612b78565b60405180910390a3505b6106e687878361178a565b5060019695505050505050565b6040516105469061235c565b60025481565b601281565b60015473ffffffffffffffffffffffffffffffffffffffff163314610764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b906128d0565b60405180910390fd5b6002544210156107a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b9061298a565b73ffffffffffffffffffffffffffffffffffffffff82166107ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612680565b6107fb426301e133806119f1565b600281905550600061082582604051806060016040528060228152602001612d11602291396116d5565b905061084161083a600054600260ff16611a30565b6064611a84565b816bffffffffffffffffffffffff161115610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b9061274b565b6108c36108a5600054836bffffffffffffffffffffffff166119f1565b604051806060016040528060278152602001612c09602791396116d5565b6bffffffffffffffffffffffff908116600090815573ffffffffffffffffffffffffffffffffffffffff85168152600460209081526040918290205482516060810190935260258084526109279491909116928592909190612cb890830139611ac6565b73ffffffffffffffffffffffffffffffffffffffff841660008181526004602052604080822080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109bb908590612b78565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff8084166000908152600560205260408120546109f5921683611b21565b505050565b60056020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6301e1338081565b610a343382611d68565b50565b60076020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546bffffffffffffffffffffffff1690565b600281565b6000438210610ac5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612ad8565b73ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205463ffffffff1680610b0057600091505061052e565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860181168552925290912054168310610bd85773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff168352929052205464010000000090046bffffffffffffffffffffffff16905061052e565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832083805290915290205463ffffffff16831015610c2057600091505061052e565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff161115610d1457600282820363ffffffff16048103610c7061211d565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260066020908152604080832063ffffffff8581168552908352928190208151808301909252549283168082526401000000009093046bffffffffffffffffffffffff169181019190915290871415610cef5760200151945061052e9350505050565b805163ffffffff16871115610d0657819350610d0d565b6001820392505b5050610c46565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff909416835292905220546bffffffffffffffffffffffff6401000000009091041691505092915050565b60086020526000908152604090205481565b6040518060400160405280600481526020017f494245580000000000000000000000000000000000000000000000000000000081525081565b600080610ddc83604051806060016040528060268152602001612d33602691396116d5565b9050610de933858361178a565b5060019392505050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604081205463ffffffff1680610e2b576000610e9b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b9392505050565b6000604051610eb0906123d1565b60408051918290038220828201909152600882527f496d7065726d61780000000000000000000000000000000000000000000000006020909201919091527fd53cf706f42de6bfee93f7ee2995e952e6ca19494f5a5260fbff94baff4f92ca610f17611e1c565b30604051602001610f2b9493929190612563565b6040516020818303038152906040528051906020012090506000604051610f5190612446565b604051908190038120610f6c918a908a908a90602001612532565b60405160208183030381529060405280519060200120905060008282604051602001610f99929190612326565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610fd69493929190612594565b6020604051602081039080840390855afa158015610ff8573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612623565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902080546001810190915589146110d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612873565b87421115611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612782565b61111a818b611d68565b505050505b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff86141561117857507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61119d565b61119a86604051806060016040528060248152602001612c94602491396116d5565b90505b60006040516111ab906123d1565b60408051918290038220828201909152600882527f496d7065726d61780000000000000000000000000000000000000000000000006020909201919091527fd53cf706f42de6bfee93f7ee2995e952e6ca19494f5a5260fbff94baff4f92ca611212611e1c565b306040516020016112269493929190612563565b604051602081830303815290604052805190602001209050600060405161124c9061235c565b6040805191829003822073ffffffffffffffffffffffffffffffffffffffff8d1660009081526008602090815292902080546001810190915561129b9391928e928e928e9290918e91016124f1565b604051602081830303815290604052805190602001209050600082826040516020016112c8929190612326565b6040516020818303038152906040528051906020012090506000600182898989604051600081526020016040526040516113059493929190612594565b6020604051602081039080840390855afa158015611327573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612aa1565b8b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611404576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b906127df565b8842111561143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612714565b84600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516115469190612b78565b60405180910390a3505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff91821660009081526003602090815260408083209390941682529190915220546bffffffffffffffffffffffff1690565b60405161054690612446565b600660209081526000928352604080842090915290825290205463ffffffff81169064010000000090046bffffffffffffffffffffffff1682565b60015473ffffffffffffffffffffffffffffffffffffffff16331461163a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612a44565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6916116869173ffffffffffffffffffffffffffffffffffffffff9091169084906124b6565b60405180910390a1600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000816c01000000000000000000000000841061171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b91906125b2565b509192915050565b6000836bffffffffffffffffffffffff16836bffffffffffffffffffffffff1611158290611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b91906125b2565b505050900390565b73ffffffffffffffffffffffffffffffffffffffff83166117d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b9061292d565b73ffffffffffffffffffffffffffffffffffffffff8216611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b906129e7565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260046020908152604091829020548251606081019093526036808452611881936bffffffffffffffffffffffff9092169285929190612bd390830139611727565b73ffffffffffffffffffffffffffffffffffffffff848116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff9687161790559286168252908290205482516060810190935260308084526119139491909116928592909190612da690830139611ac6565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152600460205260409081902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff95909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119aa908590612b78565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff8084166000908152600560205260408082205485841683529120546109f592918216911683611b21565b600082820183811015610e9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b906126dd565b600082611a3f5750600061052e565b82820282848281611a4c57fe5b0414610e9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612816565b6000610e9b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e20565b6000838301826bffffffffffffffffffffffff8087169083161015611b18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b91906125b2565b50949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b6b57506000816bffffffffffffffffffffffff16115b156109f55773ffffffffffffffffffffffffffffffffffffffff831615611c6e5773ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604081205463ffffffff169081611bc5576000611c35565b73ffffffffffffffffffffffffffffffffffffffff851660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b90506000611c5c8285604051806060016040528060288152602001612d7e60289139611727565b9050611c6a86848484611e71565b5050505b73ffffffffffffffffffffffffffffffffffffffff8216156109f55773ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604081205463ffffffff169081611cc3576000611d33565b73ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b90506000611d5a8285604051806060016040528060278152602001612c3060279139611ac6565b905061111f85848484611e71565b73ffffffffffffffffffffffffffffffffffffffff808316600081815260056020818152604080842080546004845282862054949093528787167fffffffffffffffffffffffff000000000000000000000000000000000000000084168117909155905191909516946bffffffffffffffffffffffff9092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611e16828483611b21565b50505050565b4690565b60008183611e5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b91906125b2565b506000838581611e6757fe5b0495945050505050565b6000611e9543604051806060016040528060348152602001612cdd603491396120db565b905060008463ffffffff16118015611f09575073ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8901811685529252909120548282169116145b15611fa85773ffffffffffffffffffffffffffffffffffffffff851660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff880163ffffffff168452909152902080547fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff166401000000006bffffffffffffffffffffffff851602179055612084565b60408051808201825263ffffffff80841682526bffffffffffffffffffffffff808616602080850191825273ffffffffffffffffffffffffffffffffffffffff8b166000818152600683528781208c871682528352878120965187549451909516640100000000027fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff9587167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516120cc929190612b91565b60405180910390a25050505050565b600081640100000000841061171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b91906125b2565b604080518082019091526000808252602082015290565b803573ffffffffffffffffffffffffffffffffffffffff8116811461052e57600080fd5b803560ff8116811461052e57600080fd5b60006020828403121561217a578081fd5b610e9b8383612134565b60008060408385031215612196578081fd5b6121a08484612134565b91506121af8460208501612134565b90509250929050565b6000806000606084860312156121cc578081fd5b83356121d781612bb0565b925060208401356121e781612bb0565b929592945050506040919091013590565b600080600080600080600060e0888a031215612212578283fd5b61221c8989612134565b965061222b8960208a01612134565b955060408801359450606088013593506122488960808a01612158565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612276578182fd5b6122808484612134565b946020939093013593505050565b60008060008060008060c087890312156122a6578182fd5b6122b08888612134565b955060208701359450604087013593506122cd8860608901612158565b92506080870135915060a087013590509295509295509295565b600080604083850312156122f9578182fd5b6123038484612134565b9150602083013563ffffffff8116811461231b578182fd5b809150509250929050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e636560208201527f2c75696e7432353620646561646c696e65290000000000000000000000000000604082015260520190565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201527f6374290000000000000000000000000000000000000000000000000000000000604082015260430190565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0190565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff92831681529116602082015260400190565b901515815260200190565b90815260200190565b95865273ffffffffffffffffffffffffffffffffffffffff94851660208701529290931660408501526060840152608083019190915260a082015260c00190565b93845273ffffffffffffffffffffffffffffffffffffffff9290921660208401526040830152606082015260800190565b9384526020840192909252604083015273ffffffffffffffffffffffffffffffffffffffff16606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b818110156125de578581018301518582016040015282016125c2565b818111156125ef5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526026908201527f496265783a3a64656c656761746542795369673a20696e76616c69642073696760408201527f6e61747572650000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f496265783a3a6d696e743a2063616e6e6f74207472616e7366657220746f207460408201527f6865207a65726f20616464726573730000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f496265783a3a7065726d69743a207369676e6174757265206578706972656400604082015260600190565b6020808252601d908201527f496265783a3a6d696e743a206578636565646564206d696e7420636170000000604082015260600190565b60208082526026908201527f496265783a3a64656c656761746542795369673a207369676e6174757265206560408201527f7870697265640000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601a908201527f496265783a3a7065726d69743a20756e617574686f72697a6564000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f496265783a3a64656c656761746542795369673a20696e76616c6964206e6f6e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f496265783a3a6d696e743a206f6e6c7920746865206d696e7465722063616e2060408201527f6d696e7400000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252603c908201527f496265783a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e736665722066726f6d20746865207a65726f206164647265737300000000606082015260800190565b60208082526023908201527f496265783a3a6d696e743a206d696e74696e67206e6f7420616c6c6f7765642060408201527f7965740000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252603a908201527f496265783a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e7366657220746f20746865207a65726f2061646472657373000000000000606082015260800190565b6020808252603e908201527f496265783a3a7365744d696e7465723a206f6e6c7920746865206d696e74657260408201527f2063616e206368616e676520746865206d696e74657220616464726573730000606082015260800190565b6020808252601f908201527f496265783a3a7065726d69743a20696e76616c6964207369676e617475726500604082015260600190565b60208082526027908201527f496265783a3a6765745072696f72566f7465733a206e6f74207965742064657460408201527f65726d696e656400000000000000000000000000000000000000000000000000606082015260800190565b63ffffffff91909116815260200190565b63ffffffff9290921682526bffffffffffffffffffffffff16602082015260400190565b60ff91909116815260200190565b6bffffffffffffffffffffffff91909116815260200190565b6bffffffffffffffffffffffff92831681529116602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff81168114610a3457600080fdfe496265783a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365496265783a3a6d696e743a20746f74616c537570706c7920657863656564732039362062697473496265783a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773496265783a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365496265783a3a7065726d69743a20616d6f756e7420657863656564732039362062697473496265783a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f7773496265783a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473496265783a3a6d696e743a20616d6f756e7420657863656564732039362062697473496265783a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473496265783a3a617070726f76653a20616d6f756e7420657863656564732039362062697473496265783a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773496265783a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773a264697066735822122090b7be2ddff155c2b6417cb059e77f68b5be9bc9ed8b766e4088345c6186bed764736f6c63430006060033000000000000000000000000cd9277ee36594fd8bdbe0dfcf0afd60403e632b5000000000000000000000000cd9277ee36594fd8bdbe0dfcf0afd60403e632b5000000000000000000000000000000000000000000000000000000006810bf40

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101b95760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461036b578063e7a324dc1461037e578063f1127ed814610386578063fca3b5aa146103a7576101b9565b8063b4b5ea5714610332578063c3cda52014610345578063d505accf14610358576101b9565b8063782d6fe1116100d3578063782d6fe1146102e45780637ecebe001461030457806395d89b4114610317578063a9059cbb1461031f576101b9565b80636fcfff45146102b657806370a08231146102c957806376c71ca1146102dc576101b9565b806330adf81f1161016657806340c10f191161014057806340c10f1914610266578063587cde1e1461027b5780635c11d62f1461028e5780635c19a95c146102a3576101b9565b806330adf81f1461024157806330b36cef14610249578063313ce56714610251576101b9565b806318160ddd1161019757806318160ddd1461021157806320606b701461022657806323b872dd1461022e576101b9565b806306fdde03146101be57806307546172146101dc578063095ea7b3146101f1575b600080fd5b6101c66103ba565b6040516101d391906125b2565b60405180910390f35b6101e46103f3565b6040516101d39190612495565b6102046101ff366004612264565b61040f565b6040516101d391906124dd565b610219610534565b6040516101d391906124e8565b61021961053a565b61020461023c3660046121b8565b610551565b6102196106f3565b6102196106ff565b610259610705565b6040516101d39190612b6a565b610279610274366004612264565b61070a565b005b6101e4610289366004612169565b6109fa565b610296610a22565b6040516101d39190612b35565b6102796102b1366004612169565b610a2a565b6102966102c4366004612169565b610a37565b6102196102d7366004612169565b610a4f565b610259610a85565b6102f76102f2366004612264565b610a8a565b6040516101d39190612b78565b610219610312366004612169565b610d6c565b6101c6610d7e565b61020461032d366004612264565b610db7565b6102f7610340366004612169565b610df3565b61027961035336600461228e565b610ea2565b6102796103663660046121f8565b611127565b610219610379366004612184565b61155c565b6102196115a2565b6103996103943660046122e7565b6115ae565b6040516101d3929190612b46565b6102796103b5366004612169565b6115e9565b6040518060400160405280600881526020017f496d7065726d617800000000000000000000000000000000000000000000000081525081565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b6000807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83141561046157507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610486565b61048383604051806060016040528060258152602001612d59602591396116d5565b90505b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff891680855292529182902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610520908590612b78565b60405180910390a360019150505b92915050565b60005481565b604051610546906123d1565b604051809103902081565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602090815260408083203380855290835281842054825160608101909352602580845291936bffffffffffffffffffffffff9091169285926105bb9288929190612d59908301396116d5565b90508673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561060757506bffffffffffffffffffffffff82811614155b156106db57600061063183836040518060600160405280603d8152602001612c57603d9139611727565b73ffffffffffffffffffffffffffffffffffffffff8981166000818152600360209081526040808320948a16808452949091529081902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff86161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106d1908590612b78565b60405180910390a3505b6106e687878361178a565b5060019695505050505050565b6040516105469061235c565b60025481565b601281565b60015473ffffffffffffffffffffffffffffffffffffffff163314610764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b906128d0565b60405180910390fd5b6002544210156107a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b9061298a565b73ffffffffffffffffffffffffffffffffffffffff82166107ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612680565b6107fb426301e133806119f1565b600281905550600061082582604051806060016040528060228152602001612d11602291396116d5565b905061084161083a600054600260ff16611a30565b6064611a84565b816bffffffffffffffffffffffff161115610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b9061274b565b6108c36108a5600054836bffffffffffffffffffffffff166119f1565b604051806060016040528060278152602001612c09602791396116d5565b6bffffffffffffffffffffffff908116600090815573ffffffffffffffffffffffffffffffffffffffff85168152600460209081526040918290205482516060810190935260258084526109279491909116928592909190612cb890830139611ac6565b73ffffffffffffffffffffffffffffffffffffffff841660008181526004602052604080822080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109bb908590612b78565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff8084166000908152600560205260408120546109f5921683611b21565b505050565b60056020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6301e1338081565b610a343382611d68565b50565b60076020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546bffffffffffffffffffffffff1690565b600281565b6000438210610ac5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612ad8565b73ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205463ffffffff1680610b0057600091505061052e565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860181168552925290912054168310610bd85773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff168352929052205464010000000090046bffffffffffffffffffffffff16905061052e565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832083805290915290205463ffffffff16831015610c2057600091505061052e565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff161115610d1457600282820363ffffffff16048103610c7061211d565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260066020908152604080832063ffffffff8581168552908352928190208151808301909252549283168082526401000000009093046bffffffffffffffffffffffff169181019190915290871415610cef5760200151945061052e9350505050565b805163ffffffff16871115610d0657819350610d0d565b6001820392505b5050610c46565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff909416835292905220546bffffffffffffffffffffffff6401000000009091041691505092915050565b60086020526000908152604090205481565b6040518060400160405280600481526020017f494245580000000000000000000000000000000000000000000000000000000081525081565b600080610ddc83604051806060016040528060268152602001612d33602691396116d5565b9050610de933858361178a565b5060019392505050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604081205463ffffffff1680610e2b576000610e9b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b9392505050565b6000604051610eb0906123d1565b60408051918290038220828201909152600882527f496d7065726d61780000000000000000000000000000000000000000000000006020909201919091527fd53cf706f42de6bfee93f7ee2995e952e6ca19494f5a5260fbff94baff4f92ca610f17611e1c565b30604051602001610f2b9493929190612563565b6040516020818303038152906040528051906020012090506000604051610f5190612446565b604051908190038120610f6c918a908a908a90602001612532565b60405160208183030381529060405280519060200120905060008282604051602001610f99929190612326565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610fd69493929190612594565b6020604051602081039080840390855afa158015610ff8573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612623565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902080546001810190915589146110d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612873565b87421115611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612782565b61111a818b611d68565b505050505b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff86141561117857507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61119d565b61119a86604051806060016040528060248152602001612c94602491396116d5565b90505b60006040516111ab906123d1565b60408051918290038220828201909152600882527f496d7065726d61780000000000000000000000000000000000000000000000006020909201919091527fd53cf706f42de6bfee93f7ee2995e952e6ca19494f5a5260fbff94baff4f92ca611212611e1c565b306040516020016112269493929190612563565b604051602081830303815290604052805190602001209050600060405161124c9061235c565b6040805191829003822073ffffffffffffffffffffffffffffffffffffffff8d1660009081526008602090815292902080546001810190915561129b9391928e928e928e9290918e91016124f1565b604051602081830303815290604052805190602001209050600082826040516020016112c8929190612326565b6040516020818303038152906040528051906020012090506000600182898989604051600081526020016040526040516113059493929190612594565b6020604051602081039080840390855afa158015611327573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612aa1565b8b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611404576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b906127df565b8842111561143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612714565b84600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516115469190612b78565b60405180910390a3505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff91821660009081526003602090815260408083209390941682529190915220546bffffffffffffffffffffffff1690565b60405161054690612446565b600660209081526000928352604080842090915290825290205463ffffffff81169064010000000090046bffffffffffffffffffffffff1682565b60015473ffffffffffffffffffffffffffffffffffffffff16331461163a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612a44565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6916116869173ffffffffffffffffffffffffffffffffffffffff9091169084906124b6565b60405180910390a1600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000816c01000000000000000000000000841061171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b91906125b2565b509192915050565b6000836bffffffffffffffffffffffff16836bffffffffffffffffffffffff1611158290611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b91906125b2565b505050900390565b73ffffffffffffffffffffffffffffffffffffffff83166117d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b9061292d565b73ffffffffffffffffffffffffffffffffffffffff8216611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b906129e7565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260046020908152604091829020548251606081019093526036808452611881936bffffffffffffffffffffffff9092169285929190612bd390830139611727565b73ffffffffffffffffffffffffffffffffffffffff848116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff9687161790559286168252908290205482516060810190935260308084526119139491909116928592909190612da690830139611ac6565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152600460205260409081902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff95909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119aa908590612b78565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff8084166000908152600560205260408082205485841683529120546109f592918216911683611b21565b600082820183811015610e9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b906126dd565b600082611a3f5750600061052e565b82820282848281611a4c57fe5b0414610e9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90612816565b6000610e9b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e20565b6000838301826bffffffffffffffffffffffff8087169083161015611b18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b91906125b2565b50949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b6b57506000816bffffffffffffffffffffffff16115b156109f55773ffffffffffffffffffffffffffffffffffffffff831615611c6e5773ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604081205463ffffffff169081611bc5576000611c35565b73ffffffffffffffffffffffffffffffffffffffff851660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b90506000611c5c8285604051806060016040528060288152602001612d7e60289139611727565b9050611c6a86848484611e71565b5050505b73ffffffffffffffffffffffffffffffffffffffff8216156109f55773ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604081205463ffffffff169081611cc3576000611d33565b73ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b90506000611d5a8285604051806060016040528060278152602001612c3060279139611ac6565b905061111f85848484611e71565b73ffffffffffffffffffffffffffffffffffffffff808316600081815260056020818152604080842080546004845282862054949093528787167fffffffffffffffffffffffff000000000000000000000000000000000000000084168117909155905191909516946bffffffffffffffffffffffff9092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611e16828483611b21565b50505050565b4690565b60008183611e5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b91906125b2565b506000838581611e6757fe5b0495945050505050565b6000611e9543604051806060016040528060348152602001612cdd603491396120db565b905060008463ffffffff16118015611f09575073ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8901811685529252909120548282169116145b15611fa85773ffffffffffffffffffffffffffffffffffffffff851660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff880163ffffffff168452909152902080547fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff166401000000006bffffffffffffffffffffffff851602179055612084565b60408051808201825263ffffffff80841682526bffffffffffffffffffffffff808616602080850191825273ffffffffffffffffffffffffffffffffffffffff8b166000818152600683528781208c871682528352878120965187549451909516640100000000027fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff9587167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516120cc929190612b91565b60405180910390a25050505050565b600081640100000000841061171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b91906125b2565b604080518082019091526000808252602082015290565b803573ffffffffffffffffffffffffffffffffffffffff8116811461052e57600080fd5b803560ff8116811461052e57600080fd5b60006020828403121561217a578081fd5b610e9b8383612134565b60008060408385031215612196578081fd5b6121a08484612134565b91506121af8460208501612134565b90509250929050565b6000806000606084860312156121cc578081fd5b83356121d781612bb0565b925060208401356121e781612bb0565b929592945050506040919091013590565b600080600080600080600060e0888a031215612212578283fd5b61221c8989612134565b965061222b8960208a01612134565b955060408801359450606088013593506122488960808a01612158565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612276578182fd5b6122808484612134565b946020939093013593505050565b60008060008060008060c087890312156122a6578182fd5b6122b08888612134565b955060208701359450604087013593506122cd8860608901612158565b92506080870135915060a087013590509295509295509295565b600080604083850312156122f9578182fd5b6123038484612134565b9150602083013563ffffffff8116811461231b578182fd5b809150509250929050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e636560208201527f2c75696e7432353620646561646c696e65290000000000000000000000000000604082015260520190565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201527f6374290000000000000000000000000000000000000000000000000000000000604082015260430190565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0190565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff92831681529116602082015260400190565b901515815260200190565b90815260200190565b95865273ffffffffffffffffffffffffffffffffffffffff94851660208701529290931660408501526060840152608083019190915260a082015260c00190565b93845273ffffffffffffffffffffffffffffffffffffffff9290921660208401526040830152606082015260800190565b9384526020840192909252604083015273ffffffffffffffffffffffffffffffffffffffff16606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b818110156125de578581018301518582016040015282016125c2565b818111156125ef5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526026908201527f496265783a3a64656c656761746542795369673a20696e76616c69642073696760408201527f6e61747572650000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f496265783a3a6d696e743a2063616e6e6f74207472616e7366657220746f207460408201527f6865207a65726f20616464726573730000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f496265783a3a7065726d69743a207369676e6174757265206578706972656400604082015260600190565b6020808252601d908201527f496265783a3a6d696e743a206578636565646564206d696e7420636170000000604082015260600190565b60208082526026908201527f496265783a3a64656c656761746542795369673a207369676e6174757265206560408201527f7870697265640000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601a908201527f496265783a3a7065726d69743a20756e617574686f72697a6564000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f496265783a3a64656c656761746542795369673a20696e76616c6964206e6f6e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f496265783a3a6d696e743a206f6e6c7920746865206d696e7465722063616e2060408201527f6d696e7400000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252603c908201527f496265783a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e736665722066726f6d20746865207a65726f206164647265737300000000606082015260800190565b60208082526023908201527f496265783a3a6d696e743a206d696e74696e67206e6f7420616c6c6f7765642060408201527f7965740000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252603a908201527f496265783a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e7366657220746f20746865207a65726f2061646472657373000000000000606082015260800190565b6020808252603e908201527f496265783a3a7365744d696e7465723a206f6e6c7920746865206d696e74657260408201527f2063616e206368616e676520746865206d696e74657220616464726573730000606082015260800190565b6020808252601f908201527f496265783a3a7065726d69743a20696e76616c6964207369676e617475726500604082015260600190565b60208082526027908201527f496265783a3a6765745072696f72566f7465733a206e6f74207965742064657460408201527f65726d696e656400000000000000000000000000000000000000000000000000606082015260800190565b63ffffffff91909116815260200190565b63ffffffff9290921682526bffffffffffffffffffffffff16602082015260400190565b60ff91909116815260200190565b6bffffffffffffffffffffffff91909116815260200190565b6bffffffffffffffffffffffff92831681529116602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff81168114610a3457600080fdfe496265783a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365496265783a3a6d696e743a20746f74616c537570706c7920657863656564732039362062697473496265783a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773496265783a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365496265783a3a7065726d69743a20616d6f756e7420657863656564732039362062697473496265783a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f7773496265783a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473496265783a3a6d696e743a20616d6f756e7420657863656564732039362062697473496265783a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473496265783a3a617070726f76653a20616d6f756e7420657863656564732039362062697473496265783a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773496265783a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773a264697066735822122090b7be2ddff155c2b6417cb059e77f68b5be9bc9ed8b766e4088345c6186bed764736f6c63430006060033

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

000000000000000000000000cd9277ee36594fd8bdbe0dfcf0afd60403e632b5000000000000000000000000cd9277ee36594fd8bdbe0dfcf0afd60403e632b5000000000000000000000000000000000000000000000000000000006810bf40

-----Decoded View---------------
Arg [0] : account (address): 0xCD9277EE36594fd8bDbE0dfCF0aFD60403e632B5
Arg [1] : minter_ (address): 0xCD9277EE36594fd8bDbE0dfCF0aFD60403e632B5
Arg [2] : mintingAllowedAfter_ (uint256): 1745928000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000cd9277ee36594fd8bdbe0dfcf0afd60403e632b5
Arg [1] : 000000000000000000000000cd9277ee36594fd8bdbe0dfcf0afd60403e632b5
Arg [2] : 000000000000000000000000000000000000000000000000000000006810bf40


Deployed Bytecode Sourcemap

6740:17189:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;6740:17189:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;6811:40:0;;;:::i;:::-;;;;;;;;;;;;;;;;7233:21;;;:::i;:::-;;;;;;;;13165:419;;;;;;;;;:::i;:::-;;;;;;;;7112:39;;;:::i;:::-;;;;;;;;8462:122;;;:::i;16252:672::-;;;;;;;;;:::i;8885:137::-;;;:::i;7324:31::-;;;:::i;7013:35::-;;;:::i;:::-;;;;;;;;11182:1065;;;;;;;;;:::i;:::-;;7912:45;;;;;;;;;:::i;7408:61::-;;;:::i;:::-;;;;;;;;17072:102;;;;;;;;;:::i;8340:49::-;;;;;;;;;:::i;15332:108::-;;;;;;;;;:::i;7564:33::-;;;:::i;19251:1218::-;;;;;;;;;:::i;:::-;;;;;;;;9103:39;;;;;;;;;:::i;6912:38::-;;;:::i;15704:238::-;;;;;;;;;:::i;18598:222::-;;;;;;;;;:::i;17608:789::-;;;;;;;;;:::i;14074:1054::-;;;;;;;;;:::i;12551:136::-;;;;;;;;;:::i;8678:117::-;;;:::i;8201:70::-;;;;;;;;;:::i;:::-;;;;;;;;;10775:232;;;;;;;;;:::i;6811:40::-;;;;;;;;;;;;;;;;;;;:::o;7233:21::-;;;;;;:::o;13165:419::-;13233:4;13250:13;13296:2;13278:9;:21;13274:173;;;-1:-1:-1;13332:2:0;13274:173;;;13377:58;13384:9;13377:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;13368:67;;13274:173;13470:10;13459:22;;;;:10;:22;;;;;;;;;:31;;;;;;;;;;;:40;;;;;;;;;;13517:37;;13459:31;;13470:10;13517:37;;;;13459:40;;13517:37;;;;;;;;;;13572:4;13565:11;;;13165:419;;;;;:::o;7112:39::-;;;;:::o;8462:122::-;8504:80;;;;;;;;;;;;;;8462:122;:::o;16252:672::-;16416:15;;;16334:4;16416:15;;;:10;:15;;;;;;;;16369:10;16416:24;;;;;;;;;;16467:58;;;;;;;;;;;;16369:10;;16416:24;;;;;16334:4;;16467:58;;16474:9;;16467:58;;;;;;;:6;:58::i;:::-;16451:74;;16553:3;16542:14;;:7;:14;;;;:48;;;;-1:-1:-1;16560:30:0;;;;;;16542:48;16538:311;;;16607:19;16629:96;16635:16;16653:6;16629:96;;;;;;;;;;;;;;;;;:5;:96::i;:::-;16740:15;;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;;:39;;;;;;;;;;16801:36;16740:39;;-1:-1:-1;16740:24:0;;16801:36;;;;16740:39;;16801:36;;;;;;;;;;16538:311;;16861:33;16877:3;16882;16887:6;16861:15;:33::i;:::-;-1:-1:-1;16912:4:0;;16252:672;-1:-1:-1;;;;;;16252:672:0:o;8885:137::-;8927:95;;;;;;7324:31;;;;:::o;7013:35::-;7046:2;7013:35;:::o;11182:1065::-;11267:6;;;;11253:10;:20;11245:69;;;;;;;;;;;;;;;;;;;;;;11352:19;;11333:15;:38;;11325:86;;;;;;;;;;;;;;11430:17;;;11422:77;;;;;;;;;;;;;;11562:54;11575:15;7457:12;11562;:54::i;:::-;11540:19;:76;;;;11657:13;11673:55;11680:9;11673:55;;;;;;;;;;;;;;;;;:6;:55::i;:::-;11657:71;;11757:53;11770:34;11783:11;;7596:1;11770:34;;:12;:34::i;:::-;11806:3;11757:12;:53::i;:::-;11747:6;:63;;;;11739:105;;;;;;;;;;;;;;11869:84;11876:33;11889:11;;11902:6;11876:33;;:12;:33::i;:::-;11869:84;;;;;;;;;;;;;;;;;:6;:84::i;:::-;11855:98;;;;:11;:98;;;12037:13;;;;;:8;:13;;;;;;;;;;12031:69;;;;;;;;;;;;;;12037:13;;;;;12052:6;;12031:69;;;;;;;;:5;:69::i;:::-;12015:13;;;;;;;:8;:13;;;;;;:85;;;;;;;;;;;;;;;;12116:33;;12015:13;;;12116:33;;;;12142:6;;12116:33;;;;;;;;;;12216:14;;;;12212:1;12216:14;;;:9;:14;;;;;;12189:50;;12216:14;12232:6;12189:14;:50::i;:::-;11182:1065;;;:::o;7912:45::-;;;;;;;;;;;;;;;:::o;7408:61::-;7457:12;7408:61;:::o;17072:102::-;17134:32;17144:10;17156:9;17134;:32::i;:::-;17072:102;:::o;8340:49::-;;;;;;;;;;;;;;;:::o;15332:108::-;15415:17;;15391:4;15415:17;;;:8;:17;;;;;;;;;15332:108::o;7564:33::-;7596:1;7564:33;:::o;19251:1218::-;19330:6;19371:12;19357:11;:26;19349:78;;;;;;;;;;;;;;19462:23;;;19440:19;19462:23;;;:14;:23;;;;;;;;19500:17;19496:58;;19541:1;19534:8;;;;;19496:58;19614:20;;;;;;;:11;:20;;;;;;;;:38;19635:16;;;19614:38;;;;;;;;;:48;;:63;-1:-1:-1;19610:147:0;;19701:20;;;;;;;:11;:20;;;;;;;;19722:16;;;;;19701:38;;;;;;;;:44;;;;;;;-1:-1:-1;19694:51:0;;19610:147;19818:20;;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;19814:88:0;;;19889:1;19882:8;;;;;19814:88;19914:12;19956:16;;;19983:428;19998:5;19990:13;;:5;:13;;;19983:428;;;20062:1;20045:13;;;20044:19;;;20036:27;;20105:20;;:::i;:::-;-1:-1:-1;20128:20:0;;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;20105:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20175:27;;20171:229;;;20230:8;;;;-1:-1:-1;20223:15:0;;-1:-1:-1;;;;20223:15:0;20171:229;20264:12;;:26;;;-1:-1:-1;20260:140:0;;;20319:6;20311:14;;20260:140;;;20383:1;20374:6;:10;20366:18;;20260:140;19983:428;;;;;-1:-1:-1;20428:20:0;;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;;;;;-1:-1:-1;;19251:1218:0;;;;:::o;9103:39::-;;;;;;;;;;;;;:::o;6912:38::-;;;;;;;;;;;;;;;;;;;:::o;15704:238::-;15769:4;15786:13;15802:59;15809:9;15802:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;15786:75;;15872:40;15888:10;15900:3;15905:6;15872:15;:40::i;:::-;-1:-1:-1;15930:4:0;;15704:238;-1:-1:-1;;;15704:238:0:o;18598:222::-;18704:23;;;18663:6;18704:23;;;:14;:23;;;;;;;;18745:16;:67;;18811:1;18745:67;;;18764:20;;;;;;;:11;:20;;;;;;;;18785:16;;;18764:38;;;;;;;;;:44;;;;;;18745:67;18738:74;18598:222;-1:-1:-1;;;18598:222:0:o;17608:789::-;17724:23;8504:80;;;;;;;;;;;;;;;;17804:4;;;;;;;;;;;;;;;;;;17788:22;17812:12;:10;:12::i;:::-;17834:4;17760:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;17760:80:0;;;17750:91;;;;;;17724:117;;17852:18;8724:71;;;;;;;;;;;;;;;17883:57;;17915:9;;17926:5;;17933:6;;17883:57;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;17883:57:0;;;17873:68;;;;;;17852:89;;17952:14;18008:15;18025:10;17979:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;17979:57:0;;;17969:68;;;;;;17952:85;;18048:17;18068:26;18078:6;18086:1;18089;18092;18068:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;18068:26:0;;;;;;-1:-1:-1;;18113:23:0;;;18105:74;;;;;;;;;;;;;;18207:17;;;;;;;:6;:17;;;;;:19;;;;;;;;18198:28;;18190:75;;;;;;;;;;;;;;18291:6;18284:3;:13;;18276:64;;;;;;;;;;;;;;18358:31;18368:9;18379;18358;:31::i;:::-;18351:38;;;;17608:789;;;;;;;:::o;14074:1054::-;14204:13;14250:2;14232:9;:21;14228:172;;;-1:-1:-1;14286:2:0;14228:172;;;14331:57;14338:9;14331:57;;;;;;;;;;;;;;;;;:6;:57::i;:::-;14322:66;;14228:172;14412:23;8504:80;;;;;;;;;;;;;;;;14492:4;;;;;;;;;;;;;;;;;;14476:22;14500:12;:10;:12::i;:::-;14522:4;14448:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;14448:80:0;;;14438:91;;;;;;14412:117;;14540:18;8927:95;;;;;;;;;;;;;;;;14626:13;;;;;;;:6;:13;;;;;;;:15;;;;;;;;14571:81;;8927:95;;14599:5;;14606:7;;14615:9;;14626:15;;14643:8;;14571:81;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;14571:81:0;;;14561:92;;;;;;14540:113;;14664:14;14720:15;14737:10;14691:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;14691:57:0;;;14681:68;;;;;;14664:85;;14760:17;14780:26;14790:6;14798:1;14801;14804;14780:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;14780:26:0;;;;;;-1:-1:-1;;14825:23:0;;;14817:67;;;;;;;;;;;;;;14916:5;14903:18;;:9;:18;;;14895:57;;;;;;;;;;;;;;14978:8;14971:3;:15;;14963:59;;;;;;;;;;;;;;15064:6;15035:10;:17;15046:5;15035:17;;;;;;;;;;;;;;;:26;15053:7;15035:26;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;15104:7;15088:32;;15097:5;15088:32;;;15113:6;15088:32;;;;;;;;;;;;;;;14074:1054;;;;;;;;;;;;:::o;12551:136::-;12651:19;;;;12627:4;12651:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;;;12551:136::o;8678:117::-;8724:71;;;;;;8201:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10775:232::-;10853:6;;;;10839:10;:20;10831:95;;;;;;;;;;;;;;10956:6;;10942:30;;;;;;10956:6;;;;;10964:7;;10942:30;;;;;;;;;;10983:6;:16;;;;;;;;;;;;;;;10775:232::o;23235:161::-;23310:6;23348:12;23341:5;23337:9;;23329:32;;;;;;;;;;;;;;;-1:-1:-1;23386:1:0;;23235:161;-1:-1:-1;;23235:161:0:o;23600:165::-;23686:6;23718:1;23713:6;;:1;:6;;;;23721:12;23705:29;;;;;;;;;;;;;;;;-1:-1:-1;;;23752:5:0;;;23600:165::o;20860:614::-;20954:17;;;20946:90;;;;;;;;;;;;;;21055:17;;;21047:88;;;;;;;;;;;;;;21170:13;;;;;;;:8;:13;;;;;;;;;;21164:86;;;;;;;;;;;;;;21170:13;;;;;21185:6;;21164:86;;;;;;;:5;:86::i;:::-;21148:13;;;;;;;;:8;:13;;;;;;;;:102;;;;;;;;;;;21283:13;;;;;;;;;;21277:80;;;;;;;;;;;;;;21283:13;;;;;21298:6;;21277:80;;;;;;;;:5;:80::i;:::-;21261:13;;;;;;;;:8;:13;;;;;;;:96;;;;;;;;;;;;;;;;21373:26;;;;;;;;;;21392:6;;21373:26;;;;;;;;;;21427:14;;;;;;;;:9;:14;;;;;;;21443;;;;;;;;21412:54;;21427:14;;;;21443;21459:6;21412:14;:54::i;1030:181::-;1088:7;1120:5;;;1144:6;;;;1136:46;;;;;;;;;;;;;2784:471;2842:7;3087:6;3083:47;;-1:-1:-1;3117:1:0;3110:8;;3083:47;3154:5;;;3158:1;3154;:5;:1;3178:5;;;;;:10;3170:56;;;;;;;;;;;;;4442:132;4500:7;4527:39;4531:1;4534;4527:39;;;;;;;;;;;;;;;;;:3;:39::i;23404:188::-;23490:6;23520:5;;;23552:12;23544:6;;;;;;;;;23536:29;;;;;;;;;;;;;;;-1:-1:-1;23583:1:0;23404:188;-1:-1:-1;;;;23404:188:0:o;21482:939::-;21587:6;21577:16;;:6;:16;;;;:30;;;;;21606:1;21597:6;:10;;;21577:30;21573:841;;;21628:20;;;;21624:382;;21688:22;;;21669:16;21688:22;;;:14;:22;;;;;;;;;21748:13;:60;;21807:1;21748:60;;;21764:19;;;;;;;:11;:19;;;;;;;;21784:13;;;21764:34;;;;;;;;;:40;;;;;;21748:60;21729:79;;21827:16;21846:68;21852:9;21863:6;21846:68;;;;;;;;;;;;;;;;;:5;:68::i;:::-;21827:87;;21933:57;21950:6;21958:9;21969;21980;21933:16;:57::i;:::-;21624:382;;;;22026:20;;;;22022:381;;22086:22;;;22067:16;22086:22;;;:14;:22;;;;;;;;;22146:13;:60;;22205:1;22146:60;;;22162:19;;;;;;;:11;:19;;;;;;;;22182:13;;;22162:34;;;;;;;;;:40;;;;;;22146:60;22127:79;;22225:16;22244:67;22250:9;22261:6;22244:67;;;;;;;;;;;;;;;;;:5;:67::i;:::-;22225:86;;22330:57;22347:6;22355:9;22366;22377;22330:16;:57::i;20477:375::-;20580:20;;;;20554:23;20580:20;;;:9;:20;;;;;;;;;;20637:8;:19;;;;;;20667:20;;;;:32;;;;;;;;;;;20717:54;;20580:20;;;;;20637:19;;;;;20667:32;;20580:20;;;20717:54;;20554:23;20717:54;20784:60;20799:15;20816:9;20827:16;20784:14;:60::i;:::-;20477:375;;;;:::o;23773:153::-;23883:9;23773:153;:::o;5062:345::-;5148:7;5250:12;5243:5;5235:28;;;;;;;;;;;;;;;;5274:9;5290:1;5286;:5;;;;;;;5062:345;-1:-1:-1;;;;;5062:345:0:o;22429:629::-;22547:18;22568:76;22575:12;22568:76;;;;;;;;;;;;;;;;;:6;:76::i;:::-;22547:97;;22674:1;22659:12;:16;;;:85;;;;-1:-1:-1;22679:22:0;;;;;;;:11;:22;;;;;;;;:65;22702:16;;;22679:40;;;;;;;;;:50;:65;;;:50;;:65;22659:85;22655:329;;;22759:22;;;;;;;:11;:22;;;;;;;;22782:16;;;22759:40;;;;;;;;;:57;;;;;;;;;;;;22655:329;;;22884:33;;;;;;;;;;;;;;;;;;;;;;;;;22845:22;;;-1:-1:-1;22845:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22930:25;;;:14;:25;;;;;;;:44;;22845:72;22958:16;;22930:44;;;;;;;;;;;;;22655:329;23020:9;22999:51;;;23031:8;23041;22999:51;;;;;;;;;;;;;;;;22429:629;;;;;:::o;23066:161::-;23141:6;23179:12;23172:5;23168:9;;23160:32;;;;;;;;;;;;;;6740:17189;;;;;;;;;;-1:-1:-1;6740:17189:0;;;;;;;;:::o;5:130:-1:-;72:20;;28355:42;28344:54;;29418:35;;29408:2;;29467:1;;29457:12;551:126;616:20;;28655:4;28644:16;;29910:33;;29900:2;;29957:1;;29947: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;;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;;;1111:63;;1229:53;1274:7;1211:2;1254:9;1250:22;1229:53;;;1219:63;;1015:283;;;;;;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;;;1501:63;-1:-1;1601:2;1640:22;;72:20;97:33;72:20;97:33;;;1405:391;;1609:63;;-1:-1;;;1709:2;1748:22;;;;346:20;;1405:391;1803:991;;;;;;;;2007:3;1995:9;1986:7;1982:23;1978:33;1975:2;;;-1:-1;;2014:12;1975:2;2076:53;2121:7;2097:22;2076:53;;;2066:63;;2184:53;2229:7;2166:2;2209:9;2205:22;2184:53;;;2174:63;;2274:2;2317:9;2313:22;346:20;2282:63;;2382:2;2425:9;2421:22;346:20;2390:63;;2509:51;2552:7;2490:3;2532:9;2528:22;2509:51;;;2499:61;;2597:3;2641:9;2637:22;209:20;2606:63;;2706:3;2750:9;2746:22;209:20;2715:63;;1969:825;;;;;;;;;;;2801:366;;;2922:2;2910:9;2901:7;2897:23;2893:32;2890:2;;;-1:-1;;2928:12;2890:2;2990:53;3035:7;3011:22;2990:53;;;2980:63;3080:2;3119:22;;;;346:20;;-1:-1;;;2884:283;3174:865;;;;;;;3361:3;3349:9;3340:7;3336:23;3332:33;3329:2;;;-1:-1;;3368:12;3329:2;3430:53;3475:7;3451:22;3430:53;;;3420:63;;3520:2;3563:9;3559:22;346:20;3528:63;;3628:2;3671:9;3667:22;346:20;3636:63;;3754:51;3797:7;3736:2;3777:9;3773:22;3754:51;;;3744:61;;3842:3;3886:9;3882:22;209:20;3851:63;;3951:3;3995:9;3991:22;209:20;3960:63;;3323:716;;;;;;;;;4046:364;;;4166:2;4154:9;4145:7;4141:23;4137:32;4134:2;;;-1:-1;;4172:12;4134:2;4234:53;4279:7;4255:22;4234:53;;;4224:63;;4324:2;4366:9;4362:22;482:20;28561:10;29816:5;28550:22;29792:5;29789:34;29779:2;;-1:-1;;29827:12;29779:2;4332:62;;;;4128:282;;;;;;13689:650;6354:66;6334:87;;6319:1;6440:11;;4719:37;;;;14191:12;;;4719:37;14302:12;;;13925:414;14346:372;7438:34;7418:55;;7507:34;7502:2;7493:12;;7486:56;7576:20;7571:2;7562:12;;7555:42;7402:2;7616:12;;14526:192;14725:372;8661:34;8641:55;;8730:34;8725:2;8716:12;;8709:56;8799:5;8794:2;8785:12;;8778:27;8625:2;8824:12;;14905:192;15104:372;11410:34;11390:55;;11479:28;11474:2;11465:12;;11458:50;11374:2;11527:12;;15284:192;15483:213;28355:42;28344:54;;;;4488:37;;15601:2;15586:18;;15572:124;15703:324;28355:42;28344:54;;;4488:37;;28344:54;;16013:2;15998:18;;4488:37;15849:2;15834:18;;15820:207;16034:201;28177:13;;28170:21;4602:34;;16146:2;16131:18;;16117:118;16242:213;4719:37;;;16360:2;16345:18;;16331:124;16462:771;4719:37;;;28355:42;28344:54;;;16885:2;16870:18;;4488:37;28344:54;;;;16968:2;16953:18;;4488:37;17051:2;17036:18;;4719:37;17134:3;17119:19;;4719:37;;;;17218:3;17203:19;;4719:37;16720:3;16705:19;;16691:542;17240:547;4719:37;;;28355:42;28344:54;;;;17607:2;17592:18;;4488:37;17690:2;17675:18;;4719:37;17773:2;17758:18;;4719:37;17442:3;17427:19;;17413:374;17794:547;4719:37;;;18161:2;18146:18;;4719:37;;;;18244:2;18229:18;;4719:37;28355:42;28344:54;18327:2;18312:18;;4488:37;17996:3;17981:19;;17967:374;18348:539;4719:37;;;28655:4;28644:16;;;;18707:2;18692:18;;13394:35;18790:2;18775:18;;4719:37;18873:2;18858:18;;4719:37;18546:3;18531:19;;18517:370;18894:301;;19032:2;;19053:17;19046:47;5072:5;27646:12;27803:6;19032:2;19021:9;19017:18;27791:19;-1:-1;28969:101;28983:6;28980:1;28977:13;28969:101;;;29050:11;;;;;29044:18;29031:11;;;27831:14;29031:11;29024:39;28998:10;;28969:101;;;29085:6;29082:1;29079:13;29076:2;;;-1:-1;27831:14;29141:6;19021:9;29132:16;;29125:27;29076:2;-1:-1;29342:2;29322:14;29338:7;29318:28;5230:39;;;;27831:14;5230:39;;19003:192;-1:-1;;;19003:192;19202:407;19393:2;19407:47;;;5506:2;19378:18;;;27791:19;5542:34;27831:14;;;5522:55;5611:8;5597:12;;;5590:30;5639:12;;;19364:245;19616:407;19807:2;19821:47;;;5890:2;19792:18;;;27791:19;5926:34;27831:14;;;5906:55;5995:17;5981:12;;;5974:39;6032:12;;;19778:245;20030:407;20221:2;20235:47;;;6690:2;20206:18;;;27791:19;6726:29;27831:14;;;6706:50;6775:12;;;20192:245;20444:407;20635:2;20649:47;;;7026:2;20620:18;;;27791:19;7062:33;27831:14;;;7042:54;7115:12;;;20606:245;20858:407;21049:2;21063:47;;;7867:2;21034:18;;;27791:19;7903:31;27831:14;;;7883:52;7954:12;;;21020:245;21272:407;21463:2;21477:47;;;8205:2;21448:18;;;27791:19;8241:34;27831:14;;;8221:55;8310:8;8296:12;;;8289:30;8338:12;;;21434:245;21686:407;21877:2;21891:47;;;9075:2;21862:18;;;27791:19;9111:28;27831:14;;;9091:49;9159:12;;;21848:245;22100:407;22291:2;22305:47;;;9410:2;22276:18;;;27791:19;9446:34;27831:14;;;9426:55;9515:3;9501:12;;;9494:25;9538:12;;;22262:245;22514:407;22705:2;22719:47;;;9789:2;22690:18;;;27791:19;9825:34;27831:14;;;9805:55;9894:4;9880:12;;;9873:26;9918:12;;;22676:245;22928:407;23119:2;23133:47;;;10169:2;23104:18;;;27791:19;10205:34;27831:14;;;10185:55;10274:6;10260:12;;;10253:28;10300:12;;;23090:245;23342:407;23533:2;23547:47;;;10551:2;23518:18;;;27791:19;10587:34;27831:14;;;10567:55;10656:30;10642:12;;;10635:52;10706:12;;;23504:245;23756:407;23947:2;23961:47;;;10957:2;23932:18;;;27791:19;10993:34;27831:14;;;10973:55;11062:5;11048:12;;;11041:27;11087:12;;;23918:245;24170:407;24361:2;24375:47;;;11778:2;24346:18;;;27791:19;11814:34;27831:14;;;11794:55;11883:28;11869:12;;;11862:50;11931:12;;;24332:245;24584:407;24775:2;24789:47;;;12182:2;24760:18;;;27791:19;12218:34;27831:14;;;12198:55;12287:32;12273:12;;;12266:54;12339:12;;;24746:245;24998:407;25189:2;25203:47;;;12590:2;25174:18;;;27791:19;12626:33;27831:14;;;12606:54;12679:12;;;25160:245;25412:407;25603:2;25617:47;;;12930:2;25588:18;;;27791:19;12966:34;27831:14;;;12946:55;13035:9;13021:12;;;13014:31;13064:12;;;25574:245;26046:209;28561:10;28550:22;;;;13279:36;;26162:2;26147:18;;26133:122;26262:316;28561:10;28550:22;;;;13279:36;;28744:26;28733:38;26564:2;26549:18;;13641:36;26404:2;26389:18;;26375:203;26585:205;28655:4;28644:16;;;;13394:35;;26699:2;26684:18;;26670:120;26797:211;28744:26;28733:38;;;;13511:49;;26914:2;26899:18;;26885:123;27231:320;28744:26;28733:38;;;13511:49;;28733:38;;27537:2;27522:18;;13511:49;27375:2;27360:18;;27346:205;29359:117;28355:42;29446:5;28344:54;29421:5;29418:35;29408:2;;29467:1;;29457:12

Swarm Source

ipfs://90b7be2ddff155c2b6417cb059e77f68b5be9bc9ed8b766e4088345c6186bed7
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.