ETH Price: $3,363.17 (-2.36%)
Gas: 2 Gwei

Token

Fancy Foxes (FOXES)
 

Overview

Max Total Supply

2,222 FOXES

Holders

331

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
19921111.eth
Balance
15 FOXES
0xdE4E81A778b99e8412ea3a3F765EB6179b87f198
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:
FancyFoxes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-15
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: contracts/FancyFoxes.sol



pragma solidity >=0.7.0 <0.9.0;



contract FancyFoxes is ERC721A , ReentrancyGuard {
    using Strings for uint256;

    //Token Data 
    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;

    mapping(address => uint256) public addressMintedAmounts;


    //Sale Data 

    address private owner = 0x9402c2D01aA6b0c1F20Ac57246fF0DDe1513d270;

    bool public paused = true;
    bool public revealed = false;
    bool public publicSaleActive = false;

    uint256 private constant maxFoxes = 2222;
    uint256 private constant maxNftPerAdress = 25;
    uint256 private constant maxNftPerTxn = 5;


    constructor (
      string memory _name ,
      string memory _symbol ,
      string memory _initBaseURI,
      string memory _initNotRevealedUri
  ) ERC721A(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
    owner = msg.sender;  
    }

    modifier onlyOwner() {
      require(msg.sender == owner);
      _;
   }

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

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

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

  function PublicMint(uint256 _mintAmount) external payable nonReentrant {
        require(!paused , 'The Contract is not Currently Open for Minting');
        require(publicSaleActive == true , "Public Sale is not currently open!");
        require(_mintAmount != 0 && _mintAmount <= maxNftPerTxn , 'Invalid Mint Amount');
        require(totalSupply() + _mintAmount <= maxFoxes , 'Not Enough Foxes Left');
        require(addressMintedAmounts[msg.sender] + _mintAmount <= maxNftPerAdress , 'Maximum NFT Limit Reached');
      
        mint(_mintAmount);
        addressMintedAmounts[msg.sender] += _mintAmount; 
    }
    
    function mint(uint256 _mintAmount) internal {
        _safeMint(msg.sender , _mintAmount);
        if (totalSupply() >= 2221) {
            reveal();
        }
    }


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

  function reveal() internal {
      revealed = true;
  }

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

  function PublicSale(bool _state) public onlyOwner() {
      publicSaleActive = _state;
  }

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

  function amountMinted() public view returns (uint256) {
    return totalSupply();
    }

 function whoIs() public view returns (address) {
    return owner;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"PublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":[],"name":"whoIs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000147565b50600d80546001600160b81b03191674019402c2d01aa6b0c1f20ac57246ff0dde1513d2701790553480156200005d57600080fd5b5060405162002085380380620020858339810160408190526200008091620002a4565b8351849084906200009990600290602085019062000147565b508051620000af90600390602084019062000147565b506000805550506001600855620000c682620000ee565b620000d1816200011f565b5050600d80546001600160a01b0319163317905550620003b09050565b600d546001600160a01b031633146200010657600080fd5b80516200011b90600990602084019062000147565b5050565b600d546001600160a01b031633146200013757600080fd5b80516200011b90600b9060208401905b82805462000155906200035d565b90600052602060002090601f016020900481019282620001795760008555620001c4565b82601f106200019457805160ff1916838001178555620001c4565b82800160010185558215620001c4579182015b82811115620001c4578251825591602001919060010190620001a7565b50620001d2929150620001d6565b5090565b5b80821115620001d25760008155600101620001d7565b600082601f830112620001ff57600080fd5b81516001600160401b03808211156200021c576200021c6200039a565b604051601f8301601f19908116603f011681019082821181831017156200024757620002476200039a565b816040528381526020925086838588010111156200026457600080fd5b600091505b8382101562000288578582018301518183018401529082019062000269565b838211156200029a5760008385830101525b9695505050505050565b60008060008060808587031215620002bb57600080fd5b84516001600160401b0380821115620002d357600080fd5b620002e188838901620001ed565b95506020870151915080821115620002f857600080fd5b6200030688838901620001ed565b945060408701519150808211156200031d57600080fd5b6200032b88838901620001ed565b935060608701519150808211156200034257600080fd5b506200035187828801620001ed565b91505092959194509250565b600181811c908216806200037257607f821691505b602082108114156200039457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611cc580620003c06000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063da3ef23f11610064578063da3ef23f14610505578063e985e9c514610525578063f09b37ec1461056e578063f2c4ce1e1461058e57600080fd5b8063b88d4fde1461048f578063bc8893b4146104af578063c6682862146104d0578063c87b56dd146104e557600080fd5b8063894fc608116100d1578063894fc6081461041a57806395d89b41146104475780639fb17e341461045c578063a22cb4651461046f57600080fd5b806370a08231146103c75780637af284d5146103e757806388f10b44146103fc57600080fd5b806323b872dd1161016f57806355f804b31161013e57806355f804b3146103515780635c975abb146103715780636352211e146103925780636c0360eb146103b257600080fd5b806323b872dd146102db5780633ccfd60b146102fb57806342842e0e14610310578063518302271461033057600080fd5b8063081812fc116101ab578063081812fc1461024b578063081c8c4414610283578063095ea7b31461029857806318160ddd146102b857600080fd5b806301ffc9a7146101d257806302329a291461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461196c565b6105ae565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004611951565b610600565b005b34801561023557600080fd5b5061023e610635565b6040516101fe9190611b35565b34801561025757600080fd5b5061026b6102663660046119ef565b6106c7565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061023e61070b565b3480156102a457600080fd5b506102276102b3366004611927565b610799565b3480156102c457600080fd5b50600154600054035b6040519081526020016101fe565b3480156102e757600080fd5b506102276102f6366004611845565b610827565b34801561030757600080fd5b50610227610832565b34801561031c57600080fd5b5061022761032b366004611845565b6108ac565b34801561033c57600080fd5b50600d546101f290600160a81b900460ff1681565b34801561035d57600080fd5b5061022761036c3660046119a6565b6108c7565b34801561037d57600080fd5b50600d546101f290600160a01b900460ff1681565b34801561039e57600080fd5b5061026b6103ad3660046119ef565b6108f5565b3480156103be57600080fd5b5061023e610907565b3480156103d357600080fd5b506102cd6103e23660046117f7565b610914565b3480156103f357600080fd5b506102cd610963565b34801561040857600080fd5b50600d546001600160a01b031661026b565b34801561042657600080fd5b506102cd6104353660046117f7565b600c6020526000908152604090205481565b34801561045357600080fd5b5061023e610977565b61022761046a3660046119ef565b610986565b34801561047b57600080fd5b5061022761048a3660046118fd565b610c11565b34801561049b57600080fd5b506102276104aa366004611881565b610ca7565b3480156104bb57600080fd5b50600d546101f290600160b01b900460ff1681565b3480156104dc57600080fd5b5061023e610cf8565b3480156104f157600080fd5b5061023e6105003660046119ef565b610d05565b34801561051157600080fd5b506102276105203660046119a6565b610e76565b34801561053157600080fd5b506101f2610540366004611812565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057a57600080fd5b50610227610589366004611951565b610ea0565b34801561059a57600080fd5b506102276105a93660046119a6565b610ed5565b60006001600160e01b031982166380ac58cd60e01b14806105df57506001600160e01b03198216635b5e139f60e01b145b806105fa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600d546001600160a01b0316331461061757600080fd5b600d8054911515600160a01b0260ff60a01b19909216919091179055565b60606002805461064490611bb7565b80601f016020809104026020016040519081016040528092919081815260200182805461067090611bb7565b80156106bd5780601f10610692576101008083540402835291602001916106bd565b820191906000526020600020905b8154815290600101906020018083116106a057829003601f168201915b5050505050905090565b60006106d282610eff565b6106ef576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b805461071890611bb7565b80601f016020809104026020016040519081016040528092919081815260200182805461074490611bb7565b80156107915780601f1061076657610100808354040283529160200191610791565b820191906000526020600020905b81548152906001019060200180831161077457829003601f168201915b505050505081565b60006107a4826108f5565b9050806001600160a01b0316836001600160a01b031614156107d95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107f957506107f78133610540565b155b15610817576040516367d9dca160e11b815260040160405180910390fd5b610822838383610f2a565b505050565b610822838383610f86565b600d546001600160a01b0316331461084957600080fd5b600d546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610896576040519150601f19603f3d011682016040523d82523d6000602084013e61089b565b606091505b50509050806108a957600080fd5b50565b61082283838360405180602001604052806000815250610ca7565b600d546001600160a01b031633146108de57600080fd5b80516108f19060099060208401906116bc565b5050565b600061090082611176565b5192915050565b6009805461071890611bb7565b60006001600160a01b03821661093d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b60006109726001546000540390565b905090565b60606003805461064490611bb7565b600260085414156109de5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600855600d54600160a01b900460ff1615610a545760405162461bcd60e51b815260206004820152602e60248201527f54686520436f6e7472616374206973206e6f742043757272656e746c79204f7060448201526d656e20666f72204d696e74696e6760901b60648201526084016109d5565b600d54600160b01b900460ff161515600114610abd5760405162461bcd60e51b815260206004820152602260248201527f5075626c69632053616c65206973206e6f742063757272656e746c79206f70656044820152616e2160f01b60648201526084016109d5565b8015801590610acd575060058111155b610b0f5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a5908135a5b9d08105b5bdd5b9d606a1b60448201526064016109d5565b6108ae81610b206001546000540390565b610b2a9190611b48565b1115610b705760405162461bcd60e51b8152602060048201526015602482015274139bdd08115b9bdd59da08119bde195cc81319599d605a1b60448201526064016109d5565b336000908152600c6020526040902054601990610b8e908390611b48565b1115610bdc5760405162461bcd60e51b815260206004820152601960248201527f4d6178696d756d204e4654204c696d697420526561636865640000000000000060448201526064016109d5565b610be581611292565b336000908152600c602052604081208054839290610c04908490611b48565b9091555050600160085550565b6001600160a01b038216331415610c3b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cb2848484610f86565b6001600160a01b0383163b15158015610cd45750610cd2848484846112c9565b155b15610cf2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600a805461071890611bb7565b6060610d1082610eff565b610d745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109d5565b600d54600160a81b900460ff16610e1757600b8054610d9290611bb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbe90611bb7565b8015610e0b5780601f10610de057610100808354040283529160200191610e0b565b820191906000526020600020905b815481529060010190602001808311610dee57829003601f168201915b50505050509050919050565b6000610e216113c1565b90506000815111610e415760405180602001604052806000815250610e6f565b80610e4b846113d0565b600a604051602001610e5f93929190611a34565b6040516020818303038152906040525b9392505050565b600d546001600160a01b03163314610e8d57600080fd5b80516108f190600a9060208401906116bc565b600d546001600160a01b03163314610eb757600080fd5b600d8054911515600160b01b0260ff60b01b19909216919091179055565b600d546001600160a01b03163314610eec57600080fd5b80516108f190600b9060208401906116bc565b60008054821080156105fa575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f9182611176565b9050836001600160a01b031681600001516001600160a01b031614610fc85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610fe65750610fe68533610540565b80611001575033610ff6846106c7565b6001600160a01b0316145b90508061102157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661104857604051633a954ecd60e21b815260040160405180910390fd5b61105460008487610f2a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661112a57600054821461112a578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561127957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112775780516001600160a01b03161561120d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611272579392505050565b61120d565b505b604051636f96cda160e11b815260040160405180910390fd5b61129c33826114ce565b6108ad6112ac6001546000540390565b106108a9576108a9600d805460ff60a81b1916600160a81b179055565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112fe903390899088908890600401611af8565b602060405180830381600087803b15801561131857600080fd5b505af1925050508015611348575060408051601f3d908101601f1916820190925261134591810190611989565b60015b6113a3573d808015611376576040519150601f19603f3d011682016040523d82523d6000602084013e61137b565b606091505b50805161139b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461064490611bb7565b6060816113f45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561141e578061140881611bf2565b91506114179050600a83611b60565b91506113f8565b60008167ffffffffffffffff81111561143957611439611c63565b6040519080825280601f01601f191660200182016040528015611463576020820181803683370190505b5090505b84156113b957611478600183611b74565b9150611485600a86611c0d565b611490906030611b48565b60f81b8183815181106114a5576114a5611c4d565b60200101906001600160f81b031916908160001a9053506114c7600a86611b60565b9450611467565b6108f182826040518060200160405280600081525061082283838360016000546001600160a01b03851661151457604051622e076360e81b815260040160405180910390fd5b836115325760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115e457506001600160a01b0387163b15155b1561166d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461163560008884806001019550886112c9565b611652576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115ea57826000541461166857600080fd5b6116b3565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561166e575b5060005561116f565b8280546116c890611bb7565b90600052602060002090601f0160209004810192826116ea5760008555611730565b82601f1061170357805160ff1916838001178555611730565b82800160010185558215611730579182015b82811115611730578251825591602001919060010190611715565b5061173c929150611740565b5090565b5b8082111561173c5760008155600101611741565b600067ffffffffffffffff8084111561177057611770611c63565b604051601f8501601f19908116603f0116810190828211818310171561179857611798611c63565b816040528093508581528686860111156117b157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117e257600080fd5b919050565b803580151581146117e257600080fd5b60006020828403121561180957600080fd5b610e6f826117cb565b6000806040838503121561182557600080fd5b61182e836117cb565b915061183c602084016117cb565b90509250929050565b60008060006060848603121561185a57600080fd5b611863846117cb565b9250611871602085016117cb565b9150604084013590509250925092565b6000806000806080858703121561189757600080fd5b6118a0856117cb565b93506118ae602086016117cb565b925060408501359150606085013567ffffffffffffffff8111156118d157600080fd5b8501601f810187136118e257600080fd5b6118f187823560208401611755565b91505092959194509250565b6000806040838503121561191057600080fd5b611919836117cb565b915061183c602084016117e7565b6000806040838503121561193a57600080fd5b611943836117cb565b946020939093013593505050565b60006020828403121561196357600080fd5b610e6f826117e7565b60006020828403121561197e57600080fd5b8135610e6f81611c79565b60006020828403121561199b57600080fd5b8151610e6f81611c79565b6000602082840312156119b857600080fd5b813567ffffffffffffffff8111156119cf57600080fd5b8201601f810184136119e057600080fd5b6113b984823560208401611755565b600060208284031215611a0157600080fd5b5035919050565b60008151808452611a20816020860160208601611b8b565b601f01601f19169290920160200192915050565b600084516020611a478285838a01611b8b565b855191840191611a5a8184848a01611b8b565b8554920191600090600181811c9080831680611a7757607f831692505b858310811415611a9557634e487b7160e01b85526022600452602485fd5b808015611aa95760018114611aba57611ae7565b60ff19851688528388019550611ae7565b60008b81526020902060005b85811015611adf5781548a820152908401908801611ac6565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b2b90830184611a08565b9695505050505050565b602081526000610e6f6020830184611a08565b60008219821115611b5b57611b5b611c21565b500190565b600082611b6f57611b6f611c37565b500490565b600082821015611b8657611b86611c21565b500390565b60005b83811015611ba6578181015183820152602001611b8e565b83811115610cf25750506000910152565b600181811c90821680611bcb57607f821691505b60208210811415611bec57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c0657611c06611c21565b5060010190565b600082611c1c57611c1c611c37565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108a957600080fdfea264697066735822122017e38be1579aff36d572cc705cb8ba675caccb76a110702ac3e6e5487814d28264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b46616e637920466f7865730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005464f5845530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e707969766376617262376d66677a374277414d61633773526d743573564158447570566b787772365073652f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d66426e784e79626a5070636839594a7252375372446861756356756a4332794454435239554c7244796174410000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063da3ef23f11610064578063da3ef23f14610505578063e985e9c514610525578063f09b37ec1461056e578063f2c4ce1e1461058e57600080fd5b8063b88d4fde1461048f578063bc8893b4146104af578063c6682862146104d0578063c87b56dd146104e557600080fd5b8063894fc608116100d1578063894fc6081461041a57806395d89b41146104475780639fb17e341461045c578063a22cb4651461046f57600080fd5b806370a08231146103c75780637af284d5146103e757806388f10b44146103fc57600080fd5b806323b872dd1161016f57806355f804b31161013e57806355f804b3146103515780635c975abb146103715780636352211e146103925780636c0360eb146103b257600080fd5b806323b872dd146102db5780633ccfd60b146102fb57806342842e0e14610310578063518302271461033057600080fd5b8063081812fc116101ab578063081812fc1461024b578063081c8c4414610283578063095ea7b31461029857806318160ddd146102b857600080fd5b806301ffc9a7146101d257806302329a291461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461196c565b6105ae565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004611951565b610600565b005b34801561023557600080fd5b5061023e610635565b6040516101fe9190611b35565b34801561025757600080fd5b5061026b6102663660046119ef565b6106c7565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061023e61070b565b3480156102a457600080fd5b506102276102b3366004611927565b610799565b3480156102c457600080fd5b50600154600054035b6040519081526020016101fe565b3480156102e757600080fd5b506102276102f6366004611845565b610827565b34801561030757600080fd5b50610227610832565b34801561031c57600080fd5b5061022761032b366004611845565b6108ac565b34801561033c57600080fd5b50600d546101f290600160a81b900460ff1681565b34801561035d57600080fd5b5061022761036c3660046119a6565b6108c7565b34801561037d57600080fd5b50600d546101f290600160a01b900460ff1681565b34801561039e57600080fd5b5061026b6103ad3660046119ef565b6108f5565b3480156103be57600080fd5b5061023e610907565b3480156103d357600080fd5b506102cd6103e23660046117f7565b610914565b3480156103f357600080fd5b506102cd610963565b34801561040857600080fd5b50600d546001600160a01b031661026b565b34801561042657600080fd5b506102cd6104353660046117f7565b600c6020526000908152604090205481565b34801561045357600080fd5b5061023e610977565b61022761046a3660046119ef565b610986565b34801561047b57600080fd5b5061022761048a3660046118fd565b610c11565b34801561049b57600080fd5b506102276104aa366004611881565b610ca7565b3480156104bb57600080fd5b50600d546101f290600160b01b900460ff1681565b3480156104dc57600080fd5b5061023e610cf8565b3480156104f157600080fd5b5061023e6105003660046119ef565b610d05565b34801561051157600080fd5b506102276105203660046119a6565b610e76565b34801561053157600080fd5b506101f2610540366004611812565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057a57600080fd5b50610227610589366004611951565b610ea0565b34801561059a57600080fd5b506102276105a93660046119a6565b610ed5565b60006001600160e01b031982166380ac58cd60e01b14806105df57506001600160e01b03198216635b5e139f60e01b145b806105fa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600d546001600160a01b0316331461061757600080fd5b600d8054911515600160a01b0260ff60a01b19909216919091179055565b60606002805461064490611bb7565b80601f016020809104026020016040519081016040528092919081815260200182805461067090611bb7565b80156106bd5780601f10610692576101008083540402835291602001916106bd565b820191906000526020600020905b8154815290600101906020018083116106a057829003601f168201915b5050505050905090565b60006106d282610eff565b6106ef576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b805461071890611bb7565b80601f016020809104026020016040519081016040528092919081815260200182805461074490611bb7565b80156107915780601f1061076657610100808354040283529160200191610791565b820191906000526020600020905b81548152906001019060200180831161077457829003601f168201915b505050505081565b60006107a4826108f5565b9050806001600160a01b0316836001600160a01b031614156107d95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107f957506107f78133610540565b155b15610817576040516367d9dca160e11b815260040160405180910390fd5b610822838383610f2a565b505050565b610822838383610f86565b600d546001600160a01b0316331461084957600080fd5b600d546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610896576040519150601f19603f3d011682016040523d82523d6000602084013e61089b565b606091505b50509050806108a957600080fd5b50565b61082283838360405180602001604052806000815250610ca7565b600d546001600160a01b031633146108de57600080fd5b80516108f19060099060208401906116bc565b5050565b600061090082611176565b5192915050565b6009805461071890611bb7565b60006001600160a01b03821661093d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b60006109726001546000540390565b905090565b60606003805461064490611bb7565b600260085414156109de5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600855600d54600160a01b900460ff1615610a545760405162461bcd60e51b815260206004820152602e60248201527f54686520436f6e7472616374206973206e6f742043757272656e746c79204f7060448201526d656e20666f72204d696e74696e6760901b60648201526084016109d5565b600d54600160b01b900460ff161515600114610abd5760405162461bcd60e51b815260206004820152602260248201527f5075626c69632053616c65206973206e6f742063757272656e746c79206f70656044820152616e2160f01b60648201526084016109d5565b8015801590610acd575060058111155b610b0f5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a5908135a5b9d08105b5bdd5b9d606a1b60448201526064016109d5565b6108ae81610b206001546000540390565b610b2a9190611b48565b1115610b705760405162461bcd60e51b8152602060048201526015602482015274139bdd08115b9bdd59da08119bde195cc81319599d605a1b60448201526064016109d5565b336000908152600c6020526040902054601990610b8e908390611b48565b1115610bdc5760405162461bcd60e51b815260206004820152601960248201527f4d6178696d756d204e4654204c696d697420526561636865640000000000000060448201526064016109d5565b610be581611292565b336000908152600c602052604081208054839290610c04908490611b48565b9091555050600160085550565b6001600160a01b038216331415610c3b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cb2848484610f86565b6001600160a01b0383163b15158015610cd45750610cd2848484846112c9565b155b15610cf2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600a805461071890611bb7565b6060610d1082610eff565b610d745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109d5565b600d54600160a81b900460ff16610e1757600b8054610d9290611bb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbe90611bb7565b8015610e0b5780601f10610de057610100808354040283529160200191610e0b565b820191906000526020600020905b815481529060010190602001808311610dee57829003601f168201915b50505050509050919050565b6000610e216113c1565b90506000815111610e415760405180602001604052806000815250610e6f565b80610e4b846113d0565b600a604051602001610e5f93929190611a34565b6040516020818303038152906040525b9392505050565b600d546001600160a01b03163314610e8d57600080fd5b80516108f190600a9060208401906116bc565b600d546001600160a01b03163314610eb757600080fd5b600d8054911515600160b01b0260ff60b01b19909216919091179055565b600d546001600160a01b03163314610eec57600080fd5b80516108f190600b9060208401906116bc565b60008054821080156105fa575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f9182611176565b9050836001600160a01b031681600001516001600160a01b031614610fc85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610fe65750610fe68533610540565b80611001575033610ff6846106c7565b6001600160a01b0316145b90508061102157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661104857604051633a954ecd60e21b815260040160405180910390fd5b61105460008487610f2a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661112a57600054821461112a578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561127957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112775780516001600160a01b03161561120d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611272579392505050565b61120d565b505b604051636f96cda160e11b815260040160405180910390fd5b61129c33826114ce565b6108ad6112ac6001546000540390565b106108a9576108a9600d805460ff60a81b1916600160a81b179055565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112fe903390899088908890600401611af8565b602060405180830381600087803b15801561131857600080fd5b505af1925050508015611348575060408051601f3d908101601f1916820190925261134591810190611989565b60015b6113a3573d808015611376576040519150601f19603f3d011682016040523d82523d6000602084013e61137b565b606091505b50805161139b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461064490611bb7565b6060816113f45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561141e578061140881611bf2565b91506114179050600a83611b60565b91506113f8565b60008167ffffffffffffffff81111561143957611439611c63565b6040519080825280601f01601f191660200182016040528015611463576020820181803683370190505b5090505b84156113b957611478600183611b74565b9150611485600a86611c0d565b611490906030611b48565b60f81b8183815181106114a5576114a5611c4d565b60200101906001600160f81b031916908160001a9053506114c7600a86611b60565b9450611467565b6108f182826040518060200160405280600081525061082283838360016000546001600160a01b03851661151457604051622e076360e81b815260040160405180910390fd5b836115325760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115e457506001600160a01b0387163b15155b1561166d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461163560008884806001019550886112c9565b611652576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115ea57826000541461166857600080fd5b6116b3565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561166e575b5060005561116f565b8280546116c890611bb7565b90600052602060002090601f0160209004810192826116ea5760008555611730565b82601f1061170357805160ff1916838001178555611730565b82800160010185558215611730579182015b82811115611730578251825591602001919060010190611715565b5061173c929150611740565b5090565b5b8082111561173c5760008155600101611741565b600067ffffffffffffffff8084111561177057611770611c63565b604051601f8501601f19908116603f0116810190828211818310171561179857611798611c63565b816040528093508581528686860111156117b157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117e257600080fd5b919050565b803580151581146117e257600080fd5b60006020828403121561180957600080fd5b610e6f826117cb565b6000806040838503121561182557600080fd5b61182e836117cb565b915061183c602084016117cb565b90509250929050565b60008060006060848603121561185a57600080fd5b611863846117cb565b9250611871602085016117cb565b9150604084013590509250925092565b6000806000806080858703121561189757600080fd5b6118a0856117cb565b93506118ae602086016117cb565b925060408501359150606085013567ffffffffffffffff8111156118d157600080fd5b8501601f810187136118e257600080fd5b6118f187823560208401611755565b91505092959194509250565b6000806040838503121561191057600080fd5b611919836117cb565b915061183c602084016117e7565b6000806040838503121561193a57600080fd5b611943836117cb565b946020939093013593505050565b60006020828403121561196357600080fd5b610e6f826117e7565b60006020828403121561197e57600080fd5b8135610e6f81611c79565b60006020828403121561199b57600080fd5b8151610e6f81611c79565b6000602082840312156119b857600080fd5b813567ffffffffffffffff8111156119cf57600080fd5b8201601f810184136119e057600080fd5b6113b984823560208401611755565b600060208284031215611a0157600080fd5b5035919050565b60008151808452611a20816020860160208601611b8b565b601f01601f19169290920160200192915050565b600084516020611a478285838a01611b8b565b855191840191611a5a8184848a01611b8b565b8554920191600090600181811c9080831680611a7757607f831692505b858310811415611a9557634e487b7160e01b85526022600452602485fd5b808015611aa95760018114611aba57611ae7565b60ff19851688528388019550611ae7565b60008b81526020902060005b85811015611adf5781548a820152908401908801611ac6565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b2b90830184611a08565b9695505050505050565b602081526000610e6f6020830184611a08565b60008219821115611b5b57611b5b611c21565b500190565b600082611b6f57611b6f611c37565b500490565b600082821015611b8657611b86611c21565b500390565b60005b83811015611ba6578181015183820152602001611b8e565b83811115610cf25750506000910152565b600181811c90821680611bcb57607f821691505b60208210811415611bec57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c0657611c06611c21565b5060010190565b600082611c1c57611c1c611c37565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108a957600080fdfea264697066735822122017e38be1579aff36d572cc705cb8ba675caccb76a110702ac3e6e5487814d28264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b46616e637920466f7865730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005464f5845530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e707969766376617262376d66677a374277414d61633773526d743573564158447570566b787772365073652f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d66426e784e79626a5070636839594a7252375372446861756356756a4332794454435239554c7244796174410000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Fancy Foxes
Arg [1] : _symbol (string): FOXES
Arg [2] : _initBaseURI (string): ipfs://QmNpyivcvarb7mfgz7BwAMac7sRmt5sVAXDupVkxwr6Pse/
Arg [3] : _initNotRevealedUri (string): ipfs://QmfBnxNybjPpch9YJrR7SrDhaucVujC2yDTCR9ULrDyatA

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 46616e637920466f786573000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 464f584553000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d4e707969766376617262376d66677a374277414d616337
Arg [10] : 73526d743573564158447570566b787772365073652f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [12] : 697066733a2f2f516d66426e784e79626a5070636839594a7252375372446861
Arg [13] : 756356756a4332794454435239554c7244796174410000000000000000000000


Deployed Bytecode Sourcemap

45152:3334:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24515:305;;;;;;;;;;-1:-1:-1;24515:305:0;;;;;:::i;:::-;;:::i;:::-;;;7170:14:1;;7163:22;7145:41;;7133:2;7118:18;24515:305:0;;;;;;;;47988:75;;;;;;;;;;-1:-1:-1;47988:75:0;;;;;:::i;:::-;;:::i;:::-;;27628:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29131:204::-;;;;;;;;;;-1:-1:-1;29131:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;29131:204:0;6304:203:1;45333:28:0;;;;;;;;;;;;;:::i;28694:371::-;;;;;;;;;;-1:-1:-1;28694:371:0;;;;;:::i;:::-;;:::i;23764:303::-;;;;;;;;;;-1:-1:-1;24018:12:0;;23808:7;24002:13;:28;23764:303;;;10213:25:1;;;10201:2;10186:18;23764:303:0;10067:177:1;29996:170:0;;;;;;;;;;-1:-1:-1;29996:170:0;;;;;:::i;:::-;;:::i;48167:140::-;;;;;;;;;;;;;:::i;30237:185::-;;;;;;;;;;-1:-1:-1;30237:185:0;;;;;:::i;:::-;;:::i;45563:28::-;;;;;;;;;;-1:-1:-1;45563:28:0;;;;-1:-1:-1;;;45563:28:0;;;;;;46289:100;;;;;;;;;;-1:-1:-1;46289:100:0;;;;;:::i;:::-;;:::i;45531:25::-;;;;;;;;;;-1:-1:-1;45531:25:0;;;;-1:-1:-1;;;45531:25:0;;;;;;27436:125;;;;;;;;;;-1:-1:-1;27436:125:0;;;;;:::i;:::-;;:::i;45261:21::-;;;;;;;;;;;;;:::i;24884:206::-;;;;;;;;;;-1:-1:-1;24884:206:0;;;;;:::i;:::-;;:::i;48313:89::-;;;;;;;;;;;;;:::i;48407:74::-;;;;;;;;;;-1:-1:-1;48468:5:0;;-1:-1:-1;;;;;48468:5:0;48407:74;;45370:55;;;;;;;;;;-1:-1:-1;45370:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;27797:104;;;;;;;;;;;;;:::i;46655:626::-;;;;;;:::i;:::-;;:::i;29407:287::-;;;;;;;;;;-1:-1:-1;29407:287:0;;;;;:::i;:::-;;:::i;30493:369::-;;;;;;;;;;-1:-1:-1;30493:369:0;;;;;:::i;:::-;;:::i;45598:36::-;;;;;;;;;;-1:-1:-1;45598:36:0;;;;-1:-1:-1;;;45598:36:0;;;;;;45289:37;;;;;;;;;;;;;:::i;47473:446::-;;;;;;;;;;-1:-1:-1;47473:446:0;;;;;:::i;:::-;;:::i;46395:124::-;;;;;;;;;;-1:-1:-1;46395:124:0;;;;;:::i;:::-;;:::i;29765:164::-;;;;;;;;;;-1:-1:-1;29765:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29886:25:0;;;29862:4;29886:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29765:164;48069:92;;;;;;;;;;-1:-1:-1;48069:92:0;;;;;:::i;:::-;;:::i;46527:122::-;;;;;;;;;;-1:-1:-1;46527:122:0;;;;;:::i;:::-;;:::i;24515:305::-;24617:4;-1:-1:-1;;;;;;24654:40:0;;-1:-1:-1;;;24654:40:0;;:105;;-1:-1:-1;;;;;;;24711:48:0;;-1:-1:-1;;;24711:48:0;24654:105;:158;;;-1:-1:-1;;;;;;;;;;14475:40:0;;;24776:36;24634:178;24515:305;-1:-1:-1;;24515:305:0:o;47988:75::-;46144:5;;-1:-1:-1;;;;;46144:5:0;46130:10;:19;46122:28;;;;;;48042:6:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;48042:15:0::1;-1:-1:-1::0;;;;48042:15:0;;::::1;::::0;;;::::1;::::0;;47988:75::o;27628:100::-;27682:13;27715:5;27708:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27628:100;:::o;29131:204::-;29199:7;29224:16;29232:7;29224;:16::i;:::-;29219:64;;29249:34;;-1:-1:-1;;;29249:34:0;;;;;;;;;;;29219:64;-1:-1:-1;29303:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29303:24:0;;29131:204::o;45333:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28694:371::-;28767:13;28783:24;28799:7;28783:15;:24::i;:::-;28767:40;;28828:5;-1:-1:-1;;;;;28822:11:0;:2;-1:-1:-1;;;;;28822:11:0;;28818:48;;;28842:24;;-1:-1:-1;;;28842:24:0;;;;;;;;;;;28818:48;2916:10;-1:-1:-1;;;;;28883:21:0;;;;;;:63;;-1:-1:-1;28909:37:0;28926:5;2916:10;29765:164;:::i;28909:37::-;28908:38;28883:63;28879:138;;;28970:35;;-1:-1:-1;;;28970:35:0;;;;;;;;;;;28879:138;29029:28;29038:2;29042:7;29051:5;29029:8;:28::i;:::-;28756:309;28694:371;;:::o;29996:170::-;30130:28;30140:4;30146:2;30150:7;30130:9;:28::i;48167:140::-;46144:5;;-1:-1:-1;;;;;46144:5:0;46130:10;:19;46122:28;;;;;;48238:5:::1;::::0;48230:53:::1;::::0;48217:7:::1;::::0;-1:-1:-1;;;;;48238:5:0::1;::::0;48257:21:::1;::::0;48217:7;48230:53;48217:7;48230:53;48257:21;48238:5;48230:53:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48216:67;;;48298:2;48290:11;;;::::0;::::1;;48206:101;48167:140::o:0;30237:185::-;30375:39;30392:4;30398:2;30402:7;30375:39;;;;;;;;;;;;:16;:39::i;46289:100::-;46144:5;;-1:-1:-1;;;;;46144:5:0;46130:10;:19;46122:28;;;;;;46362:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46289:100:::0;:::o;27436:125::-;27500:7;27527:21;27540:7;27527:12;:21::i;:::-;:26;;27436:125;-1:-1:-1;;27436:125:0:o;45261:21::-;;;;;;;:::i;24884:206::-;24948:7;-1:-1:-1;;;;;24972:19:0;;24968:60;;25000:28;;-1:-1:-1;;;25000:28:0;;;;;;;;;;;24968:60;-1:-1:-1;;;;;;25054:19:0;;;;;:12;:19;;;;;:27;;;;24884:206::o;48313:89::-;48358:7;48381:13;24018:12;;23808:7;24002:13;:28;;23764:303;48381:13;48374:20;;48313:89;:::o;27797:104::-;27853:13;27886:7;27879:14;;;;;:::i;46655:626::-;44125:1;44723:7;;:19;;44715:63;;;;-1:-1:-1;;;44715:63:0;;9909:2:1;44715:63:0;;;9891:21:1;9948:2;9928:18;;;9921:30;9987:33;9967:18;;;9960:61;10038:18;;44715:63:0;;;;;;;;;44125:1;44856:7;:18;46746:6:::1;::::0;-1:-1:-1;;;46746:6:0;::::1;;;46745:7;46737:67;;;::::0;-1:-1:-1;;;46737:67:0;;9494:2:1;46737:67:0::1;::::0;::::1;9476:21:1::0;9533:2;9513:18;;;9506:30;9572:34;9552:18;;;9545:62;-1:-1:-1;;;9623:18:1;;;9616:44;9677:19;;46737:67:0::1;9292:410:1::0;46737:67:0::1;46823:16;::::0;-1:-1:-1;;;46823:16:0;::::1;;;:24;;46843:4;46823:24;46815:72;;;::::0;-1:-1:-1;;;46815:72:0;;8675:2:1;46815:72:0::1;::::0;::::1;8657:21:1::0;8714:2;8694:18;;;8687:30;8753:34;8733:18;;;8726:62;-1:-1:-1;;;8804:18:1;;;8797:32;8846:19;;46815:72:0::1;8473:398:1::0;46815:72:0::1;46906:16:::0;;;::::1;::::0;:47:::1;;;45782:1;46926:11;:27;;46906:47;46898:80;;;::::0;-1:-1:-1;;;46898:80:0;;7623:2:1;46898:80:0::1;::::0;::::1;7605:21:1::0;7662:2;7642:18;;;7635:30;-1:-1:-1;;;7681:18:1;;;7674:49;7740:18;;46898:80:0::1;7421:343:1::0;46898:80:0::1;45679:4;47013:11;46997:13;24018:12:::0;;23808:7;24002:13;:28;;23764:303;46997:13:::1;:27;;;;:::i;:::-;:39;;46989:74;;;::::0;-1:-1:-1;;;46989:74:0;;7971:2:1;46989:74:0::1;::::0;::::1;7953:21:1::0;8010:2;7990:18;;;7983:30;-1:-1:-1;;;8029:18:1;;;8022:51;8090:18;;46989:74:0::1;7769:345:1::0;46989:74:0::1;47103:10;47082:32;::::0;;;:20:::1;:32;::::0;;;;;45733:2:::1;::::0;47082:46:::1;::::0;47117:11;;47082:46:::1;:::i;:::-;:65;;47074:104;;;::::0;-1:-1:-1;;;47074:104:0;;8321:2:1;47074:104:0::1;::::0;::::1;8303:21:1::0;8360:2;8340:18;;;8333:30;8399:27;8379:18;;;8372:55;8444:18;;47074:104:0::1;8119:349:1::0;47074:104:0::1;47197:17;47202:11;47197:4;:17::i;:::-;47246:10;47225:32;::::0;;;:20:::1;:32;::::0;;;;:47;;47261:11;;47225:32;:47:::1;::::0;47261:11;;47225:47:::1;:::i;:::-;::::0;;;-1:-1:-1;;44081:1:0;45035:7;:22;-1:-1:-1;46655:626:0:o;29407:287::-;-1:-1:-1;;;;;29506:24:0;;2916:10;29506:24;29502:54;;;29539:17;;-1:-1:-1;;;29539:17:0;;;;;;;;;;;29502:54;2916:10;29569:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29569:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29569:53:0;;;;;;;;;;29638:48;;7145:41:1;;;29569:42:0;;2916:10;29638:48;;7118:18:1;29638:48:0;;;;;;;29407:287;;:::o;30493:369::-;30660:28;30670:4;30676:2;30680:7;30660:9;:28::i;:::-;-1:-1:-1;;;;;30703:13:0;;4578:19;:23;;30703:76;;;;;30723:56;30754:4;30760:2;30764:7;30773:5;30723:30;:56::i;:::-;30722:57;30703:76;30699:156;;;30803:40;;-1:-1:-1;;;30803:40:0;;;;;;;;;;;30699:156;30493:369;;;;:::o;45289:37::-;;;;;;;:::i;47473:446::-;47546:13;47576:16;47584:7;47576;:16::i;:::-;47568:76;;;;-1:-1:-1;;;47568:76:0;;9078:2:1;47568:76:0;;;9060:21:1;9117:2;9097:18;;;9090:30;9156:34;9136:18;;;9129:62;-1:-1:-1;;;9207:18:1;;;9200:45;9262:19;;47568:76:0;8876:411:1;47568:76:0;47660:8;;-1:-1:-1;;;47660:8:0;;;;47657:62;;47697:14;47690:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47473:446;;;:::o;47657:62::-;47725:28;47756:10;:8;:10::i;:::-;47725:41;;47811:1;47786:14;47780:28;:32;:133;;;;;;;;;;;;;;;;;47848:14;47864:18;:7;:16;:18::i;:::-;47884:13;47831:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47780:133;47773:140;47473:446;-1:-1:-1;;;47473:446:0:o;46395:124::-;46144:5;;-1:-1:-1;;;;;46144:5:0;46130:10;:19;46122:28;;;;;;46480:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;48069:92::-:0;46144:5;;-1:-1:-1;;;;;46144:5:0;46130:10;:19;46122:28;;;;;;48130:16:::1;:25:::0;;;::::1;;-1:-1:-1::0;;;48130:25:0::1;-1:-1:-1::0;;;;48130:25:0;;::::1;::::0;;;::::1;::::0;;48069:92::o;46527:122::-;46144:5;;-1:-1:-1;;;;;46144:5:0;46130:10;:19;46122:28;;;;;;46611:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;31117:174::-:0;31174:4;31238:13;;31228:7;:23;31198:85;;;;-1:-1:-1;;31256:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31256:27:0;;;;31255:28;;31117:174::o;39274:196::-;39389:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39389:29:0;-1:-1:-1;;;;;39389:29:0;;;;;;;;;39434:28;;39389:24;;39434:28;;;;;;;39274:196;;;:::o;34217:2130::-;34332:35;34370:21;34383:7;34370:12;:21::i;:::-;34332:59;;34430:4;-1:-1:-1;;;;;34408:26:0;:13;:18;;;-1:-1:-1;;;;;34408:26:0;;34404:67;;34443:28;;-1:-1:-1;;;34443:28:0;;;;;;;;;;;34404:67;34484:22;2916:10;-1:-1:-1;;;;;34510:20:0;;;;:73;;-1:-1:-1;34547:36:0;34564:4;2916:10;29765:164;:::i;34547:36::-;34510:126;;;-1:-1:-1;2916:10:0;34600:20;34612:7;34600:11;:20::i;:::-;-1:-1:-1;;;;;34600:36:0;;34510:126;34484:153;;34655:17;34650:66;;34681:35;;-1:-1:-1;;;34681:35:0;;;;;;;;;;;34650:66;-1:-1:-1;;;;;34731:16:0;;34727:52;;34756:23;;-1:-1:-1;;;34756:23:0;;;;;;;;;;;34727:52;34900:35;34917:1;34921:7;34930:4;34900:8;:35::i;:::-;-1:-1:-1;;;;;35231:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35231:31:0;;;;;;;-1:-1:-1;;35231:31:0;;;;;;;35277:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35277:29:0;;;;;;;;;;;35357:20;;;:11;:20;;;;;;35392:18;;-1:-1:-1;;;;;;35425:49:0;;;;-1:-1:-1;;;35458:15:0;35425:49;;;;;;;;;;35748:11;;35808:24;;;;;35851:13;;35357:20;;35808:24;;35851:13;35847:384;;36061:13;;36046:11;:28;36042:174;;36099:20;;36168:28;;;;36142:54;;-1:-1:-1;;;36142:54:0;-1:-1:-1;;;;;;36142:54:0;;;-1:-1:-1;;;;;36099:20:0;;36142:54;;;;36042:174;35206:1036;;;36278:7;36274:2;-1:-1:-1;;;;;36259:27:0;36268:4;-1:-1:-1;;;;;36259:27:0;;;;;;;;;;;36297:42;34321:2026;;34217:2130;;;:::o;26265:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26376:7:0;26459:13;;26452:4;:20;26421:886;;;26493:31;26527:17;;;:11;:17;;;;;;;;;26493:51;;;;;;;;;-1:-1:-1;;;;;26493:51:0;;;;-1:-1:-1;;;26493:51:0;;;;;;;;;;;-1:-1:-1;;;26493:51:0;;;;;;;;;;;;;;26563:729;;26613:14;;-1:-1:-1;;;;;26613:28:0;;26609:101;;26677:9;26265:1109;-1:-1:-1;;;26265:1109:0:o;26609:101::-;-1:-1:-1;;;27052:6:0;27097:17;;;;:11;:17;;;;;;;;;27085:29;;;;;;;;;-1:-1:-1;;;;;27085:29:0;;;;;-1:-1:-1;;;27085:29:0;;;;;;;;;;;-1:-1:-1;;;27085:29:0;;;;;;;;;;;;;27145:28;27141:109;;27213:9;26265:1109;-1:-1:-1;;;26265:1109:0:o;27141:109::-;27012:261;;;26474:833;26421:886;27335:31;;-1:-1:-1;;;27335:31:0;;;;;;;;;;;47293:170;47348:35;47358:10;47371:11;47348:9;:35::i;:::-;47415:4;47398:13;24018:12;;23808:7;24002:13;:28;;23764:303;47398:13;:21;47394:62;;47436:8;47961;:15;;-1:-1:-1;;;;47961:15:0;-1:-1:-1;;;47961:15:0;;;47925:57;39962:667;40146:72;;-1:-1:-1;;;40146:72:0;;40125:4;;-1:-1:-1;;;;;40146:36:0;;;;;:72;;2916:10;;40197:4;;40203:7;;40212:5;;40146:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40146:72:0;;;;;;;;-1:-1:-1;;40146:72:0;;;;;;;;;;;;:::i;:::-;;;40142:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40380:13:0;;40376:235;;40426:40;;-1:-1:-1;;;40426:40:0;;;;;;;;;;;40376:235;40569:6;40563:13;40554:6;40550:2;40546:15;40539:38;40142:480;-1:-1:-1;;;;;;40265:55:0;-1:-1:-1;;;40265:55:0;;-1:-1:-1;40142:480:0;39962:667;;;;;;:::o;46175:106::-;46235:13;46268:7;46261:14;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;31299:104;31368:27;31378:2;31382:8;31368:27;;;;;;;;;;;;31889:32;31895:2;31899:8;31909:5;31916:4;32327:20;32350:13;-1:-1:-1;;;;;32378:16:0;;32374:48;;32403:19;;-1:-1:-1;;;32403:19:0;;;;;;;;;;;32374:48;32437:13;32433:44;;32459:18;;-1:-1:-1;;;32459:18:0;;;;;;;;;;;32433:44;-1:-1:-1;;;;;32828:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32887:49:0;;32828:44;;;;;;;;32887:49;;;;-1:-1:-1;;32828:44:0;;;;;;32887:49;;;;;;;;;;;;;;;;32953:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33003:66:0;;;;-1:-1:-1;;;33053:15:0;33003:66;;;;;;;;;;32953:25;33150:23;;;33194:4;:23;;;;-1:-1:-1;;;;;;33202:13:0;;4578:19;:23;;33202:15;33190:641;;;33238:314;33269:38;;33294:12;;-1:-1:-1;;;;;33269:38:0;;;33286:1;;33269:38;;33286:1;;33269:38;33335:69;33374:1;33378:2;33382:14;;;;;;33398:5;33335:30;:69::i;:::-;33330:174;;33440:40;;-1:-1:-1;;;33440:40:0;;;;;;;;;;;33330:174;33547:3;33531:12;:19;;33238:314;;33633:12;33616:13;;:29;33612:43;;33647:8;;;33612:43;33190:641;;;33696:120;33727:40;;33752:14;;;;;-1:-1:-1;;;;;33727:40:0;;;33744:1;;33727:40;;33744:1;;33727:40;33811:3;33795:12;:19;;33696:120;;33190:641;-1:-1:-1;33845:13:0;:28;33895:60;30493:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;10322:1;10315:14;;;10359:4;10346:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7197:219::-;7346:2;7335:9;7328:21;7309:4;7366:44;7406:2;7395:9;7391:18;7383:6;7366:44;:::i;10375:128::-;10415:3;10446:1;10442:6;10439:1;10436:13;10433:39;;;10452:18;;:::i;:::-;-1:-1:-1;10488:9:1;;10375:128::o;10508:120::-;10548:1;10574;10564:35;;10579:18;;:::i;:::-;-1:-1:-1;10613:9:1;;10508:120::o;10633:125::-;10673:4;10701:1;10698;10695:8;10692:34;;;10706:18;;:::i;:::-;-1:-1:-1;10743:9:1;;10633:125::o;10763:258::-;10835:1;10845:113;10859:6;10856:1;10853:13;10845:113;;;10935:11;;;10929:18;10916:11;;;10909:39;10881:2;10874:10;10845:113;;;10976:6;10973:1;10970:13;10967:48;;;-1:-1:-1;;11011:1:1;10993:16;;10986:27;10763:258::o;11026:380::-;11105:1;11101:12;;;;11148;;;11169:61;;11223:4;11215:6;11211:17;11201:27;;11169:61;11276:2;11268:6;11265:14;11245:18;11242:38;11239:161;;;11322:10;11317:3;11313:20;11310:1;11303:31;11357:4;11354:1;11347:15;11385:4;11382:1;11375:15;11239:161;;11026:380;;;:::o;11411:135::-;11450:3;-1:-1:-1;;11471:17:1;;11468:43;;;11491:18;;:::i;:::-;-1:-1:-1;11538:1:1;11527:13;;11411:135::o;11551:112::-;11583:1;11609;11599:35;;11614:18;;:::i;:::-;-1:-1:-1;11648:9:1;;11551:112::o;11668:127::-;11729:10;11724:3;11720:20;11717:1;11710:31;11760:4;11757:1;11750:15;11784:4;11781:1;11774:15;11800:127;11861:10;11856:3;11852:20;11849:1;11842:31;11892:4;11889:1;11882:15;11916:4;11913:1;11906:15;11932:127;11993:10;11988:3;11984:20;11981:1;11974:31;12024:4;12021:1;12014:15;12048:4;12045:1;12038:15;12064:127;12125:10;12120:3;12116:20;12113:1;12106:31;12156:4;12153:1;12146:15;12180:4;12177:1;12170:15;12196:131;-1:-1:-1;;;;;;12270:32:1;;12260:43;;12250:71;;12317:1;12314;12307:12

Swarm Source

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