ETH Price: $3,085.66 (+0.78%)
Gas: 6 Gwei

Token

Invisible Frens (INVISFRENS)
 

Overview

Max Total Supply

1,332 INVISFRENS

Holders

280

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xscam.eth
Balance
1 INVISFRENS
0x07b2cFB7674876fb34EeeD3248E99Bc63d238F91
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:
InvisibleFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    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;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 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 (!_checkOnERC721Received(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 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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @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: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/InvisibleFrens.sol


pragma solidity ^0.8.4;

//Invisible Frens Contract



contract InvisibleFrens is ERC721A, Ownable {

    uint256 constant public MINT_PRICE = 0.01 ether;
    uint256 constant public MAX_TX_MINT = 10;
    uint256 constant public FREE_SUPPLY = 1001;
    uint256 constant public TOTAL_SUPPLY = 6001;

    string public baseURI = "";
    bool public SalePaused;

    constructor() ERC721A("Invisible Frens", "INVISFRENS") {}

    function mint(uint256 quantity) external payable {
        require(!SalePaused, "Sale is paused");
        require(quantity > 0 && quantity <= MAX_TX_MINT, "Invalid quantity");
        uint256 supply = totalSupply();
        require(supply + quantity <= TOTAL_SUPPLY, "Max amount of tokens minted");
        require (supply + quantity <= FREE_SUPPLY || msg.value >= quantity * MINT_PRICE, "Free mint exceeded or not enough eth sent");

        _safeMint(msg.sender, quantity);
    }

    function ChangePauseState() external onlyOwner {
        SalePaused = !SalePaused;
    }

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

    function setBaseURI(string calldata newURI) external onlyOwner {
        baseURI = newURI;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ChangePauseState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WithdrawFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160089162000112565b503480156200002957600080fd5b50604080518082018252600f81526e496e76697369626c65204672656e7360881b60208083019182528351808501909452600a845269494e5649534652454e5360b01b908401528151919291620000839160019162000112565b5080516200009990600290602084019062000112565b505050620000b6620000b0620000bc60201b60201c565b620000c0565b620001f5565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012090620001b8565b90600052602060002090601f0160209004810192826200014457600085556200018f565b82601f106200015f57805160ff19168380011785556200018f565b828001600101855582156200018f579182015b828111156200018f57825182559160200191906001019062000172565b506200019d929150620001a1565b5090565b5b808211156200019d5760008155600101620001a2565b600181811c90821680620001cd57607f821691505b60208210811415620001ef57634e487b7160e01b600052602260045260246000fd5b50919050565b611c6a80620002056000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f75780639858cf1911610095578063c002d23d11610064578063c002d23d146104ca578063c87b56dd146104e5578063e985e9c514610505578063f2fde38b1461054e57600080fd5b80639858cf1914610461578063a0712d6814610477578063a22cb4651461048a578063b88d4fde146104aa57600080fd5b80638a98cbd0116100d15780638a98cbd0146103fe5780638da5cb5b14610418578063902d55a51461043657806395d89b411461044c57600080fd5b806370a08231146103b4578063715018a6146103d45780637467f6d5146103e957600080fd5b806342842e0e1161016457806355f804b31161013e57806355f804b31461034a5780636352211e1461036a5780636784d8411461038a5780636c0360eb1461039f57600080fd5b806342842e0e146102f55780634f6ccce71461031557806350629d6f1461033557600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102b55780632f745c59146102d557600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611929565b61056e565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105db565b6040516101f39190611a86565b34801561022a57600080fd5b5061023e6102393660046119d5565b61066d565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046118ff565b6106b1565b005b34801561028457600080fd5b506102a76000546001600160801b03600160801b82048116918116919091031690565b6040519081526020016101f3565b3480156102c157600080fd5b506102766102d03660046117ab565b61073f565b3480156102e157600080fd5b506102a76102f03660046118ff565b61074a565b34801561030157600080fd5b506102766103103660046117ab565b610847565b34801561032157600080fd5b506102a76103303660046119d5565b610862565b34801561034157600080fd5b5061027661090d565b34801561035657600080fd5b50610276610365366004611963565b61097c565b34801561037657600080fd5b5061023e6103853660046119d5565b6109b2565b34801561039657600080fd5b506102766109c4565b3480156103ab57600080fd5b50610211610a02565b3480156103c057600080fd5b506102a76103cf36600461175d565b610a90565b3480156103e057600080fd5b50610276610adf565b3480156103f557600080fd5b506102a7600a81565b34801561040a57600080fd5b506009546101e79060ff1681565b34801561042457600080fd5b506007546001600160a01b031661023e565b34801561044257600080fd5b506102a761177181565b34801561045857600080fd5b50610211610b15565b34801561046d57600080fd5b506102a76103e981565b6102766104853660046119d5565b610b24565b34801561049657600080fd5b506102766104a53660046118c3565b610ccf565b3480156104b657600080fd5b506102766104c53660046117e7565b610d65565b3480156104d657600080fd5b506102a7662386f26fc1000081565b3480156104f157600080fd5b506102116105003660046119d5565b610d9f565b34801561051157600080fd5b506101e7610520366004611778565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561055a57600080fd5b5061027661056936600461175d565b610e24565b60006001600160e01b031982166380ac58cd60e01b148061059f57506001600160e01b03198216635b5e139f60e01b145b806105ba57506001600160e01b0319821663780e9d6360e01b145b806105d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ea90611b5c565b80601f016020809104026020016040519081016040528092919081815260200182805461061690611b5c565b80156106635780601f1061063857610100808354040283529160200191610663565b820191906000526020600020905b81548152906001019060200180831161064657829003601f168201915b5050505050905090565b600061067882610ebc565b610695576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106bc826109b2565b9050806001600160a01b0316836001600160a01b031614156106f15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610711575061070f8133610520565b155b1561072f576040516367d9dca160e11b815260040160405180910390fd5b61073a838383610ef0565b505050565b61073a838383610f4c565b600061075583610a90565b8210610774576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561084157600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906107ed5750610839565b80516001600160a01b03161561080257805192505b876001600160a01b0316836001600160a01b031614156108375786841415610830575093506105d592505050565b6001909301925b505b600101610785565b50600080fd5b61073a83838360405180602001604052806000815250610d65565b600080546001600160801b031681805b828110156108f357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906108ea57858314156108e35750949350505050565b6001909201915b50600101610872565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b031633146109405760405162461bcd60e51b815260040161093790611a99565b60405180910390fd5b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610979573d6000803e3d6000fd5b50565b6007546001600160a01b031633146109a65760405162461bcd60e51b815260040161093790611a99565b61073a600883836116a8565b60006109bd8261116b565b5192915050565b6007546001600160a01b031633146109ee5760405162461bcd60e51b815260040161093790611a99565b6009805460ff19811660ff90911615179055565b60088054610a0f90611b5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3b90611b5c565b8015610a885780601f10610a5d57610100808354040283529160200191610a88565b820191906000526020600020905b815481529060010190602001808311610a6b57829003601f168201915b505050505081565b60006001600160a01b038216610ab9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610b095760405162461bcd60e51b815260040161093790611a99565b610b13600061128f565b565b6060600280546105ea90611b5c565b60095460ff1615610b685760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b6044820152606401610937565b600081118015610b795750600a8111155b610bb85760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610937565b6000610bdc6000546001600160801b03600160801b82048116918116919091031690565b9050611771610beb8383611ace565b1115610c395760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74206f6620746f6b656e73206d696e74656400000000006044820152606401610937565b6103e9610c468383611ace565b111580610c635750610c5f662386f26fc1000083611afa565b3410155b610cc15760405162461bcd60e51b815260206004820152602960248201527f46726565206d696e74206578636565646564206f72206e6f7420656e6f75676860448201526808195d1a081cd95b9d60ba1b6064820152608401610937565b610ccb33836112e1565b5050565b6001600160a01b038216331415610cf95760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d70848484610f4c565b610d7c848484846112fb565b610d99576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610daa82610ebc565b610dc757604051630a14c4b560e41b815260040160405180910390fd5b6000610dd161140a565b9050805160001415610df25760405180602001604052806000815250610e1d565b80610dfc84611419565b604051602001610e0d929190611a1a565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610e4e5760405162461bcd60e51b815260040161093790611a99565b6001600160a01b038116610eb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610937565b6109798161128f565b600080546001600160801b0316821080156105d5575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f578261116b565b80519091506000906001600160a01b0316336001600160a01b03161480610f8557508151610f859033610520565b80610fa0575033610f958461066d565b6001600160a01b0316145b905080610fc057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610ff55760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661101c57604051633a954ecd60e21b815260040160405180910390fd5b61102c6000848460000151610ef0565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611121576000546001600160801b0316811015611121578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561127657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112745780516001600160a01b03161561120a579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561126f579392505050565b61120a565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ccb828260405180602001604052806000815250611517565b60006001600160a01b0384163b156113fe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061133f903390899088908890600401611a49565b602060405180830381600087803b15801561135957600080fd5b505af1925050508015611389575060408051601f3d908101601f1916820190925261138691810190611946565b60015b6113e4573d8080156113b7576040519150601f19603f3d011682016040523d82523d6000602084013e6113bc565b606091505b5080516113dc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611402565b5060015b949350505050565b6060600880546105ea90611b5c565b60608161143d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611467578061145181611b97565b91506114609050600a83611ae6565b9150611441565b60008167ffffffffffffffff81111561148257611482611c08565b6040519080825280601f01601f1916602001820160405280156114ac576020820181803683370190505b5090505b8415611402576114c1600183611b19565b91506114ce600a86611bb2565b6114d9906030611ace565b60f81b8183815181106114ee576114ee611bf2565b60200101906001600160f81b031916908160001a905350611510600a86611ae6565b94506114b0565b61073a83838360016000546001600160801b03166001600160a01b03851661155157604051622e076360e81b815260040160405180910390fd5b8361156f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156116825760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611658575061165660008884886112fb565b155b15611676576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611601565b50600080546001600160801b0319166001600160801b0392909216919091179055611164565b8280546116b490611b5c565b90600052602060002090601f0160209004810192826116d6576000855561171c565b82601f106116ef5782800160ff1982351617855561171c565b8280016001018555821561171c579182015b8281111561171c578235825591602001919060010190611701565b5061172892915061172c565b5090565b5b80821115611728576000815560010161172d565b80356001600160a01b038116811461175857600080fd5b919050565b60006020828403121561176f57600080fd5b610e1d82611741565b6000806040838503121561178b57600080fd5b61179483611741565b91506117a260208401611741565b90509250929050565b6000806000606084860312156117c057600080fd5b6117c984611741565b92506117d760208501611741565b9150604084013590509250925092565b600080600080608085870312156117fd57600080fd5b61180685611741565b935061181460208601611741565b925060408501359150606085013567ffffffffffffffff8082111561183857600080fd5b818701915087601f83011261184c57600080fd5b81358181111561185e5761185e611c08565b604051601f8201601f19908116603f0116810190838211818310171561188657611886611c08565b816040528281528a602084870101111561189f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156118d657600080fd5b6118df83611741565b9150602083013580151581146118f457600080fd5b809150509250929050565b6000806040838503121561191257600080fd5b61191b83611741565b946020939093013593505050565b60006020828403121561193b57600080fd5b8135610e1d81611c1e565b60006020828403121561195857600080fd5b8151610e1d81611c1e565b6000806020838503121561197657600080fd5b823567ffffffffffffffff8082111561198e57600080fd5b818501915085601f8301126119a257600080fd5b8135818111156119b157600080fd5b8660208285010111156119c357600080fd5b60209290920196919550909350505050565b6000602082840312156119e757600080fd5b5035919050565b60008151808452611a06816020860160208601611b30565b601f01601f19169290920160200192915050565b60008351611a2c818460208801611b30565b835190830190611a40818360208801611b30565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a7c908301846119ee565b9695505050505050565b602081526000610e1d60208301846119ee565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ae157611ae1611bc6565b500190565b600082611af557611af5611bdc565b500490565b6000816000190483118215151615611b1457611b14611bc6565b500290565b600082821015611b2b57611b2b611bc6565b500390565b60005b83811015611b4b578181015183820152602001611b33565b83811115610d995750506000910152565b600181811c90821680611b7057607f821691505b60208210811415611b9157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bab57611bab611bc6565b5060010190565b600082611bc157611bc1611bdc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461097957600080fdfea264697066735822122077096aca18f60567c184625e23b4a7bdf3882bc60b12111fa809e73d04510aa064736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f75780639858cf1911610095578063c002d23d11610064578063c002d23d146104ca578063c87b56dd146104e5578063e985e9c514610505578063f2fde38b1461054e57600080fd5b80639858cf1914610461578063a0712d6814610477578063a22cb4651461048a578063b88d4fde146104aa57600080fd5b80638a98cbd0116100d15780638a98cbd0146103fe5780638da5cb5b14610418578063902d55a51461043657806395d89b411461044c57600080fd5b806370a08231146103b4578063715018a6146103d45780637467f6d5146103e957600080fd5b806342842e0e1161016457806355f804b31161013e57806355f804b31461034a5780636352211e1461036a5780636784d8411461038a5780636c0360eb1461039f57600080fd5b806342842e0e146102f55780634f6ccce71461031557806350629d6f1461033557600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102b55780632f745c59146102d557600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611929565b61056e565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105db565b6040516101f39190611a86565b34801561022a57600080fd5b5061023e6102393660046119d5565b61066d565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046118ff565b6106b1565b005b34801561028457600080fd5b506102a76000546001600160801b03600160801b82048116918116919091031690565b6040519081526020016101f3565b3480156102c157600080fd5b506102766102d03660046117ab565b61073f565b3480156102e157600080fd5b506102a76102f03660046118ff565b61074a565b34801561030157600080fd5b506102766103103660046117ab565b610847565b34801561032157600080fd5b506102a76103303660046119d5565b610862565b34801561034157600080fd5b5061027661090d565b34801561035657600080fd5b50610276610365366004611963565b61097c565b34801561037657600080fd5b5061023e6103853660046119d5565b6109b2565b34801561039657600080fd5b506102766109c4565b3480156103ab57600080fd5b50610211610a02565b3480156103c057600080fd5b506102a76103cf36600461175d565b610a90565b3480156103e057600080fd5b50610276610adf565b3480156103f557600080fd5b506102a7600a81565b34801561040a57600080fd5b506009546101e79060ff1681565b34801561042457600080fd5b506007546001600160a01b031661023e565b34801561044257600080fd5b506102a761177181565b34801561045857600080fd5b50610211610b15565b34801561046d57600080fd5b506102a76103e981565b6102766104853660046119d5565b610b24565b34801561049657600080fd5b506102766104a53660046118c3565b610ccf565b3480156104b657600080fd5b506102766104c53660046117e7565b610d65565b3480156104d657600080fd5b506102a7662386f26fc1000081565b3480156104f157600080fd5b506102116105003660046119d5565b610d9f565b34801561051157600080fd5b506101e7610520366004611778565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561055a57600080fd5b5061027661056936600461175d565b610e24565b60006001600160e01b031982166380ac58cd60e01b148061059f57506001600160e01b03198216635b5e139f60e01b145b806105ba57506001600160e01b0319821663780e9d6360e01b145b806105d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ea90611b5c565b80601f016020809104026020016040519081016040528092919081815260200182805461061690611b5c565b80156106635780601f1061063857610100808354040283529160200191610663565b820191906000526020600020905b81548152906001019060200180831161064657829003601f168201915b5050505050905090565b600061067882610ebc565b610695576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106bc826109b2565b9050806001600160a01b0316836001600160a01b031614156106f15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610711575061070f8133610520565b155b1561072f576040516367d9dca160e11b815260040160405180910390fd5b61073a838383610ef0565b505050565b61073a838383610f4c565b600061075583610a90565b8210610774576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561084157600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906107ed5750610839565b80516001600160a01b03161561080257805192505b876001600160a01b0316836001600160a01b031614156108375786841415610830575093506105d592505050565b6001909301925b505b600101610785565b50600080fd5b61073a83838360405180602001604052806000815250610d65565b600080546001600160801b031681805b828110156108f357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906108ea57858314156108e35750949350505050565b6001909201915b50600101610872565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b031633146109405760405162461bcd60e51b815260040161093790611a99565b60405180910390fd5b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610979573d6000803e3d6000fd5b50565b6007546001600160a01b031633146109a65760405162461bcd60e51b815260040161093790611a99565b61073a600883836116a8565b60006109bd8261116b565b5192915050565b6007546001600160a01b031633146109ee5760405162461bcd60e51b815260040161093790611a99565b6009805460ff19811660ff90911615179055565b60088054610a0f90611b5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3b90611b5c565b8015610a885780601f10610a5d57610100808354040283529160200191610a88565b820191906000526020600020905b815481529060010190602001808311610a6b57829003601f168201915b505050505081565b60006001600160a01b038216610ab9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610b095760405162461bcd60e51b815260040161093790611a99565b610b13600061128f565b565b6060600280546105ea90611b5c565b60095460ff1615610b685760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b6044820152606401610937565b600081118015610b795750600a8111155b610bb85760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610937565b6000610bdc6000546001600160801b03600160801b82048116918116919091031690565b9050611771610beb8383611ace565b1115610c395760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74206f6620746f6b656e73206d696e74656400000000006044820152606401610937565b6103e9610c468383611ace565b111580610c635750610c5f662386f26fc1000083611afa565b3410155b610cc15760405162461bcd60e51b815260206004820152602960248201527f46726565206d696e74206578636565646564206f72206e6f7420656e6f75676860448201526808195d1a081cd95b9d60ba1b6064820152608401610937565b610ccb33836112e1565b5050565b6001600160a01b038216331415610cf95760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d70848484610f4c565b610d7c848484846112fb565b610d99576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610daa82610ebc565b610dc757604051630a14c4b560e41b815260040160405180910390fd5b6000610dd161140a565b9050805160001415610df25760405180602001604052806000815250610e1d565b80610dfc84611419565b604051602001610e0d929190611a1a565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610e4e5760405162461bcd60e51b815260040161093790611a99565b6001600160a01b038116610eb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610937565b6109798161128f565b600080546001600160801b0316821080156105d5575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f578261116b565b80519091506000906001600160a01b0316336001600160a01b03161480610f8557508151610f859033610520565b80610fa0575033610f958461066d565b6001600160a01b0316145b905080610fc057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610ff55760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661101c57604051633a954ecd60e21b815260040160405180910390fd5b61102c6000848460000151610ef0565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611121576000546001600160801b0316811015611121578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561127657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112745780516001600160a01b03161561120a579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561126f579392505050565b61120a565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ccb828260405180602001604052806000815250611517565b60006001600160a01b0384163b156113fe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061133f903390899088908890600401611a49565b602060405180830381600087803b15801561135957600080fd5b505af1925050508015611389575060408051601f3d908101601f1916820190925261138691810190611946565b60015b6113e4573d8080156113b7576040519150601f19603f3d011682016040523d82523d6000602084013e6113bc565b606091505b5080516113dc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611402565b5060015b949350505050565b6060600880546105ea90611b5c565b60608161143d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611467578061145181611b97565b91506114609050600a83611ae6565b9150611441565b60008167ffffffffffffffff81111561148257611482611c08565b6040519080825280601f01601f1916602001820160405280156114ac576020820181803683370190505b5090505b8415611402576114c1600183611b19565b91506114ce600a86611bb2565b6114d9906030611ace565b60f81b8183815181106114ee576114ee611bf2565b60200101906001600160f81b031916908160001a905350611510600a86611ae6565b94506114b0565b61073a83838360016000546001600160801b03166001600160a01b03851661155157604051622e076360e81b815260040160405180910390fd5b8361156f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156116825760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611658575061165660008884886112fb565b155b15611676576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611601565b50600080546001600160801b0319166001600160801b0392909216919091179055611164565b8280546116b490611b5c565b90600052602060002090601f0160209004810192826116d6576000855561171c565b82601f106116ef5782800160ff1982351617855561171c565b8280016001018555821561171c579182015b8281111561171c578235825591602001919060010190611701565b5061172892915061172c565b5090565b5b80821115611728576000815560010161172d565b80356001600160a01b038116811461175857600080fd5b919050565b60006020828403121561176f57600080fd5b610e1d82611741565b6000806040838503121561178b57600080fd5b61179483611741565b91506117a260208401611741565b90509250929050565b6000806000606084860312156117c057600080fd5b6117c984611741565b92506117d760208501611741565b9150604084013590509250925092565b600080600080608085870312156117fd57600080fd5b61180685611741565b935061181460208601611741565b925060408501359150606085013567ffffffffffffffff8082111561183857600080fd5b818701915087601f83011261184c57600080fd5b81358181111561185e5761185e611c08565b604051601f8201601f19908116603f0116810190838211818310171561188657611886611c08565b816040528281528a602084870101111561189f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156118d657600080fd5b6118df83611741565b9150602083013580151581146118f457600080fd5b809150509250929050565b6000806040838503121561191257600080fd5b61191b83611741565b946020939093013593505050565b60006020828403121561193b57600080fd5b8135610e1d81611c1e565b60006020828403121561195857600080fd5b8151610e1d81611c1e565b6000806020838503121561197657600080fd5b823567ffffffffffffffff8082111561198e57600080fd5b818501915085601f8301126119a257600080fd5b8135818111156119b157600080fd5b8660208285010111156119c357600080fd5b60209290920196919550909350505050565b6000602082840312156119e757600080fd5b5035919050565b60008151808452611a06816020860160208601611b30565b601f01601f19169290920160200192915050565b60008351611a2c818460208801611b30565b835190830190611a40818360208801611b30565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a7c908301846119ee565b9695505050505050565b602081526000610e1d60208301846119ee565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ae157611ae1611bc6565b500190565b600082611af557611af5611bdc565b500490565b6000816000190483118215151615611b1457611b14611bc6565b500290565b600082821015611b2b57611b2b611bc6565b500390565b60005b83811015611b4b578181015183820152602001611b33565b83811115610d995750506000910152565b600181811c90821680611b7057607f821691505b60208210811415611b9157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bab57611bab611bc6565b5060010190565b600082611bc157611bc1611bdc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461097957600080fdfea264697066735822122077096aca18f60567c184625e23b4a7bdf3882bc60b12111fa809e73d04510aa064736f6c63430008070033

Deployed Bytecode Sourcemap

46375:1315:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27279:372;;;;;;;;;;-1:-1:-1;27279:372:0;;;;;:::i;:::-;;:::i;:::-;;;5624:14:1;;5617:22;5599:41;;5587:2;5572:18;27279:372:0;;;;;;;;29889:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31392:204::-;;;;;;;;;;-1:-1:-1;31392:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4922:32:1;;;4904:51;;4892:2;4877:18;31392:204:0;4758:203:1;30955:371:0;;;;;;;;;;-1:-1:-1;30955:371:0;;;;;:::i;:::-;;:::i;:::-;;24516:280;;;;;;;;;;;;24569:7;24761:12;-1:-1:-1;;;;;;;;24761:12:0;;;;24745:13;;;:28;;;;24738:35;;24516:280;;;;8243:25:1;;;8231:2;8216:18;24516:280:0;8097:177:1;32249:170:0;;;;;;;;;;-1:-1:-1;32249:170:0;;;;;:::i;:::-;;:::i;26102:1105::-;;;;;;;;;;-1:-1:-1;26102:1105:0;;;;;:::i;:::-;;:::i;32490:185::-;;;;;;;;;;-1:-1:-1;32490:185:0;;;;;:::i;:::-;;:::i;25089:713::-;;;;;;;;;;-1:-1:-1;25089:713:0;;;;;:::i;:::-;;:::i;47355:118::-;;;;;;;;;;;;;:::i;47481:98::-;;;;;;;;;;-1:-1:-1;47481:98:0;;;;;:::i;:::-;;:::i;29698:124::-;;;;;;;;;;-1:-1:-1;29698:124:0;;;;;:::i;:::-;;:::i;47257:90::-;;;;;;;;;;;;;:::i;46630:26::-;;;;;;;;;;;;;:::i;27715:206::-;;;;;;;;;;-1:-1:-1;27715:206:0;;;;;:::i;:::-;;:::i;45454:103::-;;;;;;;;;;;;;:::i;46482:40::-;;;;;;;;;;;;46520:2;46482:40;;46663:22;;;;;;;;;;-1:-1:-1;46663:22:0;;;;;;;;44803:87;;;;;;;;;;-1:-1:-1;44876:6:0;;-1:-1:-1;;;;;44876:6:0;44803:87;;46578:43;;;;;;;;;;;;46617:4;46578:43;;30058:104;;;;;;;;;;;;;:::i;46529:42::-;;;;;;;;;;;;46567:4;46529:42;;46759:490;;;;;;:::i;:::-;;:::i;31668:279::-;;;;;;;;;;-1:-1:-1;31668:279:0;;;;;:::i;:::-;;:::i;32746:342::-;;;;;;;;;;-1:-1:-1;32746:342:0;;;;;:::i;:::-;;:::i;46428:47::-;;;;;;;;;;;;46465:10;46428:47;;30233:318;;;;;;;;;;-1:-1:-1;30233:318:0;;;;;:::i;:::-;;:::i;32018:164::-;;;;;;;;;;-1:-1:-1;32018:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32139:25:0;;;32115:4;32139:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32018:164;45712:201;;;;;;;;;;-1:-1:-1;45712:201:0;;;;;:::i;:::-;;:::i;27279:372::-;27381:4;-1:-1:-1;;;;;;27418:40:0;;-1:-1:-1;;;27418:40:0;;:105;;-1:-1:-1;;;;;;;27475:48:0;;-1:-1:-1;;;27475:48:0;27418:105;:172;;;-1:-1:-1;;;;;;;27540:50:0;;-1:-1:-1;;;27540:50:0;27418:172;:225;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;27607:36;27398:245;27279:372;-1:-1:-1;;27279:372:0:o;29889:100::-;29943:13;29976:5;29969:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29889:100;:::o;31392:204::-;31460:7;31485:16;31493:7;31485;:16::i;:::-;31480:64;;31510:34;;-1:-1:-1;;;31510:34:0;;;;;;;;;;;31480:64;-1:-1:-1;31564:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31564:24:0;;31392:204::o;30955:371::-;31028:13;31044:24;31060:7;31044:15;:24::i;:::-;31028:40;;31089:5;-1:-1:-1;;;;;31083:11:0;:2;-1:-1:-1;;;;;31083:11:0;;31079:48;;;31103:24;;-1:-1:-1;;;31103:24:0;;;;;;;;;;;31079:48;21118:10;-1:-1:-1;;;;;31144:21:0;;;;;;:63;;-1:-1:-1;31170:37:0;31187:5;21118:10;32018:164;:::i;31170:37::-;31169:38;31144:63;31140:138;;;31231:35;;-1:-1:-1;;;31231:35:0;;;;;;;;;;;31140:138;31290:28;31299:2;31303:7;31312:5;31290:8;:28::i;:::-;31017:309;30955:371;;:::o;32249:170::-;32383:28;32393:4;32399:2;32403:7;32383:9;:28::i;26102:1105::-;26191:7;26224:16;26234:5;26224:9;:16::i;:::-;26215:5;:25;26211:61;;26249:23;;-1:-1:-1;;;26249:23:0;;;;;;;;;;;26211:61;26283:22;26308:13;;-1:-1:-1;;;;;26308:13:0;;26283:22;;26558:557;26578:14;26574:1;:18;26558:557;;;26618:31;26652:14;;;:11;:14;;;;;;;;;26618:48;;;;;;;;;-1:-1:-1;;;;;26618:48:0;;;;-1:-1:-1;;;26618:48:0;;;;;;;;;;;-1:-1:-1;;;26618:48:0;;;;;;;;;;;;;;;;26685:73;;26730:8;;;26685:73;26780:14;;-1:-1:-1;;;;;26780:28:0;;26776:111;;26853:14;;;-1:-1:-1;26776:111:0;26930:5;-1:-1:-1;;;;;26909:26:0;:17;-1:-1:-1;;;;;26909:26:0;;26905:195;;;26979:5;26964:11;:20;26960:85;;;-1:-1:-1;27020:1:0;-1:-1:-1;27013:8:0;;-1:-1:-1;;;27013:8:0;26960:85;27067:13;;;;;26905:195;26599:516;26558:557;26594:3;;26558:557;;;;27191:8;;;32490:185;32628:39;32645:4;32651:2;32655:7;32628:39;;;;;;;;;;;;:16;:39::i;25089:713::-;25156:7;25201:13;;-1:-1:-1;;;;;25201:13:0;25156:7;;25415:328;25435:14;25431:1;:18;25415:328;;;25475:31;25509:14;;;:11;:14;;;;;;;;;25475:48;;;;;;;;;-1:-1:-1;;;;;25475:48:0;;;;-1:-1:-1;;;25475:48:0;;;;;;;;;;;-1:-1:-1;;;25475:48:0;;;;;;;;;;;;;;25542:186;;25607:5;25592:11;:20;25588:85;;;-1:-1:-1;25648:1:0;25089:713;-1:-1:-1;;;;25089:713:0:o;25588:85::-;25695:13;;;;;25542:186;-1:-1:-1;25451:3:0;;25415:328;;;;25771:23;;-1:-1:-1;;;25771:23:0;;;;;;;;;;;47355:118;44876:6;;-1:-1:-1;;;;;44876:6:0;21118:10;45023:23;45015:68;;;;-1:-1:-1;;;45015:68:0;;;;;;;:::i;:::-;;;;;;;;;44876:6;;47417:48:::1;::::0;-1:-1:-1;;;;;44876:6:0;;;;47443:21:::1;47417:48:::0;::::1;;;::::0;::::1;::::0;;;47443:21;44876:6;47417:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47355:118::o:0;47481:98::-;44876:6;;-1:-1:-1;;;;;44876:6:0;21118:10;45023:23;45015:68;;;;-1:-1:-1;;;45015:68:0;;;;;;;:::i;:::-;47555:16:::1;:7;47565:6:::0;;47555:16:::1;:::i;29698:124::-:0;29762:7;29789:20;29801:7;29789:11;:20::i;:::-;:25;;29698:124;-1:-1:-1;;29698:124:0:o;47257:90::-;44876:6;;-1:-1:-1;;;;;44876:6:0;21118:10;45023:23;45015:68;;;;-1:-1:-1;;;45015:68:0;;;;;;;:::i;:::-;47329:10:::1;::::0;;-1:-1:-1;;47315:24:0;::::1;47329:10;::::0;;::::1;47328:11;47315:24;::::0;;47257:90::o;46630:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27715:206::-;27779:7;-1:-1:-1;;;;;27803:19:0;;27799:60;;27831:28;;-1:-1:-1;;;27831:28:0;;;;;;;;;;;27799:60;-1:-1:-1;;;;;;27885:19:0;;;;;:12;:19;;;;;:27;;;;27715:206::o;45454:103::-;44876:6;;-1:-1:-1;;;;;44876:6:0;21118:10;45023:23;45015:68;;;;-1:-1:-1;;;45015:68:0;;;;;;;:::i;:::-;45519:30:::1;45546:1;45519:18;:30::i;:::-;45454:103::o:0;30058:104::-;30114:13;30147:7;30140:14;;;;;:::i;46759:490::-;46828:10;;;;46827:11;46819:38;;;;-1:-1:-1;;;46819:38:0;;7956:2:1;46819:38:0;;;7938:21:1;7995:2;7975:18;;;7968:30;-1:-1:-1;;;8014:18:1;;;8007:44;8068:18;;46819:38:0;7754:338:1;46819:38:0;46887:1;46876:8;:12;:39;;;;;46520:2;46892:8;:23;;46876:39;46868:68;;;;-1:-1:-1;;;46868:68:0;;6894:2:1;46868:68:0;;;6876:21:1;6933:2;6913:18;;;6906:30;-1:-1:-1;;;6952:18:1;;;6945:46;7008:18;;46868:68:0;6692:340:1;46868:68:0;46947:14;46964:13;24569:7;24761:12;-1:-1:-1;;;;;;;;24761:12:0;;;;24745:13;;;:28;;;;24738:35;;24516:280;46964:13;46947:30;-1:-1:-1;46617:4:0;46996:17;47005:8;46947:30;46996:17;:::i;:::-;:33;;46988:73;;;;-1:-1:-1;;;46988:73:0;;7600:2:1;46988:73:0;;;7582:21:1;7639:2;7619:18;;;7612:30;7678:29;7658:18;;;7651:57;7725:18;;46988:73:0;7398:351:1;46988:73:0;46567:4;47081:17;47090:8;47081:6;:17;:::i;:::-;:32;;:70;;;-1:-1:-1;47130:21:0;46465:10;47130:8;:21;:::i;:::-;47117:9;:34;;47081:70;47072:125;;;;-1:-1:-1;;;47072:125:0;;6484:2:1;47072:125:0;;;6466:21:1;6523:2;6503:18;;;6496:30;6562:34;6542:18;;;6535:62;-1:-1:-1;;;6613:18:1;;;6606:39;6662:19;;47072:125:0;6282:405:1;47072:125:0;47210:31;47220:10;47232:8;47210:9;:31::i;:::-;46808:441;46759:490;:::o;31668:279::-;-1:-1:-1;;;;;31759:24:0;;21118:10;31759:24;31755:54;;;31792:17;;-1:-1:-1;;;31792:17:0;;;;;;;;;;;31755:54;21118:10;31822:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31822:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31822:53:0;;;;;;;;;;31891:48;;5599:41:1;;;31822:42:0;;21118:10;31891:48;;5572:18:1;31891:48:0;;;;;;;31668:279;;:::o;32746:342::-;32913:28;32923:4;32929:2;32933:7;32913:9;:28::i;:::-;32957:48;32980:4;32986:2;32990:7;32999:5;32957:22;:48::i;:::-;32952:129;;33029:40;;-1:-1:-1;;;33029:40:0;;;;;;;;;;;32952:129;32746:342;;;;:::o;30233:318::-;30306:13;30337:16;30345:7;30337;:16::i;:::-;30332:59;;30362:29;;-1:-1:-1;;;30362:29:0;;;;;;;;;;;30332:59;30404:21;30428:10;:8;:10::i;:::-;30404:34;;30462:7;30456:21;30481:1;30456:26;;:87;;;;;;;;;;;;;;;;;30509:7;30518:18;:7;:16;:18::i;:::-;30492:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30456:87;30449:94;30233:318;-1:-1:-1;;;30233:318:0:o;45712:201::-;44876:6;;-1:-1:-1;;;;;44876:6:0;21118:10;45023:23;45015:68;;;;-1:-1:-1;;;45015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45801:22:0;::::1;45793:73;;;::::0;-1:-1:-1;;;45793:73:0;;6077:2:1;45793:73:0::1;::::0;::::1;6059:21:1::0;6116:2;6096:18;;;6089:30;6155:34;6135:18;;;6128:62;-1:-1:-1;;;6206:18:1;;;6199:36;6252:19;;45793:73:0::1;5875:402:1::0;45793:73:0::1;45877:28;45896:8;45877:18;:28::i;33343:144::-:0;33400:4;33434:13;;-1:-1:-1;;;;;33434:13:0;33424:23;;:55;;;;-1:-1:-1;;33452:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33452:27:0;;;;33451:28;;33343:144::o;40559:196::-;40674:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40674:29:0;-1:-1:-1;;;;;40674:29:0;;;;;;;;;40719:28;;40674:24;;40719:28;;;;;;;40559:196;;;:::o;36060:2112::-;36175:35;36213:20;36225:7;36213:11;:20::i;:::-;36288:18;;36175:58;;-1:-1:-1;36246:22:0;;-1:-1:-1;;;;;36272:34:0;21118:10;-1:-1:-1;;;;;36272:34:0;;:101;;;-1:-1:-1;36340:18:0;;36323:50;;21118:10;32018:164;:::i;36323:50::-;36272:154;;;-1:-1:-1;21118:10:0;36390:20;36402:7;36390:11;:20::i;:::-;-1:-1:-1;;;;;36390:36:0;;36272:154;36246:181;;36445:17;36440:66;;36471:35;;-1:-1:-1;;;36471:35:0;;;;;;;;;;;36440:66;36543:4;-1:-1:-1;;;;;36521:26:0;:13;:18;;;-1:-1:-1;;;;;36521:26:0;;36517:67;;36556:28;;-1:-1:-1;;;36556:28:0;;;;;;;;;;;36517:67;-1:-1:-1;;;;;36599:16:0;;36595:52;;36624:23;;-1:-1:-1;;;36624:23:0;;;;;;;;;;;36595:52;36768:49;36785:1;36789:7;36798:13;:18;;;36768:8;:49::i;:::-;-1:-1:-1;;;;;37113:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37113:31:0;;;;;;;-1:-1:-1;;37113:31:0;;;;;;;37159:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37159:29:0;;;;;;;;;;;37205:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;37250:61:0;;;;-1:-1:-1;;;37295:15:0;37250:61;;;;;;;;;;;37585:11;;;37615:24;;;;;:29;37585:11;;37615:29;37611:445;;37840:13;;-1:-1:-1;;;;;37840:13:0;37826:27;;37822:219;;;37910:18;;;37878:24;;;:11;:24;;;;;;;;:50;;37993:28;;;;37951:70;;-1:-1:-1;;;37951:70:0;-1:-1:-1;;;;;;37951:70:0;;;-1:-1:-1;;;;;37878:50:0;;;37951:70;;;;;;;37822:219;37088:979;38103:7;38099:2;-1:-1:-1;;;;;38084:27:0;38093:4;-1:-1:-1;;;;;38084:27:0;;;;;;;;;;;38122:42;36164:2008;;36060:2112;;;:::o;28553:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;28719:13:0;;28663:7;;-1:-1:-1;;;;;28719:13:0;28712:20;;28708:861;;;28753:31;28787:17;;;:11;:17;;;;;;;;;28753:51;;;;;;;;;-1:-1:-1;;;;;28753:51:0;;;;-1:-1:-1;;;28753:51:0;;;;;;;;;;;-1:-1:-1;;;28753:51:0;;;;;;;;;;;;;;28823:731;;28873:14;;-1:-1:-1;;;;;28873:28:0;;28869:101;;28937:9;28553:1083;-1:-1:-1;;;28553:1083:0:o;28869:101::-;-1:-1:-1;;;29314:6:0;29359:17;;;;:11;:17;;;;;;;;;29347:29;;;;;;;;;-1:-1:-1;;;;;29347:29:0;;;;;-1:-1:-1;;;29347:29:0;;;;;;;;;;;-1:-1:-1;;;29347:29:0;;;;;;;;;;;;;29407:28;29403:109;;29475:9;28553:1083;-1:-1:-1;;;28553:1083:0:o;29403:109::-;29274:261;;;28734:835;28708:861;29597:31;;-1:-1:-1;;;29597:31:0;;;;;;;;;;;46073:191;46166:6;;;-1:-1:-1;;;;;46183:17:0;;;-1:-1:-1;;;;;;46183:17:0;;;;;;;46216:40;;46166:6;;;46183:17;46166:6;;46216:40;;46147:16;;46216:40;46136:128;46073:191;:::o;33495:104::-;33564:27;33574:2;33578:8;33564:27;;;;;;;;;;;;:9;:27::i;41320:790::-;41475:4;-1:-1:-1;;;;;41496:13:0;;3652:19;:23;41492:611;;41532:72;;-1:-1:-1;;;41532:72:0;;-1:-1:-1;;;;;41532:36:0;;;;;:72;;21118:10;;41583:4;;41589:7;;41598:5;;41532:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41532:72:0;;;;;;;;-1:-1:-1;;41532:72:0;;;;;;;;;;;;:::i;:::-;;;41528:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41778:13:0;;41774:259;;41828:40;;-1:-1:-1;;;41828:40:0;;;;;;;;;;;41774:259;41983:6;41977:13;41968:6;41964:2;41960:15;41953:38;41528:520;-1:-1:-1;;;;;;41655:55:0;-1:-1:-1;;;41655:55:0;;-1:-1:-1;41648:62:0;;41492:611;-1:-1:-1;42087:4:0;41492:611;41320:790;;;;;;:::o;47587:100::-;47639:13;47672:7;47665:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;33962:163;34085:32;34091:2;34095:8;34105:5;34112:4;34523:20;34546:13;-1:-1:-1;;;;;34546:13:0;-1:-1:-1;;;;;34574:16:0;;34570:48;;34599:19;;-1:-1:-1;;;34599:19:0;;;;;;;;;;;34570:48;34633:13;34629:44;;34655:18;;-1:-1:-1;;;34655:18:0;;;;;;;;;;;34629:44;-1:-1:-1;;;;;35025:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;35084:49:0;;35025:44;;;;;;;;35084:49;;;;-1:-1:-1;;35025:44:0;;;;;;35084:49;;;;;;;;;;;;;;;;35150:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;35200:66:0;;;;-1:-1:-1;;;35250:15:0;35200:66;;;;;;;;;;;35150:25;;35335:328;35355:8;35351:1;:12;35335:328;;;35394:38;;35419:12;;-1:-1:-1;;;;;35394:38:0;;;35411:1;;35394:38;;35411:1;;35394:38;35455:4;:68;;;;;35464:59;35495:1;35499:2;35503:12;35517:5;35464:22;:59::i;:::-;35463:60;35455:68;35451:164;;;35555:40;;-1:-1:-1;;;35555:40:0;;;;;;;;;;;35451:164;35633:14;;;;;35365:3;35335:328;;;-1:-1:-1;35679:13:0;:37;;-1:-1:-1;;;;;;35679:37:0;-1:-1:-1;;;;;35679:37:0;;;;;;;;;;35738:60;32746:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:470::-;4462:3;4500:6;4494:13;4516:53;4562:6;4557:3;4550:4;4542:6;4538:17;4516:53;:::i;:::-;4632:13;;4591:16;;;;4654:57;4632:13;4591:16;4688:4;4676:17;;4654:57;:::i;:::-;4727:20;;4283:470;-1:-1:-1;;;;4283:470:1:o;4966:488::-;-1:-1:-1;;;;;5235:15:1;;;5217:34;;5287:15;;5282:2;5267:18;;5260:43;5334:2;5319:18;;5312:34;;;5382:3;5377:2;5362:18;;5355:31;;;5160:4;;5403:45;;5428:19;;5420:6;5403:45;:::i;:::-;5395:53;4966:488;-1:-1:-1;;;;;;4966:488:1:o;5651:219::-;5800:2;5789:9;5782:21;5763:4;5820:44;5860:2;5849:9;5845:18;5837:6;5820:44;:::i;7037:356::-;7239:2;7221:21;;;7258:18;;;7251:30;7317:34;7312:2;7297:18;;7290:62;7384:2;7369:18;;7037:356::o;8279:128::-;8319:3;8350:1;8346:6;8343:1;8340:13;8337:39;;;8356:18;;:::i;:::-;-1:-1:-1;8392:9:1;;8279:128::o;8412:120::-;8452:1;8478;8468:35;;8483:18;;:::i;:::-;-1:-1:-1;8517:9:1;;8412:120::o;8537:168::-;8577:7;8643:1;8639;8635:6;8631:14;8628:1;8625:21;8620:1;8613:9;8606:17;8602:45;8599:71;;;8650:18;;:::i;:::-;-1:-1:-1;8690:9:1;;8537:168::o;8710:125::-;8750:4;8778:1;8775;8772:8;8769:34;;;8783:18;;:::i;:::-;-1:-1:-1;8820:9:1;;8710:125::o;8840:258::-;8912:1;8922:113;8936:6;8933:1;8930:13;8922:113;;;9012:11;;;9006:18;8993:11;;;8986:39;8958:2;8951:10;8922:113;;;9053:6;9050:1;9047:13;9044:48;;;-1:-1:-1;;9088:1:1;9070:16;;9063:27;8840:258::o;9103:380::-;9182:1;9178:12;;;;9225;;;9246:61;;9300:4;9292:6;9288:17;9278:27;;9246:61;9353:2;9345:6;9342:14;9322:18;9319:38;9316:161;;;9399:10;9394:3;9390:20;9387:1;9380:31;9434:4;9431:1;9424:15;9462:4;9459:1;9452:15;9316:161;;9103:380;;;:::o;9488:135::-;9527:3;-1:-1:-1;;9548:17:1;;9545:43;;;9568:18;;:::i;:::-;-1:-1:-1;9615:1:1;9604:13;;9488:135::o;9628:112::-;9660:1;9686;9676:35;;9691:18;;:::i;:::-;-1:-1:-1;9725:9:1;;9628:112::o;9745:127::-;9806:10;9801:3;9797:20;9794:1;9787:31;9837:4;9834:1;9827:15;9861:4;9858:1;9851:15;9877:127;9938:10;9933:3;9929:20;9926:1;9919:31;9969:4;9966:1;9959:15;9993:4;9990:1;9983:15;10009:127;10070:10;10065:3;10061:20;10058:1;10051:31;10101:4;10098:1;10091:15;10125:4;10122:1;10115:15;10141:127;10202:10;10197:3;10193:20;10190:1;10183:31;10233:4;10230:1;10223:15;10257:4;10254:1;10247:15;10273:131;-1:-1:-1;;;;;;10347:32:1;;10337:43;;10327:71;;10394:1;10391;10384:12

Swarm Source

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