ETH Price: $2,874.95 (-5.78%)
Gas: 1 Gwei

Token

Oozoids (OOZD)
 

Overview

Max Total Supply

3,888 OOZD

Holders

1,072

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 OOZD
0x1d181e7bc93bf1a1a71f44bdfb0665baabed5448
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

3888 Oozoids on the Ethereum blockchain, looking for help to get to their new home in the metaverse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Oozoids

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-30
*/

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }
}

// 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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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.5.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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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 `IERC721.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 v4.4.1 (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`, 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 be 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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 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);

    /**
     * @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;
}

// 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: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

        unchecked {
            for (uint256 curr = tokenId;; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved();

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer();
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer();
                else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: Oozoids.sol


pragma solidity 0.8.11;





contract Oozoids is Ownable, ERC721A, ReentrancyGuard {
    uint256 public nftPrice = 0.05 ether;

    uint256 public nftLimit = 7777;
    uint256 public reserved = 150;
    uint256 public capWhitelist = 2;
    uint256 public capPublic = 5;

    bool public saleWhitelist = false;
    bool public salePublic = false;

    bytes32 public merkleRoot;

    string public baseURI = "";

    mapping(address => uint256) public whitelistAddresses;

    constructor(string memory _initURI, bytes32 _merkleRoot)
        ERC721A("Oozoids", "OOZD")
    {
        baseURI = _initURI;
        merkleRoot = _merkleRoot;
    }

    function mint(uint256 _amount) public payable nonReentrant {
        require(salePublic == true, "Oozoids: Not Started");
        require(_amount <= capPublic, "Oozoids: Amount Limit");
        _mint(_amount);
    }

    function mintWhitelist(uint256 _amount, bytes32[] calldata proof)
        public
        payable
        nonReentrant
    {
        require(saleWhitelist == true, "Oozoids: Not Started");
        require(
            MerkleProof.verify(
                proof,
                merkleRoot,
                keccak256(abi.encodePacked(_msgSender()))
            ),
            "Oozoids: Not Whitelisted"
        );
        require(
            whitelistAddresses[_msgSender()] + _amount <= capWhitelist,
            "Oozoids: Amount Limit"
        );
        _mint(_amount);
        whitelistAddresses[_msgSender()] += _amount;
    }

    function _mint(uint256 _amount) internal {
        require(tx.origin == msg.sender, "Oozoids: Self Mint Only");
        require(
            totalSupply() + _amount <= (nftLimit - reserved),
            "Oozoids: Sold Out"
        );
        require(msg.value == nftPrice * _amount, "Oozoids: Incorrect Value");
        _safeMint(_msgSender(), _amount);
    }

    function reserve(address[] calldata _tos, uint256[] calldata _amounts)
        external
        onlyOwner
        nonReentrant
    {
        require(_tos.length == _amounts.length, "Oozoids: Length Mismatch");
        for (uint256 i = 0; i < _tos.length; i++) {
            require(
                totalSupply() + _amounts[i] <= nftLimit,
                "Oozoids: Sold Out"
            );
            _safeMint(_tos[i], _amounts[i]);
            if (reserved > 0) {
                if (reserved >= _amounts[i]) {
                    reserved -= _amounts[i];
                } else {
                    reserved = 0;
                }
            }
        }
    }

    function tokensOfOwnerByIndex(address _owner, uint256 _index)
        public
        view
        returns (uint256)
    {
        return tokensOfOwner(_owner)[_index];
    }

    function tokensOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 _tokenCount = balanceOf(_owner);
        uint256[] memory _tokenIds = new uint256[](_tokenCount);
        uint256 _tokenIndex = 0;
        for (uint256 i = 0; i < totalSupply(); i++) {
            if (ownerOf(i) == _owner) {
                _tokenIds[_tokenIndex] = i;
                _tokenIndex++;
            }
        }
        return _tokenIds;
    }

    function withdraw() public payable onlyOwner {
        uint256 _balance = address(this).balance;
        address TEAM4 = 0x5bED62a0e6A0E65ec2e4Ac6cf9972653aE8F4725;
        address TEAM3 = 0x8CB9D8e1bEb509Fc5f92d1E3167E272d6304F934;
        address TEAM2 = 0x201D3B09AB5A24fB311cB91D026eADA31359791E;
        address TEAM1 = 0xF7279B51F4260C6003DC3cf615364AAf132A7934;

        (bool t4tx, ) = payable(TEAM4).call{value: (_balance * 27) / 100}("");
        require(t4tx, "Oozoids: Transfer 4 Failed");

        (bool t3tx, ) = payable(TEAM3).call{value: (_balance * 27) / 100}("");
        require(t3tx, "Oozoids: Transfer 3 Failed");

        (bool t2tx, ) = payable(TEAM2).call{value: (_balance * 27) / 100}("");
        require(t2tx, "Oozoids: Transfer 2 Failed");

        (bool t1tx, ) = payable(TEAM1).call{value: address(this).balance}("");
        require(t1tx, "Oozoids: Transfer 1 Failed");
    }

    function toggleSaleWhitelist() public onlyOwner {
        saleWhitelist = !saleWhitelist;
    }

    function toggleSalePublic() public onlyOwner {
        salePublic = !salePublic;
    }

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

    function setNftPrice(uint256 _nftPrice) public onlyOwner {
        nftPrice = _nftPrice;
    }

    function setNftLimit(uint256 _nftLimit) public onlyOwner {
        nftLimit = _nftLimit;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

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

    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked(baseURI, "contract"));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"capPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"capWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tos","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","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":"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":[],"name":"salePublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftLimit","type":"uint256"}],"name":"setNftLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftPrice","type":"uint256"}],"name":"setNftPrice","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":[],"name":"toggleSalePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleWhitelist","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"tokensOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddresses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

66b1a2bc2ec50000600955611e61600a556096600b556002600c556005600d55600e805461ffff1916905560a0604081905260006080819052620000469160109162000175565b503480156200005457600080fd5b5060405162002b9038038062002b90833981016040819052620000779162000231565b604051806040016040528060078152602001664f6f7a6f69647360c81b8152506040518060400160405280600481526020016313d3d69160e21b815250620000ce620000c86200012160201b60201c565b62000125565b8151620000e390600290602085019062000175565b508051620000f990600390602084019062000175565b505060016008555081516200011690601090602085019062000175565b50600f555062000353565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001839062000316565b90600052602060002090601f016020900481019282620001a75760008555620001f2565b82601f10620001c257805160ff1916838001178555620001f2565b82800160010185558215620001f2579182015b82811115620001f2578251825591602001919060010190620001d5565b506200020092915062000204565b5090565b5b8082111562000200576000815560010162000205565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156200024557600080fd5b82516001600160401b03808211156200025d57600080fd5b818501915085601f8301126200027257600080fd5b8151818111156200028757620002876200021b565b604051601f8201601f19908116603f01168101908382118183101715620002b257620002b26200021b565b81604052828152602093508884848701011115620002cf57600080fd5b600091505b82821015620002f35784820184015181830185015290830190620002d4565b82821115620003055760008484830101525b969092015195979596505050505050565b600181811c908216806200032b57607f821691505b602082108114156200034d57634e487b7160e01b600052602260045260246000fd5b50919050565b61282d80620003636000396000f3fe6080604052600436106102515760003560e01c806369e1cac111610139578063a0712d68116100b6578063cb4e83261161007a578063cb4e832614610694578063d5e13d65146106aa578063e8a3d485146106c0578063e985e9c5146106d5578063f2fde38b1461071e578063fe60d12c1461073e57600080fd5b8063a0712d6814610607578063a22cb4651461061a578063b88d4fde1461063a578063b8f929ad1461065a578063c87b56dd1461067457600080fd5b80637cb64759116100fd5780637cb64759146105675780637d9a7a4c146105875780638462151c146105a75780638da5cb5b146105d457806395d89b41146105f257600080fd5b806369e1cac1146104dd5780636c0360eb146104fd57806370a0823114610512578063711b9e9214610532578063715018a61461055257600080fd5b80632eb4a7ab116101d25780634bffad9f116101965780634bffad9f146104265780634eabe20b1461043b5780634f6ccce71461045057806355f804b3146104705780636352211e1461049057806369ddd67d146104b057600080fd5b80632eb4a7ab146103a85780632f745c59146103be5780633ccfd60b146103de57806342842e0e146103e65780634707f44f1461040657600080fd5b80630d39fc81116102195780630d39fc811461031a57806318160ddd1461033e57806320a447941461035357806323b872dd146103725780632a7065ea1461039257600080fd5b806301ffc9a714610256578063061431a81461028b57806306fdde03146102a0578063081812fc146102c2578063095ea7b3146102fa575b600080fd5b34801561026257600080fd5b506102766102713660046120f2565b610754565b60405190151581526020015b60405180910390f35b61029e61029936600461215a565b6107c1565b005b3480156102ac57600080fd5b506102b561099c565b60405161028291906121fd565b3480156102ce57600080fd5b506102e26102dd366004612210565b610a2e565b6040516001600160a01b039091168152602001610282565b34801561030657600080fd5b5061029e610315366004612245565b610a74565b34801561032657600080fd5b5061033060095481565b604051908152602001610282565b34801561034a57600080fd5b50600154610330565b34801561035f57600080fd5b50600e5461027690610100900460ff1681565b34801561037e57600080fd5b5061029e61038d36600461226f565b610b02565b34801561039e57600080fd5b50610330600a5481565b3480156103b457600080fd5b50610330600f5481565b3480156103ca57600080fd5b506103306103d9366004612245565b610b0d565b61029e610bec565b3480156103f257600080fd5b5061029e61040136600461226f565b610f2f565b34801561041257600080fd5b50610330610421366004612245565b610f4a565b34801561043257600080fd5b5061029e610f76565b34801561044757600080fd5b5061029e610fbd565b34801561045c57600080fd5b5061033061046b366004612210565b610ffb565b34801561047c57600080fd5b5061029e61048b366004612336565b611029565b34801561049c57600080fd5b506102e26104ab366004612210565b61106a565b3480156104bc57600080fd5b506103306104cb36600461237e565b60116020526000908152604090205481565b3480156104e957600080fd5b5061029e6104f8366004612399565b61107c565b34801561050957600080fd5b506102b5611263565b34801561051e57600080fd5b5061033061052d36600461237e565b6112f1565b34801561053e57600080fd5b5061029e61054d366004612210565b61133f565b34801561055e57600080fd5b5061029e61136e565b34801561057357600080fd5b5061029e610582366004612210565b6113a4565b34801561059357600080fd5b5061029e6105a2366004612210565b6113d3565b3480156105b357600080fd5b506105c76105c236600461237e565b611402565b6040516102829190612404565b3480156105e057600080fd5b506000546001600160a01b03166102e2565b3480156105fe57600080fd5b506102b56114cf565b61029e610615366004612210565b6114de565b34801561062657600080fd5b5061029e610635366004612448565b6115b5565b34801561064657600080fd5b5061029e610655366004612484565b61164b565b34801561066657600080fd5b50600e546102769060ff1681565b34801561068057600080fd5b506102b561068f366004612210565b611685565b3480156106a057600080fd5b50610330600d5481565b3480156106b657600080fd5b50610330600c5481565b3480156106cc57600080fd5b506102b561170c565b3480156106e157600080fd5b506102766106f03660046124ff565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561072a57600080fd5b5061029e61073936600461237e565b611734565b34801561074a57600080fd5b50610330600b5481565b60006001600160e01b031982166380ac58cd60e01b148061078557506001600160e01b03198216635b5e139f60e01b145b806107a057506001600160e01b0319821663780e9d6360e01b145b806107bb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600260085414156107ed5760405162461bcd60e51b81526004016107e490612532565b60405180910390fd5b6002600855600e5460ff1615156001146108405760405162461bcd60e51b815260206004820152601460248201527313dbde9bda591cce88139bdd0814dd185c9d195960621b60448201526064016107e4565b6108b582828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050604051602081830303815290604052805190602001206117cf565b6109015760405162461bcd60e51b815260206004820152601860248201527f4f6f7a6f6964733a204e6f742057686974656c6973746564000000000000000060448201526064016107e4565b600c543360009081526011602052604090205461091f90859061257f565b11156109655760405162461bcd60e51b815260206004820152601560248201527413dbde9bda591cce88105b5bdd5b9d08131a5b5a5d605a1b60448201526064016107e4565b61096e836117e5565b336000908152601160205260408120805485929061098d90849061257f565b90915550506001600855505050565b6060600280546109ab90612597565b80601f01602080910402602001604051908101604052809291908181526020018280546109d790612597565b8015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b6000610a3b826001541190565b610a58576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a7f8261106a565b9050806001600160a01b0316836001600160a01b03161415610ab45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ad45750610ad281336106f0565b155b15610af2576040516367d9dca160e11b815260040160405180910390fd5b610afd838383611900565b505050565b610afd83838361195c565b6000610b18836112f1565b8210610b37576040516306ed618760e11b815260040160405180910390fd5b6000610b4260015490565b905060008060005b83811015610bda576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b9c57805192505b876001600160a01b0316836001600160a01b03161415610bd15786841415610bca575093506107bb92505050565b6001909301925b50600101610b4a565b50610be36125d2565b50505092915050565b6000546001600160a01b03163314610c165760405162461bcd60e51b81526004016107e4906125e8565b47735bed62a0e6a0e65ec2e4ac6cf9972653ae8f4725738cb9d8e1beb509fc5f92d1e3167e272d6304f93473201d3b09ab5a24fb311cb91d026eada31359791e73f7279b51f4260c6003dc3cf615364aaf132a79346000846064610c7b88601b61261d565b610c859190612652565b604051600081818185875af1925050503d8060008114610cc1576040519150601f19603f3d011682016040523d82523d6000602084013e610cc6565b606091505b5050905080610d175760405162461bcd60e51b815260206004820152601a60248201527f4f6f7a6f6964733a205472616e736665722034204661696c656400000000000060448201526064016107e4565b60006001600160a01b0385166064610d3089601b61261d565b610d3a9190612652565b604051600081818185875af1925050503d8060008114610d76576040519150601f19603f3d011682016040523d82523d6000602084013e610d7b565b606091505b5050905080610dcc5760405162461bcd60e51b815260206004820152601a60248201527f4f6f7a6f6964733a205472616e736665722033204661696c656400000000000060448201526064016107e4565b60006001600160a01b0385166064610de58a601b61261d565b610def9190612652565b604051600081818185875af1925050503d8060008114610e2b576040519150601f19603f3d011682016040523d82523d6000602084013e610e30565b606091505b5050905080610e815760405162461bcd60e51b815260206004820152601a60248201527f4f6f7a6f6964733a205472616e736665722032204661696c656400000000000060448201526064016107e4565b6000846001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ece576040519150601f19603f3d011682016040523d82523d6000602084013e610ed3565b606091505b5050905080610f245760405162461bcd60e51b815260206004820152601a60248201527f4f6f7a6f6964733a205472616e736665722031204661696c656400000000000060448201526064016107e4565b505050505050505050565b610afd8383836040518060200160405280600081525061164b565b6000610f5583611402565b8281518110610f6657610f66612666565b6020026020010151905092915050565b6000546001600160a01b03163314610fa05760405162461bcd60e51b81526004016107e4906125e8565b600e805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314610fe75760405162461bcd60e51b81526004016107e4906125e8565b600e805460ff19811660ff90911615179055565b600061100660015490565b8210611025576040516329c8c00760e21b815260040160405180910390fd5b5090565b6000546001600160a01b031633146110535760405162461bcd60e51b81526004016107e4906125e8565b805161106690601090602084019061204c565b5050565b600061107582611b79565b5192915050565b6000546001600160a01b031633146110a65760405162461bcd60e51b81526004016107e4906125e8565b600260085414156110c95760405162461bcd60e51b81526004016107e490612532565b600260085582811461111d5760405162461bcd60e51b815260206004820152601860248201527f4f6f7a6f6964733a204c656e677468204d69736d61746368000000000000000060448201526064016107e4565b60005b8381101561125757600a5483838381811061113d5761113d612666565b9050602002013561114d60015490565b611157919061257f565b11156111995760405162461bcd60e51b815260206004820152601160248201527013dbde9bda591cce8814dbdb190813dd5d607a1b60448201526064016107e4565b6111e18585838181106111ae576111ae612666565b90506020020160208101906111c3919061237e565b8484848181106111d5576111d5612666565b90506020020135611c0d565b600b5415611245578282828181106111fb576111fb612666565b90506020020135600b541061123f5782828281811061121c5761121c612666565b90506020020135600b6000828254611234919061267c565b909155506112459050565b6000600b555b8061124f81612693565b915050611120565b50506001600855505050565b6010805461127090612597565b80601f016020809104026020016040519081016040528092919081815260200182805461129c90612597565b80156112e95780601f106112be576101008083540402835291602001916112e9565b820191906000526020600020905b8154815290600101906020018083116112cc57829003601f168201915b505050505081565b60006001600160a01b03821661131a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113695760405162461bcd60e51b81526004016107e4906125e8565b600a55565b6000546001600160a01b031633146113985760405162461bcd60e51b81526004016107e4906125e8565b6113a26000611c27565b565b6000546001600160a01b031633146113ce5760405162461bcd60e51b81526004016107e4906125e8565b600f55565b6000546001600160a01b031633146113fd5760405162461bcd60e51b81526004016107e4906125e8565b600955565b6060600061140f836112f1565b90506000816001600160401b0381111561142b5761142b6122ab565b604051908082528060200260200182016040528015611454578160200160208202803683370190505b5090506000805b6001548110156114c557856001600160a01b03166114788261106a565b6001600160a01b031614156114b3578083838151811061149a5761149a612666565b6020908102919091010152816114af81612693565b9250505b806114bd81612693565b91505061145b565b5090949350505050565b6060600380546109ab90612597565b600260085414156115015760405162461bcd60e51b81526004016107e490612532565b6002600855600e5460ff61010090910416151560011461155a5760405162461bcd60e51b815260206004820152601460248201527313dbde9bda591cce88139bdd0814dd185c9d195960621b60448201526064016107e4565b600d548111156115a45760405162461bcd60e51b815260206004820152601560248201527413dbde9bda591cce88105b5bdd5b9d08131a5b5a5d605a1b60448201526064016107e4565b6115ad816117e5565b506001600855565b6001600160a01b0382163314156115df5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61165684848461195c565b61166284848484611c77565b61167f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611692826001541190565b6116af57604051630a14c4b560e41b815260040160405180910390fd5b60006116b9611d77565b90508051600014156116da5760405180602001604052806000815250611705565b806116e484611d86565b6040516020016116f59291906126ae565b6040516020818303038152906040525b9392505050565b6060601060405160200161172091906126dd565b604051602081830303815290604052905090565b6000546001600160a01b0316331461175e5760405162461bcd60e51b81526004016107e4906125e8565b6001600160a01b0381166117c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e4565b6117cc81611c27565b50565b6000826117dc8584611e83565b14949350505050565b3233146118345760405162461bcd60e51b815260206004820152601760248201527f4f6f7a6f6964733a2053656c66204d696e74204f6e6c7900000000000000000060448201526064016107e4565b600b54600a54611844919061267c565b8161184e60015490565b611858919061257f565b111561189a5760405162461bcd60e51b815260206004820152601160248201527013dbde9bda591cce8814dbdb190813dd5d607a1b60448201526064016107e4565b806009546118a8919061261d565b34146118f65760405162461bcd60e51b815260206004820152601860248201527f4f6f7a6f6964733a20496e636f72726563742056616c7565000000000000000060448201526064016107e4565b6117cc3382611c0d565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061196782611b79565b80519091506000906001600160a01b0316336001600160a01b031614806119955750815161199590336106f0565b806119b05750336119a584610a2e565b6001600160a01b0316145b9050806119d057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a055760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611a2c57604051633a954ecd60e21b815260040160405180910390fd5b611a3c6000848460000151611900565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b426001600160401b031602179055908601808352912054909116611b2f57611ae3816001541190565b15611b2f57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611b98826001541190565b611bb557604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611c03579392505050565b5060001901611bb7565b611066828260405180602001604052806000815250611ef7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611d6b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cbb903390899088908890600401612789565b6020604051808303816000875af1925050508015611cf6575060408051601f3d908101601f19168201909252611cf3918101906127c6565b60015b611d51573d808015611d24576040519150601f19603f3d011682016040523d82523d6000602084013e611d29565b606091505b508051611d49576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d6f565b5060015b949350505050565b6060601080546109ab90612597565b606081611daa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dd45780611dbe81612693565b9150611dcd9050600a83612652565b9150611dae565b6000816001600160401b03811115611dee57611dee6122ab565b6040519080825280601f01601f191660200182016040528015611e18576020820181803683370190505b5090505b8415611d6f57611e2d60018361267c565b9150611e3a600a866127e3565b611e4590603061257f565b60f81b818381518110611e5a57611e5a612666565b60200101906001600160f81b031916908160001a905350611e7c600a86612652565b9450611e1c565b600081815b8451811015611eef576000858281518110611ea557611ea5612666565b60200260200101519050808311611ecb5760008381526020829052604090209250611edc565b600081815260208490526040902092505b5080611ee781612693565b915050611e88565b509392505050565b610afd838383600180546001600160a01b038516611f2757604051622e076360e81b815260040160405180910390fd5b83611f455760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b858110156120435760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561201957506120176000888488611c77565b155b15612037576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611fc2565b50600155611b72565b82805461205890612597565b90600052602060002090601f01602090048101928261207a57600085556120c0565b82601f1061209357805160ff19168380011785556120c0565b828001600101855582156120c0579182015b828111156120c05782518255916020019190600101906120a5565b506110259291505b8082111561102557600081556001016120c8565b6001600160e01b0319811681146117cc57600080fd5b60006020828403121561210457600080fd5b8135611705816120dc565b60008083601f84011261212157600080fd5b5081356001600160401b0381111561213857600080fd5b6020830191508360208260051b850101111561215357600080fd5b9250929050565b60008060006040848603121561216f57600080fd5b8335925060208401356001600160401b0381111561218c57600080fd5b6121988682870161210f565b9497909650939450505050565b60005b838110156121c05781810151838201526020016121a8565b8381111561167f5750506000910152565b600081518084526121e98160208601602086016121a5565b601f01601f19169290920160200192915050565b60208152600061170560208301846121d1565b60006020828403121561222257600080fd5b5035919050565b80356001600160a01b038116811461224057600080fd5b919050565b6000806040838503121561225857600080fd5b61226183612229565b946020939093013593505050565b60008060006060848603121561228457600080fd5b61228d84612229565b925061229b60208501612229565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156122db576122db6122ab565b604051601f8501601f19908116603f01168101908282118183101715612303576123036122ab565b8160405280935085815286868601111561231c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561234857600080fd5b81356001600160401b0381111561235e57600080fd5b8201601f8101841361236f57600080fd5b611d6f848235602084016122c1565b60006020828403121561239057600080fd5b61170582612229565b600080600080604085870312156123af57600080fd5b84356001600160401b03808211156123c657600080fd5b6123d28883890161210f565b909650945060208701359150808211156123eb57600080fd5b506123f88782880161210f565b95989497509550505050565b6020808252825182820181905260009190848201906040850190845b8181101561243c57835183529284019291840191600101612420565b50909695505050505050565b6000806040838503121561245b57600080fd5b61246483612229565b91506020830135801515811461247957600080fd5b809150509250929050565b6000806000806080858703121561249a57600080fd5b6124a385612229565b93506124b160208601612229565b92506040850135915060608501356001600160401b038111156124d357600080fd5b8501601f810187136124e457600080fd5b6124f3878235602084016122c1565b91505092959194509250565b6000806040838503121561251257600080fd5b61251b83612229565b915061252960208401612229565b90509250929050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561259257612592612569565b500190565b600181811c908216806125ab57607f821691505b602082108114156125cc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052600160045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600081600019048311821515161561263757612637612569565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826126615761266161263c565b500490565b634e487b7160e01b600052603260045260246000fd5b60008282101561268e5761268e612569565b500390565b60006000198214156126a7576126a7612569565b5060010190565b600083516126c08184602088016121a5565b8351908301906126d48183602088016121a5565b01949350505050565b600080835481600182811c9150808316806126f957607f831692505b602080841082141561271957634e487b7160e01b86526022600452602486fd5b81801561272d576001811461273e5761276b565b60ff1986168952848901965061276b565b60008a81526020902060005b868110156127635781548b82015290850190830161274a565b505084890196505b505050505050611d6f816718dbdb9d1c9858dd60c21b815260080190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127bc908301846121d1565b9695505050505050565b6000602082840312156127d857600080fd5b8151611705816120dc565b6000826127f2576127f261263c565b50069056fea26469706673582212201cc169afc50614b5d5b79588c5b59b9ddc8939bb24e4fa2fb64d26b89fd15b4e64736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000040c44d0dbaa9e9ab4761907099939902e41181c4106f96d0f767cca721697cb6c4000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f70726572657665616c2e6f6f7a6f6964732e636f6d2f0000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806369e1cac111610139578063a0712d68116100b6578063cb4e83261161007a578063cb4e832614610694578063d5e13d65146106aa578063e8a3d485146106c0578063e985e9c5146106d5578063f2fde38b1461071e578063fe60d12c1461073e57600080fd5b8063a0712d6814610607578063a22cb4651461061a578063b88d4fde1461063a578063b8f929ad1461065a578063c87b56dd1461067457600080fd5b80637cb64759116100fd5780637cb64759146105675780637d9a7a4c146105875780638462151c146105a75780638da5cb5b146105d457806395d89b41146105f257600080fd5b806369e1cac1146104dd5780636c0360eb146104fd57806370a0823114610512578063711b9e9214610532578063715018a61461055257600080fd5b80632eb4a7ab116101d25780634bffad9f116101965780634bffad9f146104265780634eabe20b1461043b5780634f6ccce71461045057806355f804b3146104705780636352211e1461049057806369ddd67d146104b057600080fd5b80632eb4a7ab146103a85780632f745c59146103be5780633ccfd60b146103de57806342842e0e146103e65780634707f44f1461040657600080fd5b80630d39fc81116102195780630d39fc811461031a57806318160ddd1461033e57806320a447941461035357806323b872dd146103725780632a7065ea1461039257600080fd5b806301ffc9a714610256578063061431a81461028b57806306fdde03146102a0578063081812fc146102c2578063095ea7b3146102fa575b600080fd5b34801561026257600080fd5b506102766102713660046120f2565b610754565b60405190151581526020015b60405180910390f35b61029e61029936600461215a565b6107c1565b005b3480156102ac57600080fd5b506102b561099c565b60405161028291906121fd565b3480156102ce57600080fd5b506102e26102dd366004612210565b610a2e565b6040516001600160a01b039091168152602001610282565b34801561030657600080fd5b5061029e610315366004612245565b610a74565b34801561032657600080fd5b5061033060095481565b604051908152602001610282565b34801561034a57600080fd5b50600154610330565b34801561035f57600080fd5b50600e5461027690610100900460ff1681565b34801561037e57600080fd5b5061029e61038d36600461226f565b610b02565b34801561039e57600080fd5b50610330600a5481565b3480156103b457600080fd5b50610330600f5481565b3480156103ca57600080fd5b506103306103d9366004612245565b610b0d565b61029e610bec565b3480156103f257600080fd5b5061029e61040136600461226f565b610f2f565b34801561041257600080fd5b50610330610421366004612245565b610f4a565b34801561043257600080fd5b5061029e610f76565b34801561044757600080fd5b5061029e610fbd565b34801561045c57600080fd5b5061033061046b366004612210565b610ffb565b34801561047c57600080fd5b5061029e61048b366004612336565b611029565b34801561049c57600080fd5b506102e26104ab366004612210565b61106a565b3480156104bc57600080fd5b506103306104cb36600461237e565b60116020526000908152604090205481565b3480156104e957600080fd5b5061029e6104f8366004612399565b61107c565b34801561050957600080fd5b506102b5611263565b34801561051e57600080fd5b5061033061052d36600461237e565b6112f1565b34801561053e57600080fd5b5061029e61054d366004612210565b61133f565b34801561055e57600080fd5b5061029e61136e565b34801561057357600080fd5b5061029e610582366004612210565b6113a4565b34801561059357600080fd5b5061029e6105a2366004612210565b6113d3565b3480156105b357600080fd5b506105c76105c236600461237e565b611402565b6040516102829190612404565b3480156105e057600080fd5b506000546001600160a01b03166102e2565b3480156105fe57600080fd5b506102b56114cf565b61029e610615366004612210565b6114de565b34801561062657600080fd5b5061029e610635366004612448565b6115b5565b34801561064657600080fd5b5061029e610655366004612484565b61164b565b34801561066657600080fd5b50600e546102769060ff1681565b34801561068057600080fd5b506102b561068f366004612210565b611685565b3480156106a057600080fd5b50610330600d5481565b3480156106b657600080fd5b50610330600c5481565b3480156106cc57600080fd5b506102b561170c565b3480156106e157600080fd5b506102766106f03660046124ff565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561072a57600080fd5b5061029e61073936600461237e565b611734565b34801561074a57600080fd5b50610330600b5481565b60006001600160e01b031982166380ac58cd60e01b148061078557506001600160e01b03198216635b5e139f60e01b145b806107a057506001600160e01b0319821663780e9d6360e01b145b806107bb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600260085414156107ed5760405162461bcd60e51b81526004016107e490612532565b60405180910390fd5b6002600855600e5460ff1615156001146108405760405162461bcd60e51b815260206004820152601460248201527313dbde9bda591cce88139bdd0814dd185c9d195960621b60448201526064016107e4565b6108b582828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050604051602081830303815290604052805190602001206117cf565b6109015760405162461bcd60e51b815260206004820152601860248201527f4f6f7a6f6964733a204e6f742057686974656c6973746564000000000000000060448201526064016107e4565b600c543360009081526011602052604090205461091f90859061257f565b11156109655760405162461bcd60e51b815260206004820152601560248201527413dbde9bda591cce88105b5bdd5b9d08131a5b5a5d605a1b60448201526064016107e4565b61096e836117e5565b336000908152601160205260408120805485929061098d90849061257f565b90915550506001600855505050565b6060600280546109ab90612597565b80601f01602080910402602001604051908101604052809291908181526020018280546109d790612597565b8015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b6000610a3b826001541190565b610a58576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a7f8261106a565b9050806001600160a01b0316836001600160a01b03161415610ab45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ad45750610ad281336106f0565b155b15610af2576040516367d9dca160e11b815260040160405180910390fd5b610afd838383611900565b505050565b610afd83838361195c565b6000610b18836112f1565b8210610b37576040516306ed618760e11b815260040160405180910390fd5b6000610b4260015490565b905060008060005b83811015610bda576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b9c57805192505b876001600160a01b0316836001600160a01b03161415610bd15786841415610bca575093506107bb92505050565b6001909301925b50600101610b4a565b50610be36125d2565b50505092915050565b6000546001600160a01b03163314610c165760405162461bcd60e51b81526004016107e4906125e8565b47735bed62a0e6a0e65ec2e4ac6cf9972653ae8f4725738cb9d8e1beb509fc5f92d1e3167e272d6304f93473201d3b09ab5a24fb311cb91d026eada31359791e73f7279b51f4260c6003dc3cf615364aaf132a79346000846064610c7b88601b61261d565b610c859190612652565b604051600081818185875af1925050503d8060008114610cc1576040519150601f19603f3d011682016040523d82523d6000602084013e610cc6565b606091505b5050905080610d175760405162461bcd60e51b815260206004820152601a60248201527f4f6f7a6f6964733a205472616e736665722034204661696c656400000000000060448201526064016107e4565b60006001600160a01b0385166064610d3089601b61261d565b610d3a9190612652565b604051600081818185875af1925050503d8060008114610d76576040519150601f19603f3d011682016040523d82523d6000602084013e610d7b565b606091505b5050905080610dcc5760405162461bcd60e51b815260206004820152601a60248201527f4f6f7a6f6964733a205472616e736665722033204661696c656400000000000060448201526064016107e4565b60006001600160a01b0385166064610de58a601b61261d565b610def9190612652565b604051600081818185875af1925050503d8060008114610e2b576040519150601f19603f3d011682016040523d82523d6000602084013e610e30565b606091505b5050905080610e815760405162461bcd60e51b815260206004820152601a60248201527f4f6f7a6f6964733a205472616e736665722032204661696c656400000000000060448201526064016107e4565b6000846001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ece576040519150601f19603f3d011682016040523d82523d6000602084013e610ed3565b606091505b5050905080610f245760405162461bcd60e51b815260206004820152601a60248201527f4f6f7a6f6964733a205472616e736665722031204661696c656400000000000060448201526064016107e4565b505050505050505050565b610afd8383836040518060200160405280600081525061164b565b6000610f5583611402565b8281518110610f6657610f66612666565b6020026020010151905092915050565b6000546001600160a01b03163314610fa05760405162461bcd60e51b81526004016107e4906125e8565b600e805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314610fe75760405162461bcd60e51b81526004016107e4906125e8565b600e805460ff19811660ff90911615179055565b600061100660015490565b8210611025576040516329c8c00760e21b815260040160405180910390fd5b5090565b6000546001600160a01b031633146110535760405162461bcd60e51b81526004016107e4906125e8565b805161106690601090602084019061204c565b5050565b600061107582611b79565b5192915050565b6000546001600160a01b031633146110a65760405162461bcd60e51b81526004016107e4906125e8565b600260085414156110c95760405162461bcd60e51b81526004016107e490612532565b600260085582811461111d5760405162461bcd60e51b815260206004820152601860248201527f4f6f7a6f6964733a204c656e677468204d69736d61746368000000000000000060448201526064016107e4565b60005b8381101561125757600a5483838381811061113d5761113d612666565b9050602002013561114d60015490565b611157919061257f565b11156111995760405162461bcd60e51b815260206004820152601160248201527013dbde9bda591cce8814dbdb190813dd5d607a1b60448201526064016107e4565b6111e18585838181106111ae576111ae612666565b90506020020160208101906111c3919061237e565b8484848181106111d5576111d5612666565b90506020020135611c0d565b600b5415611245578282828181106111fb576111fb612666565b90506020020135600b541061123f5782828281811061121c5761121c612666565b90506020020135600b6000828254611234919061267c565b909155506112459050565b6000600b555b8061124f81612693565b915050611120565b50506001600855505050565b6010805461127090612597565b80601f016020809104026020016040519081016040528092919081815260200182805461129c90612597565b80156112e95780601f106112be576101008083540402835291602001916112e9565b820191906000526020600020905b8154815290600101906020018083116112cc57829003601f168201915b505050505081565b60006001600160a01b03821661131a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113695760405162461bcd60e51b81526004016107e4906125e8565b600a55565b6000546001600160a01b031633146113985760405162461bcd60e51b81526004016107e4906125e8565b6113a26000611c27565b565b6000546001600160a01b031633146113ce5760405162461bcd60e51b81526004016107e4906125e8565b600f55565b6000546001600160a01b031633146113fd5760405162461bcd60e51b81526004016107e4906125e8565b600955565b6060600061140f836112f1565b90506000816001600160401b0381111561142b5761142b6122ab565b604051908082528060200260200182016040528015611454578160200160208202803683370190505b5090506000805b6001548110156114c557856001600160a01b03166114788261106a565b6001600160a01b031614156114b3578083838151811061149a5761149a612666565b6020908102919091010152816114af81612693565b9250505b806114bd81612693565b91505061145b565b5090949350505050565b6060600380546109ab90612597565b600260085414156115015760405162461bcd60e51b81526004016107e490612532565b6002600855600e5460ff61010090910416151560011461155a5760405162461bcd60e51b815260206004820152601460248201527313dbde9bda591cce88139bdd0814dd185c9d195960621b60448201526064016107e4565b600d548111156115a45760405162461bcd60e51b815260206004820152601560248201527413dbde9bda591cce88105b5bdd5b9d08131a5b5a5d605a1b60448201526064016107e4565b6115ad816117e5565b506001600855565b6001600160a01b0382163314156115df5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61165684848461195c565b61166284848484611c77565b61167f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611692826001541190565b6116af57604051630a14c4b560e41b815260040160405180910390fd5b60006116b9611d77565b90508051600014156116da5760405180602001604052806000815250611705565b806116e484611d86565b6040516020016116f59291906126ae565b6040516020818303038152906040525b9392505050565b6060601060405160200161172091906126dd565b604051602081830303815290604052905090565b6000546001600160a01b0316331461175e5760405162461bcd60e51b81526004016107e4906125e8565b6001600160a01b0381166117c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e4565b6117cc81611c27565b50565b6000826117dc8584611e83565b14949350505050565b3233146118345760405162461bcd60e51b815260206004820152601760248201527f4f6f7a6f6964733a2053656c66204d696e74204f6e6c7900000000000000000060448201526064016107e4565b600b54600a54611844919061267c565b8161184e60015490565b611858919061257f565b111561189a5760405162461bcd60e51b815260206004820152601160248201527013dbde9bda591cce8814dbdb190813dd5d607a1b60448201526064016107e4565b806009546118a8919061261d565b34146118f65760405162461bcd60e51b815260206004820152601860248201527f4f6f7a6f6964733a20496e636f72726563742056616c7565000000000000000060448201526064016107e4565b6117cc3382611c0d565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061196782611b79565b80519091506000906001600160a01b0316336001600160a01b031614806119955750815161199590336106f0565b806119b05750336119a584610a2e565b6001600160a01b0316145b9050806119d057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a055760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611a2c57604051633a954ecd60e21b815260040160405180910390fd5b611a3c6000848460000151611900565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b426001600160401b031602179055908601808352912054909116611b2f57611ae3816001541190565b15611b2f57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611b98826001541190565b611bb557604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611c03579392505050565b5060001901611bb7565b611066828260405180602001604052806000815250611ef7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611d6b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cbb903390899088908890600401612789565b6020604051808303816000875af1925050508015611cf6575060408051601f3d908101601f19168201909252611cf3918101906127c6565b60015b611d51573d808015611d24576040519150601f19603f3d011682016040523d82523d6000602084013e611d29565b606091505b508051611d49576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d6f565b5060015b949350505050565b6060601080546109ab90612597565b606081611daa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dd45780611dbe81612693565b9150611dcd9050600a83612652565b9150611dae565b6000816001600160401b03811115611dee57611dee6122ab565b6040519080825280601f01601f191660200182016040528015611e18576020820181803683370190505b5090505b8415611d6f57611e2d60018361267c565b9150611e3a600a866127e3565b611e4590603061257f565b60f81b818381518110611e5a57611e5a612666565b60200101906001600160f81b031916908160001a905350611e7c600a86612652565b9450611e1c565b600081815b8451811015611eef576000858281518110611ea557611ea5612666565b60200260200101519050808311611ecb5760008381526020829052604090209250611edc565b600081815260208490526040902092505b5080611ee781612693565b915050611e88565b509392505050565b610afd838383600180546001600160a01b038516611f2757604051622e076360e81b815260040160405180910390fd5b83611f455760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b858110156120435760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561201957506120176000888488611c77565b155b15612037576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611fc2565b50600155611b72565b82805461205890612597565b90600052602060002090601f01602090048101928261207a57600085556120c0565b82601f1061209357805160ff19168380011785556120c0565b828001600101855582156120c0579182015b828111156120c05782518255916020019190600101906120a5565b506110259291505b8082111561102557600081556001016120c8565b6001600160e01b0319811681146117cc57600080fd5b60006020828403121561210457600080fd5b8135611705816120dc565b60008083601f84011261212157600080fd5b5081356001600160401b0381111561213857600080fd5b6020830191508360208260051b850101111561215357600080fd5b9250929050565b60008060006040848603121561216f57600080fd5b8335925060208401356001600160401b0381111561218c57600080fd5b6121988682870161210f565b9497909650939450505050565b60005b838110156121c05781810151838201526020016121a8565b8381111561167f5750506000910152565b600081518084526121e98160208601602086016121a5565b601f01601f19169290920160200192915050565b60208152600061170560208301846121d1565b60006020828403121561222257600080fd5b5035919050565b80356001600160a01b038116811461224057600080fd5b919050565b6000806040838503121561225857600080fd5b61226183612229565b946020939093013593505050565b60008060006060848603121561228457600080fd5b61228d84612229565b925061229b60208501612229565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156122db576122db6122ab565b604051601f8501601f19908116603f01168101908282118183101715612303576123036122ab565b8160405280935085815286868601111561231c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561234857600080fd5b81356001600160401b0381111561235e57600080fd5b8201601f8101841361236f57600080fd5b611d6f848235602084016122c1565b60006020828403121561239057600080fd5b61170582612229565b600080600080604085870312156123af57600080fd5b84356001600160401b03808211156123c657600080fd5b6123d28883890161210f565b909650945060208701359150808211156123eb57600080fd5b506123f88782880161210f565b95989497509550505050565b6020808252825182820181905260009190848201906040850190845b8181101561243c57835183529284019291840191600101612420565b50909695505050505050565b6000806040838503121561245b57600080fd5b61246483612229565b91506020830135801515811461247957600080fd5b809150509250929050565b6000806000806080858703121561249a57600080fd5b6124a385612229565b93506124b160208601612229565b92506040850135915060608501356001600160401b038111156124d357600080fd5b8501601f810187136124e457600080fd5b6124f3878235602084016122c1565b91505092959194509250565b6000806040838503121561251257600080fd5b61251b83612229565b915061252960208401612229565b90509250929050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561259257612592612569565b500190565b600181811c908216806125ab57607f821691505b602082108114156125cc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052600160045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600081600019048311821515161561263757612637612569565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826126615761266161263c565b500490565b634e487b7160e01b600052603260045260246000fd5b60008282101561268e5761268e612569565b500390565b60006000198214156126a7576126a7612569565b5060010190565b600083516126c08184602088016121a5565b8351908301906126d48183602088016121a5565b01949350505050565b600080835481600182811c9150808316806126f957607f831692505b602080841082141561271957634e487b7160e01b86526022600452602486fd5b81801561272d576001811461273e5761276b565b60ff1986168952848901965061276b565b60008a81526020902060005b868110156127635781548b82015290850190830161274a565b505084890196505b505050505050611d6f816718dbdb9d1c9858dd60c21b815260080190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127bc908301846121d1565b9695505050505050565b6000602082840312156127d857600080fd5b8151611705816120dc565b6000826127f2576127f261263c565b50069056fea26469706673582212201cc169afc50614b5d5b79588c5b59b9ddc8939bb24e4fa2fb64d26b89fd15b4e64736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000040c44d0dbaa9e9ab4761907099939902e41181c4106f96d0f767cca721697cb6c4000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f70726572657665616c2e6f6f7a6f6964732e636f6d2f0000

-----Decoded View---------------
Arg [0] : _initURI (string): https://prereveal.oozoids.com/
Arg [1] : _merkleRoot (bytes32): 0xc44d0dbaa9e9ab4761907099939902e41181c4106f96d0f767cca721697cb6c4

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : c44d0dbaa9e9ab4761907099939902e41181c4106f96d0f767cca721697cb6c4
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [3] : 68747470733a2f2f70726572657665616c2e6f6f7a6f6964732e636f6d2f0000


Deployed Bytecode Sourcemap

45808:5098:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33083:372;;;;;;;;;;-1:-1:-1;33083:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33083:372:0;;;;;;;;46677:649;;;;;;:::i;:::-;;:::i;:::-;;34842:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36319:204::-;;;;;;;;;;-1:-1:-1;36319:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2574:32:1;;;2556:51;;2544:2;2529:18;36319:204:0;2410:203:1;35908:345:0;;;;;;;;;;-1:-1:-1;35908:345:0;;;;;:::i;:::-;;:::i;45869:36::-;;;;;;;;;;;;;;;;;;;3201:25:1;;;3189:2;3174:18;45869:36:0;3055:177:1;31350:101:0;;;;;;;;;;-1:-1:-1;31430:13:0;;31350:101;;46102:30;;;;;;;;;;-1:-1:-1;46102:30:0;;;;;;;;;;;37176:170;;;;;;;;;;-1:-1:-1;37176:170:0;;;;;:::i;:::-;;:::i;45914:30::-;;;;;;;;;;;;;;;;46141:25;;;;;;;;;;;;;;;;32004:1007;;;;;;;;;;-1:-1:-1;32004:1007:0;;;;;:::i;:::-;;:::i;49092:924::-;;;:::i;37417:185::-;;;;;;;;;;-1:-1:-1;37417:185:0;;;;;:::i;:::-;;:::i;48403:179::-;;;;;;;;;;-1:-1:-1;48403:179:0;;;;;:::i;:::-;;:::i;50129:88::-;;;;;;;;;;;;;:::i;50024:97::-;;;;;;;;;;;;;:::i;31528:176::-;;;;;;;;;;-1:-1:-1;31528:176:0;;;;;:::i;:::-;;:::i;50225:104::-;;;;;;;;;;-1:-1:-1;50225:104:0;;;;;:::i;:::-;;:::i;34651:124::-;;;;;;;;;;-1:-1:-1;34651:124:0;;;;;:::i;:::-;;:::i;46210:53::-;;;;;;;;;;-1:-1:-1;46210:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;47709:686;;;;;;;;;;-1:-1:-1;47709:686:0;;;;;:::i;:::-;;:::i;46175:26::-;;;;;;;;;;;;;:::i;33519:206::-;;;;;;;;;;-1:-1:-1;33519:206:0;;;;;:::i;:::-;;:::i;50441:96::-;;;;;;;;;;-1:-1:-1;50441:96:0;;;;;:::i;:::-;;:::i;9878:103::-;;;;;;;;;;;;;:::i;50545:104::-;;;;;;;;;;-1:-1:-1;50545:104:0;;;;;:::i;:::-;;:::i;50337:96::-;;;;;;;;;;-1:-1:-1;50337:96:0;;;;;:::i;:::-;;:::i;48590:494::-;;;;;;;;;;-1:-1:-1;48590:494:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9227:87::-;;;;;;;;;;-1:-1:-1;9273:7:0;9300:6;-1:-1:-1;;;;;9300:6:0;9227:87;;35011:104;;;;;;;;;;;;;:::i;46450:219::-;;;;;;:::i;:::-;;:::i;36595:279::-;;;;;;;;;;-1:-1:-1;36595:279:0;;;;;:::i;:::-;;:::i;37673:308::-;;;;;;;;;;-1:-1:-1;37673:308:0;;;;;:::i;:::-;;:::i;46062:33::-;;;;;;;;;;-1:-1:-1;46062:33:0;;;;;;;;35186:318;;;;;;;;;;-1:-1:-1;35186:318:0;;;;;:::i;:::-;;:::i;46025:28::-;;;;;;;;;;;;;;;;45987:31;;;;;;;;;;;;;;;;50773:130;;;;;;;;;;;;;:::i;36945:164::-;;;;;;;;;;-1:-1:-1;36945:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37066:25:0;;;37042:4;37066:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36945:164;10136:201;;;;;;;;;;-1:-1:-1;10136:201:0;;;;;:::i;:::-;;:::i;45951:29::-;;;;;;;;;;;;;;;;33083:372;33185:4;-1:-1:-1;;;;;;33222:40:0;;-1:-1:-1;;;33222:40:0;;:105;;-1:-1:-1;;;;;;;33279:48:0;;-1:-1:-1;;;33279:48:0;33222:105;:172;;;-1:-1:-1;;;;;;;33344:50:0;;-1:-1:-1;;;33344:50:0;33222:172;:225;;;-1:-1:-1;;;;;;;;;;22120:40:0;;;33411:36;33202:245;33083:372;-1:-1:-1;;33083:372:0:o;46677:649::-;4201:1;4799:7;;:19;;4791:63;;;;-1:-1:-1;;;4791:63:0;;;;;;;:::i;:::-;;;;;;;;;4201:1;4932:7;:18;46822:13:::1;::::0;::::1;;:21;;:13:::0;:21:::1;46814:54;;;::::0;-1:-1:-1;;;46814:54:0;;8619:2:1;46814:54:0::1;::::0;::::1;8601:21:1::0;8658:2;8638:18;;;8631:30;-1:-1:-1;;;8677:18:1;;;8670:50;8737:18;;46814:54:0::1;8417:344:1::0;46814:54:0::1;46901:146;46938:5;;46901:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;46962:10:0::1;::::0;47001:30:::1;::::0;-1:-1:-1;;8031:10:0;8915:2:1;8911:15;8907:53;47001:30:0::1;::::0;::::1;8895:66:1::0;46962:10:0;;-1:-1:-1;8977:12:1;;;-1:-1:-1;47001:30:0::1;;;;;;;;;;;;46991:41;;;;;;46901:18;:146::i;:::-;46879:220;;;::::0;-1:-1:-1;;;46879:220:0;;9202:2:1;46879:220:0::1;::::0;::::1;9184:21:1::0;9241:2;9221:18;;;9214:30;9280:26;9260:18;;;9253:54;9324:18;;46879:220:0::1;9000:348:1::0;46879:220:0::1;47178:12;::::0;8031:10;47132:32:::1;::::0;;;:18:::1;:32;::::0;;;;;:42:::1;::::0;47167:7;;47132:42:::1;:::i;:::-;:58;;47110:129;;;::::0;-1:-1:-1;;;47110:129:0;;9820:2:1;47110:129:0::1;::::0;::::1;9802:21:1::0;9859:2;9839:18;;;9832:30;-1:-1:-1;;;9878:18:1;;;9871:51;9939:18;;47110:129:0::1;9618:345:1::0;47110:129:0::1;47250:14;47256:7;47250:5;:14::i;:::-;8031:10:::0;47275:32:::1;::::0;;;:18:::1;:32;::::0;;;;:43;;47311:7;;47275:32;:43:::1;::::0;47311:7;;47275:43:::1;:::i;:::-;::::0;;;-1:-1:-1;;4157:1:0;5111:7;:22;-1:-1:-1;;;46677:649:0:o;34842:100::-;34896:13;34929:5;34922:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34842:100;:::o;36319:204::-;36387:7;36412:16;36420:7;38327:13;;-1:-1:-1;38317:23:0;38236:112;36412:16;36407:64;;36437:34;;-1:-1:-1;;;36437:34:0;;;;;;;;;;;36407:64;-1:-1:-1;36491:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36491:24:0;;36319:204::o;35908:345::-;35981:13;35997:24;36013:7;35997:15;:24::i;:::-;35981:40;;36042:5;-1:-1:-1;;;;;36036:11:0;:2;-1:-1:-1;;;;;36036:11:0;;36032:48;;;36056:24;;-1:-1:-1;;;36056:24:0;;;;;;;;;;;36032:48;8031:10;-1:-1:-1;;;;;36097:21:0;;;;;;:63;;-1:-1:-1;36123:37:0;36140:5;8031:10;36945:164;:::i;36123:37::-;36122:38;36097:63;36093:111;;;36169:35;;-1:-1:-1;;;36169:35:0;;;;;;;;;;;36093:111;36217:28;36226:2;36230:7;36239:5;36217:8;:28::i;:::-;35970:283;35908:345;;:::o;37176:170::-;37310:28;37320:4;37326:2;37330:7;37310:9;:28::i;32004:1007::-;32093:7;32126:16;32136:5;32126:9;:16::i;:::-;32117:5;:25;32113:61;;32151:23;;-1:-1:-1;;;32151:23:0;;;;;;;;;;;32113:61;32185:22;32210:13;31430;;;31350:101;32210:13;32185:38;;32234:19;32264:25;32453:9;32448:466;32468:14;32464:1;:18;32448:466;;;32508:31;32542:14;;;:11;:14;;;;;;;;;32508:48;;;;;;;;;-1:-1:-1;;;;;32508:48:0;;;;;-1:-1:-1;;;32508:48:0;;;-1:-1:-1;;;;;32508:48:0;;;;;;;;32579:28;32575:111;;32652:14;;;-1:-1:-1;32575:111:0;32729:5;-1:-1:-1;;;;;32708:26:0;:17;-1:-1:-1;;;;;32708:26:0;;32704:195;;;32778:5;32763:11;:20;32759:85;;;-1:-1:-1;32819:1:0;-1:-1:-1;32812:8:0;;-1:-1:-1;;;32812:8:0;32759:85;32866:13;;;;;32704:195;-1:-1:-1;32484:3:0;;32448:466;;;-1:-1:-1;32990:13:0;;:::i;:::-;32102:909;;;32004:1007;;;;:::o;49092:924::-;9273:7;9300:6;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;49167:21:::1;49215:42;49284;49353;49422;49148:16;49215:42:::0;49538:3:::1;49521:13;49167:21:::0;49532:2:::1;49521:13;:::i;:::-;49520:21;;;;:::i;:::-;49493:53;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49477:69;;;49565:4;49557:43;;;::::0;-1:-1:-1;;;49557:43:0;;11688:2:1;49557:43:0::1;::::0;::::1;11670:21:1::0;11727:2;11707:18;;;11700:30;11766:28;11746:18;;;11739:56;11812:18;;49557:43:0::1;11486:350:1::0;49557:43:0::1;49614:9;-1:-1:-1::0;;;;;49629:19:0;::::1;49674:3;49657:13;:8:::0;49668:2:::1;49657:13;:::i;:::-;49656:21;;;;:::i;:::-;49629:53;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49613:69;;;49701:4;49693:43;;;::::0;-1:-1:-1;;;49693:43:0;;12043:2:1;49693:43:0::1;::::0;::::1;12025:21:1::0;12082:2;12062:18;;;12055:30;12121:28;12101:18;;;12094:56;12167:18;;49693:43:0::1;11841:350:1::0;49693:43:0::1;49750:9;-1:-1:-1::0;;;;;49765:19:0;::::1;49810:3;49793:13;:8:::0;49804:2:::1;49793:13;:::i;:::-;49792:21;;;;:::i;:::-;49765:53;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49749:69;;;49837:4;49829:43;;;::::0;-1:-1:-1;;;49829:43:0;;12398:2:1;49829:43:0::1;::::0;::::1;12380:21:1::0;12437:2;12417:18;;;12410:30;12476:28;12456:18;;;12449:56;12522:18;;49829:43:0::1;12196:350:1::0;49829:43:0::1;49886:9;49909:5;-1:-1:-1::0;;;;;49901:19:0::1;49928:21;49901:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49885:69;;;49973:4;49965:43;;;::::0;-1:-1:-1;;;49965:43:0;;12753:2:1;49965:43:0::1;::::0;::::1;12735:21:1::0;12792:2;12772:18;;;12765:30;12831:28;12811:18;;;12804:56;12877:18;;49965:43:0::1;12551:350:1::0;49965:43:0::1;49137:879;;;;;;;;;49092:924::o:0;37417:185::-;37555:39;37572:4;37578:2;37582:7;37555:39;;;;;;;;;;;;:16;:39::i;48403:179::-;48513:7;48545:21;48559:6;48545:13;:21::i;:::-;48567:6;48545:29;;;;;;;;:::i;:::-;;;;;;;48538:36;;48403:179;;;;:::o;50129:88::-;9273:7;9300:6;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;50199:10:::1;::::0;;-1:-1:-1;;50185:24:0;::::1;50199:10;::::0;;;::::1;;;50198:11;50185:24:::0;;::::1;;::::0;;50129:88::o;50024:97::-;9273:7;9300:6;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;50100:13:::1;::::0;;-1:-1:-1;;50083:30:0;::::1;50100:13;::::0;;::::1;50099:14;50083:30;::::0;;50024:97::o;31528:176::-;31595:7;31628:13;31430;;;31350:101;31628:13;31619:5;:22;31615:58;;31650:23;;-1:-1:-1;;;31650:23:0;;;;;;;;;;;31615:58;-1:-1:-1;31691:5:0;31528:176::o;50225:104::-;9273:7;9300:6;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;50300:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50225:104:::0;:::o;34651:124::-;34715:7;34742:20;34754:7;34742:11;:20::i;:::-;:25;;34651:124;-1:-1:-1;;34651:124:0:o;47709:686::-;9273:7;9300:6;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;4201:1:::1;4799:7;;:19;;4791:63;;;;-1:-1:-1::0;;;4791:63:0::1;;;;;;;:::i;:::-;4201:1;4932:7;:18:::0;47863:30;;::::2;47855:67;;;::::0;-1:-1:-1;;;47855:67:0;;13240:2:1;47855:67:0::2;::::0;::::2;13222:21:1::0;13279:2;13259:18;;;13252:30;13318:26;13298:18;;;13291:54;13362:18;;47855:67:0::2;13038:348:1::0;47855:67:0::2;47938:9;47933:455;47953:15:::0;;::::2;47933:455;;;48047:8;;48032;;48041:1;48032:11;;;;;;;:::i;:::-;;;;;;;48016:13;31430::::0;;;31350:101;48016:13:::2;:27;;;;:::i;:::-;:39;;47990:118;;;::::0;-1:-1:-1;;;47990:118:0;;13593:2:1;47990:118:0::2;::::0;::::2;13575:21:1::0;13632:2;13612:18;;;13605:30;-1:-1:-1;;;13651:18:1;;;13644:47;13708:18;;47990:118:0::2;13391:341:1::0;47990:118:0::2;48123:31;48133:4;;48138:1;48133:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;48142:8;;48151:1;48142:11;;;;;;;:::i;:::-;;;;;;;48123:9;:31::i;:::-;48173:8;::::0;:12;48169:208:::2;;48222:8;;48231:1;48222:11;;;;;;;:::i;:::-;;;;;;;48210:8;;:23;48206:156;;48270:8;;48279:1;48270:11;;;;;;;:::i;:::-;;;;;;;48258:8;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;48206:156:0::2;::::0;-1:-1:-1;48206:156:0::2;;48341:1;48330:8;:12:::0;48206:156:::2;47970:3:::0;::::2;::::0;::::2;:::i;:::-;;;;47933:455;;;-1:-1:-1::0;;4157:1:0::1;5111:7;:22:::0;-1:-1:-1;;;47709:686:0:o;46175:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33519:206::-;33583:7;-1:-1:-1;;;;;33607:19:0;;33603:60;;33635:28;;-1:-1:-1;;;33635:28:0;;;;;;;;;;;33603:60;-1:-1:-1;;;;;;33689:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33689:27:0;;33519:206::o;50441:96::-;9273:7;9300:6;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;50509:8:::1;:20:::0;50441:96::o;9878:103::-;9273:7;9300:6;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;9943:30:::1;9970:1;9943:18;:30::i;:::-;9878:103::o:0;50545:104::-;9273:7;9300:6;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;50617:10:::1;:24:::0;50545:104::o;50337:96::-;9273:7;9300:6;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;50405:8:::1;:20:::0;50337:96::o;48590:494::-;48677:16;48711:19;48733:17;48743:6;48733:9;:17::i;:::-;48711:39;;48761:26;48804:11;-1:-1:-1;;;;;48790:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48790:26:0;;48761:55;;48827:19;48866:9;48861:189;31430:13;;48881:1;:17;48861:189;;;48938:6;-1:-1:-1;;;;;48924:20:0;:10;48932:1;48924:7;:10::i;:::-;-1:-1:-1;;;;;48924:20:0;;48920:119;;;48990:1;48965:9;48975:11;48965:22;;;;;;;;:::i;:::-;;;;;;;;;;:26;49010:13;;;;:::i;:::-;;;;48920:119;48900:3;;;;:::i;:::-;;;;48861:189;;;-1:-1:-1;49067:9:0;;48590:494;-1:-1:-1;;;;48590:494:0:o;35011:104::-;35067:13;35100:7;35093:14;;;;;:::i;46450:219::-;4201:1;4799:7;;:19;;4791:63;;;;-1:-1:-1;;;4791:63:0;;;;;;;:::i;:::-;4201:1;4932:7;:18;46528:10:::1;::::0;::::1;;::::0;;::::1;;:18;;:10;:18;46520:51;;;::::0;-1:-1:-1;;;46520:51:0;;8619:2:1;46520:51:0::1;::::0;::::1;8601:21:1::0;8658:2;8638:18;;;8631:30;-1:-1:-1;;;8677:18:1;;;8670:50;8737:18;;46520:51:0::1;8417:344:1::0;46520:51:0::1;46601:9;;46590:7;:20;;46582:54;;;::::0;-1:-1:-1;;;46582:54:0;;9820:2:1;46582:54:0::1;::::0;::::1;9802:21:1::0;9859:2;9839:18;;;9832:30;-1:-1:-1;;;9878:18:1;;;9871:51;9939:18;;46582:54:0::1;9618:345:1::0;46582:54:0::1;46647:14;46653:7;46647:5;:14::i;:::-;-1:-1:-1::0;4157:1:0;5111:7;:22;46450:219::o;36595:279::-;-1:-1:-1;;;;;36686:24:0;;8031:10;36686:24;36682:54;;;36719:17;;-1:-1:-1;;;36719:17:0;;;;;;;;;;;36682:54;8031:10;36749:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36749:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36749:53:0;;;;;;;;;;36818:48;;540:41:1;;;36749:42:0;;8031:10;36818:48;;513:18:1;36818:48:0;;;;;;;36595:279;;:::o;37673:308::-;37832:28;37842:4;37848:2;37852:7;37832:9;:28::i;:::-;37876:48;37899:4;37905:2;37909:7;37918:5;37876:22;:48::i;:::-;37871:102;;37933:40;;-1:-1:-1;;;37933:40:0;;;;;;;;;;;37871:102;37673:308;;;;:::o;35186:318::-;35259:13;35290:16;35298:7;38327:13;;-1:-1:-1;38317:23:0;38236:112;35290:16;35285:59;;35315:29;;-1:-1:-1;;;35315:29:0;;;;;;;;;;;35285:59;35357:21;35381:10;:8;:10::i;:::-;35357:34;;35415:7;35409:21;35434:1;35409:26;;:87;;;;;;;;;;;;;;;;;35462:7;35471:18;:7;:16;:18::i;:::-;35445:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35409:87;35402:94;35186:318;-1:-1:-1;;;35186:318:0:o;50773:130::-;50817:13;50874:7;50857:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;50843:52;;50773:130;:::o;10136:201::-;9273:7;9300:6;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10225:22:0;::::1;10217:73;;;::::0;-1:-1:-1;;;10217:73:0;;16172:2:1;10217:73:0::1;::::0;::::1;16154:21:1::0;16211:2;16191:18;;;16184:30;16250:34;16230:18;;;16223:62;-1:-1:-1;;;16301:18:1;;;16294:36;16347:19;;10217:73:0::1;15970:402:1::0;10217:73:0::1;10301:28;10320:8;10301:18;:28::i;:::-;10136:201:::0;:::o;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;;923:190;-1:-1:-1;;;;923:190:0:o;47334:367::-;47394:9;47407:10;47394:23;47386:59;;;;-1:-1:-1;;;47386:59:0;;16579:2:1;47386:59:0;;;16561:21:1;16618:2;16598:18;;;16591:30;16657:25;16637:18;;;16630:53;16700:18;;47386:59:0;16377:347:1;47386:59:0;47517:8;;47506;;:19;;;;:::i;:::-;47494:7;47478:13;31430;;;31350:101;47478:13;:23;;;;:::i;:::-;:48;;47456:115;;;;-1:-1:-1;;;47456:115:0;;13593:2:1;47456:115:0;;;13575:21:1;13632:2;13612:18;;;13605:30;-1:-1:-1;;;13651:18:1;;;13644:47;13708:18;;47456:115:0;13391:341:1;47456:115:0;47614:7;47603:8;;:18;;;;:::i;:::-;47590:9;:31;47582:68;;;;-1:-1:-1;;;47582:68:0;;16931:2:1;47582:68:0;;;16913:21:1;16970:2;16950:18;;;16943:30;17009:26;16989:18;;;16982:54;17053:18;;47582:68:0;16729:348:1;47582:68:0;47661:32;8031:10;47685:7;47661:9;:32::i;42999:196::-;43114:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43114:29:0;-1:-1:-1;;;;;43114:29:0;;;;;;;;;43159:28;;43114:24;;43159:28;;;;;;;42999:196;;;:::o;40919:1962::-;41034:35;41072:20;41084:7;41072:11;:20::i;:::-;41147:18;;41034:58;;-1:-1:-1;41105:22:0;;-1:-1:-1;;;;;41131:34:0;8031:10;-1:-1:-1;;;;;41131:34:0;;:101;;;-1:-1:-1;41199:18:0;;41182:50;;8031:10;36945:164;:::i;41182:50::-;41131:154;;;-1:-1:-1;8031:10:0;41249:20;41261:7;41249:11;:20::i;:::-;-1:-1:-1;;;;;41249:36:0;;41131:154;41105:181;;41304:17;41299:66;;41330:35;;-1:-1:-1;;;41330:35:0;;;;;;;;;;;41299:66;41402:4;-1:-1:-1;;;;;41380:26:0;:13;:18;;;-1:-1:-1;;;;;41380:26:0;;41376:67;;41415:28;;-1:-1:-1;;;41415:28:0;;;;;;;;;;;41376:67;-1:-1:-1;;;;;41458:16:0;;41454:52;;41483:23;;-1:-1:-1;;;41483:23:0;;;;;;;;;;;41454:52;41627:49;41644:1;41648:7;41657:13;:18;;;41627:8;:49::i;:::-;-1:-1:-1;;;;;41972:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;41972:31:0;;;-1:-1:-1;;;;;41972:31:0;;;-1:-1:-1;;41972:31:0;;;;;;;42018:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42018:29:0;;;;;;;;;;;;;42064:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42109:61:0;;;;-1:-1:-1;;;42154:15:0;-1:-1:-1;;;;;42109:61:0;;;;;42444:11;;;42474:24;;;;;:29;42444:11;;42474:29;42470:295;;42542:20;42550:11;38327:13;;-1:-1:-1;38317:23:0;38236:112;42542:20;42538:212;;;42619:18;;;42587:24;;;:11;:24;;;;;;;;:50;;42702:28;;;;-1:-1:-1;;;;;42660:70:0;-1:-1:-1;;;42660:70:0;-1:-1:-1;;;;;;42660:70:0;;;-1:-1:-1;;;;;42587:50:0;;;42660:70;;;;;;;42538:212;41947:829;42812:7;42808:2;-1:-1:-1;;;;;42793:27:0;42802:4;-1:-1:-1;;;;;42793:27:0;;;;;;;;;;;42831:42;41023:1858;;40919:1962;;;:::o;34142:447::-;-1:-1:-1;;;;;;;;;;;;;;;;;34242:16:0;34250:7;38327:13;;-1:-1:-1;38317:23:0;38236:112;34242:16;34237:61;;34267:31;;-1:-1:-1;;;34267:31:0;;;;;;;;;;;34237:61;34356:7;34336:235;34393:31;34427:17;;;:11;:17;;;;;;;;;34393:51;;;;;;;;;-1:-1:-1;;;;;34393:51:0;;;;;-1:-1:-1;;;34393:51:0;;;-1:-1:-1;;;;;34393:51:0;;;;;;;;34467:28;34463:93;;34527:9;34142:447;-1:-1:-1;;;34142:447:0:o;34463:93::-;-1:-1:-1;;;34366:6:0;34336:235;;38356:104;38425:27;38435:2;38439:8;38425:27;;;;;;;;;;;;:9;:27::i;10497:191::-;10571:16;10590:6;;-1:-1:-1;;;;;10607:17:0;;;-1:-1:-1;;;;;;10607:17:0;;;;;;10640:40;;10590:6;;;;;;;10640:40;;10571:16;10640:40;10560:128;10497:191;:::o;43760:765::-;43915:4;-1:-1:-1;;;;;43936:13:0;;12223:19;:23;43932:586;;43972:72;;-1:-1:-1;;;43972:72:0;;-1:-1:-1;;;;;43972:36:0;;;;;:72;;8031:10;;44023:4;;44029:7;;44038:5;;43972:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43972:72:0;;;;;;;;-1:-1:-1;;43972:72:0;;;;;;;;;;;;:::i;:::-;;;43968:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44218:13:0;;44214:234;;44245:40;;-1:-1:-1;;;44245:40:0;;;;;;;;;;;44214:234;44398:6;44392:13;44383:6;44379:2;44375:15;44368:38;43968:495;-1:-1:-1;;;;;;44095:55:0;-1:-1:-1;;;44095:55:0;;-1:-1:-1;44088:62:0;;43932:586;-1:-1:-1;44502:4:0;43932:586;43760:765;;;;;;:::o;50657:108::-;50717:13;50750:7;50743:14;;;;;:::i;5513:723::-;5569:13;5790:10;5786:53;;-1:-1:-1;;5817:10:0;;;;;;;;;;;;-1:-1:-1;;;5817:10:0;;;;;5513:723::o;5786:53::-;5864:5;5849:12;5905:78;5912:9;;5905:78;;5938:8;;;;:::i;:::-;;-1:-1:-1;5961:10:0;;-1:-1:-1;5969:2:0;5961:10;;:::i;:::-;;;5905:78;;;5993:19;6025:6;-1:-1:-1;;;;;6015:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6015:17:0;;5993:39;;6043:154;6050:10;;6043:154;;6077:11;6087:1;6077:11;;:::i;:::-;;-1:-1:-1;6146:10:0;6154:2;6146:5;:10;:::i;:::-;6133:24;;:2;:24;:::i;:::-;6120:39;;6103:6;6110;6103:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6103:56:0;;;;;;;;-1:-1:-1;6174:11:0;6183:2;6174:11;;:::i;:::-;;;6043:154;;1475:675;1558:7;1601:4;1558:7;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;1852:57;;1720:382;;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;2029:57;;1720:382;-1:-1:-1;1654:3:0;;;;:::i;:::-;;;;1616:497;;;-1:-1:-1;2130:12:0;1475:675;-1:-1:-1;;;1475:675:0:o;38823:163::-;38946:32;38952:2;38956:8;38966:5;38973:4;39407:13;;-1:-1:-1;;;;;39435:16:0;;39431:48;;39460:19;;-1:-1:-1;;;39460:19:0;;;;;;;;;;;39431:48;39494:13;39490:44;;39516:18;;-1:-1:-1;;;39516:18:0;;;;;;;;;;;39490:44;-1:-1:-1;;;;;39887:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;39887:45:0;;-1:-1:-1;;;;;39887:45:0;;;;;;;;;;39947:50;;;;;;;;;;;;;;40014:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;40064:66:0;;;;-1:-1:-1;;;40114:15:0;-1:-1:-1;;;;;40064:66:0;;;;;;40014:25;;40199:330;40219:8;40215:1;:12;40199:330;;;40258:38;;40283:12;;-1:-1:-1;;;;;40258:38:0;;;40275:1;;40258:38;;40275:1;;40258:38;40319:4;:68;;;;;40328:59;40359:1;40363:2;40367:12;40381:5;40328:22;:59::i;:::-;40327:60;40319:68;40315:164;;;40419:40;;-1:-1:-1;;;40419:40:0;;;;;;;;;;;40315:164;40499:14;;;;;40229:3;40199:330;;;-1:-1:-1;40545:13:0;:28;40597:60;37673:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:367::-;655:8;665:6;719:3;712:4;704:6;700:17;696:27;686:55;;737:1;734;727:12;686:55;-1:-1:-1;760:20:1;;-1:-1:-1;;;;;792:30:1;;789:50;;;835:1;832;825:12;789:50;872:4;864:6;860:17;848:29;;932:3;925:4;915:6;912:1;908:14;900:6;896:27;892:38;889:47;886:67;;;949:1;946;939:12;886:67;592:367;;;;;:::o;964:505::-;1059:6;1067;1075;1128:2;1116:9;1107:7;1103:23;1099:32;1096:52;;;1144:1;1141;1134:12;1096:52;1180:9;1167:23;1157:33;;1241:2;1230:9;1226:18;1213:32;-1:-1:-1;;;;;1260:6:1;1257:30;1254:50;;;1300:1;1297;1290:12;1254:50;1339:70;1401:7;1392:6;1381:9;1377:22;1339:70;:::i;:::-;964:505;;1428:8;;-1:-1:-1;1313:96:1;;-1:-1:-1;;;;964:505:1:o;1474:258::-;1546:1;1556:113;1570:6;1567:1;1564:13;1556:113;;;1646:11;;;1640:18;1627:11;;;1620:39;1592:2;1585:10;1556:113;;;1687:6;1684:1;1681:13;1678:48;;;-1:-1:-1;;1722:1:1;1704:16;;1697:27;1474:258::o;1737:::-;1779:3;1817:5;1811:12;1844:6;1839:3;1832:19;1860:63;1916:6;1909:4;1904:3;1900:14;1893:4;1886:5;1882:16;1860:63;:::i;:::-;1977:2;1956:15;-1:-1:-1;;1952:29:1;1943:39;;;;1984:4;1939:50;;1737:258;-1:-1:-1;;1737:258:1:o;2000:220::-;2149:2;2138:9;2131:21;2112:4;2169:45;2210:2;2199:9;2195:18;2187:6;2169:45;:::i;2225:180::-;2284:6;2337:2;2325:9;2316:7;2312:23;2308:32;2305:52;;;2353:1;2350;2343:12;2305:52;-1:-1:-1;2376:23:1;;2225:180;-1:-1:-1;2225:180:1:o;2618:173::-;2686:20;;-1:-1:-1;;;;;2735:31:1;;2725:42;;2715:70;;2781:1;2778;2771:12;2715:70;2618:173;;;:::o;2796:254::-;2864:6;2872;2925:2;2913:9;2904:7;2900:23;2896:32;2893:52;;;2941:1;2938;2931:12;2893:52;2964:29;2983:9;2964:29;:::i;:::-;2954:39;3040:2;3025:18;;;;3012:32;;-1:-1:-1;;;2796:254:1:o;3237:328::-;3314:6;3322;3330;3383:2;3371:9;3362:7;3358:23;3354:32;3351:52;;;3399:1;3396;3389:12;3351:52;3422:29;3441:9;3422:29;:::i;:::-;3412:39;;3470:38;3504:2;3493:9;3489:18;3470:38;:::i;:::-;3460:48;;3555:2;3544:9;3540:18;3527:32;3517:42;;3237:328;;;;;:::o;3752:127::-;3813:10;3808:3;3804:20;3801:1;3794:31;3844:4;3841:1;3834:15;3868:4;3865:1;3858:15;3884:632;3949:5;-1:-1:-1;;;;;4020:2:1;4012:6;4009:14;4006:40;;;4026:18;;:::i;:::-;4101:2;4095:9;4069:2;4155:15;;-1:-1:-1;;4151:24:1;;;4177:2;4147:33;4143:42;4131:55;;;4201:18;;;4221:22;;;4198:46;4195:72;;;4247:18;;:::i;:::-;4287:10;4283:2;4276:22;4316:6;4307:15;;4346:6;4338;4331:22;4386:3;4377:6;4372:3;4368:16;4365:25;4362:45;;;4403:1;4400;4393:12;4362:45;4453:6;4448:3;4441:4;4433:6;4429:17;4416:44;4508:1;4501:4;4492:6;4484;4480:19;4476:30;4469:41;;;;3884:632;;;;;:::o;4521:451::-;4590:6;4643:2;4631:9;4622:7;4618:23;4614:32;4611:52;;;4659:1;4656;4649:12;4611:52;4699:9;4686:23;-1:-1:-1;;;;;4724:6:1;4721:30;4718:50;;;4764:1;4761;4754:12;4718:50;4787:22;;4840:4;4832:13;;4828:27;-1:-1:-1;4818:55:1;;4869:1;4866;4859:12;4818:55;4892:74;4958:7;4953:2;4940:16;4935:2;4931;4927:11;4892:74;:::i;4977:186::-;5036:6;5089:2;5077:9;5068:7;5064:23;5060:32;5057:52;;;5105:1;5102;5095:12;5057:52;5128:29;5147:9;5128:29;:::i;5168:773::-;5290:6;5298;5306;5314;5367:2;5355:9;5346:7;5342:23;5338:32;5335:52;;;5383:1;5380;5373:12;5335:52;5423:9;5410:23;-1:-1:-1;;;;;5493:2:1;5485:6;5482:14;5479:34;;;5509:1;5506;5499:12;5479:34;5548:70;5610:7;5601:6;5590:9;5586:22;5548:70;:::i;:::-;5637:8;;-1:-1:-1;5522:96:1;-1:-1:-1;5725:2:1;5710:18;;5697:32;;-1:-1:-1;5741:16:1;;;5738:36;;;5770:1;5767;5760:12;5738:36;;5809:72;5873:7;5862:8;5851:9;5847:24;5809:72;:::i;:::-;5168:773;;;;-1:-1:-1;5900:8:1;-1:-1:-1;;;;5168:773:1:o;6131:632::-;6302:2;6354:21;;;6424:13;;6327:18;;;6446:22;;;6273:4;;6302:2;6525:15;;;;6499:2;6484:18;;;6273:4;6568:169;6582:6;6579:1;6576:13;6568:169;;;6643:13;;6631:26;;6712:15;;;;6677:12;;;;6604:1;6597:9;6568:169;;;-1:-1:-1;6754:3:1;;6131:632;-1:-1:-1;;;;;;6131:632:1:o;6768:347::-;6833:6;6841;6894:2;6882:9;6873:7;6869:23;6865:32;6862:52;;;6910:1;6907;6900:12;6862:52;6933:29;6952:9;6933:29;:::i;:::-;6923:39;;7012:2;7001:9;6997:18;6984:32;7059:5;7052:13;7045:21;7038:5;7035:32;7025:60;;7081:1;7078;7071:12;7025:60;7104:5;7094:15;;;6768:347;;;;;:::o;7120:667::-;7215:6;7223;7231;7239;7292:3;7280:9;7271:7;7267:23;7263:33;7260:53;;;7309:1;7306;7299:12;7260:53;7332:29;7351:9;7332:29;:::i;:::-;7322:39;;7380:38;7414:2;7403:9;7399:18;7380:38;:::i;:::-;7370:48;;7465:2;7454:9;7450:18;7437:32;7427:42;;7520:2;7509:9;7505:18;7492:32;-1:-1:-1;;;;;7539:6:1;7536:30;7533:50;;;7579:1;7576;7569:12;7533:50;7602:22;;7655:4;7647:13;;7643:27;-1:-1:-1;7633:55:1;;7684:1;7681;7674:12;7633:55;7707:74;7773:7;7768:2;7755:16;7750:2;7746;7742:11;7707:74;:::i;:::-;7697:84;;;7120:667;;;;;;;:::o;7792:260::-;7860:6;7868;7921:2;7909:9;7900:7;7896:23;7892:32;7889:52;;;7937:1;7934;7927:12;7889:52;7960:29;7979:9;7960:29;:::i;:::-;7950:39;;8008:38;8042:2;8031:9;8027:18;8008:38;:::i;:::-;7998:48;;7792:260;;;;;:::o;8057:355::-;8259:2;8241:21;;;8298:2;8278:18;;;8271:30;8337:33;8332:2;8317:18;;8310:61;8403:2;8388:18;;8057:355::o;9353:127::-;9414:10;9409:3;9405:20;9402:1;9395:31;9445:4;9442:1;9435:15;9469:4;9466:1;9459:15;9485:128;9525:3;9556:1;9552:6;9549:1;9546:13;9543:39;;;9562:18;;:::i;:::-;-1:-1:-1;9598:9:1;;9485:128::o;9968:380::-;10047:1;10043:12;;;;10090;;;10111:61;;10165:4;10157:6;10153:17;10143:27;;10111:61;10218:2;10210:6;10207:14;10187:18;10184:38;10181:161;;;10264:10;10259:3;10255:20;10252:1;10245:31;10299:4;10296:1;10289:15;10327:4;10324:1;10317:15;10181:161;;9968:380;;;:::o;10353:127::-;10414:10;10409:3;10405:20;10402:1;10395:31;10445:4;10442:1;10435:15;10469:4;10466:1;10459:15;10485:356;10687:2;10669:21;;;10706:18;;;10699:30;10765:34;10760:2;10745:18;;10738:62;10832:2;10817:18;;10485:356::o;10846:168::-;10886:7;10952:1;10948;10944:6;10940:14;10937:1;10934:21;10929:1;10922:9;10915:17;10911:45;10908:71;;;10959:18;;:::i;:::-;-1:-1:-1;10999:9:1;;10846:168::o;11019:127::-;11080:10;11075:3;11071:20;11068:1;11061:31;11111:4;11108:1;11101:15;11135:4;11132:1;11125:15;11151:120;11191:1;11217;11207:35;;11222:18;;:::i;:::-;-1:-1:-1;11256:9:1;;11151:120::o;12906:127::-;12967:10;12962:3;12958:20;12955:1;12948:31;12998:4;12995:1;12988:15;13022:4;13019:1;13012:15;13737:125;13777:4;13805:1;13802;13799:8;13796:34;;;13810:18;;:::i;:::-;-1:-1:-1;13847:9:1;;13737:125::o;13867:135::-;13906:3;-1:-1:-1;;13927:17:1;;13924:43;;;13947:18;;:::i;:::-;-1:-1:-1;13994:1:1;13983:13;;13867:135::o;14007:470::-;14186:3;14224:6;14218:13;14240:53;14286:6;14281:3;14274:4;14266:6;14262:17;14240:53;:::i;:::-;14356:13;;14315:16;;;;14378:57;14356:13;14315:16;14412:4;14400:17;;14378:57;:::i;:::-;14451:20;;14007:470;-1:-1:-1;;;;14007:470:1:o;14734:1231::-;14963:3;14992:1;15025:6;15019:13;15055:3;15077:1;15105:9;15101:2;15097:18;15087:28;;15165:2;15154:9;15150:18;15187;15177:61;;15231:4;15223:6;15219:17;15209:27;;15177:61;15257:2;15305;15297:6;15294:14;15274:18;15271:38;15268:165;;;-1:-1:-1;;;15332:33:1;;15388:4;15385:1;15378:15;15418:4;15339:3;15406:17;15268:165;15449:18;15476:104;;;;15594:1;15589:320;;;;15442:467;;15476:104;-1:-1:-1;;15509:24:1;;15497:37;;15554:16;;;;-1:-1:-1;15476:104:1;;15589:320;14555:1;14548:14;;;14592:4;14579:18;;15684:1;15698:165;15712:6;15709:1;15706:13;15698:165;;;15790:14;;15777:11;;;15770:35;15833:16;;;;15727:10;;15698:165;;;15702:3;;15892:6;15887:3;15883:16;15876:23;;15442:467;;;;;;;15925:34;15955:3;-1:-1:-1;;;14673:23:1;;14721:1;14712:11;;14608:121;17082:489;-1:-1:-1;;;;;17351:15:1;;;17333:34;;17403:15;;17398:2;17383:18;;17376:43;17450:2;17435:18;;17428:34;;;17498:3;17493:2;17478:18;;17471:31;;;17276:4;;17519:46;;17545:19;;17537:6;17519:46;:::i;:::-;17511:54;17082:489;-1:-1:-1;;;;;;17082:489:1:o;17576:249::-;17645:6;17698:2;17686:9;17677:7;17673:23;17669:32;17666:52;;;17714:1;17711;17704:12;17666:52;17746:9;17740:16;17765:30;17789:5;17765:30;:::i;17830:112::-;17862:1;17888;17878:35;;17893:18;;:::i;:::-;-1:-1:-1;17927:9:1;;17830:112::o

Swarm Source

ipfs://1cc169afc50614b5d5b79588c5b59b9ddc8939bb24e4fa2fb64d26b89fd15b4e
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.