ETH Price: $3,059.37 (+1.83%)
Gas: 6 Gwei

Token

MoonPals (MP)
 

Overview

Max Total Supply

5,555 MP

Holders

1,070

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*求求你给我赚点吧.eth
Balance
12 MP
0xc256b227d3692fd7ccd15687edd97c118fea580e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MoonPals is a collection of 8888 MoonPals that are looking for pals from the planet Earth. These cute MoonPals live in the space of Ethereum blockchain. No roadmap, no promises, only a nice art that will take you to the Moon.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MoonPals

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT 
// Written by ReservedSnow
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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 {}
}

// File: contracts/MoonPals.sol



// make sure you are using only the defined solidity compiler versions, also Enable optimization

pragma solidity >=0.8.9 <0.9.0;

contract MoonPals is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

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

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  
  // replace abc with your ipfs cid and filename with your actual filename
  string public hiddenMetadataUri = "ipfs://QmWf9uCgUe76bu4MuPfb4kgoWUSukBDRCnbLxH9BbKYXHF/Hidden.json";
  
  uint256 public cost = 0.04 ether;
  
  uint256 public maxSupply = 8888;
  
  uint256 public maxMintAmountPerTx = 5;
  
  // is used to pause/unpause the contract ( use bool to set the status...you can change it later with write functions)
  bool public paused = true;
  
  // is used to enable/disable wl sale ( use bool to set the status...you can change it later with write functions)
  bool public whitelistMintEnabled = false;
  
  // is used to reveal/hide the metadata ( use bool to set the status...you can't set back to unreveal once revealed)
  bool public revealed = false;

  constructor(
    string memory _uriPrefix
  ) ERC721A("MoonPals", "MP")  {
    setUriPrefix(_uriPrefix);
  }

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

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

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

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

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');
    require(!whitelistMintEnabled, 'Whitelist Mint is going on, Please wait for public sale to open');

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

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

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

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

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

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

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

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

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

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

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

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

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

  function setmaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uriPrefix","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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Aidrop","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":[],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setmaxSupply","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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600c916200022f565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600d916200022f565b5060405180608001604052806041815260200162002b266041913980516200007b91600e916020909101906200022f565b50668e1bc9bf040000600f556122b860105560056011556012805462ffffff19166001179055348015620000ae57600080fd5b5060405162002b6738038062002b67833981016040819052620000d191620002eb565b604051806040016040528060088152602001674d6f6f6e50616c7360c01b8152506040518060400160405280600281526020016104d560f41b8152508160029080519060200190620001259291906200022f565b5080516200013b9060039060208401906200022f565b50506001600055506200014e3362000165565b60016009556200015e81620001b7565b5062000404565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200022b90600c9060208401906200022f565b5050565b8280546200023d90620003c7565b90600052602060002090601f016020900481019282620002615760008555620002ac565b82601f106200027c57805160ff1916838001178555620002ac565b82800160010185558215620002ac579182015b82811115620002ac5782518255916020019190600101906200028f565b50620002ba929150620002be565b5090565b5b80821115620002ba5760008155600101620002bf565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620002ff57600080fd5b82516001600160401b03808211156200031757600080fd5b818501915085601f8301126200032c57600080fd5b815181811115620003415762000341620002d5565b604051601f8201601f19908116603f011681019083821181831017156200036c576200036c620002d5565b8160405282815288868487010111156200038557600080fd5b600093505b82841015620003a957848401860151818501870152928501926200038a565b82841115620003bb5760008684830101525b98975050505050505050565b600181811c90821680620003dc57607f821691505b60208210811415620003fe57634e487b7160e01b600052602260045260246000fd5b50919050565b61271280620004146000396000f3fe60806040526004361061025c5760003560e01c80636352211e11610144578063a45ba8e7116100b6578063c87b56dd1161007a578063c87b56dd146106c8578063d5abeb01146106e8578063db4bec44146106fe578063e0a808531461072e578063e985e9c51461074e578063f2fde38b1461079757600080fd5b8063a45ba8e714610633578063b071401b14610648578063b767a09814610668578063b88d4fde14610688578063bb3dd98f146106a857600080fd5b80637ec4a659116101085780637ec4a659146105975780638da5cb5b146105b757806394354fd0146105d557806395d89b41146105eb578063a0712d6814610600578063a22cb4651461061357600080fd5b80636352211e146105035780636caede3d1461052357806370a0823114610542578063715018a6146105625780637cb647591461057757600080fd5b806323b872dd116101dd57806344a0d68a116101a157806344a0d68a1461045f5780634fdd43cb1461047f578063518302271461049f5780635503a0e8146104bf5780635c975abb146104d457806362b99ad4146104ee57600080fd5b806323b872dd146103c75780632eb4a7ab146103e75780633ccfd60b146103fd57806342842e0e14610412578063438b63001461043257600080fd5b806313faede61161022457806313faede61461032557806316ba10e01461034957806316c38b3c1461036957806318160ddd14610389578063228025e8146103a757600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780631187687514610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612026565b6107b7565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab610809565b60405161028d919061209b565b3480156102c457600080fd5b506102d86102d33660046120ae565b61089b565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b3660046120e3565b6108df565b005b61031061032036600461210d565b61096d565b34801561033157600080fd5b5061033b600f5481565b60405190815260200161028d565b34801561035557600080fd5b50610310610364366004612216565b610bdb565b34801561037557600080fd5b5061031061038436600461226e565b610c1c565b34801561039557600080fd5b5061033b600154600054036000190190565b3480156103b357600080fd5b506103106103c23660046120ae565b610c59565b3480156103d357600080fd5b506103106103e2366004612289565b610c88565b3480156103f357600080fd5b5061033b600a5481565b34801561040957600080fd5b50610310610c93565b34801561041e57600080fd5b5061031061042d366004612289565b610d8e565b34801561043e57600080fd5b5061045261044d3660046122c5565b610da9565b60405161028d91906122e0565b34801561046b57600080fd5b5061031061047a3660046120ae565b610ef0565b34801561048b57600080fd5b5061031061049a366004612216565b610f1f565b3480156104ab57600080fd5b506012546102819062010000900460ff1681565b3480156104cb57600080fd5b506102ab610f5c565b3480156104e057600080fd5b506012546102819060ff1681565b3480156104fa57600080fd5b506102ab610fea565b34801561050f57600080fd5b506102d861051e3660046120ae565b610ff7565b34801561052f57600080fd5b5060125461028190610100900460ff1681565b34801561054e57600080fd5b5061033b61055d3660046122c5565b611009565b34801561056e57600080fd5b50610310611057565b34801561058357600080fd5b506103106105923660046120ae565b61108d565b3480156105a357600080fd5b506103106105b2366004612216565b6110bc565b3480156105c357600080fd5b506008546001600160a01b03166102d8565b3480156105e157600080fd5b5061033b60115481565b3480156105f757600080fd5b506102ab6110f9565b61031061060e3660046120ae565b611108565b34801561061f57600080fd5b5061031061062e366004612324565b6112a3565b34801561063f57600080fd5b506102ab611339565b34801561065457600080fd5b506103106106633660046120ae565b611346565b34801561067457600080fd5b5061031061068336600461226e565b611375565b34801561069457600080fd5b506103106106a3366004612357565b6113b9565b3480156106b457600080fd5b506103106106c33660046123d2565b61140a565b3480156106d457600080fd5b506102ab6106e33660046120ae565b6114aa565b3480156106f457600080fd5b5061033b60105481565b34801561070a57600080fd5b506102816107193660046122c5565b600b6020526000908152604090205460ff1681565b34801561073a57600080fd5b5061031061074936600461226e565b61161a565b34801561075a57600080fd5b506102816107693660046123f5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107a357600080fd5b506103106107b23660046122c5565b611660565b60006001600160e01b031982166380ac58cd60e01b14806107e857506001600160e01b03198216635b5e139f60e01b145b8061080357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108189061241f565b80601f01602080910402602001604051908101604052809291908181526020018280546108449061241f565b80156108915780601f1061086657610100808354040283529160200191610891565b820191906000526020600020905b81548152906001019060200180831161087457829003601f168201915b5050505050905090565b60006108a6826116fb565b6108c3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ea82610ff7565b9050806001600160a01b0316836001600160a01b0316141561091f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061093f575061093d8133610769565b155b1561095d576040516367d9dca160e11b815260040160405180910390fd5b610968838383611734565b505050565b8260008111801561098057506011548111155b6109a55760405162461bcd60e51b815260040161099c9061245a565b60405180910390fd5b601054816109ba600154600054036000190190565b6109c4919061249e565b11156109e25760405162461bcd60e51b815260040161099c906124b6565b8380600f546109f191906124e4565b341015610a365760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161099c565b601254610100900460ff16610a985760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b606482015260840161099c565b336000908152600b602052604090205460ff1615610af85760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d6564210000000000000000604482015260640161099c565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b7285858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611790565b610baf5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b604482015260640161099c565b336000818152600b60205260409020805460ff19166001179055610bd390876117a6565b505050505050565b6008546001600160a01b03163314610c055760405162461bcd60e51b815260040161099c90612503565b8051610c1890600d906020840190611f77565b5050565b6008546001600160a01b03163314610c465760405162461bcd60e51b815260040161099c90612503565b6012805460ff1916911515919091179055565b6008546001600160a01b03163314610c835760405162461bcd60e51b815260040161099c90612503565b601055565b6109688383836117c0565b6008546001600160a01b03163314610cbd5760405162461bcd60e51b815260040161099c90612503565b60026009541415610d105760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161099c565b60026009556000610d296008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d73576040519150601f19603f3d011682016040523d82523d6000602084013e610d78565b606091505b5050905080610d8657600080fd5b506001600955565b610968838383604051806020016040528060008152506113b9565b60606000610db683611009565b90506000816001600160401b03811115610dd257610dd261218b565b604051908082528060200260200182016040528015610dfb578160200160208202803683370190505b50905060016000805b8482108015610e1557506010548311155b15610ee557600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091610e82575080516001600160a01b031615155b15610e8c57805191505b876001600160a01b0316826001600160a01b03161415610ed25783858481518110610eb957610eb9612538565b602090810291909101015282610ece8161254e565b9350505b83610edc8161254e565b94505050610e04565b509195945050505050565b6008546001600160a01b03163314610f1a5760405162461bcd60e51b815260040161099c90612503565b600f55565b6008546001600160a01b03163314610f495760405162461bcd60e51b815260040161099c90612503565b8051610c1890600e906020840190611f77565b600d8054610f699061241f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f959061241f565b8015610fe25780601f10610fb757610100808354040283529160200191610fe2565b820191906000526020600020905b815481529060010190602001808311610fc557829003601f168201915b505050505081565b600c8054610f699061241f565b6000611002826119ae565b5192915050565b60006001600160a01b038216611032576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146110815760405162461bcd60e51b815260040161099c90612503565b61108b6000611ad5565b565b6008546001600160a01b031633146110b75760405162461bcd60e51b815260040161099c90612503565b600a55565b6008546001600160a01b031633146110e65760405162461bcd60e51b815260040161099c90612503565b8051610c1890600c906020840190611f77565b6060600380546108189061241f565b8060008111801561111b57506011548111155b6111375760405162461bcd60e51b815260040161099c9061245a565b6010548161114c600154600054036000190190565b611156919061249e565b11156111745760405162461bcd60e51b815260040161099c906124b6565b8180600f5461118391906124e4565b3410156111c85760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161099c565b60125460ff161561121b5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161099c565b601254610100900460ff16156112995760405162461bcd60e51b815260206004820152603f60248201527f57686974656c697374204d696e7420697320676f696e67206f6e2c20506c656160448201527f7365207761697420666f72207075626c69632073616c6520746f206f70656e00606482015260840161099c565b61096833846117a6565b6001600160a01b0382163314156112cd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e8054610f699061241f565b6008546001600160a01b031633146113705760405162461bcd60e51b815260040161099c90612503565b601155565b6008546001600160a01b0316331461139f5760405162461bcd60e51b815260040161099c90612503565b601280549115156101000261ff0019909216919091179055565b6113c48484846117c0565b6001600160a01b0383163b151580156113e657506113e484848484611b27565b155b15611404576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b8160008111801561141d57506011548111155b6114395760405162461bcd60e51b815260040161099c9061245a565b6010548161144e600154600054036000190190565b611458919061249e565b11156114765760405162461bcd60e51b815260040161099c906124b6565b6008546001600160a01b031633146114a05760405162461bcd60e51b815260040161099c90612503565b61096882846117a6565b60606114b5826116fb565b6115195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161099c565b60125462010000900460ff166115bb57600e80546115369061241f565b80601f01602080910402602001604051908101604052809291908181526020018280546115629061241f565b80156115af5780601f10611584576101008083540402835291602001916115af565b820191906000526020600020905b81548152906001019060200180831161159257829003601f168201915b50505050509050919050565b60006115c5611c1f565b905060008151116115e55760405180602001604052806000815250611613565b806115ef84611c2e565b600d60405160200161160393929190612569565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146116445760405162461bcd60e51b815260040161099c90612503565b60128054911515620100000262ff000019909216919091179055565b6008546001600160a01b0316331461168a5760405162461bcd60e51b815260040161099c90612503565b6001600160a01b0381166116ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099c565b6116f881611ad5565b50565b60008160011115801561170f575060005482105b8015610803575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60008261179d8584611d2b565b14949350505050565b610c18828260405180602001604052806000815250611d9f565b60006117cb826119ae565b9050836001600160a01b031681600001516001600160a01b0316146118025760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061182057506118208533610769565b8061183b5750336118308461089b565b6001600160a01b0316145b90508061185b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661188257604051633a954ecd60e21b815260040160405180910390fd5b61188e60008487611734565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661196257600054821461196257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156119de575060005481105b15611abc57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611aba5780516001600160a01b031615611a51579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ab5579392505050565b611a51565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b5c90339089908890889060040161262d565b602060405180830381600087803b158015611b7657600080fd5b505af1925050508015611ba6575060408051601f3d908101601f19168201909252611ba39181019061266a565b60015b611c01573d808015611bd4576040519150601f19603f3d011682016040523d82523d6000602084013e611bd9565b606091505b508051611bf9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546108189061241f565b606081611c525750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c7c5780611c668161254e565b9150611c759050600a8361269d565b9150611c56565b6000816001600160401b03811115611c9657611c9661218b565b6040519080825280601f01601f191660200182016040528015611cc0576020820181803683370190505b5090505b8415611c1757611cd56001836126b1565b9150611ce2600a866126c8565b611ced90603061249e565b60f81b818381518110611d0257611d02612538565b60200101906001600160f81b031916908160001a905350611d24600a8661269d565b9450611cc4565b600081815b8451811015611d97576000858281518110611d4d57611d4d612538565b60200260200101519050808311611d735760008381526020829052604090209250611d84565b600081815260208490526040902092505b5080611d8f8161254e565b915050611d30565b509392505050565b61096883838360016000546001600160a01b038516611dd057604051622e076360e81b815260040160405180910390fd5b83611dee5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e9f57506001600160a01b0387163b15155b15611f28575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ef06000888480600101955088611b27565b611f0d576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ea5578260005414611f2357600080fd5b611f6e565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611f29575b506000556119a7565b828054611f839061241f565b90600052602060002090601f016020900481019282611fa55760008555611feb565b82601f10611fbe57805160ff1916838001178555611feb565b82800160010185558215611feb579182015b82811115611feb578251825591602001919060010190611fd0565b50611ff7929150611ffb565b5090565b5b80821115611ff75760008155600101611ffc565b6001600160e01b0319811681146116f857600080fd5b60006020828403121561203857600080fd5b813561161381612010565b60005b8381101561205e578181015183820152602001612046565b838111156114045750506000910152565b60008151808452612087816020860160208601612043565b601f01601f19169290920160200192915050565b602081526000611613602083018461206f565b6000602082840312156120c057600080fd5b5035919050565b80356001600160a01b03811681146120de57600080fd5b919050565b600080604083850312156120f657600080fd5b6120ff836120c7565b946020939093013593505050565b60008060006040848603121561212257600080fd5b8335925060208401356001600160401b038082111561214057600080fd5b818601915086601f83011261215457600080fd5b81358181111561216357600080fd5b8760208260051b850101111561217857600080fd5b6020830194508093505050509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156121bb576121bb61218b565b604051601f8501601f19908116603f011681019082821181831017156121e3576121e361218b565b816040528093508581528686860111156121fc57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561222857600080fd5b81356001600160401b0381111561223e57600080fd5b8201601f8101841361224f57600080fd5b611c17848235602084016121a1565b803580151581146120de57600080fd5b60006020828403121561228057600080fd5b6116138261225e565b60008060006060848603121561229e57600080fd5b6122a7846120c7565b92506122b5602085016120c7565b9150604084013590509250925092565b6000602082840312156122d757600080fd5b611613826120c7565b6020808252825182820181905260009190848201906040850190845b81811015612318578351835292840192918401916001016122fc565b50909695505050505050565b6000806040838503121561233757600080fd5b612340836120c7565b915061234e6020840161225e565b90509250929050565b6000806000806080858703121561236d57600080fd5b612376856120c7565b9350612384602086016120c7565b92506040850135915060608501356001600160401b038111156123a657600080fd5b8501601f810187136123b757600080fd5b6123c6878235602084016121a1565b91505092959194509250565b600080604083850312156123e557600080fd5b8235915061234e602084016120c7565b6000806040838503121561240857600080fd5b612411836120c7565b915061234e602084016120c7565b600181811c9082168061243357607f821691505b6020821081141561245457634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124b1576124b1612488565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60008160001904831182151516156124fe576124fe612488565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561256257612562612488565b5060010190565b60008451602061257c8285838a01612043565b85519184019161258f8184848a01612043565b8554920191600090600181811c90808316806125ac57607f831692505b8583108114156125ca57634e487b7160e01b85526022600452602485fd5b8080156125de57600181146125ef5761261c565b60ff1985168852838801955061261c565b60008b81526020902060005b858110156126145781548a8201529084019088016125fb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126609083018461206f565b9695505050505050565b60006020828403121561267c57600080fd5b815161161381612010565b634e487b7160e01b600052601260045260246000fd5b6000826126ac576126ac612687565b500490565b6000828210156126c3576126c3612488565b500390565b6000826126d7576126d7612687565b50069056fea2646970667358221220b40b7350b4a64fc3b63ca5abe6ceda00be41f7d432c7ecaf3a4d65165ce9021964736f6c63430008090033697066733a2f2f516d576639754367556537366275344d75506662346b676f575553756b424452436e624c78483942624b595848462f48696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56353769485679674e396476316d5a546e5456565579374e4479355a35554c546151657347327331746550312f00000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636352211e11610144578063a45ba8e7116100b6578063c87b56dd1161007a578063c87b56dd146106c8578063d5abeb01146106e8578063db4bec44146106fe578063e0a808531461072e578063e985e9c51461074e578063f2fde38b1461079757600080fd5b8063a45ba8e714610633578063b071401b14610648578063b767a09814610668578063b88d4fde14610688578063bb3dd98f146106a857600080fd5b80637ec4a659116101085780637ec4a659146105975780638da5cb5b146105b757806394354fd0146105d557806395d89b41146105eb578063a0712d6814610600578063a22cb4651461061357600080fd5b80636352211e146105035780636caede3d1461052357806370a0823114610542578063715018a6146105625780637cb647591461057757600080fd5b806323b872dd116101dd57806344a0d68a116101a157806344a0d68a1461045f5780634fdd43cb1461047f578063518302271461049f5780635503a0e8146104bf5780635c975abb146104d457806362b99ad4146104ee57600080fd5b806323b872dd146103c75780632eb4a7ab146103e75780633ccfd60b146103fd57806342842e0e14610412578063438b63001461043257600080fd5b806313faede61161022457806313faede61461032557806316ba10e01461034957806316c38b3c1461036957806318160ddd14610389578063228025e8146103a757600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780631187687514610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612026565b6107b7565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab610809565b60405161028d919061209b565b3480156102c457600080fd5b506102d86102d33660046120ae565b61089b565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b3660046120e3565b6108df565b005b61031061032036600461210d565b61096d565b34801561033157600080fd5b5061033b600f5481565b60405190815260200161028d565b34801561035557600080fd5b50610310610364366004612216565b610bdb565b34801561037557600080fd5b5061031061038436600461226e565b610c1c565b34801561039557600080fd5b5061033b600154600054036000190190565b3480156103b357600080fd5b506103106103c23660046120ae565b610c59565b3480156103d357600080fd5b506103106103e2366004612289565b610c88565b3480156103f357600080fd5b5061033b600a5481565b34801561040957600080fd5b50610310610c93565b34801561041e57600080fd5b5061031061042d366004612289565b610d8e565b34801561043e57600080fd5b5061045261044d3660046122c5565b610da9565b60405161028d91906122e0565b34801561046b57600080fd5b5061031061047a3660046120ae565b610ef0565b34801561048b57600080fd5b5061031061049a366004612216565b610f1f565b3480156104ab57600080fd5b506012546102819062010000900460ff1681565b3480156104cb57600080fd5b506102ab610f5c565b3480156104e057600080fd5b506012546102819060ff1681565b3480156104fa57600080fd5b506102ab610fea565b34801561050f57600080fd5b506102d861051e3660046120ae565b610ff7565b34801561052f57600080fd5b5060125461028190610100900460ff1681565b34801561054e57600080fd5b5061033b61055d3660046122c5565b611009565b34801561056e57600080fd5b50610310611057565b34801561058357600080fd5b506103106105923660046120ae565b61108d565b3480156105a357600080fd5b506103106105b2366004612216565b6110bc565b3480156105c357600080fd5b506008546001600160a01b03166102d8565b3480156105e157600080fd5b5061033b60115481565b3480156105f757600080fd5b506102ab6110f9565b61031061060e3660046120ae565b611108565b34801561061f57600080fd5b5061031061062e366004612324565b6112a3565b34801561063f57600080fd5b506102ab611339565b34801561065457600080fd5b506103106106633660046120ae565b611346565b34801561067457600080fd5b5061031061068336600461226e565b611375565b34801561069457600080fd5b506103106106a3366004612357565b6113b9565b3480156106b457600080fd5b506103106106c33660046123d2565b61140a565b3480156106d457600080fd5b506102ab6106e33660046120ae565b6114aa565b3480156106f457600080fd5b5061033b60105481565b34801561070a57600080fd5b506102816107193660046122c5565b600b6020526000908152604090205460ff1681565b34801561073a57600080fd5b5061031061074936600461226e565b61161a565b34801561075a57600080fd5b506102816107693660046123f5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107a357600080fd5b506103106107b23660046122c5565b611660565b60006001600160e01b031982166380ac58cd60e01b14806107e857506001600160e01b03198216635b5e139f60e01b145b8061080357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108189061241f565b80601f01602080910402602001604051908101604052809291908181526020018280546108449061241f565b80156108915780601f1061086657610100808354040283529160200191610891565b820191906000526020600020905b81548152906001019060200180831161087457829003601f168201915b5050505050905090565b60006108a6826116fb565b6108c3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ea82610ff7565b9050806001600160a01b0316836001600160a01b0316141561091f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061093f575061093d8133610769565b155b1561095d576040516367d9dca160e11b815260040160405180910390fd5b610968838383611734565b505050565b8260008111801561098057506011548111155b6109a55760405162461bcd60e51b815260040161099c9061245a565b60405180910390fd5b601054816109ba600154600054036000190190565b6109c4919061249e565b11156109e25760405162461bcd60e51b815260040161099c906124b6565b8380600f546109f191906124e4565b341015610a365760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161099c565b601254610100900460ff16610a985760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b606482015260840161099c565b336000908152600b602052604090205460ff1615610af85760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d6564210000000000000000604482015260640161099c565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b7285858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611790565b610baf5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b604482015260640161099c565b336000818152600b60205260409020805460ff19166001179055610bd390876117a6565b505050505050565b6008546001600160a01b03163314610c055760405162461bcd60e51b815260040161099c90612503565b8051610c1890600d906020840190611f77565b5050565b6008546001600160a01b03163314610c465760405162461bcd60e51b815260040161099c90612503565b6012805460ff1916911515919091179055565b6008546001600160a01b03163314610c835760405162461bcd60e51b815260040161099c90612503565b601055565b6109688383836117c0565b6008546001600160a01b03163314610cbd5760405162461bcd60e51b815260040161099c90612503565b60026009541415610d105760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161099c565b60026009556000610d296008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d73576040519150601f19603f3d011682016040523d82523d6000602084013e610d78565b606091505b5050905080610d8657600080fd5b506001600955565b610968838383604051806020016040528060008152506113b9565b60606000610db683611009565b90506000816001600160401b03811115610dd257610dd261218b565b604051908082528060200260200182016040528015610dfb578160200160208202803683370190505b50905060016000805b8482108015610e1557506010548311155b15610ee557600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091610e82575080516001600160a01b031615155b15610e8c57805191505b876001600160a01b0316826001600160a01b03161415610ed25783858481518110610eb957610eb9612538565b602090810291909101015282610ece8161254e565b9350505b83610edc8161254e565b94505050610e04565b509195945050505050565b6008546001600160a01b03163314610f1a5760405162461bcd60e51b815260040161099c90612503565b600f55565b6008546001600160a01b03163314610f495760405162461bcd60e51b815260040161099c90612503565b8051610c1890600e906020840190611f77565b600d8054610f699061241f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f959061241f565b8015610fe25780601f10610fb757610100808354040283529160200191610fe2565b820191906000526020600020905b815481529060010190602001808311610fc557829003601f168201915b505050505081565b600c8054610f699061241f565b6000611002826119ae565b5192915050565b60006001600160a01b038216611032576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146110815760405162461bcd60e51b815260040161099c90612503565b61108b6000611ad5565b565b6008546001600160a01b031633146110b75760405162461bcd60e51b815260040161099c90612503565b600a55565b6008546001600160a01b031633146110e65760405162461bcd60e51b815260040161099c90612503565b8051610c1890600c906020840190611f77565b6060600380546108189061241f565b8060008111801561111b57506011548111155b6111375760405162461bcd60e51b815260040161099c9061245a565b6010548161114c600154600054036000190190565b611156919061249e565b11156111745760405162461bcd60e51b815260040161099c906124b6565b8180600f5461118391906124e4565b3410156111c85760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161099c565b60125460ff161561121b5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161099c565b601254610100900460ff16156112995760405162461bcd60e51b815260206004820152603f60248201527f57686974656c697374204d696e7420697320676f696e67206f6e2c20506c656160448201527f7365207761697420666f72207075626c69632073616c6520746f206f70656e00606482015260840161099c565b61096833846117a6565b6001600160a01b0382163314156112cd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e8054610f699061241f565b6008546001600160a01b031633146113705760405162461bcd60e51b815260040161099c90612503565b601155565b6008546001600160a01b0316331461139f5760405162461bcd60e51b815260040161099c90612503565b601280549115156101000261ff0019909216919091179055565b6113c48484846117c0565b6001600160a01b0383163b151580156113e657506113e484848484611b27565b155b15611404576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b8160008111801561141d57506011548111155b6114395760405162461bcd60e51b815260040161099c9061245a565b6010548161144e600154600054036000190190565b611458919061249e565b11156114765760405162461bcd60e51b815260040161099c906124b6565b6008546001600160a01b031633146114a05760405162461bcd60e51b815260040161099c90612503565b61096882846117a6565b60606114b5826116fb565b6115195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161099c565b60125462010000900460ff166115bb57600e80546115369061241f565b80601f01602080910402602001604051908101604052809291908181526020018280546115629061241f565b80156115af5780601f10611584576101008083540402835291602001916115af565b820191906000526020600020905b81548152906001019060200180831161159257829003601f168201915b50505050509050919050565b60006115c5611c1f565b905060008151116115e55760405180602001604052806000815250611613565b806115ef84611c2e565b600d60405160200161160393929190612569565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146116445760405162461bcd60e51b815260040161099c90612503565b60128054911515620100000262ff000019909216919091179055565b6008546001600160a01b0316331461168a5760405162461bcd60e51b815260040161099c90612503565b6001600160a01b0381166116ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099c565b6116f881611ad5565b50565b60008160011115801561170f575060005482105b8015610803575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60008261179d8584611d2b565b14949350505050565b610c18828260405180602001604052806000815250611d9f565b60006117cb826119ae565b9050836001600160a01b031681600001516001600160a01b0316146118025760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061182057506118208533610769565b8061183b5750336118308461089b565b6001600160a01b0316145b90508061185b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661188257604051633a954ecd60e21b815260040160405180910390fd5b61188e60008487611734565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661196257600054821461196257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156119de575060005481105b15611abc57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611aba5780516001600160a01b031615611a51579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ab5579392505050565b611a51565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b5c90339089908890889060040161262d565b602060405180830381600087803b158015611b7657600080fd5b505af1925050508015611ba6575060408051601f3d908101601f19168201909252611ba39181019061266a565b60015b611c01573d808015611bd4576040519150601f19603f3d011682016040523d82523d6000602084013e611bd9565b606091505b508051611bf9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546108189061241f565b606081611c525750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c7c5780611c668161254e565b9150611c759050600a8361269d565b9150611c56565b6000816001600160401b03811115611c9657611c9661218b565b6040519080825280601f01601f191660200182016040528015611cc0576020820181803683370190505b5090505b8415611c1757611cd56001836126b1565b9150611ce2600a866126c8565b611ced90603061249e565b60f81b818381518110611d0257611d02612538565b60200101906001600160f81b031916908160001a905350611d24600a8661269d565b9450611cc4565b600081815b8451811015611d97576000858281518110611d4d57611d4d612538565b60200260200101519050808311611d735760008381526020829052604090209250611d84565b600081815260208490526040902092505b5080611d8f8161254e565b915050611d30565b509392505050565b61096883838360016000546001600160a01b038516611dd057604051622e076360e81b815260040160405180910390fd5b83611dee5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e9f57506001600160a01b0387163b15155b15611f28575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ef06000888480600101955088611b27565b611f0d576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ea5578260005414611f2357600080fd5b611f6e565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611f29575b506000556119a7565b828054611f839061241f565b90600052602060002090601f016020900481019282611fa55760008555611feb565b82601f10611fbe57805160ff1916838001178555611feb565b82800160010185558215611feb579182015b82811115611feb578251825591602001919060010190611fd0565b50611ff7929150611ffb565b5090565b5b80821115611ff75760008155600101611ffc565b6001600160e01b0319811681146116f857600080fd5b60006020828403121561203857600080fd5b813561161381612010565b60005b8381101561205e578181015183820152602001612046565b838111156114045750506000910152565b60008151808452612087816020860160208601612043565b601f01601f19169290920160200192915050565b602081526000611613602083018461206f565b6000602082840312156120c057600080fd5b5035919050565b80356001600160a01b03811681146120de57600080fd5b919050565b600080604083850312156120f657600080fd5b6120ff836120c7565b946020939093013593505050565b60008060006040848603121561212257600080fd5b8335925060208401356001600160401b038082111561214057600080fd5b818601915086601f83011261215457600080fd5b81358181111561216357600080fd5b8760208260051b850101111561217857600080fd5b6020830194508093505050509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156121bb576121bb61218b565b604051601f8501601f19908116603f011681019082821181831017156121e3576121e361218b565b816040528093508581528686860111156121fc57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561222857600080fd5b81356001600160401b0381111561223e57600080fd5b8201601f8101841361224f57600080fd5b611c17848235602084016121a1565b803580151581146120de57600080fd5b60006020828403121561228057600080fd5b6116138261225e565b60008060006060848603121561229e57600080fd5b6122a7846120c7565b92506122b5602085016120c7565b9150604084013590509250925092565b6000602082840312156122d757600080fd5b611613826120c7565b6020808252825182820181905260009190848201906040850190845b81811015612318578351835292840192918401916001016122fc565b50909695505050505050565b6000806040838503121561233757600080fd5b612340836120c7565b915061234e6020840161225e565b90509250929050565b6000806000806080858703121561236d57600080fd5b612376856120c7565b9350612384602086016120c7565b92506040850135915060608501356001600160401b038111156123a657600080fd5b8501601f810187136123b757600080fd5b6123c6878235602084016121a1565b91505092959194509250565b600080604083850312156123e557600080fd5b8235915061234e602084016120c7565b6000806040838503121561240857600080fd5b612411836120c7565b915061234e602084016120c7565b600181811c9082168061243357607f821691505b6020821081141561245457634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124b1576124b1612488565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60008160001904831182151516156124fe576124fe612488565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561256257612562612488565b5060010190565b60008451602061257c8285838a01612043565b85519184019161258f8184848a01612043565b8554920191600090600181811c90808316806125ac57607f831692505b8583108114156125ca57634e487b7160e01b85526022600452602485fd5b8080156125de57600181146125ef5761261c565b60ff1985168852838801955061261c565b60008b81526020902060005b858110156126145781548a8201529084019088016125fb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126609083018461206f565b9695505050505050565b60006020828403121561267c57600080fd5b815161161381612010565b634e487b7160e01b600052601260045260246000fd5b6000826126ac576126ac612687565b500490565b6000828210156126c3576126c3612488565b500390565b6000826126d7576126d7612687565b50069056fea2646970667358221220b40b7350b4a64fc3b63ca5abe6ceda00be41f7d432c7ecaf3a4d65165ce9021964736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56353769485679674e396476316d5a546e5456565579374e4479355a35554c546151657347327331746550312f00000000000000000000

-----Decoded View---------------
Arg [0] : _uriPrefix (string): ipfs://QmV57iHVygN9dv1mZTnTVVUy7NDy5Z5ULTaQesG2s1teP1/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d56353769485679674e396476316d5a546e545656557937
Arg [3] : 4e4479355a35554c546151657347327331746550312f00000000000000000000


Deployed Bytecode Sourcemap

50435:5292:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32516:305;;;;;;;;;;-1:-1:-1;32516:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;32516:305:0;;;;;;;;35629:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37132:204::-;;;;;;;;;;-1:-1:-1;37132:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;37132:204:0;1528:203:1;36695:371:0;;;;;;;;;;-1:-1:-1;36695:371:0;;;;;:::i;:::-;;:::i;:::-;;51972:582;;;;;;:::i;:::-;;:::i;50875:32::-;;;;;;;;;;;;;;;;;;;3007:25:1;;;2995:2;2980:18;50875:32:0;2861:177:1;54938:100:0;;;;;;;;;;-1:-1:-1;54938:100:0;;;;;:::i;:::-;;:::i;55044:77::-;;;;;;;;;;-1:-1:-1;55044:77:0;;;;;:::i;:::-;;:::i;31765:303::-;;;;;;;;;;;;53927:1;32019:12;31809:7;32003:13;:28;-1:-1:-1;;32003:46:0;;31765:303;55127:94;;;;;;;;;;-1:-1:-1;55127:94:0;;;;;:::i;:::-;;:::i;37997:170::-;;;;;;;;;;-1:-1:-1;37997:170:0;;;;;:::i;:::-;;:::i;50529:25::-;;;;;;;;;;;;;;;;55442:172;;;;;;;;;;;;;:::i;38238:185::-;;;;;;;;;;-1:-1:-1;38238:185:0;;;;;:::i;:::-;;:::i;53037:796::-;;;;;;;;;;-1:-1:-1;53037:796:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54478:74::-;;;;;;;;;;-1:-1:-1;54478:74:0;;;;;:::i;:::-;;:::i;54694:132::-;;;;;;;;;;-1:-1:-1;54694:132:0;;;;;:::i;:::-;;:::i;51442:28::-;;;;;;;;;;-1:-1:-1;51442:28:0;;;;;;;;;;;50647:33;;;;;;;;;;;;;:::i;51123:25::-;;;;;;;;;;-1:-1:-1;51123:25:0;;;;;;;;50614:28;;;;;;;;;;;;;:::i;35437:125::-;;;;;;;;;;-1:-1:-1;35437:125:0;;;;;:::i;:::-;;:::i;51274:40::-;;;;;;;;;;-1:-1:-1;51274:40:0;;;;;;;;;;;32885:206;;;;;;;;;;-1:-1:-1;32885:206:0;;;;;:::i;:::-;;:::i;10236:103::-;;;;;;;;;;;;;:::i;55227:98::-;;;;;;;;;;-1:-1:-1;55227:98:0;;;;;:::i;:::-;;:::i;54832:100::-;;;;;;;;;;-1:-1:-1;54832:100:0;;;;;:::i;:::-;;:::i;9585:87::-;;;;;;;;;;-1:-1:-1;9658:6:0;;-1:-1:-1;;;;;9658:6:0;9585:87;;50956:37;;;;;;;;;;;;;;;;35798:104;;;;;;;;;;;;;:::i;52560:316::-;;;;;;:::i;:::-;;:::i;37408:287::-;;;;;;;;;;-1:-1:-1;37408:287:0;;;;;:::i;:::-;;:::i;50765:101::-;;;;;;;;;;;;;:::i;54558:130::-;;;;;;;;;;-1:-1:-1;54558:130:0;;;;;:::i;:::-;;:::i;55331:105::-;;;;;;;;;;-1:-1:-1;55331:105:0;;;;;:::i;:::-;;:::i;38494:369::-;;;;;;;;;;-1:-1:-1;38494:369:0;;;;;:::i;:::-;;:::i;52884:147::-;;;;;;;;;;-1:-1:-1;52884:147:0;;;;;:::i;:::-;;:::i;53940:445::-;;;;;;;;;;-1:-1:-1;53940:445:0;;;;;:::i;:::-;;:::i;50916:31::-;;;;;;;;;;;;;;;;50559:48;;;;;;;;;;-1:-1:-1;50559:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54391:81;;;;;;;;;;-1:-1:-1;54391:81:0;;;;;:::i;:::-;;:::i;37766:164::-;;;;;;;;;;-1:-1:-1;37766:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37887:25:0;;;37863:4;37887:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37766:164;10494:201;;;;;;;;;;-1:-1:-1;10494:201:0;;;;;:::i;:::-;;:::i;32516:305::-;32618:4;-1:-1:-1;;;;;;32655:40:0;;-1:-1:-1;;;32655:40:0;;:105;;-1:-1:-1;;;;;;;32712:48:0;;-1:-1:-1;;;32712:48:0;32655:105;:158;;;-1:-1:-1;;;;;;;;;;22501:40:0;;;32777:36;32635:178;32516:305;-1:-1:-1;;32516:305:0:o;35629:100::-;35683:13;35716:5;35709:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35629:100;:::o;37132:204::-;37200:7;37225:16;37233:7;37225;:16::i;:::-;37220:64;;37250:34;;-1:-1:-1;;;37250:34:0;;;;;;;;;;;37220:64;-1:-1:-1;37304:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37304:24:0;;37132:204::o;36695:371::-;36768:13;36784:24;36800:7;36784:15;:24::i;:::-;36768:40;;36829:5;-1:-1:-1;;;;;36823:11:0;:2;-1:-1:-1;;;;;36823:11:0;;36819:48;;;36843:24;;-1:-1:-1;;;36843:24:0;;;;;;;;;;;36819:48;8389:10;-1:-1:-1;;;;;36884:21:0;;;;;;:63;;-1:-1:-1;36910:37:0;36927:5;8389:10;37766:164;:::i;36910:37::-;36909:38;36884:63;36880:138;;;36971:35;;-1:-1:-1;;;36971:35:0;;;;;;;;;;;36880:138;37030:28;37039:2;37043:7;37052:5;37030:8;:28::i;:::-;36757:309;36695:371;;:::o;51972:582::-;52079:11;51669:1;51655:11;:15;:52;;;;;51689:18;;51674:11;:33;;51655:52;51647:85;;;;-1:-1:-1;;;51647:85:0;;;;;;;:::i;:::-;;;;;;;;;51778:9;;51763:11;51747:13;53927:1;32019:12;31809:7;32003:13;:28;-1:-1:-1;;32003:46:0;;31765:303;51747:13;:27;;;;:::i;:::-;:40;;51739:73;;;;-1:-1:-1;;;51739:73:0;;;;;;;:::i;:::-;52112:11:::1;51917;51910:4;;:18;;;;:::i;:::-;51897:9;:31;;51889:63;;;::::0;-1:-1:-1;;;51889:63:0;;9324:2:1;51889:63:0::1;::::0;::::1;9306:21:1::0;9363:2;9343:18;;;9336:30;-1:-1:-1;;;9382:18:1;;;9375:49;9441:18;;51889:63:0::1;9122:343:1::0;51889:63:0::1;52178:20:::2;::::0;::::2;::::0;::::2;;;52170:67;;;::::0;-1:-1:-1;;;52170:67:0;;9672:2:1;52170:67:0::2;::::0;::::2;9654:21:1::0;9711:2;9691:18;;;9684:30;9750:34;9730:18;;;9723:62;-1:-1:-1;;;9801:18:1;;;9794:32;9843:19;;52170:67:0::2;9470:398:1::0;52170:67:0::2;8389:10:::0;52253:30:::2;::::0;;;:16:::2;:30;::::0;;;;;::::2;;52252:31;52244:68;;;::::0;-1:-1:-1;;;52244:68:0;;10075:2:1;52244:68:0::2;::::0;::::2;10057:21:1::0;10114:2;10094:18;;;10087:30;10153:26;10133:18;;;10126:54;10197:18;;52244:68:0::2;9873:348:1::0;52244:68:0::2;52344:30;::::0;-1:-1:-1;;8389:10:0;10375:2:1;10371:15;10367:53;52344:30:0::2;::::0;::::2;10355:66:1::0;52319:12:0::2;::::0;10437::1;;52344:30:0::2;;;;;;;;;;;;52334:41;;;;;;52319:56;;52390:50;52409:12;;52390:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;52423:10:0::2;::::0;;-1:-1:-1;52435:4:0;;-1:-1:-1;52390:18:0::2;:50::i;:::-;52382:77;;;::::0;-1:-1:-1;;;52382:77:0;;10662:2:1;52382:77:0::2;::::0;::::2;10644:21:1::0;10701:2;10681:18;;;10674:30;-1:-1:-1;;;10720:18:1;;;10713:44;10774:18;;52382:77:0::2;10460:338:1::0;52382:77:0::2;8389:10:::0;52468:30:::2;::::0;;;:16:::2;:30;::::0;;;;:37;;-1:-1:-1;;52468:37:0::2;52501:4;52468:37;::::0;;52512:36:::2;::::0;52536:11;52512:9:::2;:36::i;:::-;52125:429;51819:1:::1;51972:582:::0;;;;:::o;54938:100::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23;9797:68;;;;-1:-1:-1;;;9797:68:0;;;;;;;:::i;:::-;55010:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54938:100:::0;:::o;55044:77::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23;9797:68;;;;-1:-1:-1;;;9797:68:0;;;;;;;:::i;:::-;55100:6:::1;:15:::0;;-1:-1:-1;;55100:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55044:77::o;55127:94::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23;9797:68;;;;-1:-1:-1;;;9797:68:0;;;;;;;:::i;:::-;55193:9:::1;:22:::0;55127:94::o;37997:170::-;38131:28;38141:4;38147:2;38151:7;38131:9;:28::i;55442:172::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23;9797:68;;;;-1:-1:-1;;;9797:68:0;;;;;;;:::i;:::-;1874:1:::1;2472:7;;:19;;2464:63;;;::::0;-1:-1:-1;;;2464:63:0;;11366:2:1;2464:63:0::1;::::0;::::1;11348:21:1::0;11405:2;11385:18;;;11378:30;11444:33;11424:18;;;11417:61;11495:18;;2464:63:0::1;11164:355:1::0;2464:63:0::1;1874:1;2605:7;:18:::0;55522:7:::2;55543;9658:6:::0;;-1:-1:-1;;;;;9658:6:0;;9585:87;55543:7:::2;-1:-1:-1::0;;;;;55535:21:0::2;55564;55535:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55521:69;;;55605:2;55597:11;;;::::0;::::2;;-1:-1:-1::0;1830:1:0::1;2784:7;:22:::0;55442:172::o;38238:185::-;38376:39;38393:4;38399:2;38403:7;38376:39;;;;;;;;;;;;:16;:39::i;53037:796::-;53097:16;53122:23;53148:17;53158:6;53148:9;:17::i;:::-;53122:43;;53172:30;53219:15;-1:-1:-1;;;;;53205:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53205:30:0;-1:-1:-1;53172:63:0;-1:-1:-1;53927:1:0;53242:22;;53358:441;53383:15;53365;:33;:64;;;;;53420:9;;53402:14;:27;;53365:64;53358:441;;;53440:31;53474:27;;;:11;:27;;;;;;;;;53440:61;;;;;;;;;-1:-1:-1;;;;;53440:61:0;;;;-1:-1:-1;;;53440:61:0;;-1:-1:-1;;;;;53440:61:0;;;;;;;;-1:-1:-1;;;53440:61:0;;;;;;;;;;;;;;;;53516:49;;-1:-1:-1;53537:14:0;;-1:-1:-1;;;;;53537:28:0;;;53516:49;53512:111;;;53599:14;;;-1:-1:-1;53512:111:0;53659:6;-1:-1:-1;;;;;53637:28:0;:18;-1:-1:-1;;;;;53637:28:0;;53633:132;;;53711:14;53678:13;53692:15;53678:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;53738:17;;;;:::i;:::-;;;;53633:132;53775:16;;;;:::i;:::-;;;;53431:368;53358:441;;;-1:-1:-1;53814:13:0;;53037:796;-1:-1:-1;;;;;53037:796:0:o;54478:74::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23;9797:68;;;;-1:-1:-1;;;9797:68:0;;;;;;;:::i;:::-;54534:4:::1;:12:::0;54478:74::o;54694:132::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23;9797:68;;;;-1:-1:-1;;;9797:68:0;;;;;;;:::i;:::-;54782:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;50647:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50614:28::-;;;;;;;:::i;35437:125::-;35501:7;35528:21;35541:7;35528:12;:21::i;:::-;:26;;35437:125;-1:-1:-1;;35437:125:0:o;32885:206::-;32949:7;-1:-1:-1;;;;;32973:19:0;;32969:60;;33001:28;;-1:-1:-1;;;33001:28:0;;;;;;;;;;;32969:60;-1:-1:-1;;;;;;33055:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33055:27:0;;32885:206::o;10236:103::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23;9797:68;;;;-1:-1:-1;;;9797:68:0;;;;;;;:::i;:::-;10301:30:::1;10328:1;10301:18;:30::i;:::-;10236:103::o:0;55227:98::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23;9797:68;;;;-1:-1:-1;;;9797:68:0;;;;;;;:::i;:::-;55295:10:::1;:24:::0;55227:98::o;54832:100::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23;9797:68;;;;-1:-1:-1;;;9797:68:0;;;;;;;:::i;:::-;54904:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;35798:104::-:0;35854:13;35887:7;35880:14;;;;;:::i;52560:316::-;52625:11;51669:1;51655:11;:15;:52;;;;;51689:18;;51674:11;:33;;51655:52;51647:85;;;;-1:-1:-1;;;51647:85:0;;;;;;;:::i;:::-;51778:9;;51763:11;51747:13;53927:1;32019:12;31809:7;32003:13;:28;-1:-1:-1;;32003:46:0;;31765:303;51747:13;:27;;;;:::i;:::-;:40;;51739:73;;;;-1:-1:-1;;;51739:73:0;;;;;;;:::i;:::-;52658:11:::1;51917;51910:4;;:18;;;;:::i;:::-;51897:9;:31;;51889:63;;;::::0;-1:-1:-1;;;51889:63:0;;9324:2:1;51889:63:0::1;::::0;::::1;9306:21:1::0;9363:2;9343:18;;;9336:30;-1:-1:-1;;;9382:18:1;;;9375:49;9441:18;;51889:63:0::1;9122:343:1::0;51889:63:0::1;52687:6:::2;::::0;::::2;;52686:7;52678:43;;;::::0;-1:-1:-1;;;52678:43:0;;12208:2:1;52678:43:0::2;::::0;::::2;12190:21:1::0;12247:2;12227:18;;;12220:30;12286:25;12266:18;;;12259:53;12329:18;;52678:43:0::2;12006:347:1::0;52678:43:0::2;52737:20;::::0;::::2;::::0;::::2;;;52736:21;52728:97;;;::::0;-1:-1:-1;;;52728:97:0;;12560:2:1;52728:97:0::2;::::0;::::2;12542:21:1::0;12599:2;12579:18;;;12572:30;12638:34;12618:18;;;12611:62;12709:33;12689:18;;;12682:61;12760:19;;52728:97:0::2;12358:427:1::0;52728:97:0::2;52834:36;8389:10:::0;52858:11:::2;52834:9;:36::i;37408:287::-:0;-1:-1:-1;;;;;37507:24:0;;8389:10;37507:24;37503:54;;;37540:17;;-1:-1:-1;;;37540:17:0;;;;;;;;;;;37503:54;8389:10;37570:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37570:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37570:53:0;;;;;;;;;;37639:48;;540:41:1;;;37570:42:0;;8389:10;37639:48;;513:18:1;37639:48:0;;;;;;;37408:287;;:::o;50765:101::-;;;;;;;:::i;54558:130::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23;9797:68;;;;-1:-1:-1;;;9797:68:0;;;;;;;:::i;:::-;54642:18:::1;:40:::0;54558:130::o;55331:105::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23;9797:68;;;;-1:-1:-1;;;9797:68:0;;;;;;;:::i;:::-;55401:20:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;55401:29:0;;::::1;::::0;;;::::1;::::0;;55331:105::o;38494:369::-;38661:28;38671:4;38677:2;38681:7;38661:9;:28::i;:::-;-1:-1:-1;;;;;38704:13:0;;12581:19;:23;;38704:76;;;;;38724:56;38755:4;38761:2;38765:7;38774:5;38724:30;:56::i;:::-;38723:57;38704:76;38700:156;;;38804:40;;-1:-1:-1;;;38804:40:0;;;;;;;;;;;38700:156;38494:369;;;;:::o;52884:147::-;52962:11;51669:1;51655:11;:15;:52;;;;;51689:18;;51674:11;:33;;51655:52;51647:85;;;;-1:-1:-1;;;51647:85:0;;;;;;;:::i;:::-;51778:9;;51763:11;51747:13;53927:1;32019:12;31809:7;32003:13;:28;-1:-1:-1;;32003:46:0;;31765:303;51747:13;:27;;;;:::i;:::-;:40;;51739:73;;;;-1:-1:-1;;;51739:73:0;;;;;;;:::i;:::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23:::1;9797:68;;;;-1:-1:-1::0;;;9797:68:0::1;;;;;;;:::i;:::-;52992:33:::2;53002:9;53013:11;52992:9;:33::i;53940:445::-:0;54014:13;54044:17;54052:8;54044:7;:17::i;:::-;54036:77;;;;-1:-1:-1;;;54036:77:0;;12992:2:1;54036:77:0;;;12974:21:1;13031:2;13011:18;;;13004:30;13070:34;13050:18;;;13043:62;-1:-1:-1;;;13121:18:1;;;13114:45;13176:19;;54036:77:0;12790:411:1;54036:77:0;54126:8;;;;;;;54122:64;;54161:17;54154:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53940:445;;;:::o;54122:64::-;54194:28;54225:10;:8;:10::i;:::-;54194:41;;54280:1;54255:14;54249:28;:32;:130;;;;;;;;;;;;;;;;;54317:14;54333:19;:8;:17;:19::i;:::-;54354:9;54300:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54249:130;54242:137;53940:445;-1:-1:-1;;;53940:445:0:o;54391:81::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23;9797:68;;;;-1:-1:-1;;;9797:68:0;;;;;;;:::i;:::-;54449:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54449:17:0;;::::1;::::0;;;::::1;::::0;;54391:81::o;10494:201::-;9658:6;;-1:-1:-1;;;;;9658:6:0;8389:10;9805:23;9797:68;;;;-1:-1:-1;;;9797:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10583:22:0;::::1;10575:73;;;::::0;-1:-1:-1;;;10575:73:0;;15066:2:1;10575:73:0::1;::::0;::::1;15048:21:1::0;15105:2;15085:18;;;15078:30;15144:34;15124:18;;;15117:62;-1:-1:-1;;;15195:18:1;;;15188:36;15241:19;;10575:73:0::1;14864:402:1::0;10575:73:0::1;10659:28;10678:8;10659:18;:28::i;:::-;10494:201:::0;:::o;39118:174::-;39175:4;39218:7;53927:1;39199:26;;:53;;;;;39239:13;;39229:7;:23;39199:53;:85;;;;-1:-1:-1;;39257:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;39257:27:0;;;;39256:28;;39118:174::o;47275:196::-;47390:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47390:29:0;-1:-1:-1;;;;;47390:29:0;;;;;;;;;47435:28;;47390:24;;47435:28;;;;;;;47275:196;;;:::o;4041:190::-;4166:4;4219;4190:25;4203:5;4210:4;4190:12;:25::i;:::-;:33;;4041:190;-1:-1:-1;;;;4041:190:0:o;39300:104::-;39369:27;39379:2;39383:8;39369:27;;;;;;;;;;;;:9;:27::i;42218:2130::-;42333:35;42371:21;42384:7;42371:12;:21::i;:::-;42333:59;;42431:4;-1:-1:-1;;;;;42409:26:0;:13;:18;;;-1:-1:-1;;;;;42409:26:0;;42405:67;;42444:28;;-1:-1:-1;;;42444:28:0;;;;;;;;;;;42405:67;42485:22;8389:10;-1:-1:-1;;;;;42511:20:0;;;;:73;;-1:-1:-1;42548:36:0;42565:4;8389:10;37766:164;:::i;42548:36::-;42511:126;;;-1:-1:-1;8389:10:0;42601:20;42613:7;42601:11;:20::i;:::-;-1:-1:-1;;;;;42601:36:0;;42511:126;42485:153;;42656:17;42651:66;;42682:35;;-1:-1:-1;;;42682:35:0;;;;;;;;;;;42651:66;-1:-1:-1;;;;;42732:16:0;;42728:52;;42757:23;;-1:-1:-1;;;42757:23:0;;;;;;;;;;;42728:52;42901:35;42918:1;42922:7;42931:4;42901:8;:35::i;:::-;-1:-1:-1;;;;;43232:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;43232:31:0;;;-1:-1:-1;;;;;43232:31:0;;;-1:-1:-1;;43232:31:0;;;;;;;43278:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43278:29:0;;;;;;;;;;;43358:20;;;:11;:20;;;;;;43393:18;;-1:-1:-1;;;;;;43426:49:0;;;;-1:-1:-1;;;43459:15:0;43426:49;;;;;;;;;;43749:11;;43809:24;;;;;43852:13;;43358:20;;43809:24;;43852:13;43848:384;;44062:13;;44047:11;:28;44043:174;;44100:20;;44169:28;;;;-1:-1:-1;;;;;44143:54:0;-1:-1:-1;;;44143:54:0;-1:-1:-1;;;;;;44143:54:0;;;-1:-1:-1;;;;;44100:20:0;;44143:54;;;;44043:174;43207:1036;;;44279:7;44275:2;-1:-1:-1;;;;;44260:27:0;44269:4;-1:-1:-1;;;;;44260:27:0;;;;;;;;;;;44298:42;42322:2026;;42218:2130;;;:::o;34266:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;34377:7:0;;53927:1;34426:23;;:47;;;;;34460:13;;34453:4;:20;34426:47;34422:886;;;34494:31;34528:17;;;:11;:17;;;;;;;;;34494:51;;;;;;;;;-1:-1:-1;;;;;34494:51:0;;;;-1:-1:-1;;;34494:51:0;;-1:-1:-1;;;;;34494:51:0;;;;;;;;-1:-1:-1;;;34494:51:0;;;;;;;;;;;;;;34564:729;;34614:14;;-1:-1:-1;;;;;34614:28:0;;34610:101;;34678:9;34266:1109;-1:-1:-1;;;34266:1109:0:o;34610:101::-;-1:-1:-1;;;35053:6:0;35098:17;;;;:11;:17;;;;;;;;;35086:29;;;;;;;;;-1:-1:-1;;;;;35086:29:0;;;;;-1:-1:-1;;;35086:29:0;;-1:-1:-1;;;;;35086:29:0;;;;;;;;-1:-1:-1;;;35086:29:0;;;;;;;;;;;;;35146:28;35142:109;;35214:9;34266:1109;-1:-1:-1;;;34266:1109:0:o;35142:109::-;35013:261;;;34475:833;34422:886;35336:31;;-1:-1:-1;;;35336:31:0;;;;;;;;;;;10855:191;10948:6;;;-1:-1:-1;;;;;10965:17:0;;;-1:-1:-1;;;;;;10965:17:0;;;;;;;10998:40;;10948:6;;;10965:17;10948:6;;10998:40;;10929:16;;10998:40;10918:128;10855:191;:::o;47963:667::-;48147:72;;-1:-1:-1;;;48147:72:0;;48126:4;;-1:-1:-1;;;;;48147:36:0;;;;;:72;;8389:10;;48198:4;;48204:7;;48213:5;;48147:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48147:72:0;;;;;;;;-1:-1:-1;;48147:72:0;;;;;;;;;;;;:::i;:::-;;;48143:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48381:13:0;;48377:235;;48427:40;;-1:-1:-1;;;48427:40:0;;;;;;;;;;;48377:235;48570:6;48564:13;48555:6;48551:2;48547:15;48540:38;48143:480;-1:-1:-1;;;;;;48266:55:0;-1:-1:-1;;;48266:55:0;;-1:-1:-1;48143:480:0;47963:667;;;;;;:::o;55620:104::-;55680:13;55709:9;55702:16;;;;;:::i;5871:723::-;5927:13;6148:10;6144:53;;-1:-1:-1;;6175:10:0;;;;;;;;;;;;-1:-1:-1;;;6175:10:0;;;;;5871:723::o;6144:53::-;6222:5;6207:12;6263:78;6270:9;;6263:78;;6296:8;;;;:::i;:::-;;-1:-1:-1;6319:10:0;;-1:-1:-1;6327:2:0;6319:10;;:::i;:::-;;;6263:78;;;6351:19;6383:6;-1:-1:-1;;;;;6373:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6373:17:0;;6351:39;;6401:154;6408:10;;6401:154;;6435:11;6445:1;6435:11;;:::i;:::-;;-1:-1:-1;6504:10:0;6512:2;6504:5;:10;:::i;:::-;6491:24;;:2;:24;:::i;:::-;6478:39;;6461:6;6468;6461:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6461:56:0;;;;;;;;-1:-1:-1;6532:11:0;6541:2;6532:11;;:::i;:::-;;;6401:154;;4592:675;4675:7;4718:4;4675:7;4733:497;4757:5;:12;4753:1;:16;4733:497;;;4791:20;4814:5;4820:1;4814:8;;;;;;;;:::i;:::-;;;;;;;4791:31;;4857:12;4841;:28;4837:382;;5343:13;5393:15;;;5429:4;5422:15;;;5476:4;5460:21;;4969:57;;4837:382;;;5343:13;5393:15;;;5429:4;5422:15;;;5476:4;5460:21;;5146:57;;4837:382;-1:-1:-1;4771:3:0;;;;:::i;:::-;;;;4733:497;;;-1:-1:-1;5247:12:0;4592:675;-1:-1:-1;;;4592:675:0:o;39767:163::-;39890:32;39896:2;39900:8;39910:5;39917:4;40328:20;40351:13;-1:-1:-1;;;;;40379:16:0;;40375:48;;40404:19;;-1:-1:-1;;;40404:19:0;;;;;;;;;;;40375:48;40438:13;40434:44;;40460:18;;-1:-1:-1;;;40460:18:0;;;;;;;;;;;40434:44;-1:-1:-1;;;;;40829:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;40888:49:0;;-1:-1:-1;;;;;40829:44:0;;;;;;;40888:49;;;;-1:-1:-1;;40829:44:0;;;;;;40888:49;;;;;;;;;;;;;;;;40954:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;41004:66:0;;;;-1:-1:-1;;;41054:15:0;41004:66;;;;;;;;;;40954:25;41151:23;;;41195:4;:23;;;;-1:-1:-1;;;;;;41203:13:0;;12581:19;:23;;41203:15;41191:641;;;41239:314;41270:38;;41295:12;;-1:-1:-1;;;;;41270:38:0;;;41287:1;;41270:38;;41287:1;;41270:38;41336:69;41375:1;41379:2;41383:14;;;;;;41399:5;41336:30;:69::i;:::-;41331:174;;41441:40;;-1:-1:-1;;;41441:40:0;;;;;;;;;;;41331:174;41548:3;41532:12;:19;;41239:314;;41634:12;41617:13;;:29;41613:43;;41648:8;;;41613:43;41191:641;;;41697:120;41728:40;;41753:14;;;;;-1:-1:-1;;;;;41728:40:0;;;41745:1;;41728:40;;41745:1;;41728:40;41812:3;41796:12;:19;;41697:120;;41191:641;-1:-1:-1;41846:13:0;:28;41896:60;38494:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:683::-;2268:6;2276;2284;2337:2;2325:9;2316:7;2312:23;2308:32;2305:52;;;2353:1;2350;2343:12;2305:52;2389:9;2376:23;2366:33;;2450:2;2439:9;2435:18;2422:32;-1:-1:-1;;;;;2514:2:1;2506:6;2503:14;2500:34;;;2530:1;2527;2520:12;2500:34;2568:6;2557:9;2553:22;2543:32;;2613:7;2606:4;2602:2;2598:13;2594:27;2584:55;;2635:1;2632;2625:12;2584:55;2675:2;2662:16;2701:2;2693:6;2690:14;2687:34;;;2717:1;2714;2707:12;2687:34;2770:7;2765:2;2755:6;2752:1;2748:14;2744:2;2740:23;2736:32;2733:45;2730:65;;;2791:1;2788;2781:12;2730:65;2822:2;2818;2814:11;2804:21;;2844:6;2834:16;;;;;2173:683;;;;;:::o;3043:127::-;3104:10;3099:3;3095:20;3092:1;3085:31;3135:4;3132:1;3125:15;3159:4;3156:1;3149:15;3175:632;3240:5;-1:-1:-1;;;;;3311:2:1;3303:6;3300:14;3297:40;;;3317:18;;:::i;:::-;3392:2;3386:9;3360:2;3446:15;;-1:-1:-1;;3442:24:1;;;3468:2;3438:33;3434:42;3422:55;;;3492:18;;;3512:22;;;3489:46;3486:72;;;3538:18;;:::i;:::-;3578:10;3574:2;3567:22;3607:6;3598:15;;3637:6;3629;3622:22;3677:3;3668:6;3663:3;3659:16;3656:25;3653:45;;;3694:1;3691;3684:12;3653:45;3744:6;3739:3;3732:4;3724:6;3720:17;3707:44;3799:1;3792:4;3783:6;3775;3771:19;3767:30;3760:41;;;;3175:632;;;;;:::o;3812:451::-;3881:6;3934:2;3922:9;3913:7;3909:23;3905:32;3902:52;;;3950:1;3947;3940:12;3902:52;3990:9;3977:23;-1:-1:-1;;;;;4015:6:1;4012:30;4009:50;;;4055:1;4052;4045:12;4009:50;4078:22;;4131:4;4123:13;;4119:27;-1:-1:-1;4109:55:1;;4160:1;4157;4150:12;4109:55;4183:74;4249:7;4244:2;4231:16;4226:2;4222;4218:11;4183:74;:::i;4268:160::-;4333:20;;4389:13;;4382:21;4372:32;;4362:60;;4418:1;4415;4408:12;4433:180;4489:6;4542:2;4530:9;4521:7;4517:23;4513:32;4510:52;;;4558:1;4555;4548:12;4510:52;4581:26;4597:9;4581:26;:::i;4618:328::-;4695:6;4703;4711;4764:2;4752:9;4743:7;4739:23;4735:32;4732:52;;;4780:1;4777;4770:12;4732:52;4803:29;4822:9;4803:29;:::i;:::-;4793:39;;4851:38;4885:2;4874:9;4870:18;4851:38;:::i;:::-;4841:48;;4936:2;4925:9;4921:18;4908:32;4898:42;;4618:328;;;;;:::o;5133:186::-;5192:6;5245:2;5233:9;5224:7;5220:23;5216:32;5213:52;;;5261:1;5258;5251:12;5213:52;5284:29;5303:9;5284:29;:::i;5324:632::-;5495:2;5547:21;;;5617:13;;5520:18;;;5639:22;;;5466:4;;5495:2;5718:15;;;;5692:2;5677:18;;;5466:4;5761:169;5775:6;5772:1;5769:13;5761:169;;;5836:13;;5824:26;;5905:15;;;;5870:12;;;;5797:1;5790:9;5761:169;;;-1:-1:-1;5947:3:1;;5324:632;-1:-1:-1;;;;;;5324:632:1:o;6146:254::-;6211:6;6219;6272:2;6260:9;6251:7;6247:23;6243:32;6240:52;;;6288:1;6285;6278:12;6240:52;6311:29;6330:9;6311:29;:::i;:::-;6301:39;;6359:35;6390:2;6379:9;6375:18;6359:35;:::i;:::-;6349:45;;6146:254;;;;;:::o;6405:667::-;6500:6;6508;6516;6524;6577:3;6565:9;6556:7;6552:23;6548:33;6545:53;;;6594:1;6591;6584:12;6545:53;6617:29;6636:9;6617:29;:::i;:::-;6607:39;;6665:38;6699:2;6688:9;6684:18;6665:38;:::i;:::-;6655:48;;6750:2;6739:9;6735:18;6722:32;6712:42;;6805:2;6794:9;6790:18;6777:32;-1:-1:-1;;;;;6824:6:1;6821:30;6818:50;;;6864:1;6861;6854:12;6818:50;6887:22;;6940:4;6932:13;;6928:27;-1:-1:-1;6918:55:1;;6969:1;6966;6959:12;6918:55;6992:74;7058:7;7053:2;7040:16;7035:2;7031;7027:11;6992:74;:::i;:::-;6982:84;;;6405:667;;;;;;;:::o;7077:254::-;7145:6;7153;7206:2;7194:9;7185:7;7181:23;7177:32;7174:52;;;7222:1;7219;7212:12;7174:52;7258:9;7245:23;7235:33;;7287:38;7321:2;7310:9;7306:18;7287:38;:::i;7336:260::-;7404:6;7412;7465:2;7453:9;7444:7;7440:23;7436:32;7433:52;;;7481:1;7478;7471:12;7433:52;7504:29;7523:9;7504:29;:::i;:::-;7494:39;;7552:38;7586:2;7575:9;7571:18;7552:38;:::i;7601:380::-;7680:1;7676:12;;;;7723;;;7744:61;;7798:4;7790:6;7786:17;7776:27;;7744:61;7851:2;7843:6;7840:14;7820:18;7817:38;7814:161;;;7897:10;7892:3;7888:20;7885:1;7878:31;7932:4;7929:1;7922:15;7960:4;7957:1;7950:15;7814:161;;7601:380;;;:::o;7986:344::-;8188:2;8170:21;;;8227:2;8207:18;;;8200:30;-1:-1:-1;;;8261:2:1;8246:18;;8239:50;8321:2;8306:18;;7986:344::o;8335:127::-;8396:10;8391:3;8387:20;8384:1;8377:31;8427:4;8424:1;8417:15;8451:4;8448:1;8441:15;8467:128;8507:3;8538:1;8534:6;8531:1;8528:13;8525:39;;;8544:18;;:::i;:::-;-1:-1:-1;8580:9:1;;8467:128::o;8600:344::-;8802:2;8784:21;;;8841:2;8821:18;;;8814:30;-1:-1:-1;;;8875:2:1;8860:18;;8853:50;8935:2;8920:18;;8600:344::o;8949:168::-;8989:7;9055:1;9051;9047:6;9043:14;9040:1;9037:21;9032:1;9025:9;9018:17;9014:45;9011:71;;;9062:18;;:::i;:::-;-1:-1:-1;9102:9:1;;8949:168::o;10803:356::-;11005:2;10987:21;;;11024:18;;;11017:30;11083:34;11078:2;11063:18;;11056:62;11150:2;11135:18;;10803:356::o;11734:127::-;11795:10;11790:3;11786:20;11783:1;11776:31;11826:4;11823:1;11816:15;11850:4;11847:1;11840:15;11866:135;11905:3;-1:-1:-1;;11926:17:1;;11923:43;;;11946:18;;:::i;:::-;-1:-1:-1;11993:1:1;11982:13;;11866:135::o;13332:1527::-;13556:3;13594:6;13588:13;13620:4;13633:51;13677:6;13672:3;13667:2;13659:6;13655:15;13633:51;:::i;:::-;13747:13;;13706:16;;;;13769:55;13747:13;13706:16;13791:15;;;13769:55;:::i;:::-;13913:13;;13846:20;;;13886:1;;13973;13995:18;;;;14048;;;;14075:93;;14153:4;14143:8;14139:19;14127:31;;14075:93;14216:2;14206:8;14203:16;14183:18;14180:40;14177:167;;;-1:-1:-1;;;14243:33:1;;14299:4;14296:1;14289:15;14329:4;14250:3;14317:17;14177:167;14360:18;14387:110;;;;14511:1;14506:328;;;;14353:481;;14387:110;-1:-1:-1;;14422:24:1;;14408:39;;14467:20;;;;-1:-1:-1;14387:110:1;;14506:328;13279:1;13272:14;;;13316:4;13303:18;;14601:1;14615:169;14629:8;14626:1;14623:15;14615:169;;;14711:14;;14696:13;;;14689:37;14754:16;;;;14646:10;;14615:169;;;14619:3;;14815:8;14808:5;14804:20;14797:27;;14353:481;-1:-1:-1;14850:3:1;;13332:1527;-1:-1:-1;;;;;;;;;;;13332:1527:1:o;15271:489::-;-1:-1:-1;;;;;15540:15:1;;;15522:34;;15592:15;;15587:2;15572:18;;15565:43;15639:2;15624:18;;15617:34;;;15687:3;15682:2;15667:18;;15660:31;;;15465:4;;15708:46;;15734:19;;15726:6;15708:46;:::i;:::-;15700:54;15271:489;-1:-1:-1;;;;;;15271:489:1:o;15765:249::-;15834:6;15887:2;15875:9;15866:7;15862:23;15858:32;15855:52;;;15903:1;15900;15893:12;15855:52;15935:9;15929:16;15954:30;15978:5;15954:30;:::i;16019:127::-;16080:10;16075:3;16071:20;16068:1;16061:31;16111:4;16108:1;16101:15;16135:4;16132:1;16125:15;16151:120;16191:1;16217;16207:35;;16222:18;;:::i;:::-;-1:-1:-1;16256:9:1;;16151:120::o;16276:125::-;16316:4;16344:1;16341;16338:8;16335:34;;;16349:18;;:::i;:::-;-1:-1:-1;16386:9:1;;16276:125::o;16406:112::-;16438:1;16464;16454:35;;16469:18;;:::i;:::-;-1:-1:-1;16503:9:1;;16406:112::o

Swarm Source

ipfs://b40b7350b4a64fc3b63ca5abe6ceda00be41f7d432c7ecaf3a4d65165ce90219
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.