ETH Price: $3,092.96 (-0.33%)
Gas: 2 Gwei

Token

Goblin World (gwrld)
 

Overview

Max Total Supply

555 gwrld

Holders

309

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 gwrld
0xb9088e9cb184e8d30f74a2db03abcb2d9eefdb61
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:
goblinworld

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
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();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 virtual {
        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;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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))) : '';
    }

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        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 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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 virtual {
        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 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 virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        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 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 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;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/goblinworld.sol



pragma solidity ^0.8.0;




contract goblinworld is ERC721A, Ownable {

    string public baseURI = "ipfs://QmQ1PK7wpDSp7ghDVFwJT7EBHMoxFm5HFDt6SSip7qSvej/";
    string public contractURI = "";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_WALLET = 1;
    uint256 public constant MAX_SUPPLY = 555;
    uint256 public constant price = 0.0065 ether;

    bool public paused = true;
    bool hasSetOS = false;

    constructor() ERC721A("Goblin World", "gwrld") {}

    function mint() external payable {
        address _caller = _msgSender();
        uint256 ownerTokenCount = balanceOf(_caller);
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply");
        require(tx.origin == _caller, "No contracts");

        require(ownerTokenCount < MAX_PER_WALLET, "Exceeds max token count per wallet");
        require(1 * price == msg.value, "Invalid funds provided");

        _safeMint(_caller, 1);
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function setupOS() external onlyOwner {
        require(!hasSetOS, "Already setup");
        hasSetOS = true;
        _safeMint(_msgSender(), 1);
    }

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

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","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":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603660808181529062001d6460a0398051620000299160099160209091019062000138565b506040805160208101918290526000908190526200004a91600a9162000138565b50600b805461ffff191660011790553480156200006657600080fd5b50604080518082018252600c81526b11dbd89b1a5b8815dbdc9b1960a21b60208083019182528351808501909452600584526419dddc9b1960da1b908401528151919291620000b89160029162000138565b508051620000ce90600390602084019062000138565b50506000805550620000e033620000e6565b6200021b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014690620001de565b90600052602060002090601f0160209004810192826200016a5760008555620001b5565b82601f106200018557805160ff1916838001178555620001b5565b82800160010185558215620001b5579182015b82811115620001b557825182559160200191906001019062000198565b50620001c3929150620001c7565b5090565b5b80821115620001c35760008155600101620001c8565b600181811c90821680620001f357607f821691505b602082108114156200021557634e487b7160e01b600052602260045260246000fd5b50919050565b611b39806200022b6000396000f3fe6080604052600436106101d85760003560e01c8063698982ba11610102578063a22cb46511610095578063cd7c032611610064578063cd7c032614610515578063e8a3d4851461053d578063e985e9c514610552578063f2fde38b1461057257600080fd5b8063a22cb46514610484578063b88d4fde146104a4578063c6682862146104c4578063c87b56dd146104f557600080fd5b80638da5cb5b116100d15780638da5cb5b14610416578063938e3d7b1461043457806395d89b4114610454578063a035b1fe1461046957600080fd5b8063698982ba146103b75780636c0360eb146103cc57806370a08231146103e1578063715018a61461040157600080fd5b806318160ddd1161017a57806342842e0e1161014957806342842e0e1461033d57806355f804b31461035d5780635c975abb1461037d5780636352211e1461039757600080fd5b806318160ddd146102d957806323b872dd146102f257806332cb6b0c146103125780633ccfd60b1461032857600080fd5b8063081812fc116101b6578063081812fc14610256578063095ea7b31461028e5780630f2cdd6c146102ae5780631249c58b146102d157600080fd5b806301ffc9a7146101dd57806302329a291461021257806306fdde0314610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611790565b610592565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061023261022d366004611775565b6105e4565b005b34801561024057600080fd5b506102496105ff565b6040516102099190611975565b34801561026257600080fd5b50610276610271366004611830565b610691565b6040516001600160a01b039091168152602001610209565b34801561029a57600080fd5b506102326102a9366004611749565b6106d5565b3480156102ba57600080fd5b506102c3600181565b604051908152602001610209565b610232610775565b3480156102e557600080fd5b50600154600054036102c3565b3480156102fe57600080fd5b5061023261030d366004611653565b610927565b34801561031e57600080fd5b506102c361022b81565b34801561033457600080fd5b50610232610ab8565b34801561034957600080fd5b50610232610358366004611653565b610b4b565b34801561036957600080fd5b506102326103783660046117e7565b610b6b565b34801561038957600080fd5b50600b546101fd9060ff1681565b3480156103a357600080fd5b506102766103b2366004611830565b610b86565b3480156103c357600080fd5b50610232610b91565b3480156103d857600080fd5b50610249610c03565b3480156103ed57600080fd5b506102c36103fc3660046115fd565b610c91565b34801561040d57600080fd5b50610232610ce0565b34801561042257600080fd5b506008546001600160a01b0316610276565b34801561044057600080fd5b5061023261044f3660046117e7565b610cf2565b34801561046057600080fd5b50610249610d0d565b34801561047557600080fd5b506102c3661717b72f0a400081565b34801561049057600080fd5b5061023261049f366004611714565b610d1c565b3480156104b057600080fd5b506102326104bf366004611694565b610db2565b3480156104d057600080fd5b5061024960405180604001604052806005815260200164173539b7b760d91b81525081565b34801561050157600080fd5b50610249610510366004611830565b610dfc565b34801561052157600080fd5b5061027673a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561054957600080fd5b50610249610ec6565b34801561055e57600080fd5b506101fd61056d36600461161a565b610ed3565b34801561057e57600080fd5b5061023261058d3660046115fd565b610fb2565b60006301ffc9a760e01b6001600160e01b0319831614806105c357506380ac58cd60e01b6001600160e01b03198316145b806105de5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6105ec61102b565b600b805460ff1916911515919091179055565b60606002805461060e90611a16565b80601f016020809104026020016040519081016040528092919081815260200182805461063a90611a16565b80156106875780601f1061065c57610100808354040283529160200191610687565b820191906000526020600020905b81548152906001019060200180831161066a57829003601f168201915b5050505050905090565b600061069c82611085565b6106b9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106e082610b86565b9050336001600160a01b03821614610719576106fc8133610ed3565b610719576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b33600061078182610c91565b600b5490915060ff16156107c55760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064015b60405180910390fd5b600154600054036107d7906001611988565b61022b101561081d5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107bc565b326001600160a01b038316146108645760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016107bc565b600181106108bf5760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d617820746f6b656e20636f756e74207065722077616c6c604482015261195d60f21b60648201526084016107bc565b346108d2661717b72f0a400060016119b4565b146109185760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016107bc565b6109238260016110ac565b5050565b6000610932826110c6565b9050836001600160a01b0316816001600160a01b0316146109655760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109b2576109958633610ed3565b6109b257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109d957604051633a954ecd60e21b815260040160405180910390fd5b80156109e457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610a6f5760018401600081815260046020526040902054610a6d576000548114610a6d5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610ac061102b565b6040514790600090339083908381818185875af1925050503d8060008114610b04576040519150601f19603f3d011682016040523d82523d6000602084013e610b09565b606091505b50509050806109235760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016107bc565b610b6683838360405180602001604052806000815250610db2565b505050565b610b7361102b565b80516109239060099060208401906114d9565b60006105de826110c6565b610b9961102b565b600b54610100900460ff1615610be15760405162461bcd60e51b815260206004820152600d60248201526c0416c726561647920736574757609c1b60448201526064016107bc565b600b805461ff001916610100179055610c01610bfa3390565b60016110ac565b565b60098054610c1090611a16565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3c90611a16565b8015610c895780601f10610c5e57610100808354040283529160200191610c89565b820191906000526020600020905b815481529060010190602001808311610c6c57829003601f168201915b505050505081565b60006001600160a01b038216610cba576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610ce861102b565b610c01600061112e565b610cfa61102b565b805161092390600a9060208401906114d9565b60606003805461060e90611a16565b6001600160a01b038216331415610d465760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dbd848484610927565b6001600160a01b0383163b15610df657610dd984848484611180565b610df6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e0782611085565b610e4b5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107bc565b600060098054610e5a90611a16565b905011610e7657604051806020016040528060008152506105de565b6009610e8183611277565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610eb193929190611891565b60405160208183030381529060405292915050565b600a8054610c1090611a16565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b158015610f2f57600080fd5b505afa158015610f43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6791906117ca565b6001600160a01b03161415610f805760019150506105de565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b610fba61102b565b6001600160a01b03811661101f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bc565b6110288161112e565b50565b6008546001600160a01b03163314610c015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bc565b60008054821080156105de575050600090815260046020526040902054600160e01b161590565b610923828260405180602001604052806000815250611375565b60008160005481101561111557600081815260046020526040902054600160e01b8116611113575b8061110c5750600019016000818152600460205260409020546110ee565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111b5903390899088908890600401611942565b602060405180830381600087803b1580156111cf57600080fd5b505af19250505080156111ff575060408051601f3d908101601f191682019092526111fc918101906117ad565b60015b61125a573d80801561122d576040519150601f19603f3d011682016040523d82523d6000602084013e611232565b606091505b508051611252576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608161129b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112c557806112af81611a51565b91506112be9050600a836119a0565b915061129f565b60008167ffffffffffffffff8111156112e0576112e0611ac2565b6040519080825280601f01601f19166020018201604052801561130a576020820181803683370190505b5090505b8415610faa5761131f6001836119d3565b915061132c600a86611a6c565b611337906030611988565b60f81b81838151811061134c5761134c611aac565b60200101906001600160f81b031916908160001a90535061136e600a866119a0565b945061130e565b61137f83836113e2565b6001600160a01b0383163b15610b66576000548281035b6113a96000868380600101945086611180565b6113c6576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113965781600054146113db57600080fd5b5050505050565b600054816114035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146114b257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161147a565b50816114d057604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546114e590611a16565b90600052602060002090601f016020900481019282611507576000855561154d565b82601f1061152057805160ff191683800117855561154d565b8280016001018555821561154d579182015b8281111561154d578251825591602001919060010190611532565b5061155992915061155d565b5090565b5b80821115611559576000815560010161155e565b600067ffffffffffffffff8084111561158d5761158d611ac2565b604051601f8501601f19908116603f011681019082821181831017156115b5576115b5611ac2565b816040528093508581528686860111156115ce57600080fd5b858560208301376000602087830101525050509392505050565b803580151581146115f857600080fd5b919050565b60006020828403121561160f57600080fd5b813561110c81611ad8565b6000806040838503121561162d57600080fd5b823561163881611ad8565b9150602083013561164881611ad8565b809150509250929050565b60008060006060848603121561166857600080fd5b833561167381611ad8565b9250602084013561168381611ad8565b929592945050506040919091013590565b600080600080608085870312156116aa57600080fd5b84356116b581611ad8565b935060208501356116c581611ad8565b925060408501359150606085013567ffffffffffffffff8111156116e857600080fd5b8501601f810187136116f957600080fd5b61170887823560208401611572565b91505092959194509250565b6000806040838503121561172757600080fd5b823561173281611ad8565b9150611740602084016115e8565b90509250929050565b6000806040838503121561175c57600080fd5b823561176781611ad8565b946020939093013593505050565b60006020828403121561178757600080fd5b61110c826115e8565b6000602082840312156117a257600080fd5b813561110c81611aed565b6000602082840312156117bf57600080fd5b815161110c81611aed565b6000602082840312156117dc57600080fd5b815161110c81611ad8565b6000602082840312156117f957600080fd5b813567ffffffffffffffff81111561181057600080fd5b8201601f8101841361182157600080fd5b610faa84823560208401611572565b60006020828403121561184257600080fd5b5035919050565b600081518084526118618160208601602086016119ea565b601f01601f19169290920160200192915050565b600081516118878185602086016119ea565b9290920192915050565b600080855481600182811c9150808316806118ad57607f831692505b60208084108214156118cd57634e487b7160e01b86526022600452602486fd5b8180156118e157600181146118f25761191f565b60ff1986168952848901965061191f565b60008c81526020902060005b868110156119175781548b8201529085019083016118fe565b505084890196505b5050505050506119386119328287611875565b85611875565b9695505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061193890830184611849565b60208152600061110c6020830184611849565b6000821982111561199b5761199b611a80565b500190565b6000826119af576119af611a96565b500490565b60008160001904831182151516156119ce576119ce611a80565b500290565b6000828210156119e5576119e5611a80565b500390565b60005b83811015611a055781810151838201526020016119ed565b83811115610df65750506000910152565b600181811c90821680611a2a57607f821691505b60208210811415611a4b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a6557611a65611a80565b5060010190565b600082611a7b57611a7b611a96565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461102857600080fd5b6001600160e01b03198116811461102857600080fdfea26469706673582212205f4a0a6a579a321a6a748f49620c0cc41e95a38eef45c0a1b1fea3d79d50a30d64736f6c63430008070033697066733a2f2f516d5131504b377770445370376768445646774a54374542484d6f78466d3548464474365353697037715376656a2f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063698982ba11610102578063a22cb46511610095578063cd7c032611610064578063cd7c032614610515578063e8a3d4851461053d578063e985e9c514610552578063f2fde38b1461057257600080fd5b8063a22cb46514610484578063b88d4fde146104a4578063c6682862146104c4578063c87b56dd146104f557600080fd5b80638da5cb5b116100d15780638da5cb5b14610416578063938e3d7b1461043457806395d89b4114610454578063a035b1fe1461046957600080fd5b8063698982ba146103b75780636c0360eb146103cc57806370a08231146103e1578063715018a61461040157600080fd5b806318160ddd1161017a57806342842e0e1161014957806342842e0e1461033d57806355f804b31461035d5780635c975abb1461037d5780636352211e1461039757600080fd5b806318160ddd146102d957806323b872dd146102f257806332cb6b0c146103125780633ccfd60b1461032857600080fd5b8063081812fc116101b6578063081812fc14610256578063095ea7b31461028e5780630f2cdd6c146102ae5780631249c58b146102d157600080fd5b806301ffc9a7146101dd57806302329a291461021257806306fdde0314610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611790565b610592565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061023261022d366004611775565b6105e4565b005b34801561024057600080fd5b506102496105ff565b6040516102099190611975565b34801561026257600080fd5b50610276610271366004611830565b610691565b6040516001600160a01b039091168152602001610209565b34801561029a57600080fd5b506102326102a9366004611749565b6106d5565b3480156102ba57600080fd5b506102c3600181565b604051908152602001610209565b610232610775565b3480156102e557600080fd5b50600154600054036102c3565b3480156102fe57600080fd5b5061023261030d366004611653565b610927565b34801561031e57600080fd5b506102c361022b81565b34801561033457600080fd5b50610232610ab8565b34801561034957600080fd5b50610232610358366004611653565b610b4b565b34801561036957600080fd5b506102326103783660046117e7565b610b6b565b34801561038957600080fd5b50600b546101fd9060ff1681565b3480156103a357600080fd5b506102766103b2366004611830565b610b86565b3480156103c357600080fd5b50610232610b91565b3480156103d857600080fd5b50610249610c03565b3480156103ed57600080fd5b506102c36103fc3660046115fd565b610c91565b34801561040d57600080fd5b50610232610ce0565b34801561042257600080fd5b506008546001600160a01b0316610276565b34801561044057600080fd5b5061023261044f3660046117e7565b610cf2565b34801561046057600080fd5b50610249610d0d565b34801561047557600080fd5b506102c3661717b72f0a400081565b34801561049057600080fd5b5061023261049f366004611714565b610d1c565b3480156104b057600080fd5b506102326104bf366004611694565b610db2565b3480156104d057600080fd5b5061024960405180604001604052806005815260200164173539b7b760d91b81525081565b34801561050157600080fd5b50610249610510366004611830565b610dfc565b34801561052157600080fd5b5061027673a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561054957600080fd5b50610249610ec6565b34801561055e57600080fd5b506101fd61056d36600461161a565b610ed3565b34801561057e57600080fd5b5061023261058d3660046115fd565b610fb2565b60006301ffc9a760e01b6001600160e01b0319831614806105c357506380ac58cd60e01b6001600160e01b03198316145b806105de5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6105ec61102b565b600b805460ff1916911515919091179055565b60606002805461060e90611a16565b80601f016020809104026020016040519081016040528092919081815260200182805461063a90611a16565b80156106875780601f1061065c57610100808354040283529160200191610687565b820191906000526020600020905b81548152906001019060200180831161066a57829003601f168201915b5050505050905090565b600061069c82611085565b6106b9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106e082610b86565b9050336001600160a01b03821614610719576106fc8133610ed3565b610719576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b33600061078182610c91565b600b5490915060ff16156107c55760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064015b60405180910390fd5b600154600054036107d7906001611988565b61022b101561081d5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107bc565b326001600160a01b038316146108645760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016107bc565b600181106108bf5760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d617820746f6b656e20636f756e74207065722077616c6c604482015261195d60f21b60648201526084016107bc565b346108d2661717b72f0a400060016119b4565b146109185760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016107bc565b6109238260016110ac565b5050565b6000610932826110c6565b9050836001600160a01b0316816001600160a01b0316146109655760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109b2576109958633610ed3565b6109b257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109d957604051633a954ecd60e21b815260040160405180910390fd5b80156109e457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610a6f5760018401600081815260046020526040902054610a6d576000548114610a6d5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610ac061102b565b6040514790600090339083908381818185875af1925050503d8060008114610b04576040519150601f19603f3d011682016040523d82523d6000602084013e610b09565b606091505b50509050806109235760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016107bc565b610b6683838360405180602001604052806000815250610db2565b505050565b610b7361102b565b80516109239060099060208401906114d9565b60006105de826110c6565b610b9961102b565b600b54610100900460ff1615610be15760405162461bcd60e51b815260206004820152600d60248201526c0416c726561647920736574757609c1b60448201526064016107bc565b600b805461ff001916610100179055610c01610bfa3390565b60016110ac565b565b60098054610c1090611a16565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3c90611a16565b8015610c895780601f10610c5e57610100808354040283529160200191610c89565b820191906000526020600020905b815481529060010190602001808311610c6c57829003601f168201915b505050505081565b60006001600160a01b038216610cba576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610ce861102b565b610c01600061112e565b610cfa61102b565b805161092390600a9060208401906114d9565b60606003805461060e90611a16565b6001600160a01b038216331415610d465760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dbd848484610927565b6001600160a01b0383163b15610df657610dd984848484611180565b610df6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e0782611085565b610e4b5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107bc565b600060098054610e5a90611a16565b905011610e7657604051806020016040528060008152506105de565b6009610e8183611277565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610eb193929190611891565b60405160208183030381529060405292915050565b600a8054610c1090611a16565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b158015610f2f57600080fd5b505afa158015610f43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6791906117ca565b6001600160a01b03161415610f805760019150506105de565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b610fba61102b565b6001600160a01b03811661101f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bc565b6110288161112e565b50565b6008546001600160a01b03163314610c015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bc565b60008054821080156105de575050600090815260046020526040902054600160e01b161590565b610923828260405180602001604052806000815250611375565b60008160005481101561111557600081815260046020526040902054600160e01b8116611113575b8061110c5750600019016000818152600460205260409020546110ee565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111b5903390899088908890600401611942565b602060405180830381600087803b1580156111cf57600080fd5b505af19250505080156111ff575060408051601f3d908101601f191682019092526111fc918101906117ad565b60015b61125a573d80801561122d576040519150601f19603f3d011682016040523d82523d6000602084013e611232565b606091505b508051611252576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608161129b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112c557806112af81611a51565b91506112be9050600a836119a0565b915061129f565b60008167ffffffffffffffff8111156112e0576112e0611ac2565b6040519080825280601f01601f19166020018201604052801561130a576020820181803683370190505b5090505b8415610faa5761131f6001836119d3565b915061132c600a86611a6c565b611337906030611988565b60f81b81838151811061134c5761134c611aac565b60200101906001600160f81b031916908160001a90535061136e600a866119a0565b945061130e565b61137f83836113e2565b6001600160a01b0383163b15610b66576000548281035b6113a96000868380600101945086611180565b6113c6576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113965781600054146113db57600080fd5b5050505050565b600054816114035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146114b257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161147a565b50816114d057604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546114e590611a16565b90600052602060002090601f016020900481019282611507576000855561154d565b82601f1061152057805160ff191683800117855561154d565b8280016001018555821561154d579182015b8281111561154d578251825591602001919060010190611532565b5061155992915061155d565b5090565b5b80821115611559576000815560010161155e565b600067ffffffffffffffff8084111561158d5761158d611ac2565b604051601f8501601f19908116603f011681019082821181831017156115b5576115b5611ac2565b816040528093508581528686860111156115ce57600080fd5b858560208301376000602087830101525050509392505050565b803580151581146115f857600080fd5b919050565b60006020828403121561160f57600080fd5b813561110c81611ad8565b6000806040838503121561162d57600080fd5b823561163881611ad8565b9150602083013561164881611ad8565b809150509250929050565b60008060006060848603121561166857600080fd5b833561167381611ad8565b9250602084013561168381611ad8565b929592945050506040919091013590565b600080600080608085870312156116aa57600080fd5b84356116b581611ad8565b935060208501356116c581611ad8565b925060408501359150606085013567ffffffffffffffff8111156116e857600080fd5b8501601f810187136116f957600080fd5b61170887823560208401611572565b91505092959194509250565b6000806040838503121561172757600080fd5b823561173281611ad8565b9150611740602084016115e8565b90509250929050565b6000806040838503121561175c57600080fd5b823561176781611ad8565b946020939093013593505050565b60006020828403121561178757600080fd5b61110c826115e8565b6000602082840312156117a257600080fd5b813561110c81611aed565b6000602082840312156117bf57600080fd5b815161110c81611aed565b6000602082840312156117dc57600080fd5b815161110c81611ad8565b6000602082840312156117f957600080fd5b813567ffffffffffffffff81111561181057600080fd5b8201601f8101841361182157600080fd5b610faa84823560208401611572565b60006020828403121561184257600080fd5b5035919050565b600081518084526118618160208601602086016119ea565b601f01601f19169290920160200192915050565b600081516118878185602086016119ea565b9290920192915050565b600080855481600182811c9150808316806118ad57607f831692505b60208084108214156118cd57634e487b7160e01b86526022600452602486fd5b8180156118e157600181146118f25761191f565b60ff1986168952848901965061191f565b60008c81526020902060005b868110156119175781548b8201529085019083016118fe565b505084890196505b5050505050506119386119328287611875565b85611875565b9695505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061193890830184611849565b60208152600061110c6020830184611849565b6000821982111561199b5761199b611a80565b500190565b6000826119af576119af611a96565b500490565b60008160001904831182151516156119ce576119ce611a80565b500290565b6000828210156119e5576119e5611a80565b500390565b60005b83811015611a055781810151838201526020016119ed565b83811115610df65750506000910152565b600181811c90821680611a2a57607f821691505b60208210811415611a4b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a6557611a65611a80565b5060010190565b600082611a7b57611a7b611a96565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461102857600080fd5b6001600160e01b03198116811461102857600080fdfea26469706673582212205f4a0a6a579a321a6a748f49620c0cc41e95a38eef45c0a1b1fea3d79d50a30d64736f6c63430008070033

Deployed Bytecode Sourcemap

57026:2617:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20967:639;;;;;;;;;;-1:-1:-1;20967:639:0;;;;;:::i;:::-;;:::i;:::-;;;7756:14:1;;7749:22;7731:41;;7719:2;7704:18;20967:639:0;;;;;;;;58957:81;;;;;;;;;;-1:-1:-1;58957:81:0;;;;;:::i;:::-;;:::i;:::-;;21869:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28352:218::-;;;;;;;;;;-1:-1:-1;28352:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7054:32:1;;;7036:51;;7024:2;7009:18;28352:218:0;6890:203:1;27793:400:0;;;;;;;;;;-1:-1:-1;27793:400:0;;;;;:::i;:::-;;:::i;57351:42::-;;;;;;;;;;;;57392:1;57351:42;;;;;11732:25:1;;;11720:2;11705:18;57351:42:0;11586:177:1;57619:497:0;;;:::i;17620:323::-;;;;;;;;;;-1:-1:-1;17894:12:0;;17681:7;17878:13;:28;17620:323;;32059:2817;;;;;;;;;;-1:-1:-1;32059:2817:0;;;;;:::i;:::-;;:::i;57400:40::-;;;;;;;;;;;;57437:3;57400:40;;58577:209;;;;;;;;;;;;;:::i;34972:185::-;;;;;;;;;;-1:-1:-1;34972:185:0;;;;;:::i;:::-;;:::i;59046:100::-;;;;;;;;;;-1:-1:-1;59046:100:0;;;;;:::i;:::-;;:::i;57500:25::-;;;;;;;;;;-1:-1:-1;57500:25:0;;;;;;;;23262:152;;;;;;;;;;-1:-1:-1;23262:152:0;;;;;:::i;:::-;;:::i;58794:155::-;;;;;;;;;;;;;:::i;57076:80::-;;;;;;;;;;;;;:::i;18804:233::-;;;;;;;;;;-1:-1:-1;18804:233:0;;;;;:::i;:::-;;:::i;56134:103::-;;;;;;;;;;;;;:::i;55486:87::-;;;;;;;;;;-1:-1:-1;55559:6:0;;-1:-1:-1;;;;;55559:6:0;55486:87;;59154:116;;;;;;;;;;-1:-1:-1;59154:116:0;;;;;:::i;:::-;;:::i;22045:104::-;;;;;;;;;;;;;:::i;57447:44::-;;;;;;;;;;;;57479:12;57447:44;;28910:308;;;;;;;;;;-1:-1:-1;28910:308:0;;;;;:::i;:::-;;:::i;35755:399::-;;;;;;;;;;-1:-1:-1;35755:399:0;;;;;:::i;:::-;;:::i;57200:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;57200:46:0;;;;;59278:362;;;;;;;;;;-1:-1:-1;59278:362:0;;;;;:::i;:::-;;:::i;57253:89::-;;;;;;;;;;;;57300:42;57253:89;;57163:30;;;;;;;;;;;;;:::i;58124:445::-;;;;;;;;;;-1:-1:-1;58124:445:0;;;;;:::i;:::-;;:::i;56392:201::-;;;;;;;;;;-1:-1:-1;56392:201:0;;;;;:::i;:::-;;:::i;20967:639::-;21052:4;-1:-1:-1;;;;;;;;;21376:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21453:25:0;;;21376:102;:179;;;-1:-1:-1;;;;;;;;;;21530:25:0;;;21376:179;21356:199;20967:639;-1:-1:-1;;20967:639:0:o;58957:81::-;55372:13;:11;:13::i;:::-;59015:6:::1;:15:::0;;-1:-1:-1;;59015:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58957:81::o;21869:100::-;21923:13;21956:5;21949:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21869:100;:::o;28352:218::-;28428:7;28453:16;28461:7;28453;:16::i;:::-;28448:64;;28478:34;;-1:-1:-1;;;28478:34:0;;;;;;;;;;;28448:64;-1:-1:-1;28532:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;28532:30:0;;28352:218::o;27793:400::-;27874:13;27890:16;27898:7;27890;:16::i;:::-;27874:32;-1:-1:-1;51650:10:0;-1:-1:-1;;;;;27923:28:0;;;27919:175;;27971:44;27988:5;51650:10;58124:445;:::i;27971:44::-;27966:128;;28043:35;;-1:-1:-1;;;28043:35:0;;;;;;;;;;;27966:128;28106:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;28106:35:0;-1:-1:-1;;;;;28106:35:0;;;;;;;;;28157:28;;28106:24;;28157:28;;;;;;;27863:330;27793:400;;:::o;57619:497::-;51650:10;57663:15;57730:18;51650:10;57730:9;:18::i;:::-;57768:6;;57704:44;;-1:-1:-1;57768:6:0;;57767:7;57759:26;;;;-1:-1:-1;;;57759:26:0;;8209:2:1;57759:26:0;;;8191:21:1;8248:1;8228:18;;;8221:29;-1:-1:-1;;;8266:18:1;;;8259:36;8312:18;;57759:26:0;;;;;;;;;17894:12;;17681:7;17878:13;:28;57818:17;;57834:1;57818:17;:::i;:::-;57437:3;57804:31;;57796:62;;;;-1:-1:-1;;;57796:62:0;;9292:2:1;57796:62:0;;;9274:21:1;9331:2;9311:18;;;9304:30;-1:-1:-1;;;9350:18:1;;;9343:48;9408:18;;57796:62:0;9090:342:1;57796:62:0;57877:9;-1:-1:-1;;;;;57877:20:0;;;57869:45;;;;-1:-1:-1;;;57869:45:0;;11447:2:1;57869:45:0;;;11429:21:1;11486:2;11466:18;;;11459:30;-1:-1:-1;;;11505:18:1;;;11498:42;11557:18;;57869:45:0;11245:336:1;57869:45:0;57392:1;57935:15;:32;57927:79;;;;-1:-1:-1;;;57927:79:0;;10701:2:1;57927:79:0;;;10683:21:1;10740:2;10720:18;;;10713:30;10779:34;10759:18;;;10752:62;-1:-1:-1;;;10830:18:1;;;10823:32;10872:19;;57927:79:0;10499:398:1;57927:79:0;58038:9;58025;57479:12;58025:1;:9;:::i;:::-;:22;58017:57;;;;-1:-1:-1;;;58017:57:0;;10350:2:1;58017:57:0;;;10332:21:1;10389:2;10369:18;;;10362:30;-1:-1:-1;;;10408:18:1;;;10401:52;10470:18;;58017:57:0;10148:346:1;58017:57:0;58087:21;58097:7;58106:1;58087:9;:21::i;:::-;57652:464;;57619:497::o;32059:2817::-;32193:27;32223;32242:7;32223:18;:27::i;:::-;32193:57;;32308:4;-1:-1:-1;;;;;32267:45:0;32283:19;-1:-1:-1;;;;;32267:45:0;;32263:86;;32321:28;;-1:-1:-1;;;32321:28:0;;;;;;;;;;;32263:86;32363:27;31173:24;;;:15;:24;;;;;31395:26;;51650:10;30798:30;;;-1:-1:-1;;;;;30491:28:0;;30776:20;;;30773:56;32549:180;;32642:43;32659:4;51650:10;58124:445;:::i;32642:43::-;32637:92;;32694:35;;-1:-1:-1;;;32694:35:0;;;;;;;;;;;32637:92;-1:-1:-1;;;;;32746:16:0;;32742:52;;32771:23;;-1:-1:-1;;;32771:23:0;;;;;;;;;;;32742:52;32943:15;32940:160;;;33083:1;33062:19;33055:30;32940:160;-1:-1:-1;;;;;33480:24:0;;;;;;;:18;:24;;;;;;33478:26;;-1:-1:-1;;33478:26:0;;;33549:22;;;;;;;;;33547:24;;-1:-1:-1;33547:24:0;;;26651:11;26626:23;26622:41;26609:63;-1:-1:-1;;;26609:63:0;33842:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;34137:47:0;;34133:627;;34242:1;34232:11;;34210:19;34365:30;;;:17;:30;;;;;;34361:384;;34503:13;;34488:11;:28;34484:242;;34650:30;;;;:17;:30;;;;;:52;;;34484:242;34191:569;34133:627;34807:7;34803:2;-1:-1:-1;;;;;34788:27:0;34797:4;-1:-1:-1;;;;;34788:27:0;;;;;;;;;;;32182:2694;;;32059:2817;;;:::o;58577:209::-;55372:13;:11;:13::i;:::-;58696:37:::1;::::0;58645:21:::1;::::0;58627:15:::1;::::0;51650:10;;58645:21;;58627:15;58696:37;58627:15;58696:37;58645:21;51650:10;58696:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58677:56;;;58752:7;58744:34;;;::::0;-1:-1:-1;;;58744:34:0;;11104:2:1;58744:34:0::1;::::0;::::1;11086:21:1::0;11143:2;11123:18;;;11116:30;-1:-1:-1;;;11162:18:1;;;11155:44;11216:18;;58744:34:0::1;10902:338:1::0;34972:185:0;35110:39;35127:4;35133:2;35137:7;35110:39;;;;;;;;;;;;:16;:39::i;:::-;34972:185;;;:::o;59046:100::-;55372:13;:11;:13::i;:::-;59120:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;23262:152::-:0;23334:7;23377:27;23396:7;23377:18;:27::i;58794:155::-;55372:13;:11;:13::i;:::-;58852:8:::1;::::0;::::1;::::0;::::1;;;58851:9;58843:35;;;::::0;-1:-1:-1;;;58843:35:0;;8950:2:1;58843:35:0::1;::::0;::::1;8932:21:1::0;8989:2;8969:18;;;8962:30;-1:-1:-1;;;9008:18:1;;;9001:43;9061:18;;58843:35:0::1;8748:337:1::0;58843:35:0::1;58889:8;:15:::0;;-1:-1:-1;;58889:15:0::1;;;::::0;;58915:26:::1;58925:12;51650:10:::0;;51563:105;58925:12:::1;58939:1;58915:9;:26::i;:::-;58794:155::o:0;57076:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18804:233::-;18876:7;-1:-1:-1;;;;;18900:19:0;;18896:60;;18928:28;;-1:-1:-1;;;18928:28:0;;;;;;;;;;;18896:60;-1:-1:-1;;;;;;18974:25:0;;;;;:18;:25;;;;;;12963:13;18974:55;;18804:233::o;56134:103::-;55372:13;:11;:13::i;:::-;56199:30:::1;56226:1;56199:18;:30::i;59154:116::-:0;55372:13;:11;:13::i;:::-;59236:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;22045:104::-:0;22101:13;22134:7;22127:14;;;;;:::i;28910:308::-;-1:-1:-1;;;;;29009:31:0;;51650:10;29009:31;29005:61;;;29049:17;;-1:-1:-1;;;29049:17:0;;;;;;;;;;;29005:61;51650:10;29079:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;29079:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;29079:60:0;;;;;;;;;;29155:55;;7731:41:1;;;29079:49:0;;51650:10;29155:55;;7704:18:1;29155:55:0;;;;;;;28910:308;;:::o;35755:399::-;35922:31;35935:4;35941:2;35945:7;35922:12;:31::i;:::-;-1:-1:-1;;;;;35968:14:0;;;:19;35964:183;;36007:56;36038:4;36044:2;36048:7;36057:5;36007:30;:56::i;:::-;36002:145;;36091:40;;-1:-1:-1;;;36091:40:0;;;;;;;;;;;36002:145;35755:399;;;;:::o;59278:362::-;59344:13;59378:17;59386:8;59378:7;:17::i;:::-;59370:51;;;;-1:-1:-1;;;59370:51:0;;9639:2:1;59370:51:0;;;9621:21:1;9678:2;9658:18;;;9651:30;-1:-1:-1;;;9697:18:1;;;9690:51;9758:18;;59370:51:0;9437:345:1;59370:51:0;59463:1;59445:7;59439:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;59521:7;59545:26;59562:8;59545:16;:26::i;:::-;59588:13;;;;;;;;;;;;;-1:-1:-1;;;59588:13:0;;;59488:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59432:200;59278:362;-1:-1:-1;;59278:362:0:o;57163:30::-;;;;;;;:::i;58124:445::-;58422:28;;-1:-1:-1;;;58422:28:0;;-1:-1:-1;;;;;7054:32:1;;;58422:28:0;;;7036:51:1;58249:4:0;;57300:42;;58414:49;;;57300:42;;58422:21;;7009:18:1;;58422:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;58414:49:0;;58410:93;;;58487:4;58480:11;;;;;58410:93;-1:-1:-1;;;;;29496:25:0;;;29472:4;29496:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;58522:39;58515:46;58124:445;-1:-1:-1;;;;58124:445:0:o;56392:201::-;55372:13;:11;:13::i;:::-;-1:-1:-1;;;;;56481:22:0;::::1;56473:73;;;::::0;-1:-1:-1;;;56473:73:0;;8543:2:1;56473:73:0::1;::::0;::::1;8525:21:1::0;8582:2;8562:18;;;8555:30;8621:34;8601:18;;;8594:62;-1:-1:-1;;;8672:18:1;;;8665:36;8718:19;;56473:73:0::1;8341:402:1::0;56473:73:0::1;56557:28;56576:8;56557:18;:28::i;:::-;56392:201:::0;:::o;55651:132::-;55559:6;;-1:-1:-1;;;;;55559:6:0;51650:10;55715:23;55707:68;;;;-1:-1:-1;;;55707:68:0;;9989:2:1;55707:68:0;;;9971:21:1;;;10008:18;;;10001:30;10067:34;10047:18;;;10040:62;10119:18;;55707:68:0;9787:356:1;29797:282:0;29862:4;29952:13;;29942:7;:23;29899:153;;;;-1:-1:-1;;30003:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30003:44:0;:49;;29797:282::o;45395:112::-;45472:27;45482:2;45486:8;45472:27;;;;;;;;;;;;:9;:27::i;24417:1275::-;24484:7;24519;24621:13;;24614:4;:20;24610:1015;;;24659:14;24676:23;;;:17;:23;;;;;;-1:-1:-1;;;24765:24:0;;24761:845;;25430:113;25437:11;25430:113;;-1:-1:-1;;;25508:6:0;25490:25;;;;:17;:25;;;;;;25430:113;;;25576:6;24417:1275;-1:-1:-1;;;24417:1275:0:o;24761:845::-;24636:989;24610:1015;25653:31;;-1:-1:-1;;;25653:31:0;;;;;;;;;;;56753:191;56846:6;;;-1:-1:-1;;;;;56863:17:0;;;-1:-1:-1;;;;;;56863:17:0;;;;;;;56896:40;;56846:6;;;56863:17;56846:6;;56896:40;;56827:16;;56896:40;56816:128;56753:191;:::o;38238:716::-;38422:88;;-1:-1:-1;;;38422:88:0;;38401:4;;-1:-1:-1;;;;;38422:45:0;;;;;:88;;51650:10;;38489:4;;38495:7;;38504:5;;38422:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38422:88:0;;;;;;;;-1:-1:-1;;38422:88:0;;;;;;;;;;;;:::i;:::-;;;38418:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38705:13:0;;38701:235;;38751:40;;-1:-1:-1;;;38751:40:0;;;;;;;;;;;38701:235;38894:6;38888:13;38879:6;38875:2;38871:15;38864:38;38418:529;-1:-1:-1;;;;;;38581:64:0;-1:-1:-1;;;38581:64:0;;-1:-1:-1;38238:716:0;;;;;;:::o;465:723::-;521:13;742:10;738:53;;-1:-1:-1;;769:10:0;;;;;;;;;;;;-1:-1:-1;;;769:10:0;;;;;465:723::o;738:53::-;816:5;801:12;857:78;864:9;;857:78;;890:8;;;;:::i;:::-;;-1:-1:-1;913:10:0;;-1:-1:-1;921:2:0;913:10;;:::i;:::-;;;857:78;;;945:19;977:6;967:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;967:17:0;;945:39;;995:154;1002:10;;995:154;;1029:11;1039:1;1029:11;;:::i;:::-;;-1:-1:-1;1098:10:0;1106:2;1098:5;:10;:::i;:::-;1085:24;;:2;:24;:::i;:::-;1072:39;;1055:6;1062;1055:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1055:56:0;;;;;;;;-1:-1:-1;1126:11:0;1135:2;1126:11;;:::i;:::-;;;995:154;;44622:689;44753:19;44759:2;44763:8;44753:5;:19::i;:::-;-1:-1:-1;;;;;44814:14:0;;;:19;44810:483;;44854:11;44868:13;44916:14;;;44949:233;44980:62;45019:1;45023:2;45027:7;;;;;;45036:5;44980:30;:62::i;:::-;44975:167;;45078:40;;-1:-1:-1;;;45078:40:0;;;;;;;;;;;44975:167;45177:3;45169:5;:11;44949:233;;45264:3;45247:13;;:20;45243:34;;45269:8;;;45243:34;44835:458;;44622:689;;;:::o;39416:2454::-;39489:20;39512:13;39540;39536:44;;39562:18;;-1:-1:-1;;;39562:18:0;;;;;;;;;;;39536:44;-1:-1:-1;;;;;40068:22:0;;;;;;:18;:22;;;;13101:2;40068:22;;;:71;;40106:32;40094:45;;40068:71;;;40382:31;;;:17;:31;;;;;-1:-1:-1;27082:15:0;;27056:24;27052:46;26651:11;26626:23;26622:41;26619:52;26609:63;;40382:173;;40617:23;;;;40382:31;;40068:22;;41116:25;40068:22;;40969:335;41384:1;41370:12;41366:20;41324:346;41425:3;41416:7;41413:16;41324:346;;41643:7;41633:8;41630:1;41603:25;41600:1;41597;41592:59;41478:1;41465:15;41324:346;;;-1:-1:-1;41703:13:0;41699:45;;41725:19;;-1:-1:-1;;;41725:19:0;;;;;;;;;;;41699:45;41761:13;:19;-1:-1:-1;34972:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;1067:388::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1251:9;1238:23;1270:31;1295:5;1270:31;:::i;:::-;1320:5;-1:-1:-1;1377:2:1;1362:18;;1349:32;1390:33;1349:32;1390:33;:::i;:::-;1442:7;1432:17;;;1067:388;;;;;:::o;1460:456::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1661:9;1648:23;1680:31;1705:5;1680:31;:::i;:::-;1730:5;-1:-1:-1;1787:2:1;1772:18;;1759:32;1800:33;1759:32;1800:33;:::i;:::-;1460:456;;1852:7;;-1:-1:-1;;;1906:2:1;1891:18;;;;1878:32;;1460:456::o;1921:794::-;2016:6;2024;2032;2040;2093:3;2081:9;2072:7;2068:23;2064:33;2061:53;;;2110:1;2107;2100:12;2061:53;2149:9;2136:23;2168:31;2193:5;2168:31;:::i;:::-;2218:5;-1:-1:-1;2275:2:1;2260:18;;2247:32;2288:33;2247:32;2288:33;:::i;:::-;2340:7;-1:-1:-1;2394:2:1;2379:18;;2366:32;;-1:-1:-1;2449:2:1;2434:18;;2421:32;2476:18;2465:30;;2462:50;;;2508:1;2505;2498:12;2462:50;2531:22;;2584:4;2576:13;;2572:27;-1:-1:-1;2562:55:1;;2613:1;2610;2603:12;2562:55;2636:73;2701:7;2696:2;2683:16;2678:2;2674;2670:11;2636:73;:::i;:::-;2626:83;;;1921:794;;;;;;;:::o;2720:315::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:31;2945:5;2920:31;:::i;:::-;2970:5;-1:-1:-1;2994:35:1;3025:2;3010:18;;2994:35;:::i;:::-;2984:45;;2720:315;;;;;:::o;3040:::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3224:9;3211:23;3243:31;3268:5;3243:31;:::i;:::-;3293:5;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3040:315:1:o;3360:180::-;3416:6;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3508:26;3524:9;3508:26;:::i;3545:245::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:30;3754:5;3730:30;:::i;3795:249::-;3864:6;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3965:9;3959:16;3984:30;4008:5;3984:30;:::i;4049:280::-;4148:6;4201:2;4189:9;4180:7;4176:23;4172:32;4169:52;;;4217:1;4214;4207:12;4169:52;4249:9;4243:16;4268:31;4293:5;4268:31;:::i;4334:450::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4512:9;4499:23;4545:18;4537:6;4534:30;4531:50;;;4577:1;4574;4567:12;4531:50;4600:22;;4653:4;4645:13;;4641:27;-1:-1:-1;4631:55:1;;4682:1;4679;4672:12;4631:55;4705:73;4770:7;4765:2;4752:16;4747:2;4743;4739:11;4705:73;:::i;4789:180::-;4848:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;-1:-1:-1;4940:23:1;;4789:180;-1:-1:-1;4789:180:1:o;4974:257::-;5015:3;5053:5;5047:12;5080:6;5075:3;5068:19;5096:63;5152:6;5145:4;5140:3;5136:14;5129:4;5122:5;5118:16;5096:63;:::i;:::-;5213:2;5192:15;-1:-1:-1;;5188:29:1;5179:39;;;;5220:4;5175:50;;4974:257;-1:-1:-1;;4974:257:1:o;5236:185::-;5278:3;5316:5;5310:12;5331:52;5376:6;5371:3;5364:4;5357:5;5353:16;5331:52;:::i;:::-;5399:16;;;;;5236:185;-1:-1:-1;;5236:185:1:o;5426:1249::-;5650:3;5679:1;5712:6;5706:13;5742:3;5764:1;5792:9;5788:2;5784:18;5774:28;;5852:2;5841:9;5837:18;5874;5864:61;;5918:4;5910:6;5906:17;5896:27;;5864:61;5944:2;5992;5984:6;5981:14;5961:18;5958:38;5955:165;;;-1:-1:-1;;;6019:33:1;;6075:4;6072:1;6065:15;6105:4;6026:3;6093:17;5955:165;6136:18;6163:104;;;;6281:1;6276:320;;;;6129:467;;6163:104;-1:-1:-1;;6196:24:1;;6184:37;;6241:16;;;;-1:-1:-1;6163:104:1;;6276:320;11841:1;11834:14;;;11878:4;11865:18;;6371:1;6385:165;6399:6;6396:1;6393:13;6385:165;;;6477:14;;6464:11;;;6457:35;6520:16;;;;6414:10;;6385:165;;;6389:3;;6579:6;6574:3;6570:16;6563:23;;6129:467;;;;;;;6612:57;6638:30;6664:3;6656:6;6638:30;:::i;:::-;6630:6;6612:57;:::i;:::-;6605:64;5426:1249;-1:-1:-1;;;;;;5426:1249:1:o;7098:488::-;-1:-1:-1;;;;;7367:15:1;;;7349:34;;7419:15;;7414:2;7399:18;;7392:43;7466:2;7451:18;;7444:34;;;7514:3;7509:2;7494:18;;7487:31;;;7292:4;;7535:45;;7560:19;;7552:6;7535:45;:::i;7783:219::-;7932:2;7921:9;7914:21;7895:4;7952:44;7992:2;7981:9;7977:18;7969:6;7952:44;:::i;11894:128::-;11934:3;11965:1;11961:6;11958:1;11955:13;11952:39;;;11971:18;;:::i;:::-;-1:-1:-1;12007:9:1;;11894:128::o;12027:120::-;12067:1;12093;12083:35;;12098:18;;:::i;:::-;-1:-1:-1;12132:9:1;;12027:120::o;12152:168::-;12192:7;12258:1;12254;12250:6;12246:14;12243:1;12240:21;12235:1;12228:9;12221:17;12217:45;12214:71;;;12265:18;;:::i;:::-;-1:-1:-1;12305:9:1;;12152:168::o;12325:125::-;12365:4;12393:1;12390;12387:8;12384:34;;;12398:18;;:::i;:::-;-1:-1:-1;12435:9:1;;12325:125::o;12455:258::-;12527:1;12537:113;12551:6;12548:1;12545:13;12537:113;;;12627:11;;;12621:18;12608:11;;;12601:39;12573:2;12566:10;12537:113;;;12668:6;12665:1;12662:13;12659:48;;;-1:-1:-1;;12703:1:1;12685:16;;12678:27;12455:258::o;12718:380::-;12797:1;12793:12;;;;12840;;;12861:61;;12915:4;12907:6;12903:17;12893:27;;12861:61;12968:2;12960:6;12957:14;12937:18;12934:38;12931:161;;;13014:10;13009:3;13005:20;13002:1;12995:31;13049:4;13046:1;13039:15;13077:4;13074:1;13067:15;12931:161;;12718:380;;;:::o;13103:135::-;13142:3;-1:-1:-1;;13163:17:1;;13160:43;;;13183:18;;:::i;:::-;-1:-1:-1;13230:1:1;13219:13;;13103:135::o;13243:112::-;13275:1;13301;13291:35;;13306:18;;:::i;:::-;-1:-1:-1;13340:9:1;;13243:112::o;13360:127::-;13421:10;13416:3;13412:20;13409:1;13402:31;13452:4;13449:1;13442:15;13476:4;13473:1;13466:15;13492:127;13553:10;13548:3;13544:20;13541:1;13534:31;13584:4;13581:1;13574:15;13608:4;13605:1;13598:15;13624:127;13685:10;13680:3;13676:20;13673:1;13666:31;13716:4;13713:1;13706:15;13740:4;13737:1;13730:15;13756:127;13817:10;13812:3;13808:20;13805:1;13798:31;13848:4;13845:1;13838:15;13872:4;13869:1;13862:15;13888:131;-1:-1:-1;;;;;13963:31:1;;13953:42;;13943:70;;14009:1;14006;13999:12;14024:131;-1:-1:-1;;;;;;14098:32:1;;14088:43;;14078:71;;14145:1;14142;14135:12

Swarm Source

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