ETH Price: $3,331.21 (+1.24%)
 

Overview

TokenID

5

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoStampArtGoldenMercury

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-12-05
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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.6.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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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();
    }
}

pragma solidity >=0.7.0 <0.9.0;


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

  string baseURI;
  string public baseExtension = ".json";
  uint256 public maxSupply = 500;
  bool public paused = false;
  bool public mintFinished = false;
  address public allowedMinter;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    address _allowedMinter
  ) ERC721(_name, _symbol) {
    require(_allowedMinter != address(0x0), "you need to set an actual address");
    allowedMinter = _allowedMinter;
    setBaseURI(_initBaseURI);
  }

  modifier mintAllowed() {
    require(allowedMinter == msg.sender || msg.sender == owner(), "not allowed to mint");
    _;
  }

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

  function mint(address _to) public mintAllowed{
    require(!paused && !mintFinished, "minting paused-finished");
    uint256 supply = totalSupply();
    require(supply + 1 <= maxSupply, "max supply reached");
    _mint(_to, supply + 1);
  }

  function mintMulti(uint256 _tokenIdStart, address[] memory _owners)
    public
    mintAllowed
    {
        require(!paused && !mintFinished, "minting paused-finished");
        uint256 addrcount = _owners.length;
        require(_tokenIdStart + addrcount - 1 <= maxSupply, "exceeds max supply");
        for (uint256 i = 0; i < addrcount; i++) {
            _mint(_owners[i], _tokenIdStart + i);
        }
    }

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

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

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

  function setMintingState(bool _state) public onlyOwner {
    mintFinished = _state;
  }

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

  function setMaxSupply(uint256 _newmax) public onlyOwner {
    maxSupply = _newmax;
  }

  function setAllowedMinter(address _newMinter) public onlyOwner {
    allowedMinter = _newMinter;
  }

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

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":"address","name":"_allowedMinter","type":"address"}],"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":[],"name":"allowedMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintFinished","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenIdStart","type":"uint256"},{"internalType":"address[]","name":"_owners","type":"address[]"}],"name":"mintMulti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"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":"_newMinter","type":"address"}],"name":"setAllowedMinter","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":"_newmax","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMintingState","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"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200021e565b506101f4600d55600e805461ffff191690553480156200004757600080fd5b50604051620027f0380380620027f08339810160408190526200006a916200037b565b835184908490620000839060009060208501906200021e565b508051620000999060019060208401906200021e565b505050620000b6620000b06200015360201b60201c565b62000157565b6001600160a01b0381166200011c5760405162461bcd60e51b815260206004820152602160248201527f796f75206e65656420746f2073657420616e2061637475616c206164647265736044820152607360f81b60648201526084015b60405180910390fd5b600e805462010000600160b01b031916620100006001600160a01b038416021790556200014982620001a9565b5050505062000481565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000113565b80516200021a90600b9060208401906200021e565b5050565b8280546200022c906200042e565b90600052602060002090601f0160209004810192826200025057600085556200029b565b82601f106200026b57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029b5782518255916020019190600101906200027e565b50620002a9929150620002ad565b5090565b5b80821115620002a95760008155600101620002ae565b600082601f830112620002d657600080fd5b81516001600160401b0380821115620002f357620002f36200046b565b604051601f8301601f19908116603f011681019082821181831017156200031e576200031e6200046b565b816040528381526020925086838588010111156200033b57600080fd5b600091505b838210156200035f578582018301518183018401529082019062000340565b83821115620003715760008385830101525b9695505050505050565b600080600080608085870312156200039257600080fd5b84516001600160401b0380821115620003aa57600080fd5b620003b888838901620002c4565b95506020870151915080821115620003cf57600080fd5b620003dd88838901620002c4565b94506040870151915080821115620003f457600080fd5b506200040387828801620002c4565b606087015190935090506001600160a01b03811681146200042357600080fd5b939692955090935050565b600181811c908216806200044357607f821691505b602082108114156200046557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61235f80620004916000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636f8b44b01161011a578063a22cb465116100ad578063d01cc6181161007c578063d01cc6181461042d578063d5abeb0114610440578063da3ef23f14610449578063e985e9c51461045c578063f2fde38b1461049857600080fd5b8063a22cb465146103ec578063b88d4fde146103ff578063c668286214610412578063c87b56dd1461041a57600080fd5b80638da5cb5b116100e95780638da5cb5b146103a757806395d89b41146103b85780639bbf8325146103c05780639e812c7b146103d357600080fd5b80636f8b44b01461036757806370a082311461037a578063715018a61461038d57806375143ef21461039557600080fd5b806342842e0e116101925780635c975abb116101615780635c975abb1461032157806360831d281461032e5780636352211e146103415780636a6278421461035457600080fd5b806342842e0e146102c8578063438b6300146102db5780634f6ccce7146102fb57806355f804b31461030e57600080fd5b8063095ea7b3116101ce578063095ea7b31461027d57806318160ddd1461029057806323b872dd146102a25780632f745c59146102b557600080fd5b806301ffc9a71461020057806302329a291461022857806306fdde031461023d578063081812fc14610252575b600080fd5b61021361020e366004611de3565b6104ab565b60405190151581526020015b60405180910390f35b61023b610236366004611dc8565b6104d6565b005b61024561051c565b60405161021f91906120b0565b610265610260366004611e66565b6105ae565b6040516001600160a01b03909116815260200161021f565b61023b61028b366004611d9e565b610643565b6008545b60405190815260200161021f565b61023b6102b0366004611cbc565b610759565b6102946102c3366004611d9e565b61078a565b61023b6102d6366004611cbc565b610820565b6102ee6102e9366004611c6e565b61083b565b60405161021f919061206c565b610294610309366004611e66565b6108dd565b61023b61031c366004611e1d565b610970565b600e546102139060ff1681565b61023b61033c366004611e7f565b6109b1565b61026561034f366004611e66565b610b2c565b61023b610362366004611c6e565b610ba3565b61023b610375366004611e66565b610cdd565b610294610388366004611c6e565b610d0c565b61023b610d93565b600e5461021390610100900460ff1681565b600a546001600160a01b0316610265565b610245610dc9565b61023b6103ce366004611dc8565b610dd8565b600e54610265906201000090046001600160a01b031681565b61023b6103fa366004611d74565b610e1c565b61023b61040d366004611cf8565b610e27565b610245610e59565b610245610428366004611e66565b610ee7565b61023b61043b366004611c6e565b610fc5565b610294600d5481565b61023b610457366004611e1d565b611019565b61021361046a366004611c89565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61023b6104a6366004611c6e565b611056565b60006001600160e01b0319821663780e9d6360e01b14806104d057506104d0826110f1565b92915050565b600a546001600160a01b031633146105095760405162461bcd60e51b815260040161050090612115565b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461052b9061223b565b80601f01602080910402602001604051908101604052809291908181526020018280546105579061223b565b80156105a45780601f10610579576101008083540402835291602001916105a4565b820191906000526020600020905b81548152906001019060200180831161058757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610500565b506000908152600460205260409020546001600160a01b031690565b600061064e82610b2c565b9050806001600160a01b0316836001600160a01b031614156106bc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610500565b336001600160a01b03821614806106d857506106d8813361046a565b61074a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610500565b6107548383611141565b505050565b61076333826111af565b61077f5760405162461bcd60e51b81526004016105009061214a565b6107548383836112a6565b600061079583610d0c565b82106107f75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610500565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61075483838360405180602001604052806000815250610e27565b6060600061084883610d0c565b905060008167ffffffffffffffff811115610865576108656122fd565b60405190808252806020026020018201604052801561088e578160200160208202803683370190505b50905060005b828110156108d5576108a6858261078a565b8282815181106108b8576108b86122e7565b6020908102919091010152806108cd81612276565b915050610894565b509392505050565b60006108e860085490565b821061094b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610500565b6008828154811061095e5761095e6122e7565b90600052602060002001549050919050565b600a546001600160a01b0316331461099a5760405162461bcd60e51b815260040161050090612115565b80516109ad90600b906020840190611b51565b5050565b600e546201000090046001600160a01b03163314806109da5750600a546001600160a01b031633145b610a1c5760405162461bcd60e51b81526020600482015260136024820152721b9bdd08185b1b1bddd959081d1bc81b5a5b9d606a1b6044820152606401610500565b600e5460ff16158015610a375750600e54610100900460ff16155b610a7d5760405162461bcd60e51b81526020600482015260176024820152761b5a5b9d1a5b99c81c185d5cd9590b599a5b9a5cda1959604a1b6044820152606401610500565b8051600d546001610a8e83866121cc565b610a9891906121f8565b1115610adb5760405162461bcd60e51b815260206004820152601260248201527165786365656473206d617820737570706c7960701b6044820152606401610500565b60005b81811015610b2657610b14838281518110610afb57610afb6122e7565b60200260200101518286610b0f91906121cc565b61144d565b80610b1e81612276565b915050610ade565b50505050565b6000818152600260205260408120546001600160a01b0316806104d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610500565b600e546201000090046001600160a01b0316331480610bcc5750600a546001600160a01b031633145b610c0e5760405162461bcd60e51b81526020600482015260136024820152721b9bdd08185b1b1bddd959081d1bc81b5a5b9d606a1b6044820152606401610500565b600e5460ff16158015610c295750600e54610100900460ff16155b610c6f5760405162461bcd60e51b81526020600482015260176024820152761b5a5b9d1a5b99c81c185d5cd9590b599a5b9a5cda1959604a1b6044820152606401610500565b6000610c7a60085490565b600d54909150610c8b8260016121cc565b1115610cce5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610500565b6109ad82610b0f8360016121cc565b600a546001600160a01b03163314610d075760405162461bcd60e51b815260040161050090612115565b600d55565b60006001600160a01b038216610d775760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610500565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610dbd5760405162461bcd60e51b815260040161050090612115565b610dc7600061159b565b565b60606001805461052b9061223b565b600a546001600160a01b03163314610e025760405162461bcd60e51b815260040161050090612115565b600e80549115156101000261ff0019909216919091179055565b6109ad3383836115ed565b610e3133836111af565b610e4d5760405162461bcd60e51b81526004016105009061214a565b610b26848484846116bc565b600c8054610e669061223b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e929061223b565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b0316610f665760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610500565b6000610f706116ef565b90506000815111610f905760405180602001604052806000815250610fbe565b80610f9a846116fe565b600c604051602001610fae93929190611f6b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610fef5760405162461bcd60e51b815260040161050090612115565b600e80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600a546001600160a01b031633146110435760405162461bcd60e51b815260040161050090612115565b80516109ad90600c906020840190611b51565b600a546001600160a01b031633146110805760405162461bcd60e51b815260040161050090612115565b6001600160a01b0381166110e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610500565b6110ee8161159b565b50565b60006001600160e01b031982166380ac58cd60e01b148061112257506001600160e01b03198216635b5e139f60e01b145b806104d057506301ffc9a760e01b6001600160e01b03198316146104d0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117682610b2c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610500565b600061123383610b2c565b9050806001600160a01b0316846001600160a01b0316148061127a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061129e5750836001600160a01b0316611293846105ae565b6001600160a01b0316145b949350505050565b826001600160a01b03166112b982610b2c565b6001600160a01b03161461131d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610500565b6001600160a01b03821661137f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610500565b61138a8383836117fc565b611395600082611141565b6001600160a01b03831660009081526003602052604081208054600192906113be9084906121f8565b90915550506001600160a01b03821660009081526003602052604081208054600192906113ec9084906121cc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166114a35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610500565b6000818152600260205260409020546001600160a01b0316156115085760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610500565b611514600083836117fc565b6001600160a01b038216600090815260036020526040812080546001929061153d9084906121cc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561164f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610500565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116c78484846112a6565b6116d3848484846118b4565b610b265760405162461bcd60e51b8152600401610500906120c3565b6060600b805461052b9061223b565b6060816117225750506040805180820190915260018152600360fc1b602082015290565b8160005b811561174c578061173681612276565b91506117459050600a836121e4565b9150611726565b60008167ffffffffffffffff811115611767576117676122fd565b6040519080825280601f01601f191660200182016040528015611791576020820181803683370190505b5090505b841561129e576117a66001836121f8565b91506117b3600a86612291565b6117be9060306121cc565b60f81b8183815181106117d3576117d36122e7565b60200101906001600160f81b031916908160001a9053506117f5600a866121e4565b9450611795565b6001600160a01b0383166118575761185281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61187a565b816001600160a01b0316836001600160a01b03161461187a5761187a83826119c1565b6001600160a01b0382166118915761075481611a5e565b826001600160a01b0316826001600160a01b031614610754576107548282611b0d565b60006001600160a01b0384163b156119b657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118f890339089908890889060040161202f565b602060405180830381600087803b15801561191257600080fd5b505af1925050508015611942575060408051601f3d908101601f1916820190925261193f91810190611e00565b60015b61199c573d808015611970576040519150601f19603f3d011682016040523d82523d6000602084013e611975565b606091505b5080516119945760405162461bcd60e51b8152600401610500906120c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061129e565b506001949350505050565b600060016119ce84610d0c565b6119d891906121f8565b600083815260076020526040902054909150808214611a2b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a70906001906121f8565b60008381526009602052604081205460088054939450909284908110611a9857611a986122e7565b906000526020600020015490508060088381548110611ab957611ab96122e7565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611af157611af16122d1565b6001900381819060005260206000200160009055905550505050565b6000611b1883610d0c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611b5d9061223b565b90600052602060002090601f016020900481019282611b7f5760008555611bc5565b82601f10611b9857805160ff1916838001178555611bc5565b82800160010185558215611bc5579182015b82811115611bc5578251825591602001919060010190611baa565b50611bd1929150611bd5565b5090565b5b80821115611bd15760008155600101611bd6565b600067ffffffffffffffff831115611c0457611c046122fd565b611c17601f8401601f191660200161219b565b9050828152838383011115611c2b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611c5957600080fd5b919050565b80358015158114611c5957600080fd5b600060208284031215611c8057600080fd5b610fbe82611c42565b60008060408385031215611c9c57600080fd5b611ca583611c42565b9150611cb360208401611c42565b90509250929050565b600080600060608486031215611cd157600080fd5b611cda84611c42565b9250611ce860208501611c42565b9150604084013590509250925092565b60008060008060808587031215611d0e57600080fd5b611d1785611c42565b9350611d2560208601611c42565b925060408501359150606085013567ffffffffffffffff811115611d4857600080fd5b8501601f81018713611d5957600080fd5b611d6887823560208401611bea565b91505092959194509250565b60008060408385031215611d8757600080fd5b611d9083611c42565b9150611cb360208401611c5e565b60008060408385031215611db157600080fd5b611dba83611c42565b946020939093013593505050565b600060208284031215611dda57600080fd5b610fbe82611c5e565b600060208284031215611df557600080fd5b8135610fbe81612313565b600060208284031215611e1257600080fd5b8151610fbe81612313565b600060208284031215611e2f57600080fd5b813567ffffffffffffffff811115611e4657600080fd5b8201601f81018413611e5757600080fd5b61129e84823560208401611bea565b600060208284031215611e7857600080fd5b5035919050565b60008060408385031215611e9257600080fd5b8235915060208084013567ffffffffffffffff80821115611eb257600080fd5b818601915086601f830112611ec657600080fd5b813581811115611ed857611ed86122fd565b8060051b9150611ee984830161219b565b8181528481019084860184860187018b1015611f0457600080fd5b600095505b83861015611f2e57611f1a81611c42565b835260019590950194918601918601611f09565b508096505050505050509250929050565b60008151808452611f5781602086016020860161220f565b601f01601f19169290920160200192915050565b600084516020611f7e8285838a0161220f565b855191840191611f918184848a0161220f565b8554920191600090600181811c9080831680611fae57607f831692505b858310811415611fcc57634e487b7160e01b85526022600452602485fd5b808015611fe05760018114611ff15761201e565b60ff1985168852838801955061201e565b60008b81526020902060005b858110156120165781548a820152908401908801611ffd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206290830184611f3f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120a457835183529284019291840191600101612088565b50909695505050505050565b602081526000610fbe6020830184611f3f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156121c4576121c46122fd565b604052919050565b600082198211156121df576121df6122a5565b500190565b6000826121f3576121f36122bb565b500490565b60008282101561220a5761220a6122a5565b500390565b60005b8381101561222a578181015183820152602001612212565b83811115610b265750506000910152565b600181811c9082168061224f57607f821691505b6020821081141561227057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561228a5761228a6122a5565b5060010190565b6000826122a0576122a06122bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110ee57600080fdfea2646970667358221220d9504986a530ded5db3719b6a913f64803fc6e4132a998898348a077161befe264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000065647275f0ca450e162eb83176cbf72125dc2765000000000000000000000000000000000000000000000000000000000000001b43727970746f5374616d70417274476f6c64656e4d65726375727900000000000000000000000000000000000000000000000000000000000000000000000005435341474d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004068747470733a2f2f63727970746f7374616d706172742e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f435341474d2f6d6574612f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636f8b44b01161011a578063a22cb465116100ad578063d01cc6181161007c578063d01cc6181461042d578063d5abeb0114610440578063da3ef23f14610449578063e985e9c51461045c578063f2fde38b1461049857600080fd5b8063a22cb465146103ec578063b88d4fde146103ff578063c668286214610412578063c87b56dd1461041a57600080fd5b80638da5cb5b116100e95780638da5cb5b146103a757806395d89b41146103b85780639bbf8325146103c05780639e812c7b146103d357600080fd5b80636f8b44b01461036757806370a082311461037a578063715018a61461038d57806375143ef21461039557600080fd5b806342842e0e116101925780635c975abb116101615780635c975abb1461032157806360831d281461032e5780636352211e146103415780636a6278421461035457600080fd5b806342842e0e146102c8578063438b6300146102db5780634f6ccce7146102fb57806355f804b31461030e57600080fd5b8063095ea7b3116101ce578063095ea7b31461027d57806318160ddd1461029057806323b872dd146102a25780632f745c59146102b557600080fd5b806301ffc9a71461020057806302329a291461022857806306fdde031461023d578063081812fc14610252575b600080fd5b61021361020e366004611de3565b6104ab565b60405190151581526020015b60405180910390f35b61023b610236366004611dc8565b6104d6565b005b61024561051c565b60405161021f91906120b0565b610265610260366004611e66565b6105ae565b6040516001600160a01b03909116815260200161021f565b61023b61028b366004611d9e565b610643565b6008545b60405190815260200161021f565b61023b6102b0366004611cbc565b610759565b6102946102c3366004611d9e565b61078a565b61023b6102d6366004611cbc565b610820565b6102ee6102e9366004611c6e565b61083b565b60405161021f919061206c565b610294610309366004611e66565b6108dd565b61023b61031c366004611e1d565b610970565b600e546102139060ff1681565b61023b61033c366004611e7f565b6109b1565b61026561034f366004611e66565b610b2c565b61023b610362366004611c6e565b610ba3565b61023b610375366004611e66565b610cdd565b610294610388366004611c6e565b610d0c565b61023b610d93565b600e5461021390610100900460ff1681565b600a546001600160a01b0316610265565b610245610dc9565b61023b6103ce366004611dc8565b610dd8565b600e54610265906201000090046001600160a01b031681565b61023b6103fa366004611d74565b610e1c565b61023b61040d366004611cf8565b610e27565b610245610e59565b610245610428366004611e66565b610ee7565b61023b61043b366004611c6e565b610fc5565b610294600d5481565b61023b610457366004611e1d565b611019565b61021361046a366004611c89565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61023b6104a6366004611c6e565b611056565b60006001600160e01b0319821663780e9d6360e01b14806104d057506104d0826110f1565b92915050565b600a546001600160a01b031633146105095760405162461bcd60e51b815260040161050090612115565b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461052b9061223b565b80601f01602080910402602001604051908101604052809291908181526020018280546105579061223b565b80156105a45780601f10610579576101008083540402835291602001916105a4565b820191906000526020600020905b81548152906001019060200180831161058757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610500565b506000908152600460205260409020546001600160a01b031690565b600061064e82610b2c565b9050806001600160a01b0316836001600160a01b031614156106bc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610500565b336001600160a01b03821614806106d857506106d8813361046a565b61074a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610500565b6107548383611141565b505050565b61076333826111af565b61077f5760405162461bcd60e51b81526004016105009061214a565b6107548383836112a6565b600061079583610d0c565b82106107f75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610500565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61075483838360405180602001604052806000815250610e27565b6060600061084883610d0c565b905060008167ffffffffffffffff811115610865576108656122fd565b60405190808252806020026020018201604052801561088e578160200160208202803683370190505b50905060005b828110156108d5576108a6858261078a565b8282815181106108b8576108b86122e7565b6020908102919091010152806108cd81612276565b915050610894565b509392505050565b60006108e860085490565b821061094b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610500565b6008828154811061095e5761095e6122e7565b90600052602060002001549050919050565b600a546001600160a01b0316331461099a5760405162461bcd60e51b815260040161050090612115565b80516109ad90600b906020840190611b51565b5050565b600e546201000090046001600160a01b03163314806109da5750600a546001600160a01b031633145b610a1c5760405162461bcd60e51b81526020600482015260136024820152721b9bdd08185b1b1bddd959081d1bc81b5a5b9d606a1b6044820152606401610500565b600e5460ff16158015610a375750600e54610100900460ff16155b610a7d5760405162461bcd60e51b81526020600482015260176024820152761b5a5b9d1a5b99c81c185d5cd9590b599a5b9a5cda1959604a1b6044820152606401610500565b8051600d546001610a8e83866121cc565b610a9891906121f8565b1115610adb5760405162461bcd60e51b815260206004820152601260248201527165786365656473206d617820737570706c7960701b6044820152606401610500565b60005b81811015610b2657610b14838281518110610afb57610afb6122e7565b60200260200101518286610b0f91906121cc565b61144d565b80610b1e81612276565b915050610ade565b50505050565b6000818152600260205260408120546001600160a01b0316806104d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610500565b600e546201000090046001600160a01b0316331480610bcc5750600a546001600160a01b031633145b610c0e5760405162461bcd60e51b81526020600482015260136024820152721b9bdd08185b1b1bddd959081d1bc81b5a5b9d606a1b6044820152606401610500565b600e5460ff16158015610c295750600e54610100900460ff16155b610c6f5760405162461bcd60e51b81526020600482015260176024820152761b5a5b9d1a5b99c81c185d5cd9590b599a5b9a5cda1959604a1b6044820152606401610500565b6000610c7a60085490565b600d54909150610c8b8260016121cc565b1115610cce5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610500565b6109ad82610b0f8360016121cc565b600a546001600160a01b03163314610d075760405162461bcd60e51b815260040161050090612115565b600d55565b60006001600160a01b038216610d775760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610500565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610dbd5760405162461bcd60e51b815260040161050090612115565b610dc7600061159b565b565b60606001805461052b9061223b565b600a546001600160a01b03163314610e025760405162461bcd60e51b815260040161050090612115565b600e80549115156101000261ff0019909216919091179055565b6109ad3383836115ed565b610e3133836111af565b610e4d5760405162461bcd60e51b81526004016105009061214a565b610b26848484846116bc565b600c8054610e669061223b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e929061223b565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b0316610f665760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610500565b6000610f706116ef565b90506000815111610f905760405180602001604052806000815250610fbe565b80610f9a846116fe565b600c604051602001610fae93929190611f6b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610fef5760405162461bcd60e51b815260040161050090612115565b600e80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600a546001600160a01b031633146110435760405162461bcd60e51b815260040161050090612115565b80516109ad90600c906020840190611b51565b600a546001600160a01b031633146110805760405162461bcd60e51b815260040161050090612115565b6001600160a01b0381166110e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610500565b6110ee8161159b565b50565b60006001600160e01b031982166380ac58cd60e01b148061112257506001600160e01b03198216635b5e139f60e01b145b806104d057506301ffc9a760e01b6001600160e01b03198316146104d0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117682610b2c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610500565b600061123383610b2c565b9050806001600160a01b0316846001600160a01b0316148061127a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061129e5750836001600160a01b0316611293846105ae565b6001600160a01b0316145b949350505050565b826001600160a01b03166112b982610b2c565b6001600160a01b03161461131d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610500565b6001600160a01b03821661137f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610500565b61138a8383836117fc565b611395600082611141565b6001600160a01b03831660009081526003602052604081208054600192906113be9084906121f8565b90915550506001600160a01b03821660009081526003602052604081208054600192906113ec9084906121cc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166114a35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610500565b6000818152600260205260409020546001600160a01b0316156115085760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610500565b611514600083836117fc565b6001600160a01b038216600090815260036020526040812080546001929061153d9084906121cc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561164f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610500565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116c78484846112a6565b6116d3848484846118b4565b610b265760405162461bcd60e51b8152600401610500906120c3565b6060600b805461052b9061223b565b6060816117225750506040805180820190915260018152600360fc1b602082015290565b8160005b811561174c578061173681612276565b91506117459050600a836121e4565b9150611726565b60008167ffffffffffffffff811115611767576117676122fd565b6040519080825280601f01601f191660200182016040528015611791576020820181803683370190505b5090505b841561129e576117a66001836121f8565b91506117b3600a86612291565b6117be9060306121cc565b60f81b8183815181106117d3576117d36122e7565b60200101906001600160f81b031916908160001a9053506117f5600a866121e4565b9450611795565b6001600160a01b0383166118575761185281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61187a565b816001600160a01b0316836001600160a01b03161461187a5761187a83826119c1565b6001600160a01b0382166118915761075481611a5e565b826001600160a01b0316826001600160a01b031614610754576107548282611b0d565b60006001600160a01b0384163b156119b657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118f890339089908890889060040161202f565b602060405180830381600087803b15801561191257600080fd5b505af1925050508015611942575060408051601f3d908101601f1916820190925261193f91810190611e00565b60015b61199c573d808015611970576040519150601f19603f3d011682016040523d82523d6000602084013e611975565b606091505b5080516119945760405162461bcd60e51b8152600401610500906120c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061129e565b506001949350505050565b600060016119ce84610d0c565b6119d891906121f8565b600083815260076020526040902054909150808214611a2b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a70906001906121f8565b60008381526009602052604081205460088054939450909284908110611a9857611a986122e7565b906000526020600020015490508060088381548110611ab957611ab96122e7565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611af157611af16122d1565b6001900381819060005260206000200160009055905550505050565b6000611b1883610d0c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611b5d9061223b565b90600052602060002090601f016020900481019282611b7f5760008555611bc5565b82601f10611b9857805160ff1916838001178555611bc5565b82800160010185558215611bc5579182015b82811115611bc5578251825591602001919060010190611baa565b50611bd1929150611bd5565b5090565b5b80821115611bd15760008155600101611bd6565b600067ffffffffffffffff831115611c0457611c046122fd565b611c17601f8401601f191660200161219b565b9050828152838383011115611c2b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611c5957600080fd5b919050565b80358015158114611c5957600080fd5b600060208284031215611c8057600080fd5b610fbe82611c42565b60008060408385031215611c9c57600080fd5b611ca583611c42565b9150611cb360208401611c42565b90509250929050565b600080600060608486031215611cd157600080fd5b611cda84611c42565b9250611ce860208501611c42565b9150604084013590509250925092565b60008060008060808587031215611d0e57600080fd5b611d1785611c42565b9350611d2560208601611c42565b925060408501359150606085013567ffffffffffffffff811115611d4857600080fd5b8501601f81018713611d5957600080fd5b611d6887823560208401611bea565b91505092959194509250565b60008060408385031215611d8757600080fd5b611d9083611c42565b9150611cb360208401611c5e565b60008060408385031215611db157600080fd5b611dba83611c42565b946020939093013593505050565b600060208284031215611dda57600080fd5b610fbe82611c5e565b600060208284031215611df557600080fd5b8135610fbe81612313565b600060208284031215611e1257600080fd5b8151610fbe81612313565b600060208284031215611e2f57600080fd5b813567ffffffffffffffff811115611e4657600080fd5b8201601f81018413611e5757600080fd5b61129e84823560208401611bea565b600060208284031215611e7857600080fd5b5035919050565b60008060408385031215611e9257600080fd5b8235915060208084013567ffffffffffffffff80821115611eb257600080fd5b818601915086601f830112611ec657600080fd5b813581811115611ed857611ed86122fd565b8060051b9150611ee984830161219b565b8181528481019084860184860187018b1015611f0457600080fd5b600095505b83861015611f2e57611f1a81611c42565b835260019590950194918601918601611f09565b508096505050505050509250929050565b60008151808452611f5781602086016020860161220f565b601f01601f19169290920160200192915050565b600084516020611f7e8285838a0161220f565b855191840191611f918184848a0161220f565b8554920191600090600181811c9080831680611fae57607f831692505b858310811415611fcc57634e487b7160e01b85526022600452602485fd5b808015611fe05760018114611ff15761201e565b60ff1985168852838801955061201e565b60008b81526020902060005b858110156120165781548a820152908401908801611ffd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206290830184611f3f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120a457835183529284019291840191600101612088565b50909695505050505050565b602081526000610fbe6020830184611f3f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156121c4576121c46122fd565b604052919050565b600082198211156121df576121df6122a5565b500190565b6000826121f3576121f36122bb565b500490565b60008282101561220a5761220a6122a5565b500390565b60005b8381101561222a578181015183820152602001612212565b83811115610b265750506000910152565b600181811c9082168061224f57607f821691505b6020821081141561227057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561228a5761228a6122a5565b5060010190565b6000826122a0576122a06122bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110ee57600080fdfea2646970667358221220d9504986a530ded5db3719b6a913f64803fc6e4132a998898348a077161befe264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000065647275f0ca450e162eb83176cbf72125dc2765000000000000000000000000000000000000000000000000000000000000001b43727970746f5374616d70417274476f6c64656e4d65726375727900000000000000000000000000000000000000000000000000000000000000000000000005435341474d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004068747470733a2f2f63727970746f7374616d706172742e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f435341474d2f6d6574612f

-----Decoded View---------------
Arg [0] : _name (string): CryptoStampArtGoldenMercury
Arg [1] : _symbol (string): CSAGM
Arg [2] : _initBaseURI (string): https://cryptostampart.s3.eu-central-1.amazonaws.com/CSAGM/meta/
Arg [3] : _allowedMinter (address): 0x65647275f0ca450E162eb83176CBF72125dC2765

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 00000000000000000000000065647275f0ca450e162eb83176cbf72125dc2765
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [5] : 43727970746f5374616d70417274476f6c64656e4d6572637572790000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 435341474d000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [9] : 68747470733a2f2f63727970746f7374616d706172742e73332e65752d63656e
Arg [10] : 7472616c2d312e616d617a6f6e6177732e636f6d2f435341474d2f6d6574612f


Deployed Bytecode Sourcemap

45571:2929:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39386:224;;;;;;:::i;:::-;;:::i;:::-;;;8408:14:1;;8401:22;8383:41;;8371:2;8356:18;39386:224:0;;;;;;;;48424:73;;;;;;:::i;:::-;;:::i;:::-;;26205:100;;;:::i;:::-;;;;;;;:::i;27765:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7069:32:1;;;7051:51;;7039:2;7024:18;27765:221:0;6905:203:1;27288:411:0;;;;;;:::i;:::-;;:::i;40026:113::-;40114:10;:17;40026:113;;;17402:25:1;;;17390:2;17375:18;40026:113:0;17256:177:1;28515:339:0;;;;;;:::i;:::-;;:::i;39694:256::-;;;;;;:::i;:::-;;:::i;28925:185::-;;;;;;:::i;:::-;;:::i;47114:348::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40216:233::-;;;;;;:::i;:::-;;:::i;47895:98::-;;;;;;:::i;:::-;;:::i;45770:26::-;;;;;;;;;46685:423;;;;;;:::i;:::-;;:::i;25899:239::-;;;;;;:::i;:::-;;:::i;46434:245::-;;;;;;:::i;:::-;;:::i;48222:88::-;;;;;;:::i;:::-;;:::i;25629:208::-;;;;;;:::i;:::-;;:::i;4763:103::-;;;:::i;45801:32::-;;;;;;;;;;;;4112:87;4185:6;;-1:-1:-1;;;;;4185:6:0;4112:87;;26374:104;;;:::i;47999:89::-;;;;;;:::i;:::-;;:::i;45838:28::-;;;;;;;;-1:-1:-1;;;;;45838:28:0;;;28058:155;;;;;;:::i;:::-;;:::i;29181:328::-;;;;;;:::i;:::-;;:::i;45693:37::-;;;:::i;47468:421::-;;;;;;:::i;:::-;;:::i;48316:102::-;;;;;;:::i;:::-;;:::i;45735:30::-;;;;;;48094:122;;;;;;:::i;:::-;;:::i;28284:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;28405:25:0;;;28381:4;28405:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28284:164;5021:201;;;;;;:::i;:::-;;:::i;39386:224::-;39488:4;-1:-1:-1;;;;;;39512:50:0;;-1:-1:-1;;;39512:50:0;;:90;;;39566:36;39590:11;39566:23;:36::i;:::-;39505:97;39386:224;-1:-1:-1;;39386:224:0:o;48424:73::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;;;;;;;;;48476:6:::1;:15:::0;;-1:-1:-1;;48476:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48424:73::o;26205:100::-;26259:13;26292:5;26285:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26205:100;:::o;27765:221::-;27841:7;31108:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31108:16:0;27861:73;;;;-1:-1:-1;;;27861:73:0;;14687:2:1;27861:73:0;;;14669:21:1;14726:2;14706:18;;;14699:30;14765:34;14745:18;;;14738:62;-1:-1:-1;;;14816:18:1;;;14809:42;14868:19;;27861:73:0;14485:408:1;27861:73:0;-1:-1:-1;27954:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27954:24:0;;27765:221::o;27288:411::-;27369:13;27385:23;27400:7;27385:14;:23::i;:::-;27369:39;;27433:5;-1:-1:-1;;;;;27427:11:0;:2;-1:-1:-1;;;;;27427:11:0;;;27419:57;;;;-1:-1:-1;;;27419:57:0;;15877:2:1;27419:57:0;;;15859:21:1;15916:2;15896:18;;;15889:30;15955:34;15935:18;;;15928:62;-1:-1:-1;;;16006:18:1;;;15999:31;16047:19;;27419:57:0;15675:397:1;27419:57:0;2916:10;-1:-1:-1;;;;;27511:21:0;;;;:62;;-1:-1:-1;27536:37:0;27553:5;2916:10;28284:164;:::i;27536:37::-;27489:168;;;;-1:-1:-1;;;27489:168:0;;12381:2:1;27489:168:0;;;12363:21:1;12420:2;12400:18;;;12393:30;12459:34;12439:18;;;12432:62;12530:26;12510:18;;;12503:54;12574:19;;27489:168:0;12179:420:1;27489:168:0;27670:21;27679:2;27683:7;27670:8;:21::i;:::-;27358:341;27288:411;;:::o;28515:339::-;28710:41;2916:10;28743:7;28710:18;:41::i;:::-;28702:103;;;;-1:-1:-1;;;28702:103:0;;;;;;;:::i;:::-;28818:28;28828:4;28834:2;28838:7;28818:9;:28::i;39694:256::-;39791:7;39827:23;39844:5;39827:16;:23::i;:::-;39819:5;:31;39811:87;;;;-1:-1:-1;;;39811:87:0;;8861:2:1;39811:87:0;;;8843:21:1;8900:2;8880:18;;;8873:30;8939:34;8919:18;;;8912:62;-1:-1:-1;;;8990:18:1;;;8983:41;9041:19;;39811:87:0;8659:407:1;39811:87:0;-1:-1:-1;;;;;;39916:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39694:256::o;28925:185::-;29063:39;29080:4;29086:2;29090:7;29063:39;;;;;;;;;;;;:16;:39::i;47114:348::-;47189:16;47217:23;47243:17;47253:6;47243:9;:17::i;:::-;47217:43;;47267:25;47309:15;47295:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47295:30:0;;47267:58;;47337:9;47332:103;47352:15;47348:1;:19;47332:103;;;47397:30;47417:6;47425:1;47397:19;:30::i;:::-;47383:8;47392:1;47383:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47369:3;;;;:::i;:::-;;;;47332:103;;;-1:-1:-1;47448:8:0;47114:348;-1:-1:-1;;;47114:348:0:o;40216:233::-;40291:7;40327:30;40114:10;:17;;40026:113;40327:30;40319:5;:38;40311:95;;;;-1:-1:-1;;;40311:95:0;;16697:2:1;40311:95:0;;;16679:21:1;16736:2;16716:18;;;16709:30;16775:34;16755:18;;;16748:62;-1:-1:-1;;;16826:18:1;;;16819:42;16878:19;;40311:95:0;16495:408:1;40311:95:0;40424:10;40435:5;40424:17;;;;;;;;:::i;:::-;;;;;;;;;40417:24;;40216:233;;;:::o;47895:98::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47966:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47895:98:::0;:::o;46685:423::-;46230:13;;;;;-1:-1:-1;;;;;46230:13:0;46247:10;46230:27;;:52;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;46261:10;:21;46230:52;46222:84;;;;-1:-1:-1;;;46222:84:0;;17110:2:1;46222:84:0;;;17092:21:1;17149:2;17129:18;;;17122:30;-1:-1:-1;;;17168:18:1;;;17161:49;17227:18;;46222:84:0;16908:343:1;46222:84:0;46807:6:::1;::::0;::::1;;46806:7;:24:::0;::::1;;;-1:-1:-1::0;46818:12:0::1;::::0;::::1;::::0;::::1;;;46817:13;46806:24;46798:60;;;::::0;-1:-1:-1;;;46798:60:0;;13627:2:1;46798:60:0::1;::::0;::::1;13609:21:1::0;13666:2;13646:18;;;13639:30;-1:-1:-1;;;13685:18:1;;;13678:53;13748:18;;46798:60:0::1;13425:347:1::0;46798:60:0::1;46889:14:::0;;46955:9:::1;::::0;46950:1:::1;46922:25;46889:14:::0;46922:13;:25:::1;:::i;:::-;:29;;;;:::i;:::-;:42;;46914:73;;;::::0;-1:-1:-1;;;46914:73:0;;12034:2:1;46914:73:0::1;::::0;::::1;12016:21:1::0;12073:2;12053:18;;;12046:30;-1:-1:-1;;;12092:18:1;;;12085:48;12150:18;;46914:73:0::1;11832:342:1::0;46914:73:0::1;47003:9;46998:103;47022:9;47018:1;:13;46998:103;;;47053:36;47059:7;47067:1;47059:10;;;;;;;;:::i;:::-;;;;;;;47087:1;47071:13;:17;;;;:::i;:::-;47053:5;:36::i;:::-;47033:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46998:103;;;;46787:321;46685:423:::0;;:::o;25899:239::-;25971:7;26007:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26007:16:0;26042:19;26034:73;;;;-1:-1:-1;;;26034:73:0;;13217:2:1;26034:73:0;;;13199:21:1;13256:2;13236:18;;;13229:30;13295:34;13275:18;;;13268:62;-1:-1:-1;;;13346:18:1;;;13339:39;13395:19;;26034:73:0;13015:405:1;46434:245:0;46230:13;;;;;-1:-1:-1;;;;;46230:13:0;46247:10;46230:27;;:52;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;46261:10;:21;46230:52;46222:84;;;;-1:-1:-1;;;46222:84:0;;17110:2:1;46222:84:0;;;17092:21:1;17149:2;17129:18;;;17122:30;-1:-1:-1;;;17168:18:1;;;17161:49;17227:18;;46222:84:0;16908:343:1;46222:84:0;46495:6:::1;::::0;::::1;;46494:7;:24:::0;::::1;;;-1:-1:-1::0;46506:12:0::1;::::0;::::1;::::0;::::1;;;46505:13;46494:24;46486:60;;;::::0;-1:-1:-1;;;46486:60:0;;13627:2:1;46486:60:0::1;::::0;::::1;13609:21:1::0;13666:2;13646:18;;;13639:30;-1:-1:-1;;;13685:18:1;;;13678:53;13748:18;;46486:60:0::1;13425:347:1::0;46486:60:0::1;46553:14;46570:13;40114:10:::0;:17;;40026:113;46570:13:::1;46612:9;::::0;46553:30;;-1:-1:-1;46598:10:0::1;46553:30:::0;46607:1:::1;46598:10;:::i;:::-;:23;;46590:54;;;::::0;-1:-1:-1;;;46590:54:0;;13979:2:1;46590:54:0::1;::::0;::::1;13961:21:1::0;14018:2;13998:18;;;13991:30;-1:-1:-1;;;14037:18:1;;;14030:48;14095:18;;46590:54:0::1;13777:342:1::0;46590:54:0::1;46651:22;46657:3:::0;46662:10:::1;:6:::0;46671:1:::1;46662:10;:::i;48222:88::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48285:9:::1;:19:::0;48222:88::o;25629:208::-;25701:7;-1:-1:-1;;;;;25729:19:0;;25721:74;;;;-1:-1:-1;;;25721:74:0;;12806:2:1;25721:74:0;;;12788:21:1;12845:2;12825:18;;;12818:30;12884:34;12864:18;;;12857:62;-1:-1:-1;;;12935:18:1;;;12928:40;12985:19;;25721:74:0;12604:406:1;25721:74:0;-1:-1:-1;;;;;;25813:16:0;;;;;:9;:16;;;;;;;25629:208::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;26374:104::-;26430:13;26463:7;26456:14;;;;;:::i;47999:89::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48061:12:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;48061:21:0;;::::1;::::0;;;::::1;::::0;;47999:89::o;28058:155::-;28153:52;2916:10;28186:8;28196;28153:18;:52::i;29181:328::-;29356:41;2916:10;29389:7;29356:18;:41::i;:::-;29348:103;;;;-1:-1:-1;;;29348:103:0;;;;;;;:::i;:::-;29462:39;29476:4;29482:2;29486:7;29495:5;29462:13;:39::i;45693:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47468:421::-;31084:4;31108:16;;;:7;:16;;;;;;47566:13;;-1:-1:-1;;;;;31108:16:0;47591:97;;;;-1:-1:-1;;;47591:97:0;;15461:2:1;47591:97:0;;;15443:21:1;15500:2;15480:18;;;15473:30;15539:34;15519:18;;;15512:62;-1:-1:-1;;;15590:18:1;;;15583:45;15645:19;;47591:97:0;15259:411:1;47591:97:0;47695:28;47726:10;:8;:10::i;:::-;47695:41;;47781:1;47756:14;47750:28;:32;:133;;;;;;;;;;;;;;;;;47818:14;47834:18;:7;:16;:18::i;:::-;47854:13;47801:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47750:133;47743:140;47468:421;-1:-1:-1;;;47468:421:0:o;48316:102::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48386:13:::1;:26:::0;;-1:-1:-1;;;;;48386:26:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;48386:26:0;;::::1;::::0;;;::::1;::::0;;48316:102::o;48094:122::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48177:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;5021:201::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;9692:2:1;5102:73:0::1;::::0;::::1;9674:21:1::0;9731:2;9711:18;;;9704:30;9770:34;9750:18;;;9743:62;-1:-1:-1;;;9821:18:1;;;9814:36;9867:19;;5102:73:0::1;9490:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;25260:305::-;25362:4;-1:-1:-1;;;;;;25399:40:0;;-1:-1:-1;;;25399:40:0;;:105;;-1:-1:-1;;;;;;;25456:48:0;;-1:-1:-1;;;25456:48:0;25399:105;:158;;;-1:-1:-1;;;;;;;;;;17028:40:0;;;25521:36;16919:157;35165:174;35240:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35240:29:0;-1:-1:-1;;;;;35240:29:0;;;;;;;;:24;;35294:23;35240:24;35294:14;:23::i;:::-;-1:-1:-1;;;;;35285:46:0;;;;;;;;;;;35165:174;;:::o;31313:348::-;31406:4;31108:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31108:16:0;31423:73;;;;-1:-1:-1;;;31423:73:0;;11621:2:1;31423:73:0;;;11603:21:1;11660:2;11640:18;;;11633:30;11699:34;11679:18;;;11672:62;-1:-1:-1;;;11750:18:1;;;11743:42;11802:19;;31423:73:0;11419:408:1;31423:73:0;31507:13;31523:23;31538:7;31523:14;:23::i;:::-;31507:39;;31576:5;-1:-1:-1;;;;;31565:16:0;:7;-1:-1:-1;;;;;31565:16:0;;:52;;;-1:-1:-1;;;;;;28405:25:0;;;28381:4;28405:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31585:32;31565:87;;;;31645:7;-1:-1:-1;;;;;31621:31:0;:20;31633:7;31621:11;:20::i;:::-;-1:-1:-1;;;;;31621:31:0;;31565:87;31557:96;31313:348;-1:-1:-1;;;;31313:348:0:o;34422:625::-;34581:4;-1:-1:-1;;;;;34554:31:0;:23;34569:7;34554:14;:23::i;:::-;-1:-1:-1;;;;;34554:31:0;;34546:81;;;;-1:-1:-1;;;34546:81:0;;10099:2:1;34546:81:0;;;10081:21:1;10138:2;10118:18;;;10111:30;10177:34;10157:18;;;10150:62;-1:-1:-1;;;10228:18:1;;;10221:35;10273:19;;34546:81:0;9897:401:1;34546:81:0;-1:-1:-1;;;;;34646:16:0;;34638:65;;;;-1:-1:-1;;;34638:65:0;;10862:2:1;34638:65:0;;;10844:21:1;10901:2;10881:18;;;10874:30;10940:34;10920:18;;;10913:62;-1:-1:-1;;;10991:18:1;;;10984:34;11035:19;;34638:65:0;10660:400:1;34638:65:0;34716:39;34737:4;34743:2;34747:7;34716:20;:39::i;:::-;34820:29;34837:1;34841:7;34820:8;:29::i;:::-;-1:-1:-1;;;;;34862:15:0;;;;;;:9;:15;;;;;:20;;34881:1;;34862:15;:20;;34881:1;;34862:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34893:13:0;;;;;;:9;:13;;;;;:18;;34910:1;;34893:13;:18;;34910:1;;34893:18;:::i;:::-;;;;-1:-1:-1;;34922:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34922:21:0;-1:-1:-1;;;;;34922:21:0;;;;;;;;;34961:27;;34922:16;;34961:27;;;;;;;27358:341;27288:411;;:::o;32997:439::-;-1:-1:-1;;;;;33077:16:0;;33069:61;;;;-1:-1:-1;;;33069:61:0;;14326:2:1;33069:61:0;;;14308:21:1;;;14345:18;;;14338:30;14404:34;14384:18;;;14377:62;14456:18;;33069:61:0;14124:356:1;33069:61:0;31084:4;31108:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31108:16:0;:30;33141:58;;;;-1:-1:-1;;;33141:58:0;;10505:2:1;33141:58:0;;;10487:21:1;10544:2;10524:18;;;10517:30;10583;10563:18;;;10556:58;10631:18;;33141:58:0;10303:352:1;33141:58:0;33212:45;33241:1;33245:2;33249:7;33212:20;:45::i;:::-;-1:-1:-1;;;;;33270:13:0;;;;;;:9;:13;;;;;:18;;33287:1;;33270:13;:18;;33287:1;;33270:18;:::i;:::-;;;;-1:-1:-1;;33299:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33299:21:0;-1:-1:-1;;;;;33299:21:0;;;;;;;;33338:33;;33299:16;;;33338:33;;33299:16;;33338:33;47966:21:::1;47895:98:::0;:::o;5382:191::-;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;35481:315::-;35636:8;-1:-1:-1;;;;;35627:17:0;:5;-1:-1:-1;;;;;35627:17:0;;;35619:55;;;;-1:-1:-1;;;35619:55:0;;11267:2:1;35619:55:0;;;11249:21:1;11306:2;11286:18;;;11279:30;11345:27;11325:18;;;11318:55;11390:18;;35619:55:0;11065:349:1;35619:55:0;-1:-1:-1;;;;;35685:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35685:46:0;;;;;;;;;;35747:41;;8383::1;;;35747::0;;8356:18:1;35747:41:0;;;;;;;35481:315;;;:::o;30391:::-;30548:28;30558:4;30564:2;30568:7;30548:9;:28::i;:::-;30595:48;30618:4;30624:2;30628:7;30637:5;30595:22;:48::i;:::-;30587:111;;;;-1:-1:-1;;;30587:111:0;;;;;;;:::i;46326:102::-;46386:13;46415:7;46408:14;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;41062:589;-1:-1:-1;;;;;41268:18:0;;41264:187;;41303:40;41335:7;42478:10;:17;;42451:24;;;;:15;:24;;;;;:44;;;42506:24;;;;;;;;;;;;42374:164;41303:40;41264:187;;;41373:2;-1:-1:-1;;;;;41365:10:0;:4;-1:-1:-1;;;;;41365:10:0;;41361:90;;41392:47;41425:4;41431:7;41392:32;:47::i;:::-;-1:-1:-1;;;;;41465:16:0;;41461:183;;41498:45;41535:7;41498:36;:45::i;41461:183::-;41571:4;-1:-1:-1;;;;;41565:10:0;:2;-1:-1:-1;;;;;41565:10:0;;41561:83;;41592:40;41620:2;41624:7;41592:27;:40::i;36361:799::-;36516:4;-1:-1:-1;;;;;36537:13:0;;7108:19;:23;36533:620;;36573:72;;-1:-1:-1;;;36573:72:0;;-1:-1:-1;;;;;36573:36:0;;;;;:72;;2916:10;;36624:4;;36630:7;;36639:5;;36573:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36573:72:0;;;;;;;;-1:-1:-1;;36573:72:0;;;;;;;;;;;;:::i;:::-;;;36569:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36815:13:0;;36811:272;;36858:60;;-1:-1:-1;;;36858:60:0;;;;;;;:::i;36811:272::-;37033:6;37027:13;37018:6;37014:2;37010:15;37003:38;36569:529;-1:-1:-1;;;;;;36696:51:0;-1:-1:-1;;;36696:51:0;;-1:-1:-1;36689:58:0;;36533:620;-1:-1:-1;37137:4:0;36361:799;;;;;;:::o;43165:988::-;43431:22;43481:1;43456:22;43473:4;43456:16;:22::i;:::-;:26;;;;:::i;:::-;43493:18;43514:26;;;:17;:26;;;;;;43431:51;;-1:-1:-1;43647:28:0;;;43643:328;;-1:-1:-1;;;;;43714:18:0;;43692:19;43714:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43765:30;;;;;;:44;;;43882:30;;:17;:30;;;;;:43;;;43643:328;-1:-1:-1;44067:26:0;;;;:17;:26;;;;;;;;44060:33;;;-1:-1:-1;;;;;44111:18:0;;;;;:12;:18;;;;;:34;;;;;;;44104:41;43165:988::o;44448:1079::-;44726:10;:17;44701:22;;44726:21;;44746:1;;44726:21;:::i;:::-;44758:18;44779:24;;;:15;:24;;;;;;45152:10;:26;;44701:46;;-1:-1:-1;44779:24:0;;44701:46;;45152:26;;;;;;:::i;:::-;;;;;;;;;45130:48;;45216:11;45191:10;45202;45191:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45296:28;;;:15;:28;;;;;;;:41;;;45468:24;;;;;45461:31;45503:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44519:1008;;;44448:1079;:::o;41952:221::-;42037:14;42054:20;42071:2;42054:16;:20::i;:::-;-1:-1:-1;;;;;42085:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42130:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41952:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:180::-;2802:6;2855:2;2843:9;2834:7;2830:23;2826:32;2823:52;;;2871:1;2868;2861:12;2823:52;2894:26;2910:9;2894:26;:::i;2931:245::-;2989:6;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3097:9;3084:23;3116:30;3140:5;3116:30;:::i;3181:249::-;3250:6;3303:2;3291:9;3282:7;3278:23;3274:32;3271:52;;;3319:1;3316;3309:12;3271:52;3351:9;3345:16;3370:30;3394:5;3370:30;:::i;3435:450::-;3504:6;3557:2;3545:9;3536:7;3532:23;3528:32;3525:52;;;3573:1;3570;3563:12;3525:52;3613:9;3600:23;3646:18;3638:6;3635:30;3632:50;;;3678:1;3675;3668:12;3632:50;3701:22;;3754:4;3746:13;;3742:27;-1:-1:-1;3732:55:1;;3783:1;3780;3773:12;3732:55;3806:73;3871:7;3866:2;3853:16;3848:2;3844;3840:11;3806:73;:::i;3890:180::-;3949:6;4002:2;3990:9;3981:7;3977:23;3973:32;3970:52;;;4018:1;4015;4008:12;3970:52;-1:-1:-1;4041:23:1;;3890:180;-1:-1:-1;3890:180:1:o;4075:1031::-;4168:6;4176;4229:2;4217:9;4208:7;4204:23;4200:32;4197:52;;;4245:1;4242;4235:12;4197:52;4281:9;4268:23;4258:33;;4310:2;4363;4352:9;4348:18;4335:32;4386:18;4427:2;4419:6;4416:14;4413:34;;;4443:1;4440;4433:12;4413:34;4481:6;4470:9;4466:22;4456:32;;4526:7;4519:4;4515:2;4511:13;4507:27;4497:55;;4548:1;4545;4538:12;4497:55;4584:2;4571:16;4606:2;4602;4599:10;4596:36;;;4612:18;;:::i;:::-;4658:2;4655:1;4651:10;4641:20;;4681:28;4705:2;4701;4697:11;4681:28;:::i;:::-;4743:15;;;4774:12;;;;4806:11;;;4836;;;4832:20;;4829:33;-1:-1:-1;4826:53:1;;;4875:1;4872;4865:12;4826:53;4897:1;4888:10;;4907:169;4921:2;4918:1;4915:9;4907:169;;;4978:23;4997:3;4978:23;:::i;:::-;4966:36;;4939:1;4932:9;;;;;5022:12;;;;5054;;4907:169;;;4911:3;5095:5;5085:15;;;;;;;;4075:1031;;;;;:::o;5111:257::-;5152:3;5190:5;5184:12;5217:6;5212:3;5205:19;5233:63;5289:6;5282:4;5277:3;5273:14;5266:4;5259:5;5255:16;5233:63;:::i;:::-;5350:2;5329:15;-1:-1:-1;;5325:29:1;5316:39;;;;5357:4;5312:50;;5111:257;-1:-1:-1;;5111:257:1:o;5373:1527::-;5597:3;5635:6;5629:13;5661:4;5674:51;5718:6;5713:3;5708:2;5700:6;5696:15;5674:51;:::i;:::-;5788:13;;5747:16;;;;5810:55;5788:13;5747:16;5832:15;;;5810:55;:::i;:::-;5954:13;;5887:20;;;5927:1;;6014;6036:18;;;;6089;;;;6116:93;;6194:4;6184:8;6180:19;6168:31;;6116:93;6257:2;6247:8;6244:16;6224:18;6221:40;6218:167;;;-1:-1:-1;;;6284:33:1;;6340:4;6337:1;6330:15;6370:4;6291:3;6358:17;6218:167;6401:18;6428:110;;;;6552:1;6547:328;;;;6394:481;;6428:110;-1:-1:-1;;6463:24:1;;6449:39;;6508:20;;;;-1:-1:-1;6428:110:1;;6547:328;17791:1;17784:14;;;17828:4;17815:18;;6642:1;6656:169;6670:8;6667:1;6664:15;6656:169;;;6752:14;;6737:13;;;6730:37;6795:16;;;;6687:10;;6656:169;;;6660:3;;6856:8;6849:5;6845:20;6838:27;;6394:481;-1:-1:-1;6891:3:1;;5373:1527;-1:-1:-1;;;;;;;;;;;5373:1527:1:o;7113:488::-;-1:-1:-1;;;;;7382:15:1;;;7364:34;;7434:15;;7429:2;7414:18;;7407:43;7481:2;7466:18;;7459:34;;;7529:3;7524:2;7509:18;;7502:31;;;7307:4;;7550:45;;7575:19;;7567:6;7550:45;:::i;:::-;7542:53;7113:488;-1:-1:-1;;;;;;7113:488:1:o;7606:632::-;7777:2;7829:21;;;7899:13;;7802:18;;;7921:22;;;7748:4;;7777:2;8000:15;;;;7974:2;7959:18;;;7748:4;8043:169;8057:6;8054:1;8051:13;8043:169;;;8118:13;;8106:26;;8187:15;;;;8152:12;;;;8079:1;8072:9;8043:169;;;-1:-1:-1;8229:3:1;;7606:632;-1:-1:-1;;;;;;7606:632:1:o;8435:219::-;8584:2;8573:9;8566:21;8547:4;8604:44;8644:2;8633:9;8629:18;8621:6;8604:44;:::i;9071:414::-;9273:2;9255:21;;;9312:2;9292:18;;;9285:30;9351:34;9346:2;9331:18;;9324:62;-1:-1:-1;;;9417:2:1;9402:18;;9395:48;9475:3;9460:19;;9071:414::o;14898:356::-;15100:2;15082:21;;;15119:18;;;15112:30;15178:34;15173:2;15158:18;;15151:62;15245:2;15230:18;;14898:356::o;16077:413::-;16279:2;16261:21;;;16318:2;16298:18;;;16291:30;16357:34;16352:2;16337:18;;16330:62;-1:-1:-1;;;16423:2:1;16408:18;;16401:47;16480:3;16465:19;;16077:413::o;17438:275::-;17509:2;17503:9;17574:2;17555:13;;-1:-1:-1;;17551:27:1;17539:40;;17609:18;17594:34;;17630:22;;;17591:62;17588:88;;;17656:18;;:::i;:::-;17692:2;17685:22;17438:275;;-1:-1:-1;17438:275:1:o;17844:128::-;17884:3;17915:1;17911:6;17908:1;17905:13;17902:39;;;17921:18;;:::i;:::-;-1:-1:-1;17957:9:1;;17844:128::o;17977:120::-;18017:1;18043;18033:35;;18048:18;;:::i;:::-;-1:-1:-1;18082:9:1;;17977:120::o;18102:125::-;18142:4;18170:1;18167;18164:8;18161:34;;;18175:18;;:::i;:::-;-1:-1:-1;18212:9:1;;18102:125::o;18232:258::-;18304:1;18314:113;18328:6;18325:1;18322:13;18314:113;;;18404:11;;;18398:18;18385:11;;;18378:39;18350:2;18343:10;18314:113;;;18445:6;18442:1;18439:13;18436:48;;;-1:-1:-1;;18480:1:1;18462:16;;18455:27;18232:258::o;18495:380::-;18574:1;18570:12;;;;18617;;;18638:61;;18692:4;18684:6;18680:17;18670:27;;18638:61;18745:2;18737:6;18734:14;18714:18;18711:38;18708:161;;;18791:10;18786:3;18782:20;18779:1;18772:31;18826:4;18823:1;18816:15;18854:4;18851:1;18844:15;18708:161;;18495:380;;;:::o;18880:135::-;18919:3;-1:-1:-1;;18940:17:1;;18937:43;;;18960:18;;:::i;:::-;-1:-1:-1;19007:1:1;18996:13;;18880:135::o;19020:112::-;19052:1;19078;19068:35;;19083:18;;:::i;:::-;-1:-1:-1;19117:9:1;;19020:112::o;19137:127::-;19198:10;19193:3;19189:20;19186:1;19179:31;19229:4;19226:1;19219:15;19253:4;19250:1;19243:15;19269:127;19330:10;19325:3;19321:20;19318:1;19311:31;19361:4;19358:1;19351:15;19385:4;19382:1;19375:15;19401:127;19462:10;19457:3;19453:20;19450:1;19443:31;19493:4;19490:1;19483:15;19517:4;19514:1;19507:15;19533:127;19594:10;19589:3;19585:20;19582:1;19575:31;19625:4;19622:1;19615:15;19649:4;19646:1;19639:15;19665:127;19726:10;19721:3;19717:20;19714:1;19707:31;19757:4;19754:1;19747:15;19781:4;19778:1;19771:15;19797:131;-1:-1:-1;;;;;;19871:32:1;;19861:43;;19851:71;;19918:1;19915;19908:12

Swarm Source

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

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