ETH Price: $3,313.71 (-3.50%)
Gas: 21 Gwei

Token

Quantums by CryptoKing$ (QNTM)
 

Overview

Max Total Supply

23 QNTM

Holders

21

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 QNTM
0x15022e7cd2be44043ce5560c4a6a0c8c3e2fd9d3
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:
QuantumsByCryptoKing$

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-09
*/

/* SPDX-License-Identifier: None

Contents: Philipp Plein NFT Collection - Quantums by CryptoKing$
Notes: Supports Generic ERC-721 standard as well as custom minting logic.
Author: @0xHiR0
Last Edit Date: 08/12/2022

*/


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


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

pragma solidity ^0.8.0;

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


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


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


// OpenZeppelin Contracts (last updated v4.7.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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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);
}


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


// OpenZeppelin Contracts (last updated v4.7.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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        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);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _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.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _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);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any (single) token transfer. This includes minting and burning.
     * See {_beforeConsecutiveTokenTransfer}.
     *
     * 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 (single) transfer of tokens. This includes minting and burning.
     * See {_afterConsecutiveTokenTransfer}.
     *
     * 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 {}

    /**
     * @dev Hook that is called before consecutive token transfers.
     * Calling conditions are similar to {_beforeTokenTransfer}.
     *
     * The default implementation include balances updates that extensions such as {ERC721Consecutive} cannot perform
     * directly.
     */
    function _beforeConsecutiveTokenTransfer(
        address from,
        address to,
        uint256, /*first*/
        uint96 size
    ) internal virtual {
        if (from != address(0)) {
            _balances[from] -= size;
        }
        if (to != address(0)) {
            _balances[to] += size;
        }
    }

    /**
     * @dev Hook that is called after consecutive token transfers.
     * Calling conditions are similar to {_afterTokenTransfer}.
     */
    function _afterConsecutiveTokenTransfer(
        address, /*from*/
        address, /*to*/
        uint256, /*first*/
        uint96 /*size*/
    ) internal virtual {}
}


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}


// Project Opensea Operator Filter Registry contracts (last updated v1.3.1) (operator-filter-registry/src/IOperatorFilterRegistry.sol)

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}


// Project Opensea Operator Filter Registry contracts (last updated v1.3.1) (operator-filter-registry/src/OperatorFilterer.sol)

pragma solidity ^0.8.13;

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}


// Project Opensea Operator Filter Registry contracts (last updated v1.3.1) (operator-filter-registry/src/DefaultOperatorFilterer.sol)

pragma solidity ^0.8.13;

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}


// Quantums by CryptoKing$ core contract (contracts/QuantumsByCryptoKing$.sol)

pragma solidity ^0.8.0;

/**
 * @title Quantums by CryptoKing$ core contract implemets custom minting logic
 * @dev Extends ERC721 implementation
 */

contract QuantumsByCryptoKing$ is ERC721, DefaultOperatorFilterer, Ownable {

    uint64 private constant MAX_SILVER_TOKEN_ID = 500;
    uint64 private constant MAX_PURPLE_TOKEN_ID = 1000;
    uint64 private nextSilverTokenId = 1;
    uint64 private nextPurpleTokenId = 501;

    address private minter;

    string private _contractBaseURI;

    bool private mintIsOpen = true;

    error TokenOutOfSupply();
    error CantMintToZeroAddress();
    error MintStateFreezed();
    error OnlyMinterCanMint();

    modifier onlyMinter() {
        if (_msgSender() != minter) revert OnlyMinterCanMint();
        _;
    }

    constructor(string memory name_, string memory symbol_, string memory baseURI, address minterAddress)
        ERC721(name_, symbol_) {
        setBaseURI(baseURI);
        minter = minterAddress;
    }

    /**
    *   Function for contract owner to freeze mint state when sale will be closed (can't be unfreezed).
    */
    function freezeMintState() external onlyOwner() {
        if (mintIsOpen == false) revert MintStateFreezed();
        mintIsOpen = false;
    }

    /**
    *   Function for contract owner to change minter address.
    */
    function setNewMinter(address minterAddress) external onlyOwner() {
        minter = minterAddress;
    }

    /**
    *   Mint silver token function for contract owner.
    */
    function mintSilverToken(address to) external onlyMinter() {
        if (to == address(0)) revert CantMintToZeroAddress();
        if (nextSilverTokenId > MAX_SILVER_TOKEN_ID)
            revert TokenOutOfSupply();

        _safeMint(to, nextSilverTokenId);
        
        unchecked{
            nextSilverTokenId += 1;
        }
    }

    /**
    *   Mint purple token function for contract owner.
    */
    function mintPurpleToken(address to) external onlyMinter() {
        if (to == address(0)) revert CantMintToZeroAddress();
        if (nextPurpleTokenId > MAX_PURPLE_TOKEN_ID)
            revert TokenOutOfSupply();

        _safeMint(to, nextPurpleTokenId);

        unchecked{
            nextPurpleTokenId += 1;
        }
    }

    function withdrawEthereum() external onlyOwner() {
        payable(owner()).transfer(address(this).balance);
    }

    function rescueToken(IERC20 token) external onlyOwner() {
        token.approve(owner(), type(uint256).max);
    }

    /**
    *   Set of overriden ERC721 functions with provided modifiers to correspond to New Opensea Operator Filter Registry standard
    */
    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

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

    function supportsInterface(bytes4 interfaceId) public view override(ERC721) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        string memory _tokenURI = super.tokenURI(tokenId);
        return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : "";
    }

    function totalSupply() public view returns (uint256) {
        uint256 supply = nextSilverTokenId + nextPurpleTokenId - 502;
        return supply;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"minterAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CantMintToZeroAddress","type":"error"},{"inputs":[],"name":"MintStateFreezed","type":"error"},{"inputs":[],"name":"OnlyMinterCanMint","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"TokenOutOfSupply","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"freezeMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintPurpleToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintSilverToken","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"rescueToken","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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minterAddress","type":"address"}],"name":"setNewMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEthereum","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260068054600160a01b600160e01b031916600160a01b179055600780546001600160401b0319166101f51790556009805460ff191660011790553480156200004b57600080fd5b50604051620021e5380380620021e58339810160408190526200006e9162000498565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001858581600090805190602001906200009f92919062000325565b508051620000b590600190602084019062000325565b5050506daaeb6d7670e522a718067333cd4e3b15620001fd5780156200014b57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200012c57600080fd5b505af115801562000141573d6000803e3d6000fd5b50505050620001fd565b6001600160a01b038216156200019c5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000111565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001e357600080fd5b505af1158015620001f8573d6000803e3d6000fd5b505050505b506200020b9050336200024f565b6200021682620002a1565b600780546001600160a01b039092166801000000000000000002600160401b600160e01b03199092169190911790555062000587915050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002ab620002c4565b8051620002c090600890602084019062000325565b5050565b6006546001600160a01b03163314620003235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b82805462000333906200054b565b90600052602060002090601f016020900481019282620003575760008555620003a2565b82601f106200037257805160ff1916838001178555620003a2565b82800160010185558215620003a2579182015b82811115620003a257825182559160200191906001019062000385565b50620003b0929150620003b4565b5090565b5b80821115620003b05760008155600101620003b5565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003f357600080fd5b81516001600160401b0380821115620004105762000410620003cb565b604051601f8301601f19908116603f011681019082821181831017156200043b576200043b620003cb565b816040528381526020925086838588010111156200045857600080fd5b600091505b838210156200047c57858201830151818301840152908201906200045d565b838211156200048e5760008385830101525b9695505050505050565b60008060008060808587031215620004af57600080fd5b84516001600160401b0380821115620004c757600080fd5b620004d588838901620003e1565b95506020870151915080821115620004ec57600080fd5b620004fa88838901620003e1565b945060408701519150808211156200051157600080fd5b506200052087828801620003e1565b606087015190935090506001600160a01b03811681146200054057600080fd5b939692955090935050565b600181811c908216806200056057607f821691505b6020821081036200058157634e487b7160e01b600052602260045260246000fd5b50919050565b611c4e80620005976000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063b88d4fde11610097578063e985e9c511610071578063e985e9c51461031a578063f1b7ed1514610356578063f2fde38b1461035e578063f8bb90e51461037157600080fd5b8063b88d4fde146102e1578063c8185d6f146102f4578063c87b56dd1461030757600080fd5b806370a0823114610292578063715018a6146102a55780638da5cb5b146102ad57806395d89b41146102be5780639cfb8bb3146102c6578063a22cb465146102ce57600080fd5b806341f434341161013057806341f434341461021e57806342842e0e146102335780634460d3cf1461024657806348af6b151461025957806355f804b31461026c5780636352211e1461027f57600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e057806318160ddd146101f557806323b872dd1461020b575b600080fd5b61018b610186366004611628565b610384565b60405190151581526020015b60405180910390f35b6101a8610395565b604051610197919061169d565b6101c86101c33660046116b0565b610427565b6040516001600160a01b039091168152602001610197565b6101f36101ee3660046116de565b61044e565b005b6101fd610467565b604051908152602001610197565b6101f361021936600461170a565b6104ad565b6101c86daaeb6d7670e522a718067333cd4e81565b6101f361024136600461170a565b6104d8565b6101f361025436600461174b565b6104fd565b6101f361026736600461174b565b61059c565b6101f361027a3660046117f3565b6105d5565b6101c861028d3660046116b0565b6105f0565b6101fd6102a036600461174b565b610655565b6101f36106db565b6006546001600160a01b03166101c8565b6101a86106ef565b6101f36106fe565b6101f36102dc366004611849565b61073a565b6101f36102ef366004611882565b61074e565b6101f361030236600461174b565b61077b565b6101a86103153660046116b0565b61084a565b61018b610328366004611901565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101f361089f565b6101f361036c36600461174b565b6108e3565b6101f361037f36600461174b565b610959565b600061038f82610a42565b92915050565b6060600080546103a49061192f565b80601f01602080910402602001604051908101604052809291908181526020018280546103d09061192f565b801561041d5780601f106103f25761010080835404028352916020019161041d565b820191906000526020600020905b81548152906001019060200180831161040057829003601f168201915b5050505050905090565b600061043282610a92565b506000908152600460205260409020546001600160a01b031690565b8161045881610af1565b6104628383610baa565b505050565b60075460065460009182916101f691610494916001600160401b0391821691600160a01b9091041661197f565b61049e91906119aa565b6001600160401b031692915050565b826001600160a01b03811633146104c7576104c733610af1565b6104d2848484610cba565b50505050565b826001600160a01b03811633146104f2576104f233610af1565b6104d2848484610ceb565b610505610d06565b806001600160a01b031663095ea7b36105266006546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260001960248201526044016020604051808303816000875af1158015610574573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059891906119d2565b5050565b6105a4610d06565b600780546001600160a01b03909216600160401b0268010000000000000000600160e01b0319909216919091179055565b6105dd610d06565b8051610598906008906020840190611579565b6000818152600260205260408120546001600160a01b03168061038f5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064015b60405180910390fd5b60006001600160a01b0382166106bf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161064c565b506001600160a01b031660009081526003602052604090205490565b6106e3610d06565b6106ed6000610d60565b565b6060600180546103a49061192f565b610706610d06565b60095460ff16151560000361072e57604051638fb000ff60e01b815260040160405180910390fd5b6009805460ff19169055565b8161074481610af1565b6104628383610db2565b836001600160a01b03811633146107685761076833610af1565b61077485858585610dbd565b5050505050565b600754600160401b90046001600160a01b0316336001600160a01b0316146107b65760405163045241dd60e01b815260040160405180910390fd5b6001600160a01b0381166107dd57604051630a2858e560e01b815260040160405180910390fd5b6007546103e86001600160401b03909116111561080d5760405163ddff8fa760e01b815260040160405180910390fd5b6007546108249082906001600160401b0316610def565b50600780546001600160401b038082166001011667ffffffffffffffff19909116179055565b6060600061085783610e09565b905060008151116108775760405180602001604052806000815250610898565b8060405160200161088891906119ef565b6040516020818303038152906040525b9392505050565b6108a7610d06565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108e0573d6000803e3d6000fd5b50565b6108eb610d06565b6001600160a01b0381166109505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064c565b6108e081610d60565b600754600160401b90046001600160a01b0316336001600160a01b0316146109945760405163045241dd60e01b815260040160405180910390fd5b6001600160a01b0381166109bb57604051630a2858e560e01b815260040160405180910390fd5b6006546101f4600160a01b9091046001600160401b031611156109f15760405163ddff8fa760e01b815260040160405180910390fd5b600654610a0f908290600160a01b90046001600160401b0316610def565b50600680546001600160401b03600160a01b80830482166001019091160267ffffffffffffffff60a01b19909116179055565b60006001600160e01b031982166380ac58cd60e01b1480610a7357506001600160e01b03198216635b5e139f60e01b145b8061038f57506301ffc9a760e01b6001600160e01b031983161461038f565b6000818152600260205260409020546001600160a01b03166108e05760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161064c565b6daaeb6d7670e522a718067333cd4e3b156108e057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8291906119d2565b6108e057604051633b79c77360e21b81526001600160a01b038216600482015260240161064c565b6000610bb5826105f0565b9050806001600160a01b0316836001600160a01b031603610c225760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161064c565b336001600160a01b0382161480610c3e5750610c3e8133610328565b610cb05760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161064c565b6104628383610e59565b610cc43382610ec7565b610ce05760405162461bcd60e51b815260040161064c90611a18565b610462838383610f46565b6104628383836040518060200160405280600081525061074e565b6006546001600160a01b031633146106ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161064c565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6105983383836110aa565b610dc73383610ec7565b610de35760405162461bcd60e51b815260040161064c90611a18565b6104d284848484611178565b6105988282604051806020016040528060008152506111ab565b6060610e1482610a92565b6000610e1e6111de565b90506000815111610e3e5760405180602001604052806000815250610898565b80610e48846111ed565b604051602001610888929190611a65565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e8e826105f0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ed3836105f0565b9050806001600160a01b0316846001600160a01b03161480610f1a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610f3e5750836001600160a01b0316610f3384610427565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f59826105f0565b6001600160a01b031614610f7f5760405162461bcd60e51b815260040161064c90611a8b565b6001600160a01b038216610fe15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161064c565b826001600160a01b0316610ff4826105f0565b6001600160a01b03161461101a5760405162461bcd60e51b815260040161064c90611a8b565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b03160361110b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161064c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611183848484610f46565b61118f848484846112ed565b6104d25760405162461bcd60e51b815260040161064c90611ad0565b6111b583836113ee565b6111c260008484846112ed565b6104625760405162461bcd60e51b815260040161064c90611ad0565b6060600880546103a49061192f565b6060816000036112145750506040805180820190915260018152600360fc1b602082015290565b8160005b811561123e578061122881611b22565b91506112379050600a83611b51565b9150611218565b6000816001600160401b0381111561125857611258611768565b6040519080825280601f01601f191660200182016040528015611282576020820181803683370190505b5090505b8415610f3e57611297600183611b65565b91506112a4600a86611b7c565b6112af906030611b90565b60f81b8183815181106112c4576112c4611ba8565b60200101906001600160f81b031916908160001a9053506112e6600a86611b51565b9450611286565b60006001600160a01b0384163b156113e357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611331903390899088908890600401611bbe565b6020604051808303816000875af192505050801561136c575060408051601f3d908101601f1916820190925261136991810190611bfb565b60015b6113c9573d80801561139a576040519150601f19603f3d011682016040523d82523d6000602084013e61139f565b606091505b5080516000036113c15760405162461bcd60e51b815260040161064c90611ad0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f3e565b506001949350505050565b6001600160a01b0382166114445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161064c565b6000818152600260205260409020546001600160a01b0316156114a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161064c565b6000818152600260205260409020546001600160a01b03161561150e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161064c565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546115859061192f565b90600052602060002090601f0160209004810192826115a757600085556115ed565b82601f106115c057805160ff19168380011785556115ed565b828001600101855582156115ed579182015b828111156115ed5782518255916020019190600101906115d2565b506115f99291506115fd565b5090565b5b808211156115f957600081556001016115fe565b6001600160e01b0319811681146108e057600080fd5b60006020828403121561163a57600080fd5b813561089881611612565b60005b83811015611660578181015183820152602001611648565b838111156104d25750506000910152565b60008151808452611689816020860160208601611645565b601f01601f19169290920160200192915050565b6020815260006108986020830184611671565b6000602082840312156116c257600080fd5b5035919050565b6001600160a01b03811681146108e057600080fd5b600080604083850312156116f157600080fd5b82356116fc816116c9565b946020939093013593505050565b60008060006060848603121561171f57600080fd5b833561172a816116c9565b9250602084013561173a816116c9565b929592945050506040919091013590565b60006020828403121561175d57600080fd5b8135610898816116c9565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561179857611798611768565b604051601f8501601f19908116603f011681019082821181831017156117c0576117c0611768565b816040528093508581528686860111156117d957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561180557600080fd5b81356001600160401b0381111561181b57600080fd5b8201601f8101841361182c57600080fd5b610f3e8482356020840161177e565b80151581146108e057600080fd5b6000806040838503121561185c57600080fd5b8235611867816116c9565b915060208301356118778161183b565b809150509250929050565b6000806000806080858703121561189857600080fd5b84356118a3816116c9565b935060208501356118b3816116c9565b92506040850135915060608501356001600160401b038111156118d557600080fd5b8501601f810187136118e657600080fd5b6118f58782356020840161177e565b91505092959194509250565b6000806040838503121561191457600080fd5b823561191f816116c9565b91506020830135611877816116c9565b600181811c9082168061194357607f821691505b60208210810361196357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60006001600160401b038083168185168083038211156119a1576119a1611969565b01949350505050565b60006001600160401b03838116908316818110156119ca576119ca611969565b039392505050565b6000602082840312156119e457600080fd5b81516108988161183b565b60008251611a01818460208701611645565b64173539b7b760d91b920191825250600501919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60008351611a77818460208801611645565b8351908301906119a1818360208801611645565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060018201611b3457611b34611969565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611b6057611b60611b3b565b500490565b600082821015611b7757611b77611969565b500390565b600082611b8b57611b8b611b3b565b500690565b60008219821115611ba357611ba3611969565b500190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bf190830184611671565b9695505050505050565b600060208284031215611c0d57600080fd5b81516108988161161256fea26469706673582212202aeb4a1677b884512f98b6a2b441516c613012e33323d20d39ddbe044756de3364736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c867286a97aa94aab0920289851a59bee9d2495a00000000000000000000000000000000000000000000000000000000000000175175616e74756d732062792043727970746f4b696e67240000000000000000000000000000000000000000000000000000000000000000000000000000000004514e544d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f7374617469632e6d6f6e612e6172742f7175616e74756d732f746f6b656e49445f0000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063b88d4fde11610097578063e985e9c511610071578063e985e9c51461031a578063f1b7ed1514610356578063f2fde38b1461035e578063f8bb90e51461037157600080fd5b8063b88d4fde146102e1578063c8185d6f146102f4578063c87b56dd1461030757600080fd5b806370a0823114610292578063715018a6146102a55780638da5cb5b146102ad57806395d89b41146102be5780639cfb8bb3146102c6578063a22cb465146102ce57600080fd5b806341f434341161013057806341f434341461021e57806342842e0e146102335780634460d3cf1461024657806348af6b151461025957806355f804b31461026c5780636352211e1461027f57600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e057806318160ddd146101f557806323b872dd1461020b575b600080fd5b61018b610186366004611628565b610384565b60405190151581526020015b60405180910390f35b6101a8610395565b604051610197919061169d565b6101c86101c33660046116b0565b610427565b6040516001600160a01b039091168152602001610197565b6101f36101ee3660046116de565b61044e565b005b6101fd610467565b604051908152602001610197565b6101f361021936600461170a565b6104ad565b6101c86daaeb6d7670e522a718067333cd4e81565b6101f361024136600461170a565b6104d8565b6101f361025436600461174b565b6104fd565b6101f361026736600461174b565b61059c565b6101f361027a3660046117f3565b6105d5565b6101c861028d3660046116b0565b6105f0565b6101fd6102a036600461174b565b610655565b6101f36106db565b6006546001600160a01b03166101c8565b6101a86106ef565b6101f36106fe565b6101f36102dc366004611849565b61073a565b6101f36102ef366004611882565b61074e565b6101f361030236600461174b565b61077b565b6101a86103153660046116b0565b61084a565b61018b610328366004611901565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101f361089f565b6101f361036c36600461174b565b6108e3565b6101f361037f36600461174b565b610959565b600061038f82610a42565b92915050565b6060600080546103a49061192f565b80601f01602080910402602001604051908101604052809291908181526020018280546103d09061192f565b801561041d5780601f106103f25761010080835404028352916020019161041d565b820191906000526020600020905b81548152906001019060200180831161040057829003601f168201915b5050505050905090565b600061043282610a92565b506000908152600460205260409020546001600160a01b031690565b8161045881610af1565b6104628383610baa565b505050565b60075460065460009182916101f691610494916001600160401b0391821691600160a01b9091041661197f565b61049e91906119aa565b6001600160401b031692915050565b826001600160a01b03811633146104c7576104c733610af1565b6104d2848484610cba565b50505050565b826001600160a01b03811633146104f2576104f233610af1565b6104d2848484610ceb565b610505610d06565b806001600160a01b031663095ea7b36105266006546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260001960248201526044016020604051808303816000875af1158015610574573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059891906119d2565b5050565b6105a4610d06565b600780546001600160a01b03909216600160401b0268010000000000000000600160e01b0319909216919091179055565b6105dd610d06565b8051610598906008906020840190611579565b6000818152600260205260408120546001600160a01b03168061038f5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064015b60405180910390fd5b60006001600160a01b0382166106bf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161064c565b506001600160a01b031660009081526003602052604090205490565b6106e3610d06565b6106ed6000610d60565b565b6060600180546103a49061192f565b610706610d06565b60095460ff16151560000361072e57604051638fb000ff60e01b815260040160405180910390fd5b6009805460ff19169055565b8161074481610af1565b6104628383610db2565b836001600160a01b03811633146107685761076833610af1565b61077485858585610dbd565b5050505050565b600754600160401b90046001600160a01b0316336001600160a01b0316146107b65760405163045241dd60e01b815260040160405180910390fd5b6001600160a01b0381166107dd57604051630a2858e560e01b815260040160405180910390fd5b6007546103e86001600160401b03909116111561080d5760405163ddff8fa760e01b815260040160405180910390fd5b6007546108249082906001600160401b0316610def565b50600780546001600160401b038082166001011667ffffffffffffffff19909116179055565b6060600061085783610e09565b905060008151116108775760405180602001604052806000815250610898565b8060405160200161088891906119ef565b6040516020818303038152906040525b9392505050565b6108a7610d06565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108e0573d6000803e3d6000fd5b50565b6108eb610d06565b6001600160a01b0381166109505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064c565b6108e081610d60565b600754600160401b90046001600160a01b0316336001600160a01b0316146109945760405163045241dd60e01b815260040160405180910390fd5b6001600160a01b0381166109bb57604051630a2858e560e01b815260040160405180910390fd5b6006546101f4600160a01b9091046001600160401b031611156109f15760405163ddff8fa760e01b815260040160405180910390fd5b600654610a0f908290600160a01b90046001600160401b0316610def565b50600680546001600160401b03600160a01b80830482166001019091160267ffffffffffffffff60a01b19909116179055565b60006001600160e01b031982166380ac58cd60e01b1480610a7357506001600160e01b03198216635b5e139f60e01b145b8061038f57506301ffc9a760e01b6001600160e01b031983161461038f565b6000818152600260205260409020546001600160a01b03166108e05760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161064c565b6daaeb6d7670e522a718067333cd4e3b156108e057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8291906119d2565b6108e057604051633b79c77360e21b81526001600160a01b038216600482015260240161064c565b6000610bb5826105f0565b9050806001600160a01b0316836001600160a01b031603610c225760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161064c565b336001600160a01b0382161480610c3e5750610c3e8133610328565b610cb05760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161064c565b6104628383610e59565b610cc43382610ec7565b610ce05760405162461bcd60e51b815260040161064c90611a18565b610462838383610f46565b6104628383836040518060200160405280600081525061074e565b6006546001600160a01b031633146106ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161064c565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6105983383836110aa565b610dc73383610ec7565b610de35760405162461bcd60e51b815260040161064c90611a18565b6104d284848484611178565b6105988282604051806020016040528060008152506111ab565b6060610e1482610a92565b6000610e1e6111de565b90506000815111610e3e5760405180602001604052806000815250610898565b80610e48846111ed565b604051602001610888929190611a65565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e8e826105f0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ed3836105f0565b9050806001600160a01b0316846001600160a01b03161480610f1a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610f3e5750836001600160a01b0316610f3384610427565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f59826105f0565b6001600160a01b031614610f7f5760405162461bcd60e51b815260040161064c90611a8b565b6001600160a01b038216610fe15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161064c565b826001600160a01b0316610ff4826105f0565b6001600160a01b03161461101a5760405162461bcd60e51b815260040161064c90611a8b565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b03160361110b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161064c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611183848484610f46565b61118f848484846112ed565b6104d25760405162461bcd60e51b815260040161064c90611ad0565b6111b583836113ee565b6111c260008484846112ed565b6104625760405162461bcd60e51b815260040161064c90611ad0565b6060600880546103a49061192f565b6060816000036112145750506040805180820190915260018152600360fc1b602082015290565b8160005b811561123e578061122881611b22565b91506112379050600a83611b51565b9150611218565b6000816001600160401b0381111561125857611258611768565b6040519080825280601f01601f191660200182016040528015611282576020820181803683370190505b5090505b8415610f3e57611297600183611b65565b91506112a4600a86611b7c565b6112af906030611b90565b60f81b8183815181106112c4576112c4611ba8565b60200101906001600160f81b031916908160001a9053506112e6600a86611b51565b9450611286565b60006001600160a01b0384163b156113e357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611331903390899088908890600401611bbe565b6020604051808303816000875af192505050801561136c575060408051601f3d908101601f1916820190925261136991810190611bfb565b60015b6113c9573d80801561139a576040519150601f19603f3d011682016040523d82523d6000602084013e61139f565b606091505b5080516000036113c15760405162461bcd60e51b815260040161064c90611ad0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f3e565b506001949350505050565b6001600160a01b0382166114445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161064c565b6000818152600260205260409020546001600160a01b0316156114a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161064c565b6000818152600260205260409020546001600160a01b03161561150e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161064c565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546115859061192f565b90600052602060002090601f0160209004810192826115a757600085556115ed565b82601f106115c057805160ff19168380011785556115ed565b828001600101855582156115ed579182015b828111156115ed5782518255916020019190600101906115d2565b506115f99291506115fd565b5090565b5b808211156115f957600081556001016115fe565b6001600160e01b0319811681146108e057600080fd5b60006020828403121561163a57600080fd5b813561089881611612565b60005b83811015611660578181015183820152602001611648565b838111156104d25750506000910152565b60008151808452611689816020860160208601611645565b601f01601f19169290920160200192915050565b6020815260006108986020830184611671565b6000602082840312156116c257600080fd5b5035919050565b6001600160a01b03811681146108e057600080fd5b600080604083850312156116f157600080fd5b82356116fc816116c9565b946020939093013593505050565b60008060006060848603121561171f57600080fd5b833561172a816116c9565b9250602084013561173a816116c9565b929592945050506040919091013590565b60006020828403121561175d57600080fd5b8135610898816116c9565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561179857611798611768565b604051601f8501601f19908116603f011681019082821181831017156117c0576117c0611768565b816040528093508581528686860111156117d957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561180557600080fd5b81356001600160401b0381111561181b57600080fd5b8201601f8101841361182c57600080fd5b610f3e8482356020840161177e565b80151581146108e057600080fd5b6000806040838503121561185c57600080fd5b8235611867816116c9565b915060208301356118778161183b565b809150509250929050565b6000806000806080858703121561189857600080fd5b84356118a3816116c9565b935060208501356118b3816116c9565b92506040850135915060608501356001600160401b038111156118d557600080fd5b8501601f810187136118e657600080fd5b6118f58782356020840161177e565b91505092959194509250565b6000806040838503121561191457600080fd5b823561191f816116c9565b91506020830135611877816116c9565b600181811c9082168061194357607f821691505b60208210810361196357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60006001600160401b038083168185168083038211156119a1576119a1611969565b01949350505050565b60006001600160401b03838116908316818110156119ca576119ca611969565b039392505050565b6000602082840312156119e457600080fd5b81516108988161183b565b60008251611a01818460208701611645565b64173539b7b760d91b920191825250600501919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60008351611a77818460208801611645565b8351908301906119a1818360208801611645565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060018201611b3457611b34611969565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611b6057611b60611b3b565b500490565b600082821015611b7757611b77611969565b500390565b600082611b8b57611b8b611b3b565b500690565b60008219821115611ba357611ba3611969565b500190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bf190830184611671565b9695505050505050565b600060208284031215611c0d57600080fd5b81516108988161161256fea26469706673582212202aeb4a1677b884512f98b6a2b441516c613012e33323d20d39ddbe044756de3364736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c867286a97aa94aab0920289851a59bee9d2495a00000000000000000000000000000000000000000000000000000000000000175175616e74756d732062792043727970746f4b696e67240000000000000000000000000000000000000000000000000000000000000000000000000000000004514e544d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f7374617469632e6d6f6e612e6172742f7175616e74756d732f746f6b656e49445f0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Quantums by CryptoKing$
Arg [1] : symbol_ (string): QNTM
Arg [2] : baseURI (string): https://static.mona.art/quantums/tokenID_
Arg [3] : minterAddress (address): 0xc867286a97aA94aAB0920289851A59beE9D2495A

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000c867286a97aa94aab0920289851a59bee9d2495a
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [5] : 5175616e74756d732062792043727970746f4b696e6724000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 514e544d00000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000029
Arg [9] : 68747470733a2f2f7374617469632e6d6f6e612e6172742f7175616e74756d73
Arg [10] : 2f746f6b656e49445f0000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49314:4327:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52935:153;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;52935:153:0;;;;;;;;11896:100;;;:::i;:::-;;;;;;;:::i;13408:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;13408:171:0;1528:203:1;52069:157:0;;;;;;:::i;:::-;;:::i;:::-;;53357:156;;;:::i;:::-;;;2338:25:1;;;2326:2;2311:18;53357:156:0;2192:177:1;52234:163:0;;;;;;:::i;:::-;;:::i;46507:143::-;;46607:42;46507:143;;52405:171;;;;;;:::i;:::-;;:::i;51614:116::-;;;;;;:::i;:::-;;:::i;50527:107::-;;;;;;:::i;:::-;;:::i;52820:::-;;;;;;:::i;:::-;;:::i;11606:223::-;;;;;;:::i;:::-;;:::i;11337:207::-;;;;;;:::i;:::-;;:::i;42627:103::-;;;:::i;41979:87::-;42052:6;;-1:-1:-1;;;;;42052:6:0;41979:87;;12065:104;;;:::i;50293:146::-;;;:::i;51885:176::-;;;;;;:::i;:::-;;:::i;52584:228::-;;;;;;:::i;:::-;;:::i;51143:339::-;;;;;;:::i;:::-;;:::i;53096:253::-;;;;;;:::i;:::-;;:::i;13877:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13998:25:0;;;13974:4;13998:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13877:164;51490:116;;;:::i;42885:201::-;;;;;;:::i;:::-;;:::i;50715:347::-;;;;;;:::i;:::-;;:::i;52935:153::-;53020:4;53044:36;53068:11;53044:23;:36::i;:::-;53037:43;52935:153;-1:-1:-1;;52935:153:0:o;11896:100::-;11950:13;11983:5;11976:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11896:100;:::o;13408:171::-;13484:7;13504:23;13519:7;13504:14;:23::i;:::-;-1:-1:-1;13547:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;13547:24:0;;13408:171::o;52069:157::-;52165:8;48028:30;48049:8;48028:20;:30::i;:::-;52186:32:::1;52200:8;52210:7;52186:13;:32::i;:::-;52069:157:::0;;;:::o;53357:156::-;53458:17;;53438;;53401:7;;;;53478:3;;53438:37;;-1:-1:-1;;;;;53458:17:0;;;;-1:-1:-1;;;53438:17:0;;;;:37;:::i;:::-;:43;;;;:::i;:::-;-1:-1:-1;;;;;53421:60:0;;53357:156;-1:-1:-1;;53357:156:0:o;52234:163::-;52335:4;-1:-1:-1;;;;;47848:18:0;;47856:10;47848:18;47844:83;;47883:32;47904:10;47883:20;:32::i;:::-;52352:37:::1;52371:4;52377:2;52381:7;52352:18;:37::i;:::-;52234:163:::0;;;;:::o;52405:171::-;52510:4;-1:-1:-1;;;;;47848:18:0;;47856:10;47848:18;47844:83;;47883:32;47904:10;47883:20;:32::i;:::-;52527:41:::1;52550:4;52556:2;52560:7;52527:22;:41::i;51614:116::-:0;41865:13;:11;:13::i;:::-;51681:5:::1;-1:-1:-1::0;;;;;51681:13:0::1;;51695:7;42052:6:::0;;-1:-1:-1;;;;;42052:6:0;;41979:87;51695:7:::1;51681:41;::::0;-1:-1:-1;;;;;;51681:41:0::1;::::0;;;;;;-1:-1:-1;;;;;7706:32:1;;;51681:41:0::1;::::0;::::1;7688:51:1::0;-1:-1:-1;;7755:18:1;;;7748:34;7661:18;;51681:41:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51614:116:::0;:::o;50527:107::-;41865:13;:11;:13::i;:::-;50604:6:::1;:22:::0;;-1:-1:-1;;;;;50604:22:0;;::::1;-1:-1:-1::0;;;50604:22:0::1;-1:-1:-1::0;;;;;;50604:22:0;;::::1;::::0;;;::::1;::::0;;50527:107::o;52820:::-;41865:13;:11;:13::i;:::-;52893:26;;::::1;::::0;:16:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;11606:223::-:0;11678:7;16493:16;;;:7;:16;;;;;;-1:-1:-1;;;;;16493:16:0;;11742:56;;;;-1:-1:-1;;;11742:56:0;;8245:2:1;11742:56:0;;;8227:21:1;8284:2;8264:18;;;8257:30;-1:-1:-1;;;8303:18:1;;;8296:54;8367:18;;11742:56:0;;;;;;;;11337:207;11409:7;-1:-1:-1;;;;;11437:19:0;;11429:73;;;;-1:-1:-1;;;11429:73:0;;8598:2:1;11429:73:0;;;8580:21:1;8637:2;8617:18;;;8610:30;8676:34;8656:18;;;8649:62;-1:-1:-1;;;8727:18:1;;;8720:39;8776:19;;11429:73:0;8396:405:1;11429:73:0;-1:-1:-1;;;;;;11520:16:0;;;;;:9;:16;;;;;;;11337:207::o;42627:103::-;41865:13;:11;:13::i;:::-;42692:30:::1;42719:1;42692:18;:30::i;:::-;42627:103::o:0;12065:104::-;12121:13;12154:7;12147:14;;;;;:::i;50293:146::-;41865:13;:11;:13::i;:::-;50356:10:::1;::::0;::::1;;:19;;:10;:19:::0;50352:50:::1;;50384:18;;-1:-1:-1::0;;;50384:18:0::1;;;;;;;;;;;50352:50;50413:10;:18:::0;;-1:-1:-1;;50413:18:0::1;::::0;;50293:146::o;51885:176::-;51989:8;48028:30;48049:8;48028:20;:30::i;:::-;52010:43:::1;52034:8;52044;52010:23;:43::i;52584:228::-:0;52735:4;-1:-1:-1;;;;;47848:18:0;;47856:10;47848:18;47844:83;;47883:32;47904:10;47883:20;:32::i;:::-;52757:47:::1;52780:4;52786:2;52790:7;52799:4;52757:22;:47::i;:::-;52584:228:::0;;;;;:::o;51143:339::-;49896:6;;-1:-1:-1;;;49896:6:0;;-1:-1:-1;;;;;49896:6:0;3729:10;-1:-1:-1;;;;;49880:22:0;;49876:54;;49911:19;;-1:-1:-1;;;49911:19:0;;;;;;;;;;;49876:54;-1:-1:-1;;;;;51217:16:0;::::1;51213:52;;51242:23;;-1:-1:-1::0;;;51242:23:0::1;;;;;;;;;;;51213:52;51280:17;::::0;49500:4:::1;-1:-1:-1::0;;;;;51280:17:0;;::::1;:39;51276:83;;;51341:18;;-1:-1:-1::0;;;51341:18:0::1;;;;;;;;;;;51276:83;51386:17;::::0;51372:32:::1;::::0;51382:2;;-1:-1:-1;;;;;51386:17:0::1;51372:9;:32::i;:::-;-1:-1:-1::0;51441:17:0::1;:22:::0;;-1:-1:-1;;;;;51441:22:0;;::::1;51462:1;51441:22;;-1:-1:-1::0;;51441:22:0;;::::1;;::::0;;51143:339::o;53096:253::-;53169:13;53195:23;53221;53236:7;53221:14;:23::i;:::-;53195:49;;53288:1;53268:9;53262:23;:27;:79;;;;;;;;;;;;;;;;;53316:9;53299:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;53262:79;53255:86;53096:253;-1:-1:-1;;;53096:253:0:o;51490:116::-;41865:13;:11;:13::i;:::-;42052:6;;51550:48:::1;::::0;-1:-1:-1;;;;;42052:6:0;;;;51576:21:::1;51550:48:::0;::::1;;;::::0;::::1;::::0;;;51576:21;42052:6;51550:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51490:116::o:0;42885:201::-;41865:13;:11;:13::i;:::-;-1:-1:-1;;;;;42974:22:0;::::1;42966:73;;;::::0;-1:-1:-1;;;42966:73:0;;9456:2:1;42966:73:0::1;::::0;::::1;9438:21:1::0;9495:2;9475:18;;;9468:30;9534:34;9514:18;;;9507:62;-1:-1:-1;;;9585:18:1;;;9578:36;9631:19;;42966:73:0::1;9254:402:1::0;42966:73:0::1;43050:28;43069:8;43050:18;:28::i;50715:347::-:0;49896:6;;-1:-1:-1;;;49896:6:0;;-1:-1:-1;;;;;49896:6:0;3729:10;-1:-1:-1;;;;;49880:22:0;;49876:54;;49911:19;;-1:-1:-1;;;49911:19:0;;;;;;;;;;;49876:54;-1:-1:-1;;;;;50789:16:0;::::1;50785:52;;50814:23;;-1:-1:-1::0;;;50814:23:0::1;;;;;;;;;;;50785:52;50852:17;::::0;49444:3:::1;-1:-1:-1::0;;;50852:17:0;;::::1;-1:-1:-1::0;;;;;50852:17:0::1;:39;50848:83;;;50913:18;;-1:-1:-1::0;;;50913:18:0::1;;;;;;;;;;;50848:83;50958:17;::::0;50944:32:::1;::::0;50954:2;;-1:-1:-1;;;50958:17:0;::::1;-1:-1:-1::0;;;;;50958:17:0::1;50944:9;:32::i;:::-;-1:-1:-1::0;51021:17:0::1;:22:::0;;-1:-1:-1;;;;;;;;51021:22:0;;::::1;::::0;::::1;51042:1;51021:22;::::0;;::::1;;-1:-1:-1::0;;;;51021:22:0;;::::1;;::::0;;50715:347::o;10968:305::-;11070:4;-1:-1:-1;;;;;;11107:40:0;;-1:-1:-1;;;11107:40:0;;:105;;-1:-1:-1;;;;;;;11164:48:0;;-1:-1:-1;;;11164:48:0;11107:105;:158;;;-1:-1:-1;;;;;;;;;;2969:40:0;;;11229:36;2860:157;23209:135;16895:4;16493:16;;;:7;:16;;;;;;-1:-1:-1;;;;;16493:16:0;23283:53;;;;-1:-1:-1;;;23283:53:0;;8245:2:1;23283:53:0;;;8227:21:1;8284:2;8264:18;;;8257:30;-1:-1:-1;;;8303:18:1;;;8296:54;8367:18;;23283:53:0;8043:348:1;48086:419:0;46607:42;48277:45;:49;48273:225;;48348:67;;-1:-1:-1;;;48348:67:0;;48399:4;48348:67;;;9873:34:1;-1:-1:-1;;;;;9943:15:1;;9923:18;;;9916:43;46607:42:0;;48348;;9808:18:1;;48348:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48343:144;;48443:28;;-1:-1:-1;;;48443:28:0;;-1:-1:-1;;;;;1692:32:1;;48443:28:0;;;1674:51:1;1647:18;;48443:28:0;1528:203:1;12926:416:0;13007:13;13023:23;13038:7;13023:14;:23::i;:::-;13007:39;;13071:5;-1:-1:-1;;;;;13065:11:0;:2;-1:-1:-1;;;;;13065:11:0;;13057:57;;;;-1:-1:-1;;;13057:57:0;;10172:2:1;13057:57:0;;;10154:21:1;10211:2;10191:18;;;10184:30;10250:34;10230:18;;;10223:62;-1:-1:-1;;;10301:18:1;;;10294:31;10342:19;;13057:57:0;9970:397:1;13057:57:0;3729:10;-1:-1:-1;;;;;13149:21:0;;;;:62;;-1:-1:-1;13174:37:0;13191:5;3729:10;13877:164;:::i;13174:37::-;13127:173;;;;-1:-1:-1;;;13127:173:0;;10574:2:1;13127:173:0;;;10556:21:1;10613:2;10593:18;;;10586:30;10652:34;10632:18;;;10625:62;10723:31;10703:18;;;10696:59;10772:19;;13127:173:0;10372:425:1;13127:173:0;13313:21;13322:2;13326:7;13313:8;:21::i;14108:335::-;14303:41;3729:10;14336:7;14303:18;:41::i;:::-;14295:99;;;;-1:-1:-1;;;14295:99:0;;;;;;;:::i;:::-;14407:28;14417:4;14423:2;14427:7;14407:9;:28::i;14514:185::-;14652:39;14669:4;14675:2;14679:7;14652:39;;;;;;;;;;;;:16;:39::i;42144:132::-;42052:6;;-1:-1:-1;;;;;42052:6:0;3729:10;42208:23;42200:68;;;;-1:-1:-1;;;42200:68:0;;11418:2:1;42200:68:0;;;11400:21:1;;;11437:18;;;11430:30;11496:34;11476:18;;;11469:62;11548:18;;42200:68:0;11216:356:1;43246:191:0;43339:6;;;-1:-1:-1;;;;;43356:17:0;;;-1:-1:-1;;;;;;43356:17:0;;;;;;;43389:40;;43339:6;;;43356:17;43339:6;;43389:40;;43320:16;;43389:40;43309:128;43246:191;:::o;13651:155::-;13746:52;3729:10;13779:8;13789;13746:18;:52::i;14770:322::-;14944:41;3729:10;14977:7;14944:18;:41::i;:::-;14936:99;;;;-1:-1:-1;;;14936:99:0;;;;;;;:::i;:::-;15046:38;15060:4;15066:2;15070:7;15079:4;15046:13;:38::i;17731:110::-;17807:26;17817:2;17821:7;17807:26;;;;;;;;;;;;:9;:26::i;12240:281::-;12313:13;12339:23;12354:7;12339:14;:23::i;:::-;12375:21;12399:10;:8;:10::i;:::-;12375:34;;12451:1;12433:7;12427:21;:25;:86;;;;;;;;;;;;;;;;;12479:7;12488:18;:7;:16;:18::i;:::-;12462:45;;;;;;;;;:::i;22488:174::-;22563:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;22563:29:0;-1:-1:-1;;;;;22563:29:0;;;;;;;;:24;;22617:23;22563:24;22617:14;:23::i;:::-;-1:-1:-1;;;;;22608:46:0;;;;;;;;;;;22488:174;;:::o;17125:264::-;17218:4;17235:13;17251:23;17266:7;17251:14;:23::i;:::-;17235:39;;17304:5;-1:-1:-1;;;;;17293:16:0;:7;-1:-1:-1;;;;;17293:16:0;;:52;;;-1:-1:-1;;;;;;13998:25:0;;;13974:4;13998:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;17313:32;17293:87;;;;17373:7;-1:-1:-1;;;;;17349:31:0;:20;17361:7;17349:11;:20::i;:::-;-1:-1:-1;;;;;17349:31:0;;17293:87;17285:96;17125:264;-1:-1:-1;;;;17125:264:0:o;21112:1257::-;21271:4;-1:-1:-1;;;;;21244:31:0;:23;21259:7;21244:14;:23::i;:::-;-1:-1:-1;;;;;21244:31:0;;21236:81;;;;-1:-1:-1;;;21236:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21336:16:0;;21328:65;;;;-1:-1:-1;;;21328:65:0;;12660:2:1;21328:65:0;;;12642:21:1;12699:2;12679:18;;;12672:30;12738:34;12718:18;;;12711:62;-1:-1:-1;;;12789:18:1;;;12782:34;12833:19;;21328:65:0;12458:400:1;21328:65:0;21575:4;-1:-1:-1;;;;;21548:31:0;:23;21563:7;21548:14;:23::i;:::-;-1:-1:-1;;;;;21548:31:0;;21540:81;;;;-1:-1:-1;;;21540:81:0;;;;;;;:::i;:::-;21693:24;;;;:15;:24;;;;;;;;21686:31;;-1:-1:-1;;;;;;21686:31:0;;;;;;-1:-1:-1;;;;;22169:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;22169:20:0;;;22204:13;;;;;;;;;:18;;21686:31;22204:18;;;22244:16;;;:7;:16;;;;;;:21;;;;;;;;;;22283:27;;21709:7;;22283:27;;;52069:157;;;:::o;22805:315::-;22960:8;-1:-1:-1;;;;;22951:17:0;:5;-1:-1:-1;;;;;22951:17:0;;22943:55;;;;-1:-1:-1;;;22943:55:0;;13065:2:1;22943:55:0;;;13047:21:1;13104:2;13084:18;;;13077:30;13143:27;13123:18;;;13116:55;13188:18;;22943:55:0;12863:349:1;22943:55:0;-1:-1:-1;;;;;23009:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;23009:46:0;;;;;;;;;;23071:41;;540::1;;;23071::0;;513:18:1;23071:41:0;;;;;;;22805:315;;;:::o;15973:313::-;16129:28;16139:4;16145:2;16149:7;16129:9;:28::i;:::-;16176:47;16199:4;16205:2;16209:7;16218:4;16176:22;:47::i;:::-;16168:110;;;;-1:-1:-1;;;16168:110:0;;;;;;;:::i;18068:319::-;18197:18;18203:2;18207:7;18197:5;:18::i;:::-;18248:53;18279:1;18283:2;18287:7;18296:4;18248:22;:53::i;:::-;18226:153;;;;-1:-1:-1;;;18226:153:0;;;;;;;:::i;53521:117::-;53581:13;53614:16;53607:23;;;;;:::i;27415:723::-;27471:13;27692:5;27701:1;27692:10;27688:53;;-1:-1:-1;;27719:10:0;;;;;;;;;;;;-1:-1:-1;;;27719:10:0;;;;;27415:723::o;27688:53::-;27766:5;27751:12;27807:78;27814:9;;27807:78;;27840:8;;;;:::i;:::-;;-1:-1:-1;27863:10:0;;-1:-1:-1;27871:2:0;27863:10;;:::i;:::-;;;27807:78;;;27895:19;27927:6;-1:-1:-1;;;;;27917:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27917:17:0;;27895:39;;27945:154;27952:10;;27945:154;;27979:11;27989:1;27979:11;;:::i;:::-;;-1:-1:-1;28048:10:0;28056:2;28048:5;:10;:::i;:::-;28035:24;;:2;:24;:::i;:::-;28022:39;;28005:6;28012;28005:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;28005:56:0;;;;;;;;-1:-1:-1;28076:11:0;28085:2;28076:11;;:::i;:::-;;;27945:154;;23908:853;24062:4;-1:-1:-1;;;;;24083:13:0;;30956:19;:23;24079:675;;24119:71;;-1:-1:-1;;;24119:71:0;;-1:-1:-1;;;;;24119:36:0;;;;;:71;;3729:10;;24170:4;;24176:7;;24185:4;;24119:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24119:71:0;;;;;;;;-1:-1:-1;;24119:71:0;;;;;;;;;;;;:::i;:::-;;;24115:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24360:6;:13;24377:1;24360:18;24356:328;;24403:60;;-1:-1:-1;;;24403:60:0;;;;;;;:::i;24356:328::-;24634:6;24628:13;24619:6;24615:2;24611:15;24604:38;24115:584;-1:-1:-1;;;;;;24241:51:0;-1:-1:-1;;;24241:51:0;;-1:-1:-1;24234:58:0;;24079:675;-1:-1:-1;24738:4:0;23908:853;;;;;;:::o;18723:936::-;-1:-1:-1;;;;;18803:16:0;;18795:61;;;;-1:-1:-1;;;18795:61:0;;15495:2:1;18795:61:0;;;15477:21:1;;;15514:18;;;15507:30;15573:34;15553:18;;;15546:62;15625:18;;18795:61:0;15293:356:1;18795:61:0;16895:4;16493:16;;;:7;:16;;;;;;-1:-1:-1;;;;;16493:16:0;16919:31;18867:58;;;;-1:-1:-1;;;18867:58:0;;15856:2:1;18867:58:0;;;15838:21:1;15895:2;15875:18;;;15868:30;15934;15914:18;;;15907:58;15982:18;;18867:58:0;15654:352:1;18867:58:0;16895:4;16493:16;;;:7;:16;;;;;;-1:-1:-1;;;;;16493:16:0;16919:31;19073:58;;;;-1:-1:-1;;;19073:58:0;;15856:2:1;19073:58:0;;;15838:21:1;15895:2;15875:18;;;15868:30;15934;15914:18;;;15907:58;15982:18;;19073:58:0;15654:352:1;19073:58:0;-1:-1:-1;;;;;19480:13:0;;;;;;:9;:13;;;;;;;;:18;;19497:1;19480:18;;;19522:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;19522:21:0;;;;;19561:33;19530:7;;19480:13;;19561:33;;19480:13;;19561:33;51681:41:::1;51614:116:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;3075:262::-;3149:6;3202:2;3190:9;3181:7;3177:23;3173:32;3170:52;;;3218:1;3215;3208:12;3170:52;3257:9;3244:23;3276:31;3301:5;3276:31;:::i;3594:127::-;3655:10;3650:3;3646:20;3643:1;3636:31;3686:4;3683:1;3676:15;3710:4;3707:1;3700:15;3726:632;3791:5;-1:-1:-1;;;;;3862:2:1;3854:6;3851:14;3848:40;;;3868:18;;:::i;:::-;3943:2;3937:9;3911:2;3997:15;;-1:-1:-1;;3993:24:1;;;4019:2;3989:33;3985:42;3973:55;;;4043:18;;;4063:22;;;4040:46;4037:72;;;4089:18;;:::i;:::-;4129:10;4125:2;4118:22;4158:6;4149:15;;4188:6;4180;4173:22;4228:3;4219:6;4214:3;4210:16;4207:25;4204:45;;;4245:1;4242;4235:12;4204:45;4295:6;4290:3;4283:4;4275:6;4271:17;4258:44;4350:1;4343:4;4334:6;4326;4322:19;4318:30;4311:41;;;;3726:632;;;;;:::o;4363:451::-;4432:6;4485:2;4473:9;4464:7;4460:23;4456:32;4453:52;;;4501:1;4498;4491:12;4453:52;4541:9;4528:23;-1:-1:-1;;;;;4566:6:1;4563:30;4560:50;;;4606:1;4603;4596:12;4560:50;4629:22;;4682:4;4674:13;;4670:27;-1:-1:-1;4660:55:1;;4711:1;4708;4701:12;4660:55;4734:74;4800:7;4795:2;4782:16;4777:2;4773;4769:11;4734:74;:::i;4819:118::-;4905:5;4898:13;4891:21;4884:5;4881:32;4871:60;;4927:1;4924;4917:12;4942:382;5007:6;5015;5068:2;5056:9;5047:7;5043:23;5039:32;5036:52;;;5084:1;5081;5074:12;5036:52;5123:9;5110:23;5142:31;5167:5;5142:31;:::i;:::-;5192:5;-1:-1:-1;5249:2:1;5234:18;;5221:32;5262:30;5221:32;5262:30;:::i;:::-;5311:7;5301:17;;;4942:382;;;;;:::o;5329:795::-;5424:6;5432;5440;5448;5501:3;5489:9;5480:7;5476:23;5472:33;5469:53;;;5518:1;5515;5508:12;5469:53;5557:9;5544:23;5576:31;5601:5;5576:31;:::i;:::-;5626:5;-1:-1:-1;5683:2:1;5668:18;;5655:32;5696:33;5655:32;5696:33;:::i;:::-;5748:7;-1:-1:-1;5802:2:1;5787:18;;5774:32;;-1:-1:-1;5857:2:1;5842:18;;5829:32;-1:-1:-1;;;;;5873:30:1;;5870:50;;;5916:1;5913;5906:12;5870:50;5939:22;;5992:4;5984:13;;5980:27;-1:-1:-1;5970:55:1;;6021:1;6018;6011:12;5970:55;6044:74;6110:7;6105:2;6092:16;6087:2;6083;6079:11;6044:74;:::i;:::-;6034:84;;;5329:795;;;;;;;:::o;6129:388::-;6197:6;6205;6258:2;6246:9;6237:7;6233:23;6229:32;6226:52;;;6274:1;6271;6264:12;6226:52;6313:9;6300:23;6332:31;6357:5;6332:31;:::i;:::-;6382:5;-1:-1:-1;6439:2:1;6424:18;;6411:32;6452:33;6411:32;6452:33;:::i;6522:380::-;6601:1;6597:12;;;;6644;;;6665:61;;6719:4;6711:6;6707:17;6697:27;;6665:61;6772:2;6764:6;6761:14;6741:18;6738:38;6735:161;;6818:10;6813:3;6809:20;6806:1;6799:31;6853:4;6850:1;6843:15;6881:4;6878:1;6871:15;6735:161;;6522:380;;;:::o;6907:127::-;6968:10;6963:3;6959:20;6956:1;6949:31;6999:4;6996:1;6989:15;7023:4;7020:1;7013:15;7039:236;7078:3;-1:-1:-1;;;;;7151:2:1;7148:1;7144:10;7181:2;7178:1;7174:10;7212:3;7208:2;7204:12;7199:3;7196:21;7193:47;;;7220:18;;:::i;:::-;7256:13;;7039:236;-1:-1:-1;;;;7039:236:1:o;7280:229::-;7319:4;-1:-1:-1;;;;;7416:10:1;;;;7386;;7438:12;;;7435:38;;;7453:18;;:::i;:::-;7490:13;;7280:229;-1:-1:-1;;;7280:229:1:o;7793:245::-;7860:6;7913:2;7901:9;7892:7;7888:23;7884:32;7881:52;;;7929:1;7926;7919:12;7881:52;7961:9;7955:16;7980:28;8002:5;7980:28;:::i;8806:443::-;9038:3;9076:6;9070:13;9092:53;9138:6;9133:3;9126:4;9118:6;9114:17;9092:53;:::i;:::-;-1:-1:-1;;;9167:16:1;;9192:22;;;-1:-1:-1;9241:1:1;9230:13;;8806:443;-1:-1:-1;8806:443:1:o;10802:409::-;11004:2;10986:21;;;11043:2;11023:18;;;11016:30;11082:34;11077:2;11062:18;;11055:62;-1:-1:-1;;;11148:2:1;11133:18;;11126:43;11201:3;11186:19;;10802:409::o;11577:470::-;11756:3;11794:6;11788:13;11810:53;11856:6;11851:3;11844:4;11836:6;11832:17;11810:53;:::i;:::-;11926:13;;11885:16;;;;11948:57;11926:13;11885:16;11982:4;11970:17;;11948:57;:::i;12052:401::-;12254:2;12236:21;;;12293:2;12273:18;;;12266:30;12332:34;12327:2;12312:18;;12305:62;-1:-1:-1;;;12398:2:1;12383:18;;12376:35;12443:3;12428:19;;12052:401::o;13217:414::-;13419:2;13401:21;;;13458:2;13438:18;;;13431:30;13497:34;13492:2;13477:18;;13470:62;-1:-1:-1;;;13563:2:1;13548:18;;13541:48;13621:3;13606:19;;13217:414::o;13636:135::-;13675:3;13696:17;;;13693:43;;13716:18;;:::i;:::-;-1:-1:-1;13763:1:1;13752:13;;13636:135::o;13776:127::-;13837:10;13832:3;13828:20;13825:1;13818:31;13868:4;13865:1;13858:15;13892:4;13889:1;13882:15;13908:120;13948:1;13974;13964:35;;13979:18;;:::i;:::-;-1:-1:-1;14013:9:1;;13908:120::o;14033:125::-;14073:4;14101:1;14098;14095:8;14092:34;;;14106:18;;:::i;:::-;-1:-1:-1;14143:9:1;;14033:125::o;14163:112::-;14195:1;14221;14211:35;;14226:18;;:::i;:::-;-1:-1:-1;14260:9:1;;14163:112::o;14280:128::-;14320:3;14351:1;14347:6;14344:1;14341:13;14338:39;;;14357:18;;:::i;:::-;-1:-1:-1;14393:9:1;;14280:128::o;14413:127::-;14474:10;14469:3;14465:20;14462:1;14455:31;14505:4;14502:1;14495:15;14529:4;14526:1;14519:15;14545:489;-1:-1:-1;;;;;14814:15:1;;;14796:34;;14866:15;;14861:2;14846:18;;14839:43;14913:2;14898:18;;14891:34;;;14961:3;14956:2;14941:18;;14934:31;;;14739:4;;14982:46;;15008:19;;15000:6;14982:46;:::i;:::-;14974:54;14545:489;-1:-1:-1;;;;;;14545:489:1:o;15039:249::-;15108:6;15161:2;15149:9;15140:7;15136:23;15132:32;15129:52;;;15177:1;15174;15167:12;15129:52;15209:9;15203:16;15228:30;15252:5;15228:30;:::i

Swarm Source

ipfs://2aeb4a1677b884512f98b6a2b441516c613012e33323d20d39ddbe044756de33
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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