ETH Price: $3,307.39 (-3.28%)
Gas: 14 Gwei

Token

MintersWorld (MTR)
 

Overview

Max Total Supply

2,911 MTR

Holders

1,142

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 MTR
0x7ccbf491bf1d38ae4abd42ddddead2e37b85d70d
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:
MintersWorld

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-25
*/

// SPDX-License-Identifier: MIT
// 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/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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// 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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/MintersWorld.sol



////////////////////////////////////////////////////////////////////////////////////
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@//
//@@@@@@@@@@@@@@/                                           .@@@@@@@@@@@@@@@@@@@@@//
//@@@@@@@@@@@%.                                               #@@@@@@@@@@@@@@@@@@@//
//@@@@@@@@@/                                                   *&@@@@@@@@@@@@@@@@@//
//@@@@@@%.                                                       .#@@@@@@@@@@@@@@@//
//@@@@*                                                            *@@@@@@@@@@@@@@//
//@%.                                                               ,%@@@@@@@@@@@@//
//                                                                    .@@@@@@@@@@@//
//                                                                      .&@@@@@@@@//
//                                                                        #@@@@@@@//
//              (@@@@@@@@@@@@@(                                             /@@@@@//
//              (@@@@@@@@@@%,                                                .(@@@//
//              (@@@@@@@@/                                                     .@@//
//              (@@@@@@.                                                          //
//             (@@@(             ,%@@@@@@*                     ,%@@@@@@/         *//
//              ,*,             (@@@@@@@@@@@%,                (@@@@@@@@@@@%,      //
//                              @@@@@@@@@@@@@@@(           .&@@@@@@@@@@@@@@@)     //
//                              &@@@@@@@@@@@@@@@(         ,@@@@@@@@@@@@@@@@*      //
//                                /&@@@@@@@@@%,              #@@@@@@@@@@#.        //
//#                                 ,******          (@%*      ,*******          *//
//@@@,                                              .....                        &//
//@@@@@(.                                                                      *@@//
//@@@@@@@&*                                                                 ,#@@@@//
//@@@@@@@@@@########(                                                     /&@@@@@@//
//@@@@@@@@@@@@@@@@@@@@@.           #@@@%      (@@@&      /@@@@@,     ,@@@@@@@@@@@@//
//@@@@@@@@@@@@@@@@@@@@@@@/         (&&&#      /&&&%      *&&&&&.     .&&&&&@@@@@@@//
//@@@@@@@@@@@@@@@@@@@@@@@@@%,           .@@@@*      @@@@@(      %@@@%      (@@@@@@//
//@@@@@@@@@@@@@@@@@@@@@@@@@@#           .@@@@*      @@@@@(      %@@@%      (@@@@@@//
//@@@@@@@@@@@@@@@@@@@@@@@@@@#                                              (@@@@@@//
//@@@@@@@@@@@@@@@@@@@@@@@@@@#                                              (@@@@@@//
//@@@@@@@@@@@@@@@@@@@@@@@@@@@&/                                            (@@@@@@//
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%.            *&@@@@@@@@@@@@@@@@&,         (@@@@@@//
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@//
////////////////////////////////////////////////////////////////////////////////////


pragma solidity ^0.8.4;


// security contact: [email protected]

contract MintersWorld is ERC721, ERC721Enumerable, Ownable {
    using Strings for uint256;
    bytes32 public root;

    bool public presaleActive = true;
    bool public contractActive = false;
    bool public treasuryClaimed = false;
    bool public oneOnOnesClaimed = false;
    
    string public baseExtension = ".json";
    string baseURI;

    uint256 public COLLECTION_SUPPLY = 10000;
    uint256 public PRESALE_SUPPLY = 3500;
    uint256 public MINT_PRICE = 0.05 ether;
    uint256 public TEAM_TREASURY = 500;
    uint256 public TEAM_ONE_ON_ONES = 6;
    uint256 public TREASURY_BATCHES_TO_BE_CLAIMED = 10;
    uint256 public TREASURY_LEFT = 500;
    uint256 public MAX_MINT_AMM = 3;
 
    mapping(address => bool) alreadyMintedPresale;
    mapping(address => uint256) alreadyMintedPublic;

    modifier costs(uint256 amount) {
        require(msg.value >= amount * MINT_PRICE, "MTR: Insufficient funds provided, mint price is 0.05 ETH");
        _;
    }

    // psst, hey you, I need you to DM Ghinter in Discord that Alameda will liquidate him anyway
    // thx in advance

    constructor(string memory InitBaseURI, bytes32 _root) ERC721("MintersWorld", "MTR") {
        setBaseURI(InitBaseURI);
        root = _root;
    }

    function isValid(bytes32[] memory proof, bytes32 leaf)
    public
    view
    returns (bool)
    {
        return MerkleProof.verify(proof, root, leaf);
    }

    function mintPresale(bytes32[] memory proof)
    external
    payable
    costs(1)
    {   
        uint256 supply = totalSupply();
        
        require(contractActive, "MTR: Contract is not active");
        require(presaleActive, "MTR: Presale is over, use mintPublic function to mint tokens");
        require(isValid(proof,keccak256(abi.encodePacked(msg.sender))),"MTR: Invalid Allowance (you were not whitelisted)");
        require(alreadyMintedPresale[msg.sender] == false, "MTR: You have already minted your NFT");

        alreadyMintedPresale[msg.sender] = true;
        _safeMint(msg.sender, supply);
    }

    function mintPublicSale(uint256 amount)
    external 
    payable
    costs(amount)
    {
        require(!presaleActive, "MTR: You can't mint without being whitelisted while presale phase is active");
        uint256 supply = totalSupply();
        if(!treasuryClaimed || !oneOnOnesClaimed)
        {
            require(supply + amount <= COLLECTION_SUPPLY - TREASURY_LEFT - TEAM_ONE_ON_ONES, "MTR: Public mint supply exceded, remaining tokens are reserved for the team");
        }
        else require(supply + amount <= COLLECTION_SUPPLY, "MTR: Mint supply exceeded, sorry :(");
        
        require(amount <= MAX_MINT_AMM, "MTR: You can mint only 3 NFTs in total (per wallet)");
        require(alreadyMintedPublic[msg.sender] + amount <= MAX_MINT_AMM, "MTR: You have already minted maximum allowed amount of tokens");
        
        alreadyMintedPublic[msg.sender] += amount;
        for(uint i=0; i<amount; i++)
        { 
            _safeMint(msg.sender, supply + i);
        }
    }


    function claimTeamTreasury()
    external 
    onlyOwner
    {
        uint256 supply = totalSupply();
        
        require(contractActive && !presaleActive, "MTR: Don't you really know how to use our own contract xD?");
        require(!treasuryClaimed, "MTR: Already claimed");
        
        TREASURY_LEFT -= TEAM_TREASURY/TREASURY_BATCHES_TO_BE_CLAIMED;
        if(TREASURY_LEFT == 0) treasuryClaimed = true;
        for(uint i=0; i<TEAM_TREASURY/TREASURY_BATCHES_TO_BE_CLAIMED; i++)
        {
            _safeMint(msg.sender, supply + i);
        }
    }

    function toggleContract(bool state) 
    external
    onlyOwner
    {
        contractActive = state;
    }

    function togglePresale(bool state)
    external
    onlyOwner
    {
        presaleActive = state;
    }

    function setRoot(bytes32 newRoot)
    external
    onlyOwner
    {
        root = newRoot;
    }

    function claimOneOnOnes() 
    external
    onlyOwner
    {
        uint256 supply = totalSupply();
        require(supply == COLLECTION_SUPPLY-TEAM_ONE_ON_ONES);
        oneOnOnesClaimed = true;
        for(uint i=COLLECTION_SUPPLY-TEAM_ONE_ON_ONES; i<COLLECTION_SUPPLY; i++)
        {
            _safeMint(owner(), i);
        }
    }

    function changeBatchCount(uint8 size) 
    external
    onlyOwner
    {
        TREASURY_BATCHES_TO_BE_CLAIMED = size;
    } 

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
        _exists(tokenId),
        "ERC721Metadata: URI query for nonexistent token"
        );        

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

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory _NewBaseURI)
    public 
    onlyOwner
    {
        baseURI = _NewBaseURI;
    }

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

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"InitBaseURI","type":"string"},{"internalType":"bytes32","name":"_root","type":"bytes32"}],"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":[],"name":"COLLECTION_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_ONE_ON_ONES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_TREASURY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_BATCHES_TO_BE_CLAIMED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_LEFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"size","type":"uint8"}],"name":"changeBatchCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOneOnOnes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTeamTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oneOnOnesClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"string","name":"_NewBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setRoot","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":"bool","name":"state","type":"bool"}],"name":"toggleContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","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":[],"name":"treasuryClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

600c805463ffffffff1916600117905560c06040526005608090815264173539b7b760d91b60a052600d90620000369082620002a4565b50612710600f55610dac60105566b1a2bc2ec500006011556101f46012556006601355600a6014556101f460155560036016553480156200007657600080fd5b5060405162002f5138038062002f51833981016040819052620000999162000370565b6040518060400160405280600c81526020016b135a5b9d195c9cd5dbdc9b1960a21b8152506040518060400160405280600381526020016226aa2960e91b8152508160009081620000eb9190620002a4565b506001620000fa8282620002a4565b50505062000117620001116200012c60201b60201c565b62000130565b620001228262000182565b600b55506200044b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200018c6200019e565b600e6200019a8282620002a4565b5050565b600a546001600160a01b03163314620001fd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022a57607f821691505b6020821081036200024b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029f57600081815260208120601f850160051c810160208610156200027a5750805b601f850160051c820191505b818110156200029b5782815560010162000286565b5050505b505050565b81516001600160401b03811115620002c057620002c0620001ff565b620002d881620002d1845462000215565b8462000251565b602080601f831160018114620003105760008415620002f75750858301515b600019600386901b1c1916600185901b1785556200029b565b600085815260208120601f198616915b82811015620003415788860151825594840194600190910190840162000320565b5085821015620003605787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080604083850312156200038457600080fd5b82516001600160401b03808211156200039c57600080fd5b818501915085601f830112620003b157600080fd5b815181811115620003c657620003c6620001ff565b604051601f8201601f19908116603f01168101908382118183101715620003f157620003f1620001ff565b816040528281526020935088848487010111156200040e57600080fd5b600091505b8282101562000432578482018401518183018501529083019062000413565b6000928101840192909252509401519395939450505050565b612af6806200045b6000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063c002d23d116100b6578063dab5f3401161007a578063dab5f340146106aa578063dc1a4f26146106ca578063e289fcb6146106e0578063e985e9c5146106ff578063ebf0c71714610748578063f2fde38b1461075e57600080fd5b8063c002d23d14610634578063c2fcbc871461064a578063c668286214610660578063c87b56dd14610675578063d86ba1c51461069557600080fd5b806395d89b411161010857806395d89b411461058957806396377a8a1461059e578063a22cb465146105be578063a97cfc28146105de578063b88d4fde146105f4578063b8a20ed01461061457600080fd5b8063715018a61461051757806373138e4f1461052c57806373196368146105425780637d60157b146105585780638da5cb5b1461056b57600080fd5b80633ccfd60b116101dd57806353135ca0116101a157806353135ca01461046a57806355f804b3146104845780635a5e5d58146104a45780636352211e146104b75780636b2ce7f1146104d757806370a08231146104f757600080fd5b80633ccfd60b146103ec578063416aab49146103f457806342842e0e1461041457806349d8e103146104345780634f6ccce71461044a57600080fd5b80630bc803391161022f5780630bc8033914610332578063134a19441461035357806318160ddd14610377578063230497201461038c57806323b872dd146103ac5780632f745c59146103cc57600080fd5b806301d6ec5a1461026c57806301ffc9a71461028357806306fdde03146102b8578063081812fc146102da578063095ea7b314610312575b600080fd5b34801561027857600080fd5b5061028161077e565b005b34801561028f57600080fd5b506102a361029e366004612264565b610811565b60405190151581526020015b60405180910390f35b3480156102c457600080fd5b506102cd610822565b6040516102af91906122d1565b3480156102e657600080fd5b506102fa6102f53660046122e4565b6108b4565b6040516001600160a01b0390911681526020016102af565b34801561031e57600080fd5b5061028161032d366004612319565b6108db565b34801561033e57600080fd5b50600c546102a3906301000000900460ff1681565b34801561035f57600080fd5b5061036960125481565b6040519081526020016102af565b34801561038357600080fd5b50600854610369565b34801561039857600080fd5b506102816103a7366004612353565b6109f5565b3480156103b857600080fd5b506102816103c736600461236e565b610a17565b3480156103d857600080fd5b506103696103e7366004612319565b610a48565b610281610ade565b34801561040057600080fd5b50600c546102a39062010000900460ff1681565b34801561042057600080fd5b5061028161042f36600461236e565b610b5a565b34801561044057600080fd5b5061036960145481565b34801561045657600080fd5b506103696104653660046122e4565b610b75565b34801561047657600080fd5b50600c546102a39060ff1681565b34801561049057600080fd5b5061028161049f366004612449565b610c08565b6102816104b23660046122e4565b610c1c565b3480156104c357600080fd5b506102fa6104d23660046122e4565b610f82565b3480156104e357600080fd5b506102816104f2366004612353565b610fe2565b34801561050357600080fd5b50610369610512366004612492565b610ffd565b34801561052357600080fd5b50610281611083565b34801561053857600080fd5b5061036960105481565b34801561054e57600080fd5b50610369600f5481565b61028161056636600461252d565b611097565b34801561057757600080fd5b50600a546001600160a01b03166102fa565b34801561059557600080fd5b506102cd6112da565b3480156105aa57600080fd5b506102816105b9366004612562565b6112e9565b3480156105ca57600080fd5b506102816105d9366004612585565b6112f9565b3480156105ea57600080fd5b5061036960165481565b34801561060057600080fd5b5061028161060f3660046125b8565b611304565b34801561062057600080fd5b506102a361062f366004612634565b611336565b34801561064057600080fd5b5061036960115481565b34801561065657600080fd5b5061036960155481565b34801561066c57600080fd5b506102cd61134c565b34801561068157600080fd5b506102cd6106903660046122e4565b6113da565b3480156106a157600080fd5b506102816114b7565b3480156106b657600080fd5b506102816106c53660046122e4565b611625565b3480156106d657600080fd5b5061036960135481565b3480156106ec57600080fd5b50600c546102a390610100900460ff1681565b34801561070b57600080fd5b506102a361071a366004612679565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075457600080fd5b50610369600b5481565b34801561076a57600080fd5b50610281610779366004612492565b611632565b6107866116a8565b600061079160085490565b9050601354600f546107a391906126b9565b81146107ae57600080fd5b600c805463ff00000019166301000000179055601354600f546000916107d3916126b9565b90505b600f5481101561080d576107fb6107f5600a546001600160a01b031690565b82611702565b80610805816126cc565b9150506107d6565b5050565b600061081c8261171c565b92915050565b606060008054610831906126e5565b80601f016020809104026020016040519081016040528092919081815260200182805461085d906126e5565b80156108aa5780601f1061087f576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161088d57829003601f168201915b5050505050905090565b60006108bf82611741565b506000908152600460205260409020546001600160a01b031690565b60006108e682610f82565b9050806001600160a01b0316836001600160a01b0316036109585760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806109745750610974813361071a565b6109e65760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161094f565b6109f083836117a0565b505050565b6109fd6116a8565b600c80549115156101000261ff0019909216919091179055565b610a21338261180e565b610a3d5760405162461bcd60e51b815260040161094f9061271f565b6109f083838361188d565b6000610a5383610ffd565b8210610ab55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161094f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610ae66116a8565b6000610afa600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b44576040519150601f19603f3d011682016040523d82523d6000602084013e610b49565b606091505b5050905080610b5757600080fd5b50565b6109f083838360405180602001604052806000815250611304565b6000610b8060085490565b8210610be35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161094f565b60088281548110610bf657610bf661276d565b90600052602060002001549050919050565b610c106116a8565b600e61080d82826127d1565b8060115481610c2b9190612891565b341015610c4a5760405162461bcd60e51b815260040161094f906128b0565b600c5460ff1615610cd75760405162461bcd60e51b815260206004820152604b60248201527f4d54523a20596f752063616e2774206d696e7420776974686f7574206265696e60448201527f672077686974656c6973746564207768696c652070726573616c65207068617360648201526a652069732061637469766560a81b608482015260a40161094f565b6000610ce260085490565b600c5490915062010000900460ff161580610d075750600c546301000000900460ff16155b15610dc057601354601554600f54610d1f91906126b9565b610d2991906126b9565b610d33848361290d565b1115610dbb5760405162461bcd60e51b815260206004820152604b60248201527f4d54523a205075626c6963206d696e7420737570706c7920657863656465642c60448201527f2072656d61696e696e6720746f6b656e7320617265207265736572766564206660648201526a6f7220746865207465616d60a81b608482015260a40161094f565b610e27565b600f54610dcd848361290d565b1115610e275760405162461bcd60e51b815260206004820152602360248201527f4d54523a204d696e7420737570706c792065786365656465642c20736f72727960448201526204074560eb1b606482015260840161094f565b601654831115610e955760405162461bcd60e51b815260206004820152603360248201527f4d54523a20596f752063616e206d696e74206f6e6c792033204e46547320696e60448201527220746f74616c20287065722077616c6c65742960681b606482015260840161094f565b60165433600090815260186020526040902054610eb390859061290d565b1115610f275760405162461bcd60e51b815260206004820152603d60248201527f4d54523a20596f75206861766520616c7265616479206d696e746564206d617860448201527f696d756d20616c6c6f77656420616d6f756e74206f6620746f6b656e73000000606482015260840161094f565b3360009081526018602052604081208054859290610f4690849061290d565b90915550600090505b83811015610f7c57610f6a33610f65838561290d565b611702565b80610f74816126cc565b915050610f4f565b50505050565b6000818152600260205260408120546001600160a01b03168061081c5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161094f565b610fea6116a8565b600c805460ff1916911515919091179055565b60006001600160a01b0382166110675760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161094f565b506001600160a01b031660009081526003602052604090205490565b61108b6116a8565b6110956000611a34565b565b6001601154816110a79190612891565b3410156110c65760405162461bcd60e51b815260040161094f906128b0565b60006110d160085490565b600c54909150610100900460ff1661112b5760405162461bcd60e51b815260206004820152601b60248201527f4d54523a20436f6e7472616374206973206e6f74206163746976650000000000604482015260640161094f565b600c5460ff166111a35760405162461bcd60e51b815260206004820152603c60248201527f4d54523a2050726573616c65206973206f7665722c20757365206d696e74507560448201527f626c69632066756e6374696f6e20746f206d696e7420746f6b656e7300000000606482015260840161094f565b6040516bffffffffffffffffffffffff193360601b1660208201526111e290849060340160405160208183030381529060405280519060200120611336565b6112485760405162461bcd60e51b815260206004820152603160248201527f4d54523a20496e76616c696420416c6c6f77616e63652028796f752077657265604482015270206e6f742077686974656c69737465642960781b606482015260840161094f565b3360009081526017602052604090205460ff16156112b65760405162461bcd60e51b815260206004820152602560248201527f4d54523a20596f75206861766520616c7265616479206d696e74656420796f756044820152641c8813919560da1b606482015260840161094f565b336000818152601760205260409020805460ff191660011790556109f09082611702565b606060018054610831906126e5565b6112f16116a8565b60ff16601455565b61080d338383611a86565b61130e338361180e565b61132a5760405162461bcd60e51b815260040161094f9061271f565b610f7c84848484611b54565b600061134583600b5484611b87565b9392505050565b600d8054611359906126e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611385906126e5565b80156113d25780601f106113a7576101008083540402835291602001916113d2565b820191906000526020600020905b8154815290600101906020018083116113b557829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166114595760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094f565b6000611463611b9d565b905060008151116114835760405180602001604052806000815250611345565b8061148d84611bac565b600d6040516020016114a193929190612920565b6040516020818303038152906040529392505050565b6114bf6116a8565b60006114ca60085490565b600c54909150610100900460ff1680156114e75750600c5460ff16155b6115595760405162461bcd60e51b815260206004820152603a60248201527f4d54523a20446f6e277420796f75207265616c6c79206b6e6f7720686f77207460448201527f6f20757365206f7572206f776e20636f6e74726163742078443f000000000000606482015260840161094f565b600c5462010000900460ff16156115a95760405162461bcd60e51b81526020600482015260146024820152731355148e88105b1c9958591e4818db185a5b595960621b604482015260640161094f565b6014546012546115b991906129d6565b601560008282546115ca91906126b9565b90915550506015546000036115eb57600c805462ff00001916620100001790555b60005b6014546012546115fe91906129d6565b81101561080d5761161333610f65838561290d565b8061161d816126cc565b9150506115ee565b61162d6116a8565b600b55565b61163a6116a8565b6001600160a01b03811661169f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094f565b610b5781611a34565b600a546001600160a01b031633146110955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161094f565b61080d828260405180602001604052806000815250611cad565b60006001600160e01b0319821663780e9d6360e01b148061081c575061081c82611ce0565b6000818152600260205260409020546001600160a01b0316610b575760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161094f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117d582610f82565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061181a83610f82565b9050806001600160a01b0316846001600160a01b0316148061186157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806118855750836001600160a01b031661187a846108b4565b6001600160a01b0316145b949350505050565b826001600160a01b03166118a082610f82565b6001600160a01b0316146119045760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161094f565b6001600160a01b0382166119665760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161094f565b611971838383611d30565b61197c6000826117a0565b6001600160a01b03831660009081526003602052604081208054600192906119a59084906126b9565b90915550506001600160a01b03821660009081526003602052604081208054600192906119d390849061290d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611ae75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161094f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b5f84848461188d565b611b6b84848484611d3b565b610f7c5760405162461bcd60e51b815260040161094f906129ea565b600082611b948584611e3c565b14949350505050565b6060600e8054610831906126e5565b606081600003611bd35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bfd5780611be7816126cc565b9150611bf69050600a836129d6565b9150611bd7565b60008167ffffffffffffffff811115611c1857611c186123aa565b6040519080825280601f01601f191660200182016040528015611c42576020820181803683370190505b5090505b841561188557611c576001836126b9565b9150611c64600a86612a3c565b611c6f90603061290d565b60f81b818381518110611c8457611c8461276d565b60200101906001600160f81b031916908160001a905350611ca6600a866129d6565b9450611c46565b611cb78383611e89565b611cc46000848484611d3b565b6109f05760405162461bcd60e51b815260040161094f906129ea565b60006001600160e01b031982166380ac58cd60e01b1480611d1157506001600160e01b03198216635b5e139f60e01b145b8061081c57506301ffc9a760e01b6001600160e01b031983161461081c565b6109f0838383611fd7565b60006001600160a01b0384163b15611e3157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d7f903390899088908890600401612a50565b6020604051808303816000875af1925050508015611dba575060408051601f3d908101601f19168201909252611db791810190612a8d565b60015b611e17573d808015611de8576040519150601f19603f3d011682016040523d82523d6000602084013e611ded565b606091505b508051600003611e0f5760405162461bcd60e51b815260040161094f906129ea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611885565b506001949350505050565b600081815b8451811015611e8157611e6d82868381518110611e6057611e6061276d565b602002602001015161208f565b915080611e79816126cc565b915050611e41565b509392505050565b6001600160a01b038216611edf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161094f565b6000818152600260205260409020546001600160a01b031615611f445760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161094f565b611f5060008383611d30565b6001600160a01b0382166000908152600360205260408120805460019290611f7990849061290d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166120325761202d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612055565b816001600160a01b0316836001600160a01b0316146120555761205583826120be565b6001600160a01b03821661206c576109f08161215b565b826001600160a01b0316826001600160a01b0316146109f0576109f0828261220a565b60008183106120ab576000828152602084905260409020611345565b6000838152602083905260409020611345565b600060016120cb84610ffd565b6120d591906126b9565b600083815260076020526040902054909150808214612128576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061216d906001906126b9565b600083815260096020526040812054600880549394509092849081106121955761219561276d565b9060005260206000200154905080600883815481106121b6576121b661276d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121ee576121ee612aaa565b6001900381819060005260206000200160009055905550505050565b600061221583610ffd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114610b5757600080fd5b60006020828403121561227657600080fd5b81356113458161224e565b60005b8381101561229c578181015183820152602001612284565b50506000910152565b600081518084526122bd816020860160208601612281565b601f01601f19169290920160200192915050565b60208152600061134560208301846122a5565b6000602082840312156122f657600080fd5b5035919050565b80356001600160a01b038116811461231457600080fd5b919050565b6000806040838503121561232c57600080fd5b612335836122fd565b946020939093013593505050565b8035801515811461231457600080fd5b60006020828403121561236557600080fd5b61134582612343565b60008060006060848603121561238357600080fd5b61238c846122fd565b925061239a602085016122fd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156123e9576123e96123aa565b604052919050565b600067ffffffffffffffff83111561240b5761240b6123aa565b61241e601f8401601f19166020016123c0565b905082815283838301111561243257600080fd5b828260208301376000602084830101529392505050565b60006020828403121561245b57600080fd5b813567ffffffffffffffff81111561247257600080fd5b8201601f8101841361248357600080fd5b611885848235602084016123f1565b6000602082840312156124a457600080fd5b611345826122fd565b600082601f8301126124be57600080fd5b8135602067ffffffffffffffff8211156124da576124da6123aa565b8160051b6124e98282016123c0565b928352848101820192828101908785111561250357600080fd5b83870192505b8483101561252257823582529183019190830190612509565b979650505050505050565b60006020828403121561253f57600080fd5b813567ffffffffffffffff81111561255657600080fd5b611885848285016124ad565b60006020828403121561257457600080fd5b813560ff8116811461134557600080fd5b6000806040838503121561259857600080fd5b6125a1836122fd565b91506125af60208401612343565b90509250929050565b600080600080608085870312156125ce57600080fd5b6125d7856122fd565b93506125e5602086016122fd565b925060408501359150606085013567ffffffffffffffff81111561260857600080fd5b8501601f8101871361261957600080fd5b612628878235602084016123f1565b91505092959194509250565b6000806040838503121561264757600080fd5b823567ffffffffffffffff81111561265e57600080fd5b61266a858286016124ad565b95602094909401359450505050565b6000806040838503121561268c57600080fd5b612695836122fd565b91506125af602084016122fd565b634e487b7160e01b600052601160045260246000fd5b8181038181111561081c5761081c6126a3565b6000600182016126de576126de6126a3565b5060010190565b600181811c908216806126f957607f821691505b60208210810361271957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b601f8211156109f057600081815260208120601f850160051c810160208610156127aa5750805b601f850160051c820191505b818110156127c9578281556001016127b6565b505050505050565b815167ffffffffffffffff8111156127eb576127eb6123aa565b6127ff816127f984546126e5565b84612783565b602080601f831160018114612834576000841561281c5750858301515b600019600386901b1c1916600185901b1785556127c9565b600085815260208120601f198616915b8281101561286357888601518255948401946001909101908401612844565b50858210156128815787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008160001904831182151516156128ab576128ab6126a3565b500290565b60208082526038908201527f4d54523a20496e73756666696369656e742066756e64732070726f766964656460408201527f2c206d696e7420707269636520697320302e3035204554480000000000000000606082015260800190565b8082018082111561081c5761081c6126a3565b6000845160206129338285838a01612281565b8551918401916129468184848a01612281565b8554920191600090612957816126e5565b6001828116801561296f5760018114612984576129b0565b60ff19841687528215158302870194506129b0565b896000528560002060005b848110156129a85781548982015290830190870161298f565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826129e5576129e56129c0565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612a4b57612a4b6129c0565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a83908301846122a5565b9695505050505050565b600060208284031215612a9f57600080fd5b81516113458161224e565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205b9a82749a4eab272eb61bb114d09acb1f6d0fc869743b99c3d878a4742250cf64736f6c634300081000330000000000000000000000000000000000000000000000000000000000000040696f6c227bbe03f66e9be55434bcb961603ccbd550fc7a210528808c3833b9fe0000000000000000000000000000000000000000000000000000000000000004736f6f6e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063715018a611610144578063c002d23d116100b6578063dab5f3401161007a578063dab5f340146106aa578063dc1a4f26146106ca578063e289fcb6146106e0578063e985e9c5146106ff578063ebf0c71714610748578063f2fde38b1461075e57600080fd5b8063c002d23d14610634578063c2fcbc871461064a578063c668286214610660578063c87b56dd14610675578063d86ba1c51461069557600080fd5b806395d89b411161010857806395d89b411461058957806396377a8a1461059e578063a22cb465146105be578063a97cfc28146105de578063b88d4fde146105f4578063b8a20ed01461061457600080fd5b8063715018a61461051757806373138e4f1461052c57806373196368146105425780637d60157b146105585780638da5cb5b1461056b57600080fd5b80633ccfd60b116101dd57806353135ca0116101a157806353135ca01461046a57806355f804b3146104845780635a5e5d58146104a45780636352211e146104b75780636b2ce7f1146104d757806370a08231146104f757600080fd5b80633ccfd60b146103ec578063416aab49146103f457806342842e0e1461041457806349d8e103146104345780634f6ccce71461044a57600080fd5b80630bc803391161022f5780630bc8033914610332578063134a19441461035357806318160ddd14610377578063230497201461038c57806323b872dd146103ac5780632f745c59146103cc57600080fd5b806301d6ec5a1461026c57806301ffc9a71461028357806306fdde03146102b8578063081812fc146102da578063095ea7b314610312575b600080fd5b34801561027857600080fd5b5061028161077e565b005b34801561028f57600080fd5b506102a361029e366004612264565b610811565b60405190151581526020015b60405180910390f35b3480156102c457600080fd5b506102cd610822565b6040516102af91906122d1565b3480156102e657600080fd5b506102fa6102f53660046122e4565b6108b4565b6040516001600160a01b0390911681526020016102af565b34801561031e57600080fd5b5061028161032d366004612319565b6108db565b34801561033e57600080fd5b50600c546102a3906301000000900460ff1681565b34801561035f57600080fd5b5061036960125481565b6040519081526020016102af565b34801561038357600080fd5b50600854610369565b34801561039857600080fd5b506102816103a7366004612353565b6109f5565b3480156103b857600080fd5b506102816103c736600461236e565b610a17565b3480156103d857600080fd5b506103696103e7366004612319565b610a48565b610281610ade565b34801561040057600080fd5b50600c546102a39062010000900460ff1681565b34801561042057600080fd5b5061028161042f36600461236e565b610b5a565b34801561044057600080fd5b5061036960145481565b34801561045657600080fd5b506103696104653660046122e4565b610b75565b34801561047657600080fd5b50600c546102a39060ff1681565b34801561049057600080fd5b5061028161049f366004612449565b610c08565b6102816104b23660046122e4565b610c1c565b3480156104c357600080fd5b506102fa6104d23660046122e4565b610f82565b3480156104e357600080fd5b506102816104f2366004612353565b610fe2565b34801561050357600080fd5b50610369610512366004612492565b610ffd565b34801561052357600080fd5b50610281611083565b34801561053857600080fd5b5061036960105481565b34801561054e57600080fd5b50610369600f5481565b61028161056636600461252d565b611097565b34801561057757600080fd5b50600a546001600160a01b03166102fa565b34801561059557600080fd5b506102cd6112da565b3480156105aa57600080fd5b506102816105b9366004612562565b6112e9565b3480156105ca57600080fd5b506102816105d9366004612585565b6112f9565b3480156105ea57600080fd5b5061036960165481565b34801561060057600080fd5b5061028161060f3660046125b8565b611304565b34801561062057600080fd5b506102a361062f366004612634565b611336565b34801561064057600080fd5b5061036960115481565b34801561065657600080fd5b5061036960155481565b34801561066c57600080fd5b506102cd61134c565b34801561068157600080fd5b506102cd6106903660046122e4565b6113da565b3480156106a157600080fd5b506102816114b7565b3480156106b657600080fd5b506102816106c53660046122e4565b611625565b3480156106d657600080fd5b5061036960135481565b3480156106ec57600080fd5b50600c546102a390610100900460ff1681565b34801561070b57600080fd5b506102a361071a366004612679565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075457600080fd5b50610369600b5481565b34801561076a57600080fd5b50610281610779366004612492565b611632565b6107866116a8565b600061079160085490565b9050601354600f546107a391906126b9565b81146107ae57600080fd5b600c805463ff00000019166301000000179055601354600f546000916107d3916126b9565b90505b600f5481101561080d576107fb6107f5600a546001600160a01b031690565b82611702565b80610805816126cc565b9150506107d6565b5050565b600061081c8261171c565b92915050565b606060008054610831906126e5565b80601f016020809104026020016040519081016040528092919081815260200182805461085d906126e5565b80156108aa5780601f1061087f576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161088d57829003601f168201915b5050505050905090565b60006108bf82611741565b506000908152600460205260409020546001600160a01b031690565b60006108e682610f82565b9050806001600160a01b0316836001600160a01b0316036109585760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806109745750610974813361071a565b6109e65760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161094f565b6109f083836117a0565b505050565b6109fd6116a8565b600c80549115156101000261ff0019909216919091179055565b610a21338261180e565b610a3d5760405162461bcd60e51b815260040161094f9061271f565b6109f083838361188d565b6000610a5383610ffd565b8210610ab55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161094f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610ae66116a8565b6000610afa600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b44576040519150601f19603f3d011682016040523d82523d6000602084013e610b49565b606091505b5050905080610b5757600080fd5b50565b6109f083838360405180602001604052806000815250611304565b6000610b8060085490565b8210610be35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161094f565b60088281548110610bf657610bf661276d565b90600052602060002001549050919050565b610c106116a8565b600e61080d82826127d1565b8060115481610c2b9190612891565b341015610c4a5760405162461bcd60e51b815260040161094f906128b0565b600c5460ff1615610cd75760405162461bcd60e51b815260206004820152604b60248201527f4d54523a20596f752063616e2774206d696e7420776974686f7574206265696e60448201527f672077686974656c6973746564207768696c652070726573616c65207068617360648201526a652069732061637469766560a81b608482015260a40161094f565b6000610ce260085490565b600c5490915062010000900460ff161580610d075750600c546301000000900460ff16155b15610dc057601354601554600f54610d1f91906126b9565b610d2991906126b9565b610d33848361290d565b1115610dbb5760405162461bcd60e51b815260206004820152604b60248201527f4d54523a205075626c6963206d696e7420737570706c7920657863656465642c60448201527f2072656d61696e696e6720746f6b656e7320617265207265736572766564206660648201526a6f7220746865207465616d60a81b608482015260a40161094f565b610e27565b600f54610dcd848361290d565b1115610e275760405162461bcd60e51b815260206004820152602360248201527f4d54523a204d696e7420737570706c792065786365656465642c20736f72727960448201526204074560eb1b606482015260840161094f565b601654831115610e955760405162461bcd60e51b815260206004820152603360248201527f4d54523a20596f752063616e206d696e74206f6e6c792033204e46547320696e60448201527220746f74616c20287065722077616c6c65742960681b606482015260840161094f565b60165433600090815260186020526040902054610eb390859061290d565b1115610f275760405162461bcd60e51b815260206004820152603d60248201527f4d54523a20596f75206861766520616c7265616479206d696e746564206d617860448201527f696d756d20616c6c6f77656420616d6f756e74206f6620746f6b656e73000000606482015260840161094f565b3360009081526018602052604081208054859290610f4690849061290d565b90915550600090505b83811015610f7c57610f6a33610f65838561290d565b611702565b80610f74816126cc565b915050610f4f565b50505050565b6000818152600260205260408120546001600160a01b03168061081c5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161094f565b610fea6116a8565b600c805460ff1916911515919091179055565b60006001600160a01b0382166110675760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161094f565b506001600160a01b031660009081526003602052604090205490565b61108b6116a8565b6110956000611a34565b565b6001601154816110a79190612891565b3410156110c65760405162461bcd60e51b815260040161094f906128b0565b60006110d160085490565b600c54909150610100900460ff1661112b5760405162461bcd60e51b815260206004820152601b60248201527f4d54523a20436f6e7472616374206973206e6f74206163746976650000000000604482015260640161094f565b600c5460ff166111a35760405162461bcd60e51b815260206004820152603c60248201527f4d54523a2050726573616c65206973206f7665722c20757365206d696e74507560448201527f626c69632066756e6374696f6e20746f206d696e7420746f6b656e7300000000606482015260840161094f565b6040516bffffffffffffffffffffffff193360601b1660208201526111e290849060340160405160208183030381529060405280519060200120611336565b6112485760405162461bcd60e51b815260206004820152603160248201527f4d54523a20496e76616c696420416c6c6f77616e63652028796f752077657265604482015270206e6f742077686974656c69737465642960781b606482015260840161094f565b3360009081526017602052604090205460ff16156112b65760405162461bcd60e51b815260206004820152602560248201527f4d54523a20596f75206861766520616c7265616479206d696e74656420796f756044820152641c8813919560da1b606482015260840161094f565b336000818152601760205260409020805460ff191660011790556109f09082611702565b606060018054610831906126e5565b6112f16116a8565b60ff16601455565b61080d338383611a86565b61130e338361180e565b61132a5760405162461bcd60e51b815260040161094f9061271f565b610f7c84848484611b54565b600061134583600b5484611b87565b9392505050565b600d8054611359906126e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611385906126e5565b80156113d25780601f106113a7576101008083540402835291602001916113d2565b820191906000526020600020905b8154815290600101906020018083116113b557829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166114595760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094f565b6000611463611b9d565b905060008151116114835760405180602001604052806000815250611345565b8061148d84611bac565b600d6040516020016114a193929190612920565b6040516020818303038152906040529392505050565b6114bf6116a8565b60006114ca60085490565b600c54909150610100900460ff1680156114e75750600c5460ff16155b6115595760405162461bcd60e51b815260206004820152603a60248201527f4d54523a20446f6e277420796f75207265616c6c79206b6e6f7720686f77207460448201527f6f20757365206f7572206f776e20636f6e74726163742078443f000000000000606482015260840161094f565b600c5462010000900460ff16156115a95760405162461bcd60e51b81526020600482015260146024820152731355148e88105b1c9958591e4818db185a5b595960621b604482015260640161094f565b6014546012546115b991906129d6565b601560008282546115ca91906126b9565b90915550506015546000036115eb57600c805462ff00001916620100001790555b60005b6014546012546115fe91906129d6565b81101561080d5761161333610f65838561290d565b8061161d816126cc565b9150506115ee565b61162d6116a8565b600b55565b61163a6116a8565b6001600160a01b03811661169f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094f565b610b5781611a34565b600a546001600160a01b031633146110955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161094f565b61080d828260405180602001604052806000815250611cad565b60006001600160e01b0319821663780e9d6360e01b148061081c575061081c82611ce0565b6000818152600260205260409020546001600160a01b0316610b575760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161094f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117d582610f82565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061181a83610f82565b9050806001600160a01b0316846001600160a01b0316148061186157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806118855750836001600160a01b031661187a846108b4565b6001600160a01b0316145b949350505050565b826001600160a01b03166118a082610f82565b6001600160a01b0316146119045760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161094f565b6001600160a01b0382166119665760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161094f565b611971838383611d30565b61197c6000826117a0565b6001600160a01b03831660009081526003602052604081208054600192906119a59084906126b9565b90915550506001600160a01b03821660009081526003602052604081208054600192906119d390849061290d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611ae75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161094f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b5f84848461188d565b611b6b84848484611d3b565b610f7c5760405162461bcd60e51b815260040161094f906129ea565b600082611b948584611e3c565b14949350505050565b6060600e8054610831906126e5565b606081600003611bd35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bfd5780611be7816126cc565b9150611bf69050600a836129d6565b9150611bd7565b60008167ffffffffffffffff811115611c1857611c186123aa565b6040519080825280601f01601f191660200182016040528015611c42576020820181803683370190505b5090505b841561188557611c576001836126b9565b9150611c64600a86612a3c565b611c6f90603061290d565b60f81b818381518110611c8457611c8461276d565b60200101906001600160f81b031916908160001a905350611ca6600a866129d6565b9450611c46565b611cb78383611e89565b611cc46000848484611d3b565b6109f05760405162461bcd60e51b815260040161094f906129ea565b60006001600160e01b031982166380ac58cd60e01b1480611d1157506001600160e01b03198216635b5e139f60e01b145b8061081c57506301ffc9a760e01b6001600160e01b031983161461081c565b6109f0838383611fd7565b60006001600160a01b0384163b15611e3157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d7f903390899088908890600401612a50565b6020604051808303816000875af1925050508015611dba575060408051601f3d908101601f19168201909252611db791810190612a8d565b60015b611e17573d808015611de8576040519150601f19603f3d011682016040523d82523d6000602084013e611ded565b606091505b508051600003611e0f5760405162461bcd60e51b815260040161094f906129ea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611885565b506001949350505050565b600081815b8451811015611e8157611e6d82868381518110611e6057611e6061276d565b602002602001015161208f565b915080611e79816126cc565b915050611e41565b509392505050565b6001600160a01b038216611edf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161094f565b6000818152600260205260409020546001600160a01b031615611f445760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161094f565b611f5060008383611d30565b6001600160a01b0382166000908152600360205260408120805460019290611f7990849061290d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166120325761202d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612055565b816001600160a01b0316836001600160a01b0316146120555761205583826120be565b6001600160a01b03821661206c576109f08161215b565b826001600160a01b0316826001600160a01b0316146109f0576109f0828261220a565b60008183106120ab576000828152602084905260409020611345565b6000838152602083905260409020611345565b600060016120cb84610ffd565b6120d591906126b9565b600083815260076020526040902054909150808214612128576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061216d906001906126b9565b600083815260096020526040812054600880549394509092849081106121955761219561276d565b9060005260206000200154905080600883815481106121b6576121b661276d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121ee576121ee612aaa565b6001900381819060005260206000200160009055905550505050565b600061221583610ffd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114610b5757600080fd5b60006020828403121561227657600080fd5b81356113458161224e565b60005b8381101561229c578181015183820152602001612284565b50506000910152565b600081518084526122bd816020860160208601612281565b601f01601f19169290920160200192915050565b60208152600061134560208301846122a5565b6000602082840312156122f657600080fd5b5035919050565b80356001600160a01b038116811461231457600080fd5b919050565b6000806040838503121561232c57600080fd5b612335836122fd565b946020939093013593505050565b8035801515811461231457600080fd5b60006020828403121561236557600080fd5b61134582612343565b60008060006060848603121561238357600080fd5b61238c846122fd565b925061239a602085016122fd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156123e9576123e96123aa565b604052919050565b600067ffffffffffffffff83111561240b5761240b6123aa565b61241e601f8401601f19166020016123c0565b905082815283838301111561243257600080fd5b828260208301376000602084830101529392505050565b60006020828403121561245b57600080fd5b813567ffffffffffffffff81111561247257600080fd5b8201601f8101841361248357600080fd5b611885848235602084016123f1565b6000602082840312156124a457600080fd5b611345826122fd565b600082601f8301126124be57600080fd5b8135602067ffffffffffffffff8211156124da576124da6123aa565b8160051b6124e98282016123c0565b928352848101820192828101908785111561250357600080fd5b83870192505b8483101561252257823582529183019190830190612509565b979650505050505050565b60006020828403121561253f57600080fd5b813567ffffffffffffffff81111561255657600080fd5b611885848285016124ad565b60006020828403121561257457600080fd5b813560ff8116811461134557600080fd5b6000806040838503121561259857600080fd5b6125a1836122fd565b91506125af60208401612343565b90509250929050565b600080600080608085870312156125ce57600080fd5b6125d7856122fd565b93506125e5602086016122fd565b925060408501359150606085013567ffffffffffffffff81111561260857600080fd5b8501601f8101871361261957600080fd5b612628878235602084016123f1565b91505092959194509250565b6000806040838503121561264757600080fd5b823567ffffffffffffffff81111561265e57600080fd5b61266a858286016124ad565b95602094909401359450505050565b6000806040838503121561268c57600080fd5b612695836122fd565b91506125af602084016122fd565b634e487b7160e01b600052601160045260246000fd5b8181038181111561081c5761081c6126a3565b6000600182016126de576126de6126a3565b5060010190565b600181811c908216806126f957607f821691505b60208210810361271957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b601f8211156109f057600081815260208120601f850160051c810160208610156127aa5750805b601f850160051c820191505b818110156127c9578281556001016127b6565b505050505050565b815167ffffffffffffffff8111156127eb576127eb6123aa565b6127ff816127f984546126e5565b84612783565b602080601f831160018114612834576000841561281c5750858301515b600019600386901b1c1916600185901b1785556127c9565b600085815260208120601f198616915b8281101561286357888601518255948401946001909101908401612844565b50858210156128815787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008160001904831182151516156128ab576128ab6126a3565b500290565b60208082526038908201527f4d54523a20496e73756666696369656e742066756e64732070726f766964656460408201527f2c206d696e7420707269636520697320302e3035204554480000000000000000606082015260800190565b8082018082111561081c5761081c6126a3565b6000845160206129338285838a01612281565b8551918401916129468184848a01612281565b8554920191600090612957816126e5565b6001828116801561296f5760018114612984576129b0565b60ff19841687528215158302870194506129b0565b896000528560002060005b848110156129a85781548982015290830190870161298f565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826129e5576129e56129c0565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612a4b57612a4b6129c0565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a83908301846122a5565b9695505050505050565b600060208284031215612a9f57600080fd5b81516113458161224e565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205b9a82749a4eab272eb61bb114d09acb1f6d0fc869743b99c3d878a4742250cf64736f6c63430008100033

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

0000000000000000000000000000000000000000000000000000000000000040696f6c227bbe03f66e9be55434bcb961603ccbd550fc7a210528808c3833b9fe0000000000000000000000000000000000000000000000000000000000000004736f6f6e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : InitBaseURI (string): soon
Arg [1] : _root (bytes32): 0x696f6c227bbe03f66e9be55434bcb961603ccbd550fc7a210528808c3833b9fe

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 696f6c227bbe03f66e9be55434bcb961603ccbd550fc7a210528808c3833b9fe
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 736f6f6e00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

58050:5903:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62111:348;;;;;;;;;;;;;:::i;:::-;;63738:212;;;;;;;;;;-1:-1:-1;63738:212:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;63738:212:0;;;;;;;;35502:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37015:171::-;;;;;;;;;;-1:-1:-1;37015:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;37015:171:0;1533:203:1;36532:417:0;;;;;;;;;;-1:-1:-1;36532:417:0;;;;;:::i;:::-;;:::i;58298:36::-;;;;;;;;;;-1:-1:-1;58298:36:0;;;;;;;;;;;58549:34;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;58549:34:0;2178:177:1;49408:113:0;;;;;;;;;;-1:-1:-1;49496:10:0;:17;49408:113;;61765:112;;;;;;;;;;-1:-1:-1;61765:112:0;;;;;:::i;:::-;;:::i;37715:336::-;;;;;;;;;;-1:-1:-1;37715:336:0;;;;;:::i;:::-;;:::i;49076:256::-;;;;;;;;;;-1:-1:-1;49076:256:0;;;;;:::i;:::-;;:::i;63340:178::-;;;:::i;58256:35::-;;;;;;;;;;-1:-1:-1;58256:35:0;;;;;;;;;;;38122:185;;;;;;;;;;-1:-1:-1;38122:185:0;;;;;:::i;:::-;;:::i;58632:50::-;;;;;;;;;;;;;;;;49598:233;;;;;;;;;;-1:-1:-1;49598:233:0;;;;;:::i;:::-;;:::i;58176:32::-;;;;;;;;;;-1:-1:-1;58176:32:0;;;;;;;;63212:120;;;;;;;;;;-1:-1:-1;63212:120:0;;;;;:::i;:::-;;:::i;60146:1020::-;;;;;;:::i;:::-;;:::i;35213:222::-;;;;;;;;;;-1:-1:-1;35213:222:0;;;;;:::i;:::-;;:::i;61885:109::-;;;;;;;;;;-1:-1:-1;61885:109:0;;;;;:::i;:::-;;:::i;34944:207::-;;;;;;;;;;-1:-1:-1;34944:207:0;;;;;:::i;:::-;;:::i;14031:103::-;;;;;;;;;;;;;:::i;58461:36::-;;;;;;;;;;;;;;;;58414:40;;;;;;;;;;;;;;;;59503:635;;;;;;:::i;:::-;;:::i;13383:87::-;;;;;;;;;;-1:-1:-1;13456:6:0;;-1:-1:-1;;;;;13456:6:0;13383:87;;35671:104;;;;;;;;;;;;;:::i;62467:129::-;;;;;;;;;;-1:-1:-1;62467:129:0;;;;;:::i;:::-;;:::i;37258:155::-;;;;;;;;;;-1:-1:-1;37258:155:0;;;;;:::i;:::-;;:::i;58730:31::-;;;;;;;;;;;;;;;;38378:323;;;;;;;;;;-1:-1:-1;38378:323:0;;;;;:::i;:::-;;:::i;59330:165::-;;;;;;;;;;-1:-1:-1;59330:165:0;;;;;:::i;:::-;;:::i;58504:38::-;;;;;;;;;;;;;;;;58689:34;;;;;;;;;;;;;;;;58347:37;;;;;;;;;;;;;:::i;62605:483::-;;;;;;;;;;-1:-1:-1;62605:483:0;;;;;:::i;:::-;;:::i;61176:581::-;;;;;;;;;;;;;:::i;62002:101::-;;;;;;;;;;-1:-1:-1;62002:101:0;;;;;:::i;:::-;;:::i;58590:35::-;;;;;;;;;;;;;;;;58215:34;;;;;;;;;;-1:-1:-1;58215:34:0;;;;;;;;;;;37484:164;;;;;;;;;;-1:-1:-1;37484:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37605:25:0;;;37581:4;37605:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37484:164;58148:19;;;;;;;;;;;;;;;;14289:201;;;;;;;;;;-1:-1:-1;14289:201:0;;;;;:::i;:::-;;:::i;62111:348::-;13269:13;:11;:13::i;:::-;62183:14:::1;62200:13;49496:10:::0;:17;;49408:113;62200:13:::1;62183:30;;62260:16;;62242:17;;:34;;;;:::i;:::-;62232:6;:44;62224:53;;;::::0;::::1;;62288:16;:23:::0;;-1:-1:-1;;62288:23:0::1;::::0;::::1;::::0;;62351:16:::1;::::0;62333:17:::1;::::0;62288:23;;62333:34:::1;::::0;::::1;:::i;:::-;62326:41;;62322:130;62371:17;;62369:1;:19;62322:130;;;62419:21;62429:7;13456:6:::0;;-1:-1:-1;;;;;13456:6:0;;13383:87;62429:7:::1;62438:1;62419:9;:21::i;:::-;62390:3:::0;::::1;::::0;::::1;:::i;:::-;;;;62322:130;;;;62172:287;62111:348::o:0;63738:212::-;63877:4;63906:36;63930:11;63906:23;:36::i;:::-;63899:43;63738:212;-1:-1:-1;;63738:212:0:o;35502:100::-;35556:13;35589:5;35582:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35502:100;:::o;37015:171::-;37091:7;37111:23;37126:7;37111:14;:23::i;:::-;-1:-1:-1;37154:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37154:24:0;;37015:171::o;36532:417::-;36613:13;36629:23;36644:7;36629:14;:23::i;:::-;36613:39;;36677:5;-1:-1:-1;;;;;36671:11:0;:2;-1:-1:-1;;;;;36671:11:0;;36663:57;;;;-1:-1:-1;;;36663:57:0;;8834:2:1;36663:57:0;;;8816:21:1;8873:2;8853:18;;;8846:30;8912:34;8892:18;;;8885:62;-1:-1:-1;;;8963:18:1;;;8956:31;9004:19;;36663:57:0;;;;;;;;;12014:10;-1:-1:-1;;;;;36755:21:0;;;;:62;;-1:-1:-1;36780:37:0;36797:5;12014:10;37484:164;:::i;36780:37::-;36733:174;;;;-1:-1:-1;;;36733:174:0;;9236:2:1;36733:174:0;;;9218:21:1;9275:2;9255:18;;;9248:30;9314:34;9294:18;;;9287:62;9385:32;9365:18;;;9358:60;9435:19;;36733:174:0;9034:426:1;36733:174:0;36920:21;36929:2;36933:7;36920:8;:21::i;:::-;36602:347;36532:417;;:::o;61765:112::-;13269:13;:11;:13::i;:::-;61847:14:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;61847:22:0;;::::1;::::0;;;::::1;::::0;;61765:112::o;37715:336::-;37910:41;12014:10;37943:7;37910:18;:41::i;:::-;37902:100;;;;-1:-1:-1;;;37902:100:0;;;;;;;:::i;:::-;38015:28;38025:4;38031:2;38035:7;38015:9;:28::i;49076:256::-;49173:7;49209:23;49226:5;49209:16;:23::i;:::-;49201:5;:31;49193:87;;;;-1:-1:-1;;;49193:87:0;;10082:2:1;49193:87:0;;;10064:21:1;10121:2;10101:18;;;10094:30;10160:34;10140:18;;;10133:62;-1:-1:-1;;;10211:18:1;;;10204:41;10262:19;;49193:87:0;9880:407:1;49193:87:0;-1:-1:-1;;;;;;49298:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;49076:256::o;63340:178::-;13269:13;:11;:13::i;:::-;63420:7:::1;63441;13456:6:::0;;-1:-1:-1;;;;;13456:6:0;;13383:87;63441:7:::1;-1:-1:-1::0;;;;;63433:21:0::1;63462;63433:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63419:69;;;63507:2;63499:11;;;::::0;::::1;;63408:110;63340:178::o:0;38122:185::-;38260:39;38277:4;38283:2;38287:7;38260:39;;;;;;;;;;;;:16;:39::i;49598:233::-;49673:7;49709:30;49496:10;:17;;49408:113;49709:30;49701:5;:38;49693:95;;;;-1:-1:-1;;;49693:95:0;;10704:2:1;49693:95:0;;;10686:21:1;10743:2;10723:18;;;10716:30;10782:34;10762:18;;;10755:62;-1:-1:-1;;;10833:18:1;;;10826:42;10885:19;;49693:95:0;10502:408:1;49693:95:0;49806:10;49817:5;49806:17;;;;;;;;:::i;:::-;;;;;;;;;49799:24;;49598:233;;;:::o;63212:120::-;13269:13;:11;:13::i;:::-;63303:7:::1;:21;63313:11:::0;63303:7;:21:::1;:::i;60146:1020::-:0;60225:6;58951:10;;58942:6;:19;;;;:::i;:::-;58929:9;:32;;58921:101;;;;-1:-1:-1;;;58921:101:0;;;;;;;:::i;:::-;60258:13:::1;::::0;::::1;;60257:14;60249:102;;;::::0;-1:-1:-1;;;60249:102:0;;14051:2:1;60249:102:0::1;::::0;::::1;14033:21:1::0;14090:2;14070:18;;;14063:30;14129:34;14109:18;;;14102:62;14200:34;14180:18;;;14173:62;-1:-1:-1;;;14251:19:1;;;14244:42;14303:19;;60249:102:0::1;13849:479:1::0;60249:102:0::1;60362:14;60379:13;49496:10:::0;:17;;49408:113;60379:13:::1;60407:15;::::0;60362:30;;-1:-1:-1;60407:15:0;;::::1;;;60406:16;::::0;:37:::1;;-1:-1:-1::0;60427:16:0::1;::::0;;;::::1;;;60426:17;60406:37;60403:336;;;60532:16;;60516:13;;60496:17;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;60477:15;60486:6:::0;60477;:15:::1;:::i;:::-;:71;;60469:159;;;::::0;-1:-1:-1;;;60469:159:0;;14665:2:1;60469:159:0::1;::::0;::::1;14647:21:1::0;14704:2;14684:18;;;14677:30;14743:34;14723:18;;;14716:62;14814:34;14794:18;;;14787:62;-1:-1:-1;;;14865:19:1;;;14858:42;14917:19;;60469:159:0::1;14463:479:1::0;60469:159:0::1;60403:336;;;60682:17;::::0;60663:15:::1;60672:6:::0;60663;:15:::1;:::i;:::-;:36;;60655:84;;;::::0;-1:-1:-1;;;60655:84:0;;15149:2:1;60655:84:0::1;::::0;::::1;15131:21:1::0;15188:2;15168:18;;;15161:30;15227:34;15207:18;;;15200:62;-1:-1:-1;;;15278:18:1;;;15271:33;15321:19;;60655:84:0::1;14947:399:1::0;60655:84:0::1;60778:12;;60768:6;:22;;60760:86;;;::::0;-1:-1:-1;;;60760:86:0;;15553:2:1;60760:86:0::1;::::0;::::1;15535:21:1::0;15592:2;15572:18;;;15565:30;15631:34;15611:18;;;15604:62;-1:-1:-1;;;15682:18:1;;;15675:49;15741:19;;60760:86:0::1;15351:415:1::0;60760:86:0::1;60909:12;::::0;60885:10:::1;60865:31;::::0;;;:19:::1;:31;::::0;;;;;:40:::1;::::0;60899:6;;60865:40:::1;:::i;:::-;:56;;60857:130;;;::::0;-1:-1:-1;;;60857:130:0;;15973:2:1;60857:130:0::1;::::0;::::1;15955:21:1::0;16012:2;15992:18;;;15985:30;16051:34;16031:18;;;16024:62;16122:31;16102:18;;;16095:59;16171:19;;60857:130:0::1;15771:425:1::0;60857:130:0::1;61028:10;61008:31;::::0;;;:19:::1;:31;::::0;;;;:41;;61043:6;;61008:31;:41:::1;::::0;61043:6;;61008:41:::1;:::i;:::-;::::0;;;-1:-1:-1;61064:6:0::1;::::0;-1:-1:-1;61060:99:0::1;61076:6;61074:1;:8;61060:99;;;61114:33;61124:10;61136;61145:1:::0;61136:6;:10:::1;:::i;:::-;61114:9;:33::i;:::-;61084:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61060:99;;;;60238:928;60146:1020:::0;;:::o;35213:222::-;35285:7;35321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35321:16:0;;35348:56;;;;-1:-1:-1;;;35348:56:0;;16403:2:1;35348:56:0;;;16385:21:1;16442:2;16422:18;;;16415:30;-1:-1:-1;;;16461:18:1;;;16454:54;16525:18;;35348:56:0;16201:348:1;61885:109:0;13269:13;:11;:13::i;:::-;61965::::1;:21:::0;;-1:-1:-1;;61965:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;61885:109::o;34944:207::-;35016:7;-1:-1:-1;;;;;35044:19:0;;35036:73;;;;-1:-1:-1;;;35036:73:0;;16756:2:1;35036:73:0;;;16738:21:1;16795:2;16775:18;;;16768:30;16834:34;16814:18;;;16807:62;-1:-1:-1;;;16885:18:1;;;16878:39;16934:19;;35036:73:0;16554:405:1;35036:73:0;-1:-1:-1;;;;;;35127:16:0;;;;;:9;:16;;;;;;;34944:207::o;14031:103::-;13269:13;:11;:13::i;:::-;14096:30:::1;14123:1;14096:18;:30::i;:::-;14031:103::o:0;59503:635::-;59586:1;58951:10;;58942:6;:19;;;;:::i;:::-;58929:9;:32;;58921:101;;;;-1:-1:-1;;;58921:101:0;;;;;;;:::i;:::-;59608:14:::1;59625:13;49496:10:::0;:17;;49408:113;59625:13:::1;59667:14;::::0;59608:30;;-1:-1:-1;59667:14:0::1;::::0;::::1;;;59659:54;;;::::0;-1:-1:-1;;;59659:54:0;;17166:2:1;59659:54:0::1;::::0;::::1;17148:21:1::0;17205:2;17185:18;;;17178:30;17244:29;17224:18;;;17217:57;17291:18;;59659:54:0::1;16964:351:1::0;59659:54:0::1;59732:13;::::0;::::1;;59724:86;;;::::0;-1:-1:-1;;;59724:86:0;;17522:2:1;59724:86:0::1;::::0;::::1;17504:21:1::0;17561:2;17541:18;;;17534:30;17600:34;17580:18;;;17573:62;17671:30;17651:18;;;17644:58;17719:19;;59724:86:0::1;17320:424:1::0;59724:86:0::1;59853:28;::::0;-1:-1:-1;;59870:10:0::1;17898:2:1::0;17894:15;17890:53;59853:28:0::1;::::0;::::1;17878:66:1::0;59829:54:0::1;::::0;59837:5;;17960:12:1;;59853:28:0::1;;;;;;;;;;;;59843:39;;;;;;59829:7;:54::i;:::-;59821:115;;;::::0;-1:-1:-1;;;59821:115:0;;18185:2:1;59821:115:0::1;::::0;::::1;18167:21:1::0;18224:2;18204:18;;;18197:30;18263:34;18243:18;;;18236:62;-1:-1:-1;;;18314:18:1;;;18307:47;18371:19;;59821:115:0::1;17983:413:1::0;59821:115:0::1;59976:10;59955:32;::::0;;;:20:::1;:32;::::0;;;;;::::1;;:41;59947:91;;;::::0;-1:-1:-1;;;59947:91:0;;18603:2:1;59947:91:0::1;::::0;::::1;18585:21:1::0;18642:2;18622:18;;;18615:30;18681:34;18661:18;;;18654:62;-1:-1:-1;;;18732:18:1;;;18725:35;18777:19;;59947:91:0::1;18401:401:1::0;59947:91:0::1;60072:10;60051:32;::::0;;;:20:::1;:32;::::0;;;;:39;;-1:-1:-1;;60051:39:0::1;60086:4;60051:39;::::0;;60101:29:::1;::::0;60123:6;60101:9:::1;:29::i;35671:104::-:0;35727:13;35760:7;35753:14;;;;;:::i;62467:129::-;13269:13;:11;:13::i;:::-;62551:37:::1;;:30;:37:::0;62467:129::o;37258:155::-;37353:52;12014:10;37386:8;37396;37353:18;:52::i;38378:323::-;38552:41;12014:10;38585:7;38552:18;:41::i;:::-;38544:100;;;;-1:-1:-1;;;38544:100:0;;;;;;;:::i;:::-;38655:38;38669:4;38675:2;38679:7;38688:4;38655:13;:38::i;59330:165::-;59421:4;59450:37;59469:5;59476:4;;59482;59450:18;:37::i;:::-;59443:44;59330:165;-1:-1:-1;;;59330:165:0:o;58347:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62605:483::-;40273:4;40297:16;;;:7;:16;;;;;;62723:13;;-1:-1:-1;;;;;40297:16:0;62754:105;;;;-1:-1:-1;;;62754:105:0;;19009:2:1;62754:105:0;;;18991:21:1;19048:2;19028:18;;;19021:30;19087:34;19067:18;;;19060:62;-1:-1:-1;;;19138:18:1;;;19131:45;19193:19;;62754:105:0;18807:411:1;62754:105:0;62880:28;62911:10;:8;:10::i;:::-;62880:41;;62970:1;62945:14;62939:28;:32;:141;;;;;;;;;;;;;;;;;63011:14;63027:18;:7;:16;:18::i;:::-;63047:13;62994:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62932:148;62605:483;-1:-1:-1;;;62605:483:0:o;61176:581::-;13269:13;:11;:13::i;:::-;61251:14:::1;61268:13;49496:10:::0;:17;;49408:113;61268:13:::1;61310:14;::::0;61251:30;;-1:-1:-1;61310:14:0::1;::::0;::::1;;;:32:::0;::::1;;;-1:-1:-1::0;61329:13:0::1;::::0;::::1;;61328:14;61310:32;61302:103;;;::::0;-1:-1:-1;;;61302:103:0;;20686:2:1;61302:103:0::1;::::0;::::1;20668:21:1::0;20725:2;20705:18;;;20698:30;20764:34;20744:18;;;20737:62;20835:28;20815:18;;;20808:56;20881:19;;61302:103:0::1;20484:422:1::0;61302:103:0::1;61425:15;::::0;;;::::1;;;61424:16;61416:49;;;::::0;-1:-1:-1;;;61416:49:0;;21113:2:1;61416:49:0::1;::::0;::::1;21095:21:1::0;21152:2;21132:18;;;21125:30;-1:-1:-1;;;21171:18:1;;;21164:50;21231:18;;61416:49:0::1;20911:344:1::0;61416:49:0::1;61517:30;;61503:13;;:44;;;;:::i;:::-;61486:13;;:61;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;61561:13:0::1;::::0;61578:1:::1;61561:18:::0;61558:45:::1;;61581:15;:22:::0;;-1:-1:-1;;61581:22:0::1;::::0;::::1;::::0;;61558:45:::1;61618:6;61614:136;61644:30;;61630:13;;:44;;;;:::i;:::-;61628:1;:46;61614:136;;;61705:33;61715:10;61727;61736:1:::0;61727:6;:10:::1;:::i;61705:33::-;61676:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61614:136;;62002:101:::0;13269:13;:11;:13::i;:::-;62081:4:::1;:14:::0;62002:101::o;14289:201::-;13269:13;:11;:13::i;:::-;-1:-1:-1;;;;;14378:22:0;::::1;14370:73;;;::::0;-1:-1:-1;;;14370:73:0;;21719:2:1;14370:73:0::1;::::0;::::1;21701:21:1::0;21758:2;21738:18;;;21731:30;21797:34;21777:18;;;21770:62;-1:-1:-1;;;21848:18:1;;;21841:36;21894:19;;14370:73:0::1;21517:402:1::0;14370:73:0::1;14454:28;14473:8;14454:18;:28::i;13548:132::-:0;13456:6;;-1:-1:-1;;;;;13456:6:0;12014:10;13612:23;13604:68;;;;-1:-1:-1;;;13604:68:0;;22126:2:1;13604:68:0;;;22108:21:1;;;22145:18;;;22138:30;22204:34;22184:18;;;22177:62;22256:18;;13604:68:0;21924:356:1;41108:110:0;41184:26;41194:2;41198:7;41184:26;;;;;;;;;;;;:9;:26::i;48768:224::-;48870:4;-1:-1:-1;;;;;;48894:50:0;;-1:-1:-1;;;48894:50:0;;:90;;;48948:36;48972:11;48948:23;:36::i;44990:135::-;40273:4;40297:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40297:16:0;45064:53;;;;-1:-1:-1;;;45064:53:0;;16403:2:1;45064:53:0;;;16385:21:1;16442:2;16422:18;;;16415:30;-1:-1:-1;;;16461:18:1;;;16454:54;16525:18;;45064:53:0;16201:348:1;44269:174:0;44344:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44344:29:0;-1:-1:-1;;;;;44344:29:0;;;;;;;;:24;;44398:23;44344:24;44398:14;:23::i;:::-;-1:-1:-1;;;;;44389:46:0;;;;;;;;;;;44269:174;;:::o;40502:264::-;40595:4;40612:13;40628:23;40643:7;40628:14;:23::i;:::-;40612:39;;40681:5;-1:-1:-1;;;;;40670:16:0;:7;-1:-1:-1;;;;;40670:16:0;;:52;;;-1:-1:-1;;;;;;37605:25:0;;;37581:4;37605:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40690:32;40670:87;;;;40750:7;-1:-1:-1;;;;;40726:31:0;:20;40738:7;40726:11;:20::i;:::-;-1:-1:-1;;;;;40726:31:0;;40670:87;40662:96;40502:264;-1:-1:-1;;;;40502:264:0:o;43525:625::-;43684:4;-1:-1:-1;;;;;43657:31:0;:23;43672:7;43657:14;:23::i;:::-;-1:-1:-1;;;;;43657:31:0;;43649:81;;;;-1:-1:-1;;;43649:81:0;;22487:2:1;43649:81:0;;;22469:21:1;22526:2;22506:18;;;22499:30;22565:34;22545:18;;;22538:62;-1:-1:-1;;;22616:18:1;;;22609:35;22661:19;;43649:81:0;22285:401:1;43649:81:0;-1:-1:-1;;;;;43749:16:0;;43741:65;;;;-1:-1:-1;;;43741:65:0;;22893:2:1;43741:65:0;;;22875:21:1;22932:2;22912:18;;;22905:30;22971:34;22951:18;;;22944:62;-1:-1:-1;;;23022:18:1;;;23015:34;23066:19;;43741:65:0;22691:400:1;43741:65:0;43819:39;43840:4;43846:2;43850:7;43819:20;:39::i;:::-;43923:29;43940:1;43944:7;43923:8;:29::i;:::-;-1:-1:-1;;;;;43965:15:0;;;;;;:9;:15;;;;;:20;;43984:1;;43965:15;:20;;43984:1;;43965:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43996:13:0;;;;;;:9;:13;;;;;:18;;44013:1;;43996:13;:18;;44013:1;;43996:18;:::i;:::-;;;;-1:-1:-1;;44025:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44025:21:0;-1:-1:-1;;;;;44025:21:0;;;;;;;;;44064:27;;44025:16;;44064:27;;;;;;;36602:347;36532:417;;:::o;14650:191::-;14743:6;;;-1:-1:-1;;;;;14760:17:0;;;-1:-1:-1;;;;;;14760:17:0;;;;;;;14793:40;;14743:6;;;14760:17;14743:6;;14793:40;;14724:16;;14793:40;14713:128;14650:191;:::o;44586:315::-;44741:8;-1:-1:-1;;;;;44732:17:0;:5;-1:-1:-1;;;;;44732:17:0;;44724:55;;;;-1:-1:-1;;;44724:55:0;;23298:2:1;44724:55:0;;;23280:21:1;23337:2;23317:18;;;23310:30;23376:27;23356:18;;;23349:55;23421:18;;44724:55:0;23096:349:1;44724:55:0;-1:-1:-1;;;;;44790:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;44790:46:0;;;;;;;;;;44852:41;;540::1;;;44852::0;;513:18:1;44852:41:0;;;;;;;44586:315;;;:::o;39582:313::-;39738:28;39748:4;39754:2;39758:7;39738:9;:28::i;:::-;39785:47;39808:4;39814:2;39818:7;39827:4;39785:22;:47::i;:::-;39777:110;;;;-1:-1:-1;;;39777:110:0;;;;;;;:::i;1252:190::-;1377:4;1430;1401:25;1414:5;1421:4;1401:12;:25::i;:::-;:33;;1252:190;-1:-1:-1;;;;1252:190:0:o;63096:108::-;63156:13;63189:7;63182:14;;;;;:::i;9188:723::-;9244:13;9465:5;9474:1;9465:10;9461:53;;-1:-1:-1;;9492:10:0;;;;;;;;;;;;-1:-1:-1;;;9492:10:0;;;;;9188:723::o;9461:53::-;9539:5;9524:12;9580:78;9587:9;;9580:78;;9613:8;;;;:::i;:::-;;-1:-1:-1;9636:10:0;;-1:-1:-1;9644:2:0;9636:10;;:::i;:::-;;;9580:78;;;9668:19;9700:6;9690:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9690:17:0;;9668:39;;9718:154;9725:10;;9718:154;;9752:11;9762:1;9752:11;;:::i;:::-;;-1:-1:-1;9821:10:0;9829:2;9821:5;:10;:::i;:::-;9808:24;;:2;:24;:::i;:::-;9795:39;;9778:6;9785;9778:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9778:56:0;;;;;;;;-1:-1:-1;9849:11:0;9858:2;9849:11;;:::i;:::-;;;9718:154;;41445:319;41574:18;41580:2;41584:7;41574:5;:18::i;:::-;41625:53;41656:1;41660:2;41664:7;41673:4;41625:22;:53::i;:::-;41603:153;;;;-1:-1:-1;;;41603:153:0;;;;;;;:::i;34575:305::-;34677:4;-1:-1:-1;;;;;;34714:40:0;;-1:-1:-1;;;34714:40:0;;:105;;-1:-1:-1;;;;;;;34771:48:0;;-1:-1:-1;;;34771:48:0;34714:105;:158;;;-1:-1:-1;;;;;;;;;;26346:40:0;;;34836:36;26237:157;63526:204;63677:45;63704:4;63710:2;63714:7;63677:26;:45::i;45689:853::-;45843:4;-1:-1:-1;;;;;45864:13:0;;16376:19;:23;45860:675;;45900:71;;-1:-1:-1;;;45900:71:0;;-1:-1:-1;;;;;45900:36:0;;;;;:71;;12014:10;;45951:4;;45957:7;;45966:4;;45900:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45900:71:0;;;;;;;;-1:-1:-1;;45900:71:0;;;;;;;;;;;;:::i;:::-;;;45896:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46141:6;:13;46158:1;46141:18;46137:328;;46184:60;;-1:-1:-1;;;46184:60:0;;;;;;;:::i;46137:328::-;46415:6;46409:13;46400:6;46396:2;46392:15;46385:38;45896:584;-1:-1:-1;;;;;;46022:51:0;-1:-1:-1;;;46022:51:0;;-1:-1:-1;46015:58:0;;45860:675;-1:-1:-1;46519:4:0;45689:853;;;;;;:::o;2119:296::-;2202:7;2245:4;2202:7;2260:118;2284:5;:12;2280:1;:16;2260:118;;;2333:33;2343:12;2357:5;2363:1;2357:8;;;;;;;;:::i;:::-;;;;;;;2333:9;:33::i;:::-;2318:48;-1:-1:-1;2298:3:0;;;;:::i;:::-;;;;2260:118;;;-1:-1:-1;2395:12:0;2119:296;-1:-1:-1;;;2119:296:0:o;42100:439::-;-1:-1:-1;;;;;42180:16:0;;42172:61;;;;-1:-1:-1;;;42172:61:0;;24936:2:1;42172:61:0;;;24918:21:1;;;24955:18;;;24948:30;25014:34;24994:18;;;24987:62;25066:18;;42172:61:0;24734:356:1;42172:61:0;40273:4;40297:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40297:16:0;:30;42244:58;;;;-1:-1:-1;;;42244:58:0;;25297:2:1;42244:58:0;;;25279:21:1;25336:2;25316:18;;;25309:30;25375;25355:18;;;25348:58;25423:18;;42244:58:0;25095:352:1;42244:58:0;42315:45;42344:1;42348:2;42352:7;42315:20;:45::i;:::-;-1:-1:-1;;;;;42373:13:0;;;;;;:9;:13;;;;;:18;;42390:1;;42373:13;:18;;42390:1;;42373:18;:::i;:::-;;;;-1:-1:-1;;42402:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42402:21:0;-1:-1:-1;;;;;42402:21:0;;;;;;;;42441:33;;42402:16;;;42441:33;;42402:16;;42441:33;62322:130:::1;62172:287;62111:348::o:0;50444:589::-;-1:-1:-1;;;;;50650:18:0;;50646:187;;50685:40;50717:7;51860:10;:17;;51833:24;;;;:15;:24;;;;;:44;;;51888:24;;;;;;;;;;;;51756:164;50685:40;50646:187;;;50755:2;-1:-1:-1;;;;;50747:10:0;:4;-1:-1:-1;;;;;50747:10:0;;50743:90;;50774:47;50807:4;50813:7;50774:32;:47::i;:::-;-1:-1:-1;;;;;50847:16:0;;50843:183;;50880:45;50917:7;50880:36;:45::i;50843:183::-;50953:4;-1:-1:-1;;;;;50947:10:0;:2;-1:-1:-1;;;;;50947:10:0;;50943:83;;50974:40;51002:2;51006:7;50974:27;:40::i;8326:149::-;8389:7;8420:1;8416;:5;:51;;8551:13;8645:15;;;8681:4;8674:15;;;8728:4;8712:21;;8416:51;;;8551:13;8645:15;;;8681:4;8674:15;;;8728:4;8712:21;;8424:20;8483:268;52547:988;52813:22;52863:1;52838:22;52855:4;52838:16;:22::i;:::-;:26;;;;:::i;:::-;52875:18;52896:26;;;:17;:26;;;;;;52813:51;;-1:-1:-1;53029:28:0;;;53025:328;;-1:-1:-1;;;;;53096:18:0;;53074:19;53096:18;;;:12;:18;;;;;;;;:34;;;;;;;;;53147:30;;;;;;:44;;;53264:30;;:17;:30;;;;;:43;;;53025:328;-1:-1:-1;53449:26:0;;;;:17;:26;;;;;;;;53442:33;;;-1:-1:-1;;;;;53493:18:0;;;;;:12;:18;;;;;:34;;;;;;;53486:41;52547:988::o;53830:1079::-;54108:10;:17;54083:22;;54108:21;;54128:1;;54108:21;:::i;:::-;54140:18;54161:24;;;:15;:24;;;;;;54534:10;:26;;54083:46;;-1:-1:-1;54161:24:0;;54083:46;;54534:26;;;;;;:::i;:::-;;;;;;;;;54512:48;;54598:11;54573:10;54584;54573:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;54678:28;;;:15;:28;;;;;;;:41;;;54850:24;;;;;54843:31;54885:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53901:1008;;;53830:1079;:::o;51334:221::-;51419:14;51436:20;51453:2;51436:16;:20::i;:::-;-1:-1:-1;;;;;51467:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;51512:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;51334:221:0: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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:160::-;2425:20;;2481:13;;2474:21;2464:32;;2454:60;;2510:1;2507;2500:12;2525:180;2581:6;2634:2;2622:9;2613:7;2609:23;2605:32;2602:52;;;2650:1;2647;2640:12;2602:52;2673:26;2689:9;2673:26;:::i;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:127::-;3104:10;3099:3;3095:20;3092:1;3085:31;3135:4;3132:1;3125:15;3159:4;3156:1;3149:15;3175:275;3246:2;3240:9;3311:2;3292:13;;-1:-1:-1;;3288:27:1;3276:40;;3346:18;3331:34;;3367:22;;;3328:62;3325:88;;;3393:18;;:::i;:::-;3429:2;3422:22;3175:275;;-1:-1:-1;3175:275:1:o;3455:407::-;3520:5;3554:18;3546:6;3543:30;3540:56;;;3576:18;;:::i;:::-;3614:57;3659:2;3638:15;;-1:-1:-1;;3634:29:1;3665:4;3630:40;3614:57;:::i;:::-;3605:66;;3694:6;3687:5;3680:21;3734:3;3725:6;3720:3;3716:16;3713:25;3710:45;;;3751:1;3748;3741:12;3710:45;3800:6;3795:3;3788:4;3781:5;3777:16;3764:43;3854:1;3847:4;3838:6;3831:5;3827:18;3823:29;3816:40;3455:407;;;;;:::o;3867:451::-;3936:6;3989:2;3977:9;3968:7;3964:23;3960:32;3957:52;;;4005:1;4002;3995:12;3957:52;4045:9;4032:23;4078:18;4070:6;4067:30;4064:50;;;4110:1;4107;4100:12;4064:50;4133:22;;4186:4;4178:13;;4174:27;-1:-1:-1;4164:55:1;;4215:1;4212;4205:12;4164:55;4238:74;4304:7;4299:2;4286:16;4281:2;4277;4273:11;4238:74;:::i;4323:186::-;4382:6;4435:2;4423:9;4414:7;4410:23;4406:32;4403:52;;;4451:1;4448;4441:12;4403:52;4474:29;4493:9;4474:29;:::i;4514:712::-;4568:5;4621:3;4614:4;4606:6;4602:17;4598:27;4588:55;;4639:1;4636;4629:12;4588:55;4675:6;4662:20;4701:4;4724:18;4720:2;4717:26;4714:52;;;4746:18;;:::i;:::-;4792:2;4789:1;4785:10;4815:28;4839:2;4835;4831:11;4815:28;:::i;:::-;4877:15;;;4947;;;4943:24;;;4908:12;;;;4979:15;;;4976:35;;;5007:1;5004;4997:12;4976:35;5043:2;5035:6;5031:15;5020:26;;5055:142;5071:6;5066:3;5063:15;5055:142;;;5137:17;;5125:30;;5088:12;;;;5175;;;;5055:142;;;5215:5;4514:712;-1:-1:-1;;;;;;;4514:712:1:o;5231:348::-;5315:6;5368:2;5356:9;5347:7;5343:23;5339:32;5336:52;;;5384:1;5381;5374:12;5336:52;5424:9;5411:23;5457:18;5449:6;5446:30;5443:50;;;5489:1;5486;5479:12;5443:50;5512:61;5565:7;5556:6;5545:9;5541:22;5512:61;:::i;5584:269::-;5641:6;5694:2;5682:9;5673:7;5669:23;5665:32;5662:52;;;5710:1;5707;5700:12;5662:52;5749:9;5736:23;5799:4;5792:5;5788:16;5781:5;5778:27;5768:55;;5819:1;5816;5809:12;5858:254;5923:6;5931;5984:2;5972:9;5963:7;5959:23;5955:32;5952:52;;;6000:1;5997;5990:12;5952:52;6023:29;6042:9;6023:29;:::i;:::-;6013:39;;6071:35;6102:2;6091:9;6087:18;6071:35;:::i;:::-;6061:45;;5858:254;;;;;:::o;6117:667::-;6212:6;6220;6228;6236;6289:3;6277:9;6268:7;6264:23;6260:33;6257:53;;;6306:1;6303;6296:12;6257:53;6329:29;6348:9;6329:29;:::i;:::-;6319:39;;6377:38;6411:2;6400:9;6396:18;6377:38;:::i;:::-;6367:48;;6462:2;6451:9;6447:18;6434:32;6424:42;;6517:2;6506:9;6502:18;6489:32;6544:18;6536:6;6533:30;6530:50;;;6576:1;6573;6566:12;6530:50;6599:22;;6652:4;6644:13;;6640:27;-1:-1:-1;6630:55:1;;6681:1;6678;6671:12;6630:55;6704:74;6770:7;6765:2;6752:16;6747:2;6743;6739:11;6704:74;:::i;:::-;6694:84;;;6117:667;;;;;;;:::o;6789:416::-;6882:6;6890;6943:2;6931:9;6922:7;6918:23;6914:32;6911:52;;;6959:1;6956;6949:12;6911:52;6999:9;6986:23;7032:18;7024:6;7021:30;7018:50;;;7064:1;7061;7054:12;7018:50;7087:61;7140:7;7131:6;7120:9;7116:22;7087:61;:::i;:::-;7077:71;7195:2;7180:18;;;;7167:32;;-1:-1:-1;;;;6789:416:1:o;7395:260::-;7463:6;7471;7524:2;7512:9;7503:7;7499:23;7495:32;7492:52;;;7540:1;7537;7530:12;7492:52;7563:29;7582:9;7563:29;:::i;:::-;7553:39;;7611:38;7645:2;7634:9;7630:18;7611:38;:::i;7842:127::-;7903:10;7898:3;7894:20;7891:1;7884:31;7934:4;7931:1;7924:15;7958:4;7955:1;7948:15;7974:128;8041:9;;;8062:11;;;8059:37;;;8076:18;;:::i;8107:135::-;8146:3;8167:17;;;8164:43;;8187:18;;:::i;:::-;-1:-1:-1;8234:1:1;8223:13;;8107:135::o;8247:380::-;8326:1;8322:12;;;;8369;;;8390:61;;8444:4;8436:6;8432:17;8422:27;;8390:61;8497:2;8489:6;8486:14;8466:18;8463:38;8460:161;;8543:10;8538:3;8534:20;8531:1;8524:31;8578:4;8575:1;8568:15;8606:4;8603:1;8596:15;8460:161;;8247:380;;;:::o;9465:410::-;9667:2;9649:21;;;9706:2;9686:18;;;9679:30;9745:34;9740:2;9725:18;;9718:62;-1:-1:-1;;;9811:2:1;9796:18;;9789:44;9865:3;9850:19;;9465:410::o;10915:127::-;10976:10;10971:3;10967:20;10964:1;10957:31;11007:4;11004:1;10997:15;11031:4;11028:1;11021:15;11173:545;11275:2;11270:3;11267:11;11264:448;;;11311:1;11336:5;11332:2;11325:17;11381:4;11377:2;11367:19;11451:2;11439:10;11435:19;11432:1;11428:27;11422:4;11418:38;11487:4;11475:10;11472:20;11469:47;;;-1:-1:-1;11510:4:1;11469:47;11565:2;11560:3;11556:12;11553:1;11549:20;11543:4;11539:31;11529:41;;11620:82;11638:2;11631:5;11628:13;11620:82;;;11683:17;;;11664:1;11653:13;11620:82;;;11624:3;;;11173:545;;;:::o;11894:1352::-;12020:3;12014:10;12047:18;12039:6;12036:30;12033:56;;;12069:18;;:::i;:::-;12098:97;12188:6;12148:38;12180:4;12174:11;12148:38;:::i;:::-;12142:4;12098:97;:::i;:::-;12250:4;;12314:2;12303:14;;12331:1;12326:663;;;;13033:1;13050:6;13047:89;;;-1:-1:-1;13102:19:1;;;13096:26;13047:89;-1:-1:-1;;11851:1:1;11847:11;;;11843:24;11839:29;11829:40;11875:1;11871:11;;;11826:57;13149:81;;12296:944;;12326:663;11120:1;11113:14;;;11157:4;11144:18;;-1:-1:-1;;12362:20:1;;;12480:236;12494:7;12491:1;12488:14;12480:236;;;12583:19;;;12577:26;12562:42;;12675:27;;;;12643:1;12631:14;;;;12510:19;;12480:236;;;12484:3;12744:6;12735:7;12732:19;12729:201;;;12805:19;;;12799:26;-1:-1:-1;;12888:1:1;12884:14;;;12900:3;12880:24;12876:37;12872:42;12857:58;12842:74;;12729:201;-1:-1:-1;;;;;12976:1:1;12960:14;;;12956:22;12943:36;;-1:-1:-1;11894:1352:1:o;13251:168::-;13291:7;13357:1;13353;13349:6;13345:14;13342:1;13339:21;13334:1;13327:9;13320:17;13316:45;13313:71;;;13364:18;;:::i;:::-;-1:-1:-1;13404:9:1;;13251:168::o;13424:420::-;13626:2;13608:21;;;13665:2;13645:18;;;13638:30;13704:34;13699:2;13684:18;;13677:62;13775:26;13770:2;13755:18;;13748:54;13834:3;13819:19;;13424:420::o;14333:125::-;14398:9;;;14419:10;;;14416:36;;;14432:18;;:::i;19223:1256::-;19447:3;19485:6;19479:13;19511:4;19524:64;19581:6;19576:3;19571:2;19563:6;19559:15;19524:64;:::i;:::-;19651:13;;19610:16;;;;19673:68;19651:13;19610:16;19708:15;;;19673:68;:::i;:::-;19830:13;;19763:20;;;19803:1;;19868:36;19830:13;19868:36;:::i;:::-;19923:1;19940:18;;;19967:141;;;;20122:1;20117:337;;;;19933:521;;19967:141;-1:-1:-1;;20002:24:1;;19988:39;;20079:16;;20072:24;20058:39;;20047:51;;;-1:-1:-1;19967:141:1;;20117:337;20148:6;20145:1;20138:17;20196:2;20193:1;20183:16;20221:1;20235:169;20249:8;20246:1;20243:15;20235:169;;;20331:14;;20316:13;;;20309:37;20374:16;;;;20266:10;;20235:169;;;20239:3;;20435:8;20428:5;20424:20;20417:27;;19933:521;-1:-1:-1;20470:3:1;;19223:1256;-1:-1:-1;;;;;;;;;;19223:1256:1:o;21260:127::-;21321:10;21316:3;21312:20;21309:1;21302:31;21352:4;21349:1;21342:15;21376:4;21373:1;21366:15;21392:120;21432:1;21458;21448:35;;21463:18;;:::i;:::-;-1:-1:-1;21497:9:1;;21392:120::o;23450:414::-;23652:2;23634:21;;;23691:2;23671:18;;;23664:30;23730:34;23725:2;23710:18;;23703:62;-1:-1:-1;;;23796:2:1;23781:18;;23774:48;23854:3;23839:19;;23450:414::o;23869:112::-;23901:1;23927;23917:35;;23932:18;;:::i;:::-;-1:-1:-1;23966:9:1;;23869:112::o;23986:489::-;-1:-1:-1;;;;;24255:15:1;;;24237:34;;24307:15;;24302:2;24287:18;;24280:43;24354:2;24339:18;;24332:34;;;24402:3;24397:2;24382:18;;24375:31;;;24180:4;;24423:46;;24449:19;;24441:6;24423:46;:::i;:::-;24415:54;23986:489;-1:-1:-1;;;;;;23986:489:1:o;24480:249::-;24549:6;24602:2;24590:9;24581:7;24577:23;24573:32;24570:52;;;24618:1;24615;24608:12;24570:52;24650:9;24644:16;24669:30;24693:5;24669:30;:::i;25452:127::-;25513:10;25508:3;25504:20;25501:1;25494:31;25544:4;25541:1;25534:15;25568:4;25565:1;25558:15

Swarm Source

ipfs://5b9a82749a4eab272eb61bb114d09acb1f6d0fc869743b99c3d878a4742250cf
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.