ETH Price: $3,460.60 (-1.76%)
Gas: 2 Gwei

Token

Polish2Space Golden Moments (GM)
 

Overview

Max Total Supply

567 GM

Holders

245

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
shinkohaven.eth
Balance
7 GM
0x8ADD70024a5673bE5fFdD952239Ef2Ccbd6a7152
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
GoldenMoments

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-14
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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 {
        _setApprovalForAll(_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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


// OpenZeppelin Contracts v4.4.1 (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/Polish2SpaceGoldenMoments.sol



// preparared with love by WiggleWork.eth
/**
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
─██████████████─██████████████─██████─────────██████████─██████████████─██████──██████─██████████████─██████████████─██████████████─██████████████─██████████████─██████████████─
─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░██─────────██░░░░░░██─██░░░░░░░░░░██─██░░██──██░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─
─██░░██████░░██─██░░██████░░██─██░░██─────────████░░████─██░░██████████─██░░██──██░░██─██████████░░██─██░░██████████─██░░██████░░██─██░░██████░░██─██░░██████████─██░░██████████─
─██░░██──██░░██─██░░██──██░░██─██░░██───────────██░░██───██░░██─────────██░░██──██░░██─────────██░░██─██░░██─────────██░░██──██░░██─██░░██──██░░██─██░░██─────────██░░██─────────
─██░░██████░░██─██░░██──██░░██─██░░██───────────██░░██───██░░██████████─██░░██████░░██─██████████░░██─██░░██████████─██░░██████░░██─██░░██████░░██─██░░██─────────██░░██████████─
─██░░░░░░░░░░██─██░░██──██░░██─██░░██───────────██░░██───██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░██─────────██░░░░░░░░░░██─
─██░░██████████─██░░██──██░░██─██░░██───────────██░░██───██████████░░██─██░░██████░░██─██░░██████████─██████████░░██─██░░██████████─██░░██████░░██─██░░██─────────██░░██████████─
─██░░██─────────██░░██──██░░██─██░░██───────────██░░██───────────██░░██─██░░██──██░░██─██░░██─────────────────██░░██─██░░██─────────██░░██──██░░██─██░░██─────────██░░██─────────
─██░░██─────────██░░██████░░██─██░░██████████─████░░████─██████████░░██─██░░██──██░░██─██░░██████████─██████████░░██─██░░██─────────██░░██──██░░██─██░░██████████─██░░██████████─
─██░░██─────────██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░██─██░░░░░░░░░░██─██░░██──██░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░██─────────██░░██──██░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─
─██████─────────██████████████─██████████████─██████████─██████████████─██████──██████─██████████████─██████████████─██████─────────██████──██████─██████████████─██████████████─
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
*/

pragma solidity >=0.7.0 <0.9.0;



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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = .0555 ether;
  uint256 public maxSupply = 1111;
  uint256 public maxMintAmount = 5;
  uint256 public nftPerAddressLimit = 5;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the mint is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

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

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

  function airdrop(address[] memory _users) public onlyOwner {
    uint256 supply = totalSupply();

    for(uint256 i = 1; i <= _users.length; i++) {
      _safeMint(_users[i - 1], supply + i);
    }  
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  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 reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  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 whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
  function withdraw() public payable onlyOwner {
    // This will pay WiggleWork 10% of the initial sale.
    // =============================================================================
    //(bool hs, ) = payable(0x943590A42C27D08e3744202c4Ae5eD55c2dE240D).call{value: address(this).balance * 10 / 100}("");
   // require(hs);
    // =============================================================================
    
    // This will payout the owner of the contract balance.
    // =============================================================================
    (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":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":"_users","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","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"}],"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":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"reveal","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":"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":"_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":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200020a565b5066c52cf4b908c000600e55610457600f55600560108190556011556012805462ffffff1916620100001790553480156200006257600080fd5b506040516200302938038062003029833981016040819052620000859162000367565b8351849084906200009e9060009060208501906200020a565b508051620000b49060019060208401906200020a565b505050620000d1620000cb620000f160201b60201c565b620000f5565b620000dc8262000147565b620000e781620001af565b5050505062000473565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001965760405162461bcd60e51b815260206004820181905260248201526000805160206200300983398151915260448201526064015b60405180910390fd5b8051620001ab90600b9060208401906200020a565b5050565b600a546001600160a01b03163314620001fa5760405162461bcd60e51b815260206004820181905260248201526000805160206200300983398151915260448201526064016200018d565b8051620001ab90600d9060208401905b828054620002189062000420565b90600052602060002090601f0160209004810192826200023c576000855562000287565b82601f106200025757805160ff191683800117855562000287565b8280016001018555821562000287579182015b82811115620002875782518255916020019190600101906200026a565b506200029592915062000299565b5090565b5b808211156200029557600081556001016200029a565b600082601f830112620002c257600080fd5b81516001600160401b0380821115620002df57620002df6200045d565b604051601f8301601f19908116603f011681019082821181831017156200030a576200030a6200045d565b816040528381526020925086838588010111156200032757600080fd5b600091505b838210156200034b57858201830151818301840152908201906200032c565b838211156200035d5760008385830101525b9695505050505050565b600080600080608085870312156200037e57600080fd5b84516001600160401b03808211156200039657600080fd5b620003a488838901620002b0565b95506020870151915080821115620003bb57600080fd5b620003c988838901620002b0565b94506040870151915080821115620003e057600080fd5b620003ee88838901620002b0565b935060608701519150808211156200040557600080fd5b506200041487828801620002b0565b91505092959194509250565b600181811c908216806200043557607f821691505b602082108114156200045757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612b8680620004836000396000f3fe60806040526004361061027d5760003560e01c80636c0360eb1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610742578063da3ef23f14610758578063e985e9c514610778578063edec5f27146107c1578063f2c4ce1e146107e1578063f2fde38b1461080157600080fd5b8063b88d4fde14610697578063ba4e5c49146106b7578063ba7d2c76146106d7578063c6682862146106ed578063c87b56dd14610702578063d0eb26b01461072257600080fd5b80638da5cb5b116101135780638da5cb5b146105fc57806395d89b411461061a5780639c70b5121461062f578063a0712d681461064f578063a22cb46514610662578063a475b5dd1461068257600080fd5b80636c0360eb1461057257806370a0823114610587578063715018a6146105a7578063729ad39e146105bc5780637f00c7a6146105dc57600080fd5b80632f745c59116101f357806344a0d68a116101ac57806344a0d68a146104b95780634f6ccce7146104d957806351830227146104f957806355f804b3146105185780635c975abb146105385780636352211e1461055257600080fd5b80632f745c59146104045780633af32abf146104245780633c952764146104445780633ccfd60b1461046457806342842e0e1461046c578063438b63001461048c57600080fd5b8063095ea7b311610245578063095ea7b31461034857806313faede61461036857806318160ddd1461038c57806318cae269146103a1578063239c70ae146103ce57806323b872dd146103e457600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb578063081c8c4414610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046126ab565b610821565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d2366004612690565b61084c565b005b3480156102e557600080fd5b506102ee610892565b6040516102ae91906128b8565b34801561030757600080fd5b5061031b61031636600461272e565b610924565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102ee6109b9565b34801561035457600080fd5b506102d761036336600461253d565b610a47565b34801561037457600080fd5b5061037e600e5481565b6040519081526020016102ae565b34801561039857600080fd5b5060085461037e565b3480156103ad57600080fd5b5061037e6103bc36600461240d565b60146020526000908152604090205481565b3480156103da57600080fd5b5061037e60105481565b3480156103f057600080fd5b506102d76103ff36600461245b565b610b5d565b34801561041057600080fd5b5061037e61041f36600461253d565b610b8e565b34801561043057600080fd5b506102a261043f36600461240d565b610c24565b34801561045057600080fd5b506102d761045f366004612690565b610c8e565b6102d7610cd4565b34801561047857600080fd5b506102d761048736600461245b565b610d72565b34801561049857600080fd5b506104ac6104a736600461240d565b610d8d565b6040516102ae9190612874565b3480156104c557600080fd5b506102d76104d436600461272e565b610e2f565b3480156104e557600080fd5b5061037e6104f436600461272e565b610e5e565b34801561050557600080fd5b506012546102a290610100900460ff1681565b34801561052457600080fd5b506102d76105333660046126e5565b610ef1565b34801561054457600080fd5b506012546102a29060ff1681565b34801561055e57600080fd5b5061031b61056d36600461272e565b610f32565b34801561057e57600080fd5b506102ee610fa9565b34801561059357600080fd5b5061037e6105a236600461240d565b610fb6565b3480156105b357600080fd5b506102d761103d565b3480156105c857600080fd5b506102d76105d73660046125dc565b611073565b3480156105e857600080fd5b506102d76105f736600461272e565b6110ff565b34801561060857600080fd5b50600a546001600160a01b031661031b565b34801561062657600080fd5b506102ee61112e565b34801561063b57600080fd5b506012546102a29062010000900460ff1681565b6102d761065d36600461272e565b61113d565b34801561066e57600080fd5b506102d761067d366004612513565b61141b565b34801561068e57600080fd5b506102d7611426565b3480156106a357600080fd5b506102d76106b2366004612497565b611461565b3480156106c357600080fd5b5061031b6106d236600461272e565b611499565b3480156106e357600080fd5b5061037e60115481565b3480156106f957600080fd5b506102ee6114c3565b34801561070e57600080fd5b506102ee61071d36600461272e565b6114d0565b34801561072e57600080fd5b506102d761073d36600461272e565b61164f565b34801561074e57600080fd5b5061037e600f5481565b34801561076457600080fd5b506102d76107733660046126e5565b61167e565b34801561078457600080fd5b506102a2610793366004612428565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107cd57600080fd5b506102d76107dc366004612567565b6116bb565b3480156107ed57600080fd5b506102d76107fc3660046126e5565b6116fd565b34801561080d57600080fd5b506102d761081c36600461240d565b61173a565b60006001600160e01b0319821663780e9d6360e01b14806108465750610846826117d2565b92915050565b600a546001600160a01b0316331461087f5760405162461bcd60e51b81526004016108769061291d565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108a190612a62565b80601f01602080910402602001604051908101604052809291908181526020018280546108cd90612a62565b801561091a5780601f106108ef5761010080835404028352916020019161091a565b820191906000526020600020905b8154815290600101906020018083116108fd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661099d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610876565b506000908152600460205260409020546001600160a01b031690565b600d80546109c690612a62565b80601f01602080910402602001604051908101604052809291908181526020018280546109f290612a62565b8015610a3f5780601f10610a1457610100808354040283529160200191610a3f565b820191906000526020600020905b815481529060010190602001808311610a2257829003601f168201915b505050505081565b6000610a5282610f32565b9050806001600160a01b0316836001600160a01b03161415610ac05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610876565b336001600160a01b0382161480610adc5750610adc8133610793565b610b4e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610876565b610b588383611822565b505050565b610b673382611890565b610b835760405162461bcd60e51b815260040161087690612952565b610b58838383611987565b6000610b9983610fb6565b8210610bfb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610876565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610c8557826001600160a01b031660138281548110610c4f57610c4f612b0e565b6000918252602090912001546001600160a01b03161415610c735750600192915050565b80610c7d81612a9d565b915050610c28565b50600092915050565b600a546001600160a01b03163314610cb85760405162461bcd60e51b81526004016108769061291d565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610cfe5760405162461bcd60e51b81526004016108769061291d565b6000610d12600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d5c576040519150601f19603f3d011682016040523d82523d6000602084013e610d61565b606091505b5050905080610d6f57600080fd5b50565b610b5883838360405180602001604052806000815250611461565b60606000610d9a83610fb6565b905060008167ffffffffffffffff811115610db757610db7612b24565b604051908082528060200260200182016040528015610de0578160200160208202803683370190505b50905060005b82811015610e2757610df88582610b8e565b828281518110610e0a57610e0a612b0e565b602090810291909101015280610e1f81612a9d565b915050610de6565b509392505050565b600a546001600160a01b03163314610e595760405162461bcd60e51b81526004016108769061291d565b600e55565b6000610e6960085490565b8210610ecc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610876565b60088281548110610edf57610edf612b0e565b90600052602060002001549050919050565b600a546001600160a01b03163314610f1b5760405162461bcd60e51b81526004016108769061291d565b8051610f2e90600b90602084019061227f565b5050565b6000818152600260205260408120546001600160a01b0316806108465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610876565b600b80546109c690612a62565b60006001600160a01b0382166110215760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610876565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110675760405162461bcd60e51b81526004016108769061291d565b6110716000611b2e565b565b600a546001600160a01b0316331461109d5760405162461bcd60e51b81526004016108769061291d565b60006110a860085490565b905060015b82518111610b58576110ed836110c4600184612a1f565b815181106110d4576110d4612b0e565b602002602001015182846110e891906129d4565b611b80565b806110f781612a9d565b9150506110ad565b600a546001600160a01b031633146111295760405162461bcd60e51b81526004016108769061291d565b601055565b6060600180546108a190612a62565b60125460ff16156111855760405162461bcd60e51b81526020600482015260126024820152711d1a19481b5a5b9d081a5cc81c185d5cd95960721b6044820152606401610876565b600061119060085490565b9050600082116111e25760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610876565b6010548211156112405760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610876565b600f5461124d83836129d4565b11156112945760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610876565b600a546001600160a01b031633146113d05760125462010000900460ff1615156001141561137e576112c533610c24565b6113115760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610876565b3360009081526014602052604090205460115461132e84836129d4565b111561137c5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610876565b505b81600e5461138c9190612a00565b3410156113d05760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610876565b60015b828111610b58573360009081526014602052604081208054916113f583612a9d565b909155506114099050336110e883856129d4565b8061141381612a9d565b9150506113d3565b610f2e338383611b9a565b600a546001600160a01b031633146114505760405162461bcd60e51b81526004016108769061291d565b6012805461ff001916610100179055565b61146b3383611890565b6114875760405162461bcd60e51b815260040161087690612952565b61149384848484611c69565b50505050565b601381815481106114a957600080fd5b6000918252602090912001546001600160a01b0316905081565b600c80546109c690612a62565b6000818152600260205260409020546060906001600160a01b031661154f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610876565b601254610100900460ff166115f057600d805461156b90612a62565b80601f016020809104026020016040519081016040528092919081815260200182805461159790612a62565b80156115e45780601f106115b9576101008083540402835291602001916115e4565b820191906000526020600020905b8154815290600101906020018083116115c757829003601f168201915b50505050509050919050565b60006115fa611c9c565b9050600081511161161a5760405180602001604052806000815250611648565b8061162484611cab565b600c60405160200161163893929190612773565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116795760405162461bcd60e51b81526004016108769061291d565b601155565b600a546001600160a01b031633146116a85760405162461bcd60e51b81526004016108769061291d565b8051610f2e90600c90602084019061227f565b600a546001600160a01b031633146116e55760405162461bcd60e51b81526004016108769061291d565b6116f160136000612303565b610b5860138383612321565b600a546001600160a01b031633146117275760405162461bcd60e51b81526004016108769061291d565b8051610f2e90600d90602084019061227f565b600a546001600160a01b031633146117645760405162461bcd60e51b81526004016108769061291d565b6001600160a01b0381166117c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610876565b610d6f81611b2e565b60006001600160e01b031982166380ac58cd60e01b148061180357506001600160e01b03198216635b5e139f60e01b145b8061084657506301ffc9a760e01b6001600160e01b0319831614610846565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061185782610f32565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610876565b600061191483610f32565b9050806001600160a01b0316846001600160a01b0316148061194f5750836001600160a01b031661194484610924565b6001600160a01b0316145b8061197f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661199a82610f32565b6001600160a01b0316146119fe5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610876565b6001600160a01b038216611a605760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610876565b611a6b838383611da9565b611a76600082611822565b6001600160a01b0383166000908152600360205260408120805460019290611a9f908490612a1f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611acd9084906129d4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f2e828260405180602001604052806000815250611e61565b816001600160a01b0316836001600160a01b03161415611bfc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610876565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c74848484611987565b611c8084848484611e94565b6114935760405162461bcd60e51b8152600401610876906128cb565b6060600b80546108a190612a62565b606081611ccf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cf95780611ce381612a9d565b9150611cf29050600a836129ec565b9150611cd3565b60008167ffffffffffffffff811115611d1457611d14612b24565b6040519080825280601f01601f191660200182016040528015611d3e576020820181803683370190505b5090505b841561197f57611d53600183612a1f565b9150611d60600a86612ab8565b611d6b9060306129d4565b60f81b818381518110611d8057611d80612b0e565b60200101906001600160f81b031916908160001a905350611da2600a866129ec565b9450611d42565b6001600160a01b038316611e0457611dff81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e27565b816001600160a01b0316836001600160a01b031614611e2757611e278382611fa1565b6001600160a01b038216611e3e57610b588161203e565b826001600160a01b0316826001600160a01b031614610b5857610b5882826120ed565b611e6b8383612131565b611e786000848484611e94565b610b585760405162461bcd60e51b8152600401610876906128cb565b60006001600160a01b0384163b15611f9657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ed8903390899088908890600401612837565b602060405180830381600087803b158015611ef257600080fd5b505af1925050508015611f22575060408051601f3d908101601f19168201909252611f1f918101906126c8565b60015b611f7c573d808015611f50576040519150601f19603f3d011682016040523d82523d6000602084013e611f55565b606091505b508051611f745760405162461bcd60e51b8152600401610876906128cb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061197f565b506001949350505050565b60006001611fae84610fb6565b611fb89190612a1f565b60008381526007602052604090205490915080821461200b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061205090600190612a1f565b6000838152600960205260408120546008805493945090928490811061207857612078612b0e565b90600052602060002001549050806008838154811061209957612099612b0e565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120d1576120d1612af8565b6001900381819060005260206000200160009055905550505050565b60006120f883610fb6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121875760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610876565b6000818152600260205260409020546001600160a01b0316156121ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610876565b6121f860008383611da9565b6001600160a01b03821660009081526003602052604081208054600192906122219084906129d4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461228b90612a62565b90600052602060002090601f0160209004810192826122ad57600085556122f3565b82601f106122c657805160ff19168380011785556122f3565b828001600101855582156122f3579182015b828111156122f35782518255916020019190600101906122d8565b506122ff929150612374565b5090565b5080546000825590600052602060002090810190610d6f9190612374565b8280548282559060005260206000209081019282156122f3579160200282015b828111156122f35781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612341565b5b808211156122ff5760008155600101612375565b600067ffffffffffffffff8311156123a3576123a3612b24565b6123b6601f8401601f19166020016129a3565b90508281528383830111156123ca57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146123f857600080fd5b919050565b803580151581146123f857600080fd5b60006020828403121561241f57600080fd5b611648826123e1565b6000806040838503121561243b57600080fd5b612444836123e1565b9150612452602084016123e1565b90509250929050565b60008060006060848603121561247057600080fd5b612479846123e1565b9250612487602085016123e1565b9150604084013590509250925092565b600080600080608085870312156124ad57600080fd5b6124b6856123e1565b93506124c4602086016123e1565b925060408501359150606085013567ffffffffffffffff8111156124e757600080fd5b8501601f810187136124f857600080fd5b61250787823560208401612389565b91505092959194509250565b6000806040838503121561252657600080fd5b61252f836123e1565b9150612452602084016123fd565b6000806040838503121561255057600080fd5b612559836123e1565b946020939093013593505050565b6000806020838503121561257a57600080fd5b823567ffffffffffffffff8082111561259257600080fd5b818501915085601f8301126125a657600080fd5b8135818111156125b557600080fd5b8660208260051b85010111156125ca57600080fd5b60209290920196919550909350505050565b600060208083850312156125ef57600080fd5b823567ffffffffffffffff8082111561260757600080fd5b818501915085601f83011261261b57600080fd5b81358181111561262d5761262d612b24565b8060051b915061263e8483016129a3565b8181528481019084860184860187018a101561265957600080fd5b600095505b838610156126835761266f816123e1565b83526001959095019491860191860161265e565b5098975050505050505050565b6000602082840312156126a257600080fd5b611648826123fd565b6000602082840312156126bd57600080fd5b813561164881612b3a565b6000602082840312156126da57600080fd5b815161164881612b3a565b6000602082840312156126f757600080fd5b813567ffffffffffffffff81111561270e57600080fd5b8201601f8101841361271f57600080fd5b61197f84823560208401612389565b60006020828403121561274057600080fd5b5035919050565b6000815180845261275f816020860160208601612a36565b601f01601f19169290920160200192915050565b6000845160206127868285838a01612a36565b8551918401916127998184848a01612a36565b8554920191600090600181811c90808316806127b657607f831692505b8583108114156127d457634e487b7160e01b85526022600452602485fd5b8080156127e857600181146127f957612826565b60ff19851688528388019550612826565b60008b81526020902060005b8581101561281e5781548a820152908401908801612805565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061286a90830184612747565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128ac57835183529284019291840191600101612890565b50909695505050505050565b6020815260006116486020830184612747565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156129cc576129cc612b24565b604052919050565b600082198211156129e7576129e7612acc565b500190565b6000826129fb576129fb612ae2565b500490565b6000816000190483118215151615612a1a57612a1a612acc565b500290565b600082821015612a3157612a31612acc565b500390565b60005b83811015612a51578181015183820152602001612a39565b838111156114935750506000910152565b600181811c90821680612a7657607f821691505b60208210811415612a9757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ab157612ab1612acc565b5060010190565b600082612ac757612ac7612ae2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d6f57600080fdfea2646970667358221220d703fb771ecc82b55a826feed27aa310b23d8735a7d418e5420cca2b366d16b664736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000001b506f6c69736832537061636520476f6c64656e204d6f6d656e747300000000000000000000000000000000000000000000000000000000000000000000000002474d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d526679485758686e4a6731397677777979747074414152756475524d5533456e4c6a78666f4577707a6559532f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d57643171676b4b47585a47325767616b50514c6837645037734c476873585166644c4567705559714d52376e2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636c0360eb1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610742578063da3ef23f14610758578063e985e9c514610778578063edec5f27146107c1578063f2c4ce1e146107e1578063f2fde38b1461080157600080fd5b8063b88d4fde14610697578063ba4e5c49146106b7578063ba7d2c76146106d7578063c6682862146106ed578063c87b56dd14610702578063d0eb26b01461072257600080fd5b80638da5cb5b116101135780638da5cb5b146105fc57806395d89b411461061a5780639c70b5121461062f578063a0712d681461064f578063a22cb46514610662578063a475b5dd1461068257600080fd5b80636c0360eb1461057257806370a0823114610587578063715018a6146105a7578063729ad39e146105bc5780637f00c7a6146105dc57600080fd5b80632f745c59116101f357806344a0d68a116101ac57806344a0d68a146104b95780634f6ccce7146104d957806351830227146104f957806355f804b3146105185780635c975abb146105385780636352211e1461055257600080fd5b80632f745c59146104045780633af32abf146104245780633c952764146104445780633ccfd60b1461046457806342842e0e1461046c578063438b63001461048c57600080fd5b8063095ea7b311610245578063095ea7b31461034857806313faede61461036857806318160ddd1461038c57806318cae269146103a1578063239c70ae146103ce57806323b872dd146103e457600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb578063081c8c4414610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046126ab565b610821565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d2366004612690565b61084c565b005b3480156102e557600080fd5b506102ee610892565b6040516102ae91906128b8565b34801561030757600080fd5b5061031b61031636600461272e565b610924565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102ee6109b9565b34801561035457600080fd5b506102d761036336600461253d565b610a47565b34801561037457600080fd5b5061037e600e5481565b6040519081526020016102ae565b34801561039857600080fd5b5060085461037e565b3480156103ad57600080fd5b5061037e6103bc36600461240d565b60146020526000908152604090205481565b3480156103da57600080fd5b5061037e60105481565b3480156103f057600080fd5b506102d76103ff36600461245b565b610b5d565b34801561041057600080fd5b5061037e61041f36600461253d565b610b8e565b34801561043057600080fd5b506102a261043f36600461240d565b610c24565b34801561045057600080fd5b506102d761045f366004612690565b610c8e565b6102d7610cd4565b34801561047857600080fd5b506102d761048736600461245b565b610d72565b34801561049857600080fd5b506104ac6104a736600461240d565b610d8d565b6040516102ae9190612874565b3480156104c557600080fd5b506102d76104d436600461272e565b610e2f565b3480156104e557600080fd5b5061037e6104f436600461272e565b610e5e565b34801561050557600080fd5b506012546102a290610100900460ff1681565b34801561052457600080fd5b506102d76105333660046126e5565b610ef1565b34801561054457600080fd5b506012546102a29060ff1681565b34801561055e57600080fd5b5061031b61056d36600461272e565b610f32565b34801561057e57600080fd5b506102ee610fa9565b34801561059357600080fd5b5061037e6105a236600461240d565b610fb6565b3480156105b357600080fd5b506102d761103d565b3480156105c857600080fd5b506102d76105d73660046125dc565b611073565b3480156105e857600080fd5b506102d76105f736600461272e565b6110ff565b34801561060857600080fd5b50600a546001600160a01b031661031b565b34801561062657600080fd5b506102ee61112e565b34801561063b57600080fd5b506012546102a29062010000900460ff1681565b6102d761065d36600461272e565b61113d565b34801561066e57600080fd5b506102d761067d366004612513565b61141b565b34801561068e57600080fd5b506102d7611426565b3480156106a357600080fd5b506102d76106b2366004612497565b611461565b3480156106c357600080fd5b5061031b6106d236600461272e565b611499565b3480156106e357600080fd5b5061037e60115481565b3480156106f957600080fd5b506102ee6114c3565b34801561070e57600080fd5b506102ee61071d36600461272e565b6114d0565b34801561072e57600080fd5b506102d761073d36600461272e565b61164f565b34801561074e57600080fd5b5061037e600f5481565b34801561076457600080fd5b506102d76107733660046126e5565b61167e565b34801561078457600080fd5b506102a2610793366004612428565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107cd57600080fd5b506102d76107dc366004612567565b6116bb565b3480156107ed57600080fd5b506102d76107fc3660046126e5565b6116fd565b34801561080d57600080fd5b506102d761081c36600461240d565b61173a565b60006001600160e01b0319821663780e9d6360e01b14806108465750610846826117d2565b92915050565b600a546001600160a01b0316331461087f5760405162461bcd60e51b81526004016108769061291d565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108a190612a62565b80601f01602080910402602001604051908101604052809291908181526020018280546108cd90612a62565b801561091a5780601f106108ef5761010080835404028352916020019161091a565b820191906000526020600020905b8154815290600101906020018083116108fd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661099d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610876565b506000908152600460205260409020546001600160a01b031690565b600d80546109c690612a62565b80601f01602080910402602001604051908101604052809291908181526020018280546109f290612a62565b8015610a3f5780601f10610a1457610100808354040283529160200191610a3f565b820191906000526020600020905b815481529060010190602001808311610a2257829003601f168201915b505050505081565b6000610a5282610f32565b9050806001600160a01b0316836001600160a01b03161415610ac05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610876565b336001600160a01b0382161480610adc5750610adc8133610793565b610b4e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610876565b610b588383611822565b505050565b610b673382611890565b610b835760405162461bcd60e51b815260040161087690612952565b610b58838383611987565b6000610b9983610fb6565b8210610bfb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610876565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610c8557826001600160a01b031660138281548110610c4f57610c4f612b0e565b6000918252602090912001546001600160a01b03161415610c735750600192915050565b80610c7d81612a9d565b915050610c28565b50600092915050565b600a546001600160a01b03163314610cb85760405162461bcd60e51b81526004016108769061291d565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610cfe5760405162461bcd60e51b81526004016108769061291d565b6000610d12600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d5c576040519150601f19603f3d011682016040523d82523d6000602084013e610d61565b606091505b5050905080610d6f57600080fd5b50565b610b5883838360405180602001604052806000815250611461565b60606000610d9a83610fb6565b905060008167ffffffffffffffff811115610db757610db7612b24565b604051908082528060200260200182016040528015610de0578160200160208202803683370190505b50905060005b82811015610e2757610df88582610b8e565b828281518110610e0a57610e0a612b0e565b602090810291909101015280610e1f81612a9d565b915050610de6565b509392505050565b600a546001600160a01b03163314610e595760405162461bcd60e51b81526004016108769061291d565b600e55565b6000610e6960085490565b8210610ecc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610876565b60088281548110610edf57610edf612b0e565b90600052602060002001549050919050565b600a546001600160a01b03163314610f1b5760405162461bcd60e51b81526004016108769061291d565b8051610f2e90600b90602084019061227f565b5050565b6000818152600260205260408120546001600160a01b0316806108465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610876565b600b80546109c690612a62565b60006001600160a01b0382166110215760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610876565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110675760405162461bcd60e51b81526004016108769061291d565b6110716000611b2e565b565b600a546001600160a01b0316331461109d5760405162461bcd60e51b81526004016108769061291d565b60006110a860085490565b905060015b82518111610b58576110ed836110c4600184612a1f565b815181106110d4576110d4612b0e565b602002602001015182846110e891906129d4565b611b80565b806110f781612a9d565b9150506110ad565b600a546001600160a01b031633146111295760405162461bcd60e51b81526004016108769061291d565b601055565b6060600180546108a190612a62565b60125460ff16156111855760405162461bcd60e51b81526020600482015260126024820152711d1a19481b5a5b9d081a5cc81c185d5cd95960721b6044820152606401610876565b600061119060085490565b9050600082116111e25760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610876565b6010548211156112405760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610876565b600f5461124d83836129d4565b11156112945760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610876565b600a546001600160a01b031633146113d05760125462010000900460ff1615156001141561137e576112c533610c24565b6113115760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610876565b3360009081526014602052604090205460115461132e84836129d4565b111561137c5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610876565b505b81600e5461138c9190612a00565b3410156113d05760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610876565b60015b828111610b58573360009081526014602052604081208054916113f583612a9d565b909155506114099050336110e883856129d4565b8061141381612a9d565b9150506113d3565b610f2e338383611b9a565b600a546001600160a01b031633146114505760405162461bcd60e51b81526004016108769061291d565b6012805461ff001916610100179055565b61146b3383611890565b6114875760405162461bcd60e51b815260040161087690612952565b61149384848484611c69565b50505050565b601381815481106114a957600080fd5b6000918252602090912001546001600160a01b0316905081565b600c80546109c690612a62565b6000818152600260205260409020546060906001600160a01b031661154f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610876565b601254610100900460ff166115f057600d805461156b90612a62565b80601f016020809104026020016040519081016040528092919081815260200182805461159790612a62565b80156115e45780601f106115b9576101008083540402835291602001916115e4565b820191906000526020600020905b8154815290600101906020018083116115c757829003601f168201915b50505050509050919050565b60006115fa611c9c565b9050600081511161161a5760405180602001604052806000815250611648565b8061162484611cab565b600c60405160200161163893929190612773565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116795760405162461bcd60e51b81526004016108769061291d565b601155565b600a546001600160a01b031633146116a85760405162461bcd60e51b81526004016108769061291d565b8051610f2e90600c90602084019061227f565b600a546001600160a01b031633146116e55760405162461bcd60e51b81526004016108769061291d565b6116f160136000612303565b610b5860138383612321565b600a546001600160a01b031633146117275760405162461bcd60e51b81526004016108769061291d565b8051610f2e90600d90602084019061227f565b600a546001600160a01b031633146117645760405162461bcd60e51b81526004016108769061291d565b6001600160a01b0381166117c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610876565b610d6f81611b2e565b60006001600160e01b031982166380ac58cd60e01b148061180357506001600160e01b03198216635b5e139f60e01b145b8061084657506301ffc9a760e01b6001600160e01b0319831614610846565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061185782610f32565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610876565b600061191483610f32565b9050806001600160a01b0316846001600160a01b0316148061194f5750836001600160a01b031661194484610924565b6001600160a01b0316145b8061197f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661199a82610f32565b6001600160a01b0316146119fe5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610876565b6001600160a01b038216611a605760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610876565b611a6b838383611da9565b611a76600082611822565b6001600160a01b0383166000908152600360205260408120805460019290611a9f908490612a1f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611acd9084906129d4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f2e828260405180602001604052806000815250611e61565b816001600160a01b0316836001600160a01b03161415611bfc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610876565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c74848484611987565b611c8084848484611e94565b6114935760405162461bcd60e51b8152600401610876906128cb565b6060600b80546108a190612a62565b606081611ccf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cf95780611ce381612a9d565b9150611cf29050600a836129ec565b9150611cd3565b60008167ffffffffffffffff811115611d1457611d14612b24565b6040519080825280601f01601f191660200182016040528015611d3e576020820181803683370190505b5090505b841561197f57611d53600183612a1f565b9150611d60600a86612ab8565b611d6b9060306129d4565b60f81b818381518110611d8057611d80612b0e565b60200101906001600160f81b031916908160001a905350611da2600a866129ec565b9450611d42565b6001600160a01b038316611e0457611dff81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e27565b816001600160a01b0316836001600160a01b031614611e2757611e278382611fa1565b6001600160a01b038216611e3e57610b588161203e565b826001600160a01b0316826001600160a01b031614610b5857610b5882826120ed565b611e6b8383612131565b611e786000848484611e94565b610b585760405162461bcd60e51b8152600401610876906128cb565b60006001600160a01b0384163b15611f9657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ed8903390899088908890600401612837565b602060405180830381600087803b158015611ef257600080fd5b505af1925050508015611f22575060408051601f3d908101601f19168201909252611f1f918101906126c8565b60015b611f7c573d808015611f50576040519150601f19603f3d011682016040523d82523d6000602084013e611f55565b606091505b508051611f745760405162461bcd60e51b8152600401610876906128cb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061197f565b506001949350505050565b60006001611fae84610fb6565b611fb89190612a1f565b60008381526007602052604090205490915080821461200b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061205090600190612a1f565b6000838152600960205260408120546008805493945090928490811061207857612078612b0e565b90600052602060002001549050806008838154811061209957612099612b0e565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120d1576120d1612af8565b6001900381819060005260206000200160009055905550505050565b60006120f883610fb6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121875760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610876565b6000818152600260205260409020546001600160a01b0316156121ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610876565b6121f860008383611da9565b6001600160a01b03821660009081526003602052604081208054600192906122219084906129d4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461228b90612a62565b90600052602060002090601f0160209004810192826122ad57600085556122f3565b82601f106122c657805160ff19168380011785556122f3565b828001600101855582156122f3579182015b828111156122f35782518255916020019190600101906122d8565b506122ff929150612374565b5090565b5080546000825590600052602060002090810190610d6f9190612374565b8280548282559060005260206000209081019282156122f3579160200282015b828111156122f35781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612341565b5b808211156122ff5760008155600101612375565b600067ffffffffffffffff8311156123a3576123a3612b24565b6123b6601f8401601f19166020016129a3565b90508281528383830111156123ca57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146123f857600080fd5b919050565b803580151581146123f857600080fd5b60006020828403121561241f57600080fd5b611648826123e1565b6000806040838503121561243b57600080fd5b612444836123e1565b9150612452602084016123e1565b90509250929050565b60008060006060848603121561247057600080fd5b612479846123e1565b9250612487602085016123e1565b9150604084013590509250925092565b600080600080608085870312156124ad57600080fd5b6124b6856123e1565b93506124c4602086016123e1565b925060408501359150606085013567ffffffffffffffff8111156124e757600080fd5b8501601f810187136124f857600080fd5b61250787823560208401612389565b91505092959194509250565b6000806040838503121561252657600080fd5b61252f836123e1565b9150612452602084016123fd565b6000806040838503121561255057600080fd5b612559836123e1565b946020939093013593505050565b6000806020838503121561257a57600080fd5b823567ffffffffffffffff8082111561259257600080fd5b818501915085601f8301126125a657600080fd5b8135818111156125b557600080fd5b8660208260051b85010111156125ca57600080fd5b60209290920196919550909350505050565b600060208083850312156125ef57600080fd5b823567ffffffffffffffff8082111561260757600080fd5b818501915085601f83011261261b57600080fd5b81358181111561262d5761262d612b24565b8060051b915061263e8483016129a3565b8181528481019084860184860187018a101561265957600080fd5b600095505b838610156126835761266f816123e1565b83526001959095019491860191860161265e565b5098975050505050505050565b6000602082840312156126a257600080fd5b611648826123fd565b6000602082840312156126bd57600080fd5b813561164881612b3a565b6000602082840312156126da57600080fd5b815161164881612b3a565b6000602082840312156126f757600080fd5b813567ffffffffffffffff81111561270e57600080fd5b8201601f8101841361271f57600080fd5b61197f84823560208401612389565b60006020828403121561274057600080fd5b5035919050565b6000815180845261275f816020860160208601612a36565b601f01601f19169290920160200192915050565b6000845160206127868285838a01612a36565b8551918401916127998184848a01612a36565b8554920191600090600181811c90808316806127b657607f831692505b8583108114156127d457634e487b7160e01b85526022600452602485fd5b8080156127e857600181146127f957612826565b60ff19851688528388019550612826565b60008b81526020902060005b8581101561281e5781548a820152908401908801612805565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061286a90830184612747565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128ac57835183529284019291840191600101612890565b50909695505050505050565b6020815260006116486020830184612747565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156129cc576129cc612b24565b604052919050565b600082198211156129e7576129e7612acc565b500190565b6000826129fb576129fb612ae2565b500490565b6000816000190483118215151615612a1a57612a1a612acc565b500290565b600082821015612a3157612a31612acc565b500390565b60005b83811015612a51578181015183820152602001612a39565b838111156114935750506000910152565b600181811c90821680612a7657607f821691505b60208210811415612a9757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ab157612ab1612acc565b5060010190565b600082612ac757612ac7612ae2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d6f57600080fdfea2646970667358221220d703fb771ecc82b55a826feed27aa310b23d8735a7d418e5420cca2b366d16b664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000001b506f6c69736832537061636520476f6c64656e204d6f6d656e747300000000000000000000000000000000000000000000000000000000000000000000000002474d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d526679485758686e4a6731397677777979747074414152756475524d5533456e4c6a78666f4577707a6559532f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d57643171676b4b47585a47325767616b50514c6837645037734c476873585166644c4567705559714d52376e2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Polish2Space Golden Moments
Arg [1] : _symbol (string): GM
Arg [2] : _initBaseURI (string): ipfs://QmRfyHWXhnJg19vwwyytptAARuduRMU3EnLjxfoEwpzeYS/
Arg [3] : _initNotRevealedUri (string): ipfs://QmWd1qgkKGXZG2WgakPQLh7dP7sLGhsXQfdLEgpUYqMR7n/hidden.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [5] : 506f6c69736832537061636520476f6c64656e204d6f6d656e74730000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 474d000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d526679485758686e4a6731397677777979747074414152
Arg [10] : 756475524d5533456e4c6a78666f4577707a6559532f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [12] : 697066733a2f2f516d57643171676b4b47585a47325767616b50514c68376450
Arg [13] : 37734c476873585166644c4567705559714d52376e2f68696464656e2e6a736f
Arg [14] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

52540:5057:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39314:224;;;;;;;;;;-1:-1:-1;39314:224:0;;;;;:::i;:::-;;:::i;:::-;;;9170:14:1;;9163:22;9145:41;;9133:2;9118:18;39314:224:0;;;;;;;;56502:73;;;;;;;;;;-1:-1:-1;56502:73:0;;;;;:::i;:::-;;:::i;:::-;;26134:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27693:221::-;;;;;;;;;;-1:-1:-1;27693:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7831:32:1;;;7813:51;;7801:2;7786:18;27693:221:0;7667:203:1;52697:28:0;;;;;;;;;;;;;:::i;27216:411::-;;;;;;;;;;-1:-1:-1;27216:411:0;;;;;:::i;:::-;;:::i;52730:33::-;;;;;;;;;;;;;;;;;;;19285:25:1;;;19273:2;19258:18;52730:33:0;19139:177:1;39954:113:0;;;;;;;;;;-1:-1:-1;40042:10:0;:17;39954:113;;53028:55;;;;;;;;;;-1:-1:-1;53028:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;52804:32;;;;;;;;;;;;;;;;28443:339;;;;;;;;;;-1:-1:-1;28443:339:0;;;;;:::i;:::-;;:::i;39622:256::-;;;;;;;;;;-1:-1:-1;39622:256:0;;;;;:::i;:::-;;:::i;54631:239::-;;;;;;;;;;-1:-1:-1;54631:239:0;;;;;:::i;:::-;;:::i;56583:95::-;;;;;;;;;;-1:-1:-1;56583:95:0;;;;;:::i;:::-;;:::i;56837:757::-;;;:::i;28853:185::-;;;;;;;;;;-1:-1:-1;28853:185:0;;;;;:::i;:::-;;:::i;54876:348::-;;;;;;;;;;-1:-1:-1;54876:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;55934:80::-;;;;;;;;;;-1:-1:-1;55934:80:0;;;;;:::i;:::-;;:::i;40144:233::-;;;;;;;;;;-1:-1:-1;40144:233:0;;;;;:::i;:::-;;:::i;52914:28::-;;;;;;;;;;-1:-1:-1;52914:28:0;;;;;;;;;;;56142:98;;;;;;;;;;-1:-1:-1;56142:98:0;;;;;:::i;:::-;;:::i;52883:26::-;;;;;;;;;;-1:-1:-1;52883:26:0;;;;;;;;25828:239;;;;;;;;;;-1:-1:-1;25828:239:0;;;;;:::i;:::-;;:::i;52629:21::-;;;;;;;;;;;;;:::i;25558:208::-;;;;;;;;;;-1:-1:-1;25558:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;54414:209::-;;;;;;;;;;-1:-1:-1;54414:209:0;;;;;:::i;:::-;;:::i;56020:116::-;;;;;;;;;;-1:-1:-1;56020:116:0;;;;;:::i;:::-;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;26303:104;;;;;;;;;;;;;:::i;52947:34::-;;;;;;;;;;-1:-1:-1;52947:34:0;;;;;;;;;;;53481:927;;;;;;:::i;:::-;;:::i;27986:155::-;;;;;;;;;;-1:-1:-1;27986:155:0;;;;;:::i;:::-;;:::i;55749:65::-;;;;;;;;;;;;;:::i;29109:328::-;;;;;;;;;;-1:-1:-1;29109:328:0;;;;;:::i;:::-;;:::i;52986:37::-;;;;;;;;;;-1:-1:-1;52986:37:0;;;;;:::i;:::-;;:::i;52841:::-;;;;;;;;;;;;;;;;52655;;;;;;;;;;;;;:::i;55230:497::-;;;;;;;;;;-1:-1:-1;55230:497:0;;;;;:::i;:::-;;:::i;55822:104::-;;;;;;;;;;-1:-1:-1;55822:104:0;;;;;:::i;:::-;;:::i;52768:31::-;;;;;;;;;;;;;;;;56246:122;;;;;;;;;;-1:-1:-1;56246:122:0;;;;;:::i;:::-;;:::i;28212:164::-;;;;;;;;;;-1:-1:-1;28212:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28333:25:0;;;28309:4;28333:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28212:164;56686:144;;;;;;;;;;-1:-1:-1;56686:144:0;;;;;:::i;:::-;;:::i;56376:120::-;;;;;;;;;;-1:-1:-1;56376:120:0;;;;;:::i;:::-;;:::i;4988:201::-;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;39314:224::-;39416:4;-1:-1:-1;;;;;;39440:50:0;;-1:-1:-1;;;39440:50:0;;:90;;;39494:36;39518:11;39494:23;:36::i;:::-;39433:97;39314:224;-1:-1:-1;;39314:224:0:o;56502:73::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;56554:6:::1;:15:::0;;-1:-1:-1;;56554:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56502:73::o;26134:100::-;26188:13;26221:5;26214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26134:100;:::o;27693:221::-;27769:7;31036:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31036:16:0;27789:73;;;;-1:-1:-1;;;27789:73:0;;15516:2:1;27789:73:0;;;15498:21:1;15555:2;15535:18;;;15528:30;15594:34;15574:18;;;15567:62;-1:-1:-1;;;15645:18:1;;;15638:42;15697:19;;27789:73:0;15314:408:1;27789:73:0;-1:-1:-1;27882:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27882:24:0;;27693:221::o;52697:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27216:411::-;27297:13;27313:23;27328:7;27313:14;:23::i;:::-;27297:39;;27361:5;-1:-1:-1;;;;;27355:11:0;:2;-1:-1:-1;;;;;27355:11:0;;;27347:57;;;;-1:-1:-1;;;27347:57:0;;16706:2:1;27347:57:0;;;16688:21:1;16745:2;16725:18;;;16718:30;16784:34;16764:18;;;16757:62;-1:-1:-1;;;16835:18:1;;;16828:31;16876:19;;27347:57:0;16504:397:1;27347:57:0;2883:10;-1:-1:-1;;;;;27439:21:0;;;;:62;;-1:-1:-1;27464:37:0;27481:5;2883:10;28212:164;:::i;27464:37::-;27417:168;;;;-1:-1:-1;;;27417:168:0;;13153:2:1;27417:168:0;;;13135:21:1;13192:2;13172:18;;;13165:30;13231:34;13211:18;;;13204:62;13302:26;13282:18;;;13275:54;13346:19;;27417:168:0;12951:420:1;27417:168:0;27598:21;27607:2;27611:7;27598:8;:21::i;:::-;27286:341;27216:411;;:::o;28443:339::-;28638:41;2883:10;28671:7;28638:18;:41::i;:::-;28630:103;;;;-1:-1:-1;;;28630:103:0;;;;;;;:::i;:::-;28746:28;28756:4;28762:2;28766:7;28746:9;:28::i;39622:256::-;39719:7;39755:23;39772:5;39755:16;:23::i;:::-;39747:5;:31;39739:87;;;;-1:-1:-1;;;39739:87:0;;9623:2:1;39739:87:0;;;9605:21:1;9662:2;9642:18;;;9635:30;9701:34;9681:18;;;9674:62;-1:-1:-1;;;9752:18:1;;;9745:41;9803:19;;39739:87:0;9421:407:1;39739:87:0;-1:-1:-1;;;;;;39844:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39622:256::o;54631:239::-;54690:4;;54703:143;54724:20;:27;54720:31;;54703:143;;;54798:5;-1:-1:-1;;;;;54771:32:0;:20;54792:1;54771:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;54771:23:0;:32;54767:72;;;-1:-1:-1;54825:4:0;;54631:239;-1:-1:-1;;54631:239:0:o;54767:72::-;54753:3;;;;:::i;:::-;;;;54703:143;;;-1:-1:-1;54859:5:0;;54631:239;-1:-1:-1;;54631:239:0:o;56583:95::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;56648:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;56648:24:0;;::::1;::::0;;;::::1;::::0;;56583:95::o;56837:757::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;57416:7:::1;57437;4152:6:::0;;-1:-1:-1;;;;;4152:6:0;;4079:87;57437:7:::1;-1:-1:-1::0;;;;;57429:21:0::1;57458;57429:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57415:69;;;57499:2;57491:11;;;::::0;::::1;;56882:712;56837:757::o:0;28853:185::-;28991:39;29008:4;29014:2;29018:7;28991:39;;;;;;;;;;;;:16;:39::i;54876:348::-;54951:16;54979:23;55005:17;55015:6;55005:9;:17::i;:::-;54979:43;;55029:25;55071:15;55057:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55057:30:0;;55029:58;;55099:9;55094:103;55114:15;55110:1;:19;55094:103;;;55159:30;55179:6;55187:1;55159:19;:30::i;:::-;55145:8;55154:1;55145:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;55131:3;;;;:::i;:::-;;;;55094:103;;;-1:-1:-1;55210:8:0;54876:348;-1:-1:-1;;;54876:348:0:o;55934:80::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;55993:4:::1;:15:::0;55934:80::o;40144:233::-;40219:7;40255:30;40042:10;:17;;39954:113;40255:30;40247:5;:38;40239:95;;;;-1:-1:-1;;;40239:95:0;;18220:2:1;40239:95:0;;;18202:21:1;18259:2;18239:18;;;18232:30;18298:34;18278:18;;;18271:62;-1:-1:-1;;;18349:18:1;;;18342:42;18401:19;;40239:95:0;18018:408:1;40239:95:0;40352:10;40363:5;40352:17;;;;;;;;:::i;:::-;;;;;;;;;40345:24;;40144:233;;;:::o;56142:98::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;56213:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56142:98:::0;:::o;25828:239::-;25900:7;25936:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25936:16:0;25971:19;25963:73;;;;-1:-1:-1;;;25963:73:0;;13989:2:1;25963:73:0;;;13971:21:1;14028:2;14008:18;;;14001:30;14067:34;14047:18;;;14040:62;-1:-1:-1;;;14118:18:1;;;14111:39;14167:19;;25963:73:0;13787:405:1;52629:21:0;;;;;;;:::i;25558:208::-;25630:7;-1:-1:-1;;;;;25658:19:0;;25650:74;;;;-1:-1:-1;;;25650:74:0;;13578:2:1;25650:74:0;;;13560:21:1;13617:2;13597:18;;;13590:30;13656:34;13636:18;;;13629:62;-1:-1:-1;;;13707:18:1;;;13700:40;13757:19;;25650:74:0;13376:406:1;25650:74:0;-1:-1:-1;;;;;;25742:16:0;;;;;:9;:16;;;;;;;25558:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;54414:209::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;54480:14:::1;54497:13;40042:10:::0;:17;;39954:113;54497:13:::1;54480:30:::0;-1:-1:-1;54535:1:0::1;54519:97;54543:6;:13;54538:1;:18;54519:97;;54572:36;54582:6:::0;54589:5:::1;54593:1;54589::::0;:5:::1;:::i;:::-;54582:13;;;;;;;;:::i;:::-;;;;;;;54606:1;54597:6;:10;;;;:::i;:::-;54572:9;:36::i;:::-;54558:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54519:97;;56020:116:::0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;56097:13:::1;:33:::0;56020:116::o;26303:104::-;26359:13;26392:7;26385:14;;;;;:::i;53481:927::-;53547:6;;;;53546:7;53538:38;;;;-1:-1:-1;;;53538:38:0;;17108:2:1;53538:38:0;;;17090:21:1;17147:2;17127:18;;;17120:30;-1:-1:-1;;;17166:18:1;;;17159:48;17224:18;;53538:38:0;16906:342:1;53538:38:0;53583:14;53600:13;40042:10;:17;;39954:113;53600:13;53583:30;;53642:1;53628:11;:15;53620:55;;;;-1:-1:-1;;;53620:55:0;;18985:2:1;53620:55:0;;;18967:21:1;19024:2;19004:18;;;18997:30;19063:29;19043:18;;;19036:57;19110:18;;53620:55:0;18783:351:1;53620:55:0;53705:13;;53690:11;:28;;53682:77;;;;-1:-1:-1;;;53682:77:0;;14750:2:1;53682:77:0;;;14732:21:1;14789:2;14769:18;;;14762:30;14828:34;14808:18;;;14801:62;-1:-1:-1;;;14879:18:1;;;14872:34;14923:19;;53682:77:0;14548:400:1;53682:77:0;53798:9;;53774:20;53783:11;53774:6;:20;:::i;:::-;:33;;53766:68;;;;-1:-1:-1;;;53766:68:0;;14399:2:1;53766:68:0;;;14381:21:1;14438:2;14418:18;;;14411:30;-1:-1:-1;;;14457:18:1;;;14450:52;14519:18;;53766:68:0;14197:346:1;53766:68:0;4152:6;;-1:-1:-1;;;;;4152:6:0;53847:10;:21;53843:416;;53884:15;;;;;;;:23;;53903:4;53884:23;53881:298;;;53932:25;53946:10;53932:13;:25::i;:::-;53924:61;;;;-1:-1:-1;;;53924:61:0;;18633:2:1;53924:61:0;;;18615:21:1;18672:2;18652:18;;;18645:30;18711:25;18691:18;;;18684:53;18754:18;;53924:61:0;18431:347:1;53924:61:0;54048:10;54000:24;54027:32;;;:20;:32;;;;;;54116:18;;54082:30;54101:11;54027:32;54082:30;:::i;:::-;:52;;54074:93;;;;-1:-1:-1;;;54074:93:0;;11624:2:1;54074:93:0;;;11606:21:1;11663:2;11643:18;;;11636:30;11702;11682:18;;;11675:58;11750:18;;54074:93:0;11422:352:1;54074:93:0;53909:270;53881:298;54217:11;54210:4;;:18;;;;:::i;:::-;54197:9;:31;;54189:62;;;;-1:-1:-1;;;54189:62:0;;17455:2:1;54189:62:0;;;17437:21:1;17494:2;17474:18;;;17467:30;-1:-1:-1;;;17513:18:1;;;17506:48;17571:18;;54189:62:0;17253:342:1;54189:62:0;54284:1;54267:136;54292:11;54287:1;:16;54267:136;;54340:10;54319:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;54362:33:0;;-1:-1:-1;54372:10:0;54384;54393:1;54384:6;:10;:::i;54362:33::-;54305:3;;;;:::i;:::-;;;;54267:136;;27986:155;28081:52;2883:10;28114:8;28124;28081:18;:52::i;55749:65::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;55793:8:::1;:15:::0;;-1:-1:-1;;55793:15:0::1;;;::::0;;55749:65::o;29109:328::-;29284:41;2883:10;29317:7;29284:18;:41::i;:::-;29276:103;;;;-1:-1:-1;;;29276:103:0;;;;;;;:::i;:::-;29390:39;29404:4;29410:2;29414:7;29423:5;29390:13;:39::i;:::-;29109:328;;;;:::o;52986:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52986:37:0;;-1:-1:-1;52986:37:0;:::o;52655:::-;;;;;;;:::i;55230:497::-;31012:4;31036:16;;;:7;:16;;;;;;55328:13;;-1:-1:-1;;;;;31036:16:0;55353:97;;;;-1:-1:-1;;;55353:97:0;;16290:2:1;55353:97:0;;;16272:21:1;16329:2;16309:18;;;16302:30;16368:34;16348:18;;;16341:62;-1:-1:-1;;;16419:18:1;;;16412:45;16474:19;;55353:97:0;16088:411:1;55353:97:0;55466:8;;;;;;;55463:62;;55503:14;55496:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55230:497;;;:::o;55463:62::-;55533:28;55564:10;:8;:10::i;:::-;55533:41;;55619:1;55594:14;55588:28;:32;:133;;;;;;;;;;;;;;;;;55656:14;55672:18;:7;:16;:18::i;:::-;55692:13;55639:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55588:133;55581:140;55230:497;-1:-1:-1;;;55230:497:0:o;55822:104::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;55893:18:::1;:27:::0;55822:104::o;56246:122::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;56329:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;56686:144::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;56761:27:::1;56768:20;;56761:27;:::i;:::-;56795:29;:20;56818:6:::0;;56795:29:::1;:::i;56376:120::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;56458:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;4988:201::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;10454:2:1;5069:73:0::1;::::0;::::1;10436:21:1::0;10493:2;10473:18;;;10466:30;10532:34;10512:18;;;10505:62;-1:-1:-1;;;10583:18:1;;;10576:36;10629:19;;5069:73:0::1;10252:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;25189:305::-:0;25291:4;-1:-1:-1;;;;;;25328:40:0;;-1:-1:-1;;;25328:40:0;;:105;;-1:-1:-1;;;;;;;25385:48:0;;-1:-1:-1;;;25385:48:0;25328:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;25450:36;16863:157;35093:174;35168:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35168:29:0;-1:-1:-1;;;;;35168:29:0;;;;;;;;:24;;35222:23;35168:24;35222:14;:23::i;:::-;-1:-1:-1;;;;;35213:46:0;;;;;;;;;;;35093:174;;:::o;31241:348::-;31334:4;31036:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31036:16:0;31351:73;;;;-1:-1:-1;;;31351:73:0;;12740:2:1;31351:73:0;;;12722:21:1;12779:2;12759:18;;;12752:30;12818:34;12798:18;;;12791:62;-1:-1:-1;;;12869:18:1;;;12862:42;12921:19;;31351:73:0;12538:408:1;31351:73:0;31435:13;31451:23;31466:7;31451:14;:23::i;:::-;31435:39;;31504:5;-1:-1:-1;;;;;31493:16:0;:7;-1:-1:-1;;;;;31493:16:0;;:51;;;;31537:7;-1:-1:-1;;;;;31513:31:0;:20;31525:7;31513:11;:20::i;:::-;-1:-1:-1;;;;;31513:31:0;;31493:51;:87;;;-1:-1:-1;;;;;;28333:25:0;;;28309:4;28333:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31548:32;31485:96;31241:348;-1:-1:-1;;;;31241:348:0:o;34350:625::-;34509:4;-1:-1:-1;;;;;34482:31:0;:23;34497:7;34482:14;:23::i;:::-;-1:-1:-1;;;;;34482:31:0;;34474:81;;;;-1:-1:-1;;;34474:81:0;;10861:2:1;34474:81:0;;;10843:21:1;10900:2;10880:18;;;10873:30;10939:34;10919:18;;;10912:62;-1:-1:-1;;;10990:18:1;;;10983:35;11035:19;;34474:81:0;10659:401:1;34474:81:0;-1:-1:-1;;;;;34574:16:0;;34566:65;;;;-1:-1:-1;;;34566:65:0;;11981:2:1;34566:65:0;;;11963:21:1;12020:2;12000:18;;;11993:30;12059:34;12039:18;;;12032:62;-1:-1:-1;;;12110:18:1;;;12103:34;12154:19;;34566:65:0;11779:400:1;34566:65:0;34644:39;34665:4;34671:2;34675:7;34644:20;:39::i;:::-;34748:29;34765:1;34769:7;34748:8;:29::i;:::-;-1:-1:-1;;;;;34790:15:0;;;;;;:9;:15;;;;;:20;;34809:1;;34790:15;:20;;34809:1;;34790:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34821:13:0;;;;;;:9;:13;;;;;:18;;34838:1;;34821:13;:18;;34838:1;;34821:18;:::i;:::-;;;;-1:-1:-1;;34850:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34850:21:0;-1:-1:-1;;;;;34850:21:0;;;;;;;;;34889:27;;34850:16;;34889:27;;;;;;;27286:341;27216:411;;:::o;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;31931:110::-;32007:26;32017:2;32021:7;32007:26;;;;;;;;;;;;:9;:26::i;35409:315::-;35564:8;-1:-1:-1;;;;;35555:17:0;:5;-1:-1:-1;;;;;35555:17:0;;;35547:55;;;;-1:-1:-1;;;35547:55:0;;12386:2:1;35547:55:0;;;12368:21:1;12425:2;12405:18;;;12398:30;12464:27;12444:18;;;12437:55;12509:18;;35547:55:0;12184:349:1;35547:55:0;-1:-1:-1;;;;;35613:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35613:46:0;;;;;;;;;;35675:41;;9145::1;;;35675::0;;9118:18:1;35675:41:0;;;;;;;35409:315;;;:::o;30319:::-;30476:28;30486:4;30492:2;30496:7;30476:9;:28::i;:::-;30523:48;30546:4;30552:2;30556:7;30565:5;30523:22;:48::i;:::-;30515:111;;;;-1:-1:-1;;;30515:111:0;;;;;;;:::i;53360:102::-;53420:13;53449:7;53442:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;40990:589;-1:-1:-1;;;;;41196:18:0;;41192:187;;41231:40;41263:7;42406:10;:17;;42379:24;;;;:15;:24;;;;;:44;;;42434:24;;;;;;;;;;;;42302:164;41231:40;41192:187;;;41301:2;-1:-1:-1;;;;;41293:10:0;:4;-1:-1:-1;;;;;41293:10:0;;41289:90;;41320:47;41353:4;41359:7;41320:32;:47::i;:::-;-1:-1:-1;;;;;41393:16:0;;41389:183;;41426:45;41463:7;41426:36;:45::i;41389:183::-;41499:4;-1:-1:-1;;;;;41493:10:0;:2;-1:-1:-1;;;;;41493:10:0;;41489:83;;41520:40;41548:2;41552:7;41520:27;:40::i;32268:321::-;32398:18;32404:2;32408:7;32398:5;:18::i;:::-;32449:54;32480:1;32484:2;32488:7;32497:5;32449:22;:54::i;:::-;32427:154;;;;-1:-1:-1;;;32427:154:0;;;;;;;:::i;36289:799::-;36444:4;-1:-1:-1;;;;;36465:13:0;;7075:19;:23;36461:620;;36501:72;;-1:-1:-1;;;36501:72:0;;-1:-1:-1;;;;;36501:36:0;;;;;:72;;2883:10;;36552:4;;36558:7;;36567:5;;36501:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36501:72:0;;;;;;;;-1:-1:-1;;36501:72:0;;;;;;;;;;;;:::i;:::-;;;36497:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36743:13:0;;36739:272;;36786:60;;-1:-1:-1;;;36786:60:0;;;;;;;:::i;36739:272::-;36961:6;36955:13;36946:6;36942:2;36938:15;36931:38;36497:529;-1:-1:-1;;;;;;36624:51:0;-1:-1:-1;;;36624:51:0;;-1:-1:-1;36617:58:0;;36461:620;-1:-1:-1;37065:4:0;36289:799;;;;;;:::o;43093:988::-;43359:22;43409:1;43384:22;43401:4;43384:16;:22::i;:::-;:26;;;;:::i;:::-;43421:18;43442:26;;;:17;:26;;;;;;43359:51;;-1:-1:-1;43575:28:0;;;43571:328;;-1:-1:-1;;;;;43642:18:0;;43620:19;43642:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43693:30;;;;;;:44;;;43810:30;;:17;:30;;;;;:43;;;43571:328;-1:-1:-1;43995:26:0;;;;:17;:26;;;;;;;;43988:33;;;-1:-1:-1;;;;;44039:18:0;;;;;:12;:18;;;;;:34;;;;;;;44032:41;43093:988::o;44376:1079::-;44654:10;:17;44629:22;;44654:21;;44674:1;;44654:21;:::i;:::-;44686:18;44707:24;;;:15;:24;;;;;;45080:10;:26;;44629:46;;-1:-1:-1;44707:24:0;;44629:46;;45080:26;;;;;;:::i;:::-;;;;;;;;;45058:48;;45144:11;45119:10;45130;45119:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45224:28;;;:15;:28;;;;;;;:41;;;45396:24;;;;;45389:31;45431:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44447:1008;;;44376:1079;:::o;41880:221::-;41965:14;41982:20;41999:2;41982:16;:20::i;:::-;-1:-1:-1;;;;;42013:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42058:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41880:221:0:o;32925:439::-;-1:-1:-1;;;;;33005:16:0;;32997:61;;;;-1:-1:-1;;;32997:61:0;;15155:2:1;32997:61:0;;;15137:21:1;;;15174:18;;;15167:30;15233:34;15213:18;;;15206:62;15285:18;;32997:61:0;14953:356:1;32997:61:0;31012:4;31036:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31036:16:0;:30;33069:58;;;;-1:-1:-1;;;33069:58:0;;11267:2:1;33069:58:0;;;11249:21:1;11306:2;11286:18;;;11279:30;11345;11325:18;;;11318:58;11393:18;;33069:58:0;11065:352:1;33069:58:0;33140:45;33169:1;33173:2;33177:7;33140:20;:45::i;:::-;-1:-1:-1;;;;;33198:13:0;;;;;;:9;:13;;;;;:18;;33215:1;;33198:13;:18;;33215:1;;33198:18;:::i;:::-;;;;-1:-1:-1;;33227:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33227:21:0;-1:-1:-1;;;;;33227:21:0;;;;;;;;33266:33;;33227:16;;;33266:33;;33227:16;;33266:33;56213:21:::1;56142:98:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:615::-;2832:6;2840;2893:2;2881:9;2872:7;2868:23;2864:32;2861:52;;;2909:1;2906;2899:12;2861:52;2949:9;2936:23;2978:18;3019:2;3011:6;3008:14;3005:34;;;3035:1;3032;3025:12;3005:34;3073:6;3062:9;3058:22;3048:32;;3118:7;3111:4;3107:2;3103:13;3099:27;3089:55;;3140:1;3137;3130:12;3089:55;3180:2;3167:16;3206:2;3198:6;3195:14;3192:34;;;3222:1;3219;3212:12;3192:34;3275:7;3270:2;3260:6;3257:1;3253:14;3249:2;3245:23;3241:32;3238:45;3235:65;;;3296:1;3293;3286:12;3235:65;3327:2;3319:11;;;;;3349:6;;-1:-1:-1;2746:615:1;;-1:-1:-1;;;;2746:615:1:o;3366:963::-;3450:6;3481:2;3524;3512:9;3503:7;3499:23;3495:32;3492:52;;;3540:1;3537;3530:12;3492:52;3580:9;3567:23;3609:18;3650:2;3642:6;3639:14;3636:34;;;3666:1;3663;3656:12;3636:34;3704:6;3693:9;3689:22;3679:32;;3749:7;3742:4;3738:2;3734:13;3730:27;3720:55;;3771:1;3768;3761:12;3720:55;3807:2;3794:16;3829:2;3825;3822:10;3819:36;;;3835:18;;:::i;:::-;3881:2;3878:1;3874:10;3864:20;;3904:28;3928:2;3924;3920:11;3904:28;:::i;:::-;3966:15;;;3997:12;;;;4029:11;;;4059;;;4055:20;;4052:33;-1:-1:-1;4049:53:1;;;4098:1;4095;4088:12;4049:53;4120:1;4111:10;;4130:169;4144:2;4141:1;4138:9;4130:169;;;4201:23;4220:3;4201:23;:::i;:::-;4189:36;;4162:1;4155:9;;;;;4245:12;;;;4277;;4130:169;;;-1:-1:-1;4318:5:1;3366:963;-1:-1:-1;;;;;;;;3366:963:1:o;4334:180::-;4390:6;4443:2;4431:9;4422:7;4418:23;4414:32;4411:52;;;4459:1;4456;4449:12;4411:52;4482:26;4498:9;4482:26;:::i;4519:245::-;4577:6;4630:2;4618:9;4609:7;4605:23;4601:32;4598:52;;;4646:1;4643;4636:12;4598:52;4685:9;4672:23;4704:30;4728:5;4704:30;:::i;4769:249::-;4838:6;4891:2;4879:9;4870:7;4866:23;4862:32;4859:52;;;4907:1;4904;4897:12;4859:52;4939:9;4933:16;4958:30;4982:5;4958:30;:::i;5023:450::-;5092:6;5145:2;5133:9;5124:7;5120:23;5116:32;5113:52;;;5161:1;5158;5151:12;5113:52;5201:9;5188:23;5234:18;5226:6;5223:30;5220:50;;;5266:1;5263;5256:12;5220:50;5289:22;;5342:4;5334:13;;5330:27;-1:-1:-1;5320:55:1;;5371:1;5368;5361:12;5320:55;5394:73;5459:7;5454:2;5441:16;5436:2;5432;5428:11;5394:73;:::i;5478:180::-;5537:6;5590:2;5578:9;5569:7;5565:23;5561:32;5558:52;;;5606:1;5603;5596:12;5558:52;-1:-1:-1;5629:23:1;;5478:180;-1:-1:-1;5478:180:1:o;5663:257::-;5704:3;5742:5;5736:12;5769:6;5764:3;5757:19;5785:63;5841:6;5834:4;5829:3;5825:14;5818:4;5811:5;5807:16;5785:63;:::i;:::-;5902:2;5881:15;-1:-1:-1;;5877:29:1;5868:39;;;;5909:4;5864:50;;5663:257;-1:-1:-1;;5663:257:1:o;5925:1527::-;6149:3;6187:6;6181:13;6213:4;6226:51;6270:6;6265:3;6260:2;6252:6;6248:15;6226:51;:::i;:::-;6340:13;;6299:16;;;;6362:55;6340:13;6299:16;6384:15;;;6362:55;:::i;:::-;6506:13;;6439:20;;;6479:1;;6566;6588:18;;;;6641;;;;6668:93;;6746:4;6736:8;6732:19;6720:31;;6668:93;6809:2;6799:8;6796:16;6776:18;6773:40;6770:167;;;-1:-1:-1;;;6836:33:1;;6892:4;6889:1;6882:15;6922:4;6843:3;6910:17;6770:167;6953:18;6980:110;;;;7104:1;7099:328;;;;6946:481;;6980:110;-1:-1:-1;;7015:24:1;;7001:39;;7060:20;;;;-1:-1:-1;6980:110:1;;7099:328;19674:1;19667:14;;;19711:4;19698:18;;7194:1;7208:169;7222:8;7219:1;7216:15;7208:169;;;7304:14;;7289:13;;;7282:37;7347:16;;;;7239:10;;7208:169;;;7212:3;;7408:8;7401:5;7397:20;7390:27;;6946:481;-1:-1:-1;7443:3:1;;5925:1527;-1:-1:-1;;;;;;;;;;;5925:1527:1:o;7875:488::-;-1:-1:-1;;;;;8144:15:1;;;8126:34;;8196:15;;8191:2;8176:18;;8169:43;8243:2;8228:18;;8221:34;;;8291:3;8286:2;8271:18;;8264:31;;;8069:4;;8312:45;;8337:19;;8329:6;8312:45;:::i;:::-;8304:53;7875:488;-1:-1:-1;;;;;;7875:488:1:o;8368:632::-;8539:2;8591:21;;;8661:13;;8564:18;;;8683:22;;;8510:4;;8539:2;8762:15;;;;8736:2;8721:18;;;8510:4;8805:169;8819:6;8816:1;8813:13;8805:169;;;8880:13;;8868:26;;8949:15;;;;8914:12;;;;8841:1;8834:9;8805:169;;;-1:-1:-1;8991:3:1;;8368:632;-1:-1:-1;;;;;;8368:632:1:o;9197:219::-;9346:2;9335:9;9328:21;9309:4;9366:44;9406:2;9395:9;9391:18;9383:6;9366:44;:::i;9833:414::-;10035:2;10017:21;;;10074:2;10054:18;;;10047:30;10113:34;10108:2;10093:18;;10086:62;-1:-1:-1;;;10179:2:1;10164:18;;10157:48;10237:3;10222:19;;9833:414::o;15727:356::-;15929:2;15911:21;;;15948:18;;;15941:30;16007:34;16002:2;15987:18;;15980:62;16074:2;16059:18;;15727:356::o;17600:413::-;17802:2;17784:21;;;17841:2;17821:18;;;17814:30;17880:34;17875:2;17860:18;;17853:62;-1:-1:-1;;;17946:2:1;17931:18;;17924:47;18003:3;17988:19;;17600:413::o;19321:275::-;19392:2;19386:9;19457:2;19438:13;;-1:-1:-1;;19434:27:1;19422:40;;19492:18;19477:34;;19513:22;;;19474:62;19471:88;;;19539:18;;:::i;:::-;19575:2;19568:22;19321:275;;-1:-1:-1;19321:275:1:o;19727:128::-;19767:3;19798:1;19794:6;19791:1;19788:13;19785:39;;;19804:18;;:::i;:::-;-1:-1:-1;19840:9:1;;19727:128::o;19860:120::-;19900:1;19926;19916:35;;19931:18;;:::i;:::-;-1:-1:-1;19965:9:1;;19860:120::o;19985:168::-;20025:7;20091:1;20087;20083:6;20079:14;20076:1;20073:21;20068:1;20061:9;20054:17;20050:45;20047:71;;;20098:18;;:::i;:::-;-1:-1:-1;20138:9:1;;19985:168::o;20158:125::-;20198:4;20226:1;20223;20220:8;20217:34;;;20231:18;;:::i;:::-;-1:-1:-1;20268:9:1;;20158:125::o;20288:258::-;20360:1;20370:113;20384:6;20381:1;20378:13;20370:113;;;20460:11;;;20454:18;20441:11;;;20434:39;20406:2;20399:10;20370:113;;;20501:6;20498:1;20495:13;20492:48;;;-1:-1:-1;;20536:1:1;20518:16;;20511:27;20288:258::o;20551:380::-;20630:1;20626:12;;;;20673;;;20694:61;;20748:4;20740:6;20736:17;20726:27;;20694:61;20801:2;20793:6;20790:14;20770:18;20767:38;20764:161;;;20847:10;20842:3;20838:20;20835:1;20828:31;20882:4;20879:1;20872:15;20910:4;20907:1;20900:15;20764:161;;20551:380;;;:::o;20936:135::-;20975:3;-1:-1:-1;;20996:17:1;;20993:43;;;21016:18;;:::i;:::-;-1:-1:-1;21063:1:1;21052:13;;20936:135::o;21076:112::-;21108:1;21134;21124:35;;21139:18;;:::i;:::-;-1:-1:-1;21173:9:1;;21076:112::o;21193:127::-;21254:10;21249:3;21245:20;21242:1;21235:31;21285:4;21282:1;21275:15;21309:4;21306:1;21299:15;21325:127;21386:10;21381:3;21377:20;21374:1;21367:31;21417:4;21414:1;21407:15;21441:4;21438:1;21431:15;21457:127;21518:10;21513:3;21509:20;21506:1;21499:31;21549:4;21546:1;21539:15;21573:4;21570:1;21563:15;21589:127;21650:10;21645:3;21641:20;21638:1;21631:31;21681:4;21678:1;21671:15;21705:4;21702:1;21695:15;21721:127;21782:10;21777:3;21773:20;21770:1;21763:31;21813:4;21810:1;21803:15;21837:4;21834:1;21827:15;21853:131;-1:-1:-1;;;;;;21927:32:1;;21917:43;;21907:71;;21974:1;21971;21964:12

Swarm Source

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