ETH Price: $2,268.83 (+2.34%)

Token

Maxwell the cat (MAXWELL)
 

Overview

Max Total Supply

1,111 MAXWELL

Holders

114

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 MAXWELL
0xa98d8f5010447dd410be425135a523fa949e629e
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:
MaxwellTheCat

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-16
*/

// __  __    ___   __  __ __      __ ___     _       _               _____   _  _     ___              ___     ___    _____            _  _      ___   _____  
//|  \/  |  /   \  \ \/ / \ \    / /| __|   | |     | |       o O O |_   _| | || |   | __|     o O O  / __|   /   \  |_   _|    o O O | \| |    | __| |_   _| 
//| |\/| |  | - |   >  <   \ \/\/ / | _|    | |__   | |__    o        | |   | __ |   | _|     o      | (__    | - |    | |     o      | .` |    | _|    | |   
//|_|__|_|  |_|_|  /_/\_\   \_/\_/  |___|   |____|  |____|  TS__[O]  _|_|_  |_||_|   |___|   TS__[O]  \___|   |_|_|   _|_|_   TS__[O] |_|\_|   _|_|_   _|_|_  
//_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| {======|_|"""""|_|"""""|_|"""""| {======|_|"""""|_|"""""|_|"""""| {======|_|"""""|_| """ |_|"""""| 
//"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'./o--000'"`-0-0-'"`-0-0-'"`-0-0-'./o--000'"`-0-0-'"`-0-0-'"`-0-0-'./o--000'"`-0-0-'"`-0-0-'"`-0-0-' 

// 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: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Arrays.sol)

pragma solidity ^0.8.0;



/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    using StorageSlot for bytes32;

    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (unsafeAccess(array, mid).value > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && unsafeAccess(array, low - 1).value == element) {
            return low - 1;
        } else {
            return low;
        }
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) {
        bytes32 slot;
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getAddressSlot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) {
        bytes32 slot;
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getBytes32Slot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) {
        bytes32 slot;
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getUint256Slot();
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: contracts/maxwell_the_cat.sol









pragma solidity >=0.8.13 <0.9.0;

contract MaxwellTheCat is ERC721A, Ownable, ReentrancyGuard { 

  using Strings for uint256;

  string private originURI; 
  string public uriSuffix = ".json"; 
  string public hiddenMetadataUri; 
  uint256 public howMuchPerMaxwell = 0.0013 ether; 
  uint256 public SupplyLimit = 1111;  
  uint256 public maxMintPerTx = 10; 
  uint256 public maxInYourWallet = 10;
  bool public openShop = false;  
  bool public revealMaxwell = true; 

  constructor(
    string memory _uri,
    string memory _hiddenMetadataUri
  ) 
    ERC721A("Maxwell the cat", "MAXWELL")  { 
    setURI(_uri);
    setHiddenMetadataUri(_hiddenMetadataUri);
  }
 
function Mint(uint256 _mintAmount) public payable nonReentrant{

    require(openShop, "The Sale is paused!");
    require(_mintAmount > 0 && _mintAmount <= maxMintPerTx, "Invalid mint amount!");
    require(totalSupply() + _mintAmount <= SupplyLimit, "Max supply exceeded!");
    require(balanceOf(msg.sender) + _mintAmount <= maxInYourWallet, "Max mint per wallet exceeded!");
    require(msg.value >= _mintAmount * howMuchPerMaxwell,"Wrong amount input!");
   
     _safeMint(_msgSender(), _mintAmount);
  }  

  function AirdropThoseCats(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= SupplyLimit, "Max supply exceeded!");
    _safeMint(_receiver, _mintAmount);
  }

  function TeamMint(uint256 _mintAmount) public onlyOwner {
    require(_mintAmount > 0 && _mintAmount <= 40, "Invalid mint amount!");
    require(totalSupply() + _mintAmount <= SupplyLimit, "Max supply exceeded!");
    _safeMint(msg.sender, _mintAmount);
  }

  function setRevealedMaxwell(bool _state) public onlyOwner {
    revealMaxwell = _state;
  }

  function setURI(string memory _uri) public onlyOwner {
    originURI = _uri;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function openShopStatus(bool _sale) public onlyOwner {
    openShop = _sale;
  }

  function setmaxMintPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintPerTx = _maxMintAmountPerTx;
  }

  function setmaxInYourWallet(uint256 _maxLimitPerWallet) public onlyOwner {
    maxInYourWallet = _maxLimitPerWallet;
  }

  function sethowMuchPerMaxwell(uint256 _cost) public onlyOwner {
    howMuchPerMaxwell = _cost;
  }   

  function setSupplyLimit(uint256 _supplyLimit) public onlyOwner {
    SupplyLimit = _supplyLimit;
  }

  function withdraw() public onlyOwner nonReentrant{
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

function tokensOfMaxwellOwner(address owner) external view returns (uint256[] memory) {
    unchecked {
        uint256[] memory a = new uint256[](balanceOf(owner)); 
        uint256 end = _nextTokenId();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;
        for (uint256 i; i < end; i++) {
            TokenOwnership memory ownership = _ownershipAt(i);
            if (ownership.burned) {
                continue;
            }
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                a[tokenIdsIdx++] = i;
            }
        }
        return a;    
    }
}

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

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    if (revealMaxwell == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

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

    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"AirdropThoseCats","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"SupplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"TeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"howMuchPerMaxwell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxInYourWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openShop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"openShopStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealMaxwell","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealedMaxwell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"sethowMuchPerMaxwell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setmaxInYourWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setmaxMintPerTx","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfMaxwellOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600b90620000269082620002ab565b5066049e57d6354000600d55610457600e55600a600f8190556010556011805461ffff19166101001790553480156200005e57600080fd5b506040516200242638038062002426833981016040819052620000819162000426565b6040518060400160405280600f81526020016e13585e1dd95b1b081d1a194818d85d608a1b8152506040518060400160405280600781526020016613505615d1531360ca1b8152508160029081620000da9190620002ab565b506003620000e98282620002ab565b5050600160005550620000fc336200011f565b60016009556200010c8262000171565b62000117816200018d565b505062000490565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200017b620001a5565b600a620001898282620002ab565b5050565b62000197620001a5565b600c620001898282620002ab565b6008546001600160a01b03163314620002045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200023157607f821691505b6020821081036200025257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002a657600081815260208120601f850160051c81016020861015620002815750805b601f850160051c820191505b81811015620002a2578281556001016200028d565b5050505b505050565b81516001600160401b03811115620002c757620002c762000206565b620002df81620002d884546200021c565b8462000258565b602080601f831160018114620003175760008415620002fe5750858301515b600019600386901b1c1916600185901b178555620002a2565b600085815260208120601f198616915b82811015620003485788860151825594840194600190910190840162000327565b5085821015620003675787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200038957600080fd5b81516001600160401b0380821115620003a657620003a662000206565b604051601f8301601f19908116603f01168101908282118183101715620003d157620003d162000206565b81604052838152602092508683858801011115620003ee57600080fd5b600091505b83821015620004125785820183015181830184015290820190620003f3565b600093810190920192909252949350505050565b600080604083850312156200043a57600080fd5b82516001600160401b03808211156200045257600080fd5b620004608683870162000377565b935060208501519150808211156200047757600080fd5b50620004868582860162000377565b9150509250929050565b611f8680620004a06000396000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063a78c729b116100ab578063c87b56dd1161006f578063c87b56dd1461062a578063de7fcb1d1461064a578063e985e9c514610660578063f13a29b114610680578063f2fde38b1461069657600080fd5b8063a78c729b1461059e578063ab0b999e146105be578063aca5f518146105eb578063b6e4663414610601578063b88d4fde1461061757600080fd5b80638eff2170116100f25780638eff21701461051a57806395d89b411461053a578063a22cb4651461054f578063a45ba8e71461056f578063a6f5a22b1461058457600080fd5b806370a0823114610487578063715018a6146104a757806379f34a10146104bc5780637e0c7fc5146104dc5780638da5cb5b146104fc57600080fd5b80631bd57e58116101bc57806342842e0e1161018057806342842e0e146103ff5780634fdd43cb146104125780635503a0e8146104325780636352211e146104475780636b5995af1461046757600080fd5b80631bd57e58146103785780631e07bd231461039857806323b872dd146103b7578063361fab25146103ca5780633ccfd60b146103ea57600080fd5b8063081812fc11610203578063081812fc146102c1578063095ea7b3146102f9578063132e17541461030c57806316ba10e01461032c57806318160ddd1461034c57600080fd5b806301ffc9a71461023557806302fe53051461026a57806306fdde031461028c57806307883703146102ae575b600080fd5b34801561024157600080fd5b5061025561025036600461191c565b6106b6565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a6102853660046119c5565b610708565b005b34801561029857600080fd5b506102a1610720565b6040516102619190611a5e565b61028a6102bc366004611a71565b6107b2565b3480156102cd57600080fd5b506102e16102dc366004611a71565b610967565b6040516001600160a01b039091168152602001610261565b61028a610307366004611aa6565b6109ab565b34801561031857600080fd5b5061028a610327366004611ae0565b610a4b565b34801561033857600080fd5b5061028a6103473660046119c5565b610a6d565b34801561035857600080fd5b5061036a600154600054036000190190565b604051908152602001610261565b34801561038457600080fd5b5061028a610393366004611a71565b610a81565b3480156103a457600080fd5b5060115461025590610100900460ff1681565b61028a6103c5366004611afb565b610a8e565b3480156103d657600080fd5b5061028a6103e5366004611a71565b610c27565b3480156103f657600080fd5b5061028a610c34565b61028a61040d366004611afb565b610cc2565b34801561041e57600080fd5b5061028a61042d3660046119c5565b610ce2565b34801561043e57600080fd5b506102a1610cf6565b34801561045357600080fd5b506102e1610462366004611a71565b610d84565b34801561047357600080fd5b5061028a610482366004611ae0565b610d8f565b34801561049357600080fd5b5061036a6104a2366004611b37565b610daa565b3480156104b357600080fd5b5061028a610df9565b3480156104c857600080fd5b5061028a6104d7366004611a71565b610e0b565b3480156104e857600080fd5b5061028a6104f7366004611a71565b610e18565b34801561050857600080fd5b506008546001600160a01b03166102e1565b34801561052657600080fd5b5061028a610535366004611a71565b610ebb565b34801561054657600080fd5b506102a1610ec8565b34801561055b57600080fd5b5061028a61056a366004611b52565b610ed7565b34801561057b57600080fd5b506102a1610f43565b34801561059057600080fd5b506011546102559060ff1681565b3480156105aa57600080fd5b5061028a6105b9366004611b85565b610f50565b3480156105ca57600080fd5b506105de6105d9366004611b37565b610f9f565b6040516102619190611ba8565b3480156105f757600080fd5b5061036a600e5481565b34801561060d57600080fd5b5061036a60105481565b61028a610625366004611bec565b611091565b34801561063657600080fd5b506102a1610645366004611a71565b6110db565b34801561065657600080fd5b5061036a600f5481565b34801561066c57600080fd5b5061025561067b366004611c68565b61124f565b34801561068c57600080fd5b5061036a600d5481565b3480156106a257600080fd5b5061028a6106b1366004611b37565b61127d565b60006301ffc9a760e01b6001600160e01b0319831614806106e757506380ac58cd60e01b6001600160e01b03198316145b806107025750635b5e139f60e01b6001600160e01b03198316145b92915050565b6107106112f3565b600a61071c8282611d12565b5050565b60606002805461072f90611c92565b80601f016020809104026020016040519081016040528092919081815260200182805461075b90611c92565b80156107a85780601f1061077d576101008083540402835291602001916107a8565b820191906000526020600020905b81548152906001019060200180831161078b57829003601f168201915b5050505050905090565b6107ba61134d565b60115460ff166108075760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b60448201526064015b60405180910390fd5b6000811180156108195750600f548111155b61085c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107fe565b600e5481610871600154600054036000190190565b61087b9190611de8565b11156108995760405162461bcd60e51b81526004016107fe90611dfb565b601054816108a633610daa565b6108b09190611de8565b11156108fe5760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c65742065786365656465642100000060448201526064016107fe565b600d5461090b9082611e29565b3410156109505760405162461bcd60e51b815260206004820152601360248201527257726f6e6720616d6f756e7420696e7075742160681b60448201526064016107fe565b61095a33826113a6565b6109646001600955565b50565b6000610972826113c0565b61098f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109b682610d84565b9050336001600160a01b038216146109ef576109d2813361124f565b6109ef576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a536112f3565b601180549115156101000261ff0019909216919091179055565b610a756112f3565b600b61071c8282611d12565b610a896112f3565b601055565b6000610a99826113f5565b9050836001600160a01b0316816001600160a01b031614610acc5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b1957610afc863361124f565b610b1957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b4057604051633a954ecd60e21b815260040160405180910390fd5b8015610b4b57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610bdd57600184016000818152600460205260408120549003610bdb576000548114610bdb5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c2f6112f3565b600e55565b610c3c6112f3565b610c4461134d565b6000610c586008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ca2576040519150601f19603f3d011682016040523d82523d6000602084013e610ca7565b606091505b5050905080610cb557600080fd5b50610cc06001600955565b565b610cdd83838360405180602001604052806000815250611091565b505050565b610cea6112f3565b600c61071c8282611d12565b600b8054610d0390611c92565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2f90611c92565b8015610d7c5780601f10610d5157610100808354040283529160200191610d7c565b820191906000526020600020905b815481529060010190602001808311610d5f57829003601f168201915b505050505081565b6000610702826113f5565b610d976112f3565b6011805460ff1916911515919091179055565b60006001600160a01b038216610dd3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610e016112f3565b610cc06000611464565b610e136112f3565b600f55565b610e206112f3565b600081118015610e31575060288111155b610e745760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107fe565b600e5481610e89600154600054036000190190565b610e939190611de8565b1115610eb15760405162461bcd60e51b81526004016107fe90611dfb565b61096433826113a6565b610ec36112f3565b600d55565b60606003805461072f90611c92565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610d0390611c92565b610f586112f3565b600e5482610f6d600154600054036000190190565b610f779190611de8565b1115610f955760405162461bcd60e51b81526004016107fe90611dfb565b61071c81836113a6565b60606000610fac83610daa565b67ffffffffffffffff811115610fc457610fc4611939565b604051908082528060200260200182016040528015610fed578160200160208202803683370190505b5090506000610ffb60005490565b905060008060005b83811015611086576000611016826114b6565b9050806040015115611028575061107e565b80516001600160a01b03161561103d57805192505b876001600160a01b0316836001600160a01b03160361107c578186858060010196508151811061106f5761106f611e40565b6020026020010181815250505b505b600101611003565b509295945050505050565b61109c848484610a8e565b6001600160a01b0383163b156110d5576110b884848484611535565b6110d5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110e6826113c0565b61114a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107fe565b601154610100900460ff1615156000036111f057600c805461116b90611c92565b80601f016020809104026020016040519081016040528092919081815260200182805461119790611c92565b80156111e45780601f106111b9576101008083540402835291602001916111e4565b820191906000526020600020905b8154815290600101906020018083116111c757829003601f168201915b50505050509050919050565b60006111fa611621565b9050600081511161121a5760405180602001604052806000815250611248565b8061122484611630565b600b60405160200161123893929190611e56565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6112856112f3565b6001600160a01b0381166112ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fe565b61096481611464565b6008546001600160a01b03163314610cc05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107fe565b60026009540361139f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107fe565b6002600955565b61071c8282604051806020016040528060008152506116c3565b6000816001111580156113d4575060005482105b8015610702575050600090815260046020526040902054600160e01b161590565b6000818060011161144b5760005481101561144b5760008181526004602052604081205490600160e01b82169003611449575b80600003611248575060001901600081815260046020526040902054611428565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461070290604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061156a903390899088908890600401611ef6565b6020604051808303816000875af19250505080156115a5575060408051601f3d908101601f191682019092526115a291810190611f33565b60015b611603573d8080156115d3576040519150601f19603f3d011682016040523d82523d6000602084013e6115d8565b606091505b5080516000036115fb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461072f90611c92565b6060600061163d83611730565b600101905060008167ffffffffffffffff81111561165d5761165d611939565b6040519080825280601f01601f191660200182016040528015611687576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461169157509392505050565b6116cd8383611808565b6001600160a01b0383163b15610cdd576000548281035b6116f76000868380600101945086611535565b611714576040516368d2bf6b60e11b815260040160405180910390fd5b8181106116e457816000541461172957600080fd5b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061176f5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061179b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106117b957662386f26fc10000830492506010015b6305f5e10083106117d1576305f5e100830492506008015b61271083106117e557612710830492506004015b606483106117f7576064830492506002015b600a83106107025760010192915050565b600080549082900361182d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146118dc57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016118a4565b50816000036118fd57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461096457600080fd5b60006020828403121561192e57600080fd5b813561124881611906565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561196a5761196a611939565b604051601f8501601f19908116603f0116810190828211818310171561199257611992611939565b816040528093508581528686860111156119ab57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119d757600080fd5b813567ffffffffffffffff8111156119ee57600080fd5b8201601f810184136119ff57600080fd5b6116198482356020840161194f565b60005b83811015611a29578181015183820152602001611a11565b50506000910152565b60008151808452611a4a816020860160208601611a0e565b601f01601f19169290920160200192915050565b6020815260006112486020830184611a32565b600060208284031215611a8357600080fd5b5035919050565b80356001600160a01b0381168114611aa157600080fd5b919050565b60008060408385031215611ab957600080fd5b611ac283611a8a565b946020939093013593505050565b80358015158114611aa157600080fd5b600060208284031215611af257600080fd5b61124882611ad0565b600080600060608486031215611b1057600080fd5b611b1984611a8a565b9250611b2760208501611a8a565b9150604084013590509250925092565b600060208284031215611b4957600080fd5b61124882611a8a565b60008060408385031215611b6557600080fd5b611b6e83611a8a565b9150611b7c60208401611ad0565b90509250929050565b60008060408385031215611b9857600080fd5b82359150611b7c60208401611a8a565b6020808252825182820181905260009190848201906040850190845b81811015611be057835183529284019291840191600101611bc4565b50909695505050505050565b60008060008060808587031215611c0257600080fd5b611c0b85611a8a565b9350611c1960208601611a8a565b925060408501359150606085013567ffffffffffffffff811115611c3c57600080fd5b8501601f81018713611c4d57600080fd5b611c5c8782356020840161194f565b91505092959194509250565b60008060408385031215611c7b57600080fd5b611c8483611a8a565b9150611b7c60208401611a8a565b600181811c90821680611ca657607f821691505b602082108103611cc657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610cdd57600081815260208120601f850160051c81016020861015611cf35750805b601f850160051c820191505b81811015610c1f57828155600101611cff565b815167ffffffffffffffff811115611d2c57611d2c611939565b611d4081611d3a8454611c92565b84611ccc565b602080601f831160018114611d755760008415611d5d5750858301515b600019600386901b1c1916600185901b178555610c1f565b600085815260208120601f198616915b82811015611da457888601518255948401946001909101908401611d85565b5085821015611dc25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561070257610702611dd2565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b808202811582820484141761070257610702611dd2565b634e487b7160e01b600052603260045260246000fd5b600084516020611e698285838a01611a0e565b855191840191611e7c8184848a01611a0e565b8554920191600090611e8d81611c92565b60018281168015611ea55760018114611eba57611ee6565b60ff1984168752821515830287019450611ee6565b896000528560002060005b84811015611ede57815489820152908301908701611ec5565b505082870194505b50929a9950505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f2990830184611a32565b9695505050505050565b600060208284031215611f4557600080fd5b81516112488161190656fea26469706673582212206beec9e16b6002b0c17ecc7f5b61288bee81d7bd13011c8ae8f8b56cfbcfdab564736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656968367a6c746a6a6966697433633561713764626c6168726b696e663778353235637672746f35787a33376a376b326770777a62712f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c806370a082311161012e578063a78c729b116100ab578063c87b56dd1161006f578063c87b56dd1461062a578063de7fcb1d1461064a578063e985e9c514610660578063f13a29b114610680578063f2fde38b1461069657600080fd5b8063a78c729b1461059e578063ab0b999e146105be578063aca5f518146105eb578063b6e4663414610601578063b88d4fde1461061757600080fd5b80638eff2170116100f25780638eff21701461051a57806395d89b411461053a578063a22cb4651461054f578063a45ba8e71461056f578063a6f5a22b1461058457600080fd5b806370a0823114610487578063715018a6146104a757806379f34a10146104bc5780637e0c7fc5146104dc5780638da5cb5b146104fc57600080fd5b80631bd57e58116101bc57806342842e0e1161018057806342842e0e146103ff5780634fdd43cb146104125780635503a0e8146104325780636352211e146104475780636b5995af1461046757600080fd5b80631bd57e58146103785780631e07bd231461039857806323b872dd146103b7578063361fab25146103ca5780633ccfd60b146103ea57600080fd5b8063081812fc11610203578063081812fc146102c1578063095ea7b3146102f9578063132e17541461030c57806316ba10e01461032c57806318160ddd1461034c57600080fd5b806301ffc9a71461023557806302fe53051461026a57806306fdde031461028c57806307883703146102ae575b600080fd5b34801561024157600080fd5b5061025561025036600461191c565b6106b6565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a6102853660046119c5565b610708565b005b34801561029857600080fd5b506102a1610720565b6040516102619190611a5e565b61028a6102bc366004611a71565b6107b2565b3480156102cd57600080fd5b506102e16102dc366004611a71565b610967565b6040516001600160a01b039091168152602001610261565b61028a610307366004611aa6565b6109ab565b34801561031857600080fd5b5061028a610327366004611ae0565b610a4b565b34801561033857600080fd5b5061028a6103473660046119c5565b610a6d565b34801561035857600080fd5b5061036a600154600054036000190190565b604051908152602001610261565b34801561038457600080fd5b5061028a610393366004611a71565b610a81565b3480156103a457600080fd5b5060115461025590610100900460ff1681565b61028a6103c5366004611afb565b610a8e565b3480156103d657600080fd5b5061028a6103e5366004611a71565b610c27565b3480156103f657600080fd5b5061028a610c34565b61028a61040d366004611afb565b610cc2565b34801561041e57600080fd5b5061028a61042d3660046119c5565b610ce2565b34801561043e57600080fd5b506102a1610cf6565b34801561045357600080fd5b506102e1610462366004611a71565b610d84565b34801561047357600080fd5b5061028a610482366004611ae0565b610d8f565b34801561049357600080fd5b5061036a6104a2366004611b37565b610daa565b3480156104b357600080fd5b5061028a610df9565b3480156104c857600080fd5b5061028a6104d7366004611a71565b610e0b565b3480156104e857600080fd5b5061028a6104f7366004611a71565b610e18565b34801561050857600080fd5b506008546001600160a01b03166102e1565b34801561052657600080fd5b5061028a610535366004611a71565b610ebb565b34801561054657600080fd5b506102a1610ec8565b34801561055b57600080fd5b5061028a61056a366004611b52565b610ed7565b34801561057b57600080fd5b506102a1610f43565b34801561059057600080fd5b506011546102559060ff1681565b3480156105aa57600080fd5b5061028a6105b9366004611b85565b610f50565b3480156105ca57600080fd5b506105de6105d9366004611b37565b610f9f565b6040516102619190611ba8565b3480156105f757600080fd5b5061036a600e5481565b34801561060d57600080fd5b5061036a60105481565b61028a610625366004611bec565b611091565b34801561063657600080fd5b506102a1610645366004611a71565b6110db565b34801561065657600080fd5b5061036a600f5481565b34801561066c57600080fd5b5061025561067b366004611c68565b61124f565b34801561068c57600080fd5b5061036a600d5481565b3480156106a257600080fd5b5061028a6106b1366004611b37565b61127d565b60006301ffc9a760e01b6001600160e01b0319831614806106e757506380ac58cd60e01b6001600160e01b03198316145b806107025750635b5e139f60e01b6001600160e01b03198316145b92915050565b6107106112f3565b600a61071c8282611d12565b5050565b60606002805461072f90611c92565b80601f016020809104026020016040519081016040528092919081815260200182805461075b90611c92565b80156107a85780601f1061077d576101008083540402835291602001916107a8565b820191906000526020600020905b81548152906001019060200180831161078b57829003601f168201915b5050505050905090565b6107ba61134d565b60115460ff166108075760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b60448201526064015b60405180910390fd5b6000811180156108195750600f548111155b61085c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107fe565b600e5481610871600154600054036000190190565b61087b9190611de8565b11156108995760405162461bcd60e51b81526004016107fe90611dfb565b601054816108a633610daa565b6108b09190611de8565b11156108fe5760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c65742065786365656465642100000060448201526064016107fe565b600d5461090b9082611e29565b3410156109505760405162461bcd60e51b815260206004820152601360248201527257726f6e6720616d6f756e7420696e7075742160681b60448201526064016107fe565b61095a33826113a6565b6109646001600955565b50565b6000610972826113c0565b61098f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109b682610d84565b9050336001600160a01b038216146109ef576109d2813361124f565b6109ef576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a536112f3565b601180549115156101000261ff0019909216919091179055565b610a756112f3565b600b61071c8282611d12565b610a896112f3565b601055565b6000610a99826113f5565b9050836001600160a01b0316816001600160a01b031614610acc5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b1957610afc863361124f565b610b1957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b4057604051633a954ecd60e21b815260040160405180910390fd5b8015610b4b57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610bdd57600184016000818152600460205260408120549003610bdb576000548114610bdb5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c2f6112f3565b600e55565b610c3c6112f3565b610c4461134d565b6000610c586008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ca2576040519150601f19603f3d011682016040523d82523d6000602084013e610ca7565b606091505b5050905080610cb557600080fd5b50610cc06001600955565b565b610cdd83838360405180602001604052806000815250611091565b505050565b610cea6112f3565b600c61071c8282611d12565b600b8054610d0390611c92565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2f90611c92565b8015610d7c5780601f10610d5157610100808354040283529160200191610d7c565b820191906000526020600020905b815481529060010190602001808311610d5f57829003601f168201915b505050505081565b6000610702826113f5565b610d976112f3565b6011805460ff1916911515919091179055565b60006001600160a01b038216610dd3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610e016112f3565b610cc06000611464565b610e136112f3565b600f55565b610e206112f3565b600081118015610e31575060288111155b610e745760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107fe565b600e5481610e89600154600054036000190190565b610e939190611de8565b1115610eb15760405162461bcd60e51b81526004016107fe90611dfb565b61096433826113a6565b610ec36112f3565b600d55565b60606003805461072f90611c92565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610d0390611c92565b610f586112f3565b600e5482610f6d600154600054036000190190565b610f779190611de8565b1115610f955760405162461bcd60e51b81526004016107fe90611dfb565b61071c81836113a6565b60606000610fac83610daa565b67ffffffffffffffff811115610fc457610fc4611939565b604051908082528060200260200182016040528015610fed578160200160208202803683370190505b5090506000610ffb60005490565b905060008060005b83811015611086576000611016826114b6565b9050806040015115611028575061107e565b80516001600160a01b03161561103d57805192505b876001600160a01b0316836001600160a01b03160361107c578186858060010196508151811061106f5761106f611e40565b6020026020010181815250505b505b600101611003565b509295945050505050565b61109c848484610a8e565b6001600160a01b0383163b156110d5576110b884848484611535565b6110d5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110e6826113c0565b61114a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107fe565b601154610100900460ff1615156000036111f057600c805461116b90611c92565b80601f016020809104026020016040519081016040528092919081815260200182805461119790611c92565b80156111e45780601f106111b9576101008083540402835291602001916111e4565b820191906000526020600020905b8154815290600101906020018083116111c757829003601f168201915b50505050509050919050565b60006111fa611621565b9050600081511161121a5760405180602001604052806000815250611248565b8061122484611630565b600b60405160200161123893929190611e56565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6112856112f3565b6001600160a01b0381166112ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fe565b61096481611464565b6008546001600160a01b03163314610cc05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107fe565b60026009540361139f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107fe565b6002600955565b61071c8282604051806020016040528060008152506116c3565b6000816001111580156113d4575060005482105b8015610702575050600090815260046020526040902054600160e01b161590565b6000818060011161144b5760005481101561144b5760008181526004602052604081205490600160e01b82169003611449575b80600003611248575060001901600081815260046020526040902054611428565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461070290604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061156a903390899088908890600401611ef6565b6020604051808303816000875af19250505080156115a5575060408051601f3d908101601f191682019092526115a291810190611f33565b60015b611603573d8080156115d3576040519150601f19603f3d011682016040523d82523d6000602084013e6115d8565b606091505b5080516000036115fb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461072f90611c92565b6060600061163d83611730565b600101905060008167ffffffffffffffff81111561165d5761165d611939565b6040519080825280601f01601f191660200182016040528015611687576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461169157509392505050565b6116cd8383611808565b6001600160a01b0383163b15610cdd576000548281035b6116f76000868380600101945086611535565b611714576040516368d2bf6b60e11b815260040160405180910390fd5b8181106116e457816000541461172957600080fd5b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061176f5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061179b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106117b957662386f26fc10000830492506010015b6305f5e10083106117d1576305f5e100830492506008015b61271083106117e557612710830492506004015b606483106117f7576064830492506002015b600a83106107025760010192915050565b600080549082900361182d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146118dc57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016118a4565b50816000036118fd57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461096457600080fd5b60006020828403121561192e57600080fd5b813561124881611906565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561196a5761196a611939565b604051601f8501601f19908116603f0116810190828211818310171561199257611992611939565b816040528093508581528686860111156119ab57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119d757600080fd5b813567ffffffffffffffff8111156119ee57600080fd5b8201601f810184136119ff57600080fd5b6116198482356020840161194f565b60005b83811015611a29578181015183820152602001611a11565b50506000910152565b60008151808452611a4a816020860160208601611a0e565b601f01601f19169290920160200192915050565b6020815260006112486020830184611a32565b600060208284031215611a8357600080fd5b5035919050565b80356001600160a01b0381168114611aa157600080fd5b919050565b60008060408385031215611ab957600080fd5b611ac283611a8a565b946020939093013593505050565b80358015158114611aa157600080fd5b600060208284031215611af257600080fd5b61124882611ad0565b600080600060608486031215611b1057600080fd5b611b1984611a8a565b9250611b2760208501611a8a565b9150604084013590509250925092565b600060208284031215611b4957600080fd5b61124882611a8a565b60008060408385031215611b6557600080fd5b611b6e83611a8a565b9150611b7c60208401611ad0565b90509250929050565b60008060408385031215611b9857600080fd5b82359150611b7c60208401611a8a565b6020808252825182820181905260009190848201906040850190845b81811015611be057835183529284019291840191600101611bc4565b50909695505050505050565b60008060008060808587031215611c0257600080fd5b611c0b85611a8a565b9350611c1960208601611a8a565b925060408501359150606085013567ffffffffffffffff811115611c3c57600080fd5b8501601f81018713611c4d57600080fd5b611c5c8782356020840161194f565b91505092959194509250565b60008060408385031215611c7b57600080fd5b611c8483611a8a565b9150611b7c60208401611a8a565b600181811c90821680611ca657607f821691505b602082108103611cc657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610cdd57600081815260208120601f850160051c81016020861015611cf35750805b601f850160051c820191505b81811015610c1f57828155600101611cff565b815167ffffffffffffffff811115611d2c57611d2c611939565b611d4081611d3a8454611c92565b84611ccc565b602080601f831160018114611d755760008415611d5d5750858301515b600019600386901b1c1916600185901b178555610c1f565b600085815260208120601f198616915b82811015611da457888601518255948401946001909101908401611d85565b5085821015611dc25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561070257610702611dd2565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b808202811582820484141761070257610702611dd2565b634e487b7160e01b600052603260045260246000fd5b600084516020611e698285838a01611a0e565b855191840191611e7c8184848a01611a0e565b8554920191600090611e8d81611c92565b60018281168015611ea55760018114611eba57611ee6565b60ff1984168752821515830287019450611ee6565b896000528560002060005b84811015611ede57815489820152908301908701611ec5565b505082870194505b50929a9950505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f2990830184611a32565b9695505050505050565b600060208284031215611f4557600080fd5b81516112488161190656fea26469706673582212206beec9e16b6002b0c17ecc7f5b61288bee81d7bd13011c8ae8f8b56cfbcfdab564736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656968367a6c746a6a6966697433633561713764626c6168726b696e663778353235637672746f35787a33376a376b326770777a62712f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://bafybeih6zltjjifit3c5aq7dblahrkinf7x525cvrto5xz37j7k2gpwzbq/
Arg [1] : _hiddenMetadataUri (string):

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 697066733a2f2f6261667962656968367a6c746a6a6966697433633561713764
Arg [4] : 626c6168726b696e663778353235637672746f35787a33376a376b326770777a
Arg [5] : 62712f0000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

89343:4205:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19395:639;;;;;;;;;;-1:-1:-1;19395:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;19395:639:0;;;;;;;;91109:82;;;;;;;;;;-1:-1:-1;91109:82:0;;;;;:::i;:::-;;:::i;:::-;;20297:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;89999:519::-;;;;;;:::i;:::-;;:::i;26788:218::-;;;;;;;;;;-1:-1:-1;26788:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2922:32:1;;;2904:51;;2892:2;2877:18;26788:218:0;2758:203:1;26221:408:0;;;;;;:::i;:::-;;:::i;91010:93::-;;;;;;;;;;-1:-1:-1;91010:93:0;;;;;:::i;:::-;;:::i;91335:100::-;;;;;;;;;;-1:-1:-1;91335:100:0;;;;;:::i;:::-;;:::i;16048:323::-;;;;;;;;;;;;92964:1;16322:12;16109:7;16306:13;:28;-1:-1:-1;;16306:46:0;;16048:323;;;;3899:25:1;;;3887:2;3872:18;16048:323:0;3753:177:1;91653:122:0;;;;;;;;;;-1:-1:-1;91653:122:0;;;;;:::i;:::-;;:::i;89755:32::-;;;;;;;;;;-1:-1:-1;89755:32:0;;;;;;;;;;;30427:2825;;;;;;:::i;:::-;;:::i;91890:102::-;;;;;;;;;;-1:-1:-1;91890:102:0;;;;;:::i;:::-;;:::i;91998:149::-;;;;;;;;;;;;;:::i;33348:193::-;;;;;;:::i;:::-;;:::i;91197:132::-;;;;;;;;;;-1:-1:-1;91197:132:0;;;;;:::i;:::-;;:::i;89473:33::-;;;;;;;;;;;;;:::i;21690:152::-;;;;;;;;;;-1:-1:-1;21690:152:0;;;;;:::i;:::-;;:::i;91441:82::-;;;;;;;;;;-1:-1:-1;91441:82:0;;;;;:::i;:::-;;:::i;17232:233::-;;;;;;;;;;-1:-1:-1;17232:233:0;;;;;:::i;:::-;;:::i;85486:103::-;;;;;;;;;;;;;:::i;91529:118::-;;;;;;;;;;-1:-1:-1;91529:118:0;;;;;:::i;:::-;;:::i;90743:261::-;;;;;;;;;;-1:-1:-1;90743:261:0;;;;;:::i;:::-;;:::i;84838:87::-;;;;;;;;;;-1:-1:-1;84911:6:0;;-1:-1:-1;;;;;84911:6:0;84838:87;;91781:100;;;;;;;;;;-1:-1:-1;91781:100:0;;;;;:::i;:::-;;:::i;20473:104::-;;;;;;;;;;;;;:::i;27346:234::-;;;;;;;;;;-1:-1:-1;27346:234:0;;;;;:::i;:::-;;:::i;89512:31::-;;;;;;;;;;;;;:::i;89720:28::-;;;;;;;;;;-1:-1:-1;89720:28:0;;;;;;;;90526:211;;;;;;;;;;-1:-1:-1;90526:211:0;;;;;:::i;:::-;;:::i;92151:719::-;;;;;;;;;;-1:-1:-1;92151:719:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;89602:33::-;;;;;;;;;;;;;;;;89680:35;;;;;;;;;;;;;;;;34139:407;;;;;;:::i;:::-;;:::i;92977:450::-;;;;;;;;;;-1:-1:-1;92977:450:0;;;;;:::i;:::-;;:::i;89642:32::-;;;;;;;;;;;;;;;;27737:164;;;;;;;;;;-1:-1:-1;27737:164:0;;;;;:::i;:::-;;:::i;89549:47::-;;;;;;;;;;;;;;;;85744:201;;;;;;;;;;-1:-1:-1;85744:201:0;;;;;:::i;:::-;;:::i;19395:639::-;19480:4;-1:-1:-1;;;;;;;;;19804:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19881:25:0;;;19804:102;:179;;;-1:-1:-1;;;;;;;;;;19958:25:0;;;19804:179;19784:199;19395:639;-1:-1:-1;;19395:639:0:o;91109:82::-;84724:13;:11;:13::i;:::-;91169:9:::1;:16;91181:4:::0;91169:9;:16:::1;:::i;:::-;;91109:82:::0;:::o;20297:100::-;20351:13;20384:5;20377:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20297:100;:::o;89999:519::-;88648:21;:19;:21::i;:::-;90078:8:::1;::::0;::::1;;90070:40;;;::::0;-1:-1:-1;;;90070:40:0;;9342:2:1;90070:40:0::1;::::0;::::1;9324:21:1::0;9381:2;9361:18;;;9354:30;-1:-1:-1;;;9400:18:1;;;9393:49;9459:18;;90070:40:0::1;;;;;;;;;90139:1;90125:11;:15;:46;;;;;90159:12;;90144:11;:27;;90125:46;90117:79;;;::::0;-1:-1:-1;;;90117:79:0;;9690:2:1;90117:79:0::1;::::0;::::1;9672:21:1::0;9729:2;9709:18;;;9702:30;-1:-1:-1;;;9748:18:1;;;9741:50;9808:18;;90117:79:0::1;9488:344:1::0;90117:79:0::1;90242:11;;90227;90211:13;92964:1:::0;16322:12;16109:7;16306:13;:28;-1:-1:-1;;16306:46:0;;16048:323;90211:13:::1;:27;;;;:::i;:::-;:42;;90203:75;;;;-1:-1:-1::0;;;90203:75:0::1;;;;;;;:::i;:::-;90332:15;;90317:11;90293:21;90303:10;90293:9;:21::i;:::-;:35;;;;:::i;:::-;:54;;90285:96;;;::::0;-1:-1:-1;;;90285:96:0;;10650:2:1;90285:96:0::1;::::0;::::1;10632:21:1::0;10689:2;10669:18;;;10662:30;10728:31;10708:18;;;10701:59;10777:18;;90285:96:0::1;10448:353:1::0;90285:96:0::1;90423:17;::::0;90409:31:::1;::::0;:11;:31:::1;:::i;:::-;90396:9;:44;;90388:75;;;::::0;-1:-1:-1;;;90388:75:0;;11181:2:1;90388:75:0::1;::::0;::::1;11163:21:1::0;11220:2;11200:18;;;11193:30;-1:-1:-1;;;11239:18:1;;;11232:49;11298:18;;90388:75:0::1;10979:343:1::0;90388:75:0::1;90476:36;83469:10:::0;90500:11:::1;90476:9;:36::i;:::-;88692:20:::0;88086:1;89212:7;:22;89029:213;88692:20;89999:519;:::o;26788:218::-;26864:7;26889:16;26897:7;26889;:16::i;:::-;26884:64;;26914:34;;-1:-1:-1;;;26914:34:0;;;;;;;;;;;26884:64;-1:-1:-1;26968:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26968:30:0;;26788:218::o;26221:408::-;26310:13;26326:16;26334:7;26326;:16::i;:::-;26310:32;-1:-1:-1;83469:10:0;-1:-1:-1;;;;;26359:28:0;;;26355:175;;26407:44;26424:5;83469:10;27737:164;:::i;26407:44::-;26402:128;;26479:35;;-1:-1:-1;;;26479:35:0;;;;;;;;;;;26402:128;26542:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;26542:35:0;-1:-1:-1;;;;;26542:35:0;;;;;;;;;26593:28;;26542:24;;26593:28;;;;;;;26299:330;26221:408;;:::o;91010:93::-;84724:13;:11;:13::i;:::-;91075::::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;91075:22:0;;::::1;::::0;;;::::1;::::0;;91010:93::o;91335:100::-;84724:13;:11;:13::i;:::-;91407:9:::1;:22;91419:10:::0;91407:9;:22:::1;:::i;91653:122::-:0;84724:13;:11;:13::i;:::-;91733:15:::1;:36:::0;91653:122::o;30427:2825::-;30569:27;30599;30618:7;30599:18;:27::i;:::-;30569:57;;30684:4;-1:-1:-1;;;;;30643:45:0;30659:19;-1:-1:-1;;;;;30643:45:0;;30639:86;;30697:28;;-1:-1:-1;;;30697:28:0;;;;;;;;;;;30639:86;30739:27;29535:24;;;:15;:24;;;;;29763:26;;83469:10;29160:30;;;-1:-1:-1;;;;;28853:28:0;;29138:20;;;29135:56;30925:180;;31018:43;31035:4;83469:10;27737:164;:::i;31018:43::-;31013:92;;31070:35;;-1:-1:-1;;;31070:35:0;;;;;;;;;;;31013:92;-1:-1:-1;;;;;31122:16:0;;31118:52;;31147:23;;-1:-1:-1;;;31147:23:0;;;;;;;;;;;31118:52;31319:15;31316:160;;;31459:1;31438:19;31431:30;31316:160;-1:-1:-1;;;;;31856:24:0;;;;;;;:18;:24;;;;;;31854:26;;-1:-1:-1;;31854:26:0;;;31925:22;;;;;;;;;31923:24;;-1:-1:-1;31923:24:0;;;25079:11;25054:23;25050:41;25037:63;-1:-1:-1;;;25037:63:0;32218:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;32513:47:0;;:52;;32509:627;;32618:1;32608:11;;32586:19;32741:30;;;:17;:30;;;;;;:35;;32737:384;;32879:13;;32864:11;:28;32860:242;;33026:30;;;;:17;:30;;;;;:52;;;32860:242;32567:569;32509:627;33183:7;33179:2;-1:-1:-1;;;;;33164:27:0;33173:4;-1:-1:-1;;;;;33164:27:0;;;;;;;;;;;33202:42;30558:2694;;;30427:2825;;;:::o;91890:102::-;84724:13;:11;:13::i;:::-;91960:11:::1;:26:::0;91890:102::o;91998:149::-;84724:13;:11;:13::i;:::-;88648:21:::1;:19;:21::i;:::-;92055:7:::2;92076;84911:6:::0;;-1:-1:-1;;;;;84911:6:0;;84838:87;92076:7:::2;-1:-1:-1::0;;;;;92068:21:0::2;92097;92068:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92054:69;;;92138:2;92130:11;;;::::0;::::2;;92047:100;88692:20:::1;88086:1:::0;89212:7;:22;89029:213;88692:20:::1;91998:149::o:0;33348:193::-;33494:39;33511:4;33517:2;33521:7;33494:39;;;;;;;;;;;;:16;:39::i;:::-;33348:193;;;:::o;91197:132::-;84724:13;:11;:13::i;:::-;91285:17:::1;:38;91305:18:::0;91285:17;:38:::1;:::i;89473:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21690:152::-;21762:7;21805:27;21824:7;21805:18;:27::i;91441:82::-;84724:13;:11;:13::i;:::-;91501:8:::1;:16:::0;;-1:-1:-1;;91501:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;91441:82::o;17232:233::-;17304:7;-1:-1:-1;;;;;17328:19:0;;17324:60;;17356:28;;-1:-1:-1;;;17356:28:0;;;;;;;;;;;17324:60;-1:-1:-1;;;;;;17402:25:0;;;;;:18;:25;;;;;;11391:13;17402:55;;17232:233::o;85486:103::-;84724:13;:11;:13::i;:::-;85551:30:::1;85578:1;85551:18;:30::i;91529:118::-:0;84724:13;:11;:13::i;:::-;91607:12:::1;:34:::0;91529:118::o;90743:261::-;84724:13;:11;:13::i;:::-;90828:1:::1;90814:11;:15;:36;;;;;90848:2;90833:11;:17;;90814:36;90806:69;;;::::0;-1:-1:-1;;;90806:69:0;;9690:2:1;90806:69:0::1;::::0;::::1;9672:21:1::0;9729:2;9709:18;;;9702:30;-1:-1:-1;;;9748:18:1;;;9741:50;9808:18;;90806:69:0::1;9488:344:1::0;90806:69:0::1;90921:11;;90906;90890:13;92964:1:::0;16322:12;16109:7;16306:13;:28;-1:-1:-1;;16306:46:0;;16048:323;90890:13:::1;:27;;;;:::i;:::-;:42;;90882:75;;;;-1:-1:-1::0;;;90882:75:0::1;;;;;;;:::i;:::-;90964:34;90974:10;90986:11;90964:9;:34::i;91781:100::-:0;84724:13;:11;:13::i;:::-;91850:17:::1;:25:::0;91781:100::o;20473:104::-;20529:13;20562:7;20555:14;;;;;:::i;27346:234::-;83469:10;27441:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;27441:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;27441:60:0;;;;;;;;;;27517:55;;540:41:1;;;27441:49:0;;83469:10;27517:55;;513:18:1;27517:55:0;;;;;;;27346:234;;:::o;89512:31::-;;;;;;;:::i;90526:211::-;84724:13;:11;:13::i;:::-;90655:11:::1;;90640;90624:13;92964:1:::0;16322:12;16109:7;16306:13;:28;-1:-1:-1;;16306:46:0;;16048:323;90624:13:::1;:27;;;;:::i;:::-;:42;;90616:75;;;;-1:-1:-1::0;;;90616:75:0::1;;;;;;;:::i;:::-;90698:33;90708:9;90719:11;90698:9;:33::i;92151:719::-:0;92219:16;92265:18;92300:16;92310:5;92300:9;:16::i;:::-;92286:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;92286:31:0;;92265:52;;92329:11;92343:14;15790:7;15817:13;;15735:103;92343:14;92329:28;;92368:19;92398:25;92439:9;92434:403;92454:3;92450:1;:7;92434:403;;;92479:31;92513:15;92526:1;92513:12;:15::i;:::-;92479:49;;92547:9;:16;;;92543:65;;;92584:8;;;92543:65;92626:14;;-1:-1:-1;;;;;92626:28:0;;92622:103;;92695:14;;;-1:-1:-1;92622:103:0;92764:5;-1:-1:-1;;;;;92743:26:0;:17;-1:-1:-1;;;;;92743:26:0;;92739:87;;92809:1;92790;92792:13;;;;;;92790:16;;;;;;;;:::i;:::-;;;;;;:20;;;;;92739:87;92464:373;92434:403;92459:3;;92434:403;;;-1:-1:-1;92854:1:0;;92151:719;-1:-1:-1;;;;;92151:719:0:o;34139:407::-;34314:31;34327:4;34333:2;34337:7;34314:12;:31::i;:::-;-1:-1:-1;;;;;34360:14:0;;;:19;34356:183;;34399:56;34430:4;34436:2;34440:7;34449:5;34399:30;:56::i;:::-;34394:145;;34483:40;;-1:-1:-1;;;34483:40:0;;;;;;;;;;;34394:145;34139:407;;;;:::o;92977:450::-;93051:13;93081:17;93089:8;93081:7;:17::i;:::-;93073:77;;;;-1:-1:-1;;;93073:77:0;;11871:2:1;93073:77:0;;;11853:21:1;11910:2;11890:18;;;11883:30;11949:34;11929:18;;;11922:62;-1:-1:-1;;;12000:18:1;;;11993:45;12055:19;;93073:77:0;11669:411:1;93073:77:0;93163:13;;;;;;;:22;;93180:5;93163:22;93159:69;;93203:17;93196:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92977:450;;;:::o;93159:69::-;93236:28;93267:10;:8;:10::i;:::-;93236:41;;93322:1;93297:14;93291:28;:32;:130;;;;;;;;;;;;;;;;;93359:14;93375:19;:8;:17;:19::i;:::-;93396:9;93342:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;93291:130;93284:137;92977:450;-1:-1:-1;;;92977:450:0:o;27737:164::-;-1:-1:-1;;;;;27858:25:0;;;27834:4;27858:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27737:164::o;85744:201::-;84724:13;:11;:13::i;:::-;-1:-1:-1;;;;;85833:22:0;::::1;85825:73;;;::::0;-1:-1:-1;;;85825:73:0;;13548:2:1;85825:73:0::1;::::0;::::1;13530:21:1::0;13587:2;13567:18;;;13560:30;13626:34;13606:18;;;13599:62;-1:-1:-1;;;13677:18:1;;;13670:36;13723:19;;85825:73:0::1;13346:402:1::0;85825:73:0::1;85909:28;85928:8;85909:18;:28::i;85003:132::-:0;84911:6;;-1:-1:-1;;;;;84911:6:0;83469:10;85067:23;85059:68;;;;-1:-1:-1;;;85059:68:0;;13955:2:1;85059:68:0;;;13937:21:1;;;13974:18;;;13967:30;14033:34;14013:18;;;14006:62;14085:18;;85059:68:0;13753:356:1;88728:293:0;88130:1;88862:7;;:19;88854:63;;;;-1:-1:-1;;;88854:63:0;;14316:2:1;88854:63:0;;;14298:21:1;14355:2;14335:18;;;14328:30;14394:33;14374:18;;;14367:61;14445:18;;88854:63:0;14114:355:1;88854:63:0;88130:1;88995:7;:18;88728:293::o;44299:112::-;44376:27;44386:2;44390:8;44376:27;;;;;;;;;;;;:9;:27::i;28159:282::-;28224:4;28280:7;92964:1;28261:26;;:66;;;;;28314:13;;28304:7;:23;28261:66;:153;;;;-1:-1:-1;;28365:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;28365:44:0;:49;;28159:282::o;22845:1275::-;22912:7;22947;;92964:1;22996:23;22992:1061;;23049:13;;23042:4;:20;23038:1015;;;23087:14;23104:23;;;:17;:23;;;;;;;-1:-1:-1;;;23193:24:0;;:29;;23189:845;;23858:113;23865:6;23875:1;23865:11;23858:113;;-1:-1:-1;;;23936:6:0;23918:25;;;;:17;:25;;;;;;23858:113;;23189:845;23064:989;23038:1015;24081:31;;-1:-1:-1;;;24081:31:0;;;;;;;;;;;86105:191;86198:6;;;-1:-1:-1;;;;;86215:17:0;;;-1:-1:-1;;;;;;86215:17:0;;;;;;;86248:40;;86198:6;;;86215:17;86198:6;;86248:40;;86179:16;;86248:40;86168:128;86105:191;:::o;22293:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22421:24:0;;;;:17;:24;;;;;;22402:44;;-1:-1:-1;;;;;;;;;;;;;24329:41:0;;;;12050:3;24415:33;;;24381:68;;-1:-1:-1;;;24381:68:0;-1:-1:-1;;;24479:24:0;;:29;;-1:-1:-1;;;24460:48:0;;;;12571:3;24548:28;;;;-1:-1:-1;;;24519:58:0;-1:-1:-1;24219:366:0;36630:716;36814:88;;-1:-1:-1;;;36814:88:0;;36793:4;;-1:-1:-1;;;;;36814:45:0;;;;;:88;;83469:10;;36881:4;;36887:7;;36896:5;;36814:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36814:88:0;;;;;;;;-1:-1:-1;;36814:88:0;;;;;;;;;;;;:::i;:::-;;;36810:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37097:6;:13;37114:1;37097:18;37093:235;;37143:40;;-1:-1:-1;;;37143:40:0;;;;;;;;;;;37093:235;37286:6;37280:13;37271:6;37267:2;37263:15;37256:38;36810:529;-1:-1:-1;;;;;;36973:64:0;-1:-1:-1;;;36973:64:0;;-1:-1:-1;36810:529:0;36630:716;;;;;;:::o;93433:104::-;93493:13;93522:9;93515:16;;;;;:::i;74706:716::-;74762:13;74813:14;74830:17;74841:5;74830:10;:17::i;:::-;74850:1;74830:21;74813:38;;74866:20;74900:6;74889:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74889:18:0;-1:-1:-1;74866:41:0;-1:-1:-1;75031:28:0;;;75047:2;75031:28;75088:288;-1:-1:-1;;75120:5:0;-1:-1:-1;;;75257:2:0;75246:14;;75241:30;75120:5;75228:44;75318:2;75309:11;;;-1:-1:-1;75339:21:0;75088:288;75339:21;-1:-1:-1;75397:6:0;74706:716;-1:-1:-1;;;74706:716:0:o;43526:689::-;43657:19;43663:2;43667:8;43657:5;:19::i;:::-;-1:-1:-1;;;;;43718:14:0;;;:19;43714:483;;43758:11;43772:13;43820:14;;;43853:233;43884:62;43923:1;43927:2;43931:7;;;;;;43940:5;43884:30;:62::i;:::-;43879:167;;43982:40;;-1:-1:-1;;;43982:40:0;;;;;;;;;;;43879:167;44081:3;44073:5;:11;43853:233;;44168:3;44151:13;;:20;44147:34;;44173:8;;;44147:34;43739:458;;43526:689;;;:::o;71572:922::-;71625:7;;-1:-1:-1;;;71703:15:0;;71699:102;;-1:-1:-1;;;71739:15:0;;;-1:-1:-1;71783:2:0;71773:12;71699:102;71828:6;71819:5;:15;71815:102;;71864:6;71855:15;;;-1:-1:-1;71899:2:0;71889:12;71815:102;71944:6;71935:5;:15;71931:102;;71980:6;71971:15;;;-1:-1:-1;72015:2:0;72005:12;71931:102;72060:5;72051;:14;72047:99;;72095:5;72086:14;;;-1:-1:-1;72129:1:0;72119:11;72047:99;72173:5;72164;:14;72160:99;;72208:5;72199:14;;;-1:-1:-1;72242:1:0;72232:11;72160:99;72286:5;72277;:14;72273:99;;72321:5;72312:14;;;-1:-1:-1;72355:1:0;72345:11;72273:99;72399:5;72390;:14;72386:66;;72435:1;72425:11;72480:6;71572:922;-1:-1:-1;;71572:922:0:o;37808:2966::-;37881:20;37904:13;;;37932;;;37928:44;;37954:18;;-1:-1:-1;;;37954:18:0;;;;;;;;;;;37928:44;-1:-1:-1;;;;;38460:22:0;;;;;;:18;:22;;;;11529:2;38460:22;;;:71;;38498:32;38486:45;;38460:71;;;38774:31;;;:17;:31;;;;;-1:-1:-1;25510:15:0;;25484:24;25480:46;25079:11;25054:23;25050:41;25047:52;25037:63;;38774:173;;39009:23;;;;38774:31;;38460:22;;39774:25;38460:22;;39627:335;40288:1;40274:12;40270:20;40228:346;40329:3;40320:7;40317:16;40228:346;;40547:7;40537:8;40534:1;40507:25;40504:1;40501;40496:59;40382:1;40369:15;40228:346;;;40232:77;40607:8;40619:1;40607:13;40603:45;;40629:19;;-1:-1:-1;;;40629:19:0;;;;;;;;;;;40603:45;40665:13;:19;-1:-1:-1;33348:193:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:127::-;653:10;648:3;644:20;641:1;634:31;684:4;681:1;674:15;708:4;705:1;698:15;724:632;789:5;819:18;860:2;852:6;849:14;846:40;;;866:18;;:::i;:::-;941:2;935:9;909:2;995:15;;-1:-1:-1;;991:24:1;;;1017:2;987:33;983:42;971:55;;;1041:18;;;1061:22;;;1038:46;1035:72;;;1087:18;;:::i;:::-;1127:10;1123:2;1116:22;1156:6;1147:15;;1186:6;1178;1171:22;1226:3;1217:6;1212:3;1208:16;1205:25;1202:45;;;1243:1;1240;1233:12;1202:45;1293:6;1288:3;1281:4;1273:6;1269:17;1256:44;1348:1;1341:4;1332:6;1324;1320:19;1316:30;1309:41;;;;724:632;;;;;:::o;1361:451::-;1430:6;1483:2;1471:9;1462:7;1458:23;1454:32;1451:52;;;1499:1;1496;1489:12;1451:52;1539:9;1526:23;1572:18;1564:6;1561:30;1558:50;;;1604:1;1601;1594:12;1558:50;1627:22;;1680:4;1672:13;;1668:27;-1:-1:-1;1658:55:1;;1709:1;1706;1699:12;1658:55;1732:74;1798:7;1793:2;1780:16;1775:2;1771;1767:11;1732:74;:::i;1817:250::-;1902:1;1912:113;1926:6;1923:1;1920:13;1912:113;;;2002:11;;;1996:18;1983:11;;;1976:39;1948:2;1941:10;1912:113;;;-1:-1:-1;;2059:1:1;2041:16;;2034:27;1817:250::o;2072:271::-;2114:3;2152:5;2146:12;2179:6;2174:3;2167:19;2195:76;2264:6;2257:4;2252:3;2248:14;2241:4;2234:5;2230:16;2195:76;:::i;:::-;2325:2;2304:15;-1:-1:-1;;2300:29:1;2291:39;;;;2332:4;2287:50;;2072:271;-1:-1:-1;;2072:271:1:o;2348:220::-;2497:2;2486:9;2479:21;2460:4;2517:45;2558:2;2547:9;2543:18;2535:6;2517:45;:::i;2573:180::-;2632:6;2685:2;2673:9;2664:7;2660:23;2656:32;2653:52;;;2701:1;2698;2691:12;2653:52;-1:-1:-1;2724:23:1;;2573:180;-1:-1:-1;2573:180:1:o;2966:173::-;3034:20;;-1:-1:-1;;;;;3083:31:1;;3073:42;;3063:70;;3129:1;3126;3119:12;3063:70;2966:173;;;:::o;3144:254::-;3212:6;3220;3273:2;3261:9;3252:7;3248:23;3244:32;3241:52;;;3289:1;3286;3279:12;3241:52;3312:29;3331:9;3312:29;:::i;:::-;3302:39;3388:2;3373:18;;;;3360:32;;-1:-1:-1;;;3144:254:1:o;3403:160::-;3468:20;;3524:13;;3517:21;3507:32;;3497:60;;3553:1;3550;3543:12;3568:180;3624:6;3677:2;3665:9;3656:7;3652:23;3648:32;3645:52;;;3693:1;3690;3683:12;3645:52;3716:26;3732:9;3716:26;:::i;3935:328::-;4012:6;4020;4028;4081:2;4069:9;4060:7;4056:23;4052:32;4049:52;;;4097:1;4094;4087:12;4049:52;4120:29;4139:9;4120:29;:::i;:::-;4110:39;;4168:38;4202:2;4191:9;4187:18;4168:38;:::i;:::-;4158:48;;4253:2;4242:9;4238:18;4225:32;4215:42;;3935:328;;;;;:::o;4268:186::-;4327:6;4380:2;4368:9;4359:7;4355:23;4351:32;4348:52;;;4396:1;4393;4386:12;4348:52;4419:29;4438:9;4419:29;:::i;4459:254::-;4524:6;4532;4585:2;4573:9;4564:7;4560:23;4556:32;4553:52;;;4601:1;4598;4591:12;4553:52;4624:29;4643:9;4624:29;:::i;:::-;4614:39;;4672:35;4703:2;4692:9;4688:18;4672:35;:::i;:::-;4662:45;;4459:254;;;;;:::o;4718:::-;4786:6;4794;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;4899:9;4886:23;4876:33;;4928:38;4962:2;4951:9;4947:18;4928:38;:::i;4977:632::-;5148:2;5200:21;;;5270:13;;5173:18;;;5292:22;;;5119:4;;5148:2;5371:15;;;;5345:2;5330:18;;;5119:4;5414:169;5428:6;5425:1;5422:13;5414:169;;;5489:13;;5477:26;;5558:15;;;;5523:12;;;;5450:1;5443:9;5414:169;;;-1:-1:-1;5600:3:1;;4977:632;-1:-1:-1;;;;;;4977:632:1:o;5614:667::-;5709:6;5717;5725;5733;5786:3;5774:9;5765:7;5761:23;5757:33;5754:53;;;5803:1;5800;5793:12;5754:53;5826:29;5845:9;5826:29;:::i;:::-;5816:39;;5874:38;5908:2;5897:9;5893:18;5874:38;:::i;:::-;5864:48;;5959:2;5948:9;5944:18;5931:32;5921:42;;6014:2;6003:9;5999:18;5986:32;6041:18;6033:6;6030:30;6027:50;;;6073:1;6070;6063:12;6027:50;6096:22;;6149:4;6141:13;;6137:27;-1:-1:-1;6127:55:1;;6178:1;6175;6168:12;6127:55;6201:74;6267:7;6262:2;6249:16;6244:2;6240;6236:11;6201:74;:::i;:::-;6191:84;;;5614:667;;;;;;;:::o;6286:260::-;6354:6;6362;6415:2;6403:9;6394:7;6390:23;6386:32;6383:52;;;6431:1;6428;6421:12;6383:52;6454:29;6473:9;6454:29;:::i;:::-;6444:39;;6502:38;6536:2;6525:9;6521:18;6502:38;:::i;6551:380::-;6630:1;6626:12;;;;6673;;;6694:61;;6748:4;6740:6;6736:17;6726:27;;6694:61;6801:2;6793:6;6790:14;6770:18;6767:38;6764:161;;6847:10;6842:3;6838:20;6835:1;6828:31;6882:4;6879:1;6872:15;6910:4;6907:1;6900:15;6764:161;;6551:380;;;:::o;7062:545::-;7164:2;7159:3;7156:11;7153:448;;;7200:1;7225:5;7221:2;7214:17;7270:4;7266:2;7256:19;7340:2;7328:10;7324:19;7321:1;7317:27;7311:4;7307:38;7376:4;7364:10;7361:20;7358:47;;;-1:-1:-1;7399:4:1;7358:47;7454:2;7449:3;7445:12;7442:1;7438:20;7432:4;7428:31;7418:41;;7509:82;7527:2;7520:5;7517:13;7509:82;;;7572:17;;;7553:1;7542:13;7509:82;;7783:1352;7909:3;7903:10;7936:18;7928:6;7925:30;7922:56;;;7958:18;;:::i;:::-;7987:97;8077:6;8037:38;8069:4;8063:11;8037:38;:::i;:::-;8031:4;7987:97;:::i;:::-;8139:4;;8203:2;8192:14;;8220:1;8215:663;;;;8922:1;8939:6;8936:89;;;-1:-1:-1;8991:19:1;;;8985:26;8936:89;-1:-1:-1;;7740:1:1;7736:11;;;7732:24;7728:29;7718:40;7764:1;7760:11;;;7715:57;9038:81;;8185:944;;8215:663;7009:1;7002:14;;;7046:4;7033:18;;-1:-1:-1;;8251:20:1;;;8369:236;8383:7;8380:1;8377:14;8369:236;;;8472:19;;;8466:26;8451:42;;8564:27;;;;8532:1;8520:14;;;;8399:19;;8369:236;;;8373:3;8633:6;8624:7;8621:19;8618:201;;;8694:19;;;8688:26;-1:-1:-1;;8777:1:1;8773:14;;;8789:3;8769:24;8765:37;8761:42;8746:58;8731:74;;8618:201;-1:-1:-1;;;;;8865:1:1;8849:14;;;8845:22;8832:36;;-1:-1:-1;7783:1352:1:o;9837:127::-;9898:10;9893:3;9889:20;9886:1;9879:31;9929:4;9926:1;9919:15;9953:4;9950:1;9943:15;9969:125;10034:9;;;10055:10;;;10052:36;;;10068:18;;:::i;10099:344::-;10301:2;10283:21;;;10340:2;10320:18;;;10313:30;-1:-1:-1;;;10374:2:1;10359:18;;10352:50;10434:2;10419:18;;10099:344::o;10806:168::-;10879:9;;;10910;;10927:15;;;10921:22;;10907:37;10897:71;;10948:18;;:::i;11537:127::-;11598:10;11593:3;11589:20;11586:1;11579:31;11629:4;11626:1;11619:15;11653:4;11650:1;11643:15;12085:1256;12309:3;12347:6;12341:13;12373:4;12386:64;12443:6;12438:3;12433:2;12425:6;12421:15;12386:64;:::i;:::-;12513:13;;12472:16;;;;12535:68;12513:13;12472:16;12570:15;;;12535:68;:::i;:::-;12692:13;;12625:20;;;12665:1;;12730:36;12692:13;12730:36;:::i;:::-;12785:1;12802:18;;;12829:141;;;;12984:1;12979:337;;;;12795:521;;12829:141;-1:-1:-1;;12864:24:1;;12850:39;;12941:16;;12934:24;12920:39;;12909:51;;;-1:-1:-1;12829:141:1;;12979:337;13010:6;13007:1;13000:17;13058:2;13055:1;13045:16;13083:1;13097:169;13111:8;13108:1;13105:15;13097:169;;;13193:14;;13178:13;;;13171:37;13236:16;;;;13128:10;;13097:169;;;13101:3;;13297:8;13290:5;13286:20;13279:27;;12795:521;-1:-1:-1;13332:3:1;;12085:1256;-1:-1:-1;;;;;;;;;;12085:1256:1:o;14474:489::-;-1:-1:-1;;;;;14743:15:1;;;14725:34;;14795:15;;14790:2;14775:18;;14768:43;14842:2;14827:18;;14820:34;;;14890:3;14885:2;14870:18;;14863:31;;;14668:4;;14911:46;;14937:19;;14929:6;14911:46;:::i;:::-;14903:54;14474:489;-1:-1:-1;;;;;;14474:489:1:o;14968:249::-;15037:6;15090:2;15078:9;15069:7;15065:23;15061:32;15058:52;;;15106:1;15103;15096:12;15058:52;15138:9;15132:16;15157:30;15181:5;15157:30;:::i

Swarm Source

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