ETH Price: $3,245.96 (+2.55%)
Gas: 1 Gwei

Token

NothingHasBegun (NOTHING)
 

Overview

Max Total Supply

1,000 NOTHING

Holders

503

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
arffin.eth
Balance
1 NOTHING
0x4130a43c7eefca02dce917715b889f9eec01d2e8
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:
Nothing

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (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.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) if(!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 virtual 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 virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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) 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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/Nothing.sol



pragma solidity >=0.8.9 <0.9.0;





contract Nothing is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    bytes32 public merkleRoot;
    mapping(address => bool) public whitelistClaimed;

    string public uriPrefix = "ipfs://QmWdv2MXjX6X96vyzLkunYeWrQxvUESCWpUi7TE9Sk4WmC/";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;

    uint256 public cost;
    uint256 public maxSupply;
    uint256 public maxMintAmountPerTx;
    uint256 public maxMintAmountPerAddress;

    bool public paused = true;
    bool public whitelistMintEnabled = false;
    bool public revealed = true;

    mapping(address => uint256) public totalMintedByAddress;

    constructor(
        string memory _tokenName,
        string memory _tokenSymbol,
        uint256 _cost,
        uint256 _maxSupply,
        uint256 _maxMintAmountPerTx,
        uint256 _maxMintAmountPerAddress,
        string memory _hiddenMetadataUri
    ) ERC721A(_tokenName, _tokenSymbol) {
        setCost(_cost);
        maxSupply = _maxSupply;
        setMaxMintAmountPerTx(_maxMintAmountPerTx);
        setMaxMintAmountPerAddress(_maxMintAmountPerAddress);
        setHiddenMetadataUri(_hiddenMetadataUri);
    }

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
        require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
        _;
    }

    modifier mintPriceCompliance(uint256 _mintAmount) {
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        _;
    }

    function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
        // Verify whitelist requirements
        require(whitelistMintEnabled, "The whitelist sale is not enabled!");
        require(!whitelistClaimed[_msgSender()], "Address already claimed!");
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof!");

        whitelistClaimed[_msgSender()] = true;
        _safeMint(_msgSender(), _mintAmount);
    }

    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
        require(totalMintedByAddress[msg.sender] + _mintAmount <= maxMintAmountPerAddress, "Exceeded maximum total amount!");
        require(!paused, "The contract is paused!");

        for (uint256 i = 0; i < _mintAmount; i++) {
            totalMintedByAddress[msg.sender]++;
        }

        _safeMint(_msgSender(), _mintAmount);
    }

    function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
        _safeMint(_receiver, _mintAmount);
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = _startTokenId();
        uint256 ownedTokenIndex = 0;
        address latestOwnerAddress;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            TokenOwnership memory ownership = _ownerships[currentTokenId];

            if (!ownership.burned && ownership.addr != address(0)) {
                latestOwnerAddress = ownership.addr;
            }

            if (latestOwnerAddress == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

        if (revealed == false) {
            return hiddenMetadataUri;
        }

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

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

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

    function setWhitelistMintEnabled(bool _state) public onlyOwner {
        whitelistMintEnabled = _state;
    }

    function setMaxMintAmountPerAddress(uint256 _maxMintAmountPerAddress) public onlyOwner {
        maxMintAmountPerAddress = _maxMintAmountPerAddress;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerAddress","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerAddress","type":"uint256"}],"name":"setMaxMintAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalMintedByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526036608081815290620031e460a03980516200002991600c916020909101906200045e565b506040805180820190915260058082527f2e6a736f6e00000000000000000000000000000000000000000000000000000060209092019182526200007091600d916200045e565b506013805462ffffff1916620100011790553480156200008f57600080fd5b506040516200321a3803806200321a833981016040819052620000b291620005ea565b865187908790620000cb9060029060208501906200045e565b508051620000e19060039060208401906200045e565b50620000f564010000000062000188810204565b60005550620001219050620001126401000000006200018d810204565b64010000000062000191810204565b60016009556200013a85640100000000620001e3810204565b601084905562000153836401000000006200027c810204565b620001678264010000000062000311810204565b6200017b81640100000000620003a6810204565b50505050505050620006f8565b600190565b3390565b60088054600160a060020a03838116600160a060020a0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001f66401000000006200018d810204565b600160a060020a0316620002126401000000006200044f810204565b600160a060020a03161462000277576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018190526024820152600080516020620031c483398151915260448201526064015b60405180910390fd5b600f55565b6200028f6401000000006200018d810204565b600160a060020a0316620002ab6401000000006200044f810204565b600160a060020a0316146200030c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018190526024820152600080516020620031c483398151915260448201526064016200026e565b601155565b620003246401000000006200018d810204565b600160a060020a0316620003406401000000006200044f810204565b600160a060020a031614620003a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018190526024820152600080516020620031c483398151915260448201526064016200026e565b601255565b620003b96401000000006200018d810204565b600160a060020a0316620003d56401000000006200044f810204565b600160a060020a03161462000436576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018190526024820152600080516020620031c483398151915260448201526064016200026e565b80516200044b90600e9060208401906200045e565b5050565b600854600160a060020a031690565b8280546200046c90620006a2565b90600052602060002090601f016020900481019282620004905760008555620004db565b82601f10620004ab57805160ff1916838001178555620004db565b82800160010185558215620004db579182015b82811115620004db578251825591602001919060010190620004be565b50620004e9929150620004ed565b5090565b5b80821115620004e95760008155600101620004ee565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f8301126200054557600080fd5b81516001604060020a038082111562000562576200056262000504565b604051601f8301601f19908116603f011681019082821181831017156200058d576200058d62000504565b81604052838152602092508683858801011115620005aa57600080fd5b600091505b83821015620005ce5785820183015181830184015290820190620005af565b83821115620005e05760008385830101525b9695505050505050565b600080600080600080600060e0888a0312156200060657600080fd5b87516001604060020a03808211156200061e57600080fd5b6200062c8b838c0162000533565b985060208a01519150808211156200064357600080fd5b620006518b838c0162000533565b975060408a0151965060608a0151955060808a0151945060a08a0151935060c08a01519150808211156200068457600080fd5b50620006938a828b0162000533565b91505092959891949750929550565b600281046001821680620006b757607f821691505b60208210811415620006f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b612abc80620007086000396000f3fe6080604052600436106102765760003560e060020a900480636caede3d11610153578063a45ba8e7116100c5578063d5abeb011161007e578063d5abeb0114610725578063db4bec441461073b578063e0a808531461076b578063e985e9c51461078b578063efbd73f4146107d4578063f2fde38b146107f457600080fd5b8063a45ba8e71461067d578063b071401b14610692578063b767a098146106b2578063b88d4fde146106d2578063c87b56dd146106f2578063d2cab0561461071257600080fd5b80638da5cb5b116101175780638da5cb5b146105d457806394354fd0146105f257806395d89b411461060857806397cf84fc1461061d578063a0712d681461064a578063a22cb4651461065d57600080fd5b80636caede3d1461054057806370a082311461055f578063715018a61461057f5780637cb64759146105945780637ec4a659146105b457600080fd5b806342842e0e116101ec5780635503a0e8116101b05780635503a0e8146104a65780635697f53e146104bb5780635c41d75e146104db5780635c975abb146104f157806362b99ad41461050b5780636352211e1461052057600080fd5b806342842e0e146103f9578063438b63001461041957806344a0d68a146104465780634fdd43cb14610466578063518302271461048657600080fd5b806316ba10e01161023e57806316ba10e01461035057806316c38b3c1461037057806318160ddd1461039057806323b872dd146103ae5780632eb4a7ab146103ce5780633ccfd60b146103e457600080fd5b806301ffc9a71461027b57806306fdde03146102b0578063081812fc146102d2578063095ea7b31461030a57806313faede61461032c575b600080fd5b34801561028757600080fd5b5061029b6102963660046123aa565b610814565b60405190151581526020015b60405180910390f35b3480156102bc57600080fd5b506102c56108b1565b6040516102a7919061241f565b3480156102de57600080fd5b506102f26102ed366004612432565b610943565b604051600160a060020a0390911681526020016102a7565b34801561031657600080fd5b5061032a610325366004612467565b6109a0565b005b34801561033857600080fd5b50610342600f5481565b6040519081526020016102a7565b34801561035c57600080fd5b5061032a61036b366004612520565b610a59565b34801561037c57600080fd5b5061032a61038b366004612579565b610aa6565b34801561039c57600080fd5b50610342600154600054036000190190565b3480156103ba57600080fd5b5061032a6103c9366004612594565b610ae6565b3480156103da57600080fd5b50610342600a5481565b3480156103f057600080fd5b5061032a610af1565b34801561040557600080fd5b5061032a610414366004612594565b610bfc565b34801561042557600080fd5b506104396104343660046125d0565b610c17565b6040516102a791906125eb565b34801561045257600080fd5b5061032a610461366004612432565b610d60565b34801561047257600080fd5b5061032a610481366004612520565b610d92565b34801561049257600080fd5b5060135461029b9062010000900460ff1681565b3480156104b257600080fd5b506102c5610dd2565b3480156104c757600080fd5b5061032a6104d6366004612432565b610e60565b3480156104e757600080fd5b5061034260125481565b3480156104fd57600080fd5b5060135461029b9060ff1681565b34801561051757600080fd5b506102c5610e92565b34801561052c57600080fd5b506102f261053b366004612432565b610e9f565b34801561054c57600080fd5b5060135461029b90610100900460ff1681565b34801561056b57600080fd5b5061034261057a3660046125d0565b610eb1565b34801561058b57600080fd5b5061032a610f19565b3480156105a057600080fd5b5061032a6105af366004612432565b610f52565b3480156105c057600080fd5b5061032a6105cf366004612520565b610f84565b3480156105e057600080fd5b50600854600160a060020a03166102f2565b3480156105fe57600080fd5b5061034260115481565b34801561061457600080fd5b506102c5610fc4565b34801561062957600080fd5b506103426106383660046125d0565b60146020526000908152604090205481565b61032a610658366004612432565b610fd3565b34801561066957600080fd5b5061032a61067836600461262f565b6111b4565b34801561068957600080fd5b506102c5611263565b34801561069e57600080fd5b5061032a6106ad366004612432565b611270565b3480156106be57600080fd5b5061032a6106cd366004612579565b6112a2565b3480156106de57600080fd5b5061032a6106ed366004612662565b6112e9565b3480156106fe57600080fd5b506102c561070d366004612432565b61134c565b61032a6107203660046126de565b6114cd565b34801561073157600080fd5b5061034260105481565b34801561074757600080fd5b5061029b6107563660046125d0565b600b6020526000908152604090205460ff1681565b34801561077757600080fd5b5061032a610786366004612579565b611780565b34801561079757600080fd5b5061029b6107a636600461275c565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107e057600080fd5b5061032a6107ef366004612786565b6117c9565b34801561080057600080fd5b5061032a61080f3660046125d0565b611872565b6000600160e060020a031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108775750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108ab57507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316145b92915050565b6060600280546108c0906127a9565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906127a9565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600061094e8261192a565b610984576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50600090815260066020526040902054600160a060020a031690565b60006109ab82610e9f565b905080600160a060020a031683600160a060020a031614156109f9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600160a060020a03821614610a4957610a1381336107a6565b610a49576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a54838383611963565b505050565b600854600160a060020a03163314610a8f5760405160e560020a62461bcd028152600401610a86906127e7565b60405180910390fd5b8051610aa290600d9060208401906122fb565b5050565b600854600160a060020a03163314610ad35760405160e560020a62461bcd028152600401610a86906127e7565b6013805460ff1916911515919091179055565b610a548383836119cc565b600854600160a060020a03163314610b1e5760405160e560020a62461bcd028152600401610a86906127e7565b60026009541415610b745760405160e560020a62461bcd02815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a86565b60026009556000610b8d600854600160a060020a031690565b600160a060020a031630600160a060020a03163160405160006040518083038185875af1925050503d8060008114610be1576040519150601f19603f3d011682016040523d82523d6000602084013e610be6565b606091505b5050905080610bf457600080fd5b506001600955565b610a54838383604051806020016040528060008152506112e9565b60606000610c2483610eb1565b905060008167ffffffffffffffff811115610c4157610c41612491565b604051908082528060200260200182016040528015610c6a578160200160208202803683370190505b50905060016000805b8482108015610c8457506010548311155b15610d555760008381526004602090815260409182902082516060810184529054600160a060020a038116825260a060020a810467ffffffffffffffff169282019290925260e060020a90910460ff161580159282018390529091610cf257508051600160a060020a031615155b15610cfc57805191505b87600160a060020a031682600160a060020a03161415610d425783858481518110610d2957610d2961281c565b602090810291909101015282610d3e8161284e565b9350505b83610d4c8161284e565b94505050610c73565b509195945050505050565b600854600160a060020a03163314610d8d5760405160e560020a62461bcd028152600401610a86906127e7565b600f55565b600854600160a060020a03163314610dbf5760405160e560020a62461bcd028152600401610a86906127e7565b8051610aa290600e9060208401906122fb565b600d8054610ddf906127a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0b906127a9565b8015610e585780601f10610e2d57610100808354040283529160200191610e58565b820191906000526020600020905b815481529060010190602001808311610e3b57829003601f168201915b505050505081565b600854600160a060020a03163314610e8d5760405160e560020a62461bcd028152600401610a86906127e7565b601255565b600c8054610ddf906127a9565b6000610eaa82611c07565b5192915050565b6000600160a060020a038216610ef3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50600160a060020a031660009081526005602052604090205467ffffffffffffffff1690565b600854600160a060020a03163314610f465760405160e560020a62461bcd028152600401610a86906127e7565b610f506000611d44565b565b600854600160a060020a03163314610f7f5760405160e560020a62461bcd028152600401610a86906127e7565b600a55565b600854600160a060020a03163314610fb15760405160e560020a62461bcd028152600401610a86906127e7565b8051610aa290600c9060208401906122fb565b6060600380546108c0906127a9565b80600081118015610fe657506011548111155b6110055760405160e560020a62461bcd028152600401610a8690612869565b6010548161101a600154600054036000190190565b61102491906128a0565b11156110455760405160e560020a62461bcd028152600401610a86906128b8565b8180600f5461105491906128ef565b3410156110a65760405160e560020a62461bcd02815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610a86565b601254336000908152601460205260409020546110c49085906128a0565b11156111155760405160e560020a62461bcd02815260206004820152601e60248201527f4578636565646564206d6178696d756d20746f74616c20616d6f756e742100006044820152606401610a86565b60135460ff161561116b5760405160e560020a62461bcd02815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610a86565b60005b838110156111a9573360009081526014602052604081208054916111918361284e565b919050555080806111a19061284e565b91505061116e565b50610a543384611da3565b600160a060020a0382163314156111f7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600760209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e8054610ddf906127a9565b600854600160a060020a0316331461129d5760405160e560020a62461bcd028152600401610a86906127e7565b601155565b600854600160a060020a031633146112cf5760405160e560020a62461bcd028152600401610a86906127e7565b601380549115156101000261ff0019909216919091179055565b6112f48484846119cc565b600160a060020a0383163b156113465761131084848484611dbd565b611346576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606113578261192a565b6113cc5760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a86565b60135462010000900460ff1661146e57600e80546113e9906127a9565b80601f0160208091040260200160405190810160405280929190818152602001828054611415906127a9565b80156114625780601f1061143757610100808354040283529160200191611462565b820191906000526020600020905b81548152906001019060200180831161144557829003601f168201915b50505050509050919050565b6000611478611f00565b9050600081511161149857604051806020016040528060008152506114c6565b806114a284611f0f565b600d6040516020016114b69392919061290e565b6040516020818303038152906040525b9392505050565b826000811180156114e057506011548111155b6114ff5760405160e560020a62461bcd028152600401610a8690612869565b60105481611514600154600054036000190190565b61151e91906128a0565b111561153f5760405160e560020a62461bcd028152600401610a86906128b8565b8380600f5461154e91906128ef565b3410156115a05760405160e560020a62461bcd02815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610a86565b601354610100900460ff166116205760405160e560020a62461bcd02815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560448201527f64210000000000000000000000000000000000000000000000000000000000006064820152608401610a86565b336000908152600b602052604090205460ff16156116835760405160e560020a62461bcd02815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610a86565b600033604051600160a060020a03919091166c0100000000000000000000000002602082015260340160405160208183030381529060405280519060200120905061170585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612060565b6117545760405160e560020a62461bcd02815260206004820152600e60248201527f496e76616c69642070726f6f66210000000000000000000000000000000000006044820152606401610a86565b336000818152600b60205260409020805460ff191660011790556117789087611da3565b505050505050565b600854600160a060020a031633146117ad5760405160e560020a62461bcd028152600401610a86906127e7565b60138054911515620100000262ff000019909216919091179055565b816000811180156117dc57506011548111155b6117fb5760405160e560020a62461bcd028152600401610a8690612869565b60105481611810600154600054036000190190565b61181a91906128a0565b111561183b5760405160e560020a62461bcd028152600401610a86906128b8565b600854600160a060020a031633146118685760405160e560020a62461bcd028152600401610a86906127e7565b610a548284611da3565b600854600160a060020a0316331461189f5760405160e560020a62461bcd028152600401610a86906127e7565b600160a060020a03811661191e5760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a86565b61192781611d44565b50565b60008160011115801561193e575060005482105b80156108ab57505060009081526004602052604090205460e060020a900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119d782611c07565b905083600160a060020a03168160000151600160a060020a031614611a28576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600033600160a060020a0386161480611a465750611a4685336107a6565b80611a61575033611a5684610943565b600160a060020a0316145b905080611a9a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160a060020a038416611ada576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ae660008487611963565b600160a060020a038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff9283166000190183161790925589861680865283862080549384169383166001908101841694909417905589865260049094528285208054600160e060020a03191690941760a060020a42909216919091021783558701808452922080549193909116611bbc576000548214611bbc578054602086015167ffffffffffffffff1660a060020a02600160e060020a0319909116600160a060020a038a16171781555b5050508284600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111611d1257600054811015611d125760008181526004602090815260409182902082516060810184529054600160a060020a038116825260a060020a810467ffffffffffffffff169282019290925260e060020a90910460ff16151591810182905290611d10578051600160a060020a031615611ca6579392505050565b506000190160008181526004602090815260409182902082516060810184529054600160a060020a03811680835260a060020a820467ffffffffffffffff169383019390935260e060020a900460ff1615159281019290925215611d0b579392505050565b611ca6565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60088054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610aa2828260405180602001604052806000815250612076565b6040517f150b7a02000000000000000000000000000000000000000000000000000000008152600090600160a060020a0385169063150b7a0290611e0b9033908990889088906004016129d5565b602060405180830381600087803b158015611e2557600080fd5b505af1925050508015611e55575060408051601f3d908101601f19168201909252611e5291810190612a11565b60015b611ec9573d808015611e83576040519150601f19603f3d011682016040523d82523d6000602084013e611e88565b606091505b508051611ec1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b600160e060020a0319167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600c80546108c0906127a9565b606081611f4f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f795780611f638161284e565b9150611f729050600a83612a47565b9150611f53565b60008167ffffffffffffffff811115611f9457611f94612491565b6040519080825280601f01601f191660200182016040528015611fbe576020820181803683370190505b5090505b8415611ef857611fd3600183612a5b565b9150611fe0600a86612a72565b611feb9060306128a0565b7f01000000000000000000000000000000000000000000000000000000000000000281838151811061201f5761201f61281c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612059600a86612a47565b9450611fc2565b60008261206d8584612287565b14949350505050565b600054600160a060020a0384166120b9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826120f0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160a060020a038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b0181169092021790915585845260049092529091208054600160e060020a031916831760a060020a42909316929092029190911790558190818501903b15612232575b6040518290600160a060020a038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121e26000878480600101955087611dbd565b612218576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061219757826000541461222d57600080fd5b612277565b5b604051600183019290600160a060020a038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612233575b5060009081556113469085838684565b600081815b84518110156122f35760008582815181106122a9576122a961281c565b602002602001015190508083116122cf57600083815260208290526040902092506122e0565b600081815260208490526040902092505b50806122eb8161284e565b91505061228c565b509392505050565b828054612307906127a9565b90600052602060002090601f016020900481019282612329576000855561236f565b82601f1061234257805160ff191683800117855561236f565b8280016001018555821561236f579182015b8281111561236f578251825591602001919060010190612354565b5061237b92915061237f565b5090565b5b8082111561237b5760008155600101612380565b600160e060020a03198116811461192757600080fd5b6000602082840312156123bc57600080fd5b81356114c681612394565b60005b838110156123e25781810151838201526020016123ca565b838111156113465750506000910152565b6000815180845261240b8160208601602086016123c7565b601f01601f19169290920160200192915050565b6020815260006114c660208301846123f3565b60006020828403121561244457600080fd5b5035919050565b8035600160a060020a038116811461246257600080fd5b919050565b6000806040838503121561247a57600080fd5b6124838361244b565b946020939093013593505050565b60e060020a634e487b7102600052604160045260246000fd5b600067ffffffffffffffff808411156124c5576124c5612491565b604051601f8501601f19908116603f011681019082821181831017156124ed576124ed612491565b8160405280935085815286868601111561250657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561253257600080fd5b813567ffffffffffffffff81111561254957600080fd5b8201601f8101841361255a57600080fd5b611ef8848235602084016124aa565b8035801515811461246257600080fd5b60006020828403121561258b57600080fd5b6114c682612569565b6000806000606084860312156125a957600080fd5b6125b28461244b565b92506125c06020850161244b565b9150604084013590509250925092565b6000602082840312156125e257600080fd5b6114c68261244b565b6020808252825182820181905260009190848201906040850190845b8181101561262357835183529284019291840191600101612607565b50909695505050505050565b6000806040838503121561264257600080fd5b61264b8361244b565b915061265960208401612569565b90509250929050565b6000806000806080858703121561267857600080fd5b6126818561244b565b935061268f6020860161244b565b925060408501359150606085013567ffffffffffffffff8111156126b257600080fd5b8501601f810187136126c357600080fd5b6126d2878235602084016124aa565b91505092959194509250565b6000806000604084860312156126f357600080fd5b83359250602084013567ffffffffffffffff8082111561271257600080fd5b818601915086601f83011261272657600080fd5b81358181111561273557600080fd5b876020808302850101111561274957600080fd5b6020830194508093505050509250925092565b6000806040838503121561276f57600080fd5b6127788361244b565b91506126596020840161244b565b6000806040838503121561279957600080fd5b823591506126596020840161244b565b6002810460018216806127bd57607f821691505b602082108114156127e15760e060020a634e487b7102600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60e060020a634e487b7102600052603260045260246000fd5b60e060020a634e487b7102600052601160045260246000fd5b600060001982141561286257612862612835565b5060010190565b60208082526014908201527f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000604082015260600190565b600082198211156128b3576128b3612835565b500190565b60208082526014908201527f4d617820737570706c7920657863656564656421000000000000000000000000604082015260600190565b600081600019048311821515161561290957612909612835565b500290565b6000845160206129218285838a016123c7565b8551918401916129348184848a016123c7565b85549201916000906002810460018083168061295157607f831692505b8583108114156129725760e060020a634e487b710285526022600452602485fd5b8080156129865760018114612997576129c4565b60ff198516885283880195506129c4565b60008b81526020902060005b858110156129bc5781548a8201529084019088016129a3565b505083880195505b50939b9a5050505050505050505050565b6000600160a060020a03808716835280861660208401525083604083015260806060830152612a0760808301846123f3565b9695505050505050565b600060208284031215612a2357600080fd5b81516114c681612394565b60e060020a634e487b7102600052601260045260246000fd5b600082612a5657612a56612a2e565b500490565b600082821015612a6d57612a6d612835565b500390565b600082612a8157612a81612a2e565b50069056fea26469706673582212206f907c39f3f01b5959fe5cb84b066072b8291688425ecdc75fa094ba561d690f64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572697066733a2f2f516d576476324d586a583658393676797a4c6b756e59655772517876554553435770556937544539536b34576d432f00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000f4e6f7468696e67486173426567756e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074e4f5448494e47000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102765760003560e060020a900480636caede3d11610153578063a45ba8e7116100c5578063d5abeb011161007e578063d5abeb0114610725578063db4bec441461073b578063e0a808531461076b578063e985e9c51461078b578063efbd73f4146107d4578063f2fde38b146107f457600080fd5b8063a45ba8e71461067d578063b071401b14610692578063b767a098146106b2578063b88d4fde146106d2578063c87b56dd146106f2578063d2cab0561461071257600080fd5b80638da5cb5b116101175780638da5cb5b146105d457806394354fd0146105f257806395d89b411461060857806397cf84fc1461061d578063a0712d681461064a578063a22cb4651461065d57600080fd5b80636caede3d1461054057806370a082311461055f578063715018a61461057f5780637cb64759146105945780637ec4a659146105b457600080fd5b806342842e0e116101ec5780635503a0e8116101b05780635503a0e8146104a65780635697f53e146104bb5780635c41d75e146104db5780635c975abb146104f157806362b99ad41461050b5780636352211e1461052057600080fd5b806342842e0e146103f9578063438b63001461041957806344a0d68a146104465780634fdd43cb14610466578063518302271461048657600080fd5b806316ba10e01161023e57806316ba10e01461035057806316c38b3c1461037057806318160ddd1461039057806323b872dd146103ae5780632eb4a7ab146103ce5780633ccfd60b146103e457600080fd5b806301ffc9a71461027b57806306fdde03146102b0578063081812fc146102d2578063095ea7b31461030a57806313faede61461032c575b600080fd5b34801561028757600080fd5b5061029b6102963660046123aa565b610814565b60405190151581526020015b60405180910390f35b3480156102bc57600080fd5b506102c56108b1565b6040516102a7919061241f565b3480156102de57600080fd5b506102f26102ed366004612432565b610943565b604051600160a060020a0390911681526020016102a7565b34801561031657600080fd5b5061032a610325366004612467565b6109a0565b005b34801561033857600080fd5b50610342600f5481565b6040519081526020016102a7565b34801561035c57600080fd5b5061032a61036b366004612520565b610a59565b34801561037c57600080fd5b5061032a61038b366004612579565b610aa6565b34801561039c57600080fd5b50610342600154600054036000190190565b3480156103ba57600080fd5b5061032a6103c9366004612594565b610ae6565b3480156103da57600080fd5b50610342600a5481565b3480156103f057600080fd5b5061032a610af1565b34801561040557600080fd5b5061032a610414366004612594565b610bfc565b34801561042557600080fd5b506104396104343660046125d0565b610c17565b6040516102a791906125eb565b34801561045257600080fd5b5061032a610461366004612432565b610d60565b34801561047257600080fd5b5061032a610481366004612520565b610d92565b34801561049257600080fd5b5060135461029b9062010000900460ff1681565b3480156104b257600080fd5b506102c5610dd2565b3480156104c757600080fd5b5061032a6104d6366004612432565b610e60565b3480156104e757600080fd5b5061034260125481565b3480156104fd57600080fd5b5060135461029b9060ff1681565b34801561051757600080fd5b506102c5610e92565b34801561052c57600080fd5b506102f261053b366004612432565b610e9f565b34801561054c57600080fd5b5060135461029b90610100900460ff1681565b34801561056b57600080fd5b5061034261057a3660046125d0565b610eb1565b34801561058b57600080fd5b5061032a610f19565b3480156105a057600080fd5b5061032a6105af366004612432565b610f52565b3480156105c057600080fd5b5061032a6105cf366004612520565b610f84565b3480156105e057600080fd5b50600854600160a060020a03166102f2565b3480156105fe57600080fd5b5061034260115481565b34801561061457600080fd5b506102c5610fc4565b34801561062957600080fd5b506103426106383660046125d0565b60146020526000908152604090205481565b61032a610658366004612432565b610fd3565b34801561066957600080fd5b5061032a61067836600461262f565b6111b4565b34801561068957600080fd5b506102c5611263565b34801561069e57600080fd5b5061032a6106ad366004612432565b611270565b3480156106be57600080fd5b5061032a6106cd366004612579565b6112a2565b3480156106de57600080fd5b5061032a6106ed366004612662565b6112e9565b3480156106fe57600080fd5b506102c561070d366004612432565b61134c565b61032a6107203660046126de565b6114cd565b34801561073157600080fd5b5061034260105481565b34801561074757600080fd5b5061029b6107563660046125d0565b600b6020526000908152604090205460ff1681565b34801561077757600080fd5b5061032a610786366004612579565b611780565b34801561079757600080fd5b5061029b6107a636600461275c565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107e057600080fd5b5061032a6107ef366004612786565b6117c9565b34801561080057600080fd5b5061032a61080f3660046125d0565b611872565b6000600160e060020a031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108775750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108ab57507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316145b92915050565b6060600280546108c0906127a9565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906127a9565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600061094e8261192a565b610984576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50600090815260066020526040902054600160a060020a031690565b60006109ab82610e9f565b905080600160a060020a031683600160a060020a031614156109f9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600160a060020a03821614610a4957610a1381336107a6565b610a49576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a54838383611963565b505050565b600854600160a060020a03163314610a8f5760405160e560020a62461bcd028152600401610a86906127e7565b60405180910390fd5b8051610aa290600d9060208401906122fb565b5050565b600854600160a060020a03163314610ad35760405160e560020a62461bcd028152600401610a86906127e7565b6013805460ff1916911515919091179055565b610a548383836119cc565b600854600160a060020a03163314610b1e5760405160e560020a62461bcd028152600401610a86906127e7565b60026009541415610b745760405160e560020a62461bcd02815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a86565b60026009556000610b8d600854600160a060020a031690565b600160a060020a031630600160a060020a03163160405160006040518083038185875af1925050503d8060008114610be1576040519150601f19603f3d011682016040523d82523d6000602084013e610be6565b606091505b5050905080610bf457600080fd5b506001600955565b610a54838383604051806020016040528060008152506112e9565b60606000610c2483610eb1565b905060008167ffffffffffffffff811115610c4157610c41612491565b604051908082528060200260200182016040528015610c6a578160200160208202803683370190505b50905060016000805b8482108015610c8457506010548311155b15610d555760008381526004602090815260409182902082516060810184529054600160a060020a038116825260a060020a810467ffffffffffffffff169282019290925260e060020a90910460ff161580159282018390529091610cf257508051600160a060020a031615155b15610cfc57805191505b87600160a060020a031682600160a060020a03161415610d425783858481518110610d2957610d2961281c565b602090810291909101015282610d3e8161284e565b9350505b83610d4c8161284e565b94505050610c73565b509195945050505050565b600854600160a060020a03163314610d8d5760405160e560020a62461bcd028152600401610a86906127e7565b600f55565b600854600160a060020a03163314610dbf5760405160e560020a62461bcd028152600401610a86906127e7565b8051610aa290600e9060208401906122fb565b600d8054610ddf906127a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0b906127a9565b8015610e585780601f10610e2d57610100808354040283529160200191610e58565b820191906000526020600020905b815481529060010190602001808311610e3b57829003601f168201915b505050505081565b600854600160a060020a03163314610e8d5760405160e560020a62461bcd028152600401610a86906127e7565b601255565b600c8054610ddf906127a9565b6000610eaa82611c07565b5192915050565b6000600160a060020a038216610ef3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50600160a060020a031660009081526005602052604090205467ffffffffffffffff1690565b600854600160a060020a03163314610f465760405160e560020a62461bcd028152600401610a86906127e7565b610f506000611d44565b565b600854600160a060020a03163314610f7f5760405160e560020a62461bcd028152600401610a86906127e7565b600a55565b600854600160a060020a03163314610fb15760405160e560020a62461bcd028152600401610a86906127e7565b8051610aa290600c9060208401906122fb565b6060600380546108c0906127a9565b80600081118015610fe657506011548111155b6110055760405160e560020a62461bcd028152600401610a8690612869565b6010548161101a600154600054036000190190565b61102491906128a0565b11156110455760405160e560020a62461bcd028152600401610a86906128b8565b8180600f5461105491906128ef565b3410156110a65760405160e560020a62461bcd02815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610a86565b601254336000908152601460205260409020546110c49085906128a0565b11156111155760405160e560020a62461bcd02815260206004820152601e60248201527f4578636565646564206d6178696d756d20746f74616c20616d6f756e742100006044820152606401610a86565b60135460ff161561116b5760405160e560020a62461bcd02815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610a86565b60005b838110156111a9573360009081526014602052604081208054916111918361284e565b919050555080806111a19061284e565b91505061116e565b50610a543384611da3565b600160a060020a0382163314156111f7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600760209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e8054610ddf906127a9565b600854600160a060020a0316331461129d5760405160e560020a62461bcd028152600401610a86906127e7565b601155565b600854600160a060020a031633146112cf5760405160e560020a62461bcd028152600401610a86906127e7565b601380549115156101000261ff0019909216919091179055565b6112f48484846119cc565b600160a060020a0383163b156113465761131084848484611dbd565b611346576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606113578261192a565b6113cc5760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a86565b60135462010000900460ff1661146e57600e80546113e9906127a9565b80601f0160208091040260200160405190810160405280929190818152602001828054611415906127a9565b80156114625780601f1061143757610100808354040283529160200191611462565b820191906000526020600020905b81548152906001019060200180831161144557829003601f168201915b50505050509050919050565b6000611478611f00565b9050600081511161149857604051806020016040528060008152506114c6565b806114a284611f0f565b600d6040516020016114b69392919061290e565b6040516020818303038152906040525b9392505050565b826000811180156114e057506011548111155b6114ff5760405160e560020a62461bcd028152600401610a8690612869565b60105481611514600154600054036000190190565b61151e91906128a0565b111561153f5760405160e560020a62461bcd028152600401610a86906128b8565b8380600f5461154e91906128ef565b3410156115a05760405160e560020a62461bcd02815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610a86565b601354610100900460ff166116205760405160e560020a62461bcd02815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560448201527f64210000000000000000000000000000000000000000000000000000000000006064820152608401610a86565b336000908152600b602052604090205460ff16156116835760405160e560020a62461bcd02815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610a86565b600033604051600160a060020a03919091166c0100000000000000000000000002602082015260340160405160208183030381529060405280519060200120905061170585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612060565b6117545760405160e560020a62461bcd02815260206004820152600e60248201527f496e76616c69642070726f6f66210000000000000000000000000000000000006044820152606401610a86565b336000818152600b60205260409020805460ff191660011790556117789087611da3565b505050505050565b600854600160a060020a031633146117ad5760405160e560020a62461bcd028152600401610a86906127e7565b60138054911515620100000262ff000019909216919091179055565b816000811180156117dc57506011548111155b6117fb5760405160e560020a62461bcd028152600401610a8690612869565b60105481611810600154600054036000190190565b61181a91906128a0565b111561183b5760405160e560020a62461bcd028152600401610a86906128b8565b600854600160a060020a031633146118685760405160e560020a62461bcd028152600401610a86906127e7565b610a548284611da3565b600854600160a060020a0316331461189f5760405160e560020a62461bcd028152600401610a86906127e7565b600160a060020a03811661191e5760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a86565b61192781611d44565b50565b60008160011115801561193e575060005482105b80156108ab57505060009081526004602052604090205460e060020a900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119d782611c07565b905083600160a060020a03168160000151600160a060020a031614611a28576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600033600160a060020a0386161480611a465750611a4685336107a6565b80611a61575033611a5684610943565b600160a060020a0316145b905080611a9a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160a060020a038416611ada576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ae660008487611963565b600160a060020a038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff9283166000190183161790925589861680865283862080549384169383166001908101841694909417905589865260049094528285208054600160e060020a03191690941760a060020a42909216919091021783558701808452922080549193909116611bbc576000548214611bbc578054602086015167ffffffffffffffff1660a060020a02600160e060020a0319909116600160a060020a038a16171781555b5050508284600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111611d1257600054811015611d125760008181526004602090815260409182902082516060810184529054600160a060020a038116825260a060020a810467ffffffffffffffff169282019290925260e060020a90910460ff16151591810182905290611d10578051600160a060020a031615611ca6579392505050565b506000190160008181526004602090815260409182902082516060810184529054600160a060020a03811680835260a060020a820467ffffffffffffffff169383019390935260e060020a900460ff1615159281019290925215611d0b579392505050565b611ca6565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60088054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610aa2828260405180602001604052806000815250612076565b6040517f150b7a02000000000000000000000000000000000000000000000000000000008152600090600160a060020a0385169063150b7a0290611e0b9033908990889088906004016129d5565b602060405180830381600087803b158015611e2557600080fd5b505af1925050508015611e55575060408051601f3d908101601f19168201909252611e5291810190612a11565b60015b611ec9573d808015611e83576040519150601f19603f3d011682016040523d82523d6000602084013e611e88565b606091505b508051611ec1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b600160e060020a0319167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600c80546108c0906127a9565b606081611f4f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f795780611f638161284e565b9150611f729050600a83612a47565b9150611f53565b60008167ffffffffffffffff811115611f9457611f94612491565b6040519080825280601f01601f191660200182016040528015611fbe576020820181803683370190505b5090505b8415611ef857611fd3600183612a5b565b9150611fe0600a86612a72565b611feb9060306128a0565b7f01000000000000000000000000000000000000000000000000000000000000000281838151811061201f5761201f61281c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612059600a86612a47565b9450611fc2565b60008261206d8584612287565b14949350505050565b600054600160a060020a0384166120b9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826120f0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160a060020a038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b0181169092021790915585845260049092529091208054600160e060020a031916831760a060020a42909316929092029190911790558190818501903b15612232575b6040518290600160a060020a038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121e26000878480600101955087611dbd565b612218576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061219757826000541461222d57600080fd5b612277565b5b604051600183019290600160a060020a038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612233575b5060009081556113469085838684565b600081815b84518110156122f35760008582815181106122a9576122a961281c565b602002602001015190508083116122cf57600083815260208290526040902092506122e0565b600081815260208490526040902092505b50806122eb8161284e565b91505061228c565b509392505050565b828054612307906127a9565b90600052602060002090601f016020900481019282612329576000855561236f565b82601f1061234257805160ff191683800117855561236f565b8280016001018555821561236f579182015b8281111561236f578251825591602001919060010190612354565b5061237b92915061237f565b5090565b5b8082111561237b5760008155600101612380565b600160e060020a03198116811461192757600080fd5b6000602082840312156123bc57600080fd5b81356114c681612394565b60005b838110156123e25781810151838201526020016123ca565b838111156113465750506000910152565b6000815180845261240b8160208601602086016123c7565b601f01601f19169290920160200192915050565b6020815260006114c660208301846123f3565b60006020828403121561244457600080fd5b5035919050565b8035600160a060020a038116811461246257600080fd5b919050565b6000806040838503121561247a57600080fd5b6124838361244b565b946020939093013593505050565b60e060020a634e487b7102600052604160045260246000fd5b600067ffffffffffffffff808411156124c5576124c5612491565b604051601f8501601f19908116603f011681019082821181831017156124ed576124ed612491565b8160405280935085815286868601111561250657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561253257600080fd5b813567ffffffffffffffff81111561254957600080fd5b8201601f8101841361255a57600080fd5b611ef8848235602084016124aa565b8035801515811461246257600080fd5b60006020828403121561258b57600080fd5b6114c682612569565b6000806000606084860312156125a957600080fd5b6125b28461244b565b92506125c06020850161244b565b9150604084013590509250925092565b6000602082840312156125e257600080fd5b6114c68261244b565b6020808252825182820181905260009190848201906040850190845b8181101561262357835183529284019291840191600101612607565b50909695505050505050565b6000806040838503121561264257600080fd5b61264b8361244b565b915061265960208401612569565b90509250929050565b6000806000806080858703121561267857600080fd5b6126818561244b565b935061268f6020860161244b565b925060408501359150606085013567ffffffffffffffff8111156126b257600080fd5b8501601f810187136126c357600080fd5b6126d2878235602084016124aa565b91505092959194509250565b6000806000604084860312156126f357600080fd5b83359250602084013567ffffffffffffffff8082111561271257600080fd5b818601915086601f83011261272657600080fd5b81358181111561273557600080fd5b876020808302850101111561274957600080fd5b6020830194508093505050509250925092565b6000806040838503121561276f57600080fd5b6127788361244b565b91506126596020840161244b565b6000806040838503121561279957600080fd5b823591506126596020840161244b565b6002810460018216806127bd57607f821691505b602082108114156127e15760e060020a634e487b7102600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60e060020a634e487b7102600052603260045260246000fd5b60e060020a634e487b7102600052601160045260246000fd5b600060001982141561286257612862612835565b5060010190565b60208082526014908201527f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000604082015260600190565b600082198211156128b3576128b3612835565b500190565b60208082526014908201527f4d617820737570706c7920657863656564656421000000000000000000000000604082015260600190565b600081600019048311821515161561290957612909612835565b500290565b6000845160206129218285838a016123c7565b8551918401916129348184848a016123c7565b85549201916000906002810460018083168061295157607f831692505b8583108114156129725760e060020a634e487b710285526022600452602485fd5b8080156129865760018114612997576129c4565b60ff198516885283880195506129c4565b60008b81526020902060005b858110156129bc5781548a8201529084019088016129a3565b505083880195505b50939b9a5050505050505050505050565b6000600160a060020a03808716835280861660208401525083604083015260806060830152612a0760808301846123f3565b9695505050505050565b600060208284031215612a2357600080fd5b81516114c681612394565b60e060020a634e487b7102600052601260045260246000fd5b600082612a5657612a56612a2e565b500490565b600082821015612a6d57612a6d612835565b500390565b600082612a8157612a81612a2e565b50069056fea26469706673582212206f907c39f3f01b5959fe5cb84b066072b8291688425ecdc75fa094ba561d690f64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000f4e6f7468696e67486173426567756e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074e4f5448494e47000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): NothingHasBegun
Arg [1] : _tokenSymbol (string): NOTHING
Arg [2] : _cost (uint256): 0
Arg [3] : _maxSupply (uint256): 1000
Arg [4] : _maxMintAmountPerTx (uint256): 1
Arg [5] : _maxMintAmountPerAddress (uint256): 2
Arg [6] : _hiddenMetadataUri (string):

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [8] : 4e6f7468696e67486173426567756e0000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [10] : 4e4f5448494e4700000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

52919:5823:0:-:0;;;;;;;;;;-1:-1:-1;;;52919:5823:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34024:305;;;;;;;;;;-1:-1:-1;34024:305:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;34024:305:0;;;;;;;;37139:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38643:204::-;;;;;;;;;;-1:-1:-1;38643:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1738:55:1;;;1720:74;;1708:2;1693:18;38643:204:0;1574:226:1;38205:372:0;;;;;;;;;;-1:-1:-1;38205:372:0;;;;;:::i;:::-;;:::i;:::-;;53272:19;;;;;;;;;;;;;;;;;;;2411:25:1;;;2399:2;2384:18;53272:19:0;2265:177:1;57861:106:0;;;;;;;;;;-1:-1:-1;57861:106:0;;;;;:::i;:::-;;:::i;57975:83::-;;;;;;;;;;-1:-1:-1;57975:83:0;;;;;:::i;:::-;;:::i;33264:312::-;;;;;;;;;;;;56794:1;33527:12;33317:7;33511:13;:28;-1:-1:-1;;33511:46:0;;33264:312;39508:170;;;;;;;;;;-1:-1:-1;39508:170:0;;;;;:::i;:::-;;:::i;53014:25::-;;;;;;;;;;;;;;;;58461:160;;;;;;;;;;;;;:::i;39749:185::-;;;;;;;;;;-1:-1:-1;39749:185:0;;;;;:::i;:::-;;:::i;55804:890::-;;;;;;;;;;-1:-1:-1;55804:890:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57369:80::-;;;;;;;;;;-1:-1:-1;57369:80:0;;;;;:::i;:::-;;:::i;57601:138::-;;;;;;;;;;-1:-1:-1;57601:138:0;;;;;:::i;:::-;;:::i;53495:27::-;;;;;;;;;;-1:-1:-1;53495:27:0;;;;;;;;;;;53192:33;;;;;;;;;;;;;:::i;58297:156::-;;;;;;;;;;-1:-1:-1;58297:156:0;;;;;:::i;:::-;;:::i;53369:38::-;;;;;;;;;;;;;;;;53416:25;;;;;;;;;;-1:-1:-1;53416:25:0;;;;;;;;53103:82;;;;;;;;;;;;;:::i;36947:125::-;;;;;;;;;;-1:-1:-1;36947:125:0;;;;;:::i;:::-;;:::i;53448:40::-;;;;;;;;;;-1:-1:-1;53448:40:0;;;;;;;;;;;34393:206;;;;;;;;;;-1:-1:-1;34393:206:0;;;;;:::i;:::-;;:::i;10209:103::-;;;;;;;;;;;;;:::i;58066:104::-;;;;;;;;;;-1:-1:-1;58066:104:0;;;;;:::i;:::-;;:::i;57747:106::-;;;;;;;;;;-1:-1:-1;57747:106:0;;;;;:::i;:::-;;:::i;9558:87::-;;;;;;;;;;-1:-1:-1;9631:6:0;;-1:-1:-1;;;;;9631:6:0;9558:87;;53329:33;;;;;;;;;;;;;;;;37308:104;;;;;;;;;;;;;:::i;53531:55::-;;;;;;;;;;-1:-1:-1;53531:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;55163:464;;;;;;:::i;:::-;;:::i;38919:287::-;;;;;;;;;;-1:-1:-1;38919:287:0;;;;;:::i;:::-;;:::i;53232:31::-;;;;;;;;;;;;;:::i;57457:136::-;;;;;;;;;;-1:-1:-1;57457:136:0;;;;;:::i;:::-;;:::i;58178:111::-;;;;;;;;;;-1:-1:-1;58178:111:0;;;;;:::i;:::-;;:::i;40005:370::-;;;;;;;;;;-1:-1:-1;40005:370:0;;;;;:::i;:::-;;:::i;56811:455::-;;;;;;;;;;-1:-1:-1;56811:455:0;;;;;:::i;:::-;;:::i;54543:612::-;;;;;;:::i;:::-;;:::i;53298:24::-;;;;;;;;;;;;;;;;53046:48;;;;;;;;;;-1:-1:-1;53046:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;57274:87;;;;;;;;;;-1:-1:-1;57274:87:0;;;;;:::i;:::-;;:::i;39277:164::-;;;;;;;;;;-1:-1:-1;39277:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39398:25:0;;;39374:4;39398:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39277:164;55635:161;;;;;;;;;;-1:-1:-1;55635:161:0;;;;;:::i;:::-;;:::i;10467:201::-;;;;;;;;;;-1:-1:-1;10467:201:0;;;;;:::i;:::-;;:::i;34024:305::-;34126:4;-1:-1:-1;;;;;;34163:40:0;;34178:25;34163:40;;:105;;-1:-1:-1;;;;;;;34220:48:0;;34235:33;34220:48;34163:105;:158;;;-1:-1:-1;22489:25:0;-1:-1:-1;;;;;;22474:40:0;;;34285:36;34143:178;34024:305;-1:-1:-1;;34024:305:0:o;37139:100::-;37193:13;37226:5;37219:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37139:100;:::o;38643:204::-;38711:7;38736:16;38744:7;38736;:16::i;:::-;38731:64;;38761:34;;;;;;;;;;;;;;38731:64;-1:-1:-1;38815:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38815:24:0;;38643:204::o;38205:372::-;38278:13;38294:24;38310:7;38294:15;:24::i;:::-;38278:40;;38339:5;-1:-1:-1;;;;;38333:11:0;:2;-1:-1:-1;;;;;38333:11:0;;38329:48;;;38353:24;;;;;;;;;;;;;;38329:48;8362:10;-1:-1:-1;;;;;38394:21:0;;;38390:139;;38421:37;38438:5;8362:10;39277:164;:::i;38421:37::-;38417:112;;38482:35;;;;;;;;;;;;;;38417:112;38541:28;38550:2;38554:7;38563:5;38541:8;:28::i;:::-;38267:310;38205:372;;:::o;57861:106::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;;;9770:68:0;;;;;;;:::i;:::-;;;;;;;;;57937:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57861:106:::0;:::o;57975:83::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;;;9770:68:0;;;;;;;:::i;:::-;58035:6:::1;:15:::0;;-1:-1:-1;;58035:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57975:83::o;39508:170::-;39642:28;39652:4;39658:2;39662:7;39642:9;:28::i;58461:160::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;;;9770:68:0;;;;;;;:::i;:::-;1847:1:::1;2445:7;;:19;;2437:63;;;::::0;-1:-1:-1;;;;;2437:63:0;;8756:2:1;2437:63:0::1;::::0;::::1;8738:21:1::0;8795:2;8775:18;;;8768:30;8834:33;8814:18;;;8807:61;8885:18;;2437:63:0::1;8554:355:1::0;2437:63:0::1;1847:1;2578:7;:18:::0;58523:7:::2;58544;9631:6:::0;;-1:-1:-1;;;;;9631:6:0;;9558:87;58544:7:::2;-1:-1:-1::0;;;;;58536:21:0::2;58573:4;-1:-1:-1::0;;;;;58565:21:0::2;;58536:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58522:69;;;58610:2;58602:11;;;::::0;::::2;;-1:-1:-1::0;1803:1:0::1;2757:7;:22:::0;58461:160::o;39749:185::-;39887:39;39904:4;39910:2;39914:7;39887:39;;;;;;;;;;;;:16;:39::i;55804:890::-;55864:16;55893:23;55919:17;55929:6;55919:9;:17::i;:::-;55893:43;;55947:30;55994:15;55980:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55980:30:0;-1:-1:-1;55947:63:0;-1:-1:-1;56794:1:0;56021:22;;56149:505;56174:15;56156;:33;:64;;;;;56211:9;;56193:14;:27;;56156:64;56149:505;;;56237:31;56271:27;;;:11;:27;;;;;;;;;56237:61;;;;;;;;;-1:-1:-1;;;;;56237:61:0;;;;-1:-1:-1;;;56237:61:0;;;;;;;;;;;-1:-1:-1;;;56237:61:0;;;;;;;;;;;;;;;;56319:49;;-1:-1:-1;56340:14:0;;-1:-1:-1;;;;;56340:28:0;;;56319:49;56315:125;;;56410:14;;;-1:-1:-1;56315:125:0;56482:6;-1:-1:-1;;;;;56460:28:0;:18;-1:-1:-1;;;;;56460:28:0;;56456:154;;;56542:14;56509:13;56523:15;56509:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;56577:17;;;;:::i;:::-;;;;56456:154;56626:16;;;;:::i;:::-;;;;56222:432;56149:505;;;-1:-1:-1;56673:13:0;;55804:890;-1:-1:-1;;;;;55804:890:0:o;57369:80::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;;;9770:68:0;;;;;;;:::i;:::-;57429:4:::1;:12:::0;57369:80::o;57601:138::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;;;9770:68:0;;;;;;;:::i;:::-;57693:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;53192:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58297:156::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;;;9770:68:0;;;;;;;:::i;:::-;58395:23:::1;:50:::0;58297:156::o;53103:82::-;;;;;;;:::i;36947:125::-;37011:7;37038:21;37051:7;37038:12;:21::i;:::-;:26;;36947:125;-1:-1:-1;;36947:125:0:o;34393:206::-;34457:7;-1:-1:-1;;;;;34481:19:0;;34477:60;;34509:28;;;;;;;;;;;;;;34477:60;-1:-1:-1;;;;;;34563:19:0;;;;;:12;:19;;;;;:27;;;;34393:206::o;10209:103::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;;;9770:68:0;;;;;;;:::i;:::-;10274:30:::1;10301:1;10274:18;:30::i;:::-;10209:103::o:0;58066:104::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;;;9770:68:0;;;;;;;:::i;:::-;58138:10:::1;:24:::0;58066:104::o;57747:106::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;;;9770:68:0;;;;;;;:::i;:::-;57823:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;37308:104::-:0;37364:13;37397:7;37390:14;;;;;:::i;55163:464::-;55228:11;54216:1;54202:11;:15;:52;;;;;54236:18;;54221:11;:33;;54202:52;54194:85;;;;-1:-1:-1;;;;;54194:85:0;;;;;;;:::i;:::-;54329:9;;54314:11;54298:13;56794:1;33527:12;33317:7;33511:13;:28;-1:-1:-1;;33511:46:0;;33264:312;54298:13;:27;;;;:::i;:::-;:40;;54290:73;;;;-1:-1:-1;;;;;54290:73:0;;;;;;;:::i;:::-;55261:11:::1;54480;54473:4;;:18;;;;:::i;:::-;54460:9;:31;;54452:63;;;::::0;-1:-1:-1;;;;;54452:63:0;;10848:2:1;54452:63:0::1;::::0;::::1;10830:21:1::0;10887:2;10867:18;;;10860:30;10926:21;10906:18;;;10899:49;10965:18;;54452:63:0::1;10646:343:1::0;54452:63:0::1;55343:23:::2;::::0;55314:10:::2;55293:32;::::0;;;:20:::2;:32;::::0;;;;;:46:::2;::::0;55328:11;;55293:46:::2;:::i;:::-;:73;;55285:116;;;::::0;-1:-1:-1;;;;;55285:116:0;;11196:2:1;55285:116:0::2;::::0;::::2;11178:21:1::0;11235:2;11215:18;;;11208:30;11274:32;11254:18;;;11247:60;11324:18;;55285:116:0::2;10994:354:1::0;55285:116:0::2;55421:6;::::0;::::2;;55420:7;55412:43;;;::::0;-1:-1:-1;;;;;55412:43:0;;11555:2:1;55412:43:0::2;::::0;::::2;11537:21:1::0;11594:2;11574:18;;;11567:30;11633:25;11613:18;;;11606:53;11676:18;;55412:43:0::2;11353:347:1::0;55412:43:0::2;55473:9;55468:103;55492:11;55488:1;:15;55468:103;;;55546:10;55525:32;::::0;;;:20:::2;:32;::::0;;;;:34;;;::::2;::::0;::::2;:::i;:::-;;;;;;55505:3;;;;;:::i;:::-;;;;55468:103;;;-1:-1:-1::0;55583:36:0::2;8362:10:::0;55607:11:::2;55583:9;:36::i;38919:287::-:0;-1:-1:-1;;;;;39018:24:0;;8362:10;39018:24;39014:54;;;39051:17;;;;;;;;;;;;;;39014:54;8362:10;39081:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39081:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39081:53:0;;;;;;;;;;39150:48;;586:41:1;;;39081:42:0;;8362:10;39150:48;;559:18:1;39150:48:0;;;;;;;38919:287;;:::o;53232:31::-;;;;;;;:::i;57457:136::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;;;9770:68:0;;;;;;;:::i;:::-;57545:18:::1;:40:::0;57457:136::o;58178:111::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;;;9770:68:0;;;;;;;:::i;:::-;58252:20:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;58252:29:0;;::::1;::::0;;;::::1;::::0;;58178:111::o;40005:370::-;40172:28;40182:4;40188:2;40192:7;40172:9;:28::i;:::-;-1:-1:-1;;;;;40215:13:0;;12554:19;:23;40211:157;;40236:56;40267:4;40273:2;40277:7;40286:5;40236:30;:56::i;:::-;40232:136;;40316:40;;;;;;;;;;;;;;40232:136;40005:370;;;;:::o;56811:455::-;56885:13;56919:17;56927:8;56919:7;:17::i;:::-;56911:77;;;;-1:-1:-1;;;;;56911:77:0;;11907:2:1;56911:77:0;;;11889:21:1;11946:2;11926:18;;;11919:30;11985:34;11965:18;;;11958:62;12056:17;12036:18;;;12029:45;12091:19;;56911:77:0;11705:411:1;56911:77:0;57005:8;;;;;;;57001:74;;57046:17;57039:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56811:455;;;:::o;57001:74::-;57087:28;57118:10;:8;:10::i;:::-;57087:41;;57177:1;57152:14;57146:28;:32;:112;;;;;;;;;;;;;;;;;57205:14;57221:19;:8;:17;:19::i;:::-;57242:9;57188:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57146:112;57139:119;56811:455;-1:-1:-1;;;56811:455:0:o;54543:612::-;54650:11;54216:1;54202:11;:15;:52;;;;;54236:18;;54221:11;:33;;54202:52;54194:85;;;;-1:-1:-1;;;;;54194:85:0;;;;;;;:::i;:::-;54329:9;;54314:11;54298:13;56794:1;33527:12;33317:7;33511:13;:28;-1:-1:-1;;33511:46:0;;33264:312;54298:13;:27;;;;:::i;:::-;:40;;54290:73;;;;-1:-1:-1;;;;;54290:73:0;;;;;;;:::i;:::-;54683:11:::1;54480;54473:4;;:18;;;;:::i;:::-;54460:9;:31;;54452:63;;;::::0;-1:-1:-1;;;;;54452:63:0;;10848:2:1;54452:63:0::1;::::0;::::1;10830:21:1::0;10887:2;10867:18;;;10860:30;10926:21;10906:18;;;10899:49;10965:18;;54452:63:0::1;10646:343:1::0;54452:63:0::1;54757:20:::2;::::0;::::2;::::0;::::2;;;54749:67;;;::::0;-1:-1:-1;;;;;54749:67:0;;14037:2:1;54749:67:0::2;::::0;::::2;14019:21:1::0;14076:2;14056:18;;;14049:30;14115:34;14095:18;;;14088:62;14186:4;14166:18;;;14159:32;14208:19;;54749:67:0::2;13835:398:1::0;54749:67:0::2;8362:10:::0;54836:30:::2;::::0;;;:16:::2;:30;::::0;;;;;::::2;;54835:31;54827:68;;;::::0;-1:-1:-1;;;;;54827:68:0;;14440:2:1;54827:68:0::2;::::0;::::2;14422:21:1::0;14479:2;14459:18;;;14452:30;14518:26;14498:18;;;14491:54;14562:18;;54827:68:0::2;14238:348:1::0;54827:68:0::2;54906:12;8362:10:::0;54931:30:::2;::::0;-1:-1:-1;;;;;14736:55:1;;;;14793:28;14732:90;54931:30:0::2;::::0;::::2;14720:103:1::0;14839:12;;54931:30:0::2;;;;;;;;;;;;54921:41;;;;;;54906:56;;54981:50;55000:12;;54981:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;55014:10:0::2;::::0;;-1:-1:-1;55026:4:0;;-1:-1:-1;54981:18:0::2;:50::i;:::-;54973:77;;;::::0;-1:-1:-1;;;;;54973:77:0;;15064:2:1;54973:77:0::2;::::0;::::2;15046:21:1::0;15103:2;15083:18;;;15076:30;15142:16;15122:18;;;15115:44;15176:18;;54973:77:0::2;14862:338:1::0;54973:77:0::2;8362:10:::0;55063:30:::2;::::0;;;:16:::2;:30;::::0;;;;:37;;-1:-1:-1;;55063:37:0::2;55096:4;55063:37;::::0;;55111:36:::2;::::0;55135:11;55111:9:::2;:36::i;:::-;54696:459;54374:1:::1;54543:612:::0;;;;:::o;57274:87::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;;;9770:68:0;;;;;;;:::i;:::-;57336:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;57336:17:0;;::::1;::::0;;;::::1;::::0;;57274:87::o;55635:161::-;55721:11;54216:1;54202:11;:15;:52;;;;;54236:18;;54221:11;:33;;54202:52;54194:85;;;;-1:-1:-1;;;;;54194:85:0;;;;;;;:::i;:::-;54329:9;;54314:11;54298:13;56794:1;33527:12;33317:7;33511:13;:28;-1:-1:-1;;33511:46:0;;33264:312;54298:13;:27;;;;:::i;:::-;:40;;54290:73;;;;-1:-1:-1;;;;;54290:73:0;;;;;;;:::i;:::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23:::1;9770:68;;;;-1:-1:-1::0;;;;;9770:68:0::1;;;;;;;:::i;:::-;55755:33:::2;55765:9;55776:11;55755:9;:33::i;10467:201::-:0;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;;;9770:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10556:22:0;::::1;10548:73;;;::::0;-1:-1:-1;;;;;10548:73:0;;15407:2:1;10548:73:0::1;::::0;::::1;15389:21:1::0;15446:2;15426:18;;;15419:30;15485:34;15465:18;;;15458:62;15556:8;15536:18;;;15529:36;15582:19;;10548:73:0::1;15205:402:1::0;10548:73:0::1;10632:28;10651:8;10632:18;:28::i;:::-;10467:201:::0;:::o;40630:174::-;40687:4;40730:7;56794:1;40711:26;;:53;;;;;40751:13;;40741:7;:23;40711:53;:85;;;;-1:-1:-1;;40769:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;40769:27:0;;;;40768:28;;40630:174::o;49852:196::-;49967:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;49967:29:0;-1:-1:-1;;;;;49967:29:0;;;;;;;;;50012:28;;49967:24;;50012:28;;;;;;;49852:196;;;:::o;44800:2130::-;44915:35;44953:21;44966:7;44953:12;:21::i;:::-;44915:59;;45013:4;-1:-1:-1;;;;;44991:26:0;:13;:18;;;-1:-1:-1;;;;;44991:26:0;;44987:67;;45026:28;;;;;;;;;;;;;;44987:67;45067:22;8362:10;-1:-1:-1;;;;;45093:20:0;;;;:73;;-1:-1:-1;45130:36:0;45147:4;8362:10;39277:164;:::i;45130:36::-;45093:126;;;-1:-1:-1;8362:10:0;45183:20;45195:7;45183:11;:20::i;:::-;-1:-1:-1;;;;;45183:36:0;;45093:126;45067:153;;45238:17;45233:66;;45264:35;;;;;;;;;;;;;;45233:66;-1:-1:-1;;;;;45314:16:0;;45310:52;;45339:23;;;;;;;;;;;;;;45310:52;45483:35;45500:1;45504:7;45513:4;45483:8;:35::i;:::-;-1:-1:-1;;;;;45814:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45814:31:0;;;;;;;-1:-1:-1;;45814:31:0;;;;;;;45860:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45860:29:0;;;;;;;;;;;45940:20;;;:11;:20;;;;;;45975:18;;-1:-1:-1;;;;;;46008:49:0;;;;-1:-1:-1;;;46041:15:0;46008:49;;;;;;;;;;46331:11;;46391:24;;;;;46434:13;;45940:20;;46391:24;;46434:13;46430:384;;46644:13;;46629:11;:28;46625:174;;46682:20;;46751:28;;;;46725:54;;-1:-1:-1;;;46725:54:0;-1:-1:-1;;;;;;46725:54:0;;;-1:-1:-1;;;;;46682:20:0;;46725:54;;;;46625:174;45789:1036;;;46861:7;46857:2;-1:-1:-1;;;;;46842:27:0;46851:4;-1:-1:-1;;;;;46842:27:0;;;;;;;;;;;44904:2026;;44800:2130;;;:::o;35774:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;35885:7:0;;56794:1;35934:23;35930:888;;35970:13;;35963:4;:20;35959:859;;;36004:31;36038:17;;;:11;:17;;;;;;;;;36004:51;;;;;;;;;-1:-1:-1;;;;;36004:51:0;;;;-1:-1:-1;;;36004:51:0;;;;;;;;;;;-1:-1:-1;;;36004:51:0;;;;;;;;;;;;;;36074:729;;36124:14;;-1:-1:-1;;;;;36124:28:0;;36120:101;;36188:9;35774:1111;-1:-1:-1;;;35774:1111:0:o;36120:101::-;-1:-1:-1;;;36563:6:0;36608:17;;;;:11;:17;;;;;;;;;36596:29;;;;;;;;;-1:-1:-1;;;;;36596:29:0;;;;;-1:-1:-1;;;36596:29:0;;;;;;;;;;;-1:-1:-1;;;36596:29:0;;;;;;;;;;;;;36656:28;36652:109;;36724:9;35774:1111;-1:-1:-1;;;35774:1111:0:o;36652:109::-;36523:261;;;35985:833;35959:859;36846:31;;;;;;;;;;;;;;10828:191;10921:6;;;-1:-1:-1;;;;;10938:17:0;;;-1:-1:-1;;10938:17:0;;;;;;;10971:40;;10921:6;;;10938:17;10921:6;;10971:40;;10902:16;;10971:40;10891:128;10828:191;:::o;40888:104::-;40957:27;40967:2;40971:8;40957:27;;;;;;;;;;;;:9;:27::i;50540:667::-;50724:72;;;;;50703:4;;-1:-1:-1;;;;;50724:36:0;;;;;:72;;8362:10;;50775:4;;50781:7;;50790:5;;50724:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50724:72:0;;;;;;;;-1:-1:-1;;50724:72:0;;;;;;;;;;;;:::i;:::-;;;50720:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50958:13:0;;50954:235;;51004:40;;;;;;;;;;;;;;50954:235;51147:6;51141:13;51132:6;51128:2;51124:15;51117:38;50720:480;-1:-1:-1;;;;;;50843:55:0;50853:45;50843:55;;-1:-1:-1;50720:480:0;50540:667;;;;;;:::o;58629:110::-;58689:13;58722:9;58715:16;;;;;:::i;5844:723::-;5900:13;6121:10;6117:53;;-1:-1:-1;;6148:10:0;;;;;;;;;;;;;;;;;;5844:723::o;6117:53::-;6195:5;6180:12;6236:78;6243:9;;6236:78;;6269:8;;;;:::i;:::-;;-1:-1:-1;6292:10:0;;-1:-1:-1;6300:2:0;6292:10;;:::i;:::-;;;6236:78;;;6324:19;6356:6;6346:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6346:17:0;;6324:39;;6374:154;6381:10;;6374:154;;6408:11;6418:1;6408:11;;:::i;:::-;;-1:-1:-1;6477:10:0;6485:2;6477:5;:10;:::i;:::-;6464:24;;:2;:24;:::i;:::-;6451:39;;6434:6;6441;6434:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;6505:11:0;6514:2;6505:11;;:::i;:::-;;;6374:154;;4014:190;4139:4;4192;4163:25;4176:5;4183:4;4163:12;:25::i;:::-;:33;;4014:190;-1:-1:-1;;;;4014:190:0:o;41365:1749::-;41488:20;41511:13;-1:-1:-1;;;;;41539:16:0;;41535:48;;41564:19;;;;;;;;;;;;;;41535:48;41598:13;41594:44;;41620:18;;;;;;;;;;;;;;41594:44;-1:-1:-1;;;;;41989:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;42048:49:0;;41989:44;;;;;;;;42048:49;;;;-1:-1:-1;;41989:44:0;;;;;;42048:49;;;;;;;;;;;;;;;;42114:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;42164:66:0;;;-1:-1:-1;;;42214:15:0;42164:66;;;;;;;;;;;;;42114:25;;42311:23;;;;12554:19;:23;42351:631;;42391:313;42422:38;;42447:12;;-1:-1:-1;;;;;42422:38:0;;;42439:1;;42422:38;;42439:1;;42422:38;42488:69;42527:1;42531:2;42535:14;;;;;;42551:5;42488:30;:69::i;:::-;42483:174;;42593:40;;;;;;;;;;;;;;42483:174;42699:3;42684:12;:18;42391:313;;42785:12;42768:13;;:29;42764:43;;42799:8;;;42764:43;42351:631;;;42848:119;42879:40;;42904:14;;;;;-1:-1:-1;;;;;42879:40:0;;;42896:1;;42879:40;;42896:1;;42879:40;42962:3;42947:12;:18;42848:119;;42351:631;-1:-1:-1;42996:13:0;:28;;;43046:60;;43079:2;43083:12;43097:8;43046:60;:::i;4565:675::-;4648:7;4691:4;4648:7;4706:497;4730:5;:12;4726:1;:16;4706:497;;;4764:20;4787:5;4793:1;4787:8;;;;;;;;:::i;:::-;;;;;;;4764:31;;4830:12;4814;:28;4810:382;;5316:13;5366:15;;;5402:4;5395:15;;;5449:4;5433:21;;4942:57;;4810:382;;;5316:13;5366:15;;;5402:4;5395:15;;;5449:4;5433:21;;5119:57;;4810:382;-1:-1:-1;4744:3:0;;;;:::i;:::-;;;;4706:497;;;-1:-1:-1;5220:12:0;4565:675;-1:-1:-1;;;4565:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1141:2;1120:15;-1:-1:-1;;1116:29:1;1107:39;;;;1148:4;1103:50;;901:258;-1:-1:-1;;901:258:1:o;1164:220::-;1313:2;1302:9;1295:21;1276:4;1333:45;1374:2;1363:9;1359:18;1351:6;1333:45;:::i;1389:180::-;1448:6;1501:2;1489:9;1480:7;1476:23;1472:32;1469:52;;;1517:1;1514;1507:12;1469:52;-1:-1:-1;1540:23:1;;1389:180;-1:-1:-1;1389:180:1:o;1805:196::-;1873:20;;-1:-1:-1;;;;;1922:54:1;;1912:65;;1902:93;;1991:1;1988;1981:12;1902:93;1805:196;;;:::o;2006:254::-;2074:6;2082;2135:2;2123:9;2114:7;2110:23;2106:32;2103:52;;;2151:1;2148;2141:12;2103:52;2174:29;2193:9;2174:29;:::i;:::-;2164:39;2250:2;2235:18;;;;2222:32;;-1:-1:-1;;;2006:254:1:o;2447:184::-;-1:-1:-1;;;;;2496:1:1;2489:88;2596:4;2593:1;2586:15;2620:4;2617:1;2610:15;2636:632;2701:5;2731:18;2772:2;2764:6;2761:14;2758:40;;;2778:18;;:::i;:::-;2853:2;2847:9;2821:2;2907:15;;-1:-1:-1;;2903:24:1;;;2929:2;2899:33;2895:42;2883:55;;;2953:18;;;2973:22;;;2950:46;2947:72;;;2999:18;;:::i;:::-;3039:10;3035:2;3028:22;3068:6;3059:15;;3098:6;3090;3083:22;3138:3;3129:6;3124:3;3120:16;3117:25;3114:45;;;3155:1;3152;3145:12;3114:45;3205:6;3200:3;3193:4;3185:6;3181:17;3168:44;3260:1;3253:4;3244:6;3236;3232:19;3228:30;3221:41;;;;2636:632;;;;;:::o;3273:451::-;3342:6;3395:2;3383:9;3374:7;3370:23;3366:32;3363:52;;;3411:1;3408;3401:12;3363:52;3451:9;3438:23;3484:18;3476:6;3473:30;3470:50;;;3516:1;3513;3506:12;3470:50;3539:22;;3592:4;3584:13;;3580:27;-1:-1:-1;3570:55:1;;3621:1;3618;3611:12;3570:55;3644:74;3710:7;3705:2;3692:16;3687:2;3683;3679:11;3644:74;:::i;3729:160::-;3794:20;;3850:13;;3843:21;3833:32;;3823:60;;3879:1;3876;3869:12;3894:180;3950:6;4003:2;3991:9;3982:7;3978:23;3974:32;3971:52;;;4019:1;4016;4009:12;3971:52;4042:26;4058:9;4042:26;:::i;4079:328::-;4156:6;4164;4172;4225:2;4213:9;4204:7;4200:23;4196:32;4193:52;;;4241:1;4238;4231:12;4193:52;4264:29;4283:9;4264:29;:::i;:::-;4254:39;;4312:38;4346:2;4335:9;4331:18;4312:38;:::i;:::-;4302:48;;4397:2;4386:9;4382:18;4369:32;4359:42;;4079:328;;;;;:::o;4594:186::-;4653:6;4706:2;4694:9;4685:7;4681:23;4677:32;4674:52;;;4722:1;4719;4712:12;4674:52;4745:29;4764:9;4745:29;:::i;4785:632::-;4956:2;5008:21;;;5078:13;;4981:18;;;5100:22;;;4927:4;;4956:2;5179:15;;;;5153:2;5138:18;;;4927:4;5222:169;5236:6;5233:1;5230:13;5222:169;;;5297:13;;5285:26;;5366:15;;;;5331:12;;;;5258:1;5251:9;5222:169;;;-1:-1:-1;5408:3:1;;4785:632;-1:-1:-1;;;;;;4785:632:1:o;5607:254::-;5672:6;5680;5733:2;5721:9;5712:7;5708:23;5704:32;5701:52;;;5749:1;5746;5739:12;5701:52;5772:29;5791:9;5772:29;:::i;:::-;5762:39;;5820:35;5851:2;5840:9;5836:18;5820:35;:::i;:::-;5810:45;;5607:254;;;;;:::o;5866:667::-;5961:6;5969;5977;5985;6038:3;6026:9;6017:7;6013:23;6009:33;6006:53;;;6055:1;6052;6045:12;6006:53;6078:29;6097:9;6078:29;:::i;:::-;6068:39;;6126:38;6160:2;6149:9;6145:18;6126:38;:::i;:::-;6116:48;;6211:2;6200:9;6196:18;6183:32;6173:42;;6266:2;6255:9;6251:18;6238:32;6293:18;6285:6;6282:30;6279:50;;;6325:1;6322;6315:12;6279:50;6348:22;;6401:4;6393:13;;6389:27;-1:-1:-1;6379:55:1;;6430:1;6427;6420:12;6379:55;6453:74;6519:7;6514:2;6501:16;6496:2;6492;6488:11;6453:74;:::i;:::-;6443:84;;;5866:667;;;;;;;:::o;6538:684::-;6633:6;6641;6649;6702:2;6690:9;6681:7;6677:23;6673:32;6670:52;;;6718:1;6715;6708:12;6670:52;6754:9;6741:23;6731:33;;6815:2;6804:9;6800:18;6787:32;6838:18;6879:2;6871:6;6868:14;6865:34;;;6895:1;6892;6885:12;6865:34;6933:6;6922:9;6918:22;6908:32;;6978:7;6971:4;6967:2;6963:13;6959:27;6949:55;;7000:1;6997;6990:12;6949:55;7040:2;7027:16;7066:2;7058:6;7055:14;7052:34;;;7082:1;7079;7072:12;7052:34;7136:7;7131:2;7125;7117:6;7113:15;7109:2;7105:24;7101:33;7098:46;7095:66;;;7157:1;7154;7147:12;7095:66;7188:2;7184;7180:11;7170:21;;7210:6;7200:16;;;;;6538:684;;;;;:::o;7227:260::-;7295:6;7303;7356:2;7344:9;7335:7;7331:23;7327:32;7324:52;;;7372:1;7369;7362:12;7324:52;7395:29;7414:9;7395:29;:::i;:::-;7385:39;;7443:38;7477:2;7466:9;7462:18;7443:38;:::i;7492:254::-;7560:6;7568;7621:2;7609:9;7600:7;7596:23;7592:32;7589:52;;;7637:1;7634;7627:12;7589:52;7673:9;7660:23;7650:33;;7702:38;7736:2;7725:9;7721:18;7702:38;:::i;7751:437::-;7836:1;7826:12;;7883:1;7873:12;;;7894:61;;7948:4;7940:6;7936:17;7926:27;;7894:61;8001:2;7993:6;7990:14;7970:18;7967:38;7964:218;;;-1:-1:-1;;;;;8035:1:1;8028:88;8139:4;8136:1;8129:15;8167:4;8164:1;8157:15;7964:218;;7751:437;;;:::o;8193:356::-;8395:2;8377:21;;;8414:18;;;8407:30;8473:34;8468:2;8453:18;;8446:62;8540:2;8525:18;;8193:356::o;9124:184::-;-1:-1:-1;;;;;9173:1:1;9166:88;9273:4;9270:1;9263:15;9297:4;9294:1;9287:15;9313:184;-1:-1:-1;;;;;9362:1:1;9355:88;9462:4;9459:1;9452:15;9486:4;9483:1;9476:15;9502:135;9541:3;-1:-1:-1;;9562:17:1;;9559:43;;;9582:18;;:::i;:::-;-1:-1:-1;9629:1:1;9618:13;;9502:135::o;9642:344::-;9844:2;9826:21;;;9883:2;9863:18;;;9856:30;9922:22;9917:2;9902:18;;9895:50;9977:2;9962:18;;9642:344::o;9991:128::-;10031:3;10062:1;10058:6;10055:1;10052:13;10049:39;;;10068:18;;:::i;:::-;-1:-1:-1;10104:9:1;;9991:128::o;10124:344::-;10326:2;10308:21;;;10365:2;10345:18;;;10338:30;10404:22;10399:2;10384:18;;10377:50;10459:2;10444:18;;10124:344::o;10473:168::-;10513:7;10579:1;10575;10571:6;10567:14;10564:1;10561:21;10556:1;10549:9;10542:17;10538:45;10535:71;;;10586:18;;:::i;:::-;-1:-1:-1;10626:9:1;;10473:168::o;12247:1583::-;12471:3;12509:6;12503:13;12535:4;12548:51;12592:6;12587:3;12582:2;12574:6;12570:15;12548:51;:::i;:::-;12662:13;;12621:16;;;;12684:55;12662:13;12621:16;12706:15;;;12684:55;:::i;:::-;12828:13;;12761:20;;;12801:1;;12905;12890:17;;12926:1;12962:18;;;;12989:93;;13067:4;13057:8;13053:19;13041:31;;12989:93;13130:2;13120:8;13117:16;13097:18;13094:40;13091:224;;;-1:-1:-1;;;;;13164:3:1;13157:90;13270:4;13267:1;13260:15;13300:4;13295:3;13288:17;13091:224;13331:18;13358:110;;;;13482:1;13477:328;;;;13324:481;;13358:110;-1:-1:-1;;13393:24:1;;13379:39;;13438:20;;;;-1:-1:-1;13358:110:1;;13477:328;12194:1;12187:14;;;12231:4;12218:18;;13572:1;13586:169;13600:8;13597:1;13594:15;13586:169;;;13682:14;;13667:13;;;13660:37;13725:16;;;;13617:10;;13586:169;;;13590:3;;13786:8;13779:5;13775:20;13768:27;;13324:481;-1:-1:-1;13821:3:1;;12247:1583;-1:-1:-1;;;;;;;;;;;12247:1583:1:o;15612:512::-;15806:4;-1:-1:-1;;;;;15916:2:1;15908:6;15904:15;15893:9;15886:34;15968:2;15960:6;15956:15;15951:2;15940:9;15936:18;15929:43;;16008:6;16003:2;15992:9;15988:18;15981:34;16051:3;16046:2;16035:9;16031:18;16024:31;16072:46;16113:3;16102:9;16098:19;16090:6;16072:46;:::i;:::-;16064:54;15612:512;-1:-1:-1;;;;;;15612:512:1:o;16129:249::-;16198:6;16251:2;16239:9;16230:7;16226:23;16222:32;16219:52;;;16267:1;16264;16257:12;16219:52;16299:9;16293:16;16318:30;16342:5;16318:30;:::i;16383:184::-;-1:-1:-1;;;;;16432:1:1;16425:88;16532:4;16529:1;16522:15;16556:4;16553:1;16546:15;16572:120;16612:1;16638;16628:35;;16643:18;;:::i;:::-;-1:-1:-1;16677:9:1;;16572:120::o;16697:125::-;16737:4;16765:1;16762;16759:8;16756:34;;;16770:18;;:::i;:::-;-1:-1:-1;16807:9:1;;16697:125::o;16827:112::-;16859:1;16885;16875:35;;16890:18;;:::i;:::-;-1:-1:-1;16924:9:1;;16827:112::o

Swarm Source

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