ETH Price: $3,394.36 (-0.69%)
Gas: 13 Gwei

Token

KeyVerse (KV)
 

Overview

Max Total Supply

1,091 KV

Holders

594

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 KV
0xb3f47f52532932e04a798a407fb657f61f6a582f
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:
KeyVerse

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-29
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/KeyVerse.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;





contract KeyVerse is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private tokenIds;

    uint256 public cost = 0.3 ether;
    uint256 public ogCost = 0.075 ether;
    uint256 public constant maxSupply = 5555;
    uint256 public whitelistLimit = 2;
    uint256 public ogLimit = 2;
    uint256 public publicLimit = 1;
    uint256[5555] private tokenLevels;

    enum MintState{OG, WHITELIST, PUBLIC}
    MintState public mintState = MintState.OG;
 
    bool hidden = true;
    bool paused = false;

    bytes32 merkleRootWhitelist;
    bytes32 merkleRootOG;

    address stakeAddr;

    string private hiddenUri = "ipfs://bafybeicui7apmupcrq57qdlva5rcc2b7ujcwfpnzyudygal3rado3icdlq/";
    string[21] levelToUri;

    constructor()
    ERC721("KeyVerse", "KV")
    {
    }
    
    function upgradeLevel(uint256 _tokenId) external {
        require(!hidden);
        require(!paused);
        require(msg.sender == stakeAddr || msg.sender == owner());
        uint256 level = getLevel(_tokenId);
        if(level < 20) {
            tokenLevels[_tokenId] += 1;
        }
    }

    function getLevel(uint256 _tokenId) public view returns (uint256) {
        require(_exists(_tokenId), "Nonexistent token");
        return tokenLevels[_tokenId];
    }
       
    function _burn(uint256 tokenId)
        internal
        override(ERC721)
        onlyOwner
    {
        super._burn(tokenId);
    }

    function tokenURI(uint256 _id)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(_id), "Nonexistent token");
        if (hidden) {
            return string(
                abi.encodePacked(
                    hiddenUri,
                    _id.toString(),
                    ".json"
                ));
        }
        return string(
            abi.encodePacked(
                levelToUri[tokenLevels[_id]],
                _id.toString(),
                ".json"
            ));
    }
    
    function internalMint(uint256 _mintAmount) internal {
        uint256 currentId = tokenIds.current();
        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(msg.sender, currentId + i);
            tokenLevels[currentId + i] = 0;
            tokenIds.increment();
        }
    }

    function presaleMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) external payable {
        require(!paused, "Contract is paused");
        require(mintState == MintState.WHITELIST || mintState == MintState.OG, "Presale not active");
        require(_mintAmount > 0, "Mint at least 1");
        require(tokenIds.current() + _mintAmount <= maxSupply, "Sold out!");
        if (msg.sender != owner()) {
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            if (mintState == MintState.OG) {
                require(balanceOf(msg.sender) + _mintAmount <= ogLimit, "Max per address exceeded");
                require(msg.value >= ogCost * _mintAmount, "Insufficient funds");
                require(MerkleProof.verify(_merkleProof, merkleRootOG, leaf), "Invalid proof");
            } else {
                require(balanceOf(msg.sender) + _mintAmount <= whitelistLimit, "Max per address exceeded");
                require(msg.value >= cost * _mintAmount, "Insufficient funds");
                require(MerkleProof.verify(_merkleProof, merkleRootWhitelist, leaf), "Invalid proof");
            }
        }
        internalMint(_mintAmount);
    }

    function publicMint(uint256 _mintAmount) external payable {
        require(!paused, "Contract is paused");
        require(mintState == MintState.PUBLIC, "Public mint is not active");
        require(_mintAmount > 0, "Mint 1 NFT");
        uint256 supply = tokenIds.current();
        require(supply + _mintAmount <= maxSupply, "Sold out!");

        if (msg.sender != owner()) {
            require(balanceOf(msg.sender) + _mintAmount <= publicLimit, "Max per address exceeded");
            require(_mintAmount <= publicLimit, "Max per address exceeded");
            require(msg.value >= cost * _mintAmount, "Insufficient funds");
        }

        internalMint(_mintAmount);
    }

    function totalSupply() public view returns (uint256) {
        return tokenIds.current();
    }

    function isPaused() external view returns (bool) {
        return paused;
    }

    function setRevealed(bool _state) external onlyOwner {
        hidden = !_state;
    }

    function setMintState(MintState _state) external onlyOwner {
        mintState = _state;
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setWhitelistRoot(bytes32 _root) external onlyOwner {
        merkleRootWhitelist = _root;
    }

    function setOGRoot(bytes32 _root) external onlyOwner {
        merkleRootOG = _root;  
    }

    function setStakingAddr(address _addr) external onlyOwner {
        stakeAddr = _addr;
    }

    function getBalance() external view onlyOwner returns (uint256) {
        return address(this).balance;
    }

    function setURIs(string[] calldata _URIs) external onlyOwner {
        require(_URIs.length == 21);
        for (uint256 i = 0; i < 21; ++i) {
            levelToUri[i] = _URIs[i];
        }
    }

    function setWhitelistMint() external onlyOwner {
        mintState = MintState.WHITELIST;
    }

    function setOGMint() external onlyOwner {
        mintState = MintState.OG;
    }

    function setPublicMint() external onlyOwner {
        mintState = MintState.PUBLIC;
    }

    function withdraw() external payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintState","outputs":[{"internalType":"enum KeyVerse.MintState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum KeyVerse.MintState","name":"_state","type":"uint8"}],"name":"setMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOGMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setOGRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setStakingAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"_URIs","type":"string[]"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"upgradeLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

670429d069189e000060085567010a741a462780006009556002600a819055600b556001600c556115c0805462ffffff19166101009081179091556040526043608081815290620028b160a039805162000063916115c4916020909101906200014b565b503480156200007157600080fd5b5060408051808201825260088152674b6579566572736560c01b60208083019182528351808501909452600284526125ab60f11b908401528151919291620000bc916000916200014b565b508051620000d29060019060208401906200014b565b505050620000ef620000e9620000f560201b60201c565b620000f9565b6200022e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015990620001f1565b90600052602060002090601f0160209004810192826200017d5760008555620001c8565b82601f106200019857805160ff1916838001178555620001c8565b82800160010185558215620001c8579182015b82811115620001c8578251825591602001919060010190620001ab565b50620001d6929150620001da565b5090565b5b80821115620001d65760008155600101620001db565b600181811c908216806200020657607f821691505b602082108114156200022857634e487b7160e01b600052602260045260246000fd5b50919050565b612673806200023e6000396000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063c77343f9116100b6578063e39f82eb1161007a578063e39f82eb14610641578063e3e1e8ef14610661578063e985e9c514610674578063f11cb0af146106bd578063f2fde38b146106dd578063f5aa406d146106fd57600080fd5b8063c77343f9146105b6578063c87b56dd146105cb578063d3cca940146105eb578063d5abeb011461060b578063e0a808531461062157600080fd5b8063a4331d2d116100fd578063a4331d2d14610519578063b187bd261461052f578063b88d4fde1461054e578063c051e38a1461056e578063c381a7ec1461059657600080fd5b8063715018a61461049157806386481d40146104a65780638da5cb5b146104c657806395d89b41146104e4578063a22cb465146104f957600080fd5b806329723719116101c75780634f9134161161018b5780634f913416146104055780635efe1a1f1461041b5780636352211e1461043b57806369aff65f1461045b57806370a082311461047157600080fd5b8063297237191461039f5780632db11544146103b4578063302150e5146103c75780633ccfd60b146103dd57806342842e0e146103e557600080fd5b8063095ea7b31161020e578063095ea7b31461031157806312065fe01461033157806313faede61461035457806318160ddd1461036a57806323b872dd1461037f57600080fd5b806301ffc9a71461024b57806302329a291461028057806302456aa2146102a257806306fdde03146102b7578063081812fc146102d9575b600080fd5b34801561025757600080fd5b5061026b610266366004611ec3565b61071d565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b366004611ef5565b61076f565b005b3480156102ae57600080fd5b506102a0610794565b3480156102c357600080fd5b506102cc6107b4565b6040516102779190611f68565b3480156102e557600080fd5b506102f96102f4366004611f7b565b610846565b6040516001600160a01b039091168152602001610277565b34801561031d57600080fd5b506102a061032c366004611fab565b61086d565b34801561033d57600080fd5b50610346610988565b604051908152602001610277565b34801561036057600080fd5b5061034660085481565b34801561037657600080fd5b50610346610997565b34801561038b57600080fd5b506102a061039a366004611fd5565b6109a7565b3480156103ab57600080fd5b506102a06109d8565b6102a06103c2366004611f7b565b6109f5565b3480156103d357600080fd5b50610346600a5481565b6102a0610bdf565b3480156103f157600080fd5b506102a0610400366004611fd5565b610c5b565b34801561041157600080fd5b50610346600b5481565b34801561042757600080fd5b506102a0610436366004611f7b565b610c76565b34801561044757600080fd5b506102f9610456366004611f7b565b610c84565b34801561046757600080fd5b5061034660095481565b34801561047d57600080fd5b5061034661048c366004612011565b610ce4565b34801561049d57600080fd5b506102a0610d6a565b3480156104b257600080fd5b506103466104c1366004611f7b565b610d7e565b3480156104d257600080fd5b506006546001600160a01b03166102f9565b3480156104f057600080fd5b506102cc610df2565b34801561050557600080fd5b506102a061051436600461202c565b610e01565b34801561052557600080fd5b50610346600c5481565b34801561053b57600080fd5b506115c05462010000900460ff1661026b565b34801561055a57600080fd5b506102a0610569366004612075565b610e0c565b34801561057a57600080fd5b506115c0546105899060ff1681565b6040516102779190612167565b3480156105a257600080fd5b506102a06105b13660046121db565b610e44565b3480156105c257600080fd5b506102a0610eba565b3480156105d757600080fd5b506102cc6105e6366004611f7b565b610ed6565b3480156105f757600080fd5b506102a0610606366004612011565b610fa8565b34801561061757600080fd5b506103466115b381565b34801561062d57600080fd5b506102a061063c366004611ef5565b610fd3565b34801561064d57600080fd5b506102a061065c366004611f7b565b610ff3565b6102a061066f36600461221d565b611092565b34801561068057600080fd5b5061026b61068f366004612269565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106c957600080fd5b506102a06106d8366004612293565b61142f565b3480156106e957600080fd5b506102a06106f8366004612011565b61145f565b34801561070957600080fd5b506102a0610718366004611f7b565b6114d5565b60006001600160e01b031982166380ac58cd60e01b148061074e57506001600160e01b03198216635b5e139f60e01b145b8061076957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6107776114e3565b6115c08054911515620100000262ff000019909216919091179055565b61079c6114e3565b6115c080546002919060ff19166001835b0217905550565b6060600080546107c3906122b4565b80601f01602080910402602001604051908101604052809291908181526020018280546107ef906122b4565b801561083c5780601f106108115761010080835404028352916020019161083c565b820191906000526020600020905b81548152906001019060200180831161081f57829003601f168201915b5050505050905090565b60006108518261153d565b506000908152600460205260409020546001600160a01b031690565b600061087882610c84565b9050806001600160a01b0316836001600160a01b031614156108eb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806109075750610907813361068f565b6109795760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016108e2565b610983838361159c565b505050565b60006109926114e3565b504790565b60006109a260075490565b905090565b6109b1338261160a565b6109cd5760405162461bcd60e51b81526004016108e2906122ef565b610983838383611689565b6109e06114e3565b6115c080546000919060ff19166001836107ad565b6115c05462010000900460ff1615610a445760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016108e2565b60026115c05460ff166002811115610a5e57610a5e612151565b14610aab5760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e74206973206e6f74206163746976650000000000000060448201526064016108e2565b60008111610ae85760405162461bcd60e51b815260206004820152600a602482015269135a5b9d080c4813919560b21b60448201526064016108e2565b6000610af360075490565b90506115b3610b028383612353565b1115610b3c5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b60448201526064016108e2565b6006546001600160a01b03163314610bd257600c5482610b5b33610ce4565b610b659190612353565b1115610b835760405162461bcd60e51b81526004016108e29061236b565b600c54821115610ba55760405162461bcd60e51b81526004016108e29061236b565b81600854610bb391906123a2565b341015610bd25760405162461bcd60e51b81526004016108e2906123c1565b610bdb82611825565b5050565b610be76114e3565b6000610bfb6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c45576040519150601f19603f3d011682016040523d82523d6000602084013e610c4a565b606091505b5050905080610c5857600080fd5b50565b61098383838360405180602001604052806000815250610e0c565b610c7e6114e3565b6115c255565b6000818152600260205260408120546001600160a01b0316806107695760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108e2565b60006001600160a01b038216610d4e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016108e2565b506001600160a01b031660009081526003602052604090205490565b610d726114e3565b610d7c6000611891565b565b6000818152600260205260408120546001600160a01b0316610dd65760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108e2565b600d826115b38110610dea57610dea6123ed565b015492915050565b6060600180546107c3906122b4565b610bdb3383836118e3565b610e16338361160a565b610e325760405162461bcd60e51b81526004016108e2906122ef565b610e3e848484846119b2565b50505050565b610e4c6114e3565b60158114610e5957600080fd5b60005b601581101561098357828282818110610e7757610e776123ed565b9050602002810190610e899190612403565b6115c58360158110610e9d57610e9d6123ed565b610ea993910191611e14565b50610eb38161244a565b9050610e5c565b610ec26114e3565b6115c080546001919060ff191682806107ad565b6000818152600260205260409020546060906001600160a01b0316610f315760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108e2565b6115c054610100900460ff1615610f75576115c4610f4e836119e5565b604051602001610f5f929190612481565b6040516020818303038152906040529050919050565b6115c5600d836115b38110610f8c57610f8c6123ed565b015460158110610f9e57610f9e6123ed565b01610f4e836119e5565b610fb06114e3565b6115c380546001600160a01b0319166001600160a01b0392909216919091179055565b610fdb6114e3565b6115c0805461ff001916911561010002919091179055565b6115c054610100900460ff161561100957600080fd5b6115c05462010000900460ff161561102057600080fd5b6115c3546001600160a01b031633148061104457506006546001600160a01b031633145b61104d57600080fd5b600061105882610d7e565b90506014811015610bdb576001600d836115b38110611079576110796123ed565b0160008282546110899190612353565b90915550505050565b6115c05462010000900460ff16156110e15760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016108e2565b60016115c05460ff1660028111156110fb576110fb612151565b148061111e575060006115c05460ff16600281111561111c5761111c612151565b145b61115f5760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b60448201526064016108e2565b600083116111a15760405162461bcd60e51b815260206004820152600f60248201526e4d696e74206174206c65617374203160881b60448201526064016108e2565b6115b3836111ae60075490565b6111b89190612353565b11156111f25760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b60448201526064016108e2565b6006546001600160a01b03163314611426576040516bffffffffffffffffffffffff193360601b16602082015260009060340160408051601f198184030181529190528051602090910120905060006115c05460ff16600281111561125957611259612151565b141561134457600b548461126c33610ce4565b6112769190612353565b11156112945760405162461bcd60e51b81526004016108e29061236b565b836009546112a291906123a2565b3410156112c15760405162461bcd60e51b81526004016108e2906123c1565b611303838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506115c2549150849050611ae3565b61133f5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016108e2565b611424565b600a548461135133610ce4565b61135b9190612353565b11156113795760405162461bcd60e51b81526004016108e29061236b565b8360085461138791906123a2565b3410156113a65760405162461bcd60e51b81526004016108e2906123c1565b6113e8838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506115c1549150849050611ae3565b6114245760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016108e2565b505b61098383611825565b6114376114e3565b6115c0805482919060ff1916600183600281111561145757611457612151565b021790555050565b6114676114e3565b6001600160a01b0381166114cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e2565b610c5881611891565b6114dd6114e3565b6115c155565b6006546001600160a01b03163314610d7c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e2565b6000818152600260205260409020546001600160a01b0316610c585760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108e2565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115d182610c84565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061161683610c84565b9050806001600160a01b0316846001600160a01b0316148061165d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806116815750836001600160a01b031661167684610846565b6001600160a01b0316145b949350505050565b826001600160a01b031661169c82610c84565b6001600160a01b0316146117005760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108e2565b6001600160a01b0382166117625760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108e2565b61176d60008261159c565b6001600160a01b038316600090815260036020526040812080546001929061179690849061253c565b90915550506001600160a01b03821660009081526003602052604081208054600192906117c4908490612353565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061183060075490565b905060005b82811015610983576118503361184b8385612353565b611af9565b6000600d61185e8385612353565b6115b3811061186f5761186f6123ed565b015561187f600780546001019055565b806118898161244a565b915050611835565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156119455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108e2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119bd848484611689565b6119c984848484611b13565b610e3e5760405162461bcd60e51b81526004016108e290612553565b606081611a095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a335780611a1d8161244a565b9150611a2c9050600a836125bb565b9150611a0d565b60008167ffffffffffffffff811115611a4e57611a4e61205f565b6040519080825280601f01601f191660200182016040528015611a78576020820181803683370190505b5090505b841561168157611a8d60018361253c565b9150611a9a600a866125cf565b611aa5906030612353565b60f81b818381518110611aba57611aba6123ed565b60200101906001600160f81b031916908160001a905350611adc600a866125bb565b9450611a7c565b600082611af08584611c20565b14949350505050565b610bdb828260405180602001604052806000815250611c6d565b60006001600160a01b0384163b15611c1557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b579033908990889088906004016125e3565b602060405180830381600087803b158015611b7157600080fd5b505af1925050508015611ba1575060408051601f3d908101601f19168201909252611b9e91810190612620565b60015b611bfb573d808015611bcf576040519150601f19603f3d011682016040523d82523d6000602084013e611bd4565b606091505b508051611bf35760405162461bcd60e51b81526004016108e290612553565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611681565b506001949350505050565b600081815b8451811015611c6557611c5182868381518110611c4457611c446123ed565b6020026020010151611ca0565b915080611c5d8161244a565b915050611c25565b509392505050565b611c778383611cd2565b611c846000848484611b13565b6109835760405162461bcd60e51b81526004016108e290612553565b6000818310611cbc576000828152602084905260409020611ccb565b60008381526020839052604090205b9392505050565b6001600160a01b038216611d285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108e2565b6000818152600260205260409020546001600160a01b031615611d8d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108e2565b6001600160a01b0382166000908152600360205260408120805460019290611db6908490612353565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e20906122b4565b90600052602060002090601f016020900481019282611e425760008555611e88565b82601f10611e5b5782800160ff19823516178555611e88565b82800160010185558215611e88579182015b82811115611e88578235825591602001919060010190611e6d565b50611e94929150611e98565b5090565b5b80821115611e945760008155600101611e99565b6001600160e01b031981168114610c5857600080fd5b600060208284031215611ed557600080fd5b8135611ccb81611ead565b80358015158114611ef057600080fd5b919050565b600060208284031215611f0757600080fd5b611ccb82611ee0565b60005b83811015611f2b578181015183820152602001611f13565b83811115610e3e5750506000910152565b60008151808452611f54816020860160208601611f10565b601f01601f19169290920160200192915050565b602081526000611ccb6020830184611f3c565b600060208284031215611f8d57600080fd5b5035919050565b80356001600160a01b0381168114611ef057600080fd5b60008060408385031215611fbe57600080fd5b611fc783611f94565b946020939093013593505050565b600080600060608486031215611fea57600080fd5b611ff384611f94565b925061200160208501611f94565b9150604084013590509250925092565b60006020828403121561202357600080fd5b611ccb82611f94565b6000806040838503121561203f57600080fd5b61204883611f94565b915061205660208401611ee0565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561208b57600080fd5b61209485611f94565b93506120a260208601611f94565b925060408501359150606085013567ffffffffffffffff808211156120c657600080fd5b818701915087601f8301126120da57600080fd5b8135818111156120ec576120ec61205f565b604051601f8201601f19908116603f011681019083821181831017156121145761211461205f565b816040528281528a602084870101111561212d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b634e487b7160e01b600052602160045260246000fd5b602081016003831061218957634e487b7160e01b600052602160045260246000fd5b91905290565b60008083601f8401126121a157600080fd5b50813567ffffffffffffffff8111156121b957600080fd5b6020830191508360208260051b85010111156121d457600080fd5b9250929050565b600080602083850312156121ee57600080fd5b823567ffffffffffffffff81111561220557600080fd5b6122118582860161218f565b90969095509350505050565b60008060006040848603121561223257600080fd5b83359250602084013567ffffffffffffffff81111561225057600080fd5b61225c8682870161218f565b9497909650939450505050565b6000806040838503121561227c57600080fd5b61228583611f94565b915061205660208401611f94565b6000602082840312156122a557600080fd5b813560038110611ccb57600080fd5b600181811c908216806122c857607f821691505b602082108114156122e957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156123665761236661233d565b500190565b60208082526018908201527f4d61782070657220616464726573732065786365656465640000000000000000604082015260600190565b60008160001904831182151516156123bc576123bc61233d565b500290565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000808335601e1984360301811261241a57600080fd5b83018035915067ffffffffffffffff82111561243557600080fd5b6020019150368190038213156121d457600080fd5b600060001982141561245e5761245e61233d565b5060010190565b60008151612477818560208601611f10565b9290920192915050565b600080845481600182811c91508083168061249d57607f831692505b60208084108214156124bd57634e487b7160e01b86526022600452602486fd5b8180156124d157600181146124e25761250f565b60ff1986168952848901965061250f565b60008b81526020902060005b868110156125075781548b8201529085019083016124ee565b505084890196505b5050505050506125336125228286612465565b64173539b7b760d91b815260050190565b95945050505050565b60008282101561254e5761254e61233d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826125ca576125ca6125a5565b500490565b6000826125de576125de6125a5565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061261690830184611f3c565b9695505050505050565b60006020828403121561263257600080fd5b8151611ccb81611ead56fea2646970667358221220796676d451e77e8fb6277e15e688e1fa70ce0d3541367b5aada22a7a276eaa4a64736f6c63430008090033697066733a2f2f626166796265696375693761706d7570637271353771646c766135726363326237756a637766706e7a7975647967616c337261646f336963646c712f

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063c77343f9116100b6578063e39f82eb1161007a578063e39f82eb14610641578063e3e1e8ef14610661578063e985e9c514610674578063f11cb0af146106bd578063f2fde38b146106dd578063f5aa406d146106fd57600080fd5b8063c77343f9146105b6578063c87b56dd146105cb578063d3cca940146105eb578063d5abeb011461060b578063e0a808531461062157600080fd5b8063a4331d2d116100fd578063a4331d2d14610519578063b187bd261461052f578063b88d4fde1461054e578063c051e38a1461056e578063c381a7ec1461059657600080fd5b8063715018a61461049157806386481d40146104a65780638da5cb5b146104c657806395d89b41146104e4578063a22cb465146104f957600080fd5b806329723719116101c75780634f9134161161018b5780634f913416146104055780635efe1a1f1461041b5780636352211e1461043b57806369aff65f1461045b57806370a082311461047157600080fd5b8063297237191461039f5780632db11544146103b4578063302150e5146103c75780633ccfd60b146103dd57806342842e0e146103e557600080fd5b8063095ea7b31161020e578063095ea7b31461031157806312065fe01461033157806313faede61461035457806318160ddd1461036a57806323b872dd1461037f57600080fd5b806301ffc9a71461024b57806302329a291461028057806302456aa2146102a257806306fdde03146102b7578063081812fc146102d9575b600080fd5b34801561025757600080fd5b5061026b610266366004611ec3565b61071d565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b366004611ef5565b61076f565b005b3480156102ae57600080fd5b506102a0610794565b3480156102c357600080fd5b506102cc6107b4565b6040516102779190611f68565b3480156102e557600080fd5b506102f96102f4366004611f7b565b610846565b6040516001600160a01b039091168152602001610277565b34801561031d57600080fd5b506102a061032c366004611fab565b61086d565b34801561033d57600080fd5b50610346610988565b604051908152602001610277565b34801561036057600080fd5b5061034660085481565b34801561037657600080fd5b50610346610997565b34801561038b57600080fd5b506102a061039a366004611fd5565b6109a7565b3480156103ab57600080fd5b506102a06109d8565b6102a06103c2366004611f7b565b6109f5565b3480156103d357600080fd5b50610346600a5481565b6102a0610bdf565b3480156103f157600080fd5b506102a0610400366004611fd5565b610c5b565b34801561041157600080fd5b50610346600b5481565b34801561042757600080fd5b506102a0610436366004611f7b565b610c76565b34801561044757600080fd5b506102f9610456366004611f7b565b610c84565b34801561046757600080fd5b5061034660095481565b34801561047d57600080fd5b5061034661048c366004612011565b610ce4565b34801561049d57600080fd5b506102a0610d6a565b3480156104b257600080fd5b506103466104c1366004611f7b565b610d7e565b3480156104d257600080fd5b506006546001600160a01b03166102f9565b3480156104f057600080fd5b506102cc610df2565b34801561050557600080fd5b506102a061051436600461202c565b610e01565b34801561052557600080fd5b50610346600c5481565b34801561053b57600080fd5b506115c05462010000900460ff1661026b565b34801561055a57600080fd5b506102a0610569366004612075565b610e0c565b34801561057a57600080fd5b506115c0546105899060ff1681565b6040516102779190612167565b3480156105a257600080fd5b506102a06105b13660046121db565b610e44565b3480156105c257600080fd5b506102a0610eba565b3480156105d757600080fd5b506102cc6105e6366004611f7b565b610ed6565b3480156105f757600080fd5b506102a0610606366004612011565b610fa8565b34801561061757600080fd5b506103466115b381565b34801561062d57600080fd5b506102a061063c366004611ef5565b610fd3565b34801561064d57600080fd5b506102a061065c366004611f7b565b610ff3565b6102a061066f36600461221d565b611092565b34801561068057600080fd5b5061026b61068f366004612269565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106c957600080fd5b506102a06106d8366004612293565b61142f565b3480156106e957600080fd5b506102a06106f8366004612011565b61145f565b34801561070957600080fd5b506102a0610718366004611f7b565b6114d5565b60006001600160e01b031982166380ac58cd60e01b148061074e57506001600160e01b03198216635b5e139f60e01b145b8061076957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6107776114e3565b6115c08054911515620100000262ff000019909216919091179055565b61079c6114e3565b6115c080546002919060ff19166001835b0217905550565b6060600080546107c3906122b4565b80601f01602080910402602001604051908101604052809291908181526020018280546107ef906122b4565b801561083c5780601f106108115761010080835404028352916020019161083c565b820191906000526020600020905b81548152906001019060200180831161081f57829003601f168201915b5050505050905090565b60006108518261153d565b506000908152600460205260409020546001600160a01b031690565b600061087882610c84565b9050806001600160a01b0316836001600160a01b031614156108eb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806109075750610907813361068f565b6109795760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016108e2565b610983838361159c565b505050565b60006109926114e3565b504790565b60006109a260075490565b905090565b6109b1338261160a565b6109cd5760405162461bcd60e51b81526004016108e2906122ef565b610983838383611689565b6109e06114e3565b6115c080546000919060ff19166001836107ad565b6115c05462010000900460ff1615610a445760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016108e2565b60026115c05460ff166002811115610a5e57610a5e612151565b14610aab5760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e74206973206e6f74206163746976650000000000000060448201526064016108e2565b60008111610ae85760405162461bcd60e51b815260206004820152600a602482015269135a5b9d080c4813919560b21b60448201526064016108e2565b6000610af360075490565b90506115b3610b028383612353565b1115610b3c5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b60448201526064016108e2565b6006546001600160a01b03163314610bd257600c5482610b5b33610ce4565b610b659190612353565b1115610b835760405162461bcd60e51b81526004016108e29061236b565b600c54821115610ba55760405162461bcd60e51b81526004016108e29061236b565b81600854610bb391906123a2565b341015610bd25760405162461bcd60e51b81526004016108e2906123c1565b610bdb82611825565b5050565b610be76114e3565b6000610bfb6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c45576040519150601f19603f3d011682016040523d82523d6000602084013e610c4a565b606091505b5050905080610c5857600080fd5b50565b61098383838360405180602001604052806000815250610e0c565b610c7e6114e3565b6115c255565b6000818152600260205260408120546001600160a01b0316806107695760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108e2565b60006001600160a01b038216610d4e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016108e2565b506001600160a01b031660009081526003602052604090205490565b610d726114e3565b610d7c6000611891565b565b6000818152600260205260408120546001600160a01b0316610dd65760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108e2565b600d826115b38110610dea57610dea6123ed565b015492915050565b6060600180546107c3906122b4565b610bdb3383836118e3565b610e16338361160a565b610e325760405162461bcd60e51b81526004016108e2906122ef565b610e3e848484846119b2565b50505050565b610e4c6114e3565b60158114610e5957600080fd5b60005b601581101561098357828282818110610e7757610e776123ed565b9050602002810190610e899190612403565b6115c58360158110610e9d57610e9d6123ed565b610ea993910191611e14565b50610eb38161244a565b9050610e5c565b610ec26114e3565b6115c080546001919060ff191682806107ad565b6000818152600260205260409020546060906001600160a01b0316610f315760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108e2565b6115c054610100900460ff1615610f75576115c4610f4e836119e5565b604051602001610f5f929190612481565b6040516020818303038152906040529050919050565b6115c5600d836115b38110610f8c57610f8c6123ed565b015460158110610f9e57610f9e6123ed565b01610f4e836119e5565b610fb06114e3565b6115c380546001600160a01b0319166001600160a01b0392909216919091179055565b610fdb6114e3565b6115c0805461ff001916911561010002919091179055565b6115c054610100900460ff161561100957600080fd5b6115c05462010000900460ff161561102057600080fd5b6115c3546001600160a01b031633148061104457506006546001600160a01b031633145b61104d57600080fd5b600061105882610d7e565b90506014811015610bdb576001600d836115b38110611079576110796123ed565b0160008282546110899190612353565b90915550505050565b6115c05462010000900460ff16156110e15760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016108e2565b60016115c05460ff1660028111156110fb576110fb612151565b148061111e575060006115c05460ff16600281111561111c5761111c612151565b145b61115f5760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b60448201526064016108e2565b600083116111a15760405162461bcd60e51b815260206004820152600f60248201526e4d696e74206174206c65617374203160881b60448201526064016108e2565b6115b3836111ae60075490565b6111b89190612353565b11156111f25760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b60448201526064016108e2565b6006546001600160a01b03163314611426576040516bffffffffffffffffffffffff193360601b16602082015260009060340160408051601f198184030181529190528051602090910120905060006115c05460ff16600281111561125957611259612151565b141561134457600b548461126c33610ce4565b6112769190612353565b11156112945760405162461bcd60e51b81526004016108e29061236b565b836009546112a291906123a2565b3410156112c15760405162461bcd60e51b81526004016108e2906123c1565b611303838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506115c2549150849050611ae3565b61133f5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016108e2565b611424565b600a548461135133610ce4565b61135b9190612353565b11156113795760405162461bcd60e51b81526004016108e29061236b565b8360085461138791906123a2565b3410156113a65760405162461bcd60e51b81526004016108e2906123c1565b6113e8838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506115c1549150849050611ae3565b6114245760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016108e2565b505b61098383611825565b6114376114e3565b6115c0805482919060ff1916600183600281111561145757611457612151565b021790555050565b6114676114e3565b6001600160a01b0381166114cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e2565b610c5881611891565b6114dd6114e3565b6115c155565b6006546001600160a01b03163314610d7c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e2565b6000818152600260205260409020546001600160a01b0316610c585760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108e2565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115d182610c84565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061161683610c84565b9050806001600160a01b0316846001600160a01b0316148061165d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806116815750836001600160a01b031661167684610846565b6001600160a01b0316145b949350505050565b826001600160a01b031661169c82610c84565b6001600160a01b0316146117005760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108e2565b6001600160a01b0382166117625760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108e2565b61176d60008261159c565b6001600160a01b038316600090815260036020526040812080546001929061179690849061253c565b90915550506001600160a01b03821660009081526003602052604081208054600192906117c4908490612353565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061183060075490565b905060005b82811015610983576118503361184b8385612353565b611af9565b6000600d61185e8385612353565b6115b3811061186f5761186f6123ed565b015561187f600780546001019055565b806118898161244a565b915050611835565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156119455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108e2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119bd848484611689565b6119c984848484611b13565b610e3e5760405162461bcd60e51b81526004016108e290612553565b606081611a095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a335780611a1d8161244a565b9150611a2c9050600a836125bb565b9150611a0d565b60008167ffffffffffffffff811115611a4e57611a4e61205f565b6040519080825280601f01601f191660200182016040528015611a78576020820181803683370190505b5090505b841561168157611a8d60018361253c565b9150611a9a600a866125cf565b611aa5906030612353565b60f81b818381518110611aba57611aba6123ed565b60200101906001600160f81b031916908160001a905350611adc600a866125bb565b9450611a7c565b600082611af08584611c20565b14949350505050565b610bdb828260405180602001604052806000815250611c6d565b60006001600160a01b0384163b15611c1557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b579033908990889088906004016125e3565b602060405180830381600087803b158015611b7157600080fd5b505af1925050508015611ba1575060408051601f3d908101601f19168201909252611b9e91810190612620565b60015b611bfb573d808015611bcf576040519150601f19603f3d011682016040523d82523d6000602084013e611bd4565b606091505b508051611bf35760405162461bcd60e51b81526004016108e290612553565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611681565b506001949350505050565b600081815b8451811015611c6557611c5182868381518110611c4457611c446123ed565b6020026020010151611ca0565b915080611c5d8161244a565b915050611c25565b509392505050565b611c778383611cd2565b611c846000848484611b13565b6109835760405162461bcd60e51b81526004016108e290612553565b6000818310611cbc576000828152602084905260409020611ccb565b60008381526020839052604090205b9392505050565b6001600160a01b038216611d285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108e2565b6000818152600260205260409020546001600160a01b031615611d8d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108e2565b6001600160a01b0382166000908152600360205260408120805460019290611db6908490612353565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e20906122b4565b90600052602060002090601f016020900481019282611e425760008555611e88565b82601f10611e5b5782800160ff19823516178555611e88565b82800160010185558215611e88579182015b82811115611e88578235825591602001919060010190611e6d565b50611e94929150611e98565b5090565b5b80821115611e945760008155600101611e99565b6001600160e01b031981168114610c5857600080fd5b600060208284031215611ed557600080fd5b8135611ccb81611ead565b80358015158114611ef057600080fd5b919050565b600060208284031215611f0757600080fd5b611ccb82611ee0565b60005b83811015611f2b578181015183820152602001611f13565b83811115610e3e5750506000910152565b60008151808452611f54816020860160208601611f10565b601f01601f19169290920160200192915050565b602081526000611ccb6020830184611f3c565b600060208284031215611f8d57600080fd5b5035919050565b80356001600160a01b0381168114611ef057600080fd5b60008060408385031215611fbe57600080fd5b611fc783611f94565b946020939093013593505050565b600080600060608486031215611fea57600080fd5b611ff384611f94565b925061200160208501611f94565b9150604084013590509250925092565b60006020828403121561202357600080fd5b611ccb82611f94565b6000806040838503121561203f57600080fd5b61204883611f94565b915061205660208401611ee0565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561208b57600080fd5b61209485611f94565b93506120a260208601611f94565b925060408501359150606085013567ffffffffffffffff808211156120c657600080fd5b818701915087601f8301126120da57600080fd5b8135818111156120ec576120ec61205f565b604051601f8201601f19908116603f011681019083821181831017156121145761211461205f565b816040528281528a602084870101111561212d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b634e487b7160e01b600052602160045260246000fd5b602081016003831061218957634e487b7160e01b600052602160045260246000fd5b91905290565b60008083601f8401126121a157600080fd5b50813567ffffffffffffffff8111156121b957600080fd5b6020830191508360208260051b85010111156121d457600080fd5b9250929050565b600080602083850312156121ee57600080fd5b823567ffffffffffffffff81111561220557600080fd5b6122118582860161218f565b90969095509350505050565b60008060006040848603121561223257600080fd5b83359250602084013567ffffffffffffffff81111561225057600080fd5b61225c8682870161218f565b9497909650939450505050565b6000806040838503121561227c57600080fd5b61228583611f94565b915061205660208401611f94565b6000602082840312156122a557600080fd5b813560038110611ccb57600080fd5b600181811c908216806122c857607f821691505b602082108114156122e957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156123665761236661233d565b500190565b60208082526018908201527f4d61782070657220616464726573732065786365656465640000000000000000604082015260600190565b60008160001904831182151516156123bc576123bc61233d565b500290565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000808335601e1984360301811261241a57600080fd5b83018035915067ffffffffffffffff82111561243557600080fd5b6020019150368190038213156121d457600080fd5b600060001982141561245e5761245e61233d565b5060010190565b60008151612477818560208601611f10565b9290920192915050565b600080845481600182811c91508083168061249d57607f831692505b60208084108214156124bd57634e487b7160e01b86526022600452602486fd5b8180156124d157600181146124e25761250f565b60ff1986168952848901965061250f565b60008b81526020902060005b868110156125075781548b8201529085019083016124ee565b505084890196505b5050505050506125336125228286612465565b64173539b7b760d91b815260050190565b95945050505050565b60008282101561254e5761254e61233d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826125ca576125ca6125a5565b500490565b6000826125de576125de6125a5565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061261690830184611f3c565b9695505050505050565b60006020828403121561263257600080fd5b8151611ccb81611ead56fea2646970667358221220796676d451e77e8fb6277e15e688e1fa70ce0d3541367b5aada22a7a276eaa4a64736f6c63430008090033

Deployed Bytecode Sourcemap

48211:5920:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34927:305;;;;;;;;;;-1:-1:-1;34927:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34927:305:0;;;;;;;;52941:81;;;;;;;;;;-1:-1:-1;52941:81:0;;;;;:::i;:::-;;:::i;:::-;;53872:91;;;;;;;;;;;;;:::i;35854:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37367:171::-;;;;;;;;;;-1:-1:-1;37367:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2064:32:1;;;2046:51;;2034:2;2019:18;37367:171:0;1900:203:1;36884:417:0;;;;;;;;;;-1:-1:-1;36884:417:0;;;;;:::i;:::-;;:::i;53348:111::-;;;;;;;;;;;;;:::i;:::-;;;2691:25:1;;;2679:2;2664:18;53348:111:0;2545:177:1;48371:31:0;;;;;;;;;;;;;;;;52547:97;;;;;;;;;;;;;:::i;38067:336::-;;;;;;;;;;-1:-1:-1;38067:336:0;;;;;:::i;:::-;;:::i;53781:83::-;;;;;;;;;;;;;:::i;51839:700::-;;;;;;:::i;:::-;;:::i;48498:33::-;;;;;;;;;;;;;;;;53971:157;;;:::i;38474:185::-;;;;;;;;;;-1:-1:-1;38474:185:0;;;;;:::i;:::-;;:::i;48538:26::-;;;;;;;;;;;;;;;;53144:94;;;;;;;;;;-1:-1:-1;53144:94:0;;;;;:::i;:::-;;:::i;35565:222::-;;;;;;;;;;-1:-1:-1;35565:222:0;;;;;:::i;:::-;;:::i;48409:35::-;;;;;;;;;;;;;;;;35296:207;;;;;;;;;;-1:-1:-1;35296:207:0;;;;;:::i;:::-;;:::i;15463:103::-;;;;;;;;;;;;;:::i;49398:171::-;;;;;;;;;;-1:-1:-1;49398:171:0;;;;;:::i;:::-;;:::i;14815:87::-;;;;;;;;;;-1:-1:-1;14888:6:0;;-1:-1:-1;;;;;14888:6:0;14815:87;;36023:104;;;;;;;;;;;;;:::i;37610:155::-;;;;;;;;;;-1:-1:-1;37610:155:0;;;;;:::i;:::-;;:::i;48571:30::-;;;;;;;;;;;;;;;;52652:81;;;;;;;;;;-1:-1:-1;52719:6:0;;;;;;;52652:81;;38730:323;;;;;;;;;;-1:-1:-1;38730:323:0;;;;;:::i;:::-;;:::i;48693:41::-;;;;;;;;;;-1:-1:-1;48693:41:0;;;;;;;;;;;;;;;:::i;53467:201::-;;;;;;;;;;-1:-1:-1;53467:201:0;;;;;:::i;:::-;;:::i;53676:97::-;;;;;;;;;;;;;:::i;49731:579::-;;;;;;;;;;-1:-1:-1;49731:579:0;;;;;:::i;:::-;;:::i;53246:94::-;;;;;;;;;;-1:-1:-1;53246:94:0;;;;;:::i;:::-;;:::i;48451:40::-;;;;;;;;;;;;48487:4;48451:40;;52741:88;;;;;;;;;;-1:-1:-1;52741:88:0;;;;;:::i;:::-;;:::i;49088:302::-;;;;;;;;;;-1:-1:-1;49088:302:0;;;;;:::i;:::-;;:::i;50634:1197::-;;;;;;:::i;:::-;;:::i;37836:164::-;;;;;;;;;;-1:-1:-1;37836:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37957:25:0;;;37933:4;37957:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37836:164;52837:96;;;;;;;;;;-1:-1:-1;52837:96:0;;;;;:::i;:::-;;:::i;15721:201::-;;;;;;;;;;-1:-1:-1;15721:201:0;;;;;:::i;:::-;;:::i;53030:106::-;;;;;;;;;;-1:-1:-1;53030:106:0;;;;;:::i;:::-;;:::i;34927:305::-;35029:4;-1:-1:-1;;;;;;35066:40:0;;-1:-1:-1;;;35066:40:0;;:105;;-1:-1:-1;;;;;;;35123:48:0;;-1:-1:-1;;;35123:48:0;35066:105;:158;;;-1:-1:-1;;;;;;;;;;27778:40:0;;;35188:36;35046:178;34927:305;-1:-1:-1;;34927:305:0:o;52941:81::-;14701:13;:11;:13::i;:::-;52999:6:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;52999:15:0;;::::1;::::0;;;::::1;::::0;;52941:81::o;53872:91::-;14701:13;:11;:13::i;:::-;53927:9:::1;:28:::0;;53939:16:::1;::::0;53927:9;-1:-1:-1;;53927:28:0::1;::::0;53939:16;53927:28:::1;;;;;;53872:91::o:0;35854:100::-;35908:13;35941:5;35934:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35854:100;:::o;37367:171::-;37443:7;37463:23;37478:7;37463:14;:23::i;:::-;-1:-1:-1;37506:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37506:24:0;;37367:171::o;36884:417::-;36965:13;36981:23;36996:7;36981:14;:23::i;:::-;36965:39;;37029:5;-1:-1:-1;;;;;37023:11:0;:2;-1:-1:-1;;;;;37023:11:0;;;37015:57;;;;-1:-1:-1;;;37015:57:0;;7936:2:1;37015:57:0;;;7918:21:1;7975:2;7955:18;;;7948:30;8014:34;7994:18;;;7987:62;-1:-1:-1;;;8065:18:1;;;8058:31;8106:19;;37015:57:0;;;;;;;;;13446:10;-1:-1:-1;;;;;37107:21:0;;;;:62;;-1:-1:-1;37132:37:0;37149:5;13446:10;37836:164;:::i;37132:37::-;37085:174;;;;-1:-1:-1;;;37085:174:0;;8338:2:1;37085:174:0;;;8320:21:1;8377:2;8357:18;;;8350:30;8416:34;8396:18;;;8389:62;8487:32;8467:18;;;8460:60;8537:19;;37085:174:0;8136:426:1;37085:174:0;37272:21;37281:2;37285:7;37272:8;:21::i;:::-;36954:347;36884:417;;:::o;53348:111::-;53403:7;14701:13;:11;:13::i;:::-;-1:-1:-1;53430:21:0::1;53348:111:::0;:::o;52547:97::-;52591:7;52618:18;:8;9689:14;;9597:114;52618:18;52611:25;;52547:97;:::o;38067:336::-;38262:41;13446:10;38295:7;38262:18;:41::i;:::-;38254:100;;;;-1:-1:-1;;;38254:100:0;;;;;;;:::i;:::-;38367:28;38377:4;38383:2;38387:7;38367:9;:28::i;53781:83::-;14701:13;:11;:13::i;:::-;53832:9:::1;:24:::0;;53844:12:::1;::::0;53832:9;-1:-1:-1;;53832:24:0::1;::::0;53844:12;53832:24:::1;::::0;51839:700;51917:6;;;;;;;51916:7;51908:38;;;;-1:-1:-1;;;51908:38:0;;9184:2:1;51908:38:0;;;9166:21:1;9223:2;9203:18;;;9196:30;-1:-1:-1;;;9242:18:1;;;9235:48;9300:18;;51908:38:0;8982:342:1;51908:38:0;51978:16;51965:9;;;;:29;;;;;;;;:::i;:::-;;51957:67;;;;-1:-1:-1;;;51957:67:0;;9531:2:1;51957:67:0;;;9513:21:1;9570:2;9550:18;;;9543:30;9609:27;9589:18;;;9582:55;9654:18;;51957:67:0;9329:349:1;51957:67:0;52057:1;52043:11;:15;52035:38;;;;-1:-1:-1;;;52035:38:0;;9885:2:1;52035:38:0;;;9867:21:1;9924:2;9904:18;;;9897:30;-1:-1:-1;;;9943:18:1;;;9936:40;9993:18;;52035:38:0;9683:334:1;52035:38:0;52084:14;52101:18;:8;9689:14;;9597:114;52101:18;52084:35;-1:-1:-1;48487:4:0;52138:20;52147:11;52084:35;52138:20;:::i;:::-;:33;;52130:55;;;;-1:-1:-1;;;52130:55:0;;10489:2:1;52130:55:0;;;10471:21:1;10528:1;10508:18;;;10501:29;-1:-1:-1;;;10546:18:1;;;10539:39;10595:18;;52130:55:0;10287:332:1;52130:55:0;14888:6;;-1:-1:-1;;;;;14888:6:0;52202:10;:21;52198:296;;52287:11;;52272;52248:21;52258:10;52248:9;:21::i;:::-;:35;;;;:::i;:::-;:50;;52240:87;;;;-1:-1:-1;;;52240:87:0;;;;;;;:::i;:::-;52365:11;;52350;:26;;52342:63;;;;-1:-1:-1;;;52342:63:0;;;;;;;:::i;:::-;52448:11;52441:4;;:18;;;;:::i;:::-;52428:9;:31;;52420:62;;;;-1:-1:-1;;;52420:62:0;;;;;;;:::i;:::-;52506:25;52519:11;52506:12;:25::i;:::-;51897:642;51839:700;:::o;53971:157::-;14701:13;:11;:13::i;:::-;54030:7:::1;54051;14888:6:::0;;-1:-1:-1;;;;;14888:6:0;;14815:87;54051:7:::1;-1:-1:-1::0;;;;;54043:21:0::1;54072;54043:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54029:69;;;54117:2;54109:11;;;::::0;::::1;;54018:110;53971:157::o:0;38474:185::-;38612:39;38629:4;38635:2;38639:7;38612:39;;;;;;;;;;;;:16;:39::i;53144:94::-;14701:13;:11;:13::i;:::-;53208:12:::1;:20:::0;53144:94::o;35565:222::-;35637:7;35673:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35673:16:0;35708:19;35700:56;;;;-1:-1:-1;;;35700:56:0;;11909:2:1;35700:56:0;;;11891:21:1;11948:2;11928:18;;;11921:30;-1:-1:-1;;;11967:18:1;;;11960:54;12031:18;;35700:56:0;11707:348:1;35296:207:0;35368:7;-1:-1:-1;;;;;35396:19:0;;35388:73;;;;-1:-1:-1;;;35388:73:0;;12262:2:1;35388:73:0;;;12244:21:1;12301:2;12281:18;;;12274:30;12340:34;12320:18;;;12313:62;-1:-1:-1;;;12391:18:1;;;12384:39;12440:19;;35388:73:0;12060:405:1;35388:73:0;-1:-1:-1;;;;;;35479:16:0;;;;;:9;:16;;;;;;;35296:207::o;15463:103::-;14701:13;:11;:13::i;:::-;15528:30:::1;15555:1;15528:18;:30::i;:::-;15463:103::o:0;49398:171::-;49455:7;40649:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40649:16:0;49475:47;;;;-1:-1:-1;;;49475:47:0;;12672:2:1;49475:47:0;;;12654:21:1;12711:2;12691:18;;;12684:30;-1:-1:-1;;;12730:18:1;;;12723:47;12787:18;;49475:47:0;12470:341:1;49475:47:0;49540:11;49552:8;49540:21;;;;;;;:::i;:::-;;;;49398:171;-1:-1:-1;;49398:171:0:o;36023:104::-;36079:13;36112:7;36105:14;;;;;:::i;37610:155::-;37705:52;13446:10;37738:8;37748;37705:18;:52::i;38730:323::-;38904:41;13446:10;38937:7;38904:18;:41::i;:::-;38896:100;;;;-1:-1:-1;;;38896:100:0;;;;;;;:::i;:::-;39007:38;39021:4;39027:2;39031:7;39040:4;39007:13;:38::i;:::-;38730:323;;;;:::o;53467:201::-;14701:13;:11;:13::i;:::-;53563:2:::1;53547:18:::0;::::1;53539:27;;;::::0;::::1;;53582:9;53577:84;53601:2;53597:1;:6;53577:84;;;53641:5;;53647:1;53641:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;53625:10;53636:1;53625:13;;;;;;;:::i;:::-;:24;::::0;:13;::::1;::::0;:24:::1;:::i;:::-;-1:-1:-1::0;53605:3:0::1;::::0;::::1;:::i;:::-;;;53577:84;;53676:97:::0;14701:13;:11;:13::i;:::-;53734:9:::1;:31:::0;;53746:19:::1;::::0;53734:9;-1:-1:-1;;53734:31:0::1;53746:19:::0;;53734:31:::1;::::0;49731:579;40625:4;40649:16;;;:7;:16;;;;;;49836:13;;-1:-1:-1;;;;;40649:16:0;49867:42;;;;-1:-1:-1;;;49867:42:0;;12672:2:1;49867:42:0;;;12654:21:1;12711:2;12691:18;;;12684:30;-1:-1:-1;;;12730:18:1;;;12723:47;12787:18;;49867:42:0;12470:341:1;49867:42:0;49924:6;;;;;;;49920:206;;;50018:9;50050:14;:3;:12;:14::i;:::-;49979:134;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49947:167;;49731:579;;;:::o;49920:206::-;50199:10;50210:11;50222:3;50210:16;;;;;;;:::i;:::-;;;50199:28;;;;;;;:::i;:::-;;50246:14;:3;:12;:14::i;53246:94::-;14701:13;:11;:13::i;:::-;53315:9:::1;:17:::0;;-1:-1:-1;;;;;;53315:17:0::1;-1:-1:-1::0;;;;;53315:17:0;;;::::1;::::0;;;::::1;::::0;;53246:94::o;52741:88::-;14701:13;:11;:13::i;:::-;52805:6:::1;:16:::0;;-1:-1:-1;;52805:16:0::1;52814:7:::0;::::1;52805:16;;::::0;;;::::1;::::0;;52741:88::o;49088:302::-;49157:6;;;;;;;49156:7;49148:16;;;;;;49184:6;;;;;;;49183:7;49175:16;;;;;;49224:9;;-1:-1:-1;;;;;49224:9:0;49210:10;:23;;:48;;-1:-1:-1;14888:6:0;;-1:-1:-1;;;;;14888:6:0;49237:10;:21;49210:48;49202:57;;;;;;49270:13;49286:18;49295:8;49286;:18::i;:::-;49270:34;;49326:2;49318:5;:10;49315:68;;;49370:1;49345:11;49357:8;49345:21;;;;;;;:::i;:::-;;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;49137:253:0;49088:302;:::o;50634:1197::-;50746:6;;;;;;;50745:7;50737:38;;;;-1:-1:-1;;;50737:38:0;;9184:2:1;50737:38:0;;;9166:21:1;9223:2;9203:18;;;9196:30;-1:-1:-1;;;9242:18:1;;;9235:48;9300:18;;50737:38:0;8982:342:1;50737:38:0;50807:19;50794:9;;;;:32;;;;;;;;:::i;:::-;;:61;;;-1:-1:-1;50843:12:0;50830:9;;;;:25;;;;;;;;:::i;:::-;;50794:61;50786:92;;;;-1:-1:-1;;;50786:92:0;;15557:2:1;50786:92:0;;;15539:21:1;15596:2;15576:18;;;15569:30;-1:-1:-1;;;15615:18:1;;;15608:48;15673:18;;50786:92:0;15355:342:1;50786:92:0;50911:1;50897:11;:15;50889:43;;;;-1:-1:-1;;;50889:43:0;;15904:2:1;50889:43:0;;;15886:21:1;15943:2;15923:18;;;15916:30;-1:-1:-1;;;15962:18:1;;;15955:45;16017:18;;50889:43:0;15702:339:1;50889:43:0;48487:4;50972:11;50951:18;:8;9689:14;;9597:114;50951:18;:32;;;;:::i;:::-;:45;;50943:67;;;;-1:-1:-1;;;50943:67:0;;10489:2:1;50943:67:0;;;10471:21:1;10528:1;10508:18;;;10501:29;-1:-1:-1;;;10546:18:1;;;10539:39;10595:18;;50943:67:0;10287:332:1;50943:67:0;14888:6;;-1:-1:-1;;;;;14888:6:0;51025:10;:21;51021:767;;51088:28;;-1:-1:-1;;51105:10:0;16195:2:1;16191:15;16187:53;51088:28:0;;;16175:66:1;51063:12:0;;16257::1;;51088:28:0;;;-1:-1:-1;;51088:28:0;;;;;;;;;51078:39;;51088:28;51078:39;;;;;-1:-1:-1;51149:12:0;51136:9;;;;:25;;;;;;;;:::i;:::-;;51132:645;;;51229:7;;51214:11;51190:21;51200:10;51190:9;:21::i;:::-;:35;;;;:::i;:::-;:46;;51182:83;;;;-1:-1:-1;;;51182:83:0;;;;;;;:::i;:::-;51314:11;51305:6;;:20;;;;:::i;:::-;51292:9;:33;;51284:64;;;;-1:-1:-1;;;51284:64:0;;;;;;;:::i;:::-;51375:52;51394:12;;51375:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51408:12:0;;;-1:-1:-1;51422:4:0;;-1:-1:-1;51375:18:0;:52::i;:::-;51367:78;;;;-1:-1:-1;;;51367:78:0;;16482:2:1;51367:78:0;;;16464:21:1;16521:2;16501:18;;;16494:30;-1:-1:-1;;;16540:18:1;;;16533:43;16593:18;;51367:78:0;16280:337:1;51367:78:0;51132:645;;;51533:14;;51518:11;51494:21;51504:10;51494:9;:21::i;:::-;:35;;;;:::i;:::-;:53;;51486:90;;;;-1:-1:-1;;;51486:90:0;;;;;;;:::i;:::-;51623:11;51616:4;;:18;;;;:::i;:::-;51603:9;:31;;51595:62;;;;-1:-1:-1;;;51595:62:0;;;;;;;:::i;:::-;51684:59;51703:12;;51684:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51717:19:0;;;-1:-1:-1;51738:4:0;;-1:-1:-1;51684:18:0;:59::i;:::-;51676:85;;;;-1:-1:-1;;;51676:85:0;;16482:2:1;51676:85:0;;;16464:21:1;16521:2;16501:18;;;16494:30;-1:-1:-1;;;16540:18:1;;;16533:43;16593:18;;51676:85:0;16280:337:1;51676:85:0;51048:740;51021:767;51798:25;51811:11;51798:12;:25::i;52837:96::-;14701:13;:11;:13::i;:::-;52907:9:::1;:18:::0;;52919:6;;52907:9;-1:-1:-1;;52907:18:0::1;::::0;52919:6;52907:18:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;52837:96:::0;:::o;15721:201::-;14701:13;:11;:13::i;:::-;-1:-1:-1;;;;;15810:22:0;::::1;15802:73;;;::::0;-1:-1:-1;;;15802:73:0;;16824:2:1;15802:73:0::1;::::0;::::1;16806:21:1::0;16863:2;16843:18;;;16836:30;16902:34;16882:18;;;16875:62;-1:-1:-1;;;16953:18:1;;;16946:36;16999:19;;15802:73:0::1;16622:402:1::0;15802:73:0::1;15886:28;15905:8;15886:18;:28::i;53030:106::-:0;14701:13;:11;:13::i;:::-;53101:19:::1;:27:::0;53030:106::o;14980:132::-;14888:6;;-1:-1:-1;;;;;14888:6:0;13446:10;15044:23;15036:68;;;;-1:-1:-1;;;15036:68:0;;17231:2:1;15036:68:0;;;17213:21:1;;;17250:18;;;17243:30;17309:34;17289:18;;;17282:62;17361:18;;15036:68:0;17029:356:1;45342:135:0;40625:4;40649:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40649:16:0;45416:53;;;;-1:-1:-1;;;45416:53:0;;11909:2:1;45416:53:0;;;11891:21:1;11948:2;11928:18;;;11921:30;-1:-1:-1;;;11967:18:1;;;11960:54;12031:18;;45416:53:0;11707:348:1;44621:174:0;44696:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44696:29:0;-1:-1:-1;;;;;44696:29:0;;;;;;;;:24;;44750:23;44696:24;44750:14;:23::i;:::-;-1:-1:-1;;;;;44741:46:0;;;;;;;;;;;44621:174;;:::o;40854:264::-;40947:4;40964:13;40980:23;40995:7;40980:14;:23::i;:::-;40964:39;;41033:5;-1:-1:-1;;;;;41022:16:0;:7;-1:-1:-1;;;;;41022:16:0;;:52;;;-1:-1:-1;;;;;;37957:25:0;;;37933:4;37957:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41042:32;41022:87;;;;41102:7;-1:-1:-1;;;;;41078:31:0;:20;41090:7;41078:11;:20::i;:::-;-1:-1:-1;;;;;41078:31:0;;41022:87;41014:96;40854:264;-1:-1:-1;;;;40854:264:0:o;43877:625::-;44036:4;-1:-1:-1;;;;;44009:31:0;:23;44024:7;44009:14;:23::i;:::-;-1:-1:-1;;;;;44009:31:0;;44001:81;;;;-1:-1:-1;;;44001:81:0;;17592:2:1;44001:81:0;;;17574:21:1;17631:2;17611:18;;;17604:30;17670:34;17650:18;;;17643:62;-1:-1:-1;;;17721:18:1;;;17714:35;17766:19;;44001:81:0;17390:401:1;44001:81:0;-1:-1:-1;;;;;44101:16:0;;44093:65;;;;-1:-1:-1;;;44093:65:0;;17998:2:1;44093:65:0;;;17980:21:1;18037:2;18017:18;;;18010:30;18076:34;18056:18;;;18049:62;-1:-1:-1;;;18127:18:1;;;18120:34;18171:19;;44093:65:0;17796:400:1;44093:65:0;44275:29;44292:1;44296:7;44275:8;:29::i;:::-;-1:-1:-1;;;;;44317:15:0;;;;;;:9;:15;;;;;:20;;44336:1;;44317:15;:20;;44336:1;;44317:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44348:13:0;;;;;;:9;:13;;;;;:18;;44365:1;;44348:13;:18;;44365:1;;44348:18;:::i;:::-;;;;-1:-1:-1;;44377:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44377:21:0;-1:-1:-1;;;;;44377:21:0;;;;;;;;;44416:27;;44377:16;;44416:27;;;;;;;36954:347;36884:417;;:::o;50322:304::-;50385:17;50405:18;:8;9689:14;;9597:114;50405:18;50385:38;;50439:9;50434:185;50458:11;50454:1;:15;50434:185;;;50491:36;50501:10;50513:13;50525:1;50513:9;:13;:::i;:::-;50491:9;:36::i;:::-;50571:1;50542:11;50554:13;50566:1;50554:9;:13;:::i;:::-;50542:26;;;;;;;:::i;:::-;;:30;50587:20;:8;9808:19;;9826:1;9808:19;;;9719:127;50587:20;50471:3;;;;:::i;:::-;;;;50434:185;;16082:191;16175:6;;;-1:-1:-1;;;;;16192:17:0;;;-1:-1:-1;;;;;;16192:17:0;;;;;;;16225:40;;16175:6;;;16192:17;16175:6;;16225:40;;16156:16;;16225:40;16145:128;16082:191;:::o;44938:315::-;45093:8;-1:-1:-1;;;;;45084:17:0;:5;-1:-1:-1;;;;;45084:17:0;;;45076:55;;;;-1:-1:-1;;;45076:55:0;;18533:2:1;45076:55:0;;;18515:21:1;18572:2;18552:18;;;18545:30;18611:27;18591:18;;;18584:55;18656:18;;45076:55:0;18331:349:1;45076:55:0;-1:-1:-1;;;;;45142:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;45142:46:0;;;;;;;;;;45204:41;;540::1;;;45204::0;;513:18:1;45204:41:0;;;;;;;44938:315;;;:::o;39934:313::-;40090:28;40100:4;40106:2;40110:7;40090:9;:28::i;:::-;40137:47;40160:4;40166:2;40170:7;40179:4;40137:22;:47::i;:::-;40129:110;;;;-1:-1:-1;;;40129:110:0;;;;;;;:::i;10620:723::-;10676:13;10897:10;10893:53;;-1:-1:-1;;10924:10:0;;;;;;;;;;;;-1:-1:-1;;;10924:10:0;;;;;10620:723::o;10893:53::-;10971:5;10956:12;11012:78;11019:9;;11012:78;;11045:8;;;;:::i;:::-;;-1:-1:-1;11068:10:0;;-1:-1:-1;11076:2:0;11068:10;;:::i;:::-;;;11012:78;;;11100:19;11132:6;11122:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11122:17:0;;11100:39;;11150:154;11157:10;;11150:154;;11184:11;11194:1;11184:11;;:::i;:::-;;-1:-1:-1;11253:10:0;11261:2;11253:5;:10;:::i;:::-;11240:24;;:2;:24;:::i;:::-;11227:39;;11210:6;11217;11210:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;11210:56:0;;;;;;;;-1:-1:-1;11281:11:0;11290:2;11281:11;;:::i;:::-;;;11150:154;;1219:190;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;;1219:190;-1:-1:-1;;;;1219:190:0:o;41460:110::-;41536:26;41546:2;41550:7;41536:26;;;;;;;;;;;;:9;:26::i;46041:853::-;46195:4;-1:-1:-1;;;;;46216:13:0;;17808:19;:23;46212:675;;46252:71;;-1:-1:-1;;;46252:71:0;;-1:-1:-1;;;;;46252:36:0;;;;;:71;;13446:10;;46303:4;;46309:7;;46318:4;;46252:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46252:71:0;;;;;;;;-1:-1:-1;;46252:71:0;;;;;;;;;;;;:::i;:::-;;;46248:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46493:13:0;;46489:328;;46536:60;;-1:-1:-1;;;46536:60:0;;;;;;;:::i;46489:328::-;46767:6;46761:13;46752:6;46748:2;46744:15;46737:38;46248:584;-1:-1:-1;;;;;;46374:51:0;-1:-1:-1;;;46374:51:0;;-1:-1:-1;46367:58:0;;46212:675;-1:-1:-1;46871:4:0;46041:853;;;;;;:::o;2086:296::-;2169:7;2212:4;2169:7;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;2300:9;:33::i;:::-;2285:48;-1:-1:-1;2265:3:0;;;;:::i;:::-;;;;2227:118;;;-1:-1:-1;2362:12:0;2086:296;-1:-1:-1;;;2086:296:0:o;41797:319::-;41926:18;41932:2;41936:7;41926:5;:18::i;:::-;41977:53;42008:1;42012:2;42016:7;42025:4;41977:22;:53::i;:::-;41955:153;;;;-1:-1:-1;;;41955:153:0;;;;;;;:::i;8293:149::-;8356:7;8387:1;8383;:5;:51;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8383:51;;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8391:20;8376:58;8293:149;-1:-1:-1;;;8293:149:0:o;42452:439::-;-1:-1:-1;;;;;42532:16:0;;42524:61;;;;-1:-1:-1;;;42524:61:0;;20439:2:1;42524:61:0;;;20421:21:1;;;20458:18;;;20451:30;20517:34;20497:18;;;20490:62;20569:18;;42524:61:0;20237:356:1;42524:61:0;40625:4;40649:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40649:16:0;:30;42596:58;;;;-1:-1:-1;;;42596:58:0;;20800:2:1;42596:58:0;;;20782:21:1;20839:2;20819:18;;;20812:30;20878;20858:18;;;20851:58;20926:18;;42596:58:0;20598:352:1;42596:58:0;-1:-1:-1;;;;;42725:13:0;;;;;;:9;:13;;;;;:18;;42742:1;;42725:13;:18;;42742:1;;42725:18;:::i;:::-;;;;-1:-1:-1;;42754:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42754:21:0;-1:-1:-1;;;;;42754:21:0;;;;;;;;42793:33;;42754:16;;;42793:33;;42754:16;;42793:33;51897:642;51839:700;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:269::-;1258:3;1296:5;1290:12;1323:6;1318:3;1311:19;1339:63;1395:6;1388:4;1383:3;1379:14;1372:4;1365:5;1361:16;1339:63;:::i;:::-;1456:2;1435:15;-1:-1:-1;;1431:29:1;1422:39;;;;1463:4;1418:50;;1205:269;-1:-1:-1;;1205:269:1:o;1479:231::-;1628:2;1617:9;1610:21;1591:4;1648:56;1700:2;1689:9;1685:18;1677:6;1648:56;:::i;1715:180::-;1774:6;1827:2;1815:9;1806:7;1802:23;1798:32;1795:52;;;1843:1;1840;1833:12;1795:52;-1:-1:-1;1866:23:1;;1715:180;-1:-1:-1;1715:180:1:o;2108:173::-;2176:20;;-1:-1:-1;;;;;2225:31:1;;2215:42;;2205:70;;2271:1;2268;2261:12;2286:254;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;2530:2;2515:18;;;;2502:32;;-1:-1:-1;;;2286:254:1:o;2727:328::-;2804:6;2812;2820;2873:2;2861:9;2852:7;2848:23;2844:32;2841:52;;;2889:1;2886;2879:12;2841:52;2912:29;2931:9;2912:29;:::i;:::-;2902:39;;2960:38;2994:2;2983:9;2979:18;2960:38;:::i;:::-;2950:48;;3045:2;3034:9;3030:18;3017:32;3007:42;;2727:328;;;;;:::o;3245:186::-;3304:6;3357:2;3345:9;3336:7;3332:23;3328:32;3325:52;;;3373:1;3370;3363:12;3325:52;3396:29;3415:9;3396:29;:::i;3436:254::-;3501:6;3509;3562:2;3550:9;3541:7;3537:23;3533:32;3530:52;;;3578:1;3575;3568:12;3530:52;3601:29;3620:9;3601:29;:::i;:::-;3591:39;;3649:35;3680:2;3669:9;3665:18;3649:35;:::i;:::-;3639:45;;3436:254;;;;;:::o;3695:127::-;3756:10;3751:3;3747:20;3744:1;3737:31;3787:4;3784:1;3777:15;3811:4;3808:1;3801:15;3827:1138;3922:6;3930;3938;3946;3999:3;3987:9;3978:7;3974:23;3970:33;3967:53;;;4016:1;4013;4006:12;3967:53;4039:29;4058:9;4039:29;:::i;:::-;4029:39;;4087:38;4121:2;4110:9;4106:18;4087:38;:::i;:::-;4077:48;;4172:2;4161:9;4157:18;4144:32;4134:42;;4227:2;4216:9;4212:18;4199:32;4250:18;4291:2;4283:6;4280:14;4277:34;;;4307:1;4304;4297:12;4277:34;4345:6;4334:9;4330:22;4320:32;;4390:7;4383:4;4379:2;4375:13;4371:27;4361:55;;4412:1;4409;4402:12;4361:55;4448:2;4435:16;4470:2;4466;4463:10;4460:36;;;4476:18;;:::i;:::-;4551:2;4545:9;4519:2;4605:13;;-1:-1:-1;;4601:22:1;;;4625:2;4597:31;4593:40;4581:53;;;4649:18;;;4669:22;;;4646:46;4643:72;;;4695:18;;:::i;:::-;4735:10;4731:2;4724:22;4770:2;4762:6;4755:18;4810:7;4805:2;4800;4796;4792:11;4788:20;4785:33;4782:53;;;4831:1;4828;4821:12;4782:53;4887:2;4882;4878;4874:11;4869:2;4861:6;4857:15;4844:46;4932:1;4927:2;4922;4914:6;4910:15;4906:24;4899:35;4953:6;4943:16;;;;;;;3827:1138;;;;;;;:::o;4970:127::-;5031:10;5026:3;5022:20;5019:1;5012:31;5062:4;5059:1;5052:15;5086:4;5083:1;5076:15;5102:342;5248:2;5233:18;;5281:1;5270:13;;5260:144;;5326:10;5321:3;5317:20;5314:1;5307:31;5361:4;5358:1;5351:15;5389:4;5386:1;5379:15;5260:144;5413:25;;;5102:342;:::o;5449:375::-;5520:8;5530:6;5584:3;5577:4;5569:6;5565:17;5561:27;5551:55;;5602:1;5599;5592:12;5551:55;-1:-1:-1;5625:20:1;;5668:18;5657:30;;5654:50;;;5700:1;5697;5690:12;5654:50;5737:4;5729:6;5725:17;5713:29;;5797:3;5790:4;5780:6;5777:1;5773:14;5765:6;5761:27;5757:38;5754:47;5751:67;;;5814:1;5811;5804:12;5751:67;5449:375;;;;;:::o;5829:457::-;5927:6;5935;5988:2;5976:9;5967:7;5963:23;5959:32;5956:52;;;6004:1;6001;5994:12;5956:52;6044:9;6031:23;6077:18;6069:6;6066:30;6063:50;;;6109:1;6106;6099:12;6063:50;6148:78;6218:7;6209:6;6198:9;6194:22;6148:78;:::i;:::-;6245:8;;6122:104;;-1:-1:-1;5829:457:1;-1:-1:-1;;;;5829:457:1:o;6291:513::-;6386:6;6394;6402;6455:2;6443:9;6434:7;6430:23;6426:32;6423:52;;;6471:1;6468;6461:12;6423:52;6507:9;6494:23;6484:33;;6568:2;6557:9;6553:18;6540:32;6595:18;6587:6;6584:30;6581:50;;;6627:1;6624;6617:12;6581:50;6666:78;6736:7;6727:6;6716:9;6712:22;6666:78;:::i;:::-;6291:513;;6763:8;;-1:-1:-1;6640:104:1;;-1:-1:-1;;;;6291:513:1:o;6809:260::-;6877:6;6885;6938:2;6926:9;6917:7;6913:23;6909:32;6906:52;;;6954:1;6951;6944:12;6906:52;6977:29;6996:9;6977:29;:::i;:::-;6967:39;;7025:38;7059:2;7048:9;7044:18;7025:38;:::i;7074:270::-;7147:6;7200:2;7188:9;7179:7;7175:23;7171:32;7168:52;;;7216:1;7213;7206:12;7168:52;7255:9;7242:23;7294:1;7287:5;7284:12;7274:40;;7310:1;7307;7300:12;7349:380;7428:1;7424:12;;;;7471;;;7492:61;;7546:4;7538:6;7534:17;7524:27;;7492:61;7599:2;7591:6;7588:14;7568:18;7565:38;7562:161;;;7645:10;7640:3;7636:20;7633:1;7626:31;7680:4;7677:1;7670:15;7708:4;7705:1;7698:15;7562:161;;7349:380;;;:::o;8567:410::-;8769:2;8751:21;;;8808:2;8788:18;;;8781:30;8847:34;8842:2;8827:18;;8820:62;-1:-1:-1;;;8913:2:1;8898:18;;8891:44;8967:3;8952:19;;8567:410::o;10022:127::-;10083:10;10078:3;10074:20;10071:1;10064:31;10114:4;10111:1;10104:15;10138:4;10135:1;10128:15;10154:128;10194:3;10225:1;10221:6;10218:1;10215:13;10212:39;;;10231:18;;:::i;:::-;-1:-1:-1;10267:9:1;;10154:128::o;10624:348::-;10826:2;10808:21;;;10865:2;10845:18;;;10838:30;10904:26;10899:2;10884:18;;10877:54;10963:2;10948:18;;10624:348::o;10977:168::-;11017:7;11083:1;11079;11075:6;11071:14;11068:1;11065:21;11060:1;11053:9;11046:17;11042:45;11039:71;;;11090:18;;:::i;:::-;-1:-1:-1;11130:9:1;;10977:168::o;11150:342::-;11352:2;11334:21;;;11391:2;11371:18;;;11364:30;-1:-1:-1;;;11425:2:1;11410:18;;11403:48;11483:2;11468:18;;11150:342::o;12816:127::-;12877:10;12872:3;12868:20;12865:1;12858:31;12908:4;12905:1;12898:15;12932:4;12929:1;12922:15;12948:522;13026:4;13032:6;13092:11;13079:25;13186:2;13182:7;13171:8;13155:14;13151:29;13147:43;13127:18;13123:68;13113:96;;13205:1;13202;13195:12;13113:96;13232:33;;13284:20;;;-1:-1:-1;13327:18:1;13316:30;;13313:50;;;13359:1;13356;13349:12;13313:50;13392:4;13380:17;;-1:-1:-1;13423:14:1;13419:27;;;13409:38;;13406:58;;;13460:1;13457;13450:12;13475:135;13514:3;-1:-1:-1;;13535:17:1;;13532:43;;;13555:18;;:::i;:::-;-1:-1:-1;13602:1:1;13591:13;;13475:135::o;13741:185::-;13783:3;13821:5;13815:12;13836:52;13881:6;13876:3;13869:4;13862:5;13858:16;13836:52;:::i;:::-;13904:16;;;;;13741:185;-1:-1:-1;;13741:185:1:o;14049:1301::-;14326:3;14355:1;14388:6;14382:13;14418:3;14440:1;14468:9;14464:2;14460:18;14450:28;;14528:2;14517:9;14513:18;14550;14540:61;;14594:4;14586:6;14582:17;14572:27;;14540:61;14620:2;14668;14660:6;14657:14;14637:18;14634:38;14631:165;;;-1:-1:-1;;;14695:33:1;;14751:4;14748:1;14741:15;14781:4;14702:3;14769:17;14631:165;14812:18;14839:104;;;;14957:1;14952:320;;;;14805:467;;14839:104;-1:-1:-1;;14872:24:1;;14860:37;;14917:16;;;;-1:-1:-1;14839:104:1;;14952:320;13688:1;13681:14;;;13725:4;13712:18;;15047:1;15061:165;15075:6;15072:1;15069:13;15061:165;;;15153:14;;15140:11;;;15133:35;15196:16;;;;15090:10;;15061:165;;;15065:3;;15255:6;15250:3;15246:16;15239:23;;14805:467;;;;;;;15288:56;15313:30;15339:3;15331:6;15313:30;:::i;:::-;-1:-1:-1;;;13991:20:1;;14036:1;14027:11;;13931:113;15288:56;15281:63;14049:1301;-1:-1:-1;;;;;14049:1301:1:o;18201:125::-;18241:4;18269:1;18266;18263:8;18260:34;;;18274:18;;:::i;:::-;-1:-1:-1;18311:9:1;;18201:125::o;18685:414::-;18887:2;18869:21;;;18926:2;18906:18;;;18899:30;18965:34;18960:2;18945:18;;18938:62;-1:-1:-1;;;19031:2:1;19016:18;;19009:48;19089:3;19074:19;;18685:414::o;19104:127::-;19165:10;19160:3;19156:20;19153:1;19146:31;19196:4;19193:1;19186:15;19220:4;19217:1;19210:15;19236:120;19276:1;19302;19292:35;;19307:18;;:::i;:::-;-1:-1:-1;19341:9:1;;19236:120::o;19361:112::-;19393:1;19419;19409:35;;19424:18;;:::i;:::-;-1:-1:-1;19458:9:1;;19361:112::o;19478:500::-;-1:-1:-1;;;;;19747:15:1;;;19729:34;;19799:15;;19794:2;19779:18;;19772:43;19846:2;19831:18;;19824:34;;;19894:3;19889:2;19874:18;;19867:31;;;19672:4;;19915:57;;19952:19;;19944:6;19915:57;:::i;:::-;19907:65;19478:500;-1:-1:-1;;;;;;19478:500:1:o;19983:249::-;20052:6;20105:2;20093:9;20084:7;20080:23;20076:32;20073:52;;;20121:1;20118;20111:12;20073:52;20153:9;20147:16;20172:30;20196:5;20172:30;:::i

Swarm Source

ipfs://796676d451e77e8fb6277e15e688e1fa70ce0d3541367b5aada22a7a276eaa4a
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.