ETH Price: $2,395.17 (-4.54%)

Token

Foodcollectors (FOODIE)
 

Overview

Max Total Supply

283 FOODIE

Holders

238

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 FOODIE
0x5b0d7d8ec5330abf16c4732269af23c12df97aef
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:
Foodcollectors

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/pepes.sol

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

// File: contracts/peipeis.sol

pragma solidity ^0.8.16;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

    /**
     * @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, _toString(tokenId), ".json")) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) 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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    /**
     * @dev 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

contract Foodcollectors is Ownable, ERC721A {
  string public baseURI = "https://ipfs.io/ipfs/QmcLHnpVAvGxeY9SKmk2aU9TsuEASr4DX4Tqru5c1XA5jD?filename=Gourmet%20Blind%20Box.json/";

  bool public isMintOpen = false;

  uint256 public immutable unitPrice = 0.001 ether;

  uint256 public immutable maxSupply = 3333;

  uint256 public immutable maxWalletSupply = 20;

  uint256 public immutable maxWalletFreeSupply = 1;

  constructor(uint256 _mintCntToOwner) ERC721A('Foodcollectors', 'FOODIE') {
    _mint(msg.sender, _mintCntToOwner);
  }

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

  function _startTokenId() internal pure override returns (uint256) {
    return 1;
  }

  function startTokenId() external pure returns (uint256) {
    return _startTokenId();
  }

  function nextTokenId() external view returns (uint256) {
    return _nextTokenId();
  }

  function numberMinted(address owner) external view returns (uint256) {
    return _numberMinted(owner);
  }

  function mint(uint256 quantity) external payable {
    unchecked {
      require(isMintOpen, '0');

      uint256 currentSupply = _nextTokenId() - 1;
      require((currentSupply + quantity) <= maxSupply, '1');

      uint256 walletSupply = _numberMinted(msg.sender);
      require((walletSupply + quantity) <= maxWalletSupply, '2');

      uint256 walletFreeSupply = walletSupply > maxWalletFreeSupply
        ? maxWalletFreeSupply
        : walletSupply;
      uint256 freeQuantity = maxWalletFreeSupply > walletFreeSupply
        ? maxWalletFreeSupply - walletFreeSupply
        : 0;
      require(
        msg.value >= unitPrice * (quantity > freeQuantity ? quantity - freeQuantity : 0),
        '3'
      );
    }

    _mint(msg.sender, quantity);
  }

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

  function setIsMintOpen(bool _isMintOpen) external onlyOwner {
    isMintOpen = _isMintOpen;
  }

  function withdraw(address to) external onlyOwner {
    payable(to).transfer(address(this).balance);
  }
   function marketMint(address[] memory marketmintaddress,uint256[] memory mintquantity) public payable onlyOwner  {
        for (uint256 i = 0; i < marketmintaddress.length; i++) {
            require(totalSupply() + mintquantity[i] <= maxSupply, "Exceed supply");
            _safeMint(marketmintaddress[i], mintquantity[i]);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_mintCntToOwner","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"marketmintaddress","type":"address[]"},{"internalType":"uint256[]","name":"mintquantity","type":"uint256[]"}],"name":"marketMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMintOpen","type":"bool"}],"name":"setIsMintOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"unitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101a060405260686101008181529062001f9a61012039600990620000259082620002ee565b50600a805460ff1916905566038d7ea4c68000608052610d0560a052601460c052600160e0523480156200005857600080fd5b5060405162002002380380620020028339810160408190526200007b91620003ba565b6040518060400160405280600e81526020016d466f6f64636f6c6c6563746f727360901b81525060405180604001604052806006815260200165464f4f44494560d01b815250620000db620000d56200011260201b60201c565b62000116565b6003620000e98382620002ee565b506004620000f88282620002ee565b505060018055506200010b338262000166565b50620003d4565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b0383166200019057604051622e076360e81b815260040160405180910390fd5b81600003620001b25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620001fc57600155505b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200027557607f821691505b6020821081036200029657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024557600081815260208120601f850160051c81016020861015620002c55750805b601f850160051c820191505b81811015620002e657828155600101620002d1565b505050505050565b81516001600160401b038111156200030a576200030a6200024a565b62000322816200031b845462000260565b846200029c565b602080601f8311600181146200035a5760008415620003415750858301515b600019600386901b1c1916600185901b178555620002e6565b600085815260208120601f198616915b828110156200038b578886015182559484019460019091019084016200036a565b5085821015620003aa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620003cd57600080fd5b5051919050565b60805160a05160c05160e051611b54620004466000396000818161038101528181610c1101528181610c3e01528181610c650152610c9301526000818161049a0152610bb901526000818161050e01528181610b450152610ed20152600081816105760152610cca0152611b546000f3fe6080604052600436106101d85760003560e01c806375794a3c11610102578063c87b56dd11610095578063e73faa2d11610064578063e73faa2d14610564578063e9014f9d14610598578063e985e9c5146105ab578063f2fde38b146105cb57600080fd5b8063c87b56dd146104dc578063d5abeb01146104fc578063dc33e68114610530578063e6798baa1461055057600080fd5b8063a0712d68116100d1578063a0712d6814610455578063a22cb46514610468578063a542f1c414610488578063b88d4fde146104bc57600080fd5b806375794a3c146103ed5780638da5cb5b1461040257806395d89b41146104205780639da2f5f51461043557600080fd5b806342842e0e1161017a57806365d547ec1161014957806365d547ec1461036f5780636c0360eb146103a357806370a08231146103b8578063715018a6146103d857600080fd5b806342842e0e146102ef57806351cff8d91461030f57806355f804b31461032f5780636352211e1461034f57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806319908016146102b557806323b872dd146102cf57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611467565b6105eb565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022761063d565b60405161020991906114d4565b34801561024057600080fd5b5061025461024f3660046114e7565b6106cf565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c61028736600461151c565b610713565b005b34801561029a57600080fd5b5060025460015403600019015b604051908152602001610209565b3480156102c157600080fd5b50600a546101fd9060ff1681565b3480156102db57600080fd5b5061028c6102ea366004611546565b6107b3565b3480156102fb57600080fd5b5061028c61030a366004611546565b61094c565b34801561031b57600080fd5b5061028c61032a366004611582565b61096c565b34801561033b57600080fd5b5061028c61034a36600461159d565b6109ad565b34801561035b57600080fd5b5061025461036a3660046114e7565b6109c2565b34801561037b57600080fd5b506102a77f000000000000000000000000000000000000000000000000000000000000000081565b3480156103af57600080fd5b506102276109cd565b3480156103c457600080fd5b506102a76103d3366004611582565b610a5b565b3480156103e457600080fd5b5061028c610aaa565b3480156103f957600080fd5b506102a7610abe565b34801561040e57600080fd5b506000546001600160a01b0316610254565b34801561042c57600080fd5b50610227610ace565b34801561044157600080fd5b5061028c61045036600461161f565b610add565b61028c6104633660046114e7565b610af8565b34801561047457600080fd5b5061028c61048336600461163a565b610d2e565b34801561049457600080fd5b506102a77f000000000000000000000000000000000000000000000000000000000000000081565b3480156104c857600080fd5b5061028c6104d73660046116b4565b610dc3565b3480156104e857600080fd5b506102276104f73660046114e7565b610e0d565b34801561050857600080fd5b506102a77f000000000000000000000000000000000000000000000000000000000000000081565b34801561053c57600080fd5b506102a761054b366004611582565b610e91565b34801561055c57600080fd5b5060016102a7565b34801561057057600080fd5b506102a77f000000000000000000000000000000000000000000000000000000000000000081565b61028c6105a6366004611803565b610ebc565b3480156105b757600080fd5b506101fd6105c63660046118c3565b610fb4565b3480156105d757600080fd5b5061028c6105e6366004611582565b610fe2565b60006301ffc9a760e01b6001600160e01b03198316148061061c57506380ac58cd60e01b6001600160e01b03198316145b806106375750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461064c906118ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610678906118ed565b80156106c55780601f1061069a576101008083540402835291602001916106c5565b820191906000526020600020905b8154815290600101906020018083116106a857829003601f168201915b5050505050905090565b60006106da82611058565b6106f7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061071e826109c2565b9050336001600160a01b038216146107575761073a8133610fb4565b610757576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107be8261108d565b9050836001600160a01b0316816001600160a01b0316146107f15760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b0388169091141761083e576108218633610fb4565b61083e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661086557604051633a954ecd60e21b815260040160405180910390fd5b801561087057600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610902576001840160008181526005602052604081205490036109005760015481146109005760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61096783838360405180602001604052806000815250610dc3565b505050565b6109746110fc565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156109a9573d6000803e3d6000fd5b5050565b6109b56110fc565b600961096782848361196d565b60006106378261108d565b600980546109da906118ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610a06906118ed565b8015610a535780601f10610a2857610100808354040283529160200191610a53565b820191906000526020600020905b815481529060010190602001808311610a3657829003601f168201915b505050505081565b60006001600160a01b038216610a84576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610ab26110fc565b610abc6000611156565b565b6000610ac960015490565b905090565b60606004805461064c906118ed565b610ae56110fc565b600a805460ff1916911515919091179055565b600a5460ff16610b335760405162461bcd60e51b81526020600482015260016024820152600360fc1b60448201526064015b60405180910390fd5b60006001610b4060015490565b0390507f00000000000000000000000000000000000000000000000000000000000000008282011115610b995760405162461bcd60e51b81526020600482015260016024820152603160f81b6044820152606401610b2a565b336000908152600660205260409081902054901c67ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000000008382011115610c0d5760405162461bcd60e51b81526020600482015260016024820152601960f91b6044820152606401610b2a565b60007f00000000000000000000000000000000000000000000000000000000000000008211610c3c5781610c5e565b7f00000000000000000000000000000000000000000000000000000000000000005b90506000817f000000000000000000000000000000000000000000000000000000000000000011610c90576000610cb4565b817f0000000000000000000000000000000000000000000000000000000000000000035b9050808511610cc4576000610cc8565b8085035b7f000000000000000000000000000000000000000000000000000000000000000002341015610d1d5760405162461bcd60e51b81526020600482015260016024820152603360f81b6044820152606401610b2a565b50505050610d2b33826111a6565b50565b336001600160a01b03831603610d575760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dce8484846107b3565b6001600160a01b0383163b15610e0757610dea84848484611286565b610e07576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e1882611058565b610e3557604051630a14c4b560e41b815260040160405180910390fd5b6000610e3f611371565b90508051600003610e5f5760405180602001604052806000815250610e8a565b80610e6984611380565b604051602001610e7a929190611a2d565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c16610637565b610ec46110fc565b60005b8251811015610967577f0000000000000000000000000000000000000000000000000000000000000000828281518110610f0357610f03611a6c565b6020026020010151610f1e6002546001546000199190030190565b610f289190611a98565b1115610f665760405162461bcd60e51b815260206004820152600d60248201526c45786365656420737570706c7960981b6044820152606401610b2a565b610fa2838281518110610f7b57610f7b611a6c565b6020026020010151838381518110610f9557610f95611a6c565b60200260200101516113cf565b80610fac81611aab565b915050610ec7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b610fea6110fc565b6001600160a01b03811661104f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b2a565b610d2b81611156565b60008160011115801561106c575060015482105b8015610637575050600090815260056020526040902054600160e01b161590565b600081806001116110e3576001548110156110e35760008181526005602052604081205490600160e01b821690036110e1575b80600003610e8a5750600019016000818152600560205260409020546110c0565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b03163314610abc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b0383166111cf57604051622e076360e81b815260040160405180910390fd5b816000036111f05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061123a5760015550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112bb903390899088908890600401611ac4565b6020604051808303816000875af19250505080156112f6575060408051601f3d908101601f191682019092526112f391810190611b01565b60015b611354573d808015611324576040519150601f19603f3d011682016040523d82523d6000602084013e611329565b606091505b50805160000361134c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606009805461064c906118ed565b604080516080810191829052607f0190826030600a8206018353600a90045b80156113bd57600183039250600a81066030018353600a900461139f565b50819003601f19909101908152919050565b6109a98282604051806020016040528060008152506113ee83836111a6565b6001600160a01b0383163b15610967576001548281035b6114186000868380600101945086611286565b611435576040516368d2bf6b60e11b815260040160405180910390fd5b81811061140557816001541461144a57600080fd5b5050505050565b6001600160e01b031981168114610d2b57600080fd5b60006020828403121561147957600080fd5b8135610e8a81611451565b60005b8381101561149f578181015183820152602001611487565b50506000910152565b600081518084526114c0816020860160208601611484565b601f01601f19169290920160200192915050565b602081526000610e8a60208301846114a8565b6000602082840312156114f957600080fd5b5035919050565b80356001600160a01b038116811461151757600080fd5b919050565b6000806040838503121561152f57600080fd5b61153883611500565b946020939093013593505050565b60008060006060848603121561155b57600080fd5b61156484611500565b925061157260208501611500565b9150604084013590509250925092565b60006020828403121561159457600080fd5b610e8a82611500565b600080602083850312156115b057600080fd5b823567ffffffffffffffff808211156115c857600080fd5b818501915085601f8301126115dc57600080fd5b8135818111156115eb57600080fd5b8660208285010111156115fd57600080fd5b60209290920196919550909350505050565b8035801515811461151757600080fd5b60006020828403121561163157600080fd5b610e8a8261160f565b6000806040838503121561164d57600080fd5b61165683611500565b91506116646020840161160f565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156116ac576116ac61166d565b604052919050565b600080600080608085870312156116ca57600080fd5b6116d385611500565b935060206116e2818701611500565b935060408601359250606086013567ffffffffffffffff8082111561170657600080fd5b818801915088601f83011261171a57600080fd5b81358181111561172c5761172c61166d565b61173e601f8201601f19168501611683565b9150808252898482850101111561175457600080fd5b808484018584013760008482840101525080935050505092959194509250565b600067ffffffffffffffff82111561178e5761178e61166d565b5060051b60200190565b600082601f8301126117a957600080fd5b813560206117be6117b983611774565b611683565b82815260059290921b840181019181810190868411156117dd57600080fd5b8286015b848110156117f857803583529183019183016117e1565b509695505050505050565b6000806040838503121561181657600080fd5b823567ffffffffffffffff8082111561182e57600080fd5b818501915085601f83011261184257600080fd5b813560206118526117b983611774565b82815260059290921b8401810191818101908984111561187157600080fd5b948201945b838610156118965761188786611500565b82529482019490820190611876565b965050860135925050808211156118ac57600080fd5b506118b985828601611798565b9150509250929050565b600080604083850312156118d657600080fd5b6118df83611500565b915061166460208401611500565b600181811c9082168061190157607f821691505b60208210810361192157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561096757600081815260208120601f850160051c8101602086101561194e5750805b601f850160051c820191505b818110156109445782815560010161195a565b67ffffffffffffffff8311156119855761198561166d565b6119998361199383546118ed565b83611927565b6000601f8411600181146119cd57600085156119b55750838201355b600019600387901b1c1916600186901b17835561144a565b600083815260209020601f19861690835b828110156119fe57868501358255602094850194600190920191016119de565b5086821015611a1b5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008351611a3f818460208801611484565b835190830190611a53818360208801611484565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561063757610637611a82565b600060018201611abd57611abd611a82565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611af7908301846114a8565b9695505050505050565b600060208284031215611b1357600080fd5b8151610e8a8161145156fea2646970667358221220b638cbc87fb4ef4483805eaeece97379c9e49328fd930cd14fdb5a64fcae6d8964736f6c6343000810003368747470733a2f2f697066732e696f2f697066732f516d634c486e705641764778655939534b6d6b326155395473754541537234445834547172753563315841356a443f66696c656e616d653d476f75726d6574253230426c696e64253230426f782e6a736f6e2f0000000000000000000000000000000000000000000000000000000000000003

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806375794a3c11610102578063c87b56dd11610095578063e73faa2d11610064578063e73faa2d14610564578063e9014f9d14610598578063e985e9c5146105ab578063f2fde38b146105cb57600080fd5b8063c87b56dd146104dc578063d5abeb01146104fc578063dc33e68114610530578063e6798baa1461055057600080fd5b8063a0712d68116100d1578063a0712d6814610455578063a22cb46514610468578063a542f1c414610488578063b88d4fde146104bc57600080fd5b806375794a3c146103ed5780638da5cb5b1461040257806395d89b41146104205780639da2f5f51461043557600080fd5b806342842e0e1161017a57806365d547ec1161014957806365d547ec1461036f5780636c0360eb146103a357806370a08231146103b8578063715018a6146103d857600080fd5b806342842e0e146102ef57806351cff8d91461030f57806355f804b31461032f5780636352211e1461034f57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806319908016146102b557806323b872dd146102cf57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611467565b6105eb565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022761063d565b60405161020991906114d4565b34801561024057600080fd5b5061025461024f3660046114e7565b6106cf565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c61028736600461151c565b610713565b005b34801561029a57600080fd5b5060025460015403600019015b604051908152602001610209565b3480156102c157600080fd5b50600a546101fd9060ff1681565b3480156102db57600080fd5b5061028c6102ea366004611546565b6107b3565b3480156102fb57600080fd5b5061028c61030a366004611546565b61094c565b34801561031b57600080fd5b5061028c61032a366004611582565b61096c565b34801561033b57600080fd5b5061028c61034a36600461159d565b6109ad565b34801561035b57600080fd5b5061025461036a3660046114e7565b6109c2565b34801561037b57600080fd5b506102a77f000000000000000000000000000000000000000000000000000000000000000181565b3480156103af57600080fd5b506102276109cd565b3480156103c457600080fd5b506102a76103d3366004611582565b610a5b565b3480156103e457600080fd5b5061028c610aaa565b3480156103f957600080fd5b506102a7610abe565b34801561040e57600080fd5b506000546001600160a01b0316610254565b34801561042c57600080fd5b50610227610ace565b34801561044157600080fd5b5061028c61045036600461161f565b610add565b61028c6104633660046114e7565b610af8565b34801561047457600080fd5b5061028c61048336600461163a565b610d2e565b34801561049457600080fd5b506102a77f000000000000000000000000000000000000000000000000000000000000001481565b3480156104c857600080fd5b5061028c6104d73660046116b4565b610dc3565b3480156104e857600080fd5b506102276104f73660046114e7565b610e0d565b34801561050857600080fd5b506102a77f0000000000000000000000000000000000000000000000000000000000000d0581565b34801561053c57600080fd5b506102a761054b366004611582565b610e91565b34801561055c57600080fd5b5060016102a7565b34801561057057600080fd5b506102a77f00000000000000000000000000000000000000000000000000038d7ea4c6800081565b61028c6105a6366004611803565b610ebc565b3480156105b757600080fd5b506101fd6105c63660046118c3565b610fb4565b3480156105d757600080fd5b5061028c6105e6366004611582565b610fe2565b60006301ffc9a760e01b6001600160e01b03198316148061061c57506380ac58cd60e01b6001600160e01b03198316145b806106375750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461064c906118ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610678906118ed565b80156106c55780601f1061069a576101008083540402835291602001916106c5565b820191906000526020600020905b8154815290600101906020018083116106a857829003601f168201915b5050505050905090565b60006106da82611058565b6106f7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061071e826109c2565b9050336001600160a01b038216146107575761073a8133610fb4565b610757576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107be8261108d565b9050836001600160a01b0316816001600160a01b0316146107f15760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b0388169091141761083e576108218633610fb4565b61083e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661086557604051633a954ecd60e21b815260040160405180910390fd5b801561087057600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610902576001840160008181526005602052604081205490036109005760015481146109005760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61096783838360405180602001604052806000815250610dc3565b505050565b6109746110fc565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156109a9573d6000803e3d6000fd5b5050565b6109b56110fc565b600961096782848361196d565b60006106378261108d565b600980546109da906118ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610a06906118ed565b8015610a535780601f10610a2857610100808354040283529160200191610a53565b820191906000526020600020905b815481529060010190602001808311610a3657829003601f168201915b505050505081565b60006001600160a01b038216610a84576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610ab26110fc565b610abc6000611156565b565b6000610ac960015490565b905090565b60606004805461064c906118ed565b610ae56110fc565b600a805460ff1916911515919091179055565b600a5460ff16610b335760405162461bcd60e51b81526020600482015260016024820152600360fc1b60448201526064015b60405180910390fd5b60006001610b4060015490565b0390507f0000000000000000000000000000000000000000000000000000000000000d058282011115610b995760405162461bcd60e51b81526020600482015260016024820152603160f81b6044820152606401610b2a565b336000908152600660205260409081902054901c67ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000000148382011115610c0d5760405162461bcd60e51b81526020600482015260016024820152601960f91b6044820152606401610b2a565b60007f00000000000000000000000000000000000000000000000000000000000000018211610c3c5781610c5e565b7f00000000000000000000000000000000000000000000000000000000000000015b90506000817f000000000000000000000000000000000000000000000000000000000000000111610c90576000610cb4565b817f0000000000000000000000000000000000000000000000000000000000000001035b9050808511610cc4576000610cc8565b8085035b7f00000000000000000000000000000000000000000000000000038d7ea4c6800002341015610d1d5760405162461bcd60e51b81526020600482015260016024820152603360f81b6044820152606401610b2a565b50505050610d2b33826111a6565b50565b336001600160a01b03831603610d575760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dce8484846107b3565b6001600160a01b0383163b15610e0757610dea84848484611286565b610e07576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e1882611058565b610e3557604051630a14c4b560e41b815260040160405180910390fd5b6000610e3f611371565b90508051600003610e5f5760405180602001604052806000815250610e8a565b80610e6984611380565b604051602001610e7a929190611a2d565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c16610637565b610ec46110fc565b60005b8251811015610967577f0000000000000000000000000000000000000000000000000000000000000d05828281518110610f0357610f03611a6c565b6020026020010151610f1e6002546001546000199190030190565b610f289190611a98565b1115610f665760405162461bcd60e51b815260206004820152600d60248201526c45786365656420737570706c7960981b6044820152606401610b2a565b610fa2838281518110610f7b57610f7b611a6c565b6020026020010151838381518110610f9557610f95611a6c565b60200260200101516113cf565b80610fac81611aab565b915050610ec7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b610fea6110fc565b6001600160a01b03811661104f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b2a565b610d2b81611156565b60008160011115801561106c575060015482105b8015610637575050600090815260056020526040902054600160e01b161590565b600081806001116110e3576001548110156110e35760008181526005602052604081205490600160e01b821690036110e1575b80600003610e8a5750600019016000818152600560205260409020546110c0565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b03163314610abc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b0383166111cf57604051622e076360e81b815260040160405180910390fd5b816000036111f05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061123a5760015550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112bb903390899088908890600401611ac4565b6020604051808303816000875af19250505080156112f6575060408051601f3d908101601f191682019092526112f391810190611b01565b60015b611354573d808015611324576040519150601f19603f3d011682016040523d82523d6000602084013e611329565b606091505b50805160000361134c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606009805461064c906118ed565b604080516080810191829052607f0190826030600a8206018353600a90045b80156113bd57600183039250600a81066030018353600a900461139f565b50819003601f19909101908152919050565b6109a98282604051806020016040528060008152506113ee83836111a6565b6001600160a01b0383163b15610967576001548281035b6114186000868380600101945086611286565b611435576040516368d2bf6b60e11b815260040160405180910390fd5b81811061140557816001541461144a57600080fd5b5050505050565b6001600160e01b031981168114610d2b57600080fd5b60006020828403121561147957600080fd5b8135610e8a81611451565b60005b8381101561149f578181015183820152602001611487565b50506000910152565b600081518084526114c0816020860160208601611484565b601f01601f19169290920160200192915050565b602081526000610e8a60208301846114a8565b6000602082840312156114f957600080fd5b5035919050565b80356001600160a01b038116811461151757600080fd5b919050565b6000806040838503121561152f57600080fd5b61153883611500565b946020939093013593505050565b60008060006060848603121561155b57600080fd5b61156484611500565b925061157260208501611500565b9150604084013590509250925092565b60006020828403121561159457600080fd5b610e8a82611500565b600080602083850312156115b057600080fd5b823567ffffffffffffffff808211156115c857600080fd5b818501915085601f8301126115dc57600080fd5b8135818111156115eb57600080fd5b8660208285010111156115fd57600080fd5b60209290920196919550909350505050565b8035801515811461151757600080fd5b60006020828403121561163157600080fd5b610e8a8261160f565b6000806040838503121561164d57600080fd5b61165683611500565b91506116646020840161160f565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156116ac576116ac61166d565b604052919050565b600080600080608085870312156116ca57600080fd5b6116d385611500565b935060206116e2818701611500565b935060408601359250606086013567ffffffffffffffff8082111561170657600080fd5b818801915088601f83011261171a57600080fd5b81358181111561172c5761172c61166d565b61173e601f8201601f19168501611683565b9150808252898482850101111561175457600080fd5b808484018584013760008482840101525080935050505092959194509250565b600067ffffffffffffffff82111561178e5761178e61166d565b5060051b60200190565b600082601f8301126117a957600080fd5b813560206117be6117b983611774565b611683565b82815260059290921b840181019181810190868411156117dd57600080fd5b8286015b848110156117f857803583529183019183016117e1565b509695505050505050565b6000806040838503121561181657600080fd5b823567ffffffffffffffff8082111561182e57600080fd5b818501915085601f83011261184257600080fd5b813560206118526117b983611774565b82815260059290921b8401810191818101908984111561187157600080fd5b948201945b838610156118965761188786611500565b82529482019490820190611876565b965050860135925050808211156118ac57600080fd5b506118b985828601611798565b9150509250929050565b600080604083850312156118d657600080fd5b6118df83611500565b915061166460208401611500565b600181811c9082168061190157607f821691505b60208210810361192157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561096757600081815260208120601f850160051c8101602086101561194e5750805b601f850160051c820191505b818110156109445782815560010161195a565b67ffffffffffffffff8311156119855761198561166d565b6119998361199383546118ed565b83611927565b6000601f8411600181146119cd57600085156119b55750838201355b600019600387901b1c1916600186901b17835561144a565b600083815260209020601f19861690835b828110156119fe57868501358255602094850194600190920191016119de565b5086821015611a1b5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008351611a3f818460208801611484565b835190830190611a53818360208801611484565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561063757610637611a82565b600060018201611abd57611abd611a82565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611af7908301846114a8565b9695505050505050565b600060208284031215611b1357600080fd5b8151610e8a8161145156fea2646970667358221220b638cbc87fb4ef4483805eaeece97379c9e49328fd930cd14fdb5a64fcae6d8964736f6c63430008100033

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

0000000000000000000000000000000000000000000000000000000000000003

-----Decoded View---------------
Arg [0] : _mintCntToOwner (uint256): 3

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000003


Deployed Bytecode Sourcemap

46303:2497:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16162:615;;;;;;;;;;-1:-1:-1;16162:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;16162:615:0;;;;;;;;21809:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23764:204::-;;;;;;;;;;-1:-1:-1;23764:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;23764:204:0;1533:203:1;23312:386:0;;;;;;;;;;-1:-1:-1;23312:386:0;;;;;:::i;:::-;;:::i;:::-;;15216:315;;;;;;;;;;-1:-1:-1;15482:12:0;;47042:1;15466:13;:28;-1:-1:-1;;15466:46:0;15216:315;;;2324:25:1;;;2312:2;2297:18;15216:315:0;2178:177:1;46489:30:0;;;;;;;;;;-1:-1:-1;46489:30:0;;;;;;;;33029:2800;;;;;;;;;;-1:-1:-1;33029:2800:0;;;;;:::i;:::-;;:::i;24654:185::-;;;;;;;;;;-1:-1:-1;24654:185:0;;;;;:::i;:::-;;:::i;48342:105::-;;;;;;;;;;-1:-1:-1;48342:105:0;;;;;:::i;:::-;;:::i;48147:86::-;;;;;;;;;;-1:-1:-1;48147:86:0;;;;;:::i;:::-;;:::i;21598:144::-;;;;;;;;;;-1:-1:-1;21598:144:0;;;;;:::i;:::-;;:::i;46681:48::-;;;;;;;;;;;;;;;46352:130;;;;;;;;;;;;;:::i;16841:224::-;;;;;;;;;;-1:-1:-1;16841:224:0;;;;;:::i;:::-;;:::i;1630:103::-;;;;;;;;;;;;;:::i;47152:89::-;;;;;;;;;;;;;:::i;982:87::-;;;;;;;;;;-1:-1:-1;1028:7:0;1055:6;-1:-1:-1;;;;;1055:6:0;982:87;;21978:104;;;;;;;;;;;;;:::i;48239:97::-;;;;;;;;;;-1:-1:-1;48239:97:0;;;;;:::i;:::-;;:::i;47362:779::-;;;;;;:::i;:::-;;:::i;24040:308::-;;;;;;;;;;-1:-1:-1;24040:308:0;;;;;:::i;:::-;;:::i;46629:45::-;;;;;;;;;;;;;;;24910:399;;;;;;;;;;-1:-1:-1;24910:399:0;;;;;:::i;:::-;;:::i;22153:327::-;;;;;;;;;;-1:-1:-1;22153:327:0;;;;;:::i;:::-;;:::i;46581:41::-;;;;;;;;;;;;;;;47247:109;;;;;;;;;;-1:-1:-1;47247:109:0;;;;;:::i;:::-;;:::i;47055:91::-;;;;;;;;;;-1:-1:-1;47042:1:0;47055:91;47152:89;46526:48;;;;;;;;;;;;;;;48452:345;;;;;;:::i;:::-;;:::i;24419:164::-;;;;;;;;;;-1:-1:-1;24419:164:0;;;;;:::i;:::-;;:::i;1888:201::-;;;;;;;;;;-1:-1:-1;1888:201:0;;;;;:::i;:::-;;:::i;16162:615::-;16247:4;-1:-1:-1;;;;;;;;;16547:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16624:25:0;;;16547:102;:179;;;-1:-1:-1;;;;;;;;;;16701:25:0;;;16547:179;16527:199;16162:615;-1:-1:-1;;16162:615:0:o;21809:100::-;21863:13;21896:5;21889:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21809:100;:::o;23764:204::-;23832:7;23857:16;23865:7;23857;:16::i;:::-;23852:64;;23882:34;;-1:-1:-1;;;23882:34:0;;;;;;;;;;;23852:64;-1:-1:-1;23936:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23936:24:0;;23764:204::o;23312:386::-;23385:13;23401:16;23409:7;23401;:16::i;:::-;23385:32;-1:-1:-1;44212:10:0;-1:-1:-1;;;;;23434:28:0;;;23430:175;;23482:44;23499:5;44212:10;24419:164;:::i;23482:44::-;23477:128;;23554:35;;-1:-1:-1;;;23554:35:0;;;;;;;;;;;23477:128;23617:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23617:29:0;-1:-1:-1;;;;;23617:29:0;;;;;;;;;23662:28;;23617:24;;23662:28;;;;;;;23374:324;23312:386;;:::o;33029:2800::-;33163:27;33193;33212:7;33193:18;:27::i;:::-;33163:57;;33278:4;-1:-1:-1;;;;;33237:45:0;33253:19;-1:-1:-1;;;;;33237:45:0;;33233:86;;33291:28;;-1:-1:-1;;;33291:28:0;;;;;;;;;;;33233:86;33333:27;31759:21;;;31586:15;31801:4;31794:36;31883:4;31867:21;;31973:26;;44212:10;32726:30;;;-1:-1:-1;;;;;32424:26:0;;32705:19;;;32702:55;33512:174;;33599:43;33616:4;44212:10;24419:164;:::i;33599:43::-;33594:92;;33651:35;;-1:-1:-1;;;33651:35:0;;;;;;;;;;;33594:92;-1:-1:-1;;;;;33703:16:0;;33699:52;;33728:23;;-1:-1:-1;;;33728:23:0;;;;;;;;;;;33699:52;33900:15;33897:160;;;34040:1;34019:19;34012:30;33897:160;-1:-1:-1;;;;;34435:24:0;;;;;;;:18;:24;;;;;;34433:26;;-1:-1:-1;;34433:26:0;;;34504:22;;;;;;;;;34502:24;;-1:-1:-1;34502:24:0;;;21497:11;21473:22;21469:40;21456:62;-1:-1:-1;;;21456:62:0;34797:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;35091:46:0;;:51;;35087:626;;35195:1;35185:11;;35163:19;35318:30;;;:17;:30;;;;;;:35;;35314:384;;35456:13;;35441:11;:28;35437:242;;35603:30;;;;:17;:30;;;;;:52;;;35437:242;35144:569;35087:626;35760:7;35756:2;-1:-1:-1;;;;;35741:27:0;35750:4;-1:-1:-1;;;;;35741:27:0;;;;;;;;;;;35779:42;33152:2677;;;33029:2800;;;:::o;24654:185::-;24792:39;24809:4;24815:2;24819:7;24792:39;;;;;;;;;;;;:16;:39::i;:::-;24654:185;;;:::o;48342:105::-;868:13;:11;:13::i;:::-;48398:43:::1;::::0;-1:-1:-1;;;;;48398:20:0;::::1;::::0;48419:21:::1;48398:43:::0;::::1;;;::::0;::::1;::::0;;;48419:21;48398:20;:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48342:105:::0;:::o;48147:86::-;868:13;:11;:13::i;:::-;48214:7:::1;:13;48224:3:::0;;48214:7;:13:::1;:::i;21598:144::-:0;21662:7;21705:27;21724:7;21705:18;:27::i;46352:130::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16841:224::-;16905:7;-1:-1:-1;;;;;16929:19:0;;16925:60;;16957:28;;-1:-1:-1;;;16957:28:0;;;;;;;;;;;16925:60;-1:-1:-1;;;;;;17003:25:0;;;;;:18;:25;;;;;;11396:13;17003:54;;16841:224::o;1630:103::-;868:13;:11;:13::i;:::-;1695:30:::1;1722:1;1695:18;:30::i;:::-;1630:103::o:0;47152:89::-;47198:7;47221:14;14985:13;;;14911:95;47221:14;47214:21;;47152:89;:::o;21978:104::-;22034:13;22067:7;22060:14;;;;;:::i;48239:97::-;868:13;:11;:13::i;:::-;48306:10:::1;:24:::0;;-1:-1:-1;;48306:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48239:97::o;47362:779::-;47445:10;;;;47437:24;;;;-1:-1:-1;;;47437:24:0;;10403:2:1;47437:24:0;;;10385:21:1;10442:1;10422:18;;;10415:29;-1:-1:-1;;;10460:18:1;;;10453:31;10501:18;;47437:24:0;;;;;;;;;47472:21;47513:1;47496:14;14985:13;;;14911:95;47496:14;:18;47472:42;;47561:9;47548:8;47532:13;:24;47531:39;;47523:53;;;;-1:-1:-1;;;47523:53:0;;10732:2:1;47523:53:0;;;10714:21:1;10771:1;10751:18;;;10744:29;-1:-1:-1;;;10789:18:1;;;10782:31;10830:18;;47523:53:0;10530:324:1;47523:53:0;47624:10;47587:20;17236:25;;;:18;:25;;11533:2;17236:25;;;;;:49;;11396:13;17235:80;47681:15;47653:23;;;47652:44;;47644:58;;;;-1:-1:-1;;;47644:58:0;;11061:2:1;47644:58:0;;;11043:21:1;11100:1;11080:18;;;11073:29;-1:-1:-1;;;11118:18:1;;;11111:31;11159:18;;47644:58:0;10859:324:1;47644:58:0;47713:24;47755:19;47740:12;:34;:89;;47817:12;47740:89;;;47786:19;47740:89;47713:116;;47838:20;47883:16;47861:19;:38;:101;;47961:1;47861:101;;;47933:16;47911:19;:38;47861:101;47838:124;;48026:12;48015:8;:23;:53;;48067:1;48015:53;;;48052:12;48041:8;:23;48015:53;48002:9;:67;47989:9;:80;;47971:121;;;;-1:-1:-1;;;47971:121:0;;11390:2:1;47971:121:0;;;11372:21:1;11429:1;11409:18;;;11402:29;-1:-1:-1;;;11447:18:1;;;11440:31;11488:18;;47971:121:0;11188:324:1;47971:121:0;47418:682;;;;48108:27;48114:10;48126:8;48108:5;:27::i;:::-;47362:779;:::o;24040:308::-;44212:10;-1:-1:-1;;;;;24139:31:0;;;24135:61;;24179:17;;-1:-1:-1;;;24179:17:0;;;;;;;;;;;24135:61;44212:10;24209:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24209:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24209:60:0;;;;;;;;;;24285:55;;540:41:1;;;24209:49:0;;44212:10;24285:55;;513:18:1;24285:55:0;;;;;;;24040:308;;:::o;24910:399::-;25077:31;25090:4;25096:2;25100:7;25077:12;:31::i;:::-;-1:-1:-1;;;;;25123:14:0;;;:19;25119:183;;25162:56;25193:4;25199:2;25203:7;25212:5;25162:30;:56::i;:::-;25157:145;;25246:40;;-1:-1:-1;;;25246:40:0;;;;;;;;;;;25157:145;24910:399;;;;:::o;22153:327::-;22226:13;22257:16;22265:7;22257;:16::i;:::-;22252:59;;22282:29;;-1:-1:-1;;;22282:29:0;;;;;;;;;;;22252:59;22324:21;22348:10;:8;:10::i;:::-;22324:34;;22382:7;22376:21;22401:1;22376:26;:96;;;;;;;;;;;;;;;;;22429:7;22438:18;22448:7;22438:9;:18::i;:::-;22412:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22376:96;22369:103;22153:327;-1:-1:-1;;;22153:327:0:o;47247:109::-;-1:-1:-1;;;;;17236:25:0;;47307:7;17236:25;;;:18;:25;;11533:2;17236:25;;;;11396:13;17236:49;;17235:80;47330:20;17147:176;48452:345;868:13;:11;:13::i;:::-;48580:9:::1;48575:215;48599:17;:24;48595:1;:28;48575:215;;;48688:9;48669:12;48682:1;48669:15;;;;;;;;:::i;:::-;;;;;;;48653:13;15482:12:::0;;47042:1;15466:13;-1:-1:-1;;15466:28:0;;;:46;;15216:315;48653:13:::1;:31;;;;:::i;:::-;:44;;48645:70;;;::::0;-1:-1:-1;;;48645:70:0;;12781:2:1;48645:70:0::1;::::0;::::1;12763:21:1::0;12820:2;12800:18;;;12793:30;-1:-1:-1;;;12839:18:1;;;12832:43;12892:18;;48645:70:0::1;12579:337:1::0;48645:70:0::1;48730:48;48740:17;48758:1;48740:20;;;;;;;;:::i;:::-;;;;;;;48762:12;48775:1;48762:15;;;;;;;;:::i;:::-;;;;;;;48730:9;:48::i;:::-;48625:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48575:215;;24419:164:::0;-1:-1:-1;;;;;24540:25:0;;;24516:4;24540:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24419:164::o;1888:201::-;868:13;:11;:13::i;:::-;-1:-1:-1;;;;;1977:22:0;::::1;1969:73;;;::::0;-1:-1:-1;;;1969:73:0;;13263:2:1;1969:73:0::1;::::0;::::1;13245:21:1::0;13302:2;13282:18;;;13275:30;13341:34;13321:18;;;13314:62;-1:-1:-1;;;13392:18:1;;;13385:36;13438:19;;1969:73:0::1;13061:402:1::0;1969:73:0::1;2053:28;2072:8;2053:18;:28::i;25564:273::-:0;25621:4;25677:7;47042:1;25658:26;;:66;;;;;25711:13;;25701:7;:23;25658:66;:152;;;;-1:-1:-1;;25762:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25762:43:0;:48;;25564:273::o;18515:1129::-;18582:7;18617;;47042:1;18666:23;18662:915;;18719:13;;18712:4;:20;18708:869;;;18757:14;18774:23;;;:17;:23;;;;;;;-1:-1:-1;;;18863:23:0;;:28;;18859:699;;19382:113;19389:6;19399:1;19389:11;19382:113;;-1:-1:-1;;;19460:6:0;19442:25;;;;:17;:25;;;;;;19382:113;;18859:699;18734:843;18708:869;19605:31;;-1:-1:-1;;;19605:31:0;;;;;;;;;;;1147:132;1028:7;1055:6;-1:-1:-1;;;;;1055:6:0;44212:10;1211:23;1203:68;;;;-1:-1:-1;;;1203:68:0;;13670:2:1;1203:68:0;;;13652:21:1;;;13689:18;;;13682:30;13748:34;13728:18;;;13721:62;13800:18;;1203:68:0;13468:356:1;2249:191:0;2323:16;2342:6;;-1:-1:-1;;;;;2359:17:0;;;-1:-1:-1;;;;;;2359:17:0;;;;;;2392:40;;2342:6;;;;;;;2392:40;;2323:16;2392:40;2312:128;2249:191;:::o;27395:1529::-;27483:13;;-1:-1:-1;;;;;27511:16:0;;27507:48;;27536:19;;-1:-1:-1;;;27536:19:0;;;;;;;;;;;27507:48;27570:8;27582:1;27570:13;27566:44;;27592:18;;-1:-1:-1;;;27592:18:0;;;;;;;;;;;27566:44;-1:-1:-1;;;;;28098:22:0;;;;;;:18;:22;;11533:2;28098:22;;:70;;28136:31;28124:44;;28098:70;;;21497:11;21473:22;21469:40;-1:-1:-1;23216:15:0;;23191:23;23187:45;21466:51;21456:62;28411:31;;;;:17;:31;;;;;:173;28429:12;28660:23;;;28698:101;28725:35;;28750:9;;;;;-1:-1:-1;;;;;28725:35:0;;;28742:1;;28725:35;;28742:1;;28725:35;28794:3;28784:7;:13;28698:101;;28815:13;:19;-1:-1:-1;24654:185:0;;;:::o;39780:716::-;39964:88;;-1:-1:-1;;;39964:88:0;;39943:4;;-1:-1:-1;;;;;39964:45:0;;;;;:88;;44212:10;;40031:4;;40037:7;;40046:5;;39964:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39964:88:0;;;;;;;;-1:-1:-1;;39964:88:0;;;;;;;;;;;;:::i;:::-;;;39960:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40247:6;:13;40264:1;40247:18;40243:235;;40293:40;;-1:-1:-1;;;40293:40:0;;;;;;;;;;;40243:235;40436:6;40430:13;40421:6;40417:2;40413:15;40406:38;39960:529;-1:-1:-1;;;;;;40123:64:0;-1:-1:-1;;;40123:64:0;;-1:-1:-1;39780:716:0;;;;;;:::o;46862:94::-;46914:13;46943:7;46936:14;;;;;:::i;44336:1960::-;44805:4;44799:11;;44812:3;44795:21;;44890:17;;;;45586:11;;;45465:5;45718:2;45732;45722:13;;45714:22;45586:11;45701:36;45773:2;45763:13;;45357:697;45792:4;45357:697;;;45983:1;45978:3;45974:11;45967:18;;46034:2;46028:4;46024:13;46020:2;46016:22;46011:3;46003:36;45887:2;45877:13;;45357:697;;;-1:-1:-1;46084:13:0;;;-1:-1:-1;;46199:12:0;;;46259:19;;;46199:12;44336:1960;-1:-1:-1;44336:1960:0:o;25921:104::-;25990:27;26000:2;26004:8;25990:27;;;;;;;;;;;;26564:19;26570:2;26574:8;26564:5;:19::i;:::-;-1:-1:-1;;;;;26625:14:0;;;:19;26621:483;;26679:13;;26727:14;;;26760:233;26791:62;26830:1;26834:2;26838:7;;;;;;26847:5;26791:30;:62::i;:::-;26786:167;;26889:40;;-1:-1:-1;;;26889:40:0;;;;;;;;;;;26786:167;26988:3;26980:5;:11;26760:233;;27075:3;27058:13;;:20;27054:34;;27080:8;;;27054:34;26646:458;;26441:681;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:592::-;2955:6;2963;3016:2;3004:9;2995:7;2991:23;2987:32;2984:52;;;3032:1;3029;3022:12;2984:52;3072:9;3059:23;3101:18;3142:2;3134:6;3131:14;3128:34;;;3158:1;3155;3148:12;3128:34;3196:6;3185:9;3181:22;3171:32;;3241:7;3234:4;3230:2;3226:13;3222:27;3212:55;;3263:1;3260;3253:12;3212:55;3303:2;3290:16;3329:2;3321:6;3318:14;3315:34;;;3345:1;3342;3335:12;3315:34;3390:7;3385:2;3376:6;3372:2;3368:15;3364:24;3361:37;3358:57;;;3411:1;3408;3401:12;3358:57;3442:2;3434:11;;;;;3464:6;;-1:-1:-1;2884:592:1;;-1:-1:-1;;;;2884:592:1:o;3481:160::-;3546:20;;3602:13;;3595:21;3585:32;;3575:60;;3631:1;3628;3621:12;3646:180;3702:6;3755:2;3743:9;3734:7;3730:23;3726:32;3723:52;;;3771:1;3768;3761:12;3723:52;3794:26;3810:9;3794:26;:::i;3831:254::-;3896:6;3904;3957:2;3945:9;3936:7;3932:23;3928:32;3925:52;;;3973:1;3970;3963:12;3925:52;3996:29;4015:9;3996:29;:::i;:::-;3986:39;;4044:35;4075:2;4064:9;4060:18;4044:35;:::i;:::-;4034:45;;3831:254;;;;;:::o;4090:127::-;4151:10;4146:3;4142:20;4139:1;4132:31;4182:4;4179:1;4172:15;4206:4;4203:1;4196:15;4222:275;4293:2;4287:9;4358:2;4339:13;;-1:-1:-1;;4335:27:1;4323:40;;4393:18;4378:34;;4414:22;;;4375:62;4372:88;;;4440:18;;:::i;:::-;4476:2;4469:22;4222:275;;-1:-1:-1;4222:275:1:o;4502:980::-;4597:6;4605;4613;4621;4674:3;4662:9;4653:7;4649:23;4645:33;4642:53;;;4691:1;4688;4681:12;4642:53;4714:29;4733:9;4714:29;:::i;:::-;4704:39;;4762:2;4783:38;4817:2;4806:9;4802:18;4783:38;:::i;:::-;4773:48;;4868:2;4857:9;4853:18;4840:32;4830:42;;4923:2;4912:9;4908:18;4895:32;4946:18;4987:2;4979:6;4976:14;4973:34;;;5003:1;5000;4993:12;4973:34;5041:6;5030:9;5026:22;5016:32;;5086:7;5079:4;5075:2;5071:13;5067:27;5057:55;;5108:1;5105;5098:12;5057:55;5144:2;5131:16;5166:2;5162;5159:10;5156:36;;;5172:18;;:::i;:::-;5214:53;5257:2;5238:13;;-1:-1:-1;;5234:27:1;5230:36;;5214:53;:::i;:::-;5201:66;;5290:2;5283:5;5276:17;5330:7;5325:2;5320;5316;5312:11;5308:20;5305:33;5302:53;;;5351:1;5348;5341:12;5302:53;5406:2;5401;5397;5393:11;5388:2;5381:5;5377:14;5364:45;5450:1;5445:2;5440;5433:5;5429:14;5425:23;5418:34;;5471:5;5461:15;;;;;4502:980;;;;;;;:::o;5487:183::-;5547:4;5580:18;5572:6;5569:30;5566:56;;;5602:18;;:::i;:::-;-1:-1:-1;5647:1:1;5643:14;5659:4;5639:25;;5487:183::o;5675:662::-;5729:5;5782:3;5775:4;5767:6;5763:17;5759:27;5749:55;;5800:1;5797;5790:12;5749:55;5836:6;5823:20;5862:4;5886:60;5902:43;5942:2;5902:43;:::i;:::-;5886:60;:::i;:::-;5980:15;;;6066:1;6062:10;;;;6050:23;;6046:32;;;6011:12;;;;6090:15;;;6087:35;;;6118:1;6115;6108:12;6087:35;6154:2;6146:6;6142:15;6166:142;6182:6;6177:3;6174:15;6166:142;;;6248:17;;6236:30;;6286:12;;;;6199;;6166:142;;;-1:-1:-1;6326:5:1;5675:662;-1:-1:-1;;;;;;5675:662:1:o;6342:1146::-;6460:6;6468;6521:2;6509:9;6500:7;6496:23;6492:32;6489:52;;;6537:1;6534;6527:12;6489:52;6577:9;6564:23;6606:18;6647:2;6639:6;6636:14;6633:34;;;6663:1;6660;6653:12;6633:34;6701:6;6690:9;6686:22;6676:32;;6746:7;6739:4;6735:2;6731:13;6727:27;6717:55;;6768:1;6765;6758:12;6717:55;6804:2;6791:16;6826:4;6850:60;6866:43;6906:2;6866:43;:::i;6850:60::-;6944:15;;;7026:1;7022:10;;;;7014:19;;7010:28;;;6975:12;;;;7050:19;;;7047:39;;;7082:1;7079;7072:12;7047:39;7106:11;;;;7126:148;7142:6;7137:3;7134:15;7126:148;;;7208:23;7227:3;7208:23;:::i;:::-;7196:36;;7159:12;;;;7252;;;;7126:148;;;7293:5;-1:-1:-1;;7336:18:1;;7323:32;;-1:-1:-1;;7367:16:1;;;7364:36;;;7396:1;7393;7386:12;7364:36;;7419:63;7474:7;7463:8;7452:9;7448:24;7419:63;:::i;:::-;7409:73;;;6342:1146;;;;;:::o;7493:260::-;7561:6;7569;7622:2;7610:9;7601:7;7597:23;7593:32;7590:52;;;7638:1;7635;7628:12;7590:52;7661:29;7680:9;7661:29;:::i;:::-;7651:39;;7709:38;7743:2;7732:9;7728:18;7709:38;:::i;7758:380::-;7837:1;7833:12;;;;7880;;;7901:61;;7955:4;7947:6;7943:17;7933:27;;7901:61;8008:2;8000:6;7997:14;7977:18;7974:38;7971:161;;8054:10;8049:3;8045:20;8042:1;8035:31;8089:4;8086:1;8079:15;8117:4;8114:1;8107:15;7971:161;;7758:380;;;:::o;8269:545::-;8371:2;8366:3;8363:11;8360:448;;;8407:1;8432:5;8428:2;8421:17;8477:4;8473:2;8463:19;8547:2;8535:10;8531:19;8528:1;8524:27;8518:4;8514:38;8583:4;8571:10;8568:20;8565:47;;;-1:-1:-1;8606:4:1;8565:47;8661:2;8656:3;8652:12;8649:1;8645:20;8639:4;8635:31;8625:41;;8716:82;8734:2;8727:5;8724:13;8716:82;;;8779:17;;;8760:1;8749:13;8716:82;;8990:1206;9114:18;9109:3;9106:27;9103:53;;;9136:18;;:::i;:::-;9165:94;9255:3;9215:38;9247:4;9241:11;9215:38;:::i;:::-;9209:4;9165:94;:::i;:::-;9285:1;9310:2;9305:3;9302:11;9327:1;9322:616;;;;9982:1;9999:3;9996:93;;;-1:-1:-1;10055:19:1;;;10042:33;9996:93;-1:-1:-1;;8947:1:1;8943:11;;;8939:24;8935:29;8925:40;8971:1;8967:11;;;8922:57;10102:78;;9295:895;;9322:616;8216:1;8209:14;;;8253:4;8240:18;;-1:-1:-1;;9358:17:1;;;9459:9;9481:229;9495:7;9492:1;9489:14;9481:229;;;9584:19;;;9571:33;9556:49;;9691:4;9676:20;;;;9644:1;9632:14;;;;9511:12;9481:229;;;9485:3;9738;9729:7;9726:16;9723:159;;;9862:1;9858:6;9852:3;9846;9843:1;9839:11;9835:21;9831:34;9827:39;9814:9;9809:3;9805:19;9792:33;9788:79;9780:6;9773:95;9723:159;;;9925:1;9919:3;9916:1;9912:11;9908:19;9902:4;9895:33;9295:895;;8990:1206;;;:::o;11517:663::-;11797:3;11835:6;11829:13;11851:66;11910:6;11905:3;11898:4;11890:6;11886:17;11851:66;:::i;:::-;11980:13;;11939:16;;;;12002:70;11980:13;11939:16;12049:4;12037:17;;12002:70;:::i;:::-;-1:-1:-1;;;12094:20:1;;12123:22;;;12172:1;12161:13;;11517:663;-1:-1:-1;;;;11517:663:1:o;12185:127::-;12246:10;12241:3;12237:20;12234:1;12227:31;12277:4;12274:1;12267:15;12301:4;12298:1;12291:15;12317:127;12378:10;12373:3;12369:20;12366:1;12359:31;12409:4;12406:1;12399:15;12433:4;12430:1;12423:15;12449:125;12514:9;;;12535:10;;;12532:36;;;12548:18;;:::i;12921:135::-;12960:3;12981:17;;;12978:43;;13001:18;;:::i;:::-;-1:-1:-1;13048:1:1;13037:13;;12921:135::o;13829:489::-;-1:-1:-1;;;;;14098:15:1;;;14080:34;;14150:15;;14145:2;14130:18;;14123:43;14197:2;14182:18;;14175:34;;;14245:3;14240:2;14225:18;;14218:31;;;14023:4;;14266:46;;14292:19;;14284:6;14266:46;:::i;:::-;14258:54;13829:489;-1:-1:-1;;;;;;13829:489:1:o;14323:249::-;14392:6;14445:2;14433:9;14424:7;14420:23;14416:32;14413:52;;;14461:1;14458;14451:12;14413:52;14493:9;14487:16;14512:30;14536:5;14512:30;:::i

Swarm Source

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