ETH Price: $3,386.60 (-1.48%)
Gas: 1 Gwei

Space Boo (spaceboo)
 

Overview

TokenID

2171

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
SpaceBoo

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-16
*/

// SPDX-License-Identifier: MIT
// 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);
}

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



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





// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)





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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)



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


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





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


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



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


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



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



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





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


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





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


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



/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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


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



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


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

/**
 * @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, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

    // 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 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 && 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 && !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() && !_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;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 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 (safe && 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 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 This is 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 {}
}

contract SpaceBoo is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  bytes32 public merkleRoot;
  
  uint256 public constant WHITELIST_MAX_MINT_AMOUNT = 4;


  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.035 ether;
  uint256 public wlCost = 0.02 ether;
  uint256 public maxSupply = 8888;
  uint256 public maxMintAmountPerTx = 4;
  uint256 public TOTAL_MAX_MINT_AMOUNT = 6;

  bool public paused = true;
  bool public onlyWhitelisted = true;
  bool public revealed = false;
  mapping(address => uint256) public wlTokenMint;
  mapping(address => bool) whitelistedAddresses;



  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    string memory _initBaseURI,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setUriPrefix(_initBaseURI);
    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!');
    _;
  }

  modifier wlMintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= wlCost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');
    require(!onlyWhitelisted, "Not open to public yet!");
    require(balanceOf(msg.sender) + _mintAmount <= TOTAL_MAX_MINT_AMOUNT, "Exceed Mint Limit");

    _safeMint(_msgSender(), _mintAmount);
  }

  function ownerMint(uint256 _mintAmount) public payable onlyOwner {
     require(_mintAmount > 0, 'Invalid mint amount!');
     require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _safeMint(_msgSender(), _mintAmount);
  }

  function wlMint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) wlMintPriceCompliance(_mintAmount) {
      require(!paused, 'The contract is paused!');
      require(onlyWhitelisted, "Only allowed to mint during whitelist");
      require(isWhitelisted(msg.sender), "user is not whitelisted");
      uint256 minted = wlMintAmount(msg.sender);
      require(minted + _mintAmount <= WHITELIST_MAX_MINT_AMOUNT, "Exceeed WL Mint Amount");
      _safeMint(_msgSender(), _mintAmount);
      wlTokenMint[msg.sender] = minted + _mintAmount;
  }

  function wlMintAmount(address _user) public view returns (uint256) {
      return wlTokenMint[_user];
  }

  function isWhitelisted(address _user) public view returns (bool) {
    return whitelistedAddresses[_user];
  }
  
  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 setTotalMaxMintAmount(uint _amount) public onlyOwner {
      require(_amount <= 8888, "Exceed total amount");
      TOTAL_MAX_MINT_AMOUNT = _amount;
  }

  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 setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

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

  function addWhitelistUsers(address[] calldata _users) public onlyOwner {
      for (uint i=0; i < _users.length; i++) {
        whitelistedAddresses[_users[i]] = true;
    }
  }

  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":"string","name":"_initBaseURI","type":"string"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOTAL_MAX_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MAX_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","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":"_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":"setOnlyWhitelisted","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":"uint256","name":"_amount","type":"uint256"}],"name":"setTotalMaxMintAmount","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":"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":[],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"wlMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wlTokenMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60a06040819052600060808190526200001b91600b916200022d565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600c916200022d565b50667c585087238000600e5566470de4df820000600f556122b8601055600460115560066012556013805462ffffff19166101011790553480156200008e57600080fd5b5060405162002e0d38038062002e0d833981016040819052620000b1916200038a565b835184908490620000ca9060029060208501906200022d565b508051620000e09060039060208401906200022d565b5050600160005550620000f33362000118565b600160095562000103826200016a565b6200010e81620001d2565b5050505062000496565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001b95760405162461bcd60e51b8152602060048201819052602482015260008051602062002ded83398151915260448201526064015b60405180910390fd5b8051620001ce90600b9060208401906200022d565b5050565b6008546001600160a01b031633146200021d5760405162461bcd60e51b8152602060048201819052602482015260008051602062002ded8339815191526044820152606401620001b0565b8051620001ce90600d9060208401905b8280546200023b9062000443565b90600052602060002090601f0160209004810192826200025f5760008555620002aa565b82601f106200027a57805160ff1916838001178555620002aa565b82800160010185558215620002aa579182015b82811115620002aa5782518255916020019190600101906200028d565b50620002b8929150620002bc565b5090565b5b80821115620002b85760008155600101620002bd565b600082601f830112620002e557600080fd5b81516001600160401b038082111562000302576200030262000480565b604051601f8301601f19908116603f011681019082821181831017156200032d576200032d62000480565b816040528381526020925086838588010111156200034a57600080fd5b600091505b838210156200036e57858201830151818301840152908201906200034f565b83821115620003805760008385830101525b9695505050505050565b60008060008060808587031215620003a157600080fd5b84516001600160401b0380821115620003b957600080fd5b620003c788838901620002d3565b95506020870151915080821115620003de57600080fd5b620003ec88838901620002d3565b945060408701519150808211156200040357600080fd5b6200041188838901620002d3565b935060608701519150808211156200042857600080fd5b506200043787828801620002d3565b91505092959194509250565b600181811c908216806200045857607f821691505b602082108114156200047a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61294780620004a66000396000f3fe6080604052600436106102c95760003560e01c8063686b281211610175578063a0712d68116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c51461085f578063efbd73f4146108a8578063f19e75d4146108c8578063f2fde38b146108db57600080fd5b8063d5abeb0114610813578063d70a28d114610829578063e0a808531461083f57600080fd5b8063a0712d681461076b578063a22cb4651461077e578063a45ba8e71461079e578063b071401b146107b3578063b88d4fde146107d3578063c87b56dd146107f357600080fd5b80637ec4a6591161012e5780637ec4a659146106ad5780638da5cb5b146106cd57806394354fd0146106eb57806395d89b41146107015780639c70b512146107165780639e4f20ba1461073557600080fd5b8063686b2812146105f85780636aabb9471461061857806370a082311461062b578063715018a61461064b57806377c28390146106605780637cb647591461068d57600080fd5b80633af32abf116102345780634baabc8b116101ed5780635503a0e8116101c75780635503a0e8146105945780635c975abb146105a957806362b99ad4146105c35780636352211e146105d857600080fd5b80634baabc8b1461053e5780634fdd43cb14610554578063518302271461057457600080fd5b80633af32abf146104635780633c9527641461049c5780633ccfd60b146104bc57806342842e0e146104d1578063438b6300146104f157806344a0d68a1461051e57600080fd5b806316ba10e01161028657806316ba10e0146103c357806316c38b3c146103e357806318160ddd14610403578063199983ba1461041857806323b872dd1461042d5780632eb4a7ab1461044d57600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d5780631042779c1461037f57806313faede61461039f575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046124f1565b6108fb565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061031861094d565b6040516102fa9190612707565b34801561033157600080fd5b506103456103403660046124d8565b6109df565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d61037836600461241f565b610a23565b005b34801561038b57600080fd5b5061037d61039a3660046124d8565b610ab1565b3480156103ab57600080fd5b506103b5600e5481565b6040519081526020016102fa565b3480156103cf57600080fd5b5061037d6103de36600461252b565b610b31565b3480156103ef57600080fd5b5061037d6103fe3660046124bd565b610b72565b34801561040f57600080fd5b506103b5610baf565b34801561042457600080fd5b506103b5600481565b34801561043957600080fd5b5061037d61044836600461233e565b610bbd565b34801561045957600080fd5b506103b5600a5481565b34801561046f57600080fd5b506102ee61047e3660046122f0565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104a857600080fd5b5061037d6104b73660046124bd565b610bc8565b3480156104c857600080fd5b5061037d610c0c565b3480156104dd57600080fd5b5061037d6104ec36600461233e565b610d07565b3480156104fd57600080fd5b5061051161050c3660046122f0565b610d22565b6040516102fa91906126c3565b34801561052a57600080fd5b5061037d6105393660046124d8565b610e69565b34801561054a57600080fd5b506103b560125481565b34801561056057600080fd5b5061037d61056f36600461252b565b610e98565b34801561058057600080fd5b506013546102ee9062010000900460ff1681565b3480156105a057600080fd5b50610318610ed5565b3480156105b557600080fd5b506013546102ee9060ff1681565b3480156105cf57600080fd5b50610318610f63565b3480156105e457600080fd5b506103456105f33660046124d8565b610f70565b34801561060457600080fd5b5061037d610613366004612449565b610f82565b61037d6106263660046124d8565b61101e565b34801561063757600080fd5b506103b56106463660046122f0565b611273565b34801561065757600080fd5b5061037d6112c1565b34801561066c57600080fd5b506103b561067b3660046122f0565b60146020526000908152604090205481565b34801561069957600080fd5b5061037d6106a83660046124d8565b6112f7565b3480156106b957600080fd5b5061037d6106c836600461252b565b611326565b3480156106d957600080fd5b506008546001600160a01b0316610345565b3480156106f757600080fd5b506103b560115481565b34801561070d57600080fd5b50610318611363565b34801561072257600080fd5b506013546102ee90610100900460ff1681565b34801561074157600080fd5b506103b56107503660046122f0565b6001600160a01b031660009081526014602052604090205490565b61037d6107793660046124d8565b611372565b34801561078a57600080fd5b5061037d6107993660046123f5565b611531565b3480156107aa57600080fd5b506103186115c7565b3480156107bf57600080fd5b5061037d6107ce3660046124d8565b6115d4565b3480156107df57600080fd5b5061037d6107ee36600461237a565b611603565b3480156107ff57600080fd5b5061031861080e3660046124d8565b611654565b34801561081f57600080fd5b506103b560105481565b34801561083557600080fd5b506103b5600f5481565b34801561084b57600080fd5b5061037d61085a3660046124bd565b6117c4565b34801561086b57600080fd5b506102ee61087a36600461230b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108b457600080fd5b5061037d6108c3366004612573565b61180a565b61037d6108d63660046124d8565b6118a1565b3480156108e757600080fd5b5061037d6108f63660046122f0565b61192c565b60006001600160e01b031982166380ac58cd60e01b148061092c57506001600160e01b03198216635b5e139f60e01b145b8061094757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461095c90612839565b80601f016020809104026020016040519081016040528092919081815260200182805461098890612839565b80156109d55780601f106109aa576101008083540402835291602001916109d5565b820191906000526020600020905b8154815290600101906020018083116109b857829003601f168201915b5050505050905090565b60006109ea826119c4565b610a07576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a2e82610f70565b9050806001600160a01b0316836001600160a01b03161415610a635760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a835750610a81813361087a565b155b15610aa1576040516367d9dca160e11b815260040160405180910390fd5b610aac8383836119fd565b505050565b6008546001600160a01b03163314610ae45760405162461bcd60e51b8152600401610adb90612748565b60405180910390fd5b6122b8811115610b2c5760405162461bcd60e51b8152602060048201526013602482015272115e18d95959081d1bdd185b08185b5bdd5b9d606a1b6044820152606401610adb565b601255565b6008546001600160a01b03163314610b5b5760405162461bcd60e51b8152600401610adb90612748565b8051610b6e90600c9060208401906121b6565b5050565b6008546001600160a01b03163314610b9c5760405162461bcd60e51b8152600401610adb90612748565b6013805460ff1916911515919091179055565b600154600054036000190190565b610aac838383611a59565b6008546001600160a01b03163314610bf25760405162461bcd60e51b8152600401610adb90612748565b601380549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610c365760405162461bcd60e51b8152600401610adb90612748565b60026009541415610c895760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610adb565b60026009556000610ca26008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cec576040519150601f19603f3d011682016040523d82523d6000602084013e610cf1565b606091505b5050905080610cff57600080fd5b506001600955565b610aac83838360405180602001604052806000815250611603565b60606000610d2f83611273565b90506000816001600160401b03811115610d4b57610d4b6128e5565b604051908082528060200260200182016040528015610d74578160200160208202803683370190505b50905060016000805b8482108015610d8e57506010548311155b15610e5e57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091610dfb575080516001600160a01b031615155b15610e0557805191505b876001600160a01b0316826001600160a01b03161415610e4b5783858481518110610e3257610e326128cf565b602090810291909101015282610e4781612874565b9350505b83610e5581612874565b94505050610d7d565b509195945050505050565b6008546001600160a01b03163314610e935760405162461bcd60e51b8152600401610adb90612748565b600e55565b6008546001600160a01b03163314610ec25760405162461bcd60e51b8152600401610adb90612748565b8051610b6e90600d9060208401906121b6565b600c8054610ee290612839565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0e90612839565b8015610f5b5780601f10610f3057610100808354040283529160200191610f5b565b820191906000526020600020905b815481529060010190602001808311610f3e57829003601f168201915b505050505081565b600b8054610ee290612839565b6000610f7b82611c47565b5192915050565b6008546001600160a01b03163314610fac5760405162461bcd60e51b8152600401610adb90612748565b60005b81811015610aac57600160156000858585818110610fcf57610fcf6128cf565b9050602002016020810190610fe491906122f0565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061101681612874565b915050610faf565b8060008111801561103157506011548111155b61104d5760405162461bcd60e51b8152600401610adb9061271a565b60105481611059610baf565b61106391906127ab565b11156110815760405162461bcd60e51b8152600401610adb9061277d565b8180600f5461109091906127d7565b3410156110d55760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610adb565b60135460ff16156111225760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610adb565b601354610100900460ff166111875760405162461bcd60e51b815260206004820152602560248201527f4f6e6c7920616c6c6f77656420746f206d696e7420647572696e672077686974604482015264195b1a5cdd60da1b6064820152608401610adb565b3360009081526015602052604090205460ff166111e65760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610adb565b33600090815260146020526040902054600461120285836127ab565b11156112495760405162461bcd60e51b8152602060048201526016602482015275115e18d95959590815d308135a5b9d08105b5bdd5b9d60521b6044820152606401610adb565b6112533385611d6e565b61125d84826127ab565b3360009081526014602052604090205550505050565b60006001600160a01b03821661129c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146112eb5760405162461bcd60e51b8152600401610adb90612748565b6112f56000611d88565b565b6008546001600160a01b031633146113215760405162461bcd60e51b8152600401610adb90612748565b600a55565b6008546001600160a01b031633146113505760405162461bcd60e51b8152600401610adb90612748565b8051610b6e90600b9060208401906121b6565b60606003805461095c90612839565b8060008111801561138557506011548111155b6113a15760405162461bcd60e51b8152600401610adb9061271a565b601054816113ad610baf565b6113b791906127ab565b11156113d55760405162461bcd60e51b8152600401610adb9061277d565b8180600e546113e491906127d7565b3410156114295760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610adb565b60135460ff16156114765760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610adb565b601354610100900460ff16156114ce5760405162461bcd60e51b815260206004820152601760248201527f4e6f74206f70656e20746f207075626c696320796574210000000000000000006044820152606401610adb565b601254836114db33611273565b6114e591906127ab565b11156115275760405162461bcd60e51b8152602060048201526011602482015270115e18d9595908135a5b9d08131a5b5a5d607a1b6044820152606401610adb565b610aac3384611d6e565b6001600160a01b03821633141561155b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d8054610ee290612839565b6008546001600160a01b031633146115fe5760405162461bcd60e51b8152600401610adb90612748565b601155565b61160e848484611a59565b6001600160a01b0383163b15158015611630575061162e84848484611dda565b155b1561164e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061165f826119c4565b6116c35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610adb565b60135462010000900460ff1661176557600d80546116e090612839565b80601f016020809104026020016040519081016040528092919081815260200182805461170c90612839565b80156117595780601f1061172e57610100808354040283529160200191611759565b820191906000526020600020905b81548152906001019060200180831161173c57829003601f168201915b50505050509050919050565b600061176f611ed2565b9050600081511161178f57604051806020016040528060008152506117bd565b8061179984611ee1565b600c6040516020016117ad939291906125c2565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117ee5760405162461bcd60e51b8152600401610adb90612748565b60138054911515620100000262ff000019909216919091179055565b8160008111801561181d57506011548111155b6118395760405162461bcd60e51b8152600401610adb9061271a565b60105481611845610baf565b61184f91906127ab565b111561186d5760405162461bcd60e51b8152600401610adb9061277d565b6008546001600160a01b031633146118975760405162461bcd60e51b8152600401610adb90612748565b610aac8284611d6e565b6008546001600160a01b031633146118cb5760405162461bcd60e51b8152600401610adb90612748565b600081116118eb5760405162461bcd60e51b8152600401610adb9061271a565b601054816118f7610baf565b61190191906127ab565b111561191f5760405162461bcd60e51b8152600401610adb9061277d565b6119293382611d6e565b50565b6008546001600160a01b031633146119565760405162461bcd60e51b8152600401610adb90612748565b6001600160a01b0381166119bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610adb565b61192981611d88565b6000816001111580156119d8575060005482105b8015610947575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a6482611c47565b9050836001600160a01b031681600001516001600160a01b031614611a9b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611ab95750611ab9853361087a565b80611ad4575033611ac9846109df565b6001600160a01b0316145b905080611af457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b1b57604051633a954ecd60e21b815260040160405180910390fd5b611b27600084876119fd565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611bfb576000548214611bfb57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611c77575060005481105b15611d5557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d535780516001600160a01b031615611cea579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d4e579392505050565b611cea565b505b604051636f96cda160e11b815260040160405180910390fd5b610b6e828260405180602001604052806000815250611fde565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e0f903390899088908890600401612686565b602060405180830381600087803b158015611e2957600080fd5b505af1925050508015611e59575060408051601f3d908101601f19168201909252611e569181019061250e565b60015b611eb4573d808015611e87576040519150601f19603f3d011682016040523d82523d6000602084013e611e8c565b606091505b508051611eac576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461095c90612839565b606081611f055750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f2f5780611f1981612874565b9150611f289050600a836127c3565b9150611f09565b6000816001600160401b03811115611f4957611f496128e5565b6040519080825280601f01601f191660200182016040528015611f73576020820181803683370190505b5090505b8415611eca57611f886001836127f6565b9150611f95600a8661288f565b611fa09060306127ab565b60f81b818381518110611fb557611fb56128cf565b60200101906001600160f81b031916908160001a905350611fd7600a866127c3565b9450611f77565b610aac83838360016000546001600160a01b03851661200f57604051622e076360e81b815260040160405180910390fd5b8361202d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156120de57506001600160a01b0387163b15155b15612167575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461212f6000888480600101955088611dda565b61214c576040516368d2bf6b60e11b815260040160405180910390fd5b808214156120e457826000541461216257600080fd5b6121ad565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612168575b50600055611c40565b8280546121c290612839565b90600052602060002090601f0160209004810192826121e4576000855561222a565b82601f106121fd57805160ff191683800117855561222a565b8280016001018555821561222a579182015b8281111561222a57825182559160200191906001019061220f565b5061223692915061223a565b5090565b5b80821115612236576000815560010161223b565b60006001600160401b0380841115612269576122696128e5565b604051601f8501601f19908116603f01168101908282118183101715612291576122916128e5565b816040528093508581528686860111156122aa57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122db57600080fd5b919050565b803580151581146122db57600080fd5b60006020828403121561230257600080fd5b6117bd826122c4565b6000806040838503121561231e57600080fd5b612327836122c4565b9150612335602084016122c4565b90509250929050565b60008060006060848603121561235357600080fd5b61235c846122c4565b925061236a602085016122c4565b9150604084013590509250925092565b6000806000806080858703121561239057600080fd5b612399856122c4565b93506123a7602086016122c4565b92506040850135915060608501356001600160401b038111156123c957600080fd5b8501601f810187136123da57600080fd5b6123e98782356020840161224f565b91505092959194509250565b6000806040838503121561240857600080fd5b612411836122c4565b9150612335602084016122e0565b6000806040838503121561243257600080fd5b61243b836122c4565b946020939093013593505050565b6000806020838503121561245c57600080fd5b82356001600160401b038082111561247357600080fd5b818501915085601f83011261248757600080fd5b81358181111561249657600080fd5b8660208260051b85010111156124ab57600080fd5b60209290920196919550909350505050565b6000602082840312156124cf57600080fd5b6117bd826122e0565b6000602082840312156124ea57600080fd5b5035919050565b60006020828403121561250357600080fd5b81356117bd816128fb565b60006020828403121561252057600080fd5b81516117bd816128fb565b60006020828403121561253d57600080fd5b81356001600160401b0381111561255357600080fd5b8201601f8101841361256457600080fd5b611eca8482356020840161224f565b6000806040838503121561258657600080fd5b82359150612335602084016122c4565b600081518084526125ae81602086016020860161280d565b601f01601f19169290920160200192915050565b6000845160206125d58285838a0161280d565b8551918401916125e88184848a0161280d565b8554920191600090600181811c908083168061260557607f831692505b85831081141561262357634e487b7160e01b85526022600452602485fd5b808015612637576001811461264857612675565b60ff19851688528388019550612675565b60008b81526020902060005b8581101561266d5781548a820152908401908801612654565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126b990830184612596565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126fb578351835292840192918401916001016126df565b50909695505050505050565b6020815260006117bd6020830184612596565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600082198211156127be576127be6128a3565b500190565b6000826127d2576127d26128b9565b500490565b60008160001904831182151516156127f1576127f16128a3565b500290565b600082821015612808576128086128a3565b500390565b60005b83811015612828578181015183820152602001612810565b8381111561164e5750506000910152565b600181811c9082168061284d57607f821691505b6020821081141561286e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612888576128886128a3565b5060010190565b60008261289e5761289e6128b9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461192957600080fdfea264697066735822122035eef3e13a6d1205d232dd593f9c9ab087a465b3cf61c56d0050d4d2064b6ea064736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000009537061636520426f6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000087370616365626f6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d55544243425838506d4b365979326e4c4d4a6367327a4a3333436d566b4b676857313638465a51794d4c687a2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c8063686b281211610175578063a0712d68116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c51461085f578063efbd73f4146108a8578063f19e75d4146108c8578063f2fde38b146108db57600080fd5b8063d5abeb0114610813578063d70a28d114610829578063e0a808531461083f57600080fd5b8063a0712d681461076b578063a22cb4651461077e578063a45ba8e71461079e578063b071401b146107b3578063b88d4fde146107d3578063c87b56dd146107f357600080fd5b80637ec4a6591161012e5780637ec4a659146106ad5780638da5cb5b146106cd57806394354fd0146106eb57806395d89b41146107015780639c70b512146107165780639e4f20ba1461073557600080fd5b8063686b2812146105f85780636aabb9471461061857806370a082311461062b578063715018a61461064b57806377c28390146106605780637cb647591461068d57600080fd5b80633af32abf116102345780634baabc8b116101ed5780635503a0e8116101c75780635503a0e8146105945780635c975abb146105a957806362b99ad4146105c35780636352211e146105d857600080fd5b80634baabc8b1461053e5780634fdd43cb14610554578063518302271461057457600080fd5b80633af32abf146104635780633c9527641461049c5780633ccfd60b146104bc57806342842e0e146104d1578063438b6300146104f157806344a0d68a1461051e57600080fd5b806316ba10e01161028657806316ba10e0146103c357806316c38b3c146103e357806318160ddd14610403578063199983ba1461041857806323b872dd1461042d5780632eb4a7ab1461044d57600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d5780631042779c1461037f57806313faede61461039f575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046124f1565b6108fb565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061031861094d565b6040516102fa9190612707565b34801561033157600080fd5b506103456103403660046124d8565b6109df565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d61037836600461241f565b610a23565b005b34801561038b57600080fd5b5061037d61039a3660046124d8565b610ab1565b3480156103ab57600080fd5b506103b5600e5481565b6040519081526020016102fa565b3480156103cf57600080fd5b5061037d6103de36600461252b565b610b31565b3480156103ef57600080fd5b5061037d6103fe3660046124bd565b610b72565b34801561040f57600080fd5b506103b5610baf565b34801561042457600080fd5b506103b5600481565b34801561043957600080fd5b5061037d61044836600461233e565b610bbd565b34801561045957600080fd5b506103b5600a5481565b34801561046f57600080fd5b506102ee61047e3660046122f0565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104a857600080fd5b5061037d6104b73660046124bd565b610bc8565b3480156104c857600080fd5b5061037d610c0c565b3480156104dd57600080fd5b5061037d6104ec36600461233e565b610d07565b3480156104fd57600080fd5b5061051161050c3660046122f0565b610d22565b6040516102fa91906126c3565b34801561052a57600080fd5b5061037d6105393660046124d8565b610e69565b34801561054a57600080fd5b506103b560125481565b34801561056057600080fd5b5061037d61056f36600461252b565b610e98565b34801561058057600080fd5b506013546102ee9062010000900460ff1681565b3480156105a057600080fd5b50610318610ed5565b3480156105b557600080fd5b506013546102ee9060ff1681565b3480156105cf57600080fd5b50610318610f63565b3480156105e457600080fd5b506103456105f33660046124d8565b610f70565b34801561060457600080fd5b5061037d610613366004612449565b610f82565b61037d6106263660046124d8565b61101e565b34801561063757600080fd5b506103b56106463660046122f0565b611273565b34801561065757600080fd5b5061037d6112c1565b34801561066c57600080fd5b506103b561067b3660046122f0565b60146020526000908152604090205481565b34801561069957600080fd5b5061037d6106a83660046124d8565b6112f7565b3480156106b957600080fd5b5061037d6106c836600461252b565b611326565b3480156106d957600080fd5b506008546001600160a01b0316610345565b3480156106f757600080fd5b506103b560115481565b34801561070d57600080fd5b50610318611363565b34801561072257600080fd5b506013546102ee90610100900460ff1681565b34801561074157600080fd5b506103b56107503660046122f0565b6001600160a01b031660009081526014602052604090205490565b61037d6107793660046124d8565b611372565b34801561078a57600080fd5b5061037d6107993660046123f5565b611531565b3480156107aa57600080fd5b506103186115c7565b3480156107bf57600080fd5b5061037d6107ce3660046124d8565b6115d4565b3480156107df57600080fd5b5061037d6107ee36600461237a565b611603565b3480156107ff57600080fd5b5061031861080e3660046124d8565b611654565b34801561081f57600080fd5b506103b560105481565b34801561083557600080fd5b506103b5600f5481565b34801561084b57600080fd5b5061037d61085a3660046124bd565b6117c4565b34801561086b57600080fd5b506102ee61087a36600461230b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108b457600080fd5b5061037d6108c3366004612573565b61180a565b61037d6108d63660046124d8565b6118a1565b3480156108e757600080fd5b5061037d6108f63660046122f0565b61192c565b60006001600160e01b031982166380ac58cd60e01b148061092c57506001600160e01b03198216635b5e139f60e01b145b8061094757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461095c90612839565b80601f016020809104026020016040519081016040528092919081815260200182805461098890612839565b80156109d55780601f106109aa576101008083540402835291602001916109d5565b820191906000526020600020905b8154815290600101906020018083116109b857829003601f168201915b5050505050905090565b60006109ea826119c4565b610a07576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a2e82610f70565b9050806001600160a01b0316836001600160a01b03161415610a635760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a835750610a81813361087a565b155b15610aa1576040516367d9dca160e11b815260040160405180910390fd5b610aac8383836119fd565b505050565b6008546001600160a01b03163314610ae45760405162461bcd60e51b8152600401610adb90612748565b60405180910390fd5b6122b8811115610b2c5760405162461bcd60e51b8152602060048201526013602482015272115e18d95959081d1bdd185b08185b5bdd5b9d606a1b6044820152606401610adb565b601255565b6008546001600160a01b03163314610b5b5760405162461bcd60e51b8152600401610adb90612748565b8051610b6e90600c9060208401906121b6565b5050565b6008546001600160a01b03163314610b9c5760405162461bcd60e51b8152600401610adb90612748565b6013805460ff1916911515919091179055565b600154600054036000190190565b610aac838383611a59565b6008546001600160a01b03163314610bf25760405162461bcd60e51b8152600401610adb90612748565b601380549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610c365760405162461bcd60e51b8152600401610adb90612748565b60026009541415610c895760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610adb565b60026009556000610ca26008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cec576040519150601f19603f3d011682016040523d82523d6000602084013e610cf1565b606091505b5050905080610cff57600080fd5b506001600955565b610aac83838360405180602001604052806000815250611603565b60606000610d2f83611273565b90506000816001600160401b03811115610d4b57610d4b6128e5565b604051908082528060200260200182016040528015610d74578160200160208202803683370190505b50905060016000805b8482108015610d8e57506010548311155b15610e5e57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091610dfb575080516001600160a01b031615155b15610e0557805191505b876001600160a01b0316826001600160a01b03161415610e4b5783858481518110610e3257610e326128cf565b602090810291909101015282610e4781612874565b9350505b83610e5581612874565b94505050610d7d565b509195945050505050565b6008546001600160a01b03163314610e935760405162461bcd60e51b8152600401610adb90612748565b600e55565b6008546001600160a01b03163314610ec25760405162461bcd60e51b8152600401610adb90612748565b8051610b6e90600d9060208401906121b6565b600c8054610ee290612839565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0e90612839565b8015610f5b5780601f10610f3057610100808354040283529160200191610f5b565b820191906000526020600020905b815481529060010190602001808311610f3e57829003601f168201915b505050505081565b600b8054610ee290612839565b6000610f7b82611c47565b5192915050565b6008546001600160a01b03163314610fac5760405162461bcd60e51b8152600401610adb90612748565b60005b81811015610aac57600160156000858585818110610fcf57610fcf6128cf565b9050602002016020810190610fe491906122f0565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061101681612874565b915050610faf565b8060008111801561103157506011548111155b61104d5760405162461bcd60e51b8152600401610adb9061271a565b60105481611059610baf565b61106391906127ab565b11156110815760405162461bcd60e51b8152600401610adb9061277d565b8180600f5461109091906127d7565b3410156110d55760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610adb565b60135460ff16156111225760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610adb565b601354610100900460ff166111875760405162461bcd60e51b815260206004820152602560248201527f4f6e6c7920616c6c6f77656420746f206d696e7420647572696e672077686974604482015264195b1a5cdd60da1b6064820152608401610adb565b3360009081526015602052604090205460ff166111e65760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610adb565b33600090815260146020526040902054600461120285836127ab565b11156112495760405162461bcd60e51b8152602060048201526016602482015275115e18d95959590815d308135a5b9d08105b5bdd5b9d60521b6044820152606401610adb565b6112533385611d6e565b61125d84826127ab565b3360009081526014602052604090205550505050565b60006001600160a01b03821661129c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146112eb5760405162461bcd60e51b8152600401610adb90612748565b6112f56000611d88565b565b6008546001600160a01b031633146113215760405162461bcd60e51b8152600401610adb90612748565b600a55565b6008546001600160a01b031633146113505760405162461bcd60e51b8152600401610adb90612748565b8051610b6e90600b9060208401906121b6565b60606003805461095c90612839565b8060008111801561138557506011548111155b6113a15760405162461bcd60e51b8152600401610adb9061271a565b601054816113ad610baf565b6113b791906127ab565b11156113d55760405162461bcd60e51b8152600401610adb9061277d565b8180600e546113e491906127d7565b3410156114295760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610adb565b60135460ff16156114765760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610adb565b601354610100900460ff16156114ce5760405162461bcd60e51b815260206004820152601760248201527f4e6f74206f70656e20746f207075626c696320796574210000000000000000006044820152606401610adb565b601254836114db33611273565b6114e591906127ab565b11156115275760405162461bcd60e51b8152602060048201526011602482015270115e18d9595908135a5b9d08131a5b5a5d607a1b6044820152606401610adb565b610aac3384611d6e565b6001600160a01b03821633141561155b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d8054610ee290612839565b6008546001600160a01b031633146115fe5760405162461bcd60e51b8152600401610adb90612748565b601155565b61160e848484611a59565b6001600160a01b0383163b15158015611630575061162e84848484611dda565b155b1561164e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061165f826119c4565b6116c35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610adb565b60135462010000900460ff1661176557600d80546116e090612839565b80601f016020809104026020016040519081016040528092919081815260200182805461170c90612839565b80156117595780601f1061172e57610100808354040283529160200191611759565b820191906000526020600020905b81548152906001019060200180831161173c57829003601f168201915b50505050509050919050565b600061176f611ed2565b9050600081511161178f57604051806020016040528060008152506117bd565b8061179984611ee1565b600c6040516020016117ad939291906125c2565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117ee5760405162461bcd60e51b8152600401610adb90612748565b60138054911515620100000262ff000019909216919091179055565b8160008111801561181d57506011548111155b6118395760405162461bcd60e51b8152600401610adb9061271a565b60105481611845610baf565b61184f91906127ab565b111561186d5760405162461bcd60e51b8152600401610adb9061277d565b6008546001600160a01b031633146118975760405162461bcd60e51b8152600401610adb90612748565b610aac8284611d6e565b6008546001600160a01b031633146118cb5760405162461bcd60e51b8152600401610adb90612748565b600081116118eb5760405162461bcd60e51b8152600401610adb9061271a565b601054816118f7610baf565b61190191906127ab565b111561191f5760405162461bcd60e51b8152600401610adb9061277d565b6119293382611d6e565b50565b6008546001600160a01b031633146119565760405162461bcd60e51b8152600401610adb90612748565b6001600160a01b0381166119bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610adb565b61192981611d88565b6000816001111580156119d8575060005482105b8015610947575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a6482611c47565b9050836001600160a01b031681600001516001600160a01b031614611a9b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611ab95750611ab9853361087a565b80611ad4575033611ac9846109df565b6001600160a01b0316145b905080611af457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b1b57604051633a954ecd60e21b815260040160405180910390fd5b611b27600084876119fd565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611bfb576000548214611bfb57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611c77575060005481105b15611d5557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d535780516001600160a01b031615611cea579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d4e579392505050565b611cea565b505b604051636f96cda160e11b815260040160405180910390fd5b610b6e828260405180602001604052806000815250611fde565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e0f903390899088908890600401612686565b602060405180830381600087803b158015611e2957600080fd5b505af1925050508015611e59575060408051601f3d908101601f19168201909252611e569181019061250e565b60015b611eb4573d808015611e87576040519150601f19603f3d011682016040523d82523d6000602084013e611e8c565b606091505b508051611eac576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461095c90612839565b606081611f055750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f2f5780611f1981612874565b9150611f289050600a836127c3565b9150611f09565b6000816001600160401b03811115611f4957611f496128e5565b6040519080825280601f01601f191660200182016040528015611f73576020820181803683370190505b5090505b8415611eca57611f886001836127f6565b9150611f95600a8661288f565b611fa09060306127ab565b60f81b818381518110611fb557611fb56128cf565b60200101906001600160f81b031916908160001a905350611fd7600a866127c3565b9450611f77565b610aac83838360016000546001600160a01b03851661200f57604051622e076360e81b815260040160405180910390fd5b8361202d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156120de57506001600160a01b0387163b15155b15612167575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461212f6000888480600101955088611dda565b61214c576040516368d2bf6b60e11b815260040160405180910390fd5b808214156120e457826000541461216257600080fd5b6121ad565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612168575b50600055611c40565b8280546121c290612839565b90600052602060002090601f0160209004810192826121e4576000855561222a565b82601f106121fd57805160ff191683800117855561222a565b8280016001018555821561222a579182015b8281111561222a57825182559160200191906001019061220f565b5061223692915061223a565b5090565b5b80821115612236576000815560010161223b565b60006001600160401b0380841115612269576122696128e5565b604051601f8501601f19908116603f01168101908282118183101715612291576122916128e5565b816040528093508581528686860111156122aa57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122db57600080fd5b919050565b803580151581146122db57600080fd5b60006020828403121561230257600080fd5b6117bd826122c4565b6000806040838503121561231e57600080fd5b612327836122c4565b9150612335602084016122c4565b90509250929050565b60008060006060848603121561235357600080fd5b61235c846122c4565b925061236a602085016122c4565b9150604084013590509250925092565b6000806000806080858703121561239057600080fd5b612399856122c4565b93506123a7602086016122c4565b92506040850135915060608501356001600160401b038111156123c957600080fd5b8501601f810187136123da57600080fd5b6123e98782356020840161224f565b91505092959194509250565b6000806040838503121561240857600080fd5b612411836122c4565b9150612335602084016122e0565b6000806040838503121561243257600080fd5b61243b836122c4565b946020939093013593505050565b6000806020838503121561245c57600080fd5b82356001600160401b038082111561247357600080fd5b818501915085601f83011261248757600080fd5b81358181111561249657600080fd5b8660208260051b85010111156124ab57600080fd5b60209290920196919550909350505050565b6000602082840312156124cf57600080fd5b6117bd826122e0565b6000602082840312156124ea57600080fd5b5035919050565b60006020828403121561250357600080fd5b81356117bd816128fb565b60006020828403121561252057600080fd5b81516117bd816128fb565b60006020828403121561253d57600080fd5b81356001600160401b0381111561255357600080fd5b8201601f8101841361256457600080fd5b611eca8482356020840161224f565b6000806040838503121561258657600080fd5b82359150612335602084016122c4565b600081518084526125ae81602086016020860161280d565b601f01601f19169290920160200192915050565b6000845160206125d58285838a0161280d565b8551918401916125e88184848a0161280d565b8554920191600090600181811c908083168061260557607f831692505b85831081141561262357634e487b7160e01b85526022600452602485fd5b808015612637576001811461264857612675565b60ff19851688528388019550612675565b60008b81526020902060005b8581101561266d5781548a820152908401908801612654565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126b990830184612596565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126fb578351835292840192918401916001016126df565b50909695505050505050565b6020815260006117bd6020830184612596565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600082198211156127be576127be6128a3565b500190565b6000826127d2576127d26128b9565b500490565b60008160001904831182151516156127f1576127f16128a3565b500290565b600082821015612808576128086128a3565b500390565b60005b83811015612828578181015183820152602001612810565b8381111561164e5750506000910152565b600181811c9082168061284d57607f821691505b6020821081141561286e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612888576128886128a3565b5060010190565b60008261289e5761289e6128b9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461192957600080fdfea264697066735822122035eef3e13a6d1205d232dd593f9c9ab087a465b3cf61c56d0050d4d2064b6ea064736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000009537061636520426f6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000087370616365626f6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d55544243425838506d4b365979326e4c4d4a6367327a4a3333436d566b4b676857313638465a51794d4c687a2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Space Boo
Arg [1] : _tokenSymbol (string): spaceboo
Arg [2] : _initBaseURI (string):
Arg [3] : _hiddenMetadataUri (string): ipfs://QmUTBCBX8PmK6Yy2nLMJcg2zJ33CmVkKghW168FZQyMLhz/hidden.json

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 537061636520426f6f0000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 7370616365626f6f000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [10] : 697066733a2f2f516d55544243425838506d4b365979326e4c4d4a6367327a4a
Arg [11] : 3333436d566b4b676857313638465a51794d4c687a2f68696464656e2e6a736f
Arg [12] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48873:6018:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31128:305;;;;;;;;;;-1:-1:-1;31128:305:0;;;;;:::i;:::-;;:::i;:::-;;;8871:14:1;;8864:22;8846:41;;8834:2;8819:18;31128:305:0;;;;;;;;34241:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35744:204::-;;;;;;;;;;-1:-1:-1;35744:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7532:32:1;;;7514:51;;7502:2;7487:18;35744:204:0;7368:203:1;35307:371:0;;;;;;;;;;-1:-1:-1;35307:371:0;;;;;:::i;:::-;;:::i;:::-;;53497:164;;;;;;;;;;-1:-1:-1;53497:164:0;;;;;:::i;:::-;;:::i;49174:33::-;;;;;;;;;;;;;;;;;;;9044:25:1;;;9032:2;9017:18;49174:33:0;8898:177:1;54047:100:0;;;;;;;;;;-1:-1:-1;54047:100:0;;;;;:::i;:::-;;:::i;54153:77::-;;;;;;;;;;-1:-1:-1;54153:77:0;;;;;:::i;:::-;;:::i;30377:303::-;;;;;;;;;;;;;:::i;49001:53::-;;;;;;;;;;;;49053:1;49001:53;;36609:170;;;;;;;;;;-1:-1:-1;36609:170:0;;;;;:::i;:::-;;:::i;48967:25::-;;;;;;;;;;;;;;;;51695:112;;;;;;;;;;-1:-1:-1;51695:112:0;;;;;:::i;:::-;-1:-1:-1;;;;;51774:27:0;51754:4;51774:27;;;:20;:27;;;;;;;;;51695:112;54340:95;;;;;;;;;;-1:-1:-1;54340:95:0;;;;;:::i;:::-;;:::i;54441:150::-;;;;;;;;;;;;;:::i;36850:185::-;;;;;;;;;;-1:-1:-1;36850:185:0;;;;;:::i;:::-;;:::i;51976:796::-;;;;;;;;;;-1:-1:-1;51976:796:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53417:74::-;;;;;;;;;;-1:-1:-1;53417:74:0;;;;;:::i;:::-;;:::i;49329:40::-;;;;;;;;;;;;;;;;53803:132;;;;;;;;;;-1:-1:-1;53803:132:0;;;;;:::i;:::-;;:::i;49445:28::-;;;;;;;;;;-1:-1:-1;49445:28:0;;;;;;;;;;;49096:33;;;;;;;;;;;;;:::i;49376:25::-;;;;;;;;;;-1:-1:-1;49376:25:0;;;;;;;;49063:28;;;;;;;;;;;;;:::i;34049:125::-;;;;;;;;;;-1:-1:-1;34049:125:0;;;;;:::i;:::-;;:::i;54597:181::-;;;;;;;;;;-1:-1:-1;54597:181:0;;;;;:::i;:::-;;:::i;51016:560::-;;;;;;:::i;:::-;;:::i;31497:206::-;;;;;;;;;;-1:-1:-1;31497:206:0;;;;;:::i;:::-;;:::i;21184:103::-;;;;;;;;;;;;;:::i;49478:46::-;;;;;;;;;;-1:-1:-1;49478:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;54236:98;;;;;;;;;;-1:-1:-1;54236:98:0;;;;;:::i;:::-;;:::i;53941:100::-;;;;;;;;;;-1:-1:-1;53941:100:0;;;;;:::i;:::-;;:::i;20533:87::-;;;;;;;;;;-1:-1:-1;20606:6:0;;-1:-1:-1;;;;;20606:6:0;20533:87;;49287:37;;;;;;;;;;;;;;;;34410:104;;;;;;;;;;;;;:::i;49406:34::-;;;;;;;;;;-1:-1:-1;49406:34:0;;;;;;;;;;;51582:107;;;;;;;;;;-1:-1:-1;51582:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;51665:18:0;51640:7;51665:18;;;:11;:18;;;;;;;51582:107;50385:368;;;;;;:::i;:::-;;:::i;36020:287::-;;;;;;;;;;-1:-1:-1;36020:287:0;;;;;:::i;:::-;;:::i;49134:31::-;;;;;;;;;;;;;:::i;53667:130::-;;;;;;;;;;-1:-1:-1;53667:130:0;;;;;:::i;:::-;;:::i;37106:369::-;;;;;;;;;;-1:-1:-1;37106:369:0;;;;;:::i;:::-;;:::i;52879:445::-;;;;;;;;;;-1:-1:-1;52879:445:0;;;;;:::i;:::-;;:::i;49251:31::-;;;;;;;;;;;;;;;;49212:34;;;;;;;;;;;;;;;;53330:81;;;;;;;;;;-1:-1:-1;53330:81:0;;;;;:::i;:::-;;:::i;36378:164::-;;;;;;;;;;-1:-1:-1;36378:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36499:25:0;;;36475:4;36499:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36378:164;51815:155;;;;;;;;;;-1:-1:-1;51815:155:0;;;;;:::i;:::-;;:::i;50759:251::-;;;;;;:::i;:::-;;:::i;21442:201::-;;;;;;;;;;-1:-1:-1;21442:201:0;;;;;:::i;:::-;;:::i;31128:305::-;31230:4;-1:-1:-1;;;;;;31267:40:0;;-1:-1:-1;;;31267:40:0;;:105;;-1:-1:-1;;;;;;;31324:48:0;;-1:-1:-1;;;31324:48:0;31267:105;:158;;;-1:-1:-1;;;;;;;;;;19492:40:0;;;31389:36;31247:178;31128:305;-1:-1:-1;;31128:305:0:o;34241:100::-;34295:13;34328:5;34321:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34241:100;:::o;35744:204::-;35812:7;35837:16;35845:7;35837;:16::i;:::-;35832:64;;35862:34;;-1:-1:-1;;;35862:34:0;;;;;;;;;;;35832:64;-1:-1:-1;35916:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35916:24:0;;35744:204::o;35307:371::-;35380:13;35396:24;35412:7;35396:15;:24::i;:::-;35380:40;;35441:5;-1:-1:-1;;;;;35435:11:0;:2;-1:-1:-1;;;;;35435:11:0;;35431:48;;;35455:24;;-1:-1:-1;;;35455:24:0;;;;;;;;;;;35431:48;18470:10;-1:-1:-1;;;;;35496:21:0;;;;;;:63;;-1:-1:-1;35522:37:0;35539:5;18470:10;36378:164;:::i;35522:37::-;35521:38;35496:63;35492:138;;;35583:35;;-1:-1:-1;;;35583:35:0;;;;;;;;;;;35492:138;35642:28;35651:2;35655:7;35664:5;35642:8;:28::i;:::-;35369:309;35307:371;;:::o;53497:164::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;;;;;;;;;53587:4:::1;53576:7;:15;;53568:47;;;::::0;-1:-1:-1;;;53568:47:0;;11365:2:1;53568:47:0::1;::::0;::::1;11347:21:1::0;11404:2;11384:18;;;11377:30;-1:-1:-1;;;11423:18:1;;;11416:49;11482:18;;53568:47:0::1;11163:343:1::0;53568:47:0::1;53624:21;:31:::0;53497:164::o;54047:100::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;54119:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54047:100:::0;:::o;54153:77::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;54209:6:::1;:15:::0;;-1:-1:-1;;54209:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54153:77::o;30377:303::-;52866:1;30631:12;30421:7;30615:13;:28;-1:-1:-1;;30615:46:0;;30377:303::o;36609:170::-;36743:28;36753:4;36759:2;36763:7;36743:9;:28::i;54340:95::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;54405:15:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;54405:24:0;;::::1;::::0;;;::::1;::::0;;54340:95::o;54441:150::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;26020:1:::1;26618:7;;:19;;26610:63;;;::::0;-1:-1:-1;;;26610:63:0;;13895:2:1;26610:63:0::1;::::0;::::1;13877:21:1::0;13934:2;13914:18;;;13907:30;13973:33;13953:18;;;13946:61;14024:18;;26610:63:0::1;13693:355:1::0;26610:63:0::1;26020:1;26751:7;:18:::0;54499:7:::2;54520;20606:6:::0;;-1:-1:-1;;;;;20606:6:0;;20533:87;54520:7:::2;-1:-1:-1::0;;;;;54512:21:0::2;54541;54512:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54498:69;;;54582:2;54574:11;;;::::0;::::2;;-1:-1:-1::0;25976:1:0::1;26930:7;:22:::0;54441:150::o;36850:185::-;36988:39;37005:4;37011:2;37015:7;36988:39;;;;;;;;;;;;:16;:39::i;51976:796::-;52036:16;52061:23;52087:17;52097:6;52087:9;:17::i;:::-;52061:43;;52111:30;52158:15;-1:-1:-1;;;;;52144:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52144:30:0;-1:-1:-1;52111:63:0;-1:-1:-1;52866:1:0;52181:22;;52297:441;52322:15;52304;:33;:64;;;;;52359:9;;52341:14;:27;;52304:64;52297:441;;;52379:31;52413:27;;;:11;:27;;;;;;;;;52379:61;;;;;;;;;-1:-1:-1;;;;;52379:61:0;;;;-1:-1:-1;;;52379:61:0;;-1:-1:-1;;;;;52379:61:0;;;;;;;;-1:-1:-1;;;52379:61:0;;;;;;;;;;;;;;;;52455:49;;-1:-1:-1;52476:14:0;;-1:-1:-1;;;;;52476:28:0;;;52455:49;52451:111;;;52538:14;;;-1:-1:-1;52451:111:0;52598:6;-1:-1:-1;;;;;52576:28:0;:18;-1:-1:-1;;;;;52576:28:0;;52572:132;;;52650:14;52617:13;52631:15;52617:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;52677:17;;;;:::i;:::-;;;;52572:132;52714:16;;;;:::i;:::-;;;;52370:368;52297:441;;;-1:-1:-1;52753:13:0;;51976:796;-1:-1:-1;;;;;51976:796:0:o;53417:74::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;53473:4:::1;:12:::0;53417:74::o;53803:132::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;53891:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;49096:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49063:28::-;;;;;;;:::i;34049:125::-;34113:7;34140:21;34153:7;34140:12;:21::i;:::-;:26;;34049:125;-1:-1:-1;;34049:125:0:o;54597:181::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;54682:6:::1;54677:96;54692:17:::0;;::::1;54677:96;;;54761:4;54727:20;:31;54748:6;;54755:1;54748:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;54727:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;54727:31:0;:38;;-1:-1:-1;;54727:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54711:3;::::1;::::0;::::1;:::i;:::-;;;;54677:96;;51016:560:::0;51083:11;49938:1;49924:11;:15;:52;;;;;49958:18;;49943:11;:33;;49924:52;49916:85;;;;-1:-1:-1;;;49916:85:0;;;;;;;:::i;:::-;50047:9;;50032:11;50016:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50008:73;;;;-1:-1:-1;;;50008:73:0;;;;;;;:::i;:::-;51118:11:::1;50330;50321:6;;:20;;;;:::i;:::-;50308:9;:33;;50300:65;;;::::0;-1:-1:-1;;;50300:65:0;;14255:2:1;50300:65:0::1;::::0;::::1;14237:21:1::0;14294:2;14274:18;;;14267:30;-1:-1:-1;;;14313:18:1;;;14306:49;14372:18;;50300:65:0::1;14053:343:1::0;50300:65:0::1;51149:6:::2;::::0;::::2;;51148:7;51140:43;;;::::0;-1:-1:-1;;;51140:43:0;;12074:2:1;51140:43:0::2;::::0;::::2;12056:21:1::0;12113:2;12093:18;;;12086:30;-1:-1:-1;;;12132:18:1;;;12125:53;12195:18;;51140:43:0::2;11872:347:1::0;51140:43:0::2;51200:15;::::0;::::2;::::0;::::2;;;51192:65;;;::::0;-1:-1:-1;;;51192:65:0;;10608:2:1;51192:65:0::2;::::0;::::2;10590:21:1::0;10647:2;10627:18;;;10620:30;10686:34;10666:18;;;10659:62;-1:-1:-1;;;10737:18:1;;;10730:35;10782:19;;51192:65:0::2;10406:401:1::0;51192:65:0::2;51288:10;51754:4:::0;51774:27;;;:20;:27;;;;;;;;51266:61:::2;;;::::0;-1:-1:-1;;;51266:61:0;;13191:2:1;51266:61:0::2;::::0;::::2;13173:21:1::0;13230:2;13210:18;;;13203:30;13269:25;13249:18;;;13242:53;13312:18;;51266:61:0::2;12989:347:1::0;51266:61:0::2;51366:10;51336:14;51665:18:::0;;;:11;:18;;;;;;49053:1:::2;51394:20;51403:11:::0;51665:18;51394:20:::2;:::i;:::-;:49;;51386:84;;;::::0;-1:-1:-1;;;51386:84:0;;11014:2:1;51386:84:0::2;::::0;::::2;10996:21:1::0;11053:2;11033:18;;;11026:30;-1:-1:-1;;;11072:18:1;;;11065:52;11134:18;;51386:84:0::2;10812:346:1::0;51386:84:0::2;51479:36;18470:10:::0;51503:11:::2;51479:9;:36::i;:::-;51550:20;51559:11:::0;51550:6;:20:::2;:::i;:::-;51536:10;51524:23;::::0;;;:11:::2;:23;::::0;;;;:46;-1:-1:-1;;;;51016:560:0:o;31497:206::-;31561:7;-1:-1:-1;;;;;31585:19:0;;31581:60;;31613:28;;-1:-1:-1;;;31613:28:0;;;;;;;;;;;31581:60;-1:-1:-1;;;;;;31667:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31667:27:0;;31497:206::o;21184:103::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;21249:30:::1;21276:1;21249:18;:30::i;:::-;21184:103::o:0;54236:98::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;54304:10:::1;:24:::0;54236:98::o;53941:100::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;54013:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;34410:104::-:0;34466:13;34499:7;34492:14;;;;;:::i;50385:368::-;50450:11;49938:1;49924:11;:15;:52;;;;;49958:18;;49943:11;:33;;49924:52;49916:85;;;;-1:-1:-1;;;49916:85:0;;;;;;;:::i;:::-;50047:9;;50032:11;50016:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50008:73;;;;-1:-1:-1;;;50008:73:0;;;;;;;:::i;:::-;50483:11:::1;50186;50179:4;;:18;;;;:::i;:::-;50166:9;:31;;50158:63;;;::::0;-1:-1:-1;;;50158:63:0;;14255:2:1;50158:63:0::1;::::0;::::1;14237:21:1::0;14294:2;14274:18;;;14267:30;-1:-1:-1;;;14313:18:1;;;14306:49;14372:18;;50158:63:0::1;14053:343:1::0;50158:63:0::1;50512:6:::2;::::0;::::2;;50511:7;50503:43;;;::::0;-1:-1:-1;;;50503:43:0;;12074:2:1;50503:43:0::2;::::0;::::2;12056:21:1::0;12113:2;12093:18;;;12086:30;-1:-1:-1;;;12132:18:1;;;12125:53;12195:18;;50503:43:0::2;11872:347:1::0;50503:43:0::2;50562:15;::::0;::::2;::::0;::::2;;;50561:16;50553:52;;;::::0;-1:-1:-1;;;50553:52:0;;13543:2:1;50553:52:0::2;::::0;::::2;13525:21:1::0;13582:2;13562:18;;;13555:30;13621:25;13601:18;;;13594:53;13664:18;;50553:52:0::2;13341:347:1::0;50553:52:0::2;50659:21;;50644:11;50620:21;50630:10;50620:9;:21::i;:::-;:35;;;;:::i;:::-;:60;;50612:90;;;::::0;-1:-1:-1;;;50612:90:0;;9506:2:1;50612:90:0::2;::::0;::::2;9488:21:1::0;9545:2;9525:18;;;9518:30;-1:-1:-1;;;9564:18:1;;;9557:47;9621:18;;50612:90:0::2;9304:341:1::0;50612:90:0::2;50711:36;18470:10:::0;50735:11:::2;50711:9;:36::i;36020:287::-:0;-1:-1:-1;;;;;36119:24:0;;18470:10;36119:24;36115:54;;;36152:17;;-1:-1:-1;;;36152:17:0;;;;;;;;;;;36115:54;18470:10;36182:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36182:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36182:53:0;;;;;;;;;;36251:48;;8846:41:1;;;36182:42:0;;18470:10;36251:48;;8819:18:1;36251:48:0;;;;;;;36020:287;;:::o;49134:31::-;;;;;;;:::i;53667:130::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;53751:18:::1;:40:::0;53667:130::o;37106:369::-;37273:28;37283:4;37289:2;37293:7;37273:9;:28::i;:::-;-1:-1:-1;;;;;37316:13:0;;10813:19;:23;;37316:76;;;;;37336:56;37367:4;37373:2;37377:7;37386:5;37336:30;:56::i;:::-;37335:57;37316:76;37312:156;;;37416:40;;-1:-1:-1;;;37416:40:0;;;;;;;;;;;37312:156;37106:369;;;;:::o;52879:445::-;52953:13;52983:17;52991:8;52983:7;:17::i;:::-;52975:77;;;;-1:-1:-1;;;52975:77:0;;12426:2:1;52975:77:0;;;12408:21:1;12465:2;12445:18;;;12438:30;12504:34;12484:18;;;12477:62;-1:-1:-1;;;12555:18:1;;;12548:45;12610:19;;52975:77:0;12224:411:1;52975:77:0;53065:8;;;;;;;53061:64;;53100:17;53093:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52879:445;;;:::o;53061:64::-;53133:28;53164:10;:8;:10::i;:::-;53133:41;;53219:1;53194:14;53188:28;:32;:130;;;;;;;;;;;;;;;;;53256:14;53272:19;:8;:17;:19::i;:::-;53293:9;53239:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53188:130;53181:137;52879:445;-1:-1:-1;;;52879:445:0:o;53330:81::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;53388:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;53388:17:0;;::::1;::::0;;;::::1;::::0;;53330:81::o;51815:155::-;51901:11;49938:1;49924:11;:15;:52;;;;;49958:18;;49943:11;:33;;49924:52;49916:85;;;;-1:-1:-1;;;49916:85:0;;;;;;;:::i;:::-;50047:9;;50032:11;50016:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50008:73;;;;-1:-1:-1;;;50008:73:0;;;;;;;:::i;:::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23:::1;20745:68;;;;-1:-1:-1::0;;;20745:68:0::1;;;;;;;:::i;:::-;51931:33:::2;51941:9;51952:11;51931:9;:33::i;50759:251::-:0;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;50854:1:::1;50840:11;:15;50832:48;;;;-1:-1:-1::0;;;50832:48:0::1;;;;;;;:::i;:::-;50927:9;;50912:11;50896:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50888:73;;;;-1:-1:-1::0;;;50888:73:0::1;;;;;;;:::i;:::-;50968:36;18470:10:::0;50992:11:::1;50968:9;:36::i;:::-;50759:251:::0;:::o;21442:201::-;20606:6;;-1:-1:-1;;;;;20606:6:0;18470:10;20753:23;20745:68;;;;-1:-1:-1;;;20745:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21531:22:0;::::1;21523:73;;;::::0;-1:-1:-1;;;21523:73:0;;9852:2:1;21523:73:0::1;::::0;::::1;9834:21:1::0;9891:2;9871:18;;;9864:30;9930:34;9910:18;;;9903:62;-1:-1:-1;;;9981:18:1;;;9974:36;10027:19;;21523:73:0::1;9650:402:1::0;21523:73:0::1;21607:28;21626:8;21607:18;:28::i;37730:174::-:0;37787:4;37830:7;52866:1;37811:26;;:53;;;;;37851:13;;37841:7;:23;37811:53;:85;;;;-1:-1:-1;;37869:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37869:27:0;;;;37868:28;;37730:174::o;45887:196::-;46002:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;46002:29:0;-1:-1:-1;;;;;46002:29:0;;;;;;;;;46047:28;;46002:24;;46047:28;;;;;;;45887:196;;;:::o;40830:2130::-;40945:35;40983:21;40996:7;40983:12;:21::i;:::-;40945:59;;41043:4;-1:-1:-1;;;;;41021:26:0;:13;:18;;;-1:-1:-1;;;;;41021:26:0;;41017:67;;41056:28;;-1:-1:-1;;;41056:28:0;;;;;;;;;;;41017:67;41097:22;18470:10;-1:-1:-1;;;;;41123:20:0;;;;:73;;-1:-1:-1;41160:36:0;41177:4;18470:10;36378:164;:::i;41160:36::-;41123:126;;;-1:-1:-1;18470:10:0;41213:20;41225:7;41213:11;:20::i;:::-;-1:-1:-1;;;;;41213:36:0;;41123:126;41097:153;;41268:17;41263:66;;41294:35;;-1:-1:-1;;;41294:35:0;;;;;;;;;;;41263:66;-1:-1:-1;;;;;41344:16:0;;41340:52;;41369:23;;-1:-1:-1;;;41369:23:0;;;;;;;;;;;41340:52;41513:35;41530:1;41534:7;41543:4;41513:8;:35::i;:::-;-1:-1:-1;;;;;41844:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41844:31:0;;;-1:-1:-1;;;;;41844:31:0;;;-1:-1:-1;;41844:31:0;;;;;;;41890:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41890:29:0;;;;;;;;;;;41970:20;;;:11;:20;;;;;;42005:18;;-1:-1:-1;;;;;;42038:49:0;;;;-1:-1:-1;;;42071:15:0;42038:49;;;;;;;;;;42361:11;;42421:24;;;;;42464:13;;41970:20;;42421:24;;42464:13;42460:384;;42674:13;;42659:11;:28;42655:174;;42712:20;;42781:28;;;;-1:-1:-1;;;;;42755:54:0;-1:-1:-1;;;42755:54:0;-1:-1:-1;;;;;;42755:54:0;;;-1:-1:-1;;;;;42712:20:0;;42755:54;;;;42655:174;41819:1036;;;42891:7;42887:2;-1:-1:-1;;;;;42872:27:0;42881:4;-1:-1:-1;;;;;42872:27:0;;;;;;;;;;;42910:42;40934:2026;;40830:2130;;;:::o;32878:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32989:7:0;;52866:1;33038:23;;:47;;;;;33072:13;;33065:4;:20;33038:47;33034:886;;;33106:31;33140:17;;;:11;:17;;;;;;;;;33106:51;;;;;;;;;-1:-1:-1;;;;;33106:51:0;;;;-1:-1:-1;;;33106:51:0;;-1:-1:-1;;;;;33106:51:0;;;;;;;;-1:-1:-1;;;33106:51:0;;;;;;;;;;;;;;33176:729;;33226:14;;-1:-1:-1;;;;;33226:28:0;;33222:101;;33290:9;32878:1109;-1:-1:-1;;;32878:1109:0:o;33222:101::-;-1:-1:-1;;;33665:6:0;33710:17;;;;:11;:17;;;;;;;;;33698:29;;;;;;;;;-1:-1:-1;;;;;33698:29:0;;;;;-1:-1:-1;;;33698:29:0;;-1:-1:-1;;;;;33698:29:0;;;;;;;;-1:-1:-1;;;33698:29:0;;;;;;;;;;;;;33758:28;33754:109;;33826:9;32878:1109;-1:-1:-1;;;32878:1109:0:o;33754:109::-;33625:261;;;33087:833;33034:886;33948:31;;-1:-1:-1;;;33948:31:0;;;;;;;;;;;37912:104;37981:27;37991:2;37995:8;37981:27;;;;;;;;;;;;:9;:27::i;21803:191::-;21896:6;;;-1:-1:-1;;;;;21913:17:0;;;-1:-1:-1;;;;;;21913:17:0;;;;;;;21946:40;;21896:6;;;21913:17;21896:6;;21946:40;;21877:16;;21946:40;21866:128;21803:191;:::o;46575:667::-;46759:72;;-1:-1:-1;;;46759:72:0;;46738:4;;-1:-1:-1;;;;;46759:36:0;;;;;:72;;18470:10;;46810:4;;46816:7;;46825:5;;46759:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46759:72:0;;;;;;;;-1:-1:-1;;46759:72:0;;;;;;;;;;;;:::i;:::-;;;46755:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46993:13:0;;46989:235;;47039:40;;-1:-1:-1;;;47039:40:0;;;;;;;;;;;46989:235;47182:6;47176:13;47167:6;47163:2;47159:15;47152:38;46755:480;-1:-1:-1;;;;;;46878:55:0;-1:-1:-1;;;46878:55:0;;-1:-1:-1;46755:480:0;46575:667;;;;;;:::o;54784:104::-;54844:13;54873:9;54866:16;;;;;:::i;1166:723::-;1222:13;1443:10;1439:53;;-1:-1:-1;;1470:10:0;;;;;;;;;;;;-1:-1:-1;;;1470:10:0;;;;;1166:723::o;1439:53::-;1517:5;1502:12;1558:78;1565:9;;1558:78;;1591:8;;;;:::i;:::-;;-1:-1:-1;1614:10:0;;-1:-1:-1;1622:2:0;1614:10;;:::i;:::-;;;1558:78;;;1646:19;1678:6;-1:-1:-1;;;;;1668:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1668:17:0;;1646:39;;1696:154;1703:10;;1696:154;;1730:11;1740:1;1730:11;;:::i;:::-;;-1:-1:-1;1799:10:0;1807:2;1799:5;:10;:::i;:::-;1786:24;;:2;:24;:::i;:::-;1773:39;;1756:6;1763;1756:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1756:56:0;;;;;;;;-1:-1:-1;1827:11:0;1836:2;1827:11;;:::i;:::-;;;1696:154;;38379:163;38502:32;38508:2;38512:8;38522:5;38529:4;38940:20;38963:13;-1:-1:-1;;;;;38991:16:0;;38987:48;;39016:19;;-1:-1:-1;;;39016:19:0;;;;;;;;;;;38987:48;39050:13;39046:44;;39072:18;;-1:-1:-1;;;39072:18:0;;;;;;;;;;;39046:44;-1:-1:-1;;;;;39441:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39500:49:0;;-1:-1:-1;;;;;39441:44:0;;;;;;;39500:49;;;;-1:-1:-1;;39441:44:0;;;;;;39500:49;;;;;;;;;;;;;;;;39566:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39616:66:0;;;;-1:-1:-1;;;39666:15:0;39616:66;;;;;;;;;;39566:25;39763:23;;;39807:4;:23;;;;-1:-1:-1;;;;;;39815:13:0;;10813:19;:23;;39815:15;39803:641;;;39851:314;39882:38;;39907:12;;-1:-1:-1;;;;;39882:38:0;;;39899:1;;39882:38;;39899:1;;39882:38;39948:69;39987:1;39991:2;39995:14;;;;;;40011:5;39948:30;:69::i;:::-;39943:174;;40053:40;;-1:-1:-1;;;40053:40:0;;;;;;;;;;;39943:174;40160:3;40144:12;:19;;39851:314;;40246:12;40229:13;;:29;40225:43;;40260:8;;;40225:43;39803:641;;;40309:120;40340:40;;40365:14;;;;;-1:-1:-1;;;;;40340:40:0;;;40357:1;;40340:40;;40357:1;;40340:40;40424:3;40408:12;:19;;40309:120;;39803:641;-1:-1:-1;40458:13:0;:28;40508:60;37106:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;-1:-1:-1;;;;;2201:6:1;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;-1:-1:-1;;;;;3244:2:1;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:180::-;3835:6;3888:2;3876:9;3867:7;3863:23;3859:32;3856:52;;;3904:1;3901;3894:12;3856:52;-1:-1:-1;3927:23:1;;3776:180;-1:-1:-1;3776:180:1:o;3961:245::-;4019:6;4072:2;4060:9;4051:7;4047:23;4043:32;4040:52;;;4088:1;4085;4078:12;4040:52;4127:9;4114:23;4146:30;4170:5;4146:30;:::i;4211:249::-;4280:6;4333:2;4321:9;4312:7;4308:23;4304:32;4301:52;;;4349:1;4346;4339:12;4301:52;4381:9;4375:16;4400:30;4424:5;4400:30;:::i;4465:450::-;4534:6;4587:2;4575:9;4566:7;4562:23;4558:32;4555:52;;;4603:1;4600;4593:12;4555:52;4643:9;4630:23;-1:-1:-1;;;;;4668:6:1;4665:30;4662:50;;;4708:1;4705;4698:12;4662:50;4731:22;;4784:4;4776:13;;4772:27;-1:-1:-1;4762:55:1;;4813:1;4810;4803:12;4762:55;4836:73;4901:7;4896:2;4883:16;4878:2;4874;4870:11;4836:73;:::i;5105:254::-;5173:6;5181;5234:2;5222:9;5213:7;5209:23;5205:32;5202:52;;;5250:1;5247;5240:12;5202:52;5286:9;5273:23;5263:33;;5315:38;5349:2;5338:9;5334:18;5315:38;:::i;5364:257::-;5405:3;5443:5;5437:12;5470:6;5465:3;5458:19;5486:63;5542:6;5535:4;5530:3;5526:14;5519:4;5512:5;5508:16;5486:63;:::i;:::-;5603:2;5582:15;-1:-1:-1;;5578:29:1;5569:39;;;;5610:4;5565:50;;5364:257;-1:-1:-1;;5364:257:1:o;5626:1527::-;5850:3;5888:6;5882:13;5914:4;5927:51;5971:6;5966:3;5961:2;5953:6;5949:15;5927:51;:::i;:::-;6041:13;;6000:16;;;;6063:55;6041:13;6000:16;6085:15;;;6063:55;:::i;:::-;6207:13;;6140:20;;;6180:1;;6267;6289:18;;;;6342;;;;6369:93;;6447:4;6437:8;6433:19;6421:31;;6369:93;6510:2;6500:8;6497:16;6477:18;6474:40;6471:167;;;-1:-1:-1;;;6537:33:1;;6593:4;6590:1;6583:15;6623:4;6544:3;6611:17;6471:167;6654:18;6681:110;;;;6805:1;6800:328;;;;6647:481;;6681:110;-1:-1:-1;;6716:24:1;;6702:39;;6761:20;;;;-1:-1:-1;6681:110:1;;6800:328;14656:1;14649:14;;;14693:4;14680:18;;6895:1;6909:169;6923:8;6920:1;6917:15;6909:169;;;7005:14;;6990:13;;;6983:37;7048:16;;;;6940:10;;6909:169;;;6913:3;;7109:8;7102:5;7098:20;7091:27;;6647:481;-1:-1:-1;7144:3:1;;5626:1527;-1:-1:-1;;;;;;;;;;;5626:1527:1:o;7576:488::-;-1:-1:-1;;;;;7845:15:1;;;7827:34;;7897:15;;7892:2;7877:18;;7870:43;7944:2;7929:18;;7922:34;;;7992:3;7987:2;7972:18;;7965:31;;;7770:4;;8013:45;;8038:19;;8030:6;8013:45;:::i;:::-;8005:53;7576:488;-1:-1:-1;;;;;;7576:488:1:o;8069:632::-;8240:2;8292:21;;;8362:13;;8265:18;;;8384:22;;;8211:4;;8240:2;8463:15;;;;8437:2;8422:18;;;8211:4;8506:169;8520:6;8517:1;8514:13;8506:169;;;8581:13;;8569:26;;8650:15;;;;8615:12;;;;8542:1;8535:9;8506:169;;;-1:-1:-1;8692:3:1;;8069:632;-1:-1:-1;;;;;;8069:632:1:o;9080:219::-;9229:2;9218:9;9211:21;9192:4;9249:44;9289:2;9278:9;9274:18;9266:6;9249:44;:::i;10057:344::-;10259:2;10241:21;;;10298:2;10278:18;;;10271:30;-1:-1:-1;;;10332:2:1;10317:18;;10310:50;10392:2;10377:18;;10057:344::o;11511:356::-;11713:2;11695:21;;;11732:18;;;11725:30;11791:34;11786:2;11771:18;;11764:62;11858:2;11843:18;;11511:356::o;12640:344::-;12842:2;12824:21;;;12881:2;12861:18;;;12854:30;-1:-1:-1;;;12915:2:1;12900:18;;12893:50;12975:2;12960:18;;12640:344::o;14709:128::-;14749:3;14780:1;14776:6;14773:1;14770:13;14767:39;;;14786:18;;:::i;:::-;-1:-1:-1;14822:9:1;;14709:128::o;14842:120::-;14882:1;14908;14898:35;;14913:18;;:::i;:::-;-1:-1:-1;14947:9:1;;14842:120::o;14967:168::-;15007:7;15073:1;15069;15065:6;15061:14;15058:1;15055:21;15050:1;15043:9;15036:17;15032:45;15029:71;;;15080:18;;:::i;:::-;-1:-1:-1;15120:9:1;;14967:168::o;15140:125::-;15180:4;15208:1;15205;15202:8;15199:34;;;15213:18;;:::i;:::-;-1:-1:-1;15250:9:1;;15140:125::o;15270:258::-;15342:1;15352:113;15366:6;15363:1;15360:13;15352:113;;;15442:11;;;15436:18;15423:11;;;15416:39;15388:2;15381:10;15352:113;;;15483:6;15480:1;15477:13;15474:48;;;-1:-1:-1;;15518:1:1;15500:16;;15493:27;15270:258::o;15533:380::-;15612:1;15608:12;;;;15655;;;15676:61;;15730:4;15722:6;15718:17;15708:27;;15676:61;15783:2;15775:6;15772:14;15752:18;15749:38;15746:161;;;15829:10;15824:3;15820:20;15817:1;15810:31;15864:4;15861:1;15854:15;15892:4;15889:1;15882:15;15746:161;;15533:380;;;:::o;15918:135::-;15957:3;-1:-1:-1;;15978:17:1;;15975:43;;;15998:18;;:::i;:::-;-1:-1:-1;16045:1:1;16034:13;;15918:135::o;16058:112::-;16090:1;16116;16106:35;;16121:18;;:::i;:::-;-1:-1:-1;16155:9:1;;16058:112::o;16175:127::-;16236:10;16231:3;16227:20;16224:1;16217:31;16267:4;16264:1;16257:15;16291:4;16288:1;16281:15;16307:127;16368:10;16363:3;16359:20;16356:1;16349:31;16399:4;16396:1;16389:15;16423:4;16420:1;16413:15;16439:127;16500:10;16495:3;16491:20;16488:1;16481:31;16531:4;16528:1;16521:15;16555:4;16552:1;16545:15;16571:127;16632:10;16627:3;16623:20;16620:1;16613:31;16663:4;16660:1;16653:15;16687:4;16684:1;16677:15;16703:131;-1:-1:-1;;;;;;16777:32:1;;16767:43;;16757:71;;16824:1;16821;16814:12

Swarm Source

ipfs://35eef3e13a6d1205d232dd593f9c9ab087a465b3cf61c56d0050d4d2064b6ea0
Loading...
Loading
Loading...
Loading
[ 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.