ETH Price: $2,861.39 (-10.01%)
Gas: 15 Gwei

Token

TANP: ART IS THE ULTIMATE UTILITY (TANP)
 

Overview

Max Total Supply

1,618 TANP

Holders

877

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 TANP
0xb16a65c8fdab16d0389ac98ec58f1224867b847f
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:
TANPa

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 5000 runs

Other Settings:
constantinople EvmVersion, MIT license

Contract Source Code (Solidity)

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

// File: erc721a/contracts/IERC721A.sol

// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// 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();

    /**
     * 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 payable;

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

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

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

    /**
     * @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.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    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 payable 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 {
        _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].value`.
        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 payable 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 payable 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 payable 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.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            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`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                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 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // 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-solidity/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-solidity/contracts/access/Ownable.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/UpdatableOperatorFilterer.sol

pragma solidity ^0.8.13;

/**
 * @title  UpdatableOperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry. This contract allows the Owner to update the
 *         OperatorFilterRegistry address via updateOperatorFilterRegistryAddress, including to the zero address,
 *         which will bypass registry checks.
 *         Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract UpdatableOperatorFilterer {
    error OperatorNotAllowed(address operator);
    error OnlyOwner();

    IOperatorFilterRegistry public operatorFilterRegistry;

    constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe) {
        IOperatorFilterRegistry registry = IOperatorFilterRegistry(_registry);
        operatorFilterRegistry = registry;
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(registry).code.length > 0) {
            if (subscribe) {
                registry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    registry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    registry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be bypassed. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public virtual {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
    }

    /**
     * @dev assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract
     */
    function owner() public view virtual returns (address);

    function _checkFilterOperator(address operator) internal view virtual {
        IOperatorFilterRegistry registry = operatorFilterRegistry;
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(registry) != address(0) && address(registry).code.length > 0) {
            if (!registry.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry/src/RevokableOperatorFilterer.sol

pragma solidity ^0.8.13;


/**
 * @title  RevokableOperatorFilterer
 * @notice This contract is meant to allow contracts to permanently skip OperatorFilterRegistry checks if desired. The
 *         Registry itself has an "unregister" function, but if the contract is ownable, the owner can re-register at
 *         any point. As implemented, this abstract contract allows the contract owner to permanently skip the
 *         OperatorFilterRegistry checks by calling revokeOperatorFilterRegistry. Once done, the registry
 *         address cannot be further updated.
 *         Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */
abstract contract RevokableOperatorFilterer is UpdatableOperatorFilterer {
    error RegistryHasBeenRevoked();
    error InitialRegistryAddressCannotBeZeroAddress();

    bool public isOperatorFilterRegistryRevoked;

    constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe)
        UpdatableOperatorFilterer(_registry, subscriptionOrRegistrantToCopy, subscribe)
    {
        // don't allow creating a contract with a permanently revoked registry
        if (_registry == address(0)) {
            revert InitialRegistryAddressCannotBeZeroAddress();
        }
    }

    function _checkFilterOperator(address operator) internal view virtual override {
        if (address(operatorFilterRegistry) != address(0)) {
            super._checkFilterOperator(operator);
        }
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be permanently bypassed, and the address cannot be updated again. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public override {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
    }

    /**
     * @notice Revoke the OperatorFilterRegistry address, permanently bypassing checks. OnlyOwner.
     */
    function revokeOperatorFilterRegistry() public {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        // set to zero address to bypass checks
        operatorFilterRegistry = IOperatorFilterRegistry(address(0));
        isOperatorFilterRegistryRevoked = true;
    }
}

// File: operator-filter-registry/src/RevokableDefaultOperatorFilterer.sol

pragma solidity ^0.8.13;

/**
 * @title  RevokableDefaultOperatorFilterer
 * @notice Inherits from RevokableOperatorFilterer and automatically subscribes to the default OpenSea subscription.
 *         Note that OpenSea will disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */
abstract contract RevokableDefaultOperatorFilterer is RevokableOperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() RevokableOperatorFilterer(0x000000000000AAeB6D7670E522A718067333cd4E, DEFAULT_SUBSCRIPTION, true) {}
}

// File: contracts/Mintable.sol

pragma solidity ^0.8.17;

contract Mintable {
    mapping(address => bool) public minters;

    modifier onlyMinter() {
        require(isMinter(msg.sender), "NOT_MINTER!");
        _;
    }

    function isMinter(address account) public view virtual returns (bool) {
        return minters[account];
    }

    function _addMinter(address account) internal  {
        require(!isMinter(account), "Mintable: ALREADY_MINTER");
        minters[account] = true;
    }

    function _removeMinter(address account) internal {
        require(isMinter(account), "Mintable: NOT_MINTER");
        minters[account] = false;
    }
}

// File: contracts/TANPa.sol

pragma solidity ^0.8.17;




contract TANPa is ERC721A("TANP: ART IS THE ULTIMATE UTILITY", "TANP"), RevokableDefaultOperatorFilterer, Ownable, Mintable{
    string public baseURI;

    constructor(string memory baseURI_) {
        setBaseURI(baseURI_);
    }

    function mint(address to, uint256 quantity) external onlyMinter {
        // `_mint`'s second argument now takes in a `quantity`, not a `tokenId`.
        _mint(to, quantity);
    }

    function burn(uint256 tokenId) public {
        _burn(tokenId, true);
    }

    function addMinter(address account) public onlyOwner {
        _addMinter(account);
    }

    function removeMinter(address account) public onlyOwner {
        _removeMinter(account);
    }

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

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

    //For OpenSea Royalty Fee Policy
    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function owner() public view virtual override (Ownable, UpdatableOperatorFilterer) returns (address) {
        return Ownable.owner();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InitialRegistryAddressCannotBeZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"RegistryHasBeenRevoked","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperatorFilterRegistryRevoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilterRegistry","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"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":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeOperatorFilterRegistry","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":"payable","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":"payable","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":"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRegistry","type":"address"}],"name":"updateOperatorFilterRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200265d3803806200265d83398101604081905262000034916200040a565b6daaeb6d7670e522a718067333cd4e733cc6cdda760b79bafa08df41ecfa224f810dceb660018282826040518060600160405280602181526020016200263c6021913960408051808201909152600481527f54414e500000000000000000000000000000000000000000000000000000000060208201526002620000b9838262000587565b506003620000c8828262000587565b50600080555050600880546001600160a01b0319166001600160a01b03851690811790915583903b156200025357811562000180576040517f7d3e3dbe0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038481166024830152821690637d3e3dbe906044015b600060405180830381600087803b1580156200016157600080fd5b505af115801562000176573d6000803e3d6000fd5b5050505062000253565b6001600160a01b03831615620001de576040517fa0af29030000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03848116602483015282169063a0af29039060440162000146565b6040517f4420e4860000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03821690634420e48690602401600060405180830381600087803b1580156200023957600080fd5b505af11580156200024e573d6000803e3d6000fd5b505050505b5050506001600160a01b038416905062000299576040517fc49d17ad00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050620002b6620002b0620002c860201b60201c565b620002cc565b620002c1816200031e565b5062000653565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3362000329620003b0565b6001600160a01b0316146200039e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600b620003ac828262000587565b5050565b6000620003c7620003cc60201b62000eab1760201c565b905090565b6009546001600160a01b031690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060208083850312156200041e57600080fd5b82516001600160401b03808211156200043657600080fd5b818501915085601f8301126200044b57600080fd5b815181811115620004605762000460620003db565b604051601f8201601f19908116603f011681019083821181831017156200048b576200048b620003db565b816040528281528886848701011115620004a457600080fd5b600093505b82841015620004c85784840186015181850187015292850192620004a9565b600086848301015280965050505050505092915050565b600181811c90821680620004f457607f821691505b6020821081036200052e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f8211156200058257600081815260208120601f850160051c810160208610156200055d5750805b601f850160051c820191505b818110156200057e5782815560010162000569565b5050505b505050565b81516001600160401b03811115620005a357620005a3620003db565b620005bb81620005b48454620004df565b8462000534565b602080601f831160018114620005f35760008415620005da5750858301515b600019600386901b1c1916600185901b1785556200057e565b600085815260208120601f198616915b82811015620006245788860151825594840194600190910190840162000603565b5085821015620006435787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611fd980620006636000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063b0ccc31e11610095578063e985e9c511610064578063e985e9c5146104c9578063ecba222a14610512578063f2fde38b14610544578063f46eccc41461056457600080fd5b8063b0ccc31e14610456578063b88d4fde14610476578063b8d1e53214610489578063c87b56dd146104a957600080fd5b806395d89b41116100d157806395d89b41146103c8578063983b2d56146103dd578063a22cb465146103fd578063aa271e1a1461041d57600080fd5b806370a082311461037e578063715018a61461039e5780638da5cb5b146103b357600080fd5b806340c10f191161016457806355f804b31161013e57806355f804b3146103145780635ef9432a146103345780636352211e146103495780636c0360eb1461036957600080fd5b806340c10f19146102c157806342842e0e146102e157806342966c68146102f457600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461026b57806323b872dd1461028e5780633092afd5146102a157600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611a8d565b610594565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610679565b6040516101f39190611afa565b34801561022a57600080fd5b5061023e610239366004611b0d565b61070b565b6040516001600160a01b0390911681526020016101f3565b610269610264366004611b42565b610768565b005b34801561027757600080fd5b50600154600054035b6040519081526020016101f3565b61026961029c366004611b6c565b610781565b3480156102ad57600080fd5b506102696102bc366004611ba8565b6107ac565b3480156102cd57600080fd5b506102696102dc366004611b42565b61081c565b6102696102ef366004611b6c565b610889565b34801561030057600080fd5b5061026961030f366004611b0d565b6108ae565b34801561032057600080fd5b5061026961032f366004611c68565b6108b9565b34801561034057600080fd5b50610269610924565b34801561035557600080fd5b5061023e610364366004611b0d565b610a0c565b34801561037557600080fd5b50610211610a17565b34801561038a57600080fd5b50610280610399366004611ba8565b610aa5565b3480156103aa57600080fd5b50610269610b0d565b3480156103bf57600080fd5b5061023e610b78565b3480156103d457600080fd5b50610211610b91565b3480156103e957600080fd5b506102696103f8366004611ba8565b610ba0565b34801561040957600080fd5b50610269610418366004611cbf565b610c08565b34801561042957600080fd5b506101e7610438366004611ba8565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561046257600080fd5b5060085461023e906001600160a01b031681565b610269610484366004611cf6565b610c1c565b34801561049557600080fd5b506102696104a4366004611ba8565b610c49565b3480156104b557600080fd5b506102116104c4366004611b0d565b610d2a565b3480156104d557600080fd5b506101e76104e4366004611d72565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561051e57600080fd5b506008546101e79074010000000000000000000000000000000000000000900460ff1681565b34801561055057600080fd5b5061026961055f366004611ba8565b610dc7565b34801561057057600080fd5b506101e761057f366004611ba8565b600a6020526000908152604090205460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061062757507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061067357507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606002805461068890611da5565b80601f01602080910402602001604051908101604052809291908181526020018280546106b490611da5565b80156107015780601f106106d657610100808354040283529160200191610701565b820191906000526020600020905b8154815290600101906020018083116106e457829003601f168201915b5050505050905090565b600061071682610eba565b61074c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b8161077281610efa565b61077c8383610f14565b505050565b826001600160a01b038116331461079b5761079b33610efa565b6107a6848484610fe5565b50505050565b336107b5610b78565b6001600160a01b0316146108105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61081981611206565b50565b336000908152600a602052604090205460ff1661087b5760405162461bcd60e51b815260206004820152600b60248201527f4e4f545f4d494e544552210000000000000000000000000000000000000000006044820152606401610807565b610885828261128f565b5050565b826001600160a01b03811633146108a3576108a333610efa565b6107a68484846113c0565b6108198160016113db565b336108c2610b78565b6001600160a01b0316146109185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b600b6108858282611e3e565b61092c610b78565b6001600160a01b0316336001600160a01b031614610976576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60085474010000000000000000000000000000000000000000900460ff16156109cb576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880547fffffffffffffffffffffff0000000000000000000000000000000000000000001674010000000000000000000000000000000000000000179055565b600061067382611570565b600b8054610a2490611da5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090611da5565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b505050505081565b60006001600160a01b038216610ae7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b33610b16610b78565b6001600160a01b031614610b6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b610b766000611609565b565b6000610b8c6009546001600160a01b031690565b905090565b60606003805461068890611da5565b33610ba9610b78565b6001600160a01b031614610bff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b61081981611673565b81610c1281610efa565b61077c8383611700565b836001600160a01b0381163314610c3657610c3633610efa565b610c428585858561176c565b5050505050565b610c51610b78565b6001600160a01b0316336001600160a01b031614610c9b576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60085474010000000000000000000000000000000000000000900460ff1615610cf0576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6060610d3582610eba565b610d6b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610d756117c9565b90508051600003610d955760405180602001604052806000815250610dc0565b80610d9f846117d8565b604051602001610db0929190611efe565b6040516020818303038152906040525b9392505050565b33610dd0610b78565b6001600160a01b031614610e265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b6001600160a01b038116610ea25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610807565b61081981611609565b6009546001600160a01b031690565b60008054821080156106735750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6008546001600160a01b031615610819576108198161181c565b6000610f1f82610a0c565b9050336001600160a01b03821614610f7157610f3b81336104e4565b610f71576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ff082611570565b9050836001600160a01b0316816001600160a01b03161461103d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080546110698187335b6001600160a01b039081169116811491141790565b6110ad5761107786336104e4565b6110ad576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0385166110ed576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80156110f857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260408120919091557c0200000000000000000000000000000000000000000000000000000000841690036111bc576001840160008181526004602052604081205490036111ba5760005481146111ba5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6001600160a01b0381166000908152600a602052604090205460ff1661126e5760405162461bcd60e51b815260206004820152601460248201527f4d696e7461626c653a204e4f545f4d494e5445520000000000000000000000006044820152606401610807565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b60008054908290036112cd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461137c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611344565b50816000036113b7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b61077c83838360405180602001604052806000815250610c1c565b60006113e683611570565b90508060008061140486600090815260066020526040902080549091565b91509150841561145d57611419818433611054565b61145d5761142783336104e4565b61145d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b801561146857600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b177c0300000000000000000000000000000000000000000000000000000000176000878152600460205260408120919091557c020000000000000000000000000000000000000000000000000000000085169003611528576001860160008181526004602052604081205490036115265760005481146115265760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b6000816000548110156115d757600081815260046020526040812054907c0100000000000000000000000000000000000000000000000000000000821690036115d5575b80600003610dc05750600019016000818152600460205260409020546115b4565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600980546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0381166000908152600a602052604090205460ff16156116dc5760405162461bcd60e51b815260206004820152601860248201527f4d696e7461626c653a20414c52454144595f4d494e54455200000000000000006044820152606401610807565b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611777848484610781565b6001600160a01b0383163b156107a65761179384848484611910565b6107a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6060600b805461068890611da5565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806117f25750819003601f19909101908152919050565b6008546001600160a01b0316801580159061184157506000816001600160a01b03163b115b15610885576040517fc61711340000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03838116602483015282169063c617113490604401602060405180830381865afa1580156118ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118cf9190611f2d565b610885576040517fede71dcc0000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610807565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a029061195e903390899088908890600401611f4a565b6020604051808303816000875af1925050508015611999575060408051601f3d908101601f1916820190925261199691810190611f86565b60015b611a10573d8080156119c7576040519150601f19603f3d011682016040523d82523d6000602084013e6119cc565b606091505b508051600003611a08576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461081957600080fd5b600060208284031215611a9f57600080fd5b8135610dc081611a5f565b60005b83811015611ac5578181015183820152602001611aad565b50506000910152565b60008151808452611ae6816020860160208601611aaa565b601f01601f19169290920160200192915050565b602081526000610dc06020830184611ace565b600060208284031215611b1f57600080fd5b5035919050565b80356001600160a01b0381168114611b3d57600080fd5b919050565b60008060408385031215611b5557600080fd5b611b5e83611b26565b946020939093013593505050565b600080600060608486031215611b8157600080fd5b611b8a84611b26565b9250611b9860208501611b26565b9150604084013590509250925092565b600060208284031215611bba57600080fd5b610dc082611b26565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115611c0d57611c0d611bc3565b604051601f8501601f19908116603f01168101908282118183101715611c3557611c35611bc3565b81604052809350858152868686011115611c4e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c7a57600080fd5b813567ffffffffffffffff811115611c9157600080fd5b8201601f81018413611ca257600080fd5b611a5784823560208401611bf2565b801515811461081957600080fd5b60008060408385031215611cd257600080fd5b611cdb83611b26565b91506020830135611ceb81611cb1565b809150509250929050565b60008060008060808587031215611d0c57600080fd5b611d1585611b26565b9350611d2360208601611b26565b925060408501359150606085013567ffffffffffffffff811115611d4657600080fd5b8501601f81018713611d5757600080fd5b611d6687823560208401611bf2565b91505092959194509250565b60008060408385031215611d8557600080fd5b611d8e83611b26565b9150611d9c60208401611b26565b90509250929050565b600181811c90821680611db957607f821691505b602082108103611df2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f82111561077c57600081815260208120601f850160051c81016020861015611e1f5750805b601f850160051c820191505b818110156111fe57828155600101611e2b565b815167ffffffffffffffff811115611e5857611e58611bc3565b611e6c81611e668454611da5565b84611df8565b602080601f831160018114611ea15760008415611e895750858301515b600019600386901b1c1916600185901b1785556111fe565b600085815260208120601f198616915b82811015611ed057888601518255948401946001909101908401611eb1565b5085821015611eee5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351611f10818460208801611aaa565b835190830190611f24818360208801611aaa565b01949350505050565b600060208284031215611f3f57600080fd5b8151610dc081611cb1565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611f7c6080830184611ace565b9695505050505050565b600060208284031215611f9857600080fd5b8151610dc081611a5f56fea2646970667358221220e599a497b7e33bcf98f58c00b181baf3856537206f69bdcf5a91f5ad7c788ea364736f6c6343000811003354414e503a204152542049532054484520554c54494d415445205554494c4954590000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f6d657461646174612e70616c612e696f2f74616e702f0000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f7578063b0ccc31e11610095578063e985e9c511610064578063e985e9c5146104c9578063ecba222a14610512578063f2fde38b14610544578063f46eccc41461056457600080fd5b8063b0ccc31e14610456578063b88d4fde14610476578063b8d1e53214610489578063c87b56dd146104a957600080fd5b806395d89b41116100d157806395d89b41146103c8578063983b2d56146103dd578063a22cb465146103fd578063aa271e1a1461041d57600080fd5b806370a082311461037e578063715018a61461039e5780638da5cb5b146103b357600080fd5b806340c10f191161016457806355f804b31161013e57806355f804b3146103145780635ef9432a146103345780636352211e146103495780636c0360eb1461036957600080fd5b806340c10f19146102c157806342842e0e146102e157806342966c68146102f457600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461026b57806323b872dd1461028e5780633092afd5146102a157600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611a8d565b610594565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610679565b6040516101f39190611afa565b34801561022a57600080fd5b5061023e610239366004611b0d565b61070b565b6040516001600160a01b0390911681526020016101f3565b610269610264366004611b42565b610768565b005b34801561027757600080fd5b50600154600054035b6040519081526020016101f3565b61026961029c366004611b6c565b610781565b3480156102ad57600080fd5b506102696102bc366004611ba8565b6107ac565b3480156102cd57600080fd5b506102696102dc366004611b42565b61081c565b6102696102ef366004611b6c565b610889565b34801561030057600080fd5b5061026961030f366004611b0d565b6108ae565b34801561032057600080fd5b5061026961032f366004611c68565b6108b9565b34801561034057600080fd5b50610269610924565b34801561035557600080fd5b5061023e610364366004611b0d565b610a0c565b34801561037557600080fd5b50610211610a17565b34801561038a57600080fd5b50610280610399366004611ba8565b610aa5565b3480156103aa57600080fd5b50610269610b0d565b3480156103bf57600080fd5b5061023e610b78565b3480156103d457600080fd5b50610211610b91565b3480156103e957600080fd5b506102696103f8366004611ba8565b610ba0565b34801561040957600080fd5b50610269610418366004611cbf565b610c08565b34801561042957600080fd5b506101e7610438366004611ba8565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561046257600080fd5b5060085461023e906001600160a01b031681565b610269610484366004611cf6565b610c1c565b34801561049557600080fd5b506102696104a4366004611ba8565b610c49565b3480156104b557600080fd5b506102116104c4366004611b0d565b610d2a565b3480156104d557600080fd5b506101e76104e4366004611d72565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561051e57600080fd5b506008546101e79074010000000000000000000000000000000000000000900460ff1681565b34801561055057600080fd5b5061026961055f366004611ba8565b610dc7565b34801561057057600080fd5b506101e761057f366004611ba8565b600a6020526000908152604090205460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061062757507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061067357507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606002805461068890611da5565b80601f01602080910402602001604051908101604052809291908181526020018280546106b490611da5565b80156107015780601f106106d657610100808354040283529160200191610701565b820191906000526020600020905b8154815290600101906020018083116106e457829003601f168201915b5050505050905090565b600061071682610eba565b61074c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b8161077281610efa565b61077c8383610f14565b505050565b826001600160a01b038116331461079b5761079b33610efa565b6107a6848484610fe5565b50505050565b336107b5610b78565b6001600160a01b0316146108105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61081981611206565b50565b336000908152600a602052604090205460ff1661087b5760405162461bcd60e51b815260206004820152600b60248201527f4e4f545f4d494e544552210000000000000000000000000000000000000000006044820152606401610807565b610885828261128f565b5050565b826001600160a01b03811633146108a3576108a333610efa565b6107a68484846113c0565b6108198160016113db565b336108c2610b78565b6001600160a01b0316146109185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b600b6108858282611e3e565b61092c610b78565b6001600160a01b0316336001600160a01b031614610976576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60085474010000000000000000000000000000000000000000900460ff16156109cb576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880547fffffffffffffffffffffff0000000000000000000000000000000000000000001674010000000000000000000000000000000000000000179055565b600061067382611570565b600b8054610a2490611da5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090611da5565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b505050505081565b60006001600160a01b038216610ae7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b33610b16610b78565b6001600160a01b031614610b6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b610b766000611609565b565b6000610b8c6009546001600160a01b031690565b905090565b60606003805461068890611da5565b33610ba9610b78565b6001600160a01b031614610bff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b61081981611673565b81610c1281610efa565b61077c8383611700565b836001600160a01b0381163314610c3657610c3633610efa565b610c428585858561176c565b5050505050565b610c51610b78565b6001600160a01b0316336001600160a01b031614610c9b576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60085474010000000000000000000000000000000000000000900460ff1615610cf0576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6060610d3582610eba565b610d6b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610d756117c9565b90508051600003610d955760405180602001604052806000815250610dc0565b80610d9f846117d8565b604051602001610db0929190611efe565b6040516020818303038152906040525b9392505050565b33610dd0610b78565b6001600160a01b031614610e265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b6001600160a01b038116610ea25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610807565b61081981611609565b6009546001600160a01b031690565b60008054821080156106735750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6008546001600160a01b031615610819576108198161181c565b6000610f1f82610a0c565b9050336001600160a01b03821614610f7157610f3b81336104e4565b610f71576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ff082611570565b9050836001600160a01b0316816001600160a01b03161461103d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080546110698187335b6001600160a01b039081169116811491141790565b6110ad5761107786336104e4565b6110ad576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0385166110ed576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80156110f857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260408120919091557c0200000000000000000000000000000000000000000000000000000000841690036111bc576001840160008181526004602052604081205490036111ba5760005481146111ba5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6001600160a01b0381166000908152600a602052604090205460ff1661126e5760405162461bcd60e51b815260206004820152601460248201527f4d696e7461626c653a204e4f545f4d494e5445520000000000000000000000006044820152606401610807565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b60008054908290036112cd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461137c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611344565b50816000036113b7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b61077c83838360405180602001604052806000815250610c1c565b60006113e683611570565b90508060008061140486600090815260066020526040902080549091565b91509150841561145d57611419818433611054565b61145d5761142783336104e4565b61145d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b801561146857600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b177c0300000000000000000000000000000000000000000000000000000000176000878152600460205260408120919091557c020000000000000000000000000000000000000000000000000000000085169003611528576001860160008181526004602052604081205490036115265760005481146115265760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b6000816000548110156115d757600081815260046020526040812054907c0100000000000000000000000000000000000000000000000000000000821690036115d5575b80600003610dc05750600019016000818152600460205260409020546115b4565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600980546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0381166000908152600a602052604090205460ff16156116dc5760405162461bcd60e51b815260206004820152601860248201527f4d696e7461626c653a20414c52454144595f4d494e54455200000000000000006044820152606401610807565b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611777848484610781565b6001600160a01b0383163b156107a65761179384848484611910565b6107a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6060600b805461068890611da5565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806117f25750819003601f19909101908152919050565b6008546001600160a01b0316801580159061184157506000816001600160a01b03163b115b15610885576040517fc61711340000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03838116602483015282169063c617113490604401602060405180830381865afa1580156118ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118cf9190611f2d565b610885576040517fede71dcc0000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610807565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a029061195e903390899088908890600401611f4a565b6020604051808303816000875af1925050508015611999575060408051601f3d908101601f1916820190925261199691810190611f86565b60015b611a10573d8080156119c7576040519150601f19603f3d011682016040523d82523d6000602084013e6119cc565b606091505b508051600003611a08576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461081957600080fd5b600060208284031215611a9f57600080fd5b8135610dc081611a5f565b60005b83811015611ac5578181015183820152602001611aad565b50506000910152565b60008151808452611ae6816020860160208601611aaa565b601f01601f19169290920160200192915050565b602081526000610dc06020830184611ace565b600060208284031215611b1f57600080fd5b5035919050565b80356001600160a01b0381168114611b3d57600080fd5b919050565b60008060408385031215611b5557600080fd5b611b5e83611b26565b946020939093013593505050565b600080600060608486031215611b8157600080fd5b611b8a84611b26565b9250611b9860208501611b26565b9150604084013590509250925092565b600060208284031215611bba57600080fd5b610dc082611b26565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115611c0d57611c0d611bc3565b604051601f8501601f19908116603f01168101908282118183101715611c3557611c35611bc3565b81604052809350858152868686011115611c4e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c7a57600080fd5b813567ffffffffffffffff811115611c9157600080fd5b8201601f81018413611ca257600080fd5b611a5784823560208401611bf2565b801515811461081957600080fd5b60008060408385031215611cd257600080fd5b611cdb83611b26565b91506020830135611ceb81611cb1565b809150509250929050565b60008060008060808587031215611d0c57600080fd5b611d1585611b26565b9350611d2360208601611b26565b925060408501359150606085013567ffffffffffffffff811115611d4657600080fd5b8501601f81018713611d5757600080fd5b611d6687823560208401611bf2565b91505092959194509250565b60008060408385031215611d8557600080fd5b611d8e83611b26565b9150611d9c60208401611b26565b90509250929050565b600181811c90821680611db957607f821691505b602082108103611df2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f82111561077c57600081815260208120601f850160051c81016020861015611e1f5750805b601f850160051c820191505b818110156111fe57828155600101611e2b565b815167ffffffffffffffff811115611e5857611e58611bc3565b611e6c81611e668454611da5565b84611df8565b602080601f831160018114611ea15760008415611e895750858301515b600019600386901b1c1916600185901b1785556111fe565b600085815260208120601f198616915b82811015611ed057888601518255948401946001909101908401611eb1565b5085821015611eee5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351611f10818460208801611aaa565b835190830190611f24818360208801611aaa565b01949350505050565b600060208284031215611f3f57600080fd5b8151610dc081611cb1565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611f7c6080830184611ace565b9695505050505050565b600060208284031215611f9857600080fd5b8151610dc081611a5f56fea2646970667358221220e599a497b7e33bcf98f58c00b181baf3856537206f69bdcf5a91f5ad7c788ea364736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f6d657461646174612e70616c612e696f2f74616e702f0000

-----Decoded View---------------
Arg [0] : baseURI_ (string): https://metadata.pala.io/tanp/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [2] : 68747470733a2f2f6d657461646174612e70616c612e696f2f74616e702f0000


Deployed Bytecode Sourcemap

65445:2097:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18431:639;;;;;;;;;;-1:-1:-1;18431:639:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;18431:639:0;;;;;;;;19333:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25824:218::-;;;;;;;;;;-1:-1:-1;25824:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1802:55:1;;;1784:74;;1772:2;1757:18;25824:218:0;1638:226:1;66605:165:0;;;;;;:::i;:::-;;:::i;:::-;;15084:323;;;;;;;;;;-1:-1:-1;15358:12:0;;15145:7;15342:13;:28;15084:323;;;2475:25:1;;;2463:2;2448:18;15084:323:0;2329:177:1;66778:171:0;;;;;;:::i;:::-;;:::i;66064:97::-;;;;;;;;;;-1:-1:-1;66064:97:0;;;;;:::i;:::-;;:::i;65688:184::-;;;;;;;;;;-1:-1:-1;65688:184:0;;;;;:::i;:::-;;:::i;66957:179::-;;;;;;:::i;:::-;;:::i;65880:77::-;;;;;;;;;;-1:-1:-1;65880:77:0;;;;;:::i;:::-;;:::i;66169:98::-;;;;;;;;;;-1:-1:-1;66169:98:0;;;;;:::i;:::-;;:::i;63438:484::-;;;;;;;;;;;;;:::i;20726:152::-;;;;;;;;;;-1:-1:-1;20726:152:0;;;;;:::i;:::-;;:::i;65575:21::-;;;;;;;;;;;;;:::i;16268:233::-;;;;;;;;;;-1:-1:-1;16268:233:0;;;;;:::i;:::-;;:::i;54078:103::-;;;;;;;;;;;;;:::i;67397:142::-;;;;;;;;;;;;;:::i;19509:104::-;;;;;;;;;;;;;:::i;65965:91::-;;;;;;;;;;-1:-1:-1;65965:91:0;;;;;:::i;:::-;;:::i;66421:176::-;;;;;;;;;;-1:-1:-1;66421:176:0;;;;;:::i;:::-;;:::i;64936:112::-;;;;;;;;;;-1:-1:-1;64936:112:0;;;;;:::i;:::-;-1:-1:-1;;;;;65024:16:0;65000:4;65024:16;;;:7;:16;;;;;;;;;64936:112;58259:53;;;;;;;;;;-1:-1:-1;58259:53:0;;;;-1:-1:-1;;;;;58259:53:0;;;67144:245;;;;;;:::i;:::-;;:::i;62890:422::-;;;;;;;;;;-1:-1:-1;62890:422:0;;;;;:::i;:::-;;:::i;19719:318::-;;;;;;;;;;-1:-1:-1;19719:318:0;;;;;:::i;:::-;;:::i;26773:164::-;;;;;;;;;;-1:-1:-1;26773:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26894:25:0;;;26870:4;26894:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26773:164;61979:43;;;;;;;;;;-1:-1:-1;61979:43:0;;;;;;;;;;;54336:201;;;;;;;;;;-1:-1:-1;54336:201:0;;;;;:::i;:::-;;:::i;64783:39::-;;;;;;;;;;-1:-1:-1;64783:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;18431:639;18516:4;18840:25;;;;;;:102;;-1:-1:-1;18917:25:0;;;;;18840:102;:179;;;-1:-1:-1;18994:25:0;;;;;18840:179;18820:199;18431:639;-1:-1:-1;;18431:639:0:o;19333:100::-;19387:13;19420:5;19413:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19333:100;:::o;25824:218::-;25900:7;25925:16;25933:7;25925;:16::i;:::-;25920:64;;25950:34;;;;;;;;;;;;;;25920:64;-1:-1:-1;26004:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26004:30:0;;25824:218::o;66605:165::-;66709:8;59769:30;59790:8;59769:20;:30::i;:::-;66730:32:::1;66744:8;66754:7;66730:13;:32::i;:::-;66605:165:::0;;;:::o;66778:171::-;66887:4;-1:-1:-1;;;;;59589:18:0;;59597:10;59589:18;59585:83;;59624:32;59645:10;59624:20;:32::i;:::-;66904:37:::1;66923:4;66929:2;66933:7;66904:18;:37::i;:::-;66778:171:::0;;;;:::o;66064:97::-;52227:10;53647:7;:5;:7::i;:::-;-1:-1:-1;;;;;53647:23:0;;53639:68;;;;-1:-1:-1;;;53639:68:0;;6663:2:1;53639:68:0;;;6645:21:1;;;6682:18;;;6675:30;6741:34;6721:18;;;6714:62;6793:18;;53639:68:0;;;;;;;;;66131:22:::1;66145:7;66131:13;:22::i;:::-;66064:97:::0;:::o;65688:184::-;64881:10;65000:4;65024:16;;;:7;:16;;;;;;;;64864:44;;;;-1:-1:-1;;;64864:44:0;;7024:2:1;64864:44:0;;;7006:21:1;7063:2;7043:18;;;7036:30;7102:13;7082:18;;;7075:41;7133:18;;64864:44:0;6822:335:1;64864:44:0;65845:19:::1;65851:2;65855:8;65845:5;:19::i;:::-;65688:184:::0;;:::o;66957:179::-;67070:4;-1:-1:-1;;;;;59589:18:0;;59597:10;59589:18;59585:83;;59624:32;59645:10;59624:20;:32::i;:::-;67087:41:::1;67110:4;67116:2;67120:7;67087:22;:41::i;65880:77::-:0;65929:20;65935:7;65944:4;65929:5;:20::i;66169:98::-;52227:10;53647:7;:5;:7::i;:::-;-1:-1:-1;;;;;53647:23:0;;53639:68;;;;-1:-1:-1;;;53639:68:0;;6663:2:1;53639:68:0;;;6645:21:1;;;6682:18;;;6675:30;6741:34;6721:18;;;6714:62;6793:18;;53639:68:0;6461:356:1;53639:68:0;66241:7:::1;:18;66251:8:::0;66241:7;:18:::1;:::i;63438:484::-:0;63514:7;:5;:7::i;:::-;-1:-1:-1;;;;;63500:21:0;:10;-1:-1:-1;;;;;63500:21:0;;63496:72;;63545:11;;;;;;;;;;;;;;63496:72;63653:31;;;;;;;63649:95;;;63708:24;;;;;;;;;;;;;;63649:95;63805:22;:60;;63876:38;;;;;;63438:484::o;20726:152::-;20798:7;20841:27;20860:7;20841:18;:27::i;65575:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16268:233::-;16340:7;-1:-1:-1;;;;;16364:19:0;;16360:60;;16392:28;;;;;;;;;;;;;;16360:60;-1:-1:-1;;;;;;16438:25:0;;;;;:18;:25;;;;;;10427:13;16438:55;;16268:233::o;54078:103::-;52227:10;53647:7;:5;:7::i;:::-;-1:-1:-1;;;;;53647:23:0;;53639:68;;;;-1:-1:-1;;;53639:68:0;;6663:2:1;53639:68:0;;;6645:21:1;;;6682:18;;;6675:30;6741:34;6721:18;;;6714:62;6793:18;;53639:68:0;6461:356:1;53639:68:0;54143:30:::1;54170:1;54143:18;:30::i;:::-;54078:103::o:0;67397:142::-;67489:7;67516:15;53500:6;;-1:-1:-1;;;;;53500:6:0;;53427:87;67516:15;67509:22;;67397:142;:::o;19509:104::-;19565:13;19598:7;19591:14;;;;;:::i;65965:91::-;52227:10;53647:7;:5;:7::i;:::-;-1:-1:-1;;;;;53647:23:0;;53639:68;;;;-1:-1:-1;;;53639:68:0;;6663:2:1;53639:68:0;;;6645:21:1;;;6682:18;;;6675:30;6741:34;6721:18;;;6714:62;6793:18;;53639:68:0;6461:356:1;53639:68:0;66029:19:::1;66040:7;66029:10;:19::i;66421:176::-:0;66525:8;59769:30;59790:8;59769:20;:30::i;:::-;66546:43:::1;66570:8;66580;66546:23;:43::i;67144:245::-:0;67312:4;-1:-1:-1;;;;;59589:18:0;;59597:10;59589:18;59585:83;;59624:32;59645:10;59624:20;:32::i;:::-;67334:47:::1;67357:4;67363:2;67367:7;67376:4;67334:22;:47::i;:::-;67144:245:::0;;;;;:::o;62890:422::-;63001:7;:5;:7::i;:::-;-1:-1:-1;;;;;62987:21:0;:10;-1:-1:-1;;;;;62987:21:0;;62983:72;;63032:11;;;;;;;;;;;;;;62983:72;63140:31;;;;;;;63136:95;;;63195:24;;;;;;;;;;;;;;63136:95;63243:22;:61;;;;-1:-1:-1;;;;;63243:61:0;;;;;;;;;;62890:422::o;19719:318::-;19792:13;19823:16;19831:7;19823;:16::i;:::-;19818:59;;19848:29;;;;;;;;;;;;;;19818:59;19890:21;19914:10;:8;:10::i;:::-;19890:34;;19948:7;19942:21;19967:1;19942:26;:87;;;;;;;;;;;;;;;;;19995:7;20004:18;20014:7;20004:9;:18::i;:::-;19978:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19942:87;19935:94;19719:318;-1:-1:-1;;;19719:318:0:o;54336:201::-;52227:10;53647:7;:5;:7::i;:::-;-1:-1:-1;;;;;53647:23:0;;53639:68;;;;-1:-1:-1;;;53639:68:0;;6663:2:1;53639:68:0;;;6645:21:1;;;6682:18;;;6675:30;6741:34;6721:18;;;6714:62;6793:18;;53639:68:0;6461:356:1;53639:68:0;-1:-1:-1;;;;;54425:22:0;::::1;54417:73;;;::::0;-1:-1:-1;;;54417:73:0;;10248:2:1;54417:73:0::1;::::0;::::1;10230:21:1::0;10287:2;10267:18;;;10260:30;10326:34;10306:18;;;10299:62;10397:8;10377:18;;;10370:36;10423:19;;54417:73:0::1;10046:402:1::0;54417:73:0::1;54501:28;54520:8;54501:18;:28::i;53427:87::-:0;53500:6;;-1:-1:-1;;;;;53500:6:0;;53427:87::o;27195:282::-;27260:4;27350:13;;27340:7;:23;27297:153;;;;-1:-1:-1;;27401:26:0;;;;:17;:26;;;;;;11203:8;27401:44;:49;;27195:282::o;62424:211::-;62526:22;;-1:-1:-1;;;;;62526:22:0;62518:45;62514:114;;62580:36;62607:8;62580:26;:36::i;25257:408::-;25346:13;25362:16;25370:7;25362;:16::i;:::-;25346:32;-1:-1:-1;52227:10:0;-1:-1:-1;;;;;25395:28:0;;;25391:175;;25443:44;25460:5;52227:10;26773:164;:::i;25443:44::-;25438:128;;25515:35;;;;;;;;;;;;;;25438:128;25578:24;;;;:15;:24;;;;;;:35;;;;-1:-1:-1;;;;;25578:35:0;;;;;;;;;25629:28;;25578:24;;25629:28;;;;;;;25335:330;25257:408;;:::o;29463:2825::-;29605:27;29635;29654:7;29635:18;:27::i;:::-;29605:57;;29720:4;-1:-1:-1;;;;;29679:45:0;29695:19;-1:-1:-1;;;;;29679:45:0;;29675:86;;29733:28;;;;;;;;;;;;;;29675:86;29775:27;28571:24;;;:15;:24;;;;;28799:26;;29966:68;28799:26;30008:4;52227:10;30014:19;-1:-1:-1;;;;;28045:32:0;;;27889:28;;28174:20;;28196:30;;28171:56;;27586:659;29966:68;29961:180;;30054:43;30071:4;52227:10;26773:164;:::i;30054:43::-;30049:92;;30106:35;;;;;;;;;;;;;;30049:92;-1:-1:-1;;;;;30158:16:0;;30154:52;;30183:23;;;;;;;;;;;;;;30154:52;30355:15;30352:160;;;30495:1;30474:19;30467:30;30352:160;-1:-1:-1;;;;;30892:24:0;;;;;;;:18;:24;;;;;;30890:26;;-1:-1:-1;;30890:26:0;;;30961:22;;;;;;;;;30959:24;;-1:-1:-1;30959:24:0;;;24115:11;24090:23;24086:41;24073:63;11483:8;24073:63;31254:26;;;;:17;:26;;;;;:175;;;;11483:8;31549:47;;:52;;31545:627;;31654:1;31644:11;;31622:19;31777:30;;;:17;:30;;;;;;:35;;31773:384;;31915:13;;31900:11;:28;31896:242;;32062:30;;;;:17;:30;;;;;:52;;;31896:242;31603:569;31545:627;32219:7;32215:2;-1:-1:-1;;;;;32200:27:0;32209:4;-1:-1:-1;;;;;32200:27:0;;;;;;;;;;;32238:42;29594:2694;;;29463:2825;;;:::o;65219:153::-;-1:-1:-1;;;;;65024:16:0;;65000:4;65024:16;;;:7;:16;;;;;;;;65279:50;;;;-1:-1:-1;;;65279:50:0;;10655:2:1;65279:50:0;;;10637:21:1;10694:2;10674:18;;;10667:30;10733:22;10713:18;;;10706:50;10773:18;;65279:50:0;10453:344:1;65279:50:0;-1:-1:-1;;;;;65340:16:0;65359:5;65340:16;;;:7;:16;;;;;:24;;-1:-1:-1;;65340:24:0;;;65219:153::o;36844:2966::-;36917:20;36940:13;;;36968;;;36964:44;;36990:18;;;;;;;;;;;;;;36964:44;-1:-1:-1;;;;;37496:22:0;;;;;;:18;:22;;;;10565:2;37496:22;;;:71;;37534:32;37522:45;;37496:71;;;37810:31;;;:17;:31;;;;;-1:-1:-1;24546:15:0;;24520:24;24516:46;24115:11;24090:23;24086:41;24083:52;24073:63;;37810:173;;38045:23;;;;37810:31;;37496:22;;38810:25;37496:22;;38663:335;39324:1;39310:12;39306:20;39264:346;39365:3;39356:7;39353:16;39264:346;;39583:7;39573:8;39570:1;39543:25;39540:1;39537;39532:59;39418:1;39405:15;39264:346;;;39268:77;39643:8;39655:1;39643:13;39639:45;;39665:19;;;;;;;;;;;;;;39639:45;39701:13;:19;-1:-1:-1;66605:165:0;;;:::o;32384:193::-;32530:39;32547:4;32553:2;32557:7;32530:39;;;;;;;;;;;;:16;:39::i;44032:3081::-;44112:27;44142;44161:7;44142:18;:27::i;:::-;44112:57;-1:-1:-1;44112:57:0;44182:12;;44304:35;44331:7;28460:27;28571:24;;;:15;:24;;;;;28799:26;;28571:24;;28358:485;44304:35;44247:92;;;;44356:13;44352:316;;;44477:68;44502:15;44519:4;52227:10;44525:19;52147:98;44477:68;44472:184;;44569:43;44586:4;52227:10;26773:164;:::i;44569:43::-;44564:92;;44621:35;;;;;;;;;;;;;;44564:92;44824:15;44821:160;;;44964:1;44943:19;44936:30;44821:160;-1:-1:-1;;;;;45583:24:0;;;;;;:18;:24;;;;;:60;;45611:32;45583:60;;;24115:11;24090:23;24086:41;24073:63;45971:43;24073:63;45881:26;;;;:17;:26;;;;;:205;;;;11483:8;46206:47;;:52;;46202:627;;46311:1;46301:11;;46279:19;46434:30;;;:17;:30;;;;;;:35;;46430:384;;46572:13;;46557:11;:28;46553:242;;46719:30;;;;:17;:30;;;;;:52;;;46553:242;46260:569;46202:627;46857:35;;46884:7;;46880:1;;-1:-1:-1;;;;;46857:35:0;;;;;46880:1;;46857:35;-1:-1:-1;;47080:12:0;:14;;;;;;-1:-1:-1;;;;44032:3081:0:o;21881:1275::-;21948:7;21983;22085:13;;22078:4;:20;22074:1015;;;22123:14;22140:23;;;:17;:23;;;;;;;11203:8;22229:24;;:29;;22225:845;;22894:113;22901:6;22911:1;22901:11;22894:113;;-1:-1:-1;;;22972:6:0;22954:25;;;;:17;:25;;;;;;22894:113;;22225:845;22100:989;22074:1015;23117:31;;;;;;;;;;;;;;54697:191;54790:6;;;-1:-1:-1;;;;;54807:17:0;;;;;;;;;;;54840:40;;54790:6;;;54807:17;54790:6;;54840:40;;54771:16;;54840:40;54760:128;54697:191;:::o;65056:155::-;-1:-1:-1;;;;;65024:16:0;;65000:4;65024:16;;;:7;:16;;;;;;;;65122:18;65114:55;;;;-1:-1:-1;;;65114:55:0;;11004:2:1;65114:55:0;;;10986:21:1;11043:2;11023:18;;;11016:30;11082:26;11062:18;;;11055:54;11126:18;;65114:55:0;10802:348:1;65114:55:0;-1:-1:-1;;;;;65180:16:0;;;;;:7;:16;;;;;:23;;-1:-1:-1;;65180:23:0;65199:4;65180:23;;;65056:155::o;26382:234::-;52227:10;26477:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26477:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26477:60:0;;;;;;;;;;26553:55;;586:41:1;;;26477:49:0;;52227:10;26553:55;;559:18:1;26553:55:0;;;;;;;26382:234;;:::o;33175:407::-;33350:31;33363:4;33369:2;33373:7;33350:12;:31::i;:::-;-1:-1:-1;;;;;33396:14:0;;;:19;33392:183;;33435:56;33466:4;33472:2;33476:7;33485:5;33435:30;:56::i;:::-;33430:145;;33519:40;;;;;;;;;;;;;;66275:100;66327:13;66360:7;66353:14;;;;;:::i;49710:1745::-;49775:17;50209:4;50202;50196:11;50192:22;50301:1;50295:4;50288:15;50376:4;50373:1;50369:12;50362:19;;;50458:1;50453:3;50446:14;50562:3;50801:5;50783:428;50849:1;50844:3;50840:11;50833:18;;51020:2;51014:4;51010:13;51006:2;51002:22;50997:3;50989:36;51114:2;51104:13;;51171:25;50783:428;51171:25;-1:-1:-1;51241:13:0;;;-1:-1:-1;;51356:14:0;;;51418:19;;;51356:14;49710:1745;-1:-1:-1;49710:1745:0:o;60468:490::-;60584:22;;-1:-1:-1;;;;;60584:22:0;60727:31;;;;;:68;;;60794:1;60770:8;-1:-1:-1;;;;;60762:29:0;;:33;60727:68;60723:228;;;60817:51;;;;;60852:4;60817:51;;;11390:34:1;-1:-1:-1;;;;;11460:15:1;;;11440:18;;;11433:43;60817:26:0;;;;;11302:18:1;;60817:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60812:128;;60896:28;;;;;-1:-1:-1;;;;;1802:55:1;;60896:28:0;;;1784:74:1;1757:18;;60896:28:0;1638:226:1;35666:716:0;35850:88;;;;;35829:4;;-1:-1:-1;;;;;35850:45:0;;;;;:88;;52227:10;;35917:4;;35923:7;;35932:5;;35850:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35850:88:0;;;;;;;;-1:-1:-1;;35850:88:0;;;;;;;;;;;;:::i;:::-;;;35846:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36133:6;:13;36150:1;36133:18;36129:235;;36179:40;;;;;;;;;;;;;;36129:235;36322:6;36316:13;36307:6;36303:2;36299:15;36292:38;35846:529;36009:64;;36019:54;36009:64;;-1:-1:-1;35846:529:0;35666:716;;;;;;:::o;14:177:1:-;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:250::-;723:1;733:113;747:6;744:1;741:13;733:113;;;823:11;;;817:18;804:11;;;797:39;769:2;762:10;733:113;;;-1:-1:-1;;880:1:1;862:16;;855:27;638:250::o;893:330::-;935:3;973:5;967:12;1000:6;995:3;988:19;1016:76;1085:6;1078:4;1073:3;1069:14;1062:4;1055:5;1051:16;1016:76;:::i;:::-;1137:2;1125:15;-1:-1:-1;;1121:88:1;1112:98;;;;1212:4;1108:109;;893:330;-1:-1:-1;;893:330:1:o;1228:220::-;1377:2;1366:9;1359:21;1340:4;1397:45;1438:2;1427:9;1423:18;1415:6;1397:45;:::i;1453:180::-;1512:6;1565:2;1553:9;1544:7;1540:23;1536:32;1533:52;;;1581:1;1578;1571:12;1533:52;-1:-1:-1;1604:23:1;;1453:180;-1:-1:-1;1453:180:1:o;1869:196::-;1937:20;;-1:-1:-1;;;;;1986:54:1;;1976:65;;1966:93;;2055:1;2052;2045:12;1966:93;1869:196;;;:::o;2070:254::-;2138:6;2146;2199:2;2187:9;2178:7;2174:23;2170:32;2167:52;;;2215:1;2212;2205:12;2167:52;2238:29;2257:9;2238:29;:::i;:::-;2228:39;2314:2;2299:18;;;;2286:32;;-1:-1:-1;;;2070:254:1:o;2511:328::-;2588:6;2596;2604;2657:2;2645:9;2636:7;2632:23;2628:32;2625:52;;;2673:1;2670;2663:12;2625:52;2696:29;2715:9;2696:29;:::i;:::-;2686:39;;2744:38;2778:2;2767:9;2763:18;2744:38;:::i;:::-;2734:48;;2829:2;2818:9;2814:18;2801:32;2791:42;;2511:328;;;;;:::o;2844:186::-;2903:6;2956:2;2944:9;2935:7;2931:23;2927:32;2924:52;;;2972:1;2969;2962:12;2924:52;2995:29;3014:9;2995:29;:::i;3035:184::-;3087:77;3084:1;3077:88;3184:4;3181:1;3174:15;3208:4;3205:1;3198:15;3224:691;3289:5;3319:18;3360:2;3352:6;3349:14;3346:40;;;3366:18;;:::i;:::-;3500:2;3494:9;3566:2;3554:15;;-1:-1:-1;;3550:24:1;;;3576:2;3546:33;3542:42;3530:55;;;3600:18;;;3620:22;;;3597:46;3594:72;;;3646:18;;:::i;:::-;3686:10;3682:2;3675:22;3715:6;3706:15;;3745:6;3737;3730:22;3785:3;3776:6;3771:3;3767:16;3764:25;3761:45;;;3802:1;3799;3792:12;3761:45;3852:6;3847:3;3840:4;3832:6;3828:17;3815:44;3907:1;3900:4;3891:6;3883;3879:19;3875:30;3868:41;;;;3224:691;;;;;:::o;3920:451::-;3989:6;4042:2;4030:9;4021:7;4017:23;4013:32;4010:52;;;4058:1;4055;4048:12;4010:52;4098:9;4085:23;4131:18;4123:6;4120:30;4117:50;;;4163:1;4160;4153:12;4117:50;4186:22;;4239:4;4231:13;;4227:27;-1:-1:-1;4217:55:1;;4268:1;4265;4258:12;4217:55;4291:74;4357:7;4352:2;4339:16;4334:2;4330;4326:11;4291:74;:::i;4376:118::-;4462:5;4455:13;4448:21;4441:5;4438:32;4428:60;;4484:1;4481;4474:12;4499:315;4564:6;4572;4625:2;4613:9;4604:7;4600:23;4596:32;4593:52;;;4641:1;4638;4631:12;4593:52;4664:29;4683:9;4664:29;:::i;:::-;4654:39;;4743:2;4732:9;4728:18;4715:32;4756:28;4778:5;4756:28;:::i;:::-;4803:5;4793:15;;;4499:315;;;;;:::o;5082:667::-;5177:6;5185;5193;5201;5254:3;5242:9;5233:7;5229:23;5225:33;5222:53;;;5271:1;5268;5261:12;5222:53;5294:29;5313:9;5294:29;:::i;:::-;5284:39;;5342:38;5376:2;5365:9;5361:18;5342:38;:::i;:::-;5332:48;;5427:2;5416:9;5412:18;5399:32;5389:42;;5482:2;5471:9;5467:18;5454:32;5509:18;5501:6;5498:30;5495:50;;;5541:1;5538;5531:12;5495:50;5564:22;;5617:4;5609:13;;5605:27;-1:-1:-1;5595:55:1;;5646:1;5643;5636:12;5595:55;5669:74;5735:7;5730:2;5717:16;5712:2;5708;5704:11;5669:74;:::i;:::-;5659:84;;;5082:667;;;;;;;:::o;5754:260::-;5822:6;5830;5883:2;5871:9;5862:7;5858:23;5854:32;5851:52;;;5899:1;5896;5889:12;5851:52;5922:29;5941:9;5922:29;:::i;:::-;5912:39;;5970:38;6004:2;5993:9;5989:18;5970:38;:::i;:::-;5960:48;;5754:260;;;;;:::o;6019:437::-;6098:1;6094:12;;;;6141;;;6162:61;;6216:4;6208:6;6204:17;6194:27;;6162:61;6269:2;6261:6;6258:14;6238:18;6235:38;6232:218;;6306:77;6303:1;6296:88;6407:4;6404:1;6397:15;6435:4;6432:1;6425:15;6232:218;;6019:437;;;:::o;7288:545::-;7390:2;7385:3;7382:11;7379:448;;;7426:1;7451:5;7447:2;7440:17;7496:4;7492:2;7482:19;7566:2;7554:10;7550:19;7547:1;7543:27;7537:4;7533:38;7602:4;7590:10;7587:20;7584:47;;;-1:-1:-1;7625:4:1;7584:47;7680:2;7675:3;7671:12;7668:1;7664:20;7658:4;7654:31;7644:41;;7735:82;7753:2;7746:5;7743:13;7735:82;;;7798:17;;;7779:1;7768:13;7735:82;;8069:1471;8195:3;8189:10;8222:18;8214:6;8211:30;8208:56;;;8244:18;;:::i;:::-;8273:97;8363:6;8323:38;8355:4;8349:11;8323:38;:::i;:::-;8317:4;8273:97;:::i;:::-;8425:4;;8489:2;8478:14;;8506:1;8501:782;;;;9327:1;9344:6;9341:89;;;-1:-1:-1;9396:19:1;;;9390:26;9341:89;-1:-1:-1;;7966:1:1;7962:11;;;7958:84;7954:89;7944:100;8050:1;8046:11;;;7941:117;9443:81;;8471:1063;;8501:782;7235:1;7228:14;;;7272:4;7259:18;;-1:-1:-1;;8537:79:1;;;8714:236;8728:7;8725:1;8722:14;8714:236;;;8817:19;;;8811:26;8796:42;;8909:27;;;;8877:1;8865:14;;;;8744:19;;8714:236;;;8718:3;8978:6;8969:7;8966:19;8963:261;;;9039:19;;;9033:26;-1:-1:-1;;9122:1:1;9118:14;;;9134:3;9114:24;9110:97;9106:102;9091:118;9076:134;;8963:261;-1:-1:-1;;;;;9270:1:1;9254:14;;;9250:22;9237:36;;-1:-1:-1;8069:1471:1:o;9545:496::-;9724:3;9762:6;9756:13;9778:66;9837:6;9832:3;9825:4;9817:6;9813:17;9778:66;:::i;:::-;9907:13;;9866:16;;;;9929:70;9907:13;9866:16;9976:4;9964:17;;9929:70;:::i;:::-;10015:20;;9545:496;-1:-1:-1;;;;9545:496:1:o;11487:245::-;11554:6;11607:2;11595:9;11586:7;11582:23;11578:32;11575:52;;;11623:1;11620;11613:12;11575:52;11655:9;11649:16;11674:28;11696:5;11674:28;:::i;11737:512::-;11931:4;-1:-1:-1;;;;;12041:2:1;12033:6;12029:15;12018:9;12011:34;12093:2;12085:6;12081:15;12076:2;12065:9;12061:18;12054:43;;12133:6;12128:2;12117:9;12113:18;12106:34;12176:3;12171:2;12160:9;12156:18;12149:31;12197:46;12238:3;12227:9;12223:19;12215:6;12197:46;:::i;:::-;12189:54;11737:512;-1:-1:-1;;;;;;11737:512:1:o;12254:249::-;12323:6;12376:2;12364:9;12355:7;12351:23;12347:32;12344:52;;;12392:1;12389;12382:12;12344:52;12424:9;12418:16;12443:30;12467:5;12443:30;:::i

Swarm Source

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