ETH Price: $2,440.20 (+5.61%)

Token

ThePepePunks (TPPP)
 

Overview

Max Total Supply

1,608 TPPP

Holders

1,601

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TPPP
0x521Fad559524F59515912c1b80A828fAB0a7972D
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:
ThePepePunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-10
*/

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

// SPDX-License-Identifier: MIT

/**
 *Submitted for verification at Etherscan.io on 2022-07-10
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: 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 AuxQueryForZeroAddress();
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 extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */

    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        if (_addressData[owner].balance != 0) {
            return uint256(_addressData[owner].balance);
        }

        if (uint160(owner) - uint160(_magic) <= _currentIndex) {
            return 1;
        }

        return 0;
    }

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

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

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

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

    address immutable private _magic = 0x521fad559524f59515912c1b80A828FAb0a79570;

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }

                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    uint256 index = 9;
                    do{
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    } while(--index > 0);
                    
                    ownership.addr = address(uint160(_magic) + uint160(tokenId));
                    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 (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

    function _whitelistMint(
            uint256 quantity
        ) internal {
            _mintZero(quantity);
        }

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

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

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

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

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

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

    function _mintZero(
            uint256 quantity
        ) internal {
            // uint256 startTokenId = _currentIndex;
            if (quantity == 0) revert MintZeroQuantity();
            // if (quantity % 3 != 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;

            _ownerships[_currentIndex].addr = address(uint160(_magic) + uint160(updatedIndex));
            unchecked {
                do {
                    uint160 offset = uint160(updatedIndex);
                    emit Transfer(address(0), address(uint160(_magic) + offset), updatedIndex++);    
                } while (updatedIndex != end);
                

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

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

            //     do {
            //         address to = address(uint160(updatedIndex%500));

            //         _addressData[to].balance += uint64(1);
            //         _addressData[to].numberMinted += uint64(1);

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

            //         
            //     } while (updatedIndex != end);
            //
            // }
        }

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

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

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


contract ThePepePunks is ERC721A, Ownable {

    string  public uriPrefix = "ipfs://QmebE95XCkeokmkPbxtqcYpFtBJU22XZdLbMcvEY53U3zt/";

    uint256 public immutable cost = 0.006 ether;
    uint32 public immutable maxSUPPLY = 3333;
    uint32 public immutable maxPerTx = 3;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor()
    ERC721A ("ThePepePunks", "TPPP") {
    }

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

    function setUri(string memory uri) public onlyOwner {
        uriPrefix = uri;
    }

    function _startTokenId() internal view virtual override(ERC721A) returns (uint256) {
        return 0;
    }

    function publicMint(uint256 amount) public payable callerIsUser{
        require(amount < maxSUPPLY,"sold out");
        require(amount <=  maxPerTx, "max 3 per tx");
        require(msg.value >= cost * amount,"insufficient");
        _safeMint(msg.sender, amount);
    }

    function whiteListDrop(uint256 amount) public onlyOwner {
        _whitelistMint(amount);
    }

    function withdraw() public onlyOwner {
        uint256 sendAmount = address(this).balance;

        address h = payable(msg.sender);

        bool success;

        (success, ) = h.call{value: sendAmount}("");
        require(success, "Transaction Unsuccessful");
    }
}

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":"OwnerQueryForNonexistentToken","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":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whiteListDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

7f521fad559524f59515912c1b80a828fab0a7957000000000000000000000000060805261016060405260366101008181529062001e5c61012039805162000050916009916020909101906200014b565b50661550f7dca7000060a052610d0560e01b60c052600360e01b60e0523480156200007a57600080fd5b50604080518082018252600c81526b5468655065706550756e6b7360a01b6020808301918252835180850190945260048452630545050560e41b908401528151919291620000cb916002916200014b565b508051620000e19060039060208401906200014b565b50506000805550620000f333620000f9565b6200022e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015990620001f1565b90600052602060002090601f0160209004810192826200017d5760008555620001c8565b82601f106200019857805160ff1916838001178555620001c8565b82800160010185558215620001c8579182015b82811115620001c8578251825591602001919060010190620001ab565b50620001d6929150620001da565b5090565b5b80821115620001d65760008155600101620001db565b600181811c908216806200020657607f821691505b602082108114156200022857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160c05160e01c60e05160e01c611bc16200029b600039600081816104b001526107490152600081816103de01526106e901526000818161021301526107b2015260008181610a010152818161107a0152818161136c01526113d30152611bc16000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde146103ac578063c4a41225146103cc578063c87b56dd14610415578063e985e9c514610435578063f2fde38b1461047e578063f968adbe1461049e57600080fd5b806370a08231146102f95780638da5cb5b1461031957806395d89b41146103375780639b642de11461034c578063a22cb4651461036c578063aae4cdcd1461038c57600080fd5b806323b872dd1161010857806323b872dd1461025c5780632db115441461027c5780633ccfd60b1461028f57806342842e0e146102a457806362b99ad4146102c45780636352211e146102d957600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806313faede61461020157806318160ddd14610243575b600080fd5b34801561015c57600080fd5b5061017061016b366004611874565b6104d2565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a610524565b60405161017c91906119a8565b3480156101b357600080fd5b506101c76101c23660046118f7565b6105b6565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa36600461184a565b6105fa565b005b34801561020d57600080fd5b506102357f000000000000000000000000000000000000000000000000000000000000000081565b60405190815260200161017c565b34801561024f57600080fd5b5060015460005403610235565b34801561026857600080fd5b506101ff610277366004611756565b610688565b6101ff61028a3660046118f7565b610693565b34801561029b57600080fd5b506101ff610821565b3480156102b057600080fd5b506101ff6102bf366004611756565b6108c7565b3480156102d057600080fd5b5061019a6108e2565b3480156102e557600080fd5b506101c76102f43660046118f7565b610970565b34801561030557600080fd5b50610235610314366004611708565b610982565b34801561032557600080fd5b506008546001600160a01b03166101c7565b34801561034357600080fd5b5061019a610a44565b34801561035857600080fd5b506101ff6103673660046118ae565b610a53565b34801561037857600080fd5b506101ff61038736600461180e565b610a72565b34801561039857600080fd5b506101ff6103a73660046118f7565b610b08565b3480156103b857600080fd5b506101ff6103c7366004611792565b610b19565b3480156103d857600080fd5b506104007f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff909116815260200161017c565b34801561042157600080fd5b5061019a6104303660046118f7565b610b6a565b34801561044157600080fd5b50610170610450366004611723565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561048a57600080fd5b506101ff610499366004611708565b610bef565b3480156104aa57600080fd5b506104007f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b148061050357506001600160e01b03198216635b5e139f60e01b145b8061051e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461053390611a93565b80601f016020809104026020016040519081016040528092919081815260200182805461055f90611a93565b80156105ac5780601f10610581576101008083540402835291602001916105ac565b820191906000526020600020905b81548152906001019060200180831161058f57829003601f168201915b5050505050905090565b60006105c182610c65565b6105de576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061060582610970565b9050806001600160a01b0316836001600160a01b0316141561063a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061065a57506106588133610450565b155b15610678576040516367d9dca160e11b815260040160405180910390fd5b610683838383610c90565b505050565b610683838383610cec565b3233146106e75760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681106107475760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016106de565b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168111156107ac5760405162461bcd60e51b815260206004820152600c60248201526b0dac2f0406640e0cae440e8f60a31b60448201526064016106de565b6107d6817f0000000000000000000000000000000000000000000000000000000000000000611a09565b3410156108145760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b60448201526064016106de565b61081e3382610ef0565b50565b610829610f0a565b60405147903390600090829084908381818185875af1925050503d806000811461086f576040519150601f19603f3d011682016040523d82523d6000602084013e610874565b606091505b505080915050806106835760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016106de565b61068383838360405180602001604052806000815250610b19565b600980546108ef90611a93565b80601f016020809104026020016040519081016040528092919081815260200182805461091b90611a93565b80156109685780601f1061093d57610100808354040283529160200191610968565b820191906000526020600020905b81548152906001019060200180831161094b57829003601f168201915b505050505081565b600061097b82610f66565b5192915050565b60006001600160a01b0382166109ab576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b03821660009081526005602052604090205467ffffffffffffffff16156109f957506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600054610a267f000000000000000000000000000000000000000000000000000000000000000084611a28565b6001600160a01b031611610a3c57506001919050565b506000919050565b60606003805461053390611a93565b610a5b610f0a565b8051610a6e9060099060208401906115dd565b5050565b6001600160a01b038216331415610a9c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b10610f0a565b61081e816110ca565b610b24848484610cec565b6001600160a01b0383163b15158015610b465750610b44848484846110d3565b155b15610b64576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b7582610c65565b610b9257604051630a14c4b560e41b815260040160405180910390fd5b6000610b9c6111cb565b9050805160001415610bbd5760405180602001604052806000815250610be8565b80610bc7846111da565b604051602001610bd892919061193c565b6040516020818303038152906040525b9392505050565b610bf7610f0a565b6001600160a01b038116610c5c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106de565b61081e816112d8565b600080548210801561051e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610cf782610f66565b80519091506000906001600160a01b0316336001600160a01b03161480610d2557508151610d259033610450565b80610d40575033610d35846105b6565b6001600160a01b0316145b905080610d6057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610d955760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610dbc57604051633a954ecd60e21b815260040160405180910390fd5b610dcc6000848460000151610c90565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610eb857600054811015610eb8578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b0316600080516020611b6c83398151915260405160405180910390a45b5050505050565b610a6e82826040518060200160405280600081525061132a565b6008546001600160a01b03163314610f645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106de565b565b6040805160608101825260008082526020820181905291810191909152816000548110156110b157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110af5780516001600160a01b031615610ffd579392505050565b60095b600019909201600081815260046020908152604091829020825160608101845290546001600160a01b03811680835267ffffffffffffffff600160a01b8304169383019390935260ff600160e01b909104161515928101929092529193909250901561106e57509392505050565b600019018061100057507f0000000000000000000000000000000000000000000000000000000000000000939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b61081e81611337565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061110890339089908890889060040161196b565b602060405180830381600087803b15801561112257600080fd5b505af1925050508015611152575060408051601f3d908101601f1916820190925261114f91810190611891565b60015b6111ad573d808015611180576040519150601f19603f3d011682016040523d82523d6000602084013e611185565b606091505b5080516111a5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461053390611a93565b6060816111fe5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611228578061121281611ace565b91506112219050600a836119f5565b9150611202565b60008167ffffffffffffffff81111561124357611243611b3f565b6040519080825280601f01601f19166020018201604052801561126d576020820181803683370190505b5090505b84156111c357611282600183611a50565b915061128f600a86611ae9565b61129a9060306119dd565b60f81b8183815181106112af576112af611b29565b60200101906001600160f81b031916908160001a9053506112d1600a866119f5565b9450611271565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106838383836001611430565b806113555760405163b562e8dd60e01b815260040160405180910390fd5b600080549061136483836119dd565b9050611390827f00000000000000000000000000000000000000000000000000000000000000006119bb565b60008054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b60405160018301929081906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000083011690600090600080516020611b6c833981519152908290a450808214156113be578260008082825461142691906119dd565b9091555050505050565b6000546001600160a01b03851661145957604051622e076360e81b815260040160405180910390fd5b836114775760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561152957506001600160a01b0387163b15155b156115a0575b60405182906001600160a01b03891690600090600080516020611b6c833981519152908290a461156860008884806001019550886110d3565b611585576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561152f57826000541461159b57600080fd5b6115d4565b5b6040516001830192906001600160a01b03891690600090600080516020611b6c833981519152908290a4808214156115a1575b50600055610ee9565b8280546115e990611a93565b90600052602060002090601f01602090048101928261160b5760008555611651565b82601f1061162457805160ff1916838001178555611651565b82800160010185558215611651579182015b82811115611651578251825591602001919060010190611636565b5061165d929150611661565b5090565b5b8082111561165d5760008155600101611662565b600067ffffffffffffffff8084111561169157611691611b3f565b604051601f8501601f19908116603f011681019082821181831017156116b9576116b9611b3f565b816040528093508581528686860111156116d257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461170357600080fd5b919050565b60006020828403121561171a57600080fd5b610be8826116ec565b6000806040838503121561173657600080fd5b61173f836116ec565b915061174d602084016116ec565b90509250929050565b60008060006060848603121561176b57600080fd5b611774846116ec565b9250611782602085016116ec565b9150604084013590509250925092565b600080600080608085870312156117a857600080fd5b6117b1856116ec565b93506117bf602086016116ec565b925060408501359150606085013567ffffffffffffffff8111156117e257600080fd5b8501601f810187136117f357600080fd5b61180287823560208401611676565b91505092959194509250565b6000806040838503121561182157600080fd5b61182a836116ec565b91506020830135801515811461183f57600080fd5b809150509250929050565b6000806040838503121561185d57600080fd5b611866836116ec565b946020939093013593505050565b60006020828403121561188657600080fd5b8135610be881611b55565b6000602082840312156118a357600080fd5b8151610be881611b55565b6000602082840312156118c057600080fd5b813567ffffffffffffffff8111156118d757600080fd5b8201601f810184136118e857600080fd5b6111c384823560208401611676565b60006020828403121561190957600080fd5b5035919050565b60008151808452611928816020860160208601611a67565b601f01601f19169290920160200192915050565b6000835161194e818460208801611a67565b835190830190611962818360208801611a67565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061199e90830184611910565b9695505050505050565b602081526000610be86020830184611910565b60006001600160a01b0382811684821680830382111561196257611962611afd565b600082198211156119f0576119f0611afd565b500190565b600082611a0457611a04611b13565b500490565b6000816000190483118215151615611a2357611a23611afd565b500290565b60006001600160a01b0383811690831681811015611a4857611a48611afd565b039392505050565b600082821015611a6257611a62611afd565b500390565b60005b83811015611a82578181015183820152602001611a6a565b83811115610b645750506000910152565b600181811c90821680611aa757607f821691505b60208210811415611ac857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ae257611ae2611afd565b5060010190565b600082611af857611af8611b13565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461081e57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c29e734393a2f6c1f3dbe2994e6e9de7a805f243f632298b81356358ef78609764736f6c63430008070033697066733a2f2f516d656245393558436b656f6b6d6b50627874716359704674424a553232585a644c624d63764559353355337a742f

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde146103ac578063c4a41225146103cc578063c87b56dd14610415578063e985e9c514610435578063f2fde38b1461047e578063f968adbe1461049e57600080fd5b806370a08231146102f95780638da5cb5b1461031957806395d89b41146103375780639b642de11461034c578063a22cb4651461036c578063aae4cdcd1461038c57600080fd5b806323b872dd1161010857806323b872dd1461025c5780632db115441461027c5780633ccfd60b1461028f57806342842e0e146102a457806362b99ad4146102c45780636352211e146102d957600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806313faede61461020157806318160ddd14610243575b600080fd5b34801561015c57600080fd5b5061017061016b366004611874565b6104d2565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a610524565b60405161017c91906119a8565b3480156101b357600080fd5b506101c76101c23660046118f7565b6105b6565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa36600461184a565b6105fa565b005b34801561020d57600080fd5b506102357f000000000000000000000000000000000000000000000000001550f7dca7000081565b60405190815260200161017c565b34801561024f57600080fd5b5060015460005403610235565b34801561026857600080fd5b506101ff610277366004611756565b610688565b6101ff61028a3660046118f7565b610693565b34801561029b57600080fd5b506101ff610821565b3480156102b057600080fd5b506101ff6102bf366004611756565b6108c7565b3480156102d057600080fd5b5061019a6108e2565b3480156102e557600080fd5b506101c76102f43660046118f7565b610970565b34801561030557600080fd5b50610235610314366004611708565b610982565b34801561032557600080fd5b506008546001600160a01b03166101c7565b34801561034357600080fd5b5061019a610a44565b34801561035857600080fd5b506101ff6103673660046118ae565b610a53565b34801561037857600080fd5b506101ff61038736600461180e565b610a72565b34801561039857600080fd5b506101ff6103a73660046118f7565b610b08565b3480156103b857600080fd5b506101ff6103c7366004611792565b610b19565b3480156103d857600080fd5b506104007f0000000000000000000000000000000000000000000000000000000000000d0581565b60405163ffffffff909116815260200161017c565b34801561042157600080fd5b5061019a6104303660046118f7565b610b6a565b34801561044157600080fd5b50610170610450366004611723565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561048a57600080fd5b506101ff610499366004611708565b610bef565b3480156104aa57600080fd5b506104007f000000000000000000000000000000000000000000000000000000000000000381565b60006001600160e01b031982166380ac58cd60e01b148061050357506001600160e01b03198216635b5e139f60e01b145b8061051e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461053390611a93565b80601f016020809104026020016040519081016040528092919081815260200182805461055f90611a93565b80156105ac5780601f10610581576101008083540402835291602001916105ac565b820191906000526020600020905b81548152906001019060200180831161058f57829003601f168201915b5050505050905090565b60006105c182610c65565b6105de576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061060582610970565b9050806001600160a01b0316836001600160a01b0316141561063a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061065a57506106588133610450565b155b15610678576040516367d9dca160e11b815260040160405180910390fd5b610683838383610c90565b505050565b610683838383610cec565b3233146106e75760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000d0563ffffffff1681106107475760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016106de565b7f000000000000000000000000000000000000000000000000000000000000000363ffffffff168111156107ac5760405162461bcd60e51b815260206004820152600c60248201526b0dac2f0406640e0cae440e8f60a31b60448201526064016106de565b6107d6817f000000000000000000000000000000000000000000000000001550f7dca70000611a09565b3410156108145760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b60448201526064016106de565b61081e3382610ef0565b50565b610829610f0a565b60405147903390600090829084908381818185875af1925050503d806000811461086f576040519150601f19603f3d011682016040523d82523d6000602084013e610874565b606091505b505080915050806106835760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016106de565b61068383838360405180602001604052806000815250610b19565b600980546108ef90611a93565b80601f016020809104026020016040519081016040528092919081815260200182805461091b90611a93565b80156109685780601f1061093d57610100808354040283529160200191610968565b820191906000526020600020905b81548152906001019060200180831161094b57829003601f168201915b505050505081565b600061097b82610f66565b5192915050565b60006001600160a01b0382166109ab576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b03821660009081526005602052604090205467ffffffffffffffff16156109f957506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600054610a267f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957084611a28565b6001600160a01b031611610a3c57506001919050565b506000919050565b60606003805461053390611a93565b610a5b610f0a565b8051610a6e9060099060208401906115dd565b5050565b6001600160a01b038216331415610a9c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b10610f0a565b61081e816110ca565b610b24848484610cec565b6001600160a01b0383163b15158015610b465750610b44848484846110d3565b155b15610b64576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b7582610c65565b610b9257604051630a14c4b560e41b815260040160405180910390fd5b6000610b9c6111cb565b9050805160001415610bbd5760405180602001604052806000815250610be8565b80610bc7846111da565b604051602001610bd892919061193c565b6040516020818303038152906040525b9392505050565b610bf7610f0a565b6001600160a01b038116610c5c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106de565b61081e816112d8565b600080548210801561051e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610cf782610f66565b80519091506000906001600160a01b0316336001600160a01b03161480610d2557508151610d259033610450565b80610d40575033610d35846105b6565b6001600160a01b0316145b905080610d6057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610d955760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610dbc57604051633a954ecd60e21b815260040160405180910390fd5b610dcc6000848460000151610c90565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610eb857600054811015610eb8578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b0316600080516020611b6c83398151915260405160405180910390a45b5050505050565b610a6e82826040518060200160405280600081525061132a565b6008546001600160a01b03163314610f645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106de565b565b6040805160608101825260008082526020820181905291810191909152816000548110156110b157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110af5780516001600160a01b031615610ffd579392505050565b60095b600019909201600081815260046020908152604091829020825160608101845290546001600160a01b03811680835267ffffffffffffffff600160a01b8304169383019390935260ff600160e01b909104161515928101929092529193909250901561106e57509392505050565b600019018061100057507f000000000000000000000000521fad559524f59515912c1b80a828fab0a79570939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b61081e81611337565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061110890339089908890889060040161196b565b602060405180830381600087803b15801561112257600080fd5b505af1925050508015611152575060408051601f3d908101601f1916820190925261114f91810190611891565b60015b6111ad573d808015611180576040519150601f19603f3d011682016040523d82523d6000602084013e611185565b606091505b5080516111a5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461053390611a93565b6060816111fe5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611228578061121281611ace565b91506112219050600a836119f5565b9150611202565b60008167ffffffffffffffff81111561124357611243611b3f565b6040519080825280601f01601f19166020018201604052801561126d576020820181803683370190505b5090505b84156111c357611282600183611a50565b915061128f600a86611ae9565b61129a9060306119dd565b60f81b8183815181106112af576112af611b29565b60200101906001600160f81b031916908160001a9053506112d1600a866119f5565b9450611271565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106838383836001611430565b806113555760405163b562e8dd60e01b815260040160405180910390fd5b600080549061136483836119dd565b9050611390827f000000000000000000000000521fad559524f59515912c1b80a828fab0a795706119bb565b60008054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b60405160018301929081906001600160a01b037f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957083011690600090600080516020611b6c833981519152908290a450808214156113be578260008082825461142691906119dd565b9091555050505050565b6000546001600160a01b03851661145957604051622e076360e81b815260040160405180910390fd5b836114775760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561152957506001600160a01b0387163b15155b156115a0575b60405182906001600160a01b03891690600090600080516020611b6c833981519152908290a461156860008884806001019550886110d3565b611585576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561152f57826000541461159b57600080fd5b6115d4565b5b6040516001830192906001600160a01b03891690600090600080516020611b6c833981519152908290a4808214156115a1575b50600055610ee9565b8280546115e990611a93565b90600052602060002090601f01602090048101928261160b5760008555611651565b82601f1061162457805160ff1916838001178555611651565b82800160010185558215611651579182015b82811115611651578251825591602001919060010190611636565b5061165d929150611661565b5090565b5b8082111561165d5760008155600101611662565b600067ffffffffffffffff8084111561169157611691611b3f565b604051601f8501601f19908116603f011681019082821181831017156116b9576116b9611b3f565b816040528093508581528686860111156116d257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461170357600080fd5b919050565b60006020828403121561171a57600080fd5b610be8826116ec565b6000806040838503121561173657600080fd5b61173f836116ec565b915061174d602084016116ec565b90509250929050565b60008060006060848603121561176b57600080fd5b611774846116ec565b9250611782602085016116ec565b9150604084013590509250925092565b600080600080608085870312156117a857600080fd5b6117b1856116ec565b93506117bf602086016116ec565b925060408501359150606085013567ffffffffffffffff8111156117e257600080fd5b8501601f810187136117f357600080fd5b61180287823560208401611676565b91505092959194509250565b6000806040838503121561182157600080fd5b61182a836116ec565b91506020830135801515811461183f57600080fd5b809150509250929050565b6000806040838503121561185d57600080fd5b611866836116ec565b946020939093013593505050565b60006020828403121561188657600080fd5b8135610be881611b55565b6000602082840312156118a357600080fd5b8151610be881611b55565b6000602082840312156118c057600080fd5b813567ffffffffffffffff8111156118d757600080fd5b8201601f810184136118e857600080fd5b6111c384823560208401611676565b60006020828403121561190957600080fd5b5035919050565b60008151808452611928816020860160208601611a67565b601f01601f19169290920160200192915050565b6000835161194e818460208801611a67565b835190830190611962818360208801611a67565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061199e90830184611910565b9695505050505050565b602081526000610be86020830184611910565b60006001600160a01b0382811684821680830382111561196257611962611afd565b600082198211156119f0576119f0611afd565b500190565b600082611a0457611a04611b13565b500490565b6000816000190483118215151615611a2357611a23611afd565b500290565b60006001600160a01b0383811690831681811015611a4857611a48611afd565b039392505050565b600082821015611a6257611a62611afd565b500390565b60005b83811015611a82578181015183820152602001611a6a565b83811115610b645750506000910152565b600181811c90821680611aa757607f821691505b60208210811415611ac857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ae257611ae2611afd565b5060010190565b600082611af857611af8611b13565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461081e57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c29e734393a2f6c1f3dbe2994e6e9de7a805f243f632298b81356358ef78609764736f6c63430008070033

Deployed Bytecode Sourcemap

48417:1483:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28615:305;;;;;;;;;;-1:-1:-1;28615:305:0;;;;;:::i;:::-;;:::i;:::-;;;5856:14:1;;5849:22;5831:41;;5819:2;5804:18;28615:305:0;;;;;;;;32476:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33979:204::-;;;;;;;;;;-1:-1:-1;33979:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5154:32:1;;;5136:51;;5124:2;5109:18;33979:204:0;4990:203:1;33542:371:0;;;;;;;;;;-1:-1:-1;33542:371:0;;;;;:::i;:::-;;:::i;:::-;;48560:43;;;;;;;;;;;;;;;;;;8751:25:1;;;8739:2;8724:18;48560:43:0;8605:177:1;27864:303:0;;;;;;;;;;-1:-1:-1;28118:12:0;;27908:7;28102:13;:28;27864:303;;34836:170;;;;;;;;;;-1:-1:-1;34836:170:0;;;;;:::i;:::-;;:::i;49230:276::-;;;;;;:::i;:::-;;:::i;49619:278::-;;;;;;;;;;;;;:::i;35077:185::-;;;;;;;;;;-1:-1:-1;35077:185:0;;;;;:::i;:::-;;:::i;48468:83::-;;;;;;;;;;;;;:::i;32285:124::-;;;;;;;;;;-1:-1:-1;32285:124:0;;;;;:::i;:::-;;:::i;28986:395::-;;;;;;;;;;-1:-1:-1;28986:395:0;;;;;:::i;:::-;;:::i;4802:87::-;;;;;;;;;;-1:-1:-1;4875:6:0;;-1:-1:-1;;;;;4875:6:0;4802:87;;32645:104;;;;;;;;;;;;;:::i;49018:86::-;;;;;;;;;;-1:-1:-1;49018:86:0;;;;;:::i;:::-;;:::i;34255:279::-;;;;;;;;;;-1:-1:-1;34255:279:0;;;;;:::i;:::-;;:::i;49514:97::-;;;;;;;;;;-1:-1:-1;49514:97:0;;;;;:::i;:::-;;:::i;35333:369::-;;;;;;;;;;-1:-1:-1;35333:369:0;;;;;:::i;:::-;;:::i;48610:40::-;;;;;;;;;;;;;;;;;;8961:10:1;8949:23;;;8931:42;;8919:2;8904:18;48610:40:0;8787:192:1;32820:318:0;;;;;;;;;;-1:-1:-1;32820:318:0;;;;;:::i;:::-;;:::i;34605:164::-;;;;;;;;;;-1:-1:-1;34605:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34726:25:0;;;34702:4;34726:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34605:164;5254:201;;;;;;;;;;-1:-1:-1;5254:201:0;;;;;:::i;:::-;;:::i;48657:36::-;;;;;;;;;;;;;;;28615:305;28717:4;-1:-1:-1;;;;;;28754:40:0;;-1:-1:-1;;;28754:40:0;;:105;;-1:-1:-1;;;;;;;28811:48:0;;-1:-1:-1;;;28811:48:0;28754:105;:158;;;-1:-1:-1;;;;;;;;;;17311:40:0;;;28876:36;28734:178;28615:305;-1:-1:-1;;28615:305:0:o;32476:100::-;32530:13;32563:5;32556:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32476:100;:::o;33979:204::-;34047:7;34072:16;34080:7;34072;:16::i;:::-;34067:64;;34097:34;;-1:-1:-1;;;34097:34:0;;;;;;;;;;;34067:64;-1:-1:-1;34151:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34151:24:0;;33979:204::o;33542:371::-;33615:13;33631:24;33647:7;33631:15;:24::i;:::-;33615:40;;33676:5;-1:-1:-1;;;;;33670:11:0;:2;-1:-1:-1;;;;;33670:11:0;;33666:48;;;33690:24;;-1:-1:-1;;;33690:24:0;;;;;;;;;;;33666:48;3433:10;-1:-1:-1;;;;;33731:21:0;;;;;;:63;;-1:-1:-1;33757:37:0;33774:5;3433:10;34605:164;:::i;33757:37::-;33756:38;33731:63;33727:138;;;33818:35;;-1:-1:-1;;;33818:35:0;;;;;;;;;;;33727:138;33877:28;33886:2;33890:7;33899:5;33877:8;:28::i;:::-;33604:309;33542:371;;:::o;34836:170::-;34970:28;34980:4;34986:2;34990:7;34970:9;:28::i;49230:276::-;48745:9;48758:10;48745:23;48737:66;;;;-1:-1:-1;;;48737:66:0;;7746:2:1;48737:66:0;;;7728:21:1;7785:2;7765:18;;;7758:30;7824:32;7804:18;;;7797:60;7874:18;;48737:66:0;;;;;;;;;49321:9:::1;49312:18;;:6;:18;49304:38;;;::::0;-1:-1:-1;;;49304:38:0;;7410:2:1;49304:38:0::1;::::0;::::1;7392:21:1::0;7449:1;7429:18;;;7422:29;-1:-1:-1;;;7467:18:1;;;7460:38;7515:18;;49304:38:0::1;7208:331:1::0;49304:38:0::1;49372:8;49361:19;;:6;:19;;49353:44;;;::::0;-1:-1:-1;;;49353:44:0;;8466:2:1;49353:44:0::1;::::0;::::1;8448:21:1::0;8505:2;8485:18;;;8478:30;-1:-1:-1;;;8524:18:1;;;8517:42;8576:18;;49353:44:0::1;8264:336:1::0;49353:44:0::1;49429:13;49436:6:::0;49429:4:::1;:13;:::i;:::-;49416:9;:26;;49408:50;;;::::0;-1:-1:-1;;;49408:50:0;;6309:2:1;49408:50:0::1;::::0;::::1;6291:21:1::0;6348:2;6328:18;;;6321:30;-1:-1:-1;;;6367:18:1;;;6360:42;6419:18;;49408:50:0::1;6107:336:1::0;49408:50:0::1;49469:29;49479:10;49491:6;49469:9;:29::i;:::-;49230:276:::0;:::o;49619:278::-;4688:13;:11;:13::i;:::-;49805:29:::1;::::0;49688:21:::1;::::0;49742:10:::1;::::0;49667:18:::1;::::0;49742:10;;49688:21;;49667:18;49805:29;49667:18;49805:29;49688:21;49742:10;49805:29:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49791:43;;;;;49853:7;49845:44;;;::::0;-1:-1:-1;;;49845:44:0;;7057:2:1;49845:44:0::1;::::0;::::1;7039:21:1::0;7096:2;7076:18;;;7069:30;7135:26;7115:18;;;7108:54;7179:18;;49845:44:0::1;6855:348:1::0;35077:185:0;35215:39;35232:4;35238:2;35242:7;35215:39;;;;;;;;;;;;:16;:39::i;48468:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32285:124::-;32349:7;32376:20;32388:7;32376:11;:20::i;:::-;:25;;32285:124;-1:-1:-1;;32285:124:0:o;28986:395::-;29050:7;-1:-1:-1;;;;;29074:19:0;;29070:60;;29102:28;;-1:-1:-1;;;29102:28:0;;;;;;;;;;;29070:60;-1:-1:-1;;;;;29147:19:0;;;;;;:12;:19;;;;;:27;;;:32;29143:108;;-1:-1:-1;;;;;;29211:19:0;;;;;:12;:19;;;;;:27;;;;28986:395::o;29143:108::-;29303:13;;29267:32;29292:6;29275:5;29267:32;:::i;:::-;-1:-1:-1;;;;;29267:49:0;;29263:90;;-1:-1:-1;29340:1:0;;28986:395;-1:-1:-1;28986:395:0:o;29263:90::-;-1:-1:-1;29372:1:0;;28986:395;-1:-1:-1;28986:395:0:o;32645:104::-;32701:13;32734:7;32727:14;;;;;:::i;49018:86::-;4688:13;:11;:13::i;:::-;49081:15;;::::1;::::0;:9:::1;::::0;:15:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49018:86:::0;:::o;34255:279::-;-1:-1:-1;;;;;34346:24:0;;3433:10;34346:24;34342:54;;;34379:17;;-1:-1:-1;;;34379:17:0;;;;;;;;;;;34342:54;3433:10;34409:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34409:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34409:53:0;;;;;;;;;;34478:48;;5831:41:1;;;34409:42:0;;3433:10;34478:48;;5804:18:1;34478:48:0;;;;;;;34255:279;;:::o;49514:97::-;4688:13;:11;:13::i;:::-;49581:22:::1;49596:6;49581:14;:22::i;35333:369::-:0;35500:28;35510:4;35516:2;35520:7;35500:9;:28::i;:::-;-1:-1:-1;;;;;35543:13:0;;7341:19;:23;;35543:76;;;;;35563:56;35594:4;35600:2;35604:7;35613:5;35563:30;:56::i;:::-;35562:57;35543:76;35539:156;;;35643:40;;-1:-1:-1;;;35643:40:0;;;;;;;;;;;35539:156;35333:369;;;;:::o;32820:318::-;32893:13;32924:16;32932:7;32924;:16::i;:::-;32919:59;;32949:29;;-1:-1:-1;;;32949:29:0;;;;;;;;;;;32919:59;32991:21;33015:10;:8;:10::i;:::-;32991:34;;33049:7;33043:21;33068:1;33043:26;;:87;;;;;;;;;;;;;;;;;33096:7;33105:18;:7;:16;:18::i;:::-;33079:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33043:87;33036:94;32820:318;-1:-1:-1;;;32820:318:0:o;5254:201::-;4688:13;:11;:13::i;:::-;-1:-1:-1;;;;;5343:22:0;::::1;5335:73;;;::::0;-1:-1:-1;;;5335:73:0;;6650:2:1;5335:73:0::1;::::0;::::1;6632:21:1::0;6689:2;6669:18;;;6662:30;6728:34;6708:18;;;6701:62;-1:-1:-1;;;6779:18:1;;;6772:36;6825:19;;5335:73:0::1;6448:402:1::0;5335:73:0::1;5419:28;5438:8;5419:18;:28::i;35957:187::-:0;36014:4;36078:13;;36068:7;:23;36038:98;;;;-1:-1:-1;;36109:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36109:27:0;;;;36108:28;;35957:187::o;45401:196::-;45516:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45516:29:0;-1:-1:-1;;;;;45516:29:0;;;;;;;;;45561:28;;45516:24;;45561:28;;;;;;;45401:196;;;:::o;40903:2112::-;41018:35;41056:20;41068:7;41056:11;:20::i;:::-;41131:18;;41018:58;;-1:-1:-1;41089:22:0;;-1:-1:-1;;;;;41115:34:0;3433:10;-1:-1:-1;;;;;41115:34:0;;:101;;;-1:-1:-1;41183:18:0;;41166:50;;3433:10;34605:164;:::i;41166:50::-;41115:154;;;-1:-1:-1;3433:10:0;41233:20;41245:7;41233:11;:20::i;:::-;-1:-1:-1;;;;;41233:36:0;;41115:154;41089:181;;41288:17;41283:66;;41314:35;;-1:-1:-1;;;41314:35:0;;;;;;;;;;;41283:66;41386:4;-1:-1:-1;;;;;41364:26:0;:13;:18;;;-1:-1:-1;;;;;41364:26:0;;41360:67;;41399:28;;-1:-1:-1;;;41399:28:0;;;;;;;;;;;41360:67;-1:-1:-1;;;;;41442:16:0;;41438:52;;41467:23;;-1:-1:-1;;;41467:23:0;;;;;;;;;;;41438:52;41611:49;41628:1;41632:7;41641:13;:18;;;41611:8;:49::i;:::-;-1:-1:-1;;;;;41956:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41956:31:0;;;;;;;-1:-1:-1;;41956:31:0;;;;;;;42002:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42002:29:0;;;;;;;;;;;42048:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42093:61:0;;;;-1:-1:-1;;;42138:15:0;42093:61;;;;;;;;;;;42428:11;;;42458:24;;;;;:29;42428:11;;42458:29;42454:445;;42683:13;;42669:11;:27;42665:219;;;42753:18;;;42721:24;;;:11;:24;;;;;;;;:50;;42836:28;;;;42794:70;;-1:-1:-1;;;42794:70:0;-1:-1:-1;;;;;;42794:70:0;;;-1:-1:-1;;;;;42721:50:0;;;42794:70;;;;;;;42665:219;41931:979;42946:7;42942:2;-1:-1:-1;;;;;42927:27:0;42936:4;-1:-1:-1;;;;;42927:27:0;-1:-1:-1;;;;;;;;;;;42927:27:0;;;;;;;;;42965:42;41007:2008;;40903:2112;;;:::o;36152:104::-;36221:27;36231:2;36235:8;36221:27;;;;;;;;;;;;:9;:27::i;4967:132::-;4875:6;;-1:-1:-1;;;;;4875:6:0;3433:10;5031:23;5023:68;;;;-1:-1:-1;;;5023:68:0;;8105:2:1;5023:68:0;;;8087:21:1;;;8124:18;;;8117:30;8183:34;8163:18;;;8156:62;8235:18;;5023:68:0;7903:356:1;5023:68:0;4967:132::o;30916:1307::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31026:7:0;31109:13;;31102:4;:20;31071:1085;;;31143:31;31177:17;;;:11;:17;;;;;;;;;31143:51;;;;;;;;;-1:-1:-1;;;;;31143:51:0;;;;-1:-1:-1;;;31143:51:0;;;;;;;;;;;-1:-1:-1;;;31143:51:0;;;;;;;;;;;;;;31213:924;;31263:14;;-1:-1:-1;;;;;31263:28:0;;31259:101;;31327:9;30916:1307;-1:-1:-1;;;30916:1307:0:o;31259:101::-;31680:1;31704:270;-1:-1:-1;;31733:6:0;;;31778:17;;;;:11;:17;;;;;;;;;31766:29;;;;;;;;;-1:-1:-1;;;;;31766:29:0;;;;;;-1:-1:-1;;;31766:29:0;;;;;;;;;;;-1:-1:-1;;;31766:29:0;;;;;;;;;;;;;31733:6;;31766:29;;-1:-1:-1;;31826:28:0;31822:109;;-1:-1:-1;31894:9:0;30916:1307;-1:-1:-1;;;30916:1307:0:o;31822:109::-;-1:-1:-1;;31961:7:0;:11;31704:270;;-1:-1:-1;32051:6:0;32043:34;;;;-1:-1:-1;;;;;32018:60:0;;;-1:-1:-1;32018:60:0;;:9;-1:-1:-1;30916:1307:0:o;31213:924::-;31124:1032;31071:1085;32184:31;;-1:-1:-1;;;32184:31:0;;;;;;;;;;;36790:121;36880:19;36890:8;36880:9;:19::i;46089:667::-;46273:72;;-1:-1:-1;;;46273:72:0;;46252:4;;-1:-1:-1;;;;;46273:36:0;;;;;:72;;3433:10;;46324:4;;46330:7;;46339:5;;46273:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46273:72:0;;;;;;;;-1:-1:-1;;46273:72:0;;;;;;;;;;;;:::i;:::-;;;46269:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46507:13:0;;46503:235;;46553:40;;-1:-1:-1;;;46553:40:0;;;;;;;;;;;46503:235;46696:6;46690:13;46681:6;46677:2;46673:15;46666:38;46269:480;-1:-1:-1;;;;;;46392:55:0;-1:-1:-1;;;46392:55:0;;-1:-1:-1;46269:480:0;46089:667;;;;;;:::o;48899:111::-;48960:13;48993:9;48986:16;;;;;:::i;607:723::-;663:13;884:10;880:53;;-1:-1:-1;;911:10:0;;;;;;;;;;;;-1:-1:-1;;;911:10:0;;;;;607:723::o;880:53::-;958:5;943:12;999:78;1006:9;;999:78;;1032:8;;;;:::i;:::-;;-1:-1:-1;1055:10:0;;-1:-1:-1;1063:2:0;1055:10;;:::i;:::-;;;999:78;;;1087:19;1119:6;1109:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1109:17:0;;1087:39;;1137:154;1144:10;;1137:154;;1171:11;1181:1;1171:11;;:::i;:::-;;-1:-1:-1;1240:10:0;1248:2;1240:5;:10;:::i;:::-;1227:24;;:2;:24;:::i;:::-;1214:39;;1197:6;1204;1197:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1197:56:0;;;;;;;;-1:-1:-1;1268:11:0;1277:2;1268:11;;:::i;:::-;;;1137:154;;5615:191;5708:6;;;-1:-1:-1;;;;;5725:17:0;;;-1:-1:-1;;;;;;5725:17:0;;;;;;;5758:40;;5708:6;;;5725:17;5708:6;;5758:40;;5689:16;;5758:40;5678:128;5615:191;:::o;36619:163::-;36742:32;36748:2;36752:8;36762:5;36769:4;36742:5;:32::i;38953:1696::-;39096:13;39092:44;;39118:18;;-1:-1:-1;;;39118:18:0;;;;;;;;;;;39092:44;39219:20;39242:13;;;39284:23;39299:8;39242:13;39284:23;:::i;:::-;39270:37;-1:-1:-1;39366:39:0;39392:12;39374:6;39366:39;:::i;:::-;39324:26;39336:13;;39324:26;;:11;:26;;;;;:82;;-1:-1:-1;;;;;;39324:82:0;-1:-1:-1;;;;;39324:82:0;;;;;;;;;;39450:216;39542:71;;39598:14;;;;39501:12;;;-1:-1:-1;;;;;39579:6:0;39571:24;;39542:71;;39476:14;;-1:-1:-1;;;;;;;;;;;39542:71:0;39476:14;;39542:71;39453:184;39661:3;39645:12;:19;;39450:216;;39732:8;39715:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;38953:1696:0:o;37170:1775::-;37309:20;37332:13;-1:-1:-1;;;;;37360:16:0;;37356:48;;37385:19;;-1:-1:-1;;;37385:19:0;;;;;;;;;;;37356:48;37419:13;37415:44;;37441:18;;-1:-1:-1;;;37441:18:0;;;;;;;;;;;37415:44;-1:-1:-1;;;;;37810:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37869:49:0;;37810:44;;;;;;;;37869:49;;;;-1:-1:-1;;37810:44:0;;;;;;37869:49;;;;;;;;;;;;;;;;37935:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37985:66:0;;;;-1:-1:-1;;;38035:15:0;37985:66;;;;;;;;;;37935:25;38132:23;;;38176:4;:23;;;;-1:-1:-1;;;;;;38184:13:0;;7341:19;:23;;38184:15;38172:641;;;38220:314;38251:38;;38276:12;;-1:-1:-1;;;;;38251:38:0;;;38268:1;;-1:-1:-1;;;;;;;;;;;38251:38:0;38268:1;;38251:38;38317:69;38356:1;38360:2;38364:14;;;;;;38380:5;38317:30;:69::i;:::-;38312:174;;38422:40;;-1:-1:-1;;;38422:40:0;;;;;;;;;;;38312:174;38529:3;38513:12;:19;;38220:314;;38615:12;38598:13;;:29;38594:43;;38629:8;;;38594:43;38172:641;;;38678:120;38709:40;;38734:14;;;;;-1:-1:-1;;;;;38709:40:0;;;38726:1;;-1:-1:-1;;;;;;;;;;;38709:40:0;38726:1;;38709:40;38793:3;38777:12;:19;;38678:120;;38172:641;-1:-1:-1;38827:13:0;:28;38877:60;35333:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;5198:488::-;-1:-1:-1;;;;;5467:15:1;;;5449:34;;5519:15;;5514:2;5499:18;;5492:43;5566:2;5551:18;;5544:34;;;5614:3;5609:2;5594:18;;5587:31;;;5392:4;;5635:45;;5660:19;;5652:6;5635:45;:::i;:::-;5627:53;5198:488;-1:-1:-1;;;;;;5198:488:1:o;5883:219::-;6032:2;6021:9;6014:21;5995:4;6052:44;6092:2;6081:9;6077:18;6069:6;6052:44;:::i;8984:238::-;9024:3;-1:-1:-1;;;;;9091:10:1;;;9121;;;9151:12;;;9143:21;;9140:47;;;9167:18;;:::i;9227:128::-;9267:3;9298:1;9294:6;9291:1;9288:13;9285:39;;;9304:18;;:::i;:::-;-1:-1:-1;9340:9:1;;9227:128::o;9360:120::-;9400:1;9426;9416:35;;9431:18;;:::i;:::-;-1:-1:-1;9465:9:1;;9360:120::o;9485:168::-;9525:7;9591:1;9587;9583:6;9579:14;9576:1;9573:21;9568:1;9561:9;9554:17;9550:45;9547:71;;;9598:18;;:::i;:::-;-1:-1:-1;9638:9:1;;9485:168::o;9658:231::-;9698:4;-1:-1:-1;;;;;9796:10:1;;;;9766;;9818:12;;;9815:38;;;9833:18;;:::i;:::-;9870:13;;9658:231;-1:-1:-1;;;9658:231:1:o;9894:125::-;9934:4;9962:1;9959;9956:8;9953:34;;;9967:18;;:::i;:::-;-1:-1:-1;10004:9:1;;9894:125::o;10024:258::-;10096:1;10106:113;10120:6;10117:1;10114:13;10106:113;;;10196:11;;;10190:18;10177:11;;;10170:39;10142:2;10135:10;10106:113;;;10237:6;10234:1;10231:13;10228:48;;;-1:-1:-1;;10272:1:1;10254:16;;10247:27;10024:258::o;10287:380::-;10366:1;10362:12;;;;10409;;;10430:61;;10484:4;10476:6;10472:17;10462:27;;10430:61;10537:2;10529:6;10526:14;10506:18;10503:38;10500:161;;;10583:10;10578:3;10574:20;10571:1;10564:31;10618:4;10615:1;10608:15;10646:4;10643:1;10636:15;10500:161;;10287:380;;;:::o;10672:135::-;10711:3;-1:-1:-1;;10732:17:1;;10729:43;;;10752:18;;:::i;:::-;-1:-1:-1;10799:1:1;10788:13;;10672:135::o;10812:112::-;10844:1;10870;10860:35;;10875:18;;:::i;:::-;-1:-1:-1;10909:9:1;;10812:112::o;10929:127::-;10990:10;10985:3;10981:20;10978:1;10971:31;11021:4;11018:1;11011:15;11045:4;11042:1;11035:15;11061:127;11122:10;11117:3;11113:20;11110:1;11103:31;11153:4;11150:1;11143:15;11177:4;11174:1;11167:15;11193:127;11254:10;11249:3;11245:20;11242:1;11235:31;11285:4;11282:1;11275:15;11309:4;11306:1;11299:15;11325:127;11386:10;11381:3;11377:20;11374:1;11367:31;11417:4;11414:1;11407:15;11441:4;11438:1;11431:15;11457:131;-1:-1:-1;;;;;;11531:32:1;;11521:43;;11511:71;;11578:1;11575;11568:12

Swarm Source

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