ETH Price: $3,247.10 (+2.28%)
Gas: 2 Gwei

Token

metaPengus (MP)
 

Overview

Max Total Supply

682 MP

Holders

378

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MP
0x689e9cace83136fbbd526f45bd6976ae33906f1b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The official metaPengus collection. PUBLIC SALE LIVE NOW: https://metapengus.io Get your 8-bit Waddling Pengu today!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MetaPengus

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-05
*/

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


// OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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



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



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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



pragma solidity ^0.8.0;

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

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



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



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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



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: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/metaPengusContract.sol



pragma solidity >=0.7.0 <0.9.0;



// SPDX-License-Identifier: GPL-3.0

contract MetaPengus is ERC721Enumerable, Ownable {
	using Strings for uint256;

	string baseURI;
	string baseExtension = ".json";
	string notRevealedUri;
	uint256 public cost = .05 ether;
	uint256 public maxSupply = 6200;
	uint256 public nftPerAddressLimit = 4;
	uint256 public maxMintOverall = 8;
	bool public paused = true;
	bool public revealed = false;
	bool public onlyWhitelisted = true;
	mapping(address => uint256) public addressMintedBalance;
	bytes32 public whitelistMerkleRoot;
	mapping(address => bool) public whitelistedAddressesBackup;
	bool public useWhitelistedAddressesBackup = false;

	constructor(
		string memory _name,
		string memory _symbol,
		string memory _notRevealedUri
	) ERC721(_name, _symbol) {
		notRevealedUri = _notRevealedUri;
	}

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

	function _generateMerkleLeaf(address account)
		internal
		pure
		returns (bytes32)
	{
		return keccak256(abi.encodePacked(account));
	}

	/**
	 * Validates a Merkle proof based on a provided merkle root and leaf node.
	 */
	function _verify(
		bytes32[] memory proof,
		bytes32 merkleRoot,
		bytes32 leafNode
	) internal pure returns (bool) {
		return MerkleProof.verify(proof, merkleRoot, leafNode);
	}

	/**
	 * Mint a Pengu!
	 *
	 * Limit: 4 Whitelist Presale, 8 Total
	 * Only whitelisted individuals can mint presale. We utilize a Merkle Proof to determine who is whitelisted.
	 *
	 * If these cases are not met, the mint WILL fail, and your gas will NOT be refunded.
	 * Please only mint through metapengus.io unless you're absolutely sure you know what you're doing!
	 */
	function mint(uint256 _mintAmount, bytes32[] calldata proof)
		public
		payable
	{
		require(paused == false, "the contract is paused");
		uint256 supply = totalSupply();
		require(_mintAmount > 0, "need to mint at least 1 NFT");
		require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

		uint256 ownerMintedCount = addressMintedBalance[msg.sender];
		if (msg.sender != owner()) {
			if (onlyWhitelisted == true) {
				if (useWhitelistedAddressesBackup) {
					require(whitelistedAddressesBackup[msg.sender] == true, "user is not whitelisted");
				} else {
					require(
						_verify(
							proof,
							whitelistMerkleRoot,
							_generateMerkleLeaf(msg.sender)
						),
						"user is not whitelisted"
					);
				}
				require(
					ownerMintedCount + _mintAmount <= nftPerAddressLimit,
					"max NFT per address exceeded"
				);
			}
			require(msg.value >= cost * _mintAmount, "insufficient funds");

			/** When regular minting is enabled, make sure max hold per wallet is 8. */
			require(
				ownerMintedCount + _mintAmount <= maxMintOverall,
				"max NFT per address exceeded"
			);
		}

		for (uint256 i = 1; i <= _mintAmount; i++) {
			addressMintedBalance[msg.sender]++;
			_safeMint(msg.sender, supply + i);
		}
	}

	function walletOfOwner(address _owner)
		public
		view
		returns (uint256[] memory)
	{
		uint256 ownerTokenCount = balanceOf(_owner);
		uint256[] memory tokenIds = new uint256[](ownerTokenCount);
		for (uint256 i; i < ownerTokenCount; i++) {
			tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
		}
		return tokenIds;
	}

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

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

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

	//only owner
	function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
		nftPerAddressLimit = _limit;
	}

	/** Sets the merkle root for the whitelisted individuals. */
	function setWhiteListMerkleRoot(bytes32 merkleRoot) public onlyOwner {
		whitelistMerkleRoot = merkleRoot;
	}

	function setWhitelistedAddressesBackup(address[] memory addresses) public onlyOwner {
		for (uint256 i = 0; i < addresses.length; i++) {
			whitelistedAddressesBackup[addresses[i]] = true;
		}
	}

	function setBackupWhitelistedAddressState(bool state) public onlyOwner {
		useWhitelistedAddressesBackup = state;
	}

	//cost in Wei
	function setCost(uint256 _newCost) public onlyOwner {
		cost = _newCost;
	}

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

	function setBaseExtension(string memory _newBaseExtension)
		public
		onlyOwner
	{
		baseExtension = _newBaseExtension;
	}

	function setRevealedState(bool revealedState) public onlyOwner {
		revealed = revealedState;
	}

	function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
		notRevealedUri = _notRevealedURI;
	}

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

	function setOnlyWhitelisted(bool _state) public onlyOwner {
		onlyWhitelisted = _state;
	}

	function setMaxMintOverall(uint256 count) public onlyOwner {
		maxMintOverall = count;
	}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"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":"maxMintOverall","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","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":"bool","name":"state","type":"bool"}],"name":"setBackupWhitelistedAddressState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setMaxMintOverall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"revealedState","type":"bool"}],"name":"setRevealedState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhiteListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setWhitelistedAddressesBackup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useWhitelistedAddressesBackup","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddressesBackup","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000150565b5066b1a2bc2ec50000600e55611838600f55600460105560086011556012805462ffffff1916620100011790556016805460ff191690553480156200006c57600080fd5b5060405162002f6538038062002f658339810160408190526200008f91620002ad565b825183908390620000a890600090602085019062000150565b508051620000be90600190602084019062000150565b505050620000db620000d5620000fa60201b60201c565b620000fe565b8051620000f090600d90602084019062000150565b5050505062000391565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015e906200033e565b90600052602060002090601f016020900481019282620001825760008555620001cd565b82601f106200019d57805160ff1916838001178555620001cd565b82800160010185558215620001cd579182015b82811115620001cd578251825591602001919060010190620001b0565b50620001db929150620001df565b5090565b5b80821115620001db5760008155600101620001e0565b600082601f8301126200020857600080fd5b81516001600160401b03808211156200022557620002256200037b565b604051601f8301601f19908116603f011681019082821181831017156200025057620002506200037b565b816040528381526020925086838588010111156200026d57600080fd5b600091505b8382101562000291578582018301518183018401529082019062000272565b83821115620002a35760008385830101525b9695505050505050565b600080600060608486031215620002c357600080fd5b83516001600160401b0380821115620002db57600080fd5b620002e987838801620001f6565b945060208601519150808211156200030057600080fd5b6200030e87838801620001f6565b935060408601519150808211156200032557600080fd5b506200033486828701620001f6565b9150509250925092565b600181811c908216806200035357607f821691505b602082108114156200037557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612bc480620003a16000396000f3fe6080604052600436106102725760003560e01c80635e1b065c1161014f578063ba7d2c76116100c1578063da3ef23f1161007a578063da3ef23f14610739578063e08e65ea14610759578063e985e9c514610779578063f2c4ce1e146107c2578063f2fde38b146107e2578063fce237df1461080257600080fd5b8063ba7d2c7614610693578063be11ce06146106a9578063c737e0c6146106c3578063c87b56dd146106e3578063d0eb26b014610703578063d5abeb011461072357600080fd5b806395d89b411161011357806395d89b41146105f55780639c70b5121461060a578063a22cb4651461062a578063aa98e0c61461064a578063b88d4fde14610660578063ba41b0c61461068057600080fd5b80635e1b065c146105625780636352211e1461058257806370a08231146105a2578063715018a6146105c25780638da5cb5b146105d757600080fd5b80633913124c116101e8578063438b6300116101ac578063438b63001461049c57806344a0d68a146104c95780634f6ccce7146104e9578063518302271461050957806355f804b3146105285780635c975abb1461054857600080fd5b80633913124c146104045780633c952764146104345780633ccfd60b14610454578063401564541461045c57806342842e0e1461047c57600080fd5b806313faede61161023a57806313faede61461034857806318160ddd1461036c57806318cae269146103815780631a3b9e9a146103ae57806323b872dd146103c45780632f745c59146103e457600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063095ea7b314610328575b600080fd5b34801561028357600080fd5b50610297610292366004612683565b610822565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c736600461264f565b61084d565b005b3480156102da57600080fd5b506102e3610893565b6040516102a391906128f6565b3480156102fc57600080fd5b5061031061030b36600461266a565b610925565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102cc610343366004612571565b6109ba565b34801561035457600080fd5b5061035e600e5481565b6040519081526020016102a3565b34801561037857600080fd5b5060085461035e565b34801561038d57600080fd5b5061035e61039c366004612441565b60136020526000908152604090205481565b3480156103ba57600080fd5b5061035e60115481565b3480156103d057600080fd5b506102cc6103df36600461248f565b610ad0565b3480156103f057600080fd5b5061035e6103ff366004612571565b610b01565b34801561041057600080fd5b5061029761041f366004612441565b60156020526000908152604090205460ff1681565b34801561044057600080fd5b506102cc61044f36600461264f565b610b97565b6102cc610bdd565b34801561046857600080fd5b506102cc61047736600461266a565b610c7b565b34801561048857600080fd5b506102cc61049736600461248f565b610caa565b3480156104a857600080fd5b506104bc6104b7366004612441565b610cc5565b6040516102a391906128b2565b3480156104d557600080fd5b506102cc6104e436600461266a565b610d67565b3480156104f557600080fd5b5061035e61050436600461266a565b610d96565b34801561051557600080fd5b5060125461029790610100900460ff1681565b34801561053457600080fd5b506102cc6105433660046126bd565b610e29565b34801561055457600080fd5b506012546102979060ff1681565b34801561056e57600080fd5b506102cc61057d36600461259b565b610e6a565b34801561058e57600080fd5b5061031061059d36600461266a565b610efc565b3480156105ae57600080fd5b5061035e6105bd366004612441565b610f73565b3480156105ce57600080fd5b506102cc610ffa565b3480156105e357600080fd5b50600a546001600160a01b0316610310565b34801561060157600080fd5b506102e3611030565b34801561061657600080fd5b506012546102979062010000900460ff1681565b34801561063657600080fd5b506102cc610645366004612547565b61103f565b34801561065657600080fd5b5061035e60145481565b34801561066c57600080fd5b506102cc61067b3660046124cb565b611104565b6102cc61068e366004612706565b61113c565b34801561069f57600080fd5b5061035e60105481565b3480156106b557600080fd5b506016546102979060ff1681565b3480156106cf57600080fd5b506102cc6106de36600461264f565b61150b565b3480156106ef57600080fd5b506102e36106fe36600461266a565b611548565b34801561070f57600080fd5b506102cc61071e36600461266a565b6116c7565b34801561072f57600080fd5b5061035e600f5481565b34801561074557600080fd5b506102cc6107543660046126bd565b6116f6565b34801561076557600080fd5b506102cc61077436600461266a565b611733565b34801561078557600080fd5b5061029761079436600461245c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ce57600080fd5b506102cc6107dd3660046126bd565b611762565b3480156107ee57600080fd5b506102cc6107fd366004612441565b61179f565b34801561080e57600080fd5b506102cc61081d36600461264f565b611837565b60006001600160e01b0319821663780e9d6360e01b148061084757506108478261187b565b92915050565b600a546001600160a01b031633146108805760405162461bcd60e51b81526004016108779061295b565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108a290612aa0565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90612aa0565b801561091b5780601f106108f05761010080835404028352916020019161091b565b820191906000526020600020905b8154815290600101906020018083116108fe57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661099e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610877565b506000908152600460205260409020546001600160a01b031690565b60006109c582610efc565b9050806001600160a01b0316836001600160a01b03161415610a335760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610877565b336001600160a01b0382161480610a4f5750610a4f8133610794565b610ac15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610877565b610acb83836118cb565b505050565b610ada3382611939565b610af65760405162461bcd60e51b815260040161087790612990565b610acb838383611a30565b6000610b0c83610f73565b8210610b6e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610877565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bc15760405162461bcd60e51b81526004016108779061295b565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610c075760405162461bcd60e51b81526004016108779061295b565b6000610c1b600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c65576040519150601f19603f3d011682016040523d82523d6000602084013e610c6a565b606091505b5050905080610c7857600080fd5b50565b600a546001600160a01b03163314610ca55760405162461bcd60e51b81526004016108779061295b565b601155565b610acb83838360405180602001604052806000815250611104565b60606000610cd283610f73565b905060008167ffffffffffffffff811115610cef57610cef612b62565b604051908082528060200260200182016040528015610d18578160200160208202803683370190505b50905060005b82811015610d5f57610d308582610b01565b828281518110610d4257610d42612b4c565b602090810291909101015280610d5781612adb565b915050610d1e565b509392505050565b600a546001600160a01b03163314610d915760405162461bcd60e51b81526004016108779061295b565b600e55565b6000610da160085490565b8210610e045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610877565b60088281548110610e1757610e17612b4c565b90600052602060002001549050919050565b600a546001600160a01b03163314610e535760405162461bcd60e51b81526004016108779061295b565b8051610e6690600b906020840190612324565b5050565b600a546001600160a01b03163314610e945760405162461bcd60e51b81526004016108779061295b565b60005b8151811015610e6657600160156000848481518110610eb857610eb8612b4c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610ef481612adb565b915050610e97565b6000818152600260205260408120546001600160a01b0316806108475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610877565b60006001600160a01b038216610fde5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610877565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110245760405162461bcd60e51b81526004016108779061295b565b61102e6000611bdb565b565b6060600180546108a290612aa0565b6001600160a01b0382163314156110985760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610877565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61110e3383611939565b61112a5760405162461bcd60e51b815260040161087790612990565b61113684848484611c2d565b50505050565b60125460ff16156111885760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610877565b600061119360085490565b9050600084116111e55760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610877565b600f546111f28583612a12565b11156112395760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610877565b33600081815260136020526040902054600a5490916001600160a01b03909116146114b35760125462010000900460ff161515600114156114065760165460ff16156112e2573360009081526015602052604090205460ff1615156001146112dd5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b6044820152606401610877565b6113ab565b6113658484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060145491506113609050336040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b611c60565b6113ab5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b6044820152606401610877565b6010546113b88683612a12565b11156114065760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610877565b84600e546114149190612a3e565b3410156114585760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610877565b6011546114658683612a12565b11156114b35760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610877565b60015b858111611503573360009081526013602052604081208054916114d883612adb565b909155506114f19050336114ec8386612a12565b611c6d565b806114fb81612adb565b9150506114b6565b505050505050565b600a546001600160a01b031633146115355760405162461bcd60e51b81526004016108779061295b565b6016805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166115c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610877565b601254610100900460ff1661166857600d80546115e390612aa0565b80601f016020809104026020016040519081016040528092919081815260200182805461160f90612aa0565b801561165c5780601f106116315761010080835404028352916020019161165c565b820191906000526020600020905b81548152906001019060200180831161163f57829003601f168201915b50505050509050919050565b6000611672611c87565b9050600081511161169257604051806020016040528060008152506116c0565b8061169c84611c96565b600c6040516020016116b0939291906127b1565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116f15760405162461bcd60e51b81526004016108779061295b565b601055565b600a546001600160a01b031633146117205760405162461bcd60e51b81526004016108779061295b565b8051610e6690600c906020840190612324565b600a546001600160a01b0316331461175d5760405162461bcd60e51b81526004016108779061295b565b601455565b600a546001600160a01b0316331461178c5760405162461bcd60e51b81526004016108779061295b565b8051610e6690600d906020840190612324565b600a546001600160a01b031633146117c95760405162461bcd60e51b81526004016108779061295b565b6001600160a01b03811661182e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610877565b610c7881611bdb565b600a546001600160a01b031633146118615760405162461bcd60e51b81526004016108779061295b565b601280549115156101000261ff0019909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806118ac57506001600160e01b03198216635b5e139f60e01b145b8061084757506301ffc9a760e01b6001600160e01b0319831614610847565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061190082610efc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119b25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610877565b60006119bd83610efc565b9050806001600160a01b0316846001600160a01b031614806119f85750836001600160a01b03166119ed84610925565b6001600160a01b0316145b80611a2857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a4382610efc565b6001600160a01b031614611aab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610877565b6001600160a01b038216611b0d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610877565b611b18838383611d94565b611b236000826118cb565b6001600160a01b0383166000908152600360205260408120805460019290611b4c908490612a5d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b7a908490612a12565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611c38848484611a30565b611c4484848484611e4c565b6111365760405162461bcd60e51b815260040161087790612909565b6000611a28848484611f59565b610e66828260405180602001604052806000815250611f6f565b6060600b80546108a290612aa0565b606081611cba5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ce45780611cce81612adb565b9150611cdd9050600a83612a2a565b9150611cbe565b60008167ffffffffffffffff811115611cff57611cff612b62565b6040519080825280601f01601f191660200182016040528015611d29576020820181803683370190505b5090505b8415611a2857611d3e600183612a5d565b9150611d4b600a86612af6565b611d56906030612a12565b60f81b818381518110611d6b57611d6b612b4c565b60200101906001600160f81b031916908160001a905350611d8d600a86612a2a565b9450611d2d565b6001600160a01b038316611def57611dea81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e12565b816001600160a01b0316836001600160a01b031614611e1257611e128382611fa2565b6001600160a01b038216611e2957610acb8161203f565b826001600160a01b0316826001600160a01b031614610acb57610acb82826120ee565b60006001600160a01b0384163b15611f4e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e90903390899088908890600401612875565b602060405180830381600087803b158015611eaa57600080fd5b505af1925050508015611eda575060408051601f3d908101601f19168201909252611ed7918101906126a0565b60015b611f34573d808015611f08576040519150601f19603f3d011682016040523d82523d6000602084013e611f0d565b606091505b508051611f2c5760405162461bcd60e51b815260040161087790612909565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a28565b506001949350505050565b600082611f668584612132565b14949350505050565b611f7983836121d6565b611f866000848484611e4c565b610acb5760405162461bcd60e51b815260040161087790612909565b60006001611faf84610f73565b611fb99190612a5d565b60008381526007602052604090205490915080821461200c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061205190600190612a5d565b6000838152600960205260408120546008805493945090928490811061207957612079612b4c565b90600052602060002001549050806008838154811061209a5761209a612b4c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120d2576120d2612b36565b6001900381819060005260206000200160009055905550505050565b60006120f983610f73565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b8451811015610d5f57600085828151811061215457612154612b4c565b602002602001015190508083116121965760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506121c3565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806121ce81612adb565b915050612137565b6001600160a01b03821661222c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610877565b6000818152600260205260409020546001600160a01b0316156122915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610877565b61229d60008383611d94565b6001600160a01b03821660009081526003602052604081208054600192906122c6908490612a12565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461233090612aa0565b90600052602060002090601f0160209004810192826123525760008555612398565b82601f1061236b57805160ff1916838001178555612398565b82800160010185558215612398579182015b8281111561239857825182559160200191906001019061237d565b506123a49291506123a8565b5090565b5b808211156123a457600081556001016123a9565b600067ffffffffffffffff8311156123d7576123d7612b62565b6123ea601f8401601f19166020016129e1565b90508281528383830111156123fe57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461242c57600080fd5b919050565b8035801515811461242c57600080fd5b60006020828403121561245357600080fd5b6116c082612415565b6000806040838503121561246f57600080fd5b61247883612415565b915061248660208401612415565b90509250929050565b6000806000606084860312156124a457600080fd5b6124ad84612415565b92506124bb60208501612415565b9150604084013590509250925092565b600080600080608085870312156124e157600080fd5b6124ea85612415565b93506124f860208601612415565b925060408501359150606085013567ffffffffffffffff81111561251b57600080fd5b8501601f8101871361252c57600080fd5b61253b878235602084016123bd565b91505092959194509250565b6000806040838503121561255a57600080fd5b61256383612415565b915061248660208401612431565b6000806040838503121561258457600080fd5b61258d83612415565b946020939093013593505050565b600060208083850312156125ae57600080fd5b823567ffffffffffffffff808211156125c657600080fd5b818501915085601f8301126125da57600080fd5b8135818111156125ec576125ec612b62565b8060051b91506125fd8483016129e1565b8181528481019084860184860187018a101561261857600080fd5b600095505b838610156126425761262e81612415565b83526001959095019491860191860161261d565b5098975050505050505050565b60006020828403121561266157600080fd5b6116c082612431565b60006020828403121561267c57600080fd5b5035919050565b60006020828403121561269557600080fd5b81356116c081612b78565b6000602082840312156126b257600080fd5b81516116c081612b78565b6000602082840312156126cf57600080fd5b813567ffffffffffffffff8111156126e657600080fd5b8201601f810184136126f757600080fd5b611a28848235602084016123bd565b60008060006040848603121561271b57600080fd5b83359250602084013567ffffffffffffffff8082111561273a57600080fd5b818601915086601f83011261274e57600080fd5b81358181111561275d57600080fd5b8760208260051b850101111561277257600080fd5b6020830194508093505050509250925092565b6000815180845261279d816020860160208601612a74565b601f01601f19169290920160200192915050565b6000845160206127c48285838a01612a74565b8551918401916127d78184848a01612a74565b8554920191600090600181811c90808316806127f457607f831692505b85831081141561281257634e487b7160e01b85526022600452602485fd5b808015612826576001811461283757612864565b60ff19851688528388019550612864565b60008b81526020902060005b8581101561285c5781548a820152908401908801612843565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a890830184612785565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128ea578351835292840192918401916001016128ce565b50909695505050505050565b6020815260006116c06020830184612785565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a0a57612a0a612b62565b604052919050565b60008219821115612a2557612a25612b0a565b500190565b600082612a3957612a39612b20565b500490565b6000816000190483118215151615612a5857612a58612b0a565b500290565b600082821015612a6f57612a6f612b0a565b500390565b60005b83811015612a8f578181015183820152602001612a77565b838111156111365750506000910152565b600181811c90821680612ab457607f821691505b60208210811415612ad557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612aef57612aef612b0a565b5060010190565b600082612b0557612b05612b20565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c7857600080fdfea26469706673582212208a599c60c2d81a3f8642c7b8cd89362c0fdf54bf49f779b08eb1ebbb63e0747664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a6d65746150656e6775730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6372634146766e793146667338753862767253544337684e3631696f476f633379346f3664636d554d4577422f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80635e1b065c1161014f578063ba7d2c76116100c1578063da3ef23f1161007a578063da3ef23f14610739578063e08e65ea14610759578063e985e9c514610779578063f2c4ce1e146107c2578063f2fde38b146107e2578063fce237df1461080257600080fd5b8063ba7d2c7614610693578063be11ce06146106a9578063c737e0c6146106c3578063c87b56dd146106e3578063d0eb26b014610703578063d5abeb011461072357600080fd5b806395d89b411161011357806395d89b41146105f55780639c70b5121461060a578063a22cb4651461062a578063aa98e0c61461064a578063b88d4fde14610660578063ba41b0c61461068057600080fd5b80635e1b065c146105625780636352211e1461058257806370a08231146105a2578063715018a6146105c25780638da5cb5b146105d757600080fd5b80633913124c116101e8578063438b6300116101ac578063438b63001461049c57806344a0d68a146104c95780634f6ccce7146104e9578063518302271461050957806355f804b3146105285780635c975abb1461054857600080fd5b80633913124c146104045780633c952764146104345780633ccfd60b14610454578063401564541461045c57806342842e0e1461047c57600080fd5b806313faede61161023a57806313faede61461034857806318160ddd1461036c57806318cae269146103815780631a3b9e9a146103ae57806323b872dd146103c45780632f745c59146103e457600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063095ea7b314610328575b600080fd5b34801561028357600080fd5b50610297610292366004612683565b610822565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c736600461264f565b61084d565b005b3480156102da57600080fd5b506102e3610893565b6040516102a391906128f6565b3480156102fc57600080fd5b5061031061030b36600461266a565b610925565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102cc610343366004612571565b6109ba565b34801561035457600080fd5b5061035e600e5481565b6040519081526020016102a3565b34801561037857600080fd5b5060085461035e565b34801561038d57600080fd5b5061035e61039c366004612441565b60136020526000908152604090205481565b3480156103ba57600080fd5b5061035e60115481565b3480156103d057600080fd5b506102cc6103df36600461248f565b610ad0565b3480156103f057600080fd5b5061035e6103ff366004612571565b610b01565b34801561041057600080fd5b5061029761041f366004612441565b60156020526000908152604090205460ff1681565b34801561044057600080fd5b506102cc61044f36600461264f565b610b97565b6102cc610bdd565b34801561046857600080fd5b506102cc61047736600461266a565b610c7b565b34801561048857600080fd5b506102cc61049736600461248f565b610caa565b3480156104a857600080fd5b506104bc6104b7366004612441565b610cc5565b6040516102a391906128b2565b3480156104d557600080fd5b506102cc6104e436600461266a565b610d67565b3480156104f557600080fd5b5061035e61050436600461266a565b610d96565b34801561051557600080fd5b5060125461029790610100900460ff1681565b34801561053457600080fd5b506102cc6105433660046126bd565b610e29565b34801561055457600080fd5b506012546102979060ff1681565b34801561056e57600080fd5b506102cc61057d36600461259b565b610e6a565b34801561058e57600080fd5b5061031061059d36600461266a565b610efc565b3480156105ae57600080fd5b5061035e6105bd366004612441565b610f73565b3480156105ce57600080fd5b506102cc610ffa565b3480156105e357600080fd5b50600a546001600160a01b0316610310565b34801561060157600080fd5b506102e3611030565b34801561061657600080fd5b506012546102979062010000900460ff1681565b34801561063657600080fd5b506102cc610645366004612547565b61103f565b34801561065657600080fd5b5061035e60145481565b34801561066c57600080fd5b506102cc61067b3660046124cb565b611104565b6102cc61068e366004612706565b61113c565b34801561069f57600080fd5b5061035e60105481565b3480156106b557600080fd5b506016546102979060ff1681565b3480156106cf57600080fd5b506102cc6106de36600461264f565b61150b565b3480156106ef57600080fd5b506102e36106fe36600461266a565b611548565b34801561070f57600080fd5b506102cc61071e36600461266a565b6116c7565b34801561072f57600080fd5b5061035e600f5481565b34801561074557600080fd5b506102cc6107543660046126bd565b6116f6565b34801561076557600080fd5b506102cc61077436600461266a565b611733565b34801561078557600080fd5b5061029761079436600461245c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ce57600080fd5b506102cc6107dd3660046126bd565b611762565b3480156107ee57600080fd5b506102cc6107fd366004612441565b61179f565b34801561080e57600080fd5b506102cc61081d36600461264f565b611837565b60006001600160e01b0319821663780e9d6360e01b148061084757506108478261187b565b92915050565b600a546001600160a01b031633146108805760405162461bcd60e51b81526004016108779061295b565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108a290612aa0565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90612aa0565b801561091b5780601f106108f05761010080835404028352916020019161091b565b820191906000526020600020905b8154815290600101906020018083116108fe57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661099e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610877565b506000908152600460205260409020546001600160a01b031690565b60006109c582610efc565b9050806001600160a01b0316836001600160a01b03161415610a335760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610877565b336001600160a01b0382161480610a4f5750610a4f8133610794565b610ac15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610877565b610acb83836118cb565b505050565b610ada3382611939565b610af65760405162461bcd60e51b815260040161087790612990565b610acb838383611a30565b6000610b0c83610f73565b8210610b6e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610877565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bc15760405162461bcd60e51b81526004016108779061295b565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610c075760405162461bcd60e51b81526004016108779061295b565b6000610c1b600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c65576040519150601f19603f3d011682016040523d82523d6000602084013e610c6a565b606091505b5050905080610c7857600080fd5b50565b600a546001600160a01b03163314610ca55760405162461bcd60e51b81526004016108779061295b565b601155565b610acb83838360405180602001604052806000815250611104565b60606000610cd283610f73565b905060008167ffffffffffffffff811115610cef57610cef612b62565b604051908082528060200260200182016040528015610d18578160200160208202803683370190505b50905060005b82811015610d5f57610d308582610b01565b828281518110610d4257610d42612b4c565b602090810291909101015280610d5781612adb565b915050610d1e565b509392505050565b600a546001600160a01b03163314610d915760405162461bcd60e51b81526004016108779061295b565b600e55565b6000610da160085490565b8210610e045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610877565b60088281548110610e1757610e17612b4c565b90600052602060002001549050919050565b600a546001600160a01b03163314610e535760405162461bcd60e51b81526004016108779061295b565b8051610e6690600b906020840190612324565b5050565b600a546001600160a01b03163314610e945760405162461bcd60e51b81526004016108779061295b565b60005b8151811015610e6657600160156000848481518110610eb857610eb8612b4c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610ef481612adb565b915050610e97565b6000818152600260205260408120546001600160a01b0316806108475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610877565b60006001600160a01b038216610fde5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610877565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110245760405162461bcd60e51b81526004016108779061295b565b61102e6000611bdb565b565b6060600180546108a290612aa0565b6001600160a01b0382163314156110985760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610877565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61110e3383611939565b61112a5760405162461bcd60e51b815260040161087790612990565b61113684848484611c2d565b50505050565b60125460ff16156111885760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610877565b600061119360085490565b9050600084116111e55760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610877565b600f546111f28583612a12565b11156112395760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610877565b33600081815260136020526040902054600a5490916001600160a01b03909116146114b35760125462010000900460ff161515600114156114065760165460ff16156112e2573360009081526015602052604090205460ff1615156001146112dd5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b6044820152606401610877565b6113ab565b6113658484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060145491506113609050336040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b611c60565b6113ab5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b6044820152606401610877565b6010546113b88683612a12565b11156114065760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610877565b84600e546114149190612a3e565b3410156114585760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610877565b6011546114658683612a12565b11156114b35760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610877565b60015b858111611503573360009081526013602052604081208054916114d883612adb565b909155506114f19050336114ec8386612a12565b611c6d565b806114fb81612adb565b9150506114b6565b505050505050565b600a546001600160a01b031633146115355760405162461bcd60e51b81526004016108779061295b565b6016805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166115c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610877565b601254610100900460ff1661166857600d80546115e390612aa0565b80601f016020809104026020016040519081016040528092919081815260200182805461160f90612aa0565b801561165c5780601f106116315761010080835404028352916020019161165c565b820191906000526020600020905b81548152906001019060200180831161163f57829003601f168201915b50505050509050919050565b6000611672611c87565b9050600081511161169257604051806020016040528060008152506116c0565b8061169c84611c96565b600c6040516020016116b0939291906127b1565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116f15760405162461bcd60e51b81526004016108779061295b565b601055565b600a546001600160a01b031633146117205760405162461bcd60e51b81526004016108779061295b565b8051610e6690600c906020840190612324565b600a546001600160a01b0316331461175d5760405162461bcd60e51b81526004016108779061295b565b601455565b600a546001600160a01b0316331461178c5760405162461bcd60e51b81526004016108779061295b565b8051610e6690600d906020840190612324565b600a546001600160a01b031633146117c95760405162461bcd60e51b81526004016108779061295b565b6001600160a01b03811661182e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610877565b610c7881611bdb565b600a546001600160a01b031633146118615760405162461bcd60e51b81526004016108779061295b565b601280549115156101000261ff0019909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806118ac57506001600160e01b03198216635b5e139f60e01b145b8061084757506301ffc9a760e01b6001600160e01b0319831614610847565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061190082610efc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119b25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610877565b60006119bd83610efc565b9050806001600160a01b0316846001600160a01b031614806119f85750836001600160a01b03166119ed84610925565b6001600160a01b0316145b80611a2857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a4382610efc565b6001600160a01b031614611aab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610877565b6001600160a01b038216611b0d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610877565b611b18838383611d94565b611b236000826118cb565b6001600160a01b0383166000908152600360205260408120805460019290611b4c908490612a5d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b7a908490612a12565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611c38848484611a30565b611c4484848484611e4c565b6111365760405162461bcd60e51b815260040161087790612909565b6000611a28848484611f59565b610e66828260405180602001604052806000815250611f6f565b6060600b80546108a290612aa0565b606081611cba5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ce45780611cce81612adb565b9150611cdd9050600a83612a2a565b9150611cbe565b60008167ffffffffffffffff811115611cff57611cff612b62565b6040519080825280601f01601f191660200182016040528015611d29576020820181803683370190505b5090505b8415611a2857611d3e600183612a5d565b9150611d4b600a86612af6565b611d56906030612a12565b60f81b818381518110611d6b57611d6b612b4c565b60200101906001600160f81b031916908160001a905350611d8d600a86612a2a565b9450611d2d565b6001600160a01b038316611def57611dea81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e12565b816001600160a01b0316836001600160a01b031614611e1257611e128382611fa2565b6001600160a01b038216611e2957610acb8161203f565b826001600160a01b0316826001600160a01b031614610acb57610acb82826120ee565b60006001600160a01b0384163b15611f4e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e90903390899088908890600401612875565b602060405180830381600087803b158015611eaa57600080fd5b505af1925050508015611eda575060408051601f3d908101601f19168201909252611ed7918101906126a0565b60015b611f34573d808015611f08576040519150601f19603f3d011682016040523d82523d6000602084013e611f0d565b606091505b508051611f2c5760405162461bcd60e51b815260040161087790612909565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a28565b506001949350505050565b600082611f668584612132565b14949350505050565b611f7983836121d6565b611f866000848484611e4c565b610acb5760405162461bcd60e51b815260040161087790612909565b60006001611faf84610f73565b611fb99190612a5d565b60008381526007602052604090205490915080821461200c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061205190600190612a5d565b6000838152600960205260408120546008805493945090928490811061207957612079612b4c565b90600052602060002001549050806008838154811061209a5761209a612b4c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120d2576120d2612b36565b6001900381819060005260206000200160009055905550505050565b60006120f983610f73565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b8451811015610d5f57600085828151811061215457612154612b4c565b602002602001015190508083116121965760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506121c3565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806121ce81612adb565b915050612137565b6001600160a01b03821661222c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610877565b6000818152600260205260409020546001600160a01b0316156122915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610877565b61229d60008383611d94565b6001600160a01b03821660009081526003602052604081208054600192906122c6908490612a12565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461233090612aa0565b90600052602060002090601f0160209004810192826123525760008555612398565b82601f1061236b57805160ff1916838001178555612398565b82800160010185558215612398579182015b8281111561239857825182559160200191906001019061237d565b506123a49291506123a8565b5090565b5b808211156123a457600081556001016123a9565b600067ffffffffffffffff8311156123d7576123d7612b62565b6123ea601f8401601f19166020016129e1565b90508281528383830111156123fe57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461242c57600080fd5b919050565b8035801515811461242c57600080fd5b60006020828403121561245357600080fd5b6116c082612415565b6000806040838503121561246f57600080fd5b61247883612415565b915061248660208401612415565b90509250929050565b6000806000606084860312156124a457600080fd5b6124ad84612415565b92506124bb60208501612415565b9150604084013590509250925092565b600080600080608085870312156124e157600080fd5b6124ea85612415565b93506124f860208601612415565b925060408501359150606085013567ffffffffffffffff81111561251b57600080fd5b8501601f8101871361252c57600080fd5b61253b878235602084016123bd565b91505092959194509250565b6000806040838503121561255a57600080fd5b61256383612415565b915061248660208401612431565b6000806040838503121561258457600080fd5b61258d83612415565b946020939093013593505050565b600060208083850312156125ae57600080fd5b823567ffffffffffffffff808211156125c657600080fd5b818501915085601f8301126125da57600080fd5b8135818111156125ec576125ec612b62565b8060051b91506125fd8483016129e1565b8181528481019084860184860187018a101561261857600080fd5b600095505b838610156126425761262e81612415565b83526001959095019491860191860161261d565b5098975050505050505050565b60006020828403121561266157600080fd5b6116c082612431565b60006020828403121561267c57600080fd5b5035919050565b60006020828403121561269557600080fd5b81356116c081612b78565b6000602082840312156126b257600080fd5b81516116c081612b78565b6000602082840312156126cf57600080fd5b813567ffffffffffffffff8111156126e657600080fd5b8201601f810184136126f757600080fd5b611a28848235602084016123bd565b60008060006040848603121561271b57600080fd5b83359250602084013567ffffffffffffffff8082111561273a57600080fd5b818601915086601f83011261274e57600080fd5b81358181111561275d57600080fd5b8760208260051b850101111561277257600080fd5b6020830194508093505050509250925092565b6000815180845261279d816020860160208601612a74565b601f01601f19169290920160200192915050565b6000845160206127c48285838a01612a74565b8551918401916127d78184848a01612a74565b8554920191600090600181811c90808316806127f457607f831692505b85831081141561281257634e487b7160e01b85526022600452602485fd5b808015612826576001811461283757612864565b60ff19851688528388019550612864565b60008b81526020902060005b8581101561285c5781548a820152908401908801612843565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a890830184612785565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128ea578351835292840192918401916001016128ce565b50909695505050505050565b6020815260006116c06020830184612785565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a0a57612a0a612b62565b604052919050565b60008219821115612a2557612a25612b0a565b500190565b600082612a3957612a39612b20565b500490565b6000816000190483118215151615612a5857612a58612b0a565b500290565b600082821015612a6f57612a6f612b0a565b500390565b60005b83811015612a8f578181015183820152602001612a77565b838111156111365750506000910152565b600181811c90821680612ab457607f821691505b60208210811415612ad557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612aef57612aef612b0a565b5060010190565b600082612b0557612b05612b20565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c7857600080fdfea26469706673582212208a599c60c2d81a3f8642c7b8cd89362c0fdf54bf49f779b08eb1ebbb63e0747664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a6d65746150656e6775730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6372634146766e793146667338753862767253544337684e3631696f476f633379346f3664636d554d4577422f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): metaPengus
Arg [1] : _symbol (string): MP
Arg [2] : _notRevealedUri (string): ipfs://QmcrcAFvny1Ffs8u8bvrSTC7hN61ioGoc3y4o6dcmUMEwB/hidden.json

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 6d65746150656e67757300000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4d50000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [8] : 697066733a2f2f516d6372634146766e79314666733875386276725354433768
Arg [9] : 4e3631696f476f633379346f3664636d554d4577422f68696464656e2e6a736f
Arg [10] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45410:5440:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39135:224;;;;;;;;;;-1:-1:-1;39135:224:0;;;;;:::i;:::-;;:::i;:::-;;;9909:14:1;;9902:22;9884:41;;9872:2;9857:18;39135:224:0;;;;;;;;50439:70;;;;;;;;;;-1:-1:-1;50439:70:0;;;;;:::i;:::-;;:::i;:::-;;27027:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28586:221::-;;;;;;;;;;-1:-1:-1;28586:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8570:32:1;;;8552:51;;8540:2;8525:18;28586:221:0;8406:203:1;28109:411:0;;;;;;;;;;-1:-1:-1;28109:411:0;;;;;:::i;:::-;;:::i;45571:31::-;;;;;;;;;;;;;;;;;;;10082:25:1;;;10070:2;10055:18;45571:31:0;9936:177:1;39775:113:0;;;;;;;;;;-1:-1:-1;39863:10:0;:17;39775:113;;45818:55;;;;;;;;;;-1:-1:-1;45818:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;45682:33;;;;;;;;;;;;;;;;29476:339;;;;;;;;;;-1:-1:-1;29476:339:0;;;;;:::i;:::-;;:::i;39443:256::-;;;;;;;;;;-1:-1:-1;39443:256:0;;;;;:::i;:::-;;:::i;45915:58::-;;;;;;;;;;-1:-1:-1;45915:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50514:92;;;;;;;;;;-1:-1:-1;50514:92:0;;;;;:::i;:::-;;:::i;50707:140::-;;;:::i;50611:91::-;;;;;;;;;;-1:-1:-1;50611:91:0;;;;;:::i;:::-;;:::i;29886:185::-;;;;;;;;;;-1:-1:-1;29886:185:0;;;;;:::i;:::-;;:::i;48424:327::-;;;;;;;;;;-1:-1:-1;48424:327:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49901:77::-;;;;;;;;;;-1:-1:-1;49901:77:0;;;;;:::i;:::-;;:::i;39965:233::-;;;;;;;;;;-1:-1:-1;39965:233:0;;;;;:::i;:::-;;:::i;45748:28::-;;;;;;;;;;-1:-1:-1;45748:28:0;;;;;;;;;;;49983:95;;;;;;;;;;-1:-1:-1;49983:95:0;;;;;:::i;:::-;;:::i;45719:25::-;;;;;;;;;;-1:-1:-1;45719:25:0;;;;;;;;49558:199;;;;;;;;;;-1:-1:-1;49558:199:0;;;;;:::i;:::-;;:::i;26721:239::-;;;;;;;;;;-1:-1:-1;26721:239:0;;;;;:::i;:::-;;:::i;26451:208::-;;;;;;;;;;-1:-1:-1;26451:208:0;;;;;:::i;:::-;;:::i;6726:94::-;;;;;;;;;;;;;:::i;6075:87::-;;;;;;;;;;-1:-1:-1;6148:6:0;;-1:-1:-1;;;;;6148:6:0;6075:87;;27196:104;;;;;;;;;;;;;:::i;45780:34::-;;;;;;;;;;-1:-1:-1;45780:34:0;;;;;;;;;;;28879:295;;;;;;;;;;-1:-1:-1;28879:295:0;;;;;:::i;:::-;;:::i;45877:34::-;;;;;;;;;;;;;;;;30142:328;;;;;;;;;;-1:-1:-1;30142:328:0;;;;;:::i;:::-;;:::i;47129:1290::-;;;;;;:::i;:::-;;:::i;45641:37::-;;;;;;;;;;;;;;;;45977:49;;;;;;;;;;-1:-1:-1;45977:49:0;;;;;;;;49762:118;;;;;;;;;;-1:-1:-1;49762:118:0;;;;;:::i;:::-;;:::i;48756:497::-;;;;;;;;;;-1:-1:-1;48756:497:0;;;;;:::i;:::-;;:::i;49273:101::-;;;;;;;;;;-1:-1:-1;49273:101:0;;;;;:::i;:::-;;:::i;45606:31::-;;;;;;;;;;;;;;;;50083:127;;;;;;;;;;-1:-1:-1;50083:127:0;;;;;:::i;:::-;;:::i;49442:111::-;;;;;;;;;;-1:-1:-1;49442:111:0;;;;;:::i;:::-;;:::i;29245:164::-;;;;;;;;;;-1:-1:-1;29245:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29366:25:0;;;29342:4;29366:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29245:164;50317:117;;;;;;;;;;-1:-1:-1;50317:117:0;;;;;:::i;:::-;;:::i;6975:192::-;;;;;;;;;;-1:-1:-1;6975:192:0;;;;;:::i;:::-;;:::i;50215:97::-;;;;;;;;;;-1:-1:-1;50215:97:0;;;;;:::i;:::-;;:::i;39135:224::-;39237:4;-1:-1:-1;;;;;;39261:50:0;;-1:-1:-1;;;39261:50:0;;:90;;;39315:36;39339:11;39315:23;:36::i;:::-;39254:97;39135:224;-1:-1:-1;;39135:224:0:o;50439:70::-;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;;;;;;;;;50489:6:::1;:15:::0;;-1:-1:-1;;50489:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50439:70::o;27027:100::-;27081:13;27114:5;27107:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27027:100;:::o;28586:221::-;28662:7;32069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32069:16:0;28682:73;;;;-1:-1:-1;;;28682:73:0;;15626:2:1;28682:73:0;;;15608:21:1;15665:2;15645:18;;;15638:30;15704:34;15684:18;;;15677:62;-1:-1:-1;;;15755:18:1;;;15748:42;15807:19;;28682:73:0;15424:408:1;28682:73:0;-1:-1:-1;28775:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28775:24:0;;28586:221::o;28109:411::-;28190:13;28206:23;28221:7;28206:14;:23::i;:::-;28190:39;;28254:5;-1:-1:-1;;;;;28248:11:0;:2;-1:-1:-1;;;;;28248:11:0;;;28240:57;;;;-1:-1:-1;;;28240:57:0;;17577:2:1;28240:57:0;;;17559:21:1;17616:2;17596:18;;;17589:30;17655:34;17635:18;;;17628:62;-1:-1:-1;;;17706:18:1;;;17699:31;17747:19;;28240:57:0;17375:397:1;28240:57:0;4943:10;-1:-1:-1;;;;;28332:21:0;;;;:62;;-1:-1:-1;28357:37:0;28374:5;4943:10;29245:164;:::i;28357:37::-;28310:168;;;;-1:-1:-1;;;28310:168:0;;13668:2:1;28310:168:0;;;13650:21:1;13707:2;13687:18;;;13680:30;13746:34;13726:18;;;13719:62;13817:26;13797:18;;;13790:54;13861:19;;28310:168:0;13466:420:1;28310:168:0;28491:21;28500:2;28504:7;28491:8;:21::i;:::-;28179:341;28109:411;;:::o;29476:339::-;29671:41;4943:10;29704:7;29671:18;:41::i;:::-;29663:103;;;;-1:-1:-1;;;29663:103:0;;;;;;;:::i;:::-;29779:28;29789:4;29795:2;29799:7;29779:9;:28::i;39443:256::-;39540:7;39576:23;39593:5;39576:16;:23::i;:::-;39568:5;:31;39560:87;;;;-1:-1:-1;;;39560:87:0;;10544:2:1;39560:87:0;;;10526:21:1;10583:2;10563:18;;;10556:30;10622:34;10602:18;;;10595:62;-1:-1:-1;;;10673:18:1;;;10666:41;10724:19;;39560:87:0;10342:407:1;39560:87:0;-1:-1:-1;;;;;;39665:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39443:256::o;50514:92::-;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;50577:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;50577:24:0;;::::1;::::0;;;::::1;::::0;;50514:92::o;50707:140::-;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;50758:7:::1;50779;6148:6:::0;;-1:-1:-1;;;;;6148:6:0;;6075:87;50779:7:::1;-1:-1:-1::0;;;;;50771:21:0::1;50800;50771:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50757:69;;;50839:2;50831:11;;;::::0;::::1;;50752:95;50707:140::o:0;50611:91::-;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;50675:14:::1;:22:::0;50611:91::o;29886:185::-;30024:39;30041:4;30047:2;30051:7;30024:39;;;;;;;;;;;;:16;:39::i;48424:327::-;48493:16;48518:23;48544:17;48554:6;48544:9;:17::i;:::-;48518:43;;48566:25;48608:15;48594:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48594:30:0;;48566:58;;48634:9;48629:98;48649:15;48645:1;:19;48629:98;;;48691:30;48711:6;48719:1;48691:19;:30::i;:::-;48677:8;48686:1;48677:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48666:3;;;;:::i;:::-;;;;48629:98;;;-1:-1:-1;48738:8:0;48424:327;-1:-1:-1;;;48424:327:0:o;49901:77::-;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;49958:4:::1;:15:::0;49901:77::o;39965:233::-;40040:7;40076:30;39863:10;:17;;39775:113;40076:30;40068:5;:38;40060:95;;;;-1:-1:-1;;;40060:95:0;;18744:2:1;40060:95:0;;;18726:21:1;18783:2;18763:18;;;18756:30;18822:34;18802:18;;;18795:62;-1:-1:-1;;;18873:18:1;;;18866:42;18925:19;;40060:95:0;18542:408:1;40060:95:0;40173:10;40184:5;40173:17;;;;;;;;:::i;:::-;;;;;;;;;40166:24;;39965:233;;;:::o;49983:95::-;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;50052:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49983:95:::0;:::o;49558:199::-;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;49652:9:::1;49647:106;49671:9;:16;49667:1;:20;49647:106;;;49743:4;49700:26;:40;49727:9;49737:1;49727:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;49700:40:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;49700:40:0;:47;;-1:-1:-1;;49700:47:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49689:3;::::1;::::0;::::1;:::i;:::-;;;;49647:106;;26721:239:::0;26793:7;26829:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26829:16:0;26864:19;26856:73;;;;-1:-1:-1;;;26856:73:0;;14504:2:1;26856:73:0;;;14486:21:1;14543:2;14523:18;;;14516:30;14582:34;14562:18;;;14555:62;-1:-1:-1;;;14633:18:1;;;14626:39;14682:19;;26856:73:0;14302:405:1;26451:208:0;26523:7;-1:-1:-1;;;;;26551:19:0;;26543:74;;;;-1:-1:-1;;;26543:74:0;;14093:2:1;26543:74:0;;;14075:21:1;14132:2;14112:18;;;14105:30;14171:34;14151:18;;;14144:62;-1:-1:-1;;;14222:18:1;;;14215:40;14272:19;;26543:74:0;13891:406:1;26543:74:0;-1:-1:-1;;;;;;26635:16:0;;;;;:9;:16;;;;;;;26451:208::o;6726:94::-;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;6791:21:::1;6809:1;6791:9;:21::i;:::-;6726:94::o:0;27196:104::-;27252:13;27285:7;27278:14;;;;;:::i;28879:295::-;-1:-1:-1;;;;;28982:24:0;;4943:10;28982:24;;28974:62;;;;-1:-1:-1;;;28974:62:0;;12901:2:1;28974:62:0;;;12883:21:1;12940:2;12920:18;;;12913:30;12979:27;12959:18;;;12952:55;13024:18;;28974:62:0;12699:349:1;28974:62:0;4943:10;29049:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29049:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29049:53:0;;;;;;;;;;29118:48;;9884:41:1;;;29049:42:0;;4943:10;29118:48;;9857:18:1;29118:48:0;;;;;;;28879:295;;:::o;30142:328::-;30317:41;4943:10;30350:7;30317:18;:41::i;:::-;30309:103;;;;-1:-1:-1;;;30309:103:0;;;;;;;:::i;:::-;30423:39;30437:4;30443:2;30447:7;30456:5;30423:13;:39::i;:::-;30142:328;;;;:::o;47129:1290::-;47226:6;;;;:15;47218:50;;;;-1:-1:-1;;;47218:50:0;;16400:2:1;47218:50:0;;;16382:21:1;16439:2;16419:18;;;16412:30;-1:-1:-1;;;16458:18:1;;;16451:52;16520:18;;47218:50:0;16198:346:1;47218:50:0;47273:14;47290:13;39863:10;:17;;39775:113;47290:13;47273:30;;47330:1;47316:11;:15;47308:55;;;;-1:-1:-1;;;47308:55:0;;19509:2:1;47308:55:0;;;19491:21:1;19548:2;19528:18;;;19521:30;19587:29;19567:18;;;19560:57;19634:18;;47308:55:0;19307:351:1;47308:55:0;47400:9;;47376:20;47385:11;47376:6;:20;:::i;:::-;:33;;47368:68;;;;-1:-1:-1;;;47368:68:0;;14914:2:1;47368:68:0;;;14896:21:1;14953:2;14933:18;;;14926:30;-1:-1:-1;;;14972:18:1;;;14965:52;15034:18;;47368:68:0;14712:346:1;47368:68:0;47491:10;47443:24;47470:32;;;:20;:32;;;;;;6148:6;;47470:32;;-1:-1:-1;;;;;6148:6:0;;;47511:21;47507:774;;47544:15;;;;;;;:23;;47563:4;47544:23;47540:475;;;47580:29;;;;47576:314;;;47654:10;47627:38;;;;:26;:38;;;;;;;;:46;;:38;:46;47619:82;;;;-1:-1:-1;;;47619:82:0;;19157:2:1;47619:82:0;;;19139:21:1;19196:2;19176:18;;;19169:30;-1:-1:-1;;;19215:18:1;;;19208:53;19278:18;;47619:82:0;18955:347:1;47619:82:0;47576:314;;;47739:101;47756:5;;47739:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47771:19:0;;;-1:-1:-1;47800:31:0;;-1:-1:-1;47820:10:0;46431:25;;-1:-1:-1;;6327:2:1;6323:15;;;6319:53;46431:25:0;;;6307:66:1;46398:7:0;;6389:12:1;;46431:25:0;;;;;;;;;;;;46421:36;;;;;;46414:43;;46320:142;;;;47800:31;47739:7;:101::i;:::-;47723:159;;;;-1:-1:-1;;;47723:159:0;;19157:2:1;47723:159:0;;;19139:21:1;19196:2;19176:18;;;19169:30;-1:-1:-1;;;19215:18:1;;;19208:53;19278:18;;47723:159:0;18955:347:1;47723:159:0;47945:18;;47911:30;47930:11;47911:16;:30;:::i;:::-;:52;;47896:112;;;;-1:-1:-1;;;47896:112:0;;12139:2:1;47896:112:0;;;12121:21:1;12178:2;12158:18;;;12151:30;12217;12197:18;;;12190:58;12265:18;;47896:112:0;11937:352:1;47896:112:0;48048:11;48041:4;;:18;;;;:::i;:::-;48028:9;:31;;48020:62;;;;-1:-1:-1;;;48020:62:0;;17979:2:1;48020:62:0;;;17961:21:1;18018:2;17998:18;;;17991:30;-1:-1:-1;;;18037:18:1;;;18030:48;18095:18;;48020:62:0;17777:342:1;48020:62:0;48218:14;;48184:30;48203:11;48184:16;:30;:::i;:::-;:48;;48170:105;;;;-1:-1:-1;;;48170:105:0;;12139:2:1;48170:105:0;;;12121:21:1;12178:2;12158:18;;;12151:30;12217;12197:18;;;12190:58;12265:18;;48170:105:0;11937:352:1;48170:105:0;48304:1;48287:128;48312:11;48307:1;:16;48287:128;;48357:10;48336:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;48376:33:0;;-1:-1:-1;48386:10:0;48398;48407:1;48398:6;:10;:::i;:::-;48376:9;:33::i;:::-;48325:3;;;;:::i;:::-;;;;48287:128;;;;47213:1206;;47129:1290;;;:::o;49762:118::-;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;49838:29:::1;:37:::0;;-1:-1:-1;;49838:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49762:118::o;48756:497::-;32045:4;32069:16;;;:7;:16;;;;;;48844:13;;-1:-1:-1;;;;;32069:16:0;48866:89;;;;-1:-1:-1;;;48866:89:0;;17161:2:1;48866:89:0;;;17143:21:1;17200:2;17180:18;;;17173:30;17239:34;17219:18;;;17212:62;-1:-1:-1;;;17290:18:1;;;17283:45;17345:19;;48866:89:0;16959:411:1;48866:89:0;48966:8;;;;;;;48962:56;;48998:14;48991:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48756:497;;;:::o;48962:56::-;49024:28;49055:10;:8;:10::i;:::-;49024:41;;49112:1;49087:14;49081:28;:32;:167;;;;;;;;;;;;;;;;;49160:14;49183:18;:7;:16;:18::i;:::-;49210:13;49135:96;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49081:167;49070:178;48756:497;-1:-1:-1;;;48756:497:0:o;49273:101::-;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;49342:18:::1;:27:::0;49273:101::o;50083:127::-;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;50172:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;49442:111::-:0;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;49516:19:::1;:32:::0;49442:111::o;50317:117::-;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;50397:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;6975:192::-:0;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7064:22:0;::::1;7056:73;;;::::0;-1:-1:-1;;;7056:73:0;;11375:2:1;7056:73:0::1;::::0;::::1;11357:21:1::0;11414:2;11394:18;;;11387:30;11453:34;11433:18;;;11426:62;-1:-1:-1;;;11504:18:1;;;11497:36;11550:19;;7056:73:0::1;11173:402:1::0;7056:73:0::1;7140:19;7150:8;7140:9;:19::i;50215:97::-:0;6148:6;;-1:-1:-1;;;;;6148:6:0;4943:10;6295:23;6287:68;;;;-1:-1:-1;;;6287:68:0;;;;;;;:::i;:::-;50283:8:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;50283:24:0;;::::1;::::0;;;::::1;::::0;;50215:97::o;26082:305::-;26184:4;-1:-1:-1;;;;;;26221:40:0;;-1:-1:-1;;;26221:40:0;;:105;;-1:-1:-1;;;;;;;26278:48:0;;-1:-1:-1;;;26278:48:0;26221:105;:158;;;-1:-1:-1;;;;;;;;;;18170:40:0;;;26343:36;18061:157;35962:174;36037:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36037:29:0;-1:-1:-1;;;;;36037:29:0;;;;;;;;:24;;36091:23;36037:24;36091:14;:23::i;:::-;-1:-1:-1;;;;;36082:46:0;;;;;;;;;;;35962:174;;:::o;32274:348::-;32367:4;32069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32069:16:0;32384:73;;;;-1:-1:-1;;;32384:73:0;;13255:2:1;32384:73:0;;;13237:21:1;13294:2;13274:18;;;13267:30;13333:34;13313:18;;;13306:62;-1:-1:-1;;;13384:18:1;;;13377:42;13436:19;;32384:73:0;13053:408:1;32384:73:0;32468:13;32484:23;32499:7;32484:14;:23::i;:::-;32468:39;;32537:5;-1:-1:-1;;;;;32526:16:0;:7;-1:-1:-1;;;;;32526:16:0;;:51;;;;32570:7;-1:-1:-1;;;;;32546:31:0;:20;32558:7;32546:11;:20::i;:::-;-1:-1:-1;;;;;32546:31:0;;32526:51;:87;;;-1:-1:-1;;;;;;29366:25:0;;;29342:4;29366:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32581:32;32518:96;32274:348;-1:-1:-1;;;;32274:348:0:o;35266:578::-;35425:4;-1:-1:-1;;;;;35398:31:0;:23;35413:7;35398:14;:23::i;:::-;-1:-1:-1;;;;;35398:31:0;;35390:85;;;;-1:-1:-1;;;35390:85:0;;16751:2:1;35390:85:0;;;16733:21:1;16790:2;16770:18;;;16763:30;16829:34;16809:18;;;16802:62;-1:-1:-1;;;16880:18:1;;;16873:39;16929:19;;35390:85:0;16549:405:1;35390:85:0;-1:-1:-1;;;;;35494:16:0;;35486:65;;;;-1:-1:-1;;;35486:65:0;;12496:2:1;35486:65:0;;;12478:21:1;12535:2;12515:18;;;12508:30;12574:34;12554:18;;;12547:62;-1:-1:-1;;;12625:18:1;;;12618:34;12669:19;;35486:65:0;12294:400:1;35486:65:0;35564:39;35585:4;35591:2;35595:7;35564:20;:39::i;:::-;35668:29;35685:1;35689:7;35668:8;:29::i;:::-;-1:-1:-1;;;;;35710:15:0;;;;;;:9;:15;;;;;:20;;35729:1;;35710:15;:20;;35729:1;;35710:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35741:13:0;;;;;;:9;:13;;;;;:18;;35758:1;;35741:13;:18;;35758:1;;35741:18;:::i;:::-;;;;-1:-1:-1;;35770:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35770:21:0;-1:-1:-1;;;;;35770:21:0;;;;;;;;;35809:27;;35770:16;;35809:27;;;;;;;35266:578;;;:::o;7175:173::-;7250:6;;;-1:-1:-1;;;;;7267:17:0;;;-1:-1:-1;;;;;;7267:17:0;;;;;;;7300:40;;7250:6;;;7267:17;7250:6;;7300:40;;7231:16;;7300:40;7220:128;7175:173;:::o;31352:315::-;31509:28;31519:4;31525:2;31529:7;31509:9;:28::i;:::-;31556:48;31579:4;31585:2;31589:7;31598:5;31556:22;:48::i;:::-;31548:111;;;;-1:-1:-1;;;31548:111:0;;;;;;;:::i;46556:185::-;46671:4;46689:47;46708:5;46715:10;46727:8;46689:18;:47::i;32964:110::-;33040:26;33050:2;33054:7;33040:26;;;;;;;;;;;;:9;:26::i;46216:99::-;46276:13;46303:7;46296:14;;;;;:::i;2479:723::-;2535:13;2756:10;2752:53;;-1:-1:-1;;2783:10:0;;;;;;;;;;;;-1:-1:-1;;;2783:10:0;;;;;2479:723::o;2752:53::-;2830:5;2815:12;2871:78;2878:9;;2871:78;;2904:8;;;;:::i;:::-;;-1:-1:-1;2927:10:0;;-1:-1:-1;2935:2:0;2927:10;;:::i;:::-;;;2871:78;;;2959:19;2991:6;2981:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2981:17:0;;2959:39;;3009:154;3016:10;;3009:154;;3043:11;3053:1;3043:11;;:::i;:::-;;-1:-1:-1;3112:10:0;3120:2;3112:5;:10;:::i;:::-;3099:24;;:2;:24;:::i;:::-;3086:39;;3069:6;3076;3069:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3069:56:0;;;;;;;;-1:-1:-1;3140:11:0;3149:2;3140:11;;:::i;:::-;;;3009:154;;40811:589;-1:-1:-1;;;;;41017:18:0;;41013:187;;41052:40;41084:7;42227:10;:17;;42200:24;;;;:15;:24;;;;;:44;;;42255:24;;;;;;;;;;;;42123:164;41052:40;41013:187;;;41122:2;-1:-1:-1;;;;;41114:10:0;:4;-1:-1:-1;;;;;41114:10:0;;41110:90;;41141:47;41174:4;41180:7;41141:32;:47::i;:::-;-1:-1:-1;;;;;41214:16:0;;41210:183;;41247:45;41284:7;41247:36;:45::i;41210:183::-;41320:4;-1:-1:-1;;;;;41314:10:0;:2;-1:-1:-1;;;;;41314:10:0;;41310:83;;41341:40;41369:2;41373:7;41341:27;:40::i;36701:799::-;36856:4;-1:-1:-1;;;;;36877:13:0;;8444:20;8492:8;36873:620;;36913:72;;-1:-1:-1;;;36913:72:0;;-1:-1:-1;;;;;36913:36:0;;;;;:72;;4943:10;;36964:4;;36970:7;;36979:5;;36913:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36913:72:0;;;;;;;;-1:-1:-1;;36913:72:0;;;;;;;;;;;;:::i;:::-;;;36909:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37155:13:0;;37151:272;;37198:60;;-1:-1:-1;;;37198:60:0;;;;;;;:::i;37151:272::-;37373:6;37367:13;37358:6;37354:2;37350:15;37343:38;36909:529;-1:-1:-1;;;;;;37036:51:0;-1:-1:-1;;;37036:51:0;;-1:-1:-1;37029:58:0;;36873:620;-1:-1:-1;37477:4:0;36701:799;;;;;;:::o;908:190::-;1033:4;1086;1057:25;1070:5;1077:4;1057:12;:25::i;:::-;:33;;908:190;-1:-1:-1;;;;908:190:0:o;33301:321::-;33431:18;33437:2;33441:7;33431:5;:18::i;:::-;33482:54;33513:1;33517:2;33521:7;33530:5;33482:22;:54::i;:::-;33460:154;;;;-1:-1:-1;;;33460:154:0;;;;;;;:::i;42914:988::-;43180:22;43230:1;43205:22;43222:4;43205:16;:22::i;:::-;:26;;;;:::i;:::-;43242:18;43263:26;;;:17;:26;;;;;;43180:51;;-1:-1:-1;43396:28:0;;;43392:328;;-1:-1:-1;;;;;43463:18:0;;43441:19;43463:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43514:30;;;;;;:44;;;43631:30;;:17;:30;;;;;:43;;;43392:328;-1:-1:-1;43816:26:0;;;;:17;:26;;;;;;;;43809:33;;;-1:-1:-1;;;;;43860:18:0;;;;;:12;:18;;;;;:34;;;;;;;43853:41;42914:988::o;44197:1079::-;44475:10;:17;44450:22;;44475:21;;44495:1;;44475:21;:::i;:::-;44507:18;44528:24;;;:15;:24;;;;;;44901:10;:26;;44450:46;;-1:-1:-1;44528:24:0;;44450:46;;44901:26;;;;;;:::i;:::-;;;;;;;;;44879:48;;44965:11;44940:10;44951;44940:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45045:28;;;:15;:28;;;;;;;:41;;;45217:24;;;;;45210:31;45252:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44268:1008;;;44197:1079;:::o;41701:221::-;41786:14;41803:20;41820:2;41803:16;:20::i;:::-;-1:-1:-1;;;;;41834:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41879:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41701:221:0:o;1460:701::-;1543:7;1586:4;1543:7;1601:523;1625:5;:12;1621:1;:16;1601:523;;;1659:20;1682:5;1688:1;1682:8;;;;;;;;:::i;:::-;;;;;;;1659:31;;1725:12;1709;:28;1705:408;;1862:44;;;;;;6569:19:1;;;6604:12;;;6597:28;;;6641:12;;1862:44:0;;;;;;;;;;;;1852:55;;;;;;1837:70;;1705:408;;;2052:44;;;;;;6569:19:1;;;6604:12;;;6597:28;;;6641:12;;2052:44:0;;;;;;;;;;;;2042:55;;;;;;2027:70;;1705:408;-1:-1:-1;1639:3:0;;;;:::i;:::-;;;;1601:523;;33958:382;-1:-1:-1;;;;;34038:16:0;;34030:61;;;;-1:-1:-1;;;34030:61:0;;15265:2:1;34030:61:0;;;15247:21:1;;;15284:18;;;15277:30;15343:34;15323:18;;;15316:62;15395:18;;34030:61:0;15063:356:1;34030:61:0;32045:4;32069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32069:16:0;:30;34102:58;;;;-1:-1:-1;;;34102:58:0;;11782:2:1;34102:58:0;;;11764:21:1;11821:2;11801:18;;;11794:30;11860;11840:18;;;11833:58;11908:18;;34102:58:0;11580:352:1;34102:58:0;34173:45;34202:1;34206:2;34210:7;34173:20;:45::i;:::-;-1:-1:-1;;;;;34231:13:0;;;;;;:9;:13;;;;;:18;;34248:1;;34231:13;:18;;34248:1;;34231:18;:::i;:::-;;;;-1:-1:-1;;34260:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34260:21:0;-1:-1:-1;;;;;34260:21:0;;;;;;;;34299:33;;34260:16;;;34299:33;;34260:16;;34299:33;33958:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:180::-;3958:6;4011:2;3999:9;3990:7;3986:23;3982:32;3979:52;;;4027:1;4024;4017:12;3979:52;-1:-1:-1;4050:23:1;;3899:180;-1:-1:-1;3899:180:1:o;4084:245::-;4142:6;4195:2;4183:9;4174:7;4170:23;4166:32;4163:52;;;4211:1;4208;4201:12;4163:52;4250:9;4237:23;4269:30;4293:5;4269:30;:::i;4334:249::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4504:9;4498:16;4523:30;4547:5;4523:30;:::i;4588:450::-;4657:6;4710:2;4698:9;4689:7;4685:23;4681:32;4678:52;;;4726:1;4723;4716:12;4678:52;4766:9;4753:23;4799:18;4791:6;4788:30;4785:50;;;4831:1;4828;4821:12;4785:50;4854:22;;4907:4;4899:13;;4895:27;-1:-1:-1;4885:55:1;;4936:1;4933;4926:12;4885:55;4959:73;5024:7;5019:2;5006:16;5001:2;4997;4993:11;4959:73;:::i;5228:683::-;5323:6;5331;5339;5392:2;5380:9;5371:7;5367:23;5363:32;5360:52;;;5408:1;5405;5398:12;5360:52;5444:9;5431:23;5421:33;;5505:2;5494:9;5490:18;5477:32;5528:18;5569:2;5561:6;5558:14;5555:34;;;5585:1;5582;5575:12;5555:34;5623:6;5612:9;5608:22;5598:32;;5668:7;5661:4;5657:2;5653:13;5649:27;5639:55;;5690:1;5687;5680:12;5639:55;5730:2;5717:16;5756:2;5748:6;5745:14;5742:34;;;5772:1;5769;5762:12;5742:34;5825:7;5820:2;5810:6;5807:1;5803:14;5799:2;5795:23;5791:32;5788:45;5785:65;;;5846:1;5843;5836:12;5785:65;5877:2;5873;5869:11;5859:21;;5899:6;5889:16;;;;;5228:683;;;;;:::o;5916:257::-;5957:3;5995:5;5989:12;6022:6;6017:3;6010:19;6038:63;6094:6;6087:4;6082:3;6078:14;6071:4;6064:5;6060:16;6038:63;:::i;:::-;6155:2;6134:15;-1:-1:-1;;6130:29:1;6121:39;;;;6162:4;6117:50;;5916:257;-1:-1:-1;;5916:257:1:o;6664:1527::-;6888:3;6926:6;6920:13;6952:4;6965:51;7009:6;7004:3;6999:2;6991:6;6987:15;6965:51;:::i;:::-;7079:13;;7038:16;;;;7101:55;7079:13;7038:16;7123:15;;;7101:55;:::i;:::-;7245:13;;7178:20;;;7218:1;;7305;7327:18;;;;7380;;;;7407:93;;7485:4;7475:8;7471:19;7459:31;;7407:93;7548:2;7538:8;7535:16;7515:18;7512:40;7509:167;;;-1:-1:-1;;;7575:33:1;;7631:4;7628:1;7621:15;7661:4;7582:3;7649:17;7509:167;7692:18;7719:110;;;;7843:1;7838:328;;;;7685:481;;7719:110;-1:-1:-1;;7754:24:1;;7740:39;;7799:20;;;;-1:-1:-1;7719:110:1;;7838:328;20198:1;20191:14;;;20235:4;20222:18;;7933:1;7947:169;7961:8;7958:1;7955:15;7947:169;;;8043:14;;8028:13;;;8021:37;8086:16;;;;7978:10;;7947:169;;;7951:3;;8147:8;8140:5;8136:20;8129:27;;7685:481;-1:-1:-1;8182:3:1;;6664:1527;-1:-1:-1;;;;;;;;;;;6664:1527:1:o;8614:488::-;-1:-1:-1;;;;;8883:15:1;;;8865:34;;8935:15;;8930:2;8915:18;;8908:43;8982:2;8967:18;;8960:34;;;9030:3;9025:2;9010:18;;9003:31;;;8808:4;;9051:45;;9076:19;;9068:6;9051:45;:::i;:::-;9043:53;8614:488;-1:-1:-1;;;;;;8614:488:1:o;9107:632::-;9278:2;9330:21;;;9400:13;;9303:18;;;9422:22;;;9249:4;;9278:2;9501:15;;;;9475:2;9460:18;;;9249:4;9544:169;9558:6;9555:1;9552:13;9544:169;;;9619:13;;9607:26;;9688:15;;;;9653:12;;;;9580:1;9573:9;9544:169;;;-1:-1:-1;9730:3:1;;9107:632;-1:-1:-1;;;;;;9107:632:1:o;10118:219::-;10267:2;10256:9;10249:21;10230:4;10287:44;10327:2;10316:9;10312:18;10304:6;10287:44;:::i;10754:414::-;10956:2;10938:21;;;10995:2;10975:18;;;10968:30;11034:34;11029:2;11014:18;;11007:62;-1:-1:-1;;;11100:2:1;11085:18;;11078:48;11158:3;11143:19;;10754:414::o;15837:356::-;16039:2;16021:21;;;16058:18;;;16051:30;16117:34;16112:2;16097:18;;16090:62;16184:2;16169:18;;15837:356::o;18124:413::-;18326:2;18308:21;;;18365:2;18345:18;;;18338:30;18404:34;18399:2;18384:18;;18377:62;-1:-1:-1;;;18470:2:1;18455:18;;18448:47;18527:3;18512:19;;18124:413::o;19845:275::-;19916:2;19910:9;19981:2;19962:13;;-1:-1:-1;;19958:27:1;19946:40;;20016:18;20001:34;;20037:22;;;19998:62;19995:88;;;20063:18;;:::i;:::-;20099:2;20092:22;19845:275;;-1:-1:-1;19845:275:1:o;20251:128::-;20291:3;20322:1;20318:6;20315:1;20312:13;20309:39;;;20328:18;;:::i;:::-;-1:-1:-1;20364:9:1;;20251:128::o;20384:120::-;20424:1;20450;20440:35;;20455:18;;:::i;:::-;-1:-1:-1;20489:9:1;;20384:120::o;20509:168::-;20549:7;20615:1;20611;20607:6;20603:14;20600:1;20597:21;20592:1;20585:9;20578:17;20574:45;20571:71;;;20622:18;;:::i;:::-;-1:-1:-1;20662:9:1;;20509:168::o;20682:125::-;20722:4;20750:1;20747;20744:8;20741:34;;;20755:18;;:::i;:::-;-1:-1:-1;20792:9:1;;20682:125::o;20812:258::-;20884:1;20894:113;20908:6;20905:1;20902:13;20894:113;;;20984:11;;;20978:18;20965:11;;;20958:39;20930:2;20923:10;20894:113;;;21025:6;21022:1;21019:13;21016:48;;;-1:-1:-1;;21060:1:1;21042:16;;21035:27;20812:258::o;21075:380::-;21154:1;21150:12;;;;21197;;;21218:61;;21272:4;21264:6;21260:17;21250:27;;21218:61;21325:2;21317:6;21314:14;21294:18;21291:38;21288:161;;;21371:10;21366:3;21362:20;21359:1;21352:31;21406:4;21403:1;21396:15;21434:4;21431:1;21424:15;21288:161;;21075:380;;;:::o;21460:135::-;21499:3;-1:-1:-1;;21520:17:1;;21517:43;;;21540:18;;:::i;:::-;-1:-1:-1;21587:1:1;21576:13;;21460:135::o;21600:112::-;21632:1;21658;21648:35;;21663:18;;:::i;:::-;-1:-1:-1;21697:9:1;;21600:112::o;21717:127::-;21778:10;21773:3;21769:20;21766:1;21759:31;21809:4;21806:1;21799:15;21833:4;21830:1;21823:15;21849:127;21910:10;21905:3;21901:20;21898:1;21891:31;21941:4;21938:1;21931:15;21965:4;21962:1;21955:15;21981:127;22042:10;22037:3;22033:20;22030:1;22023:31;22073:4;22070:1;22063:15;22097:4;22094:1;22087:15;22113:127;22174:10;22169:3;22165:20;22162:1;22155:31;22205:4;22202:1;22195:15;22229:4;22226:1;22219:15;22245:127;22306:10;22301:3;22297:20;22294:1;22287:31;22337:4;22334:1;22327:15;22361:4;22358:1;22351:15;22377:131;-1:-1:-1;;;;;;22451:32:1;;22441:43;;22431:71;;22498:1;22495;22488:12

Swarm Source

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