ETH Price: $2,965.89 (-2.80%)
Gas: 3 Gwei

Token

y00dles (y00ds)
 

Overview

Max Total Supply

2,310 y00ds

Holders

873

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 y00ds
0x2bed94670ab86b3d7a953e4e48b0148edbb373e2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
y00dles

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: 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 >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert UnableDetermineTokenOwner();
    }

    /**
     * @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 ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _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: y00dles.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;




contract y00dles is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant FREE_SUPPLY = 1000;

    uint256 public constant PRICE = 0.003 ether;

    mapping(address => bool) public claimWallets;
    mapping(address => uint256) public mintAmt;


    bool public mintTime = false;

    string private baseTokenUri = "x";

    constructor() ERC721A("y00dles", "y00ds") {


    }

    function claim() external payable {

        require((totalSupply() + 1) <= FREE_SUPPLY, "Out Of Stock!");
        require(mintTime, "It is not time to mint");
        require(claimWallets[msg.sender] == false, "Already Minted!");


            claimWallets[msg.sender] = true;
            _safeMint(msg.sender, 1);

    }

    function mint(uint256 _quantity) external payable {

        require(_quantity > 0, "Quantity Cant be 0");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Out Of Stock!");
        require(mintTime, "It is not time to mint");
        require(mintAmt[msg.sender] + _quantity <= 20, "Already Minted!");
        require(msg.value >= _quantity * PRICE, "Not enough Ether");


            mintAmt[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);

    }


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

        uint256 trueId = tokenId;

        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }

    function setTokenUri(string memory _baseTokenUri) external onlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function flipState() public onlyOwner {

        mintTime = !mintTime;
    }


    function withdraw() external onlyOwner {

        uint256 balance = address(this).balance;

        Address.sendValue(payable(owner()), balance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"UnableDetermineTokenOwner","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":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506040518060400160405280600181526020017f7800000000000000000000000000000000000000000000000000000000000000815250600b90805190602001906200006c9291906200020f565b503480156200007a57600080fd5b506040518060400160405280600781526020017f793030646c6573000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f79303064730000000000000000000000000000000000000000000000000000008152508160019080519060200190620000ff9291906200020f565b508060029080519060200190620001189291906200020f565b5050506200013b6200012f6200014160201b60201c565b6200014960201b60201c565b62000324565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021d90620002bf565b90600052602060002090601f0160209004810192826200024157600085556200028d565b82601f106200025c57805160ff19168380011785556200028d565b828001600101855582156200028d579182015b828111156200028c5782518255916020019190600101906200026f565b5b5090506200029c9190620002a0565b5090565b5b80821115620002bb576000816000905550600101620002a1565b5090565b60006002820490506001821680620002d857607f821691505b60208210811415620002ef57620002ee620002f5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61391080620003346000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f757806395d89b4111610095578063b88d4fde11610064578063b88d4fde1461064a578063c87b56dd14610673578063e985e9c5146106b0578063f2fde38b146106ed576101cd565b806395d89b41146105af5780639858cf19146105da578063a0712d6814610605578063a22cb46514610621576101cd565b806387be55ae116100d157806387be55ae146105055780638d859f3e146105425780638da5cb5b1461056d5780638e92035114610598576101cd565b806370a0823114610486578063715018a6146104c357806386478122146104da576101cd565b806329265eff1161016f57806342842e0e1161013e57806342842e0e146103d95780634e71d92d146104025780634f6ccce71461040c5780636352211e14610449576101cd565b806329265eff1461031d5780632f745c591461035a57806332cb6b0c146103975780633ccfd60b146103c2576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d25780630675b7c61461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612b6f565b610716565b6040516102069190612fdd565b60405180910390f35b34801561021b57600080fd5b5061023660048036038101906102319190612bc9565b610860565b005b34801561024457600080fd5b5061024d610882565b60405161025a9190612ff8565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612c12565b610914565b6040516102979190612f76565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612b2f565b610990565b005b3480156102d557600080fd5b506102de610a9b565b6040516102eb919061315a565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612a19565b610aa4565b005b34801561032957600080fd5b50610344600480360381019061033f91906129ac565b610ab4565b6040516103519190612fdd565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612b2f565b610ad4565b60405161038e919061315a565b60405180910390f35b3480156103a357600080fd5b506103ac610c95565b6040516103b9919061315a565b60405180910390f35b3480156103ce57600080fd5b506103d7610c9b565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612a19565b610cbc565b005b61040a610cdc565b005b34801561041857600080fd5b50610433600480360381019061042e9190612c12565b610e7b565b604051610440919061315a565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190612c12565b610ec5565b60405161047d9190612f76565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906129ac565b610edb565b6040516104ba919061315a565b60405180910390f35b3480156104cf57600080fd5b506104d8610fbb565b005b3480156104e657600080fd5b506104ef610fcf565b6040516104fc9190612fdd565b60405180910390f35b34801561051157600080fd5b5061052c600480360381019061052791906129ac565b610fe2565b604051610539919061315a565b60405180910390f35b34801561054e57600080fd5b50610557610ffa565b604051610564919061315a565b60405180910390f35b34801561057957600080fd5b50610582611005565b60405161058f9190612f76565b60405180910390f35b3480156105a457600080fd5b506105ad61102f565b005b3480156105bb57600080fd5b506105c4611063565b6040516105d19190612ff8565b60405180910390f35b3480156105e657600080fd5b506105ef6110f5565b6040516105fc919061315a565b60405180910390f35b61061f600480360381019061061a9190612c12565b6110fb565b005b34801561062d57600080fd5b5061064860048036038101906106439190612aef565b61132a565b005b34801561065657600080fd5b50610671600480360381019061066c9190612a6c565b6114a2565b005b34801561067f57600080fd5b5061069a60048036038101906106959190612c12565b6114f5565b6040516106a79190612ff8565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906129d9565b6115a3565b6040516106e49190612fdd565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f91906129ac565b611637565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108595750610858826116bb565b5b9050919050565b610868611725565b80600b908051906020019061087e929190612786565b5050565b6060600180546108919061342a565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd9061342a565b801561090a5780601f106108df5761010080835404028352916020019161090a565b820191906000526020600020905b8154815290600101906020018083116108ed57829003601f168201915b5050505050905090565b600061091f826117a3565b610955576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099b82610ec5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a03576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a226117b0565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a545750610a5281610a4d6117b0565b6115a3565b155b15610a8b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a968383836117b8565b505050565b60008054905090565b610aaf83838361186a565b505050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000610adf83610edb565b8210610b17576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610b21610a9b565b905060008060005b83811015610c7b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c1b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6d5786841415610c64578195505050505050610c8f565b83806001019450505b508080600101915050610b29565b506000610c8b57610c8a613507565b5b5050505b92915050565b61271081565b610ca3611725565b6000479050610cb9610cb3611005565b82611d8f565b50565b610cd7838383604051806020016040528060008152506114a2565b505050565b6103e86001610ce9610a9b565b610cf3919061325f565b1115610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b9061301a565b60405180910390fd5b600a60009054906101000a900460ff16610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a906130fa565b60405180910390fd5b60001515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d9061305a565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e79336001611e83565b565b6000610e85610a9b565b8210610ebd576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000610ed082611ea1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f43576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610fc3611725565b610fcd6000612029565b565b600a60009054906101000a900460ff1681565b60096020528060005260406000206000915090505481565b660aa87bee53800081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611037611725565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6060600280546110729061342a565b80601f016020809104026020016040519081016040528092919081815260200182805461109e9061342a565b80156110eb5780601f106110c0576101008083540402835291602001916110eb565b820191906000526020600020905b8154815290600101906020018083116110ce57829003601f168201915b5050505050905090565b6103e881565b6000811161113e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111359061313a565b60405180910390fd5b6127108161114a610a9b565b611154919061325f565b1115611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c9061301a565b60405180910390fd5b600a60009054906101000a900460ff166111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906130fa565b60405180910390fd5b601481600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611231919061325f565b1115611272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112699061305a565b60405180910390fd5b660aa87bee5380008161128591906132e6565b3410156112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be9061311a565b60405180910390fd5b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611316919061325f565b925050819055506113273382611e83565b50565b6113326117b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611397576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006113a46117b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114516117b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114969190612fdd565b60405180910390a35050565b6114ad84848461186a565b6114b9848484846120ef565b6114ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611500826117a3565b61153f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611536906130da565b60405180910390fd5b60008290506000600b80546115539061342a565b90501161156f576040518060200160405280600081525061159b565b600b61157a8261227d565b60405160200161158b929190612f32565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61163f611725565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a69061303a565b60405180910390fd5b6116b881612029565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61172d6117b0565b73ffffffffffffffffffffffffffffffffffffffff1661174b611005565b73ffffffffffffffffffffffffffffffffffffffff16146117a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611798906130ba565b60405180910390fd5b565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061187582611ea1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661189c6117b0565b73ffffffffffffffffffffffffffffffffffffffff1614806118f857506118c16117b0565b73ffffffffffffffffffffffffffffffffffffffff166118e084610914565b73ffffffffffffffffffffffffffffffffffffffff16145b806119145750611913826000015161190e6117b0565b6115a3565b5b90508061194d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119b6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a1d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a2a85858560016123de565b611a3a60008484600001516117b8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d1f57611c7e816117a3565b15611d1e5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8885858560016123e4565b5050505050565b80471015611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc99061309a565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611df890612f61565b60006040518083038185875af1925050503d8060008114611e35576040519150601f19603f3d011682016040523d82523d6000602084013e611e3a565b606091505b5050905080611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e759061307a565b60405180910390fd5b505050565b611e9d8282604051806020016040528060008152506123ea565b5050565b611ea961280c565b611eb2826117a3565b611ee8576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110611ff1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fe2578092505050612024565b50808060019003915050611eee565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006121108473ffffffffffffffffffffffffffffffffffffffff166123fc565b15612270578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121396117b0565b8786866040518563ffffffff1660e01b815260040161215b9493929190612f91565b602060405180830381600087803b15801561217557600080fd5b505af19250505080156121a657506040513d601f19601f820116820180604052508101906121a39190612b9c565b60015b612220573d80600081146121d6576040519150601f19603f3d011682016040523d82523d6000602084013e6121db565b606091505b50600081511415612218576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612275565b600190505b949350505050565b606060008214156122c5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123d9565b600082905060005b600082146122f75780806122e09061348d565b915050600a826122f091906132b5565b91506122cd565b60008167ffffffffffffffff811115612313576123126135f2565b5b6040519080825280601f01601f1916602001820160405280156123455781602001600182028036833780820191505090505b5090505b600085146123d25760018261235e9190613340565b9150600a8561236d91906134d6565b6030612379919061325f565b60f81b81838151811061238f5761238e6135c3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123cb91906132b5565b9450612349565b8093505050505b919050565b50505050565b50505050565b6123f7838383600161241f565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561248c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156124c7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124d460008683876123de565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561276957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561271d575061271b60008884886120ef565b155b15612754576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506126a2565b50806000819055505061277f60008683876123e4565b5050505050565b8280546127929061342a565b90600052602060002090601f0160209004810192826127b457600085556127fb565b82601f106127cd57805160ff19168380011785556127fb565b828001600101855582156127fb579182015b828111156127fa5782518255916020019190600101906127df565b5b5090506128089190612846565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561285f576000816000905550600101612847565b5090565b60006128766128718461319a565b613175565b90508281526020810184848401111561289257612891613626565b5b61289d8482856133e8565b509392505050565b60006128b86128b3846131cb565b613175565b9050828152602081018484840111156128d4576128d3613626565b5b6128df8482856133e8565b509392505050565b6000813590506128f68161387e565b92915050565b60008135905061290b81613895565b92915050565b600081359050612920816138ac565b92915050565b600081519050612935816138ac565b92915050565b600082601f8301126129505761294f613621565b5b8135612960848260208601612863565b91505092915050565b600082601f83011261297e5761297d613621565b5b813561298e8482602086016128a5565b91505092915050565b6000813590506129a6816138c3565b92915050565b6000602082840312156129c2576129c1613630565b5b60006129d0848285016128e7565b91505092915050565b600080604083850312156129f0576129ef613630565b5b60006129fe858286016128e7565b9250506020612a0f858286016128e7565b9150509250929050565b600080600060608486031215612a3257612a31613630565b5b6000612a40868287016128e7565b9350506020612a51868287016128e7565b9250506040612a6286828701612997565b9150509250925092565b60008060008060808587031215612a8657612a85613630565b5b6000612a94878288016128e7565b9450506020612aa5878288016128e7565b9350506040612ab687828801612997565b925050606085013567ffffffffffffffff811115612ad757612ad661362b565b5b612ae38782880161293b565b91505092959194509250565b60008060408385031215612b0657612b05613630565b5b6000612b14858286016128e7565b9250506020612b25858286016128fc565b9150509250929050565b60008060408385031215612b4657612b45613630565b5b6000612b54858286016128e7565b9250506020612b6585828601612997565b9150509250929050565b600060208284031215612b8557612b84613630565b5b6000612b9384828501612911565b91505092915050565b600060208284031215612bb257612bb1613630565b5b6000612bc084828501612926565b91505092915050565b600060208284031215612bdf57612bde613630565b5b600082013567ffffffffffffffff811115612bfd57612bfc61362b565b5b612c0984828501612969565b91505092915050565b600060208284031215612c2857612c27613630565b5b6000612c3684828501612997565b91505092915050565b612c4881613374565b82525050565b612c5781613386565b82525050565b6000612c6882613211565b612c728185613227565b9350612c828185602086016133f7565b612c8b81613635565b840191505092915050565b6000612ca18261321c565b612cab8185613243565b9350612cbb8185602086016133f7565b612cc481613635565b840191505092915050565b6000612cda8261321c565b612ce48185613254565b9350612cf48185602086016133f7565b80840191505092915050565b60008154612d0d8161342a565b612d178186613254565b94506001821660008114612d325760018114612d4357612d76565b60ff19831686528186019350612d76565b612d4c856131fc565b60005b83811015612d6e57815481890152600182019150602081019050612d4f565b838801955050505b50505092915050565b6000612d8c600d83613243565b9150612d9782613646565b602082019050919050565b6000612daf602683613243565b9150612dba8261366f565b604082019050919050565b6000612dd2600f83613243565b9150612ddd826136be565b602082019050919050565b6000612df5603a83613243565b9150612e00826136e7565b604082019050919050565b6000612e18601d83613243565b9150612e2382613736565b602082019050919050565b6000612e3b600583613254565b9150612e468261375f565b600582019050919050565b6000612e5e602083613243565b9150612e6982613788565b602082019050919050565b6000612e81602f83613243565b9150612e8c826137b1565b604082019050919050565b6000612ea4601683613243565b9150612eaf82613800565b602082019050919050565b6000612ec7600083613238565b9150612ed282613829565b600082019050919050565b6000612eea601083613243565b9150612ef58261382c565b602082019050919050565b6000612f0d601283613243565b9150612f1882613855565b602082019050919050565b612f2c816133de565b82525050565b6000612f3e8285612d00565b9150612f4a8284612ccf565b9150612f5582612e2e565b91508190509392505050565b6000612f6c82612eba565b9150819050919050565b6000602082019050612f8b6000830184612c3f565b92915050565b6000608082019050612fa66000830187612c3f565b612fb36020830186612c3f565b612fc06040830185612f23565b8181036060830152612fd28184612c5d565b905095945050505050565b6000602082019050612ff26000830184612c4e565b92915050565b600060208201905081810360008301526130128184612c96565b905092915050565b6000602082019050818103600083015261303381612d7f565b9050919050565b6000602082019050818103600083015261305381612da2565b9050919050565b6000602082019050818103600083015261307381612dc5565b9050919050565b6000602082019050818103600083015261309381612de8565b9050919050565b600060208201905081810360008301526130b381612e0b565b9050919050565b600060208201905081810360008301526130d381612e51565b9050919050565b600060208201905081810360008301526130f381612e74565b9050919050565b6000602082019050818103600083015261311381612e97565b9050919050565b6000602082019050818103600083015261313381612edd565b9050919050565b6000602082019050818103600083015261315381612f00565b9050919050565b600060208201905061316f6000830184612f23565b92915050565b600061317f613190565b905061318b828261345c565b919050565b6000604051905090565b600067ffffffffffffffff8211156131b5576131b46135f2565b5b6131be82613635565b9050602081019050919050565b600067ffffffffffffffff8211156131e6576131e56135f2565b5b6131ef82613635565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061326a826133de565b9150613275836133de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132aa576132a9613536565b5b828201905092915050565b60006132c0826133de565b91506132cb836133de565b9250826132db576132da613565565b5b828204905092915050565b60006132f1826133de565b91506132fc836133de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561333557613334613536565b5b828202905092915050565b600061334b826133de565b9150613356836133de565b92508282101561336957613368613536565b5b828203905092915050565b600061337f826133be565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134155780820151818401526020810190506133fa565b83811115613424576000848401525b50505050565b6000600282049050600182168061344257607f821691505b6020821081141561345657613455613594565b5b50919050565b61346582613635565b810181811067ffffffffffffffff82111715613484576134836135f2565b5b80604052505050565b6000613498826133de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134cb576134ca613536565b5b600182019050919050565b60006134e1826133de565b91506134ec836133de565b9250826134fc576134fb613565565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f7574204f662053746f636b2100000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c7265616479204d696e746564210000000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4974206973206e6f742074696d6520746f206d696e7400000000000000000000600082015250565b50565b7f4e6f7420656e6f75676820457468657200000000000000000000000000000000600082015250565b7f5175616e746974792043616e7420626520300000000000000000000000000000600082015250565b61388781613374565b811461389257600080fd5b50565b61389e81613386565b81146138a957600080fd5b50565b6138b581613392565b81146138c057600080fd5b50565b6138cc816133de565b81146138d757600080fd5b5056fea2646970667358221220ae6d4a801bef559b22c5b555cac98bc0759ddc431b159e40506e2e0dcfb9420e64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f757806395d89b4111610095578063b88d4fde11610064578063b88d4fde1461064a578063c87b56dd14610673578063e985e9c5146106b0578063f2fde38b146106ed576101cd565b806395d89b41146105af5780639858cf19146105da578063a0712d6814610605578063a22cb46514610621576101cd565b806387be55ae116100d157806387be55ae146105055780638d859f3e146105425780638da5cb5b1461056d5780638e92035114610598576101cd565b806370a0823114610486578063715018a6146104c357806386478122146104da576101cd565b806329265eff1161016f57806342842e0e1161013e57806342842e0e146103d95780634e71d92d146104025780634f6ccce71461040c5780636352211e14610449576101cd565b806329265eff1461031d5780632f745c591461035a57806332cb6b0c146103975780633ccfd60b146103c2576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d25780630675b7c61461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612b6f565b610716565b6040516102069190612fdd565b60405180910390f35b34801561021b57600080fd5b5061023660048036038101906102319190612bc9565b610860565b005b34801561024457600080fd5b5061024d610882565b60405161025a9190612ff8565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612c12565b610914565b6040516102979190612f76565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612b2f565b610990565b005b3480156102d557600080fd5b506102de610a9b565b6040516102eb919061315a565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612a19565b610aa4565b005b34801561032957600080fd5b50610344600480360381019061033f91906129ac565b610ab4565b6040516103519190612fdd565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612b2f565b610ad4565b60405161038e919061315a565b60405180910390f35b3480156103a357600080fd5b506103ac610c95565b6040516103b9919061315a565b60405180910390f35b3480156103ce57600080fd5b506103d7610c9b565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612a19565b610cbc565b005b61040a610cdc565b005b34801561041857600080fd5b50610433600480360381019061042e9190612c12565b610e7b565b604051610440919061315a565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190612c12565b610ec5565b60405161047d9190612f76565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906129ac565b610edb565b6040516104ba919061315a565b60405180910390f35b3480156104cf57600080fd5b506104d8610fbb565b005b3480156104e657600080fd5b506104ef610fcf565b6040516104fc9190612fdd565b60405180910390f35b34801561051157600080fd5b5061052c600480360381019061052791906129ac565b610fe2565b604051610539919061315a565b60405180910390f35b34801561054e57600080fd5b50610557610ffa565b604051610564919061315a565b60405180910390f35b34801561057957600080fd5b50610582611005565b60405161058f9190612f76565b60405180910390f35b3480156105a457600080fd5b506105ad61102f565b005b3480156105bb57600080fd5b506105c4611063565b6040516105d19190612ff8565b60405180910390f35b3480156105e657600080fd5b506105ef6110f5565b6040516105fc919061315a565b60405180910390f35b61061f600480360381019061061a9190612c12565b6110fb565b005b34801561062d57600080fd5b5061064860048036038101906106439190612aef565b61132a565b005b34801561065657600080fd5b50610671600480360381019061066c9190612a6c565b6114a2565b005b34801561067f57600080fd5b5061069a60048036038101906106959190612c12565b6114f5565b6040516106a79190612ff8565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906129d9565b6115a3565b6040516106e49190612fdd565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f91906129ac565b611637565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108595750610858826116bb565b5b9050919050565b610868611725565b80600b908051906020019061087e929190612786565b5050565b6060600180546108919061342a565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd9061342a565b801561090a5780601f106108df5761010080835404028352916020019161090a565b820191906000526020600020905b8154815290600101906020018083116108ed57829003601f168201915b5050505050905090565b600061091f826117a3565b610955576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099b82610ec5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a03576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a226117b0565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a545750610a5281610a4d6117b0565b6115a3565b155b15610a8b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a968383836117b8565b505050565b60008054905090565b610aaf83838361186a565b505050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000610adf83610edb565b8210610b17576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610b21610a9b565b905060008060005b83811015610c7b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c1b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6d5786841415610c64578195505050505050610c8f565b83806001019450505b508080600101915050610b29565b506000610c8b57610c8a613507565b5b5050505b92915050565b61271081565b610ca3611725565b6000479050610cb9610cb3611005565b82611d8f565b50565b610cd7838383604051806020016040528060008152506114a2565b505050565b6103e86001610ce9610a9b565b610cf3919061325f565b1115610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b9061301a565b60405180910390fd5b600a60009054906101000a900460ff16610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a906130fa565b60405180910390fd5b60001515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d9061305a565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e79336001611e83565b565b6000610e85610a9b565b8210610ebd576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000610ed082611ea1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f43576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610fc3611725565b610fcd6000612029565b565b600a60009054906101000a900460ff1681565b60096020528060005260406000206000915090505481565b660aa87bee53800081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611037611725565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6060600280546110729061342a565b80601f016020809104026020016040519081016040528092919081815260200182805461109e9061342a565b80156110eb5780601f106110c0576101008083540402835291602001916110eb565b820191906000526020600020905b8154815290600101906020018083116110ce57829003601f168201915b5050505050905090565b6103e881565b6000811161113e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111359061313a565b60405180910390fd5b6127108161114a610a9b565b611154919061325f565b1115611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c9061301a565b60405180910390fd5b600a60009054906101000a900460ff166111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906130fa565b60405180910390fd5b601481600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611231919061325f565b1115611272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112699061305a565b60405180910390fd5b660aa87bee5380008161128591906132e6565b3410156112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be9061311a565b60405180910390fd5b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611316919061325f565b925050819055506113273382611e83565b50565b6113326117b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611397576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006113a46117b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114516117b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114969190612fdd565b60405180910390a35050565b6114ad84848461186a565b6114b9848484846120ef565b6114ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611500826117a3565b61153f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611536906130da565b60405180910390fd5b60008290506000600b80546115539061342a565b90501161156f576040518060200160405280600081525061159b565b600b61157a8261227d565b60405160200161158b929190612f32565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61163f611725565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a69061303a565b60405180910390fd5b6116b881612029565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61172d6117b0565b73ffffffffffffffffffffffffffffffffffffffff1661174b611005565b73ffffffffffffffffffffffffffffffffffffffff16146117a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611798906130ba565b60405180910390fd5b565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061187582611ea1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661189c6117b0565b73ffffffffffffffffffffffffffffffffffffffff1614806118f857506118c16117b0565b73ffffffffffffffffffffffffffffffffffffffff166118e084610914565b73ffffffffffffffffffffffffffffffffffffffff16145b806119145750611913826000015161190e6117b0565b6115a3565b5b90508061194d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119b6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a1d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a2a85858560016123de565b611a3a60008484600001516117b8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d1f57611c7e816117a3565b15611d1e5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8885858560016123e4565b5050505050565b80471015611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc99061309a565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611df890612f61565b60006040518083038185875af1925050503d8060008114611e35576040519150601f19603f3d011682016040523d82523d6000602084013e611e3a565b606091505b5050905080611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e759061307a565b60405180910390fd5b505050565b611e9d8282604051806020016040528060008152506123ea565b5050565b611ea961280c565b611eb2826117a3565b611ee8576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110611ff1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fe2578092505050612024565b50808060019003915050611eee565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006121108473ffffffffffffffffffffffffffffffffffffffff166123fc565b15612270578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121396117b0565b8786866040518563ffffffff1660e01b815260040161215b9493929190612f91565b602060405180830381600087803b15801561217557600080fd5b505af19250505080156121a657506040513d601f19601f820116820180604052508101906121a39190612b9c565b60015b612220573d80600081146121d6576040519150601f19603f3d011682016040523d82523d6000602084013e6121db565b606091505b50600081511415612218576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612275565b600190505b949350505050565b606060008214156122c5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123d9565b600082905060005b600082146122f75780806122e09061348d565b915050600a826122f091906132b5565b91506122cd565b60008167ffffffffffffffff811115612313576123126135f2565b5b6040519080825280601f01601f1916602001820160405280156123455781602001600182028036833780820191505090505b5090505b600085146123d25760018261235e9190613340565b9150600a8561236d91906134d6565b6030612379919061325f565b60f81b81838151811061238f5761238e6135c3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123cb91906132b5565b9450612349565b8093505050505b919050565b50505050565b50505050565b6123f7838383600161241f565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561248c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156124c7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124d460008683876123de565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561276957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561271d575061271b60008884886120ef565b155b15612754576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506126a2565b50806000819055505061277f60008683876123e4565b5050505050565b8280546127929061342a565b90600052602060002090601f0160209004810192826127b457600085556127fb565b82601f106127cd57805160ff19168380011785556127fb565b828001600101855582156127fb579182015b828111156127fa5782518255916020019190600101906127df565b5b5090506128089190612846565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561285f576000816000905550600101612847565b5090565b60006128766128718461319a565b613175565b90508281526020810184848401111561289257612891613626565b5b61289d8482856133e8565b509392505050565b60006128b86128b3846131cb565b613175565b9050828152602081018484840111156128d4576128d3613626565b5b6128df8482856133e8565b509392505050565b6000813590506128f68161387e565b92915050565b60008135905061290b81613895565b92915050565b600081359050612920816138ac565b92915050565b600081519050612935816138ac565b92915050565b600082601f8301126129505761294f613621565b5b8135612960848260208601612863565b91505092915050565b600082601f83011261297e5761297d613621565b5b813561298e8482602086016128a5565b91505092915050565b6000813590506129a6816138c3565b92915050565b6000602082840312156129c2576129c1613630565b5b60006129d0848285016128e7565b91505092915050565b600080604083850312156129f0576129ef613630565b5b60006129fe858286016128e7565b9250506020612a0f858286016128e7565b9150509250929050565b600080600060608486031215612a3257612a31613630565b5b6000612a40868287016128e7565b9350506020612a51868287016128e7565b9250506040612a6286828701612997565b9150509250925092565b60008060008060808587031215612a8657612a85613630565b5b6000612a94878288016128e7565b9450506020612aa5878288016128e7565b9350506040612ab687828801612997565b925050606085013567ffffffffffffffff811115612ad757612ad661362b565b5b612ae38782880161293b565b91505092959194509250565b60008060408385031215612b0657612b05613630565b5b6000612b14858286016128e7565b9250506020612b25858286016128fc565b9150509250929050565b60008060408385031215612b4657612b45613630565b5b6000612b54858286016128e7565b9250506020612b6585828601612997565b9150509250929050565b600060208284031215612b8557612b84613630565b5b6000612b9384828501612911565b91505092915050565b600060208284031215612bb257612bb1613630565b5b6000612bc084828501612926565b91505092915050565b600060208284031215612bdf57612bde613630565b5b600082013567ffffffffffffffff811115612bfd57612bfc61362b565b5b612c0984828501612969565b91505092915050565b600060208284031215612c2857612c27613630565b5b6000612c3684828501612997565b91505092915050565b612c4881613374565b82525050565b612c5781613386565b82525050565b6000612c6882613211565b612c728185613227565b9350612c828185602086016133f7565b612c8b81613635565b840191505092915050565b6000612ca18261321c565b612cab8185613243565b9350612cbb8185602086016133f7565b612cc481613635565b840191505092915050565b6000612cda8261321c565b612ce48185613254565b9350612cf48185602086016133f7565b80840191505092915050565b60008154612d0d8161342a565b612d178186613254565b94506001821660008114612d325760018114612d4357612d76565b60ff19831686528186019350612d76565b612d4c856131fc565b60005b83811015612d6e57815481890152600182019150602081019050612d4f565b838801955050505b50505092915050565b6000612d8c600d83613243565b9150612d9782613646565b602082019050919050565b6000612daf602683613243565b9150612dba8261366f565b604082019050919050565b6000612dd2600f83613243565b9150612ddd826136be565b602082019050919050565b6000612df5603a83613243565b9150612e00826136e7565b604082019050919050565b6000612e18601d83613243565b9150612e2382613736565b602082019050919050565b6000612e3b600583613254565b9150612e468261375f565b600582019050919050565b6000612e5e602083613243565b9150612e6982613788565b602082019050919050565b6000612e81602f83613243565b9150612e8c826137b1565b604082019050919050565b6000612ea4601683613243565b9150612eaf82613800565b602082019050919050565b6000612ec7600083613238565b9150612ed282613829565b600082019050919050565b6000612eea601083613243565b9150612ef58261382c565b602082019050919050565b6000612f0d601283613243565b9150612f1882613855565b602082019050919050565b612f2c816133de565b82525050565b6000612f3e8285612d00565b9150612f4a8284612ccf565b9150612f5582612e2e565b91508190509392505050565b6000612f6c82612eba565b9150819050919050565b6000602082019050612f8b6000830184612c3f565b92915050565b6000608082019050612fa66000830187612c3f565b612fb36020830186612c3f565b612fc06040830185612f23565b8181036060830152612fd28184612c5d565b905095945050505050565b6000602082019050612ff26000830184612c4e565b92915050565b600060208201905081810360008301526130128184612c96565b905092915050565b6000602082019050818103600083015261303381612d7f565b9050919050565b6000602082019050818103600083015261305381612da2565b9050919050565b6000602082019050818103600083015261307381612dc5565b9050919050565b6000602082019050818103600083015261309381612de8565b9050919050565b600060208201905081810360008301526130b381612e0b565b9050919050565b600060208201905081810360008301526130d381612e51565b9050919050565b600060208201905081810360008301526130f381612e74565b9050919050565b6000602082019050818103600083015261311381612e97565b9050919050565b6000602082019050818103600083015261313381612edd565b9050919050565b6000602082019050818103600083015261315381612f00565b9050919050565b600060208201905061316f6000830184612f23565b92915050565b600061317f613190565b905061318b828261345c565b919050565b6000604051905090565b600067ffffffffffffffff8211156131b5576131b46135f2565b5b6131be82613635565b9050602081019050919050565b600067ffffffffffffffff8211156131e6576131e56135f2565b5b6131ef82613635565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061326a826133de565b9150613275836133de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132aa576132a9613536565b5b828201905092915050565b60006132c0826133de565b91506132cb836133de565b9250826132db576132da613565565b5b828204905092915050565b60006132f1826133de565b91506132fc836133de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561333557613334613536565b5b828202905092915050565b600061334b826133de565b9150613356836133de565b92508282101561336957613368613536565b5b828203905092915050565b600061337f826133be565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134155780820151818401526020810190506133fa565b83811115613424576000848401525b50505050565b6000600282049050600182168061344257607f821691505b6020821081141561345657613455613594565b5b50919050565b61346582613635565b810181811067ffffffffffffffff82111715613484576134836135f2565b5b80604052505050565b6000613498826133de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134cb576134ca613536565b5b600182019050919050565b60006134e1826133de565b91506134ec836133de565b9250826134fc576134fb613565565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f7574204f662053746f636b2100000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c7265616479204d696e746564210000000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4974206973206e6f742074696d6520746f206d696e7400000000000000000000600082015250565b50565b7f4e6f7420656e6f75676820457468657200000000000000000000000000000000600082015250565b7f5175616e746974792043616e7420626520300000000000000000000000000000600082015250565b61388781613374565b811461389257600080fd5b50565b61389e81613386565b81146138a957600080fd5b50565b6138b581613392565b81146138c057600080fd5b50565b6138cc816133de565b81146138d757600080fd5b5056fea2646970667358221220ae6d4a801bef559b22c5b555cac98bc0759ddc431b159e40506e2e0dcfb9420e64736f6c63430008070033

Deployed Bytecode Sourcemap

50100:2044:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37288:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51770:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39104:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40581:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40170:345;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35555:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41438:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50330:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36209:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50178:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51983:156;;;;;;;;;;;;;:::i;:::-;;41679:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50575:332;;;:::i;:::-;;35733:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38913:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37724:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13998:103;;;;;;;;;;;;;:::i;:::-;;50434:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50381:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50278:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13350:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51894:79;;;;;;;;;;;;;:::i;:::-;;39273:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50227:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50915:493;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40857:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41935:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51418:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41207:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14256:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37288:372;37390:4;37442:25;37427:40;;;:11;:40;;;;:105;;;;37499:33;37484:48;;;:11;:48;;;;37427:105;:172;;;;37564:35;37549:50;;;:11;:50;;;;37427:172;:225;;;;37616:36;37640:11;37616:23;:36::i;:::-;37427:225;37407:245;;37288:372;;;:::o;51770:116::-;13236:13;:11;:13::i;:::-;51865::::1;51850:12;:28;;;;;;;;;;;;:::i;:::-;;51770:116:::0;:::o;39104:100::-;39158:13;39191:5;39184:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39104:100;:::o;40581:204::-;40649:7;40674:16;40682:7;40674;:16::i;:::-;40669:64;;40699:34;;;;;;;;;;;;;;40669:64;40753:15;:24;40769:7;40753:24;;;;;;;;;;;;;;;;;;;;;40746:31;;40581:204;;;:::o;40170:345::-;40243:13;40259:24;40275:7;40259:15;:24::i;:::-;40243:40;;40304:5;40298:11;;:2;:11;;;40294:48;;;40318:24;;;;;;;;;;;;;;40294:48;40375:5;40359:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;40385:37;40402:5;40409:12;:10;:12::i;:::-;40385:16;:37::i;:::-;40384:38;40359:63;40355:111;;;40431:35;;;;;;;;;;;;;;40355:111;40479:28;40488:2;40492:7;40501:5;40479:8;:28::i;:::-;40232:283;40170:345;;:::o;35555:101::-;35608:7;35635:13;;35628:20;;35555:101;:::o;41438:170::-;41572:28;41582:4;41588:2;41592:7;41572:9;:28::i;:::-;41438:170;;;:::o;50330:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;36209:1007::-;36298:7;36331:16;36341:5;36331:9;:16::i;:::-;36322:5;:25;36318:61;;36356:23;;;;;;;;;;;;;;36318:61;36390:22;36415:13;:11;:13::i;:::-;36390:38;;36439:19;36469:25;36658:9;36653:466;36673:14;36669:1;:18;36653:466;;;36713:31;36747:11;:14;36759:1;36747:14;;;;;;;;;;;36713:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36810:1;36784:28;;:9;:14;;;:28;;;36780:111;;36857:9;:14;;;36837:34;;36780:111;36934:5;36913:26;;:17;:26;;;36909:195;;;36983:5;36968:11;:20;36964:85;;;37024:1;37017:8;;;;;;;;;36964:85;37071:13;;;;;;;36909:195;36694:425;36689:3;;;;;;;36653:466;;;;37202:5;37195:13;;;;:::i;:::-;;36307:909;;;36209:1007;;;;;:::o;50178:42::-;50215:5;50178:42;:::o;51983:156::-;13236:13;:11;:13::i;:::-;52035:15:::1;52053:21;52035:39;;52087:44;52113:7;:5;:7::i;:::-;52123;52087:17;:44::i;:::-;52022:117;51983:156::o:0;41679:185::-;41817:39;41834:4;41840:2;41844:7;41817:39;;;;;;;;;;;;:16;:39::i;:::-;41679:185;;;:::o;50575:332::-;50265:4;50647:1;50631:13;:11;:13::i;:::-;:17;;;;:::i;:::-;50630:34;;50622:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;50701:8;;;;;;;;;;;50693:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;50783:5;50755:33;;:12;:24;50768:10;50755:24;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;50747:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;50854:4;50827:12;:24;50840:10;50827:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;50873:24;50883:10;50895:1;50873:9;:24::i;:::-;50575:332::o;35733:176::-;35800:7;35833:13;:11;:13::i;:::-;35824:5;:22;35820:58;;35855:23;;;;;;;;;;;;;;35820:58;35896:5;35889:12;;35733:176;;;:::o;38913:124::-;38977:7;39004:20;39016:7;39004:11;:20::i;:::-;:25;;;38997:32;;38913:124;;;:::o;37724:206::-;37788:7;37829:1;37812:19;;:5;:19;;;37808:60;;;37840:28;;;;;;;;;;;;;;37808:60;37894:12;:19;37907:5;37894:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37886:36;;37879:43;;37724:206;;;:::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;50434:28::-;;;;;;;;;;;;;:::o;50381:42::-;;;;;;;;;;;;;;;;;:::o;50278:43::-;50310:11;50278:43;:::o;13350:87::-;13396:7;13423:6;;;;;;;;;;;13416:13;;13350:87;:::o;51894:79::-;13236:13;:11;:13::i;:::-;51957:8:::1;;;;;;;;;;;51956:9;51945:8;;:20;;;;;;;;;;;;;;;;;;51894:79::o:0;39273:104::-;39329:13;39362:7;39355:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39273:104;:::o;50227:42::-;50265:4;50227:42;:::o;50915:493::-;50998:1;50986:9;:13;50978:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;50215:5;51058:9;51042:13;:11;:13::i;:::-;:25;;;;:::i;:::-;51041:41;;51033:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51119:8;;;;;;;;;;;51111:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;51208:2;51195:9;51173:7;:19;51181:10;51173:19;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:37;;51165:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50310:11;51262:9;:17;;;;:::i;:::-;51249:9;:30;;51241:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;51342:9;51319:7;:19;51327:10;51319:19;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;51366;51376:10;51388:9;51366;:32::i;:::-;50915:493;:::o;40857:279::-;40960:12;:10;:12::i;:::-;40948:24;;:8;:24;;;40944:54;;;40981:17;;;;;;;;;;;;;;40944:54;41056:8;41011:18;:32;41030:12;:10;:12::i;:::-;41011:32;;;;;;;;;;;;;;;:42;41044:8;41011:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41109:8;41080:48;;41095:12;:10;:12::i;:::-;41080:48;;;41119:8;41080:48;;;;;;:::i;:::-;;;;;;;;40857:279;;:::o;41935:308::-;42094:28;42104:4;42110:2;42114:7;42094:9;:28::i;:::-;42138:48;42161:4;42167:2;42171:7;42180:5;42138:22;:48::i;:::-;42133:102;;42195:40;;;;;;;;;;;;;;42133:102;41935:308;;;;:::o;51418:344::-;51491:13;51525:16;51533:7;51525;:16::i;:::-;51517:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;51606:14;51623:7;51606:24;;51679:1;51656:12;51650:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;51707:12;51721:17;:6;:15;:17::i;:::-;51690:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51650:104;51643:111;;;51418:344;;;:::o;41207:164::-;41304:4;41328:18;:25;41347:5;41328:25;;;;;;;;;;;;;;;:35;41354:8;41328:35;;;;;;;;;;;;;;;;;;;;;;;;;41321:42;;41207:164;;;;:::o;14256:201::-;13236:13;:11;:13::i;:::-;14365:1:::1;14345:22;;:8;:22;;;;14337:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14421:28;14440:8;14421:18;:28::i;:::-;14256:201:::0;:::o;26204:157::-;26289:4;26328:25;26313:40;;;:11;:40;;;;26306:47;;26204:157;;;:::o;13515:132::-;13590:12;:10;:12::i;:::-;13579:23;;:7;:5;:7::i;:::-;:23;;;13571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13515:132::o;42498:112::-;42555:4;42589:13;;42579:7;:23;42572:30;;42498:112;;;:::o;11901:98::-;11954:7;11981:10;11974:17;;11901:98;:::o;47261:196::-;47403:2;47376:15;:24;47392:7;47376:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47441:7;47437:2;47421:28;;47430:5;47421:28;;;;;;;;;;;;47261:196;;;:::o;45181:1962::-;45296:35;45334:20;45346:7;45334:11;:20::i;:::-;45296:58;;45367:22;45409:13;:18;;;45393:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45468:12;:10;:12::i;:::-;45444:36;;:20;45456:7;45444:11;:20::i;:::-;:36;;;45393:87;:154;;;;45497:50;45514:13;:18;;;45534:12;:10;:12::i;:::-;45497:16;:50::i;:::-;45393:154;45367:181;;45566:17;45561:66;;45592:35;;;;;;;;;;;;;;45561:66;45664:4;45642:26;;:13;:18;;;:26;;;45638:67;;45677:28;;;;;;;;;;;;;;45638:67;45734:1;45720:16;;:2;:16;;;45716:52;;;45745:23;;;;;;;;;;;;;;45716:52;45781:43;45803:4;45809:2;45813:7;45822:1;45781:21;:43::i;:::-;45889:49;45906:1;45910:7;45919:13;:18;;;45889:8;:49::i;:::-;46264:1;46234:12;:18;46247:4;46234:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46308:1;46280:12;:16;46293:2;46280:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46354:2;46326:11;:20;46338:7;46326:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46416:15;46371:11;:20;46383:7;46371:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46684:19;46716:1;46706:7;:11;46684:33;;46777:1;46736:43;;:11;:24;46748:11;46736:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46732:295;;;46804:20;46812:11;46804:7;:20::i;:::-;46800:212;;;46881:13;:18;;;46849:11;:24;46861:11;46849:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;46964:13;:28;;;46922:11;:24;46934:11;46922:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46800:212;46732:295;46209:829;47074:7;47070:2;47055:27;;47064:4;47055:27;;;;;;;;;;;;47093:42;47114:4;47120:2;47124:7;47133:1;47093:20;:42::i;:::-;45285:1858;;45181:1962;;;:::o;17309:317::-;17424:6;17399:21;:31;;17391:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17478:12;17496:9;:14;;17518:6;17496:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17477:52;;;17548:7;17540:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;17380:246;17309:317;;:::o;42618:104::-;42687:27;42697:2;42701:8;42687:27;;;;;;;;;;;;:9;:27::i;:::-;42618:104;;:::o;38347:504::-;38408:21;;:::i;:::-;38447:16;38455:7;38447;:16::i;:::-;38442:61;;38472:31;;;;;;;;;;;;;;38442:61;38546:12;38561:7;38546:22;;38541:245;38578:1;38570:4;:9;38541:245;;38608:31;38642:11;:17;38654:4;38642:17;;;;;;;;;;;38608:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38708:1;38682:28;;:9;:14;;;:28;;;38678:93;;38742:9;38735:16;;;;;;38678:93;38589:197;38581:6;;;;;;;;38541:245;;;;38816:27;;;;;;;;;;;;;;38347:504;;;;:::o;14617:191::-;14691:16;14710:6;;;;;;;;;;;14691:25;;14736:8;14727:6;;:17;;;;;;;;;;;;;;;;;;14791:8;14760:40;;14781:8;14760:40;;;;;;;;;;;;14680:128;14617:191;:::o;48022:765::-;48177:4;48198:15;:2;:13;;;:15::i;:::-;48194:586;;;48250:2;48234:36;;;48271:12;:10;:12::i;:::-;48285:4;48291:7;48300:5;48234:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48230:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48497:1;48480:6;:13;:18;48476:234;;;48507:40;;;;;;;;;;;;;;48476:234;48660:6;48654:13;48645:6;48641:2;48637:15;48630:38;48230:495;48367:45;;;48357:55;;;:6;:55;;;;48350:62;;;;;48194:586;48764:4;48757:11;;48022:765;;;;;;;:::o;9155:723::-;9211:13;9441:1;9432:5;:10;9428:53;;;9459:10;;;;;;;;;;;;;;;;;;;;;9428:53;9491:12;9506:5;9491:20;;9522:14;9547:78;9562:1;9554:4;:9;9547:78;;9580:8;;;;;:::i;:::-;;;;9611:2;9603:10;;;;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:39;;9685:154;9701:1;9692:5;:10;9685:154;;9729:1;9719:11;;;;;:::i;:::-;;;9796:2;9788:5;:10;;;;:::i;:::-;9775:2;:24;;;;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9825:2;9816:11;;;;;:::i;:::-;;;9685:154;;;9863:6;9849:21;;;;;9155:723;;;;:::o;49275:159::-;;;;;:::o;49846:158::-;;;;;:::o;43085:163::-;43208:32;43214:2;43218:8;43228:5;43235:4;43208:5;:32::i;:::-;43085:163;;;:::o;16048:326::-;16108:4;16365:1;16343:7;:19;;;:23;16336:30;;16048:326;;;:::o;43507:1420::-;43646:20;43669:13;;43646:36;;43711:1;43697:16;;:2;:16;;;43693:48;;;43722:19;;;;;;;;;;;;;;43693:48;43768:1;43756:8;:13;43752:44;;;43778:18;;;;;;;;;;;;;;43752:44;43809:61;43839:1;43843:2;43847:12;43861:8;43809:21;:61::i;:::-;44185:8;44149:12;:16;44162:2;44149:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44250:8;44209:12;:16;44222:2;44209:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44309:2;44276:11;:25;44288:12;44276:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44376:15;44326:11;:25;44338:12;44326:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44409:20;44432:12;44409:35;;44466:9;44461:330;44481:8;44477:1;:12;44461:330;;;44545:12;44541:2;44520:38;;44537:1;44520:38;;;;;;;;;;;;44581:4;:68;;;;;44590:59;44621:1;44625:2;44629:12;44643:5;44590:22;:59::i;:::-;44589:60;44581:68;44577:164;;;44681:40;;;;;;;;;;;;;;44577:164;44761:14;;;;;;;44491:3;;;;;;;44461:330;;;;44823:12;44807:13;:28;;;;44124:723;44859:60;44888:1;44892:2;44896:12;44910:8;44859:20;:60::i;:::-;43635:1292;43507:1420;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:400::-;11411:3;11432:84;11514:1;11509:3;11432:84;:::i;:::-;11425:91;;11525:93;11614:3;11525:93;:::i;:::-;11643:1;11638:3;11634:11;11627:18;;11251:400;;;:::o;11657:366::-;11799:3;11820:67;11884:2;11879:3;11820:67;:::i;:::-;11813:74;;11896:93;11985:3;11896:93;:::i;:::-;12014:2;12009:3;12005:12;11998:19;;11657:366;;;:::o;12029:::-;12171:3;12192:67;12256:2;12251:3;12192:67;:::i;:::-;12185:74;;12268:93;12357:3;12268:93;:::i;:::-;12386:2;12381:3;12377:12;12370:19;;12029:366;;;:::o;12401:::-;12543:3;12564:67;12628:2;12623:3;12564:67;:::i;:::-;12557:74;;12640:93;12729:3;12640:93;:::i;:::-;12758:2;12753:3;12749:12;12742:19;;12401:366;;;:::o;12773:398::-;12932:3;12953:83;13034:1;13029:3;12953:83;:::i;:::-;12946:90;;13045:93;13134:3;13045:93;:::i;:::-;13163:1;13158:3;13154:11;13147:18;;12773:398;;;:::o;13177:366::-;13319:3;13340:67;13404:2;13399:3;13340:67;:::i;:::-;13333:74;;13416:93;13505:3;13416:93;:::i;:::-;13534:2;13529:3;13525:12;13518:19;;13177:366;;;:::o;13549:::-;13691:3;13712:67;13776:2;13771:3;13712:67;:::i;:::-;13705:74;;13788:93;13877:3;13788:93;:::i;:::-;13906:2;13901:3;13897:12;13890:19;;13549:366;;;:::o;13921:118::-;14008:24;14026:5;14008:24;:::i;:::-;14003:3;13996:37;13921:118;;:::o;14045:695::-;14323:3;14345:92;14433:3;14424:6;14345:92;:::i;:::-;14338:99;;14454:95;14545:3;14536:6;14454:95;:::i;:::-;14447:102;;14566:148;14710:3;14566:148;:::i;:::-;14559:155;;14731:3;14724:10;;14045:695;;;;;:::o;14746:379::-;14930:3;14952:147;15095:3;14952:147;:::i;:::-;14945:154;;15116:3;15109:10;;14746:379;;;:::o;15131:222::-;15224:4;15262:2;15251:9;15247:18;15239:26;;15275:71;15343:1;15332:9;15328:17;15319:6;15275:71;:::i;:::-;15131:222;;;;:::o;15359:640::-;15554:4;15592:3;15581:9;15577:19;15569:27;;15606:71;15674:1;15663:9;15659:17;15650:6;15606:71;:::i;:::-;15687:72;15755:2;15744:9;15740:18;15731:6;15687:72;:::i;:::-;15769;15837:2;15826:9;15822:18;15813:6;15769:72;:::i;:::-;15888:9;15882:4;15878:20;15873:2;15862:9;15858:18;15851:48;15916:76;15987:4;15978:6;15916:76;:::i;:::-;15908:84;;15359:640;;;;;;;:::o;16005:210::-;16092:4;16130:2;16119:9;16115:18;16107:26;;16143:65;16205:1;16194:9;16190:17;16181:6;16143:65;:::i;:::-;16005:210;;;;:::o;16221:313::-;16334:4;16372:2;16361:9;16357:18;16349:26;;16421:9;16415:4;16411:20;16407:1;16396:9;16392:17;16385:47;16449:78;16522:4;16513:6;16449:78;:::i;:::-;16441:86;;16221:313;;;;:::o;16540:419::-;16706:4;16744:2;16733:9;16729:18;16721:26;;16793:9;16787:4;16783:20;16779:1;16768:9;16764:17;16757:47;16821:131;16947:4;16821:131;:::i;:::-;16813:139;;16540:419;;;:::o;16965:::-;17131:4;17169:2;17158:9;17154:18;17146:26;;17218:9;17212:4;17208:20;17204:1;17193:9;17189:17;17182:47;17246:131;17372:4;17246:131;:::i;:::-;17238:139;;16965:419;;;:::o;17390:::-;17556:4;17594:2;17583:9;17579:18;17571:26;;17643:9;17637:4;17633:20;17629:1;17618:9;17614:17;17607:47;17671:131;17797:4;17671:131;:::i;:::-;17663:139;;17390:419;;;:::o;17815:::-;17981:4;18019:2;18008:9;18004:18;17996:26;;18068:9;18062:4;18058:20;18054:1;18043:9;18039:17;18032:47;18096:131;18222:4;18096:131;:::i;:::-;18088:139;;17815:419;;;:::o;18240:::-;18406:4;18444:2;18433:9;18429:18;18421:26;;18493:9;18487:4;18483:20;18479:1;18468:9;18464:17;18457:47;18521:131;18647:4;18521:131;:::i;:::-;18513:139;;18240:419;;;:::o;18665:::-;18831:4;18869:2;18858:9;18854:18;18846:26;;18918:9;18912:4;18908:20;18904:1;18893:9;18889:17;18882:47;18946:131;19072:4;18946:131;:::i;:::-;18938:139;;18665:419;;;:::o;19090:::-;19256:4;19294:2;19283:9;19279:18;19271:26;;19343:9;19337:4;19333:20;19329:1;19318:9;19314:17;19307:47;19371:131;19497:4;19371:131;:::i;:::-;19363:139;;19090:419;;;:::o;19515:::-;19681:4;19719:2;19708:9;19704:18;19696:26;;19768:9;19762:4;19758:20;19754:1;19743:9;19739:17;19732:47;19796:131;19922:4;19796:131;:::i;:::-;19788:139;;19515:419;;;:::o;19940:::-;20106:4;20144:2;20133:9;20129:18;20121:26;;20193:9;20187:4;20183:20;20179:1;20168:9;20164:17;20157:47;20221:131;20347:4;20221:131;:::i;:::-;20213:139;;19940:419;;;:::o;20365:::-;20531:4;20569:2;20558:9;20554:18;20546:26;;20618:9;20612:4;20608:20;20604:1;20593:9;20589:17;20582:47;20646:131;20772:4;20646:131;:::i;:::-;20638:139;;20365:419;;;:::o;20790:222::-;20883:4;20921:2;20910:9;20906:18;20898:26;;20934:71;21002:1;20991:9;20987:17;20978:6;20934:71;:::i;:::-;20790:222;;;;:::o;21018:129::-;21052:6;21079:20;;:::i;:::-;21069:30;;21108:33;21136:4;21128:6;21108:33;:::i;:::-;21018:129;;;:::o;21153:75::-;21186:6;21219:2;21213:9;21203:19;;21153:75;:::o;21234:307::-;21295:4;21385:18;21377:6;21374:30;21371:56;;;21407:18;;:::i;:::-;21371:56;21445:29;21467:6;21445:29;:::i;:::-;21437:37;;21529:4;21523;21519:15;21511:23;;21234:307;;;:::o;21547:308::-;21609:4;21699:18;21691:6;21688:30;21685:56;;;21721:18;;:::i;:::-;21685:56;21759:29;21781:6;21759:29;:::i;:::-;21751:37;;21843:4;21837;21833:15;21825:23;;21547:308;;;:::o;21861:141::-;21910:4;21933:3;21925:11;;21956:3;21953:1;21946:14;21990:4;21987:1;21977:18;21969:26;;21861:141;;;:::o;22008:98::-;22059:6;22093:5;22087:12;22077:22;;22008:98;;;:::o;22112:99::-;22164:6;22198:5;22192:12;22182:22;;22112:99;;;:::o;22217:168::-;22300:11;22334:6;22329:3;22322:19;22374:4;22369:3;22365:14;22350:29;;22217:168;;;;:::o;22391:147::-;22492:11;22529:3;22514:18;;22391:147;;;;:::o;22544:169::-;22628:11;22662:6;22657:3;22650:19;22702:4;22697:3;22693:14;22678:29;;22544:169;;;;:::o;22719:148::-;22821:11;22858:3;22843:18;;22719:148;;;;:::o;22873:305::-;22913:3;22932:20;22950:1;22932:20;:::i;:::-;22927:25;;22966:20;22984:1;22966:20;:::i;:::-;22961:25;;23120:1;23052:66;23048:74;23045:1;23042:81;23039:107;;;23126:18;;:::i;:::-;23039:107;23170:1;23167;23163:9;23156:16;;22873:305;;;;:::o;23184:185::-;23224:1;23241:20;23259:1;23241:20;:::i;:::-;23236:25;;23275:20;23293:1;23275:20;:::i;:::-;23270:25;;23314:1;23304:35;;23319:18;;:::i;:::-;23304:35;23361:1;23358;23354:9;23349:14;;23184:185;;;;:::o;23375:348::-;23415:7;23438:20;23456:1;23438:20;:::i;:::-;23433:25;;23472:20;23490:1;23472:20;:::i;:::-;23467:25;;23660:1;23592:66;23588:74;23585:1;23582:81;23577:1;23570:9;23563:17;23559:105;23556:131;;;23667:18;;:::i;:::-;23556:131;23715:1;23712;23708:9;23697:20;;23375:348;;;;:::o;23729:191::-;23769:4;23789:20;23807:1;23789:20;:::i;:::-;23784:25;;23823:20;23841:1;23823:20;:::i;:::-;23818:25;;23862:1;23859;23856:8;23853:34;;;23867:18;;:::i;:::-;23853:34;23912:1;23909;23905:9;23897:17;;23729:191;;;;:::o;23926:96::-;23963:7;23992:24;24010:5;23992:24;:::i;:::-;23981:35;;23926:96;;;:::o;24028:90::-;24062:7;24105:5;24098:13;24091:21;24080:32;;24028:90;;;:::o;24124:149::-;24160:7;24200:66;24193:5;24189:78;24178:89;;24124:149;;;:::o;24279:126::-;24316:7;24356:42;24349:5;24345:54;24334:65;;24279:126;;;:::o;24411:77::-;24448:7;24477:5;24466:16;;24411:77;;;:::o;24494:154::-;24578:6;24573:3;24568;24555:30;24640:1;24631:6;24626:3;24622:16;24615:27;24494:154;;;:::o;24654:307::-;24722:1;24732:113;24746:6;24743:1;24740:13;24732:113;;;24831:1;24826:3;24822:11;24816:18;24812:1;24807:3;24803:11;24796:39;24768:2;24765:1;24761:10;24756:15;;24732:113;;;24863:6;24860:1;24857:13;24854:101;;;24943:1;24934:6;24929:3;24925:16;24918:27;24854:101;24703:258;24654:307;;;:::o;24967:320::-;25011:6;25048:1;25042:4;25038:12;25028:22;;25095:1;25089:4;25085:12;25116:18;25106:81;;25172:4;25164:6;25160:17;25150:27;;25106:81;25234:2;25226:6;25223:14;25203:18;25200:38;25197:84;;;25253:18;;:::i;:::-;25197:84;25018:269;24967:320;;;:::o;25293:281::-;25376:27;25398:4;25376:27;:::i;:::-;25368:6;25364:40;25506:6;25494:10;25491:22;25470:18;25458:10;25455:34;25452:62;25449:88;;;25517:18;;:::i;:::-;25449:88;25557:10;25553:2;25546:22;25336:238;25293:281;;:::o;25580:233::-;25619:3;25642:24;25660:5;25642:24;:::i;:::-;25633:33;;25688:66;25681:5;25678:77;25675:103;;;25758:18;;:::i;:::-;25675:103;25805:1;25798:5;25794:13;25787:20;;25580:233;;;:::o;25819:176::-;25851:1;25868:20;25886:1;25868:20;:::i;:::-;25863:25;;25902:20;25920:1;25902:20;:::i;:::-;25897:25;;25941:1;25931:35;;25946:18;;:::i;:::-;25931:35;25987:1;25984;25980:9;25975:14;;25819:176;;;;:::o;26001:180::-;26049:77;26046:1;26039:88;26146:4;26143:1;26136:15;26170:4;26167:1;26160:15;26187:180;26235:77;26232:1;26225:88;26332:4;26329:1;26322:15;26356:4;26353:1;26346:15;26373:180;26421:77;26418:1;26411:88;26518:4;26515:1;26508:15;26542:4;26539:1;26532:15;26559:180;26607:77;26604:1;26597:88;26704:4;26701:1;26694:15;26728:4;26725:1;26718:15;26745:180;26793:77;26790:1;26783:88;26890:4;26887:1;26880:15;26914:4;26911:1;26904:15;26931:180;26979:77;26976:1;26969:88;27076:4;27073:1;27066:15;27100:4;27097:1;27090:15;27117:117;27226:1;27223;27216:12;27240:117;27349:1;27346;27339:12;27363:117;27472:1;27469;27462:12;27486:117;27595:1;27592;27585:12;27609:102;27650:6;27701:2;27697:7;27692:2;27685:5;27681:14;27677:28;27667:38;;27609:102;;;:::o;27717:163::-;27857:15;27853:1;27845:6;27841:14;27834:39;27717:163;:::o;27886:225::-;28026:34;28022:1;28014:6;28010:14;28003:58;28095:8;28090:2;28082:6;28078:15;28071:33;27886:225;:::o;28117:165::-;28257:17;28253:1;28245:6;28241:14;28234:41;28117:165;:::o;28288:245::-;28428:34;28424:1;28416:6;28412:14;28405:58;28497:28;28492:2;28484:6;28480:15;28473:53;28288:245;:::o;28539:179::-;28679:31;28675:1;28667:6;28663:14;28656:55;28539:179;:::o;28724:155::-;28864:7;28860:1;28852:6;28848:14;28841:31;28724:155;:::o;28885:182::-;29025:34;29021:1;29013:6;29009:14;29002:58;28885:182;:::o;29073:234::-;29213:34;29209:1;29201:6;29197:14;29190:58;29282:17;29277:2;29269:6;29265:15;29258:42;29073:234;:::o;29313:172::-;29453:24;29449:1;29441:6;29437:14;29430:48;29313:172;:::o;29491:114::-;;:::o;29611:166::-;29751:18;29747:1;29739:6;29735:14;29728:42;29611:166;:::o;29783:168::-;29923:20;29919:1;29911:6;29907:14;29900:44;29783:168;:::o;29957:122::-;30030:24;30048:5;30030:24;:::i;:::-;30023:5;30020:35;30010:63;;30069:1;30066;30059:12;30010:63;29957:122;:::o;30085:116::-;30155:21;30170:5;30155:21;:::i;:::-;30148:5;30145:32;30135:60;;30191:1;30188;30181:12;30135:60;30085:116;:::o;30207:120::-;30279:23;30296:5;30279:23;:::i;:::-;30272:5;30269:34;30259:62;;30317:1;30314;30307:12;30259:62;30207:120;:::o;30333:122::-;30406:24;30424:5;30406:24;:::i;:::-;30399:5;30396:35;30386:63;;30445:1;30442;30435:12;30386:63;30333:122;:::o

Swarm Source

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