ETH Price: $2,897.10 (-10.61%)
Gas: 21 Gwei

Token

Nakama (NAKAMA)
 

Overview

Max Total Supply

4,888 NAKAMA

Holders

329

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rainbowfurby.eth
Balance
1 NAKAMA
0x203012cf17ad510213138655ee0cfb40b1682d3c
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:
NakamaMC

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-06-25
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


// 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/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/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/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: nakama.sol



pragma solidity ^0.8.4 .0;





// ███╗   ██╗ █████╗ ██╗  ██╗ █████╗ ███╗   ███╗ █████╗
// ████╗  ██║██╔══██╗██║ ██╔╝██╔══██╗████╗ ████║██╔══██╗
// ██╔██╗ ██║███████║█████╔╝ ███████║██╔████╔██║███████║
// ██║╚██╗██║██╔══██║██╔═██╗ ██╔══██║██║╚██╔╝██║██╔══██║
// ██║ ╚████║██║  ██║██║  ██╗██║  ██║██║ ╚═╝ ██║██║  ██║
// ╚═╝  ╚═══╝╚═╝  ╚═╝╚═╝  ╚═╝╚═╝  ╚═╝╚═╝     ╚═╝╚═╝  ╚═╝
// Embrace The Mischief - Small Creatures With A Big Attitude. Will You Survive The Journey Ahead?

/// @title ERC721A contract for the Nakama MC NFT collection
/// @author Syahmi Rafsan
contract NakamaMC is ERC721A, ERC721AQueryable, Ownable {
    uint256 public constant MAX_SUPPLY = 4888;
    uint256 public price;
    uint256 public maxPerWallet;
    string private _startTokenURI;
    string private _endTokenURI;
    bool public whitelistMinting = true;
    bytes32 public merkleRoot;

    constructor(
        string memory startTokenURI,
        string memory endTokenURI,
        bytes32 _merkleRoot,
        uint256 _maxPerWallet
    ) ERC721A("Nakama", "NAKAMA") {
        _startTokenURI = startTokenURI;
        _endTokenURI = endTokenURI;
        merkleRoot = _merkleRoot;
        maxPerWallet = _maxPerWallet;
    }

    /// @notice The NFT minting function for public
    /// @param quantity The number of NFT to be minted
    function mintPublic(uint256 quantity) external payable {
        require(msg.sender == tx.origin, "Minter is a contract");
        require(!whitelistMinting, "Mint is only for whitelist");
        require(
            _totalMinted() + quantity <= MAX_SUPPLY,
            "Maximum supply exceeded"
        );
        require(
            msg.value == quantity * price,
            "Funds are not the right amount"
        );
        _mint(msg.sender, quantity);
    }

    /// @notice The NFT minting function for whitelisted addresses
    /// @param quantity The number of NFT to be minted
    /// @param proof The Merkle proof to validate with the Merkle root
    function mintWhitelist(
        uint256 quantity,
        bytes32[] memory proof
    ) external payable {
        require(msg.sender == tx.origin, "Minter is a contract");
        require(whitelistMinting, "Mint is now open to public");
        require(
            _totalMinted() + quantity <= MAX_SUPPLY,
            "Maximum supply exceeded"
        );
        require(
            _numberMinted(msg.sender) + quantity <= maxPerWallet,
            "Maximum mint per wallet exceeded"
        );
        require(
            msg.value == quantity * price,
            "Funds are not the right amount"
        );
        require(
            isValid(proof, keccak256(abi.encodePacked(msg.sender))),
            "Sorry but you are not eligible to mint"
        );
        _mint(msg.sender, quantity);
    }

    /// @notice The function to validate the Merkle proof with the Merkle root via leaf
    /// @param proof The Merkle proof to be validated
    /// @param leaf The mint price in wei
    function isValid(
        bytes32[] memory proof,
        bytes32 leaf
    ) public view returns (bool) {
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    /// @notice The function to change mint configuration. Callable only by the contract owner.
    /// @param _merkleRoot The Merkle root of the whitelisted addresses
    /// @param _maxPerWallet The maximum number of mints per wallet
    function setMintConfig(
        bytes32 _merkleRoot,
        uint256 _maxPerWallet
    ) external onlyOwner {
        merkleRoot = _merkleRoot;
        maxPerWallet = _maxPerWallet;
    }

    /// @notice The function to change the mint price. Callable only by the contract owner.
    /// @param _price The mint price in wei
    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    /// @notice The function to withdraw the contract balance to the developer and project wallets. Callable only by the contract owner.
    function withdraw() external onlyOwner {
        address devWallet = 0x94c970c7c352AA8f9C1cca09396E07873f3FC5Be;
        address projectWallet = 0xb6e7E59121E5aF3465D9deEC32f9E59290B9458D;

        (bool success, ) = payable(devWallet).call{
            value: ((address(this).balance * 10) / 100)
        }("");
        require(success, "Transfer failed");

        (bool success2, ) = payable(projectWallet).call{
            value: (address(this).balance)
        }("");
        require(success2, "Transfer failed");
    }

    /// @notice The function to set the whitelist minting variable. Callable only by the contract owner.
    function setWhitelistMinting(bool _state) external onlyOwner {
        whitelistMinting = _state;
    }

    /// @notice The function to change the prefix and suffix of the tokenURI. Callable only by the contract owner.
    function setURI(
        string calldata startTokenURI,
        string calldata endTokenURI
    ) external onlyOwner {
        _startTokenURI = startTokenURI;
        _endTokenURI = endTokenURI;
    }

    /// @notice Overiddes the ERC721A function to show the tokenURI.
    function tokenURI(
        uint256 tokenId
    ) public view virtual override(ERC721A, IERC721A) returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        return
            bytes(_startTokenURI).length != 0
                ? string(
                    abi.encodePacked(
                        _startTokenURI,
                        _toString(tokenId),
                        _endTokenURI
                    )
                )
                : "";
    }

    /// @notice Overiddes the ERC721A function to start tokenId at 1.
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"startTokenURI","type":"string"},{"internalType":"string","name":"endTokenURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"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":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMintConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"startTokenURI","type":"string"},{"internalType":"string","name":"endTokenURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMinting","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":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","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":"whitelistMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600d805460ff191660011790553480156200001e57600080fd5b5060405162002734380380620027348339810160408190526200004191620001f9565b604051806040016040528060068152602001654e616b616d6160d01b815250604051806040016040528060068152602001654e414b414d4160d01b815250816002908162000090919062000302565b5060036200009f828262000302565b5050600160005550620000b233620000e2565b600b620000c0858262000302565b50600c620000cf848262000302565b50600e91909155600a5550620003ce9050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200015c57600080fd5b81516001600160401b038082111562000179576200017962000134565b604051601f8301601f19908116603f01168101908282118183101715620001a457620001a462000134565b81604052838152602092508683858801011115620001c157600080fd5b600091505b83821015620001e55785820183015181830184015290820190620001c6565b600093810190920192909252949350505050565b600080600080608085870312156200021057600080fd5b84516001600160401b03808211156200022857600080fd5b62000236888389016200014a565b955060208701519150808211156200024d57600080fd5b506200025c878288016200014a565b604087015160609097015195989097509350505050565b600181811c908216806200028857607f821691505b602082108103620002a957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002fd57600081815260208120601f850160051c81016020861015620002d85750805b601f850160051c820191505b81811015620002f957828155600101620002e4565b5050505b505050565b81516001600160401b038111156200031e576200031e62000134565b62000336816200032f845462000273565b84620002af565b602080601f8311600181146200036e5760008415620003555750858301515b600019600386901b1c1916600185901b178555620002f9565b600085815260208120601f198616915b828110156200039f578886015182559484019460019091019084016200037e565b5085821015620003be5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61235680620003de6000396000f3fe6080604052600436106101f95760003560e01c80638462151c1161010d578063b8a20ed0116100a0578063c87b56dd1161006f578063c87b56dd1461056b578063e985e9c51461058b578063eba2c6c4146105d4578063efd0cbf9146105f4578063f2fde38b1461060757600080fd5b8063b8a20ed0146104de578063bf2db4c8146104fe578063c23dc68f1461051e578063c40542ec1461054b57600080fd5b806399a2557a116100dc57806399a2557a14610475578063a035b1fe14610495578063a22cb465146104ab578063b88d4fde146104cb57600080fd5b80638462151c146103f55780638da5cb5b1461042257806391b7f5ed1461044057806395d89b411461046057600080fd5b806332cb6b0c116101905780635bbb21771161015f5780635bbb2177146103595780636352211e146103865780636992d229146103a657806370a08231146103c0578063715018a6146103e057600080fd5b806332cb6b0c146103055780633ccfd60b1461031b57806342842e0e14610330578063453c23101461034357600080fd5b8063095ea7b3116101cc578063095ea7b3146102a257806318160ddd146102b557806323b872dd146102dc5780632eb4a7ab146102ef57600080fd5b806301ffc9a7146101fe578063061431a81461023357806306fdde0314610248578063081812fc1461026a575b600080fd5b34801561020a57600080fd5b5061021e610219366004611a4f565b610627565b60405190151581526020015b60405180910390f35b610246610241366004611b31565b610679565b005b34801561025457600080fd5b5061025d6108f5565b60405161022a9190611bc7565b34801561027657600080fd5b5061028a610285366004611bda565b610987565b6040516001600160a01b03909116815260200161022a565b6102466102b0366004611c0f565b6109cb565b3480156102c157600080fd5b5060015460005403600019015b60405190815260200161022a565b6102466102ea366004611c39565b610a6b565b3480156102fb57600080fd5b506102ce600e5481565b34801561031157600080fd5b506102ce61131881565b34801561032757600080fd5b50610246610c04565b61024661033e366004611c39565b610d6f565b34801561034f57600080fd5b506102ce600a5481565b34801561036557600080fd5b50610379610374366004611c75565b610d8f565b60405161022a9190611d25565b34801561039257600080fd5b5061028a6103a1366004611bda565b610e5a565b3480156103b257600080fd5b50600d5461021e9060ff1681565b3480156103cc57600080fd5b506102ce6103db366004611d67565b610e65565b3480156103ec57600080fd5b50610246610eb3565b34801561040157600080fd5b50610415610410366004611d67565b610ec7565b60405161022a9190611d82565b34801561042e57600080fd5b506008546001600160a01b031661028a565b34801561044c57600080fd5b5061024661045b366004611bda565b610fcf565b34801561046c57600080fd5b5061025d610fdc565b34801561048157600080fd5b50610415610490366004611dba565b610feb565b3480156104a157600080fd5b506102ce60095481565b3480156104b757600080fd5b506102466104c6366004611dfd565b611172565b6102466104d9366004611e30565b6111de565b3480156104ea57600080fd5b5061021e6104f9366004611eef565b611222565b34801561050a57600080fd5b50610246610519366004611f7b565b611231565b34801561052a57600080fd5b5061053e610539366004611bda565b61125b565b60405161022a9190611fe6565b34801561055757600080fd5b50610246610566366004611ff4565b6112e3565b34801561057757600080fd5b5061025d610586366004611bda565b6112fe565b34801561059757600080fd5b5061021e6105a636600461200f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105e057600080fd5b506102466105ef366004612039565b611385565b610246610602366004611bda565b611398565b34801561061357600080fd5b50610246610622366004611d67565b6114fc565b60006301ffc9a760e01b6001600160e01b03198316148061065857506380ac58cd60e01b6001600160e01b03198316145b806106735750635b5e139f60e01b6001600160e01b03198316145b92915050565b3332146106c45760405162461bcd60e51b8152602060048201526014602482015273135a5b9d195c881a5cc8184818dbdb9d1c9858dd60621b60448201526064015b60405180910390fd5b600d5460ff166107165760405162461bcd60e51b815260206004820152601a60248201527f4d696e74206973206e6f77206f70656e20746f207075626c696300000000000060448201526064016106bb565b611318826107276000546000190190565b6107319190612071565b11156107795760405162461bcd60e51b815260206004820152601760248201527613585e1a5b5d5b481cdd5c1c1b1e48195e18d959591959604a1b60448201526064016106bb565b600a5433600090815260056020526040908190205484911c6001600160401b03166107a49190612071565b11156107f25760405162461bcd60e51b815260206004820181905260248201527f4d6178696d756d206d696e74207065722077616c6c657420657863656564656460448201526064016106bb565b6009546107ff9083612084565b341461084d5760405162461bcd60e51b815260206004820152601e60248201527f46756e647320617265206e6f742074686520726967687420616d6f756e74000060448201526064016106bb565b6040516bffffffffffffffffffffffff193360601b16602082015261088c90829060340160405160208183030381529060405280519060200120611222565b6108e75760405162461bcd60e51b815260206004820152602660248201527f536f7272792062757420796f7520617265206e6f7420656c696769626c6520746044820152651bc81b5a5b9d60d21b60648201526084016106bb565b6108f13383611572565b5050565b6060600280546109049061209b565b80601f01602080910402602001604051908101604052809291908181526020018280546109309061209b565b801561097d5780601f106109525761010080835404028352916020019161097d565b820191906000526020600020905b81548152906001019060200180831161096057829003601f168201915b5050505050905090565b600061099282611670565b6109af576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109d682610e5a565b9050336001600160a01b03821614610a0f576109f281336105a6565b610a0f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a76826116a5565b9050836001600160a01b0316816001600160a01b031614610aa95760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610af657610ad986336105a6565b610af657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b1d57604051633a954ecd60e21b815260040160405180910390fd5b8015610b2857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610bba57600184016000818152600460205260408120549003610bb8576000548114610bb85760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c0c611714565b7394c970c7c352aa8f9c1cca09396e07873f3fc5be73b6e7e59121e5af3465d9deec32f9e59290b9458d6000826064610c4647600a612084565b610c5091906120d5565b604051600081818185875af1925050503d8060008114610c8c576040519150601f19603f3d011682016040523d82523d6000602084013e610c91565b606091505b5050905080610cd45760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016106bb565b6000826001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d21576040519150601f19603f3d011682016040523d82523d6000602084013e610d26565b606091505b5050905080610d695760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016106bb565b50505050565b610d8a838383604051806020016040528060008152506111de565b505050565b6060816000816001600160401b03811115610dac57610dac611a6c565b604051908082528060200260200182016040528015610dfe57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610dca5790505b50905060005b828114610e5157610e2c868683818110610e2057610e206120f7565b9050602002013561125b565b828281518110610e3e57610e3e6120f7565b6020908102919091010152600101610e04565b50949350505050565b6000610673826116a5565b60006001600160a01b038216610e8e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610ebb611714565b610ec5600061176e565b565b60606000806000610ed785610e65565b90506000816001600160401b03811115610ef357610ef3611a6c565b604051908082528060200260200182016040528015610f1c578160200160208202803683370190505b509050610f4960408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610fc357610f5c816117c0565b91508160400151610fbb5781516001600160a01b031615610f7c57815194505b876001600160a01b0316856001600160a01b031603610fbb5780838780600101985081518110610fae57610fae6120f7565b6020026020010181815250505b600101610f4c565b50909695505050505050565b610fd7611714565b600955565b6060600380546109049061209b565b606081831061100d57604051631960ccad60e11b815260040160405180910390fd5b60008061101960005490565b9050600185101561102957600194505b80841115611035578093505b600061104087610e65565b90508486101561105f5785850381811015611059578091505b50611063565b5060005b6000816001600160401b0381111561107d5761107d611a6c565b6040519080825280602002602001820160405280156110a6578160200160208202803683370190505b509050816000036110bc57935061116b92505050565b60006110c78861125b565b9050600081604001516110d8575080515b885b8881141580156110ea5750848714155b1561115f576110f8816117c0565b925082604001516111575782516001600160a01b03161561111857825191505b8a6001600160a01b0316826001600160a01b031603611157578084888060010199508151811061114a5761114a6120f7565b6020026020010181815250505b6001016110da565b50505092835250909150505b9392505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111e9848484610a6b565b6001600160a01b0383163b15610d6957611205848484846117fc565b610d69576040516368d2bf6b60e11b815260040160405180910390fd5b600061116b83600e54846118e7565b611239611714565b600b611246848683612153565b50600c611254828483612153565b5050505050565b60408051608081018252600080825260208201819052918101829052606081019190915260408051608081018252600080825260208201819052918101829052606081019190915260018310806112b457506000548310155b156112bf5792915050565b6112c8836117c0565b90508060400151156112da5792915050565b61116b836118fd565b6112eb611714565b600d805460ff1916911515919091179055565b606061130982611670565b61132657604051630a14c4b560e41b815260040160405180910390fd5b600b80546113339061209b565b90506000036113515760405180602001604052806000815250610673565b600b61135c83611932565b600c60405160200161137093929190612285565b60405160208183030381529060405292915050565b61138d611714565b600e91909155600a55565b3332146113de5760405162461bcd60e51b8152602060048201526014602482015273135a5b9d195c881a5cc8184818dbdb9d1c9858dd60621b60448201526064016106bb565b600d5460ff16156114315760405162461bcd60e51b815260206004820152601a60248201527f4d696e74206973206f6e6c7920666f722077686974656c69737400000000000060448201526064016106bb565b611318816114426000546000190190565b61144c9190612071565b11156114945760405162461bcd60e51b815260206004820152601760248201527613585e1a5b5d5b481cdd5c1c1b1e48195e18d959591959604a1b60448201526064016106bb565b6009546114a19082612084565b34146114ef5760405162461bcd60e51b815260206004820152601e60248201527f46756e647320617265206e6f742074686520726967687420616d6f756e74000060448201526064016106bb565b6114f93382611572565b50565b611504611714565b6001600160a01b0381166115695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bb565b6114f98161176e565b60008054908290036115975760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461164657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161160e565b508160000361166757604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081600111158015611684575060005482105b8015610673575050600090815260046020526040902054600160e01b161590565b600081806001116116fb576000548110156116fb5760008181526004602052604081205490600160e01b821690036116f9575b8060000361116b5750600019016000818152600460205260409020546116d8565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610ec55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106bb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461067390611976565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118319033908990889088906004016122ad565b6020604051808303816000875af192505050801561186c575060408051601f3d908101601f19168201909252611869918101906122ea565b60015b6118ca573d80801561189a576040519150601f19603f3d011682016040523d82523d6000602084013e61189f565b606091505b5080516000036118c2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000826118f485846119bd565b14949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261067361192d836116a5565b611976565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061194c5750819003601f19909101908152919050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b600081815b8451811015611a02576119ee828683815181106119e1576119e16120f7565b6020026020010151611a0a565b9150806119fa81612307565b9150506119c2565b509392505050565b6000818310611a2657600082815260208490526040902061116b565b600083815260208390526040902061116b565b6001600160e01b0319811681146114f957600080fd5b600060208284031215611a6157600080fd5b813561116b81611a39565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611aaa57611aaa611a6c565b604052919050565b600082601f830112611ac357600080fd5b813560206001600160401b03821115611ade57611ade611a6c565b8160051b611aed828201611a82565b9283528481018201928281019087851115611b0757600080fd5b83870192505b84831015611b2657823582529183019190830190611b0d565b979650505050505050565b60008060408385031215611b4457600080fd5b8235915060208301356001600160401b03811115611b6157600080fd5b611b6d85828601611ab2565b9150509250929050565b60005b83811015611b92578181015183820152602001611b7a565b50506000910152565b60008151808452611bb3816020860160208601611b77565b601f01601f19169290920160200192915050565b60208152600061116b6020830184611b9b565b600060208284031215611bec57600080fd5b5035919050565b80356001600160a01b0381168114611c0a57600080fd5b919050565b60008060408385031215611c2257600080fd5b611c2b83611bf3565b946020939093013593505050565b600080600060608486031215611c4e57600080fd5b611c5784611bf3565b9250611c6560208501611bf3565b9150604084013590509250925092565b60008060208385031215611c8857600080fd5b82356001600160401b0380821115611c9f57600080fd5b818501915085601f830112611cb357600080fd5b813581811115611cc257600080fd5b8660208260051b8501011115611cd757600080fd5b60209290920196919550909350505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610fc357611d54838551611ce9565b9284019260809290920191600101611d41565b600060208284031215611d7957600080fd5b61116b82611bf3565b6020808252825182820181905260009190848201906040850190845b81811015610fc357835183529284019291840191600101611d9e565b600080600060608486031215611dcf57600080fd5b611dd884611bf3565b95602085013595506040909401359392505050565b80358015158114611c0a57600080fd5b60008060408385031215611e1057600080fd5b611e1983611bf3565b9150611e2760208401611ded565b90509250929050565b60008060008060808587031215611e4657600080fd5b611e4f85611bf3565b93506020611e5e818701611bf3565b93506040860135925060608601356001600160401b0380821115611e8157600080fd5b818801915088601f830112611e9557600080fd5b813581811115611ea757611ea7611a6c565b611eb9601f8201601f19168501611a82565b91508082528984828501011115611ecf57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215611f0257600080fd5b82356001600160401b03811115611f1857600080fd5b611f2485828601611ab2565b95602094909401359450505050565b60008083601f840112611f4557600080fd5b5081356001600160401b03811115611f5c57600080fd5b602083019150836020828501011115611f7457600080fd5b9250929050565b60008060008060408587031215611f9157600080fd5b84356001600160401b0380821115611fa857600080fd5b611fb488838901611f33565b90965094506020870135915080821115611fcd57600080fd5b50611fda87828801611f33565b95989497509550505050565b608081016106738284611ce9565b60006020828403121561200657600080fd5b61116b82611ded565b6000806040838503121561202257600080fd5b61202b83611bf3565b9150611e2760208401611bf3565b6000806040838503121561204c57600080fd5b50508035926020909101359150565b634e487b7160e01b600052601160045260246000fd5b808201808211156106735761067361205b565b80820281158282048414176106735761067361205b565b600181811c908216806120af57607f821691505b6020821081036120cf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000826120f257634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b601f821115610d8a57600081815260208120601f850160051c810160208610156121345750805b601f850160051c820191505b81811015610bfc57828155600101612140565b6001600160401b0383111561216a5761216a611a6c565b61217e83612178835461209b565b8361210d565b6000601f8411600181146121b2576000851561219a5750838201355b600019600387901b1c1916600186901b178355611254565b600083815260209020601f19861690835b828110156121e357868501358255602094850194600190920191016121c3565b50868210156122005760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6000815461221f8161209b565b60018281168015612237576001811461224c5761227b565b60ff198416875282151583028701945061227b565b8560005260208060002060005b858110156122725781548a820152908401908201612259565b50505082870194505b5050505092915050565b60006122918286612212565b84516122a1818360208901611b77565b611b2681830186612212565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122e090830184611b9b565b9695505050505050565b6000602082840312156122fc57600080fd5b815161116b81611a39565b6000600182016123195761231961205b565b506001019056fea26469706673582212205ebab5fb8f672f6788405ffdcb46e7175dbb4d88f8133774a2983f38f55fd50b64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0779beee49fba9337dac63f6fa9d7bb8489f2e8caaa756f75f921715295fd8aae00000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f6e616b616d612e75702e7261696c7761792e6170702f000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80638462151c1161010d578063b8a20ed0116100a0578063c87b56dd1161006f578063c87b56dd1461056b578063e985e9c51461058b578063eba2c6c4146105d4578063efd0cbf9146105f4578063f2fde38b1461060757600080fd5b8063b8a20ed0146104de578063bf2db4c8146104fe578063c23dc68f1461051e578063c40542ec1461054b57600080fd5b806399a2557a116100dc57806399a2557a14610475578063a035b1fe14610495578063a22cb465146104ab578063b88d4fde146104cb57600080fd5b80638462151c146103f55780638da5cb5b1461042257806391b7f5ed1461044057806395d89b411461046057600080fd5b806332cb6b0c116101905780635bbb21771161015f5780635bbb2177146103595780636352211e146103865780636992d229146103a657806370a08231146103c0578063715018a6146103e057600080fd5b806332cb6b0c146103055780633ccfd60b1461031b57806342842e0e14610330578063453c23101461034357600080fd5b8063095ea7b3116101cc578063095ea7b3146102a257806318160ddd146102b557806323b872dd146102dc5780632eb4a7ab146102ef57600080fd5b806301ffc9a7146101fe578063061431a81461023357806306fdde0314610248578063081812fc1461026a575b600080fd5b34801561020a57600080fd5b5061021e610219366004611a4f565b610627565b60405190151581526020015b60405180910390f35b610246610241366004611b31565b610679565b005b34801561025457600080fd5b5061025d6108f5565b60405161022a9190611bc7565b34801561027657600080fd5b5061028a610285366004611bda565b610987565b6040516001600160a01b03909116815260200161022a565b6102466102b0366004611c0f565b6109cb565b3480156102c157600080fd5b5060015460005403600019015b60405190815260200161022a565b6102466102ea366004611c39565b610a6b565b3480156102fb57600080fd5b506102ce600e5481565b34801561031157600080fd5b506102ce61131881565b34801561032757600080fd5b50610246610c04565b61024661033e366004611c39565b610d6f565b34801561034f57600080fd5b506102ce600a5481565b34801561036557600080fd5b50610379610374366004611c75565b610d8f565b60405161022a9190611d25565b34801561039257600080fd5b5061028a6103a1366004611bda565b610e5a565b3480156103b257600080fd5b50600d5461021e9060ff1681565b3480156103cc57600080fd5b506102ce6103db366004611d67565b610e65565b3480156103ec57600080fd5b50610246610eb3565b34801561040157600080fd5b50610415610410366004611d67565b610ec7565b60405161022a9190611d82565b34801561042e57600080fd5b506008546001600160a01b031661028a565b34801561044c57600080fd5b5061024661045b366004611bda565b610fcf565b34801561046c57600080fd5b5061025d610fdc565b34801561048157600080fd5b50610415610490366004611dba565b610feb565b3480156104a157600080fd5b506102ce60095481565b3480156104b757600080fd5b506102466104c6366004611dfd565b611172565b6102466104d9366004611e30565b6111de565b3480156104ea57600080fd5b5061021e6104f9366004611eef565b611222565b34801561050a57600080fd5b50610246610519366004611f7b565b611231565b34801561052a57600080fd5b5061053e610539366004611bda565b61125b565b60405161022a9190611fe6565b34801561055757600080fd5b50610246610566366004611ff4565b6112e3565b34801561057757600080fd5b5061025d610586366004611bda565b6112fe565b34801561059757600080fd5b5061021e6105a636600461200f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105e057600080fd5b506102466105ef366004612039565b611385565b610246610602366004611bda565b611398565b34801561061357600080fd5b50610246610622366004611d67565b6114fc565b60006301ffc9a760e01b6001600160e01b03198316148061065857506380ac58cd60e01b6001600160e01b03198316145b806106735750635b5e139f60e01b6001600160e01b03198316145b92915050565b3332146106c45760405162461bcd60e51b8152602060048201526014602482015273135a5b9d195c881a5cc8184818dbdb9d1c9858dd60621b60448201526064015b60405180910390fd5b600d5460ff166107165760405162461bcd60e51b815260206004820152601a60248201527f4d696e74206973206e6f77206f70656e20746f207075626c696300000000000060448201526064016106bb565b611318826107276000546000190190565b6107319190612071565b11156107795760405162461bcd60e51b815260206004820152601760248201527613585e1a5b5d5b481cdd5c1c1b1e48195e18d959591959604a1b60448201526064016106bb565b600a5433600090815260056020526040908190205484911c6001600160401b03166107a49190612071565b11156107f25760405162461bcd60e51b815260206004820181905260248201527f4d6178696d756d206d696e74207065722077616c6c657420657863656564656460448201526064016106bb565b6009546107ff9083612084565b341461084d5760405162461bcd60e51b815260206004820152601e60248201527f46756e647320617265206e6f742074686520726967687420616d6f756e74000060448201526064016106bb565b6040516bffffffffffffffffffffffff193360601b16602082015261088c90829060340160405160208183030381529060405280519060200120611222565b6108e75760405162461bcd60e51b815260206004820152602660248201527f536f7272792062757420796f7520617265206e6f7420656c696769626c6520746044820152651bc81b5a5b9d60d21b60648201526084016106bb565b6108f13383611572565b5050565b6060600280546109049061209b565b80601f01602080910402602001604051908101604052809291908181526020018280546109309061209b565b801561097d5780601f106109525761010080835404028352916020019161097d565b820191906000526020600020905b81548152906001019060200180831161096057829003601f168201915b5050505050905090565b600061099282611670565b6109af576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109d682610e5a565b9050336001600160a01b03821614610a0f576109f281336105a6565b610a0f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a76826116a5565b9050836001600160a01b0316816001600160a01b031614610aa95760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610af657610ad986336105a6565b610af657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b1d57604051633a954ecd60e21b815260040160405180910390fd5b8015610b2857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610bba57600184016000818152600460205260408120549003610bb8576000548114610bb85760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c0c611714565b7394c970c7c352aa8f9c1cca09396e07873f3fc5be73b6e7e59121e5af3465d9deec32f9e59290b9458d6000826064610c4647600a612084565b610c5091906120d5565b604051600081818185875af1925050503d8060008114610c8c576040519150601f19603f3d011682016040523d82523d6000602084013e610c91565b606091505b5050905080610cd45760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016106bb565b6000826001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d21576040519150601f19603f3d011682016040523d82523d6000602084013e610d26565b606091505b5050905080610d695760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016106bb565b50505050565b610d8a838383604051806020016040528060008152506111de565b505050565b6060816000816001600160401b03811115610dac57610dac611a6c565b604051908082528060200260200182016040528015610dfe57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610dca5790505b50905060005b828114610e5157610e2c868683818110610e2057610e206120f7565b9050602002013561125b565b828281518110610e3e57610e3e6120f7565b6020908102919091010152600101610e04565b50949350505050565b6000610673826116a5565b60006001600160a01b038216610e8e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610ebb611714565b610ec5600061176e565b565b60606000806000610ed785610e65565b90506000816001600160401b03811115610ef357610ef3611a6c565b604051908082528060200260200182016040528015610f1c578160200160208202803683370190505b509050610f4960408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610fc357610f5c816117c0565b91508160400151610fbb5781516001600160a01b031615610f7c57815194505b876001600160a01b0316856001600160a01b031603610fbb5780838780600101985081518110610fae57610fae6120f7565b6020026020010181815250505b600101610f4c565b50909695505050505050565b610fd7611714565b600955565b6060600380546109049061209b565b606081831061100d57604051631960ccad60e11b815260040160405180910390fd5b60008061101960005490565b9050600185101561102957600194505b80841115611035578093505b600061104087610e65565b90508486101561105f5785850381811015611059578091505b50611063565b5060005b6000816001600160401b0381111561107d5761107d611a6c565b6040519080825280602002602001820160405280156110a6578160200160208202803683370190505b509050816000036110bc57935061116b92505050565b60006110c78861125b565b9050600081604001516110d8575080515b885b8881141580156110ea5750848714155b1561115f576110f8816117c0565b925082604001516111575782516001600160a01b03161561111857825191505b8a6001600160a01b0316826001600160a01b031603611157578084888060010199508151811061114a5761114a6120f7565b6020026020010181815250505b6001016110da565b50505092835250909150505b9392505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111e9848484610a6b565b6001600160a01b0383163b15610d6957611205848484846117fc565b610d69576040516368d2bf6b60e11b815260040160405180910390fd5b600061116b83600e54846118e7565b611239611714565b600b611246848683612153565b50600c611254828483612153565b5050505050565b60408051608081018252600080825260208201819052918101829052606081019190915260408051608081018252600080825260208201819052918101829052606081019190915260018310806112b457506000548310155b156112bf5792915050565b6112c8836117c0565b90508060400151156112da5792915050565b61116b836118fd565b6112eb611714565b600d805460ff1916911515919091179055565b606061130982611670565b61132657604051630a14c4b560e41b815260040160405180910390fd5b600b80546113339061209b565b90506000036113515760405180602001604052806000815250610673565b600b61135c83611932565b600c60405160200161137093929190612285565b60405160208183030381529060405292915050565b61138d611714565b600e91909155600a55565b3332146113de5760405162461bcd60e51b8152602060048201526014602482015273135a5b9d195c881a5cc8184818dbdb9d1c9858dd60621b60448201526064016106bb565b600d5460ff16156114315760405162461bcd60e51b815260206004820152601a60248201527f4d696e74206973206f6e6c7920666f722077686974656c69737400000000000060448201526064016106bb565b611318816114426000546000190190565b61144c9190612071565b11156114945760405162461bcd60e51b815260206004820152601760248201527613585e1a5b5d5b481cdd5c1c1b1e48195e18d959591959604a1b60448201526064016106bb565b6009546114a19082612084565b34146114ef5760405162461bcd60e51b815260206004820152601e60248201527f46756e647320617265206e6f742074686520726967687420616d6f756e74000060448201526064016106bb565b6114f93382611572565b50565b611504611714565b6001600160a01b0381166115695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bb565b6114f98161176e565b60008054908290036115975760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461164657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161160e565b508160000361166757604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081600111158015611684575060005482105b8015610673575050600090815260046020526040902054600160e01b161590565b600081806001116116fb576000548110156116fb5760008181526004602052604081205490600160e01b821690036116f9575b8060000361116b5750600019016000818152600460205260409020546116d8565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610ec55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106bb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461067390611976565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118319033908990889088906004016122ad565b6020604051808303816000875af192505050801561186c575060408051601f3d908101601f19168201909252611869918101906122ea565b60015b6118ca573d80801561189a576040519150601f19603f3d011682016040523d82523d6000602084013e61189f565b606091505b5080516000036118c2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000826118f485846119bd565b14949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261067361192d836116a5565b611976565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061194c5750819003601f19909101908152919050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b600081815b8451811015611a02576119ee828683815181106119e1576119e16120f7565b6020026020010151611a0a565b9150806119fa81612307565b9150506119c2565b509392505050565b6000818310611a2657600082815260208490526040902061116b565b600083815260208390526040902061116b565b6001600160e01b0319811681146114f957600080fd5b600060208284031215611a6157600080fd5b813561116b81611a39565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611aaa57611aaa611a6c565b604052919050565b600082601f830112611ac357600080fd5b813560206001600160401b03821115611ade57611ade611a6c565b8160051b611aed828201611a82565b9283528481018201928281019087851115611b0757600080fd5b83870192505b84831015611b2657823582529183019190830190611b0d565b979650505050505050565b60008060408385031215611b4457600080fd5b8235915060208301356001600160401b03811115611b6157600080fd5b611b6d85828601611ab2565b9150509250929050565b60005b83811015611b92578181015183820152602001611b7a565b50506000910152565b60008151808452611bb3816020860160208601611b77565b601f01601f19169290920160200192915050565b60208152600061116b6020830184611b9b565b600060208284031215611bec57600080fd5b5035919050565b80356001600160a01b0381168114611c0a57600080fd5b919050565b60008060408385031215611c2257600080fd5b611c2b83611bf3565b946020939093013593505050565b600080600060608486031215611c4e57600080fd5b611c5784611bf3565b9250611c6560208501611bf3565b9150604084013590509250925092565b60008060208385031215611c8857600080fd5b82356001600160401b0380821115611c9f57600080fd5b818501915085601f830112611cb357600080fd5b813581811115611cc257600080fd5b8660208260051b8501011115611cd757600080fd5b60209290920196919550909350505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610fc357611d54838551611ce9565b9284019260809290920191600101611d41565b600060208284031215611d7957600080fd5b61116b82611bf3565b6020808252825182820181905260009190848201906040850190845b81811015610fc357835183529284019291840191600101611d9e565b600080600060608486031215611dcf57600080fd5b611dd884611bf3565b95602085013595506040909401359392505050565b80358015158114611c0a57600080fd5b60008060408385031215611e1057600080fd5b611e1983611bf3565b9150611e2760208401611ded565b90509250929050565b60008060008060808587031215611e4657600080fd5b611e4f85611bf3565b93506020611e5e818701611bf3565b93506040860135925060608601356001600160401b0380821115611e8157600080fd5b818801915088601f830112611e9557600080fd5b813581811115611ea757611ea7611a6c565b611eb9601f8201601f19168501611a82565b91508082528984828501011115611ecf57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215611f0257600080fd5b82356001600160401b03811115611f1857600080fd5b611f2485828601611ab2565b95602094909401359450505050565b60008083601f840112611f4557600080fd5b5081356001600160401b03811115611f5c57600080fd5b602083019150836020828501011115611f7457600080fd5b9250929050565b60008060008060408587031215611f9157600080fd5b84356001600160401b0380821115611fa857600080fd5b611fb488838901611f33565b90965094506020870135915080821115611fcd57600080fd5b50611fda87828801611f33565b95989497509550505050565b608081016106738284611ce9565b60006020828403121561200657600080fd5b61116b82611ded565b6000806040838503121561202257600080fd5b61202b83611bf3565b9150611e2760208401611bf3565b6000806040838503121561204c57600080fd5b50508035926020909101359150565b634e487b7160e01b600052601160045260246000fd5b808201808211156106735761067361205b565b80820281158282048414176106735761067361205b565b600181811c908216806120af57607f821691505b6020821081036120cf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000826120f257634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b601f821115610d8a57600081815260208120601f850160051c810160208610156121345750805b601f850160051c820191505b81811015610bfc57828155600101612140565b6001600160401b0383111561216a5761216a611a6c565b61217e83612178835461209b565b8361210d565b6000601f8411600181146121b2576000851561219a5750838201355b600019600387901b1c1916600186901b178355611254565b600083815260209020601f19861690835b828110156121e357868501358255602094850194600190920191016121c3565b50868210156122005760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6000815461221f8161209b565b60018281168015612237576001811461224c5761227b565b60ff198416875282151583028701945061227b565b8560005260208060002060005b858110156122725781548a820152908401908201612259565b50505082870194505b5050505092915050565b60006122918286612212565b84516122a1818360208901611b77565b611b2681830186612212565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122e090830184611b9b565b9695505050505050565b6000602082840312156122fc57600080fd5b815161116b81611a39565b6000600182016123195761231961205b565b506001019056fea26469706673582212205ebab5fb8f672f6788405ffdcb46e7175dbb4d88f8133774a2983f38f55fd50b64736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0779beee49fba9337dac63f6fa9d7bb8489f2e8caaa756f75f921715295fd8aae00000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f6e616b616d612e75702e7261696c7761792e6170702f000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : startTokenURI (string): https://nakama.up.railway.app/
Arg [1] : endTokenURI (string): .json
Arg [2] : _merkleRoot (bytes32): 0x779beee49fba9337dac63f6fa9d7bb8489f2e8caaa756f75f921715295fd8aae
Arg [3] : _maxPerWallet (uint256): 2000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 779beee49fba9337dac63f6fa9d7bb8489f2e8caaa756f75f921715295fd8aae
Arg [3] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [5] : 68747470733a2f2f6e616b616d612e75702e7261696c7761792e6170702f0000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 2e6a736f6e000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

73906:5344:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33279:639;;;;;;;;;;-1:-1:-1;33279:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33279:639:0;;;;;;;;75366:828;;;;;;:::i;:::-;;:::i;:::-;;34181:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40672:218::-;;;;;;;;;;-1:-1:-1;40672:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3247:32:1;;;3229:51;;3217:2;3202:18;40672:218:0;3083:203:1;40105:408:0;;;;;;:::i;:::-;;:::i;29932:323::-;;;;;;;;;;-1:-1:-1;79238:1:0;30206:12;29993:7;30190:13;:28;-1:-1:-1;;30190:46:0;29932:323;;;3874:25:1;;;3862:2;3847:18;29932:323:0;3728:177:1;44311:2825:0;;;;;;:::i;:::-;;:::i;74190:25::-;;;;;;;;;;;;;;;;73969:41;;;;;;;;;;;;74006:4;73969:41;;77383:538;;;;;;;;;;;;;:::i;47232:193::-;;;;;;:::i;:::-;;:::i;74044:27::-;;;;;;;;;;;;;;;;67978:528;;;;;;;;;;-1:-1:-1;67978:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35574:152::-;;;;;;;;;;-1:-1:-1;35574:152:0;;;;;:::i;:::-;;:::i;74148:35::-;;;;;;;;;;-1:-1:-1;74148:35:0;;;;;;;;31116:233;;;;;;;;;;-1:-1:-1;31116:233:0;;;;;:::i;:::-;;:::i;11534:103::-;;;;;;;;;;;;;:::i;71854:900::-;;;;;;;;;;-1:-1:-1;71854:900:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10886:87::-;;;;;;;;;;-1:-1:-1;10959:6:0;;-1:-1:-1;;;;;10959:6:0;10886:87;;77151:86;;;;;;;;;;-1:-1:-1;77151:86:0;;;;;:::i;:::-;;:::i;34357:104::-;;;;;;;;;;;;;:::i;68894:2513::-;;;;;;;;;;-1:-1:-1;68894:2513:0;;;;;:::i;:::-;;:::i;74017:20::-;;;;;;;;;;;;;;;;41230:234;;;;;;;;;;-1:-1:-1;41230:234:0;;;;;:::i;:::-;;:::i;48023:407::-;;;;;;:::i;:::-;;:::i;76389:176::-;;;;;;;;;;-1:-1:-1;76389:176:0;;;;;:::i;:::-;;:::i;78264:206::-;;;;;;;;;;-1:-1:-1;78264:206:0;;;;;:::i;:::-;;:::i;67391:428::-;;;;;;;;;;-1:-1:-1;67391:428:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;78035:105::-;;;;;;;;;;-1:-1:-1;78035:105:0;;;;;:::i;:::-;;:::i;78548:519::-;;;;;;;;;;-1:-1:-1;78548:519:0;;;;;:::i;:::-;;:::i;41621:164::-;;;;;;;;;;-1:-1:-1;41621:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41742:25:0;;;41718:4;41742:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41621:164;76812:193;;;;;;;;;;-1:-1:-1;76812:193:0;;;;;:::i;:::-;;:::i;74684:478::-;;;;;;:::i;:::-;;:::i;11792:201::-;;;;;;;;;;-1:-1:-1;11792:201:0;;;;;:::i;:::-;;:::i;33279:639::-;33364:4;-1:-1:-1;;;;;;;;;33688:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;33765:25:0;;;33688:102;:179;;;-1:-1:-1;;;;;;;;;;33842:25:0;;;33688:179;33668:199;33279:639;-1:-1:-1;;33279:639:0:o;75366:828::-;75492:10;75506:9;75492:23;75484:56;;;;-1:-1:-1;;;75484:56:0;;11366:2:1;75484:56:0;;;11348:21:1;11405:2;11385:18;;;11378:30;-1:-1:-1;;;11424:18:1;;;11417:50;11484:18;;75484:56:0;;;;;;;;;75559:16;;;;75551:55;;;;-1:-1:-1;;;75551:55:0;;11715:2:1;75551:55:0;;;11697:21:1;11754:2;11734:18;;;11727:30;11793:28;11773:18;;;11766:56;11839:18;;75551:55:0;11513:350:1;75551:55:0;74006:4;75656:8;75639:14;30408:7;30599:13;-1:-1:-1;;30599:31:0;;30353:296;75639:14;:25;;;;:::i;:::-;:39;;75617:112;;;;-1:-1:-1;;;75617:112:0;;12332:2:1;75617:112:0;;;12314:21:1;12371:2;12351:18;;;12344:30;-1:-1:-1;;;12390:18:1;;;12383:53;12453:18;;75617:112:0;12130:347:1;75617:112:0;75802:12;;75776:10;31492:7;31520:25;;;:18;:25;;25413:2;31520:25;;;;;75790:8;;31520:50;-1:-1:-1;;;;;31519:82:0;75762:36;;;;:::i;:::-;:52;;75740:134;;;;-1:-1:-1;;;75740:134:0;;12684:2:1;75740:134:0;;;12666:21:1;;;12703:18;;;12696:30;12762:34;12742:18;;;12735:62;12814:18;;75740:134:0;12482:356:1;75740:134:0;75931:5;;75920:16;;:8;:16;:::i;:::-;75907:9;:29;75885:109;;;;-1:-1:-1;;;75885:109:0;;13218:2:1;75885:109:0;;;13200:21:1;13257:2;13237:18;;;13230:30;13296:32;13276:18;;;13269:60;13346:18;;75885:109:0;13016:354:1;75885:109:0;76052:28;;-1:-1:-1;;76069:10:0;13524:2:1;13520:15;13516:53;76052:28:0;;;13504:66:1;76027:55:0;;76035:5;;13586:12:1;;76052:28:0;;;;;;;;;;;;76042:39;;;;;;76027:7;:55::i;:::-;76005:143;;;;-1:-1:-1;;;76005:143:0;;13811:2:1;76005:143:0;;;13793:21:1;13850:2;13830:18;;;13823:30;13889:34;13869:18;;;13862:62;-1:-1:-1;;;13940:18:1;;;13933:36;13986:19;;76005:143:0;13609:402:1;76005:143:0;76159:27;76165:10;76177:8;76159:5;:27::i;:::-;75366:828;;:::o;34181:100::-;34235:13;34268:5;34261:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34181:100;:::o;40672:218::-;40748:7;40773:16;40781:7;40773;:16::i;:::-;40768:64;;40798:34;;-1:-1:-1;;;40798:34:0;;;;;;;;;;;40768:64;-1:-1:-1;40852:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;40852:30:0;;40672:218::o;40105:408::-;40194:13;40210:16;40218:7;40210;:16::i;:::-;40194:32;-1:-1:-1;64438:10:0;-1:-1:-1;;;;;40243:28:0;;;40239:175;;40291:44;40308:5;64438:10;41621:164;:::i;40291:44::-;40286:128;;40363:35;;-1:-1:-1;;;40363:35:0;;;;;;;;;;;40286:128;40426:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;40426:35:0;-1:-1:-1;;;;;40426:35:0;;;;;;;;;40477:28;;40426:24;;40477:28;;;;;;;40183:330;40105:408;;:::o;44311:2825::-;44453:27;44483;44502:7;44483:18;:27::i;:::-;44453:57;;44568:4;-1:-1:-1;;;;;44527:45:0;44543:19;-1:-1:-1;;;;;44527:45:0;;44523:86;;44581:28;;-1:-1:-1;;;44581:28:0;;;;;;;;;;;44523:86;44623:27;43419:24;;;:15;:24;;;;;43647:26;;64438:10;43044:30;;;-1:-1:-1;;;;;42737:28:0;;43022:20;;;43019:56;44809:180;;44902:43;44919:4;64438:10;41621:164;:::i;44902:43::-;44897:92;;44954:35;;-1:-1:-1;;;44954:35:0;;;;;;;;;;;44897:92;-1:-1:-1;;;;;45006:16:0;;45002:52;;45031:23;;-1:-1:-1;;;45031:23:0;;;;;;;;;;;45002:52;45203:15;45200:160;;;45343:1;45322:19;45315:30;45200:160;-1:-1:-1;;;;;45740:24:0;;;;;;;:18;:24;;;;;;45738:26;;-1:-1:-1;;45738:26:0;;;45809:22;;;;;;;;;45807:24;;-1:-1:-1;45807:24:0;;;38963:11;38938:23;38934:41;38921:63;-1:-1:-1;;;38921:63:0;46102:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;46397:47:0;;:52;;46393:627;;46502:1;46492:11;;46470:19;46625:30;;;:17;:30;;;;;;:35;;46621:384;;46763:13;;46748:11;:28;46744:242;;46910:30;;;;:17;:30;;;;;:52;;;46744:242;46451:569;46393:627;47067:7;47063:2;-1:-1:-1;;;;;47048:27:0;47057:4;-1:-1:-1;;;;;47048:27:0;;;;;;;;;;;47086:42;44442:2694;;;44311:2825;;;:::o;77383:538::-;10772:13;:11;:13::i;:::-;77453:42:::1;77530;77433:17;77453:42:::0;77681:3:::1;77651:26;:21;77675:2;77651:26;:::i;:::-;77650:34;;;;:::i;:::-;77604:96;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77585:115;;;77719:7;77711:35;;;::::0;-1:-1:-1;;;77711:35:0;;15035:2:1;77711:35:0::1;::::0;::::1;15017:21:1::0;15074:2;15054:18;;;15047:30;-1:-1:-1;;;15093:18:1;;;15086:45;15148:18;;77711:35:0::1;14833:339:1::0;77711:35:0::1;77760:13;77787;-1:-1:-1::0;;;;;77779:27:0::1;77829:21;77779:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77759:107;;;77885:8;77877:36;;;::::0;-1:-1:-1;;;77877:36:0;;15035:2:1;77877:36:0::1;::::0;::::1;15017:21:1::0;15074:2;15054:18;;;15047:30;-1:-1:-1;;;15093:18:1;;;15086:45;15148:18;;77877:36:0::1;14833:339:1::0;77877:36:0::1;77422:499;;;;77383:538::o:0;47232:193::-;47378:39;47395:4;47401:2;47405:7;47378:39;;;;;;;;;;;;:16;:39::i;:::-;47232:193;;;:::o;67978:528::-;68122:23;68213:8;68188:22;68213:8;-1:-1:-1;;;;;68280:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68280:36:0;;-1:-1:-1;;68280:36:0;;;;;;;;;;;;68243:73;;68336:9;68331:125;68352:14;68347:1;:19;68331:125;;68408:32;68428:8;;68437:1;68428:11;;;;;;;:::i;:::-;;;;;;;68408:19;:32::i;:::-;68392:10;68403:1;68392:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;68368:3;;68331:125;;;-1:-1:-1;68477:10:0;67978:528;-1:-1:-1;;;;67978:528:0:o;35574:152::-;35646:7;35689:27;35708:7;35689:18;:27::i;31116:233::-;31188:7;-1:-1:-1;;;;;31212:19:0;;31208:60;;31240:28;;-1:-1:-1;;;31240:28:0;;;;;;;;;;;31208:60;-1:-1:-1;;;;;;31286:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;31286:55:0;;31116:233::o;11534:103::-;10772:13;:11;:13::i;:::-;11599:30:::1;11626:1;11599:18;:30::i;:::-;11534:103::o:0;71854:900::-;71932:16;71986:19;72020:25;72060:22;72085:16;72095:5;72085:9;:16::i;:::-;72060:41;;72116:25;72158:14;-1:-1:-1;;;;;72144:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72144:29:0;;72116:57;;72188:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72188:31:0;79238:1;72234:472;72283:14;72268:11;:29;72234:472;;72335:15;72348:1;72335:12;:15::i;:::-;72323:27;;72373:9;:16;;;72414:8;72369:73;72464:14;;-1:-1:-1;;;;;72464:28:0;;72460:111;;72537:14;;;-1:-1:-1;72460:111:0;72614:5;-1:-1:-1;;;;;72593:26:0;:17;-1:-1:-1;;;;;72593:26:0;;72589:102;;72670:1;72644:8;72653:13;;;;;;72644:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;72589:102;72299:3;;72234:472;;;-1:-1:-1;72727:8:0;;71854:900;-1:-1:-1;;;;;;71854:900:0:o;77151:86::-;10772:13;:11;:13::i;:::-;77215:5:::1;:14:::0;77151:86::o;34357:104::-;34413:13;34446:7;34439:14;;;;;:::i;68894:2513::-;69037:16;69104:4;69095:5;:13;69091:45;;69117:19;;-1:-1:-1;;;69117:19:0;;;;;;;;;;;69091:45;69151:19;69185:17;69205:14;29674:7;29701:13;;29619:103;69205:14;69185:34;-1:-1:-1;79238:1:0;69297:5;:23;69293:87;;;79238:1;69341:23;;69293:87;69456:9;69449:4;:16;69445:73;;;69493:9;69486:16;;69445:73;69532:25;69560:16;69570:5;69560:9;:16::i;:::-;69532:44;;69754:4;69746:5;:12;69742:278;;;69801:12;;;69836:31;;;69832:111;;;69912:11;69892:31;;69832:111;69760:198;69742:278;;;-1:-1:-1;70003:1:0;69742:278;70034:25;70076:17;-1:-1:-1;;;;;70062:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70062:32:0;;70034:60;;70113:17;70134:1;70113:22;70109:78;;70163:8;-1:-1:-1;70156:15:0;;-1:-1:-1;;;70156:15:0;70109:78;70331:31;70365:26;70385:5;70365:19;:26::i;:::-;70331:60;;70406:25;70651:9;:16;;;70646:92;;-1:-1:-1;70708:14:0;;70646:92;70769:5;70752:478;70781:4;70776:1;:9;;:45;;;;;70804:17;70789:11;:32;;70776:45;70752:478;;;70859:15;70872:1;70859:12;:15::i;:::-;70847:27;;70897:9;:16;;;70938:8;70893:73;70988:14;;-1:-1:-1;;;;;70988:28:0;;70984:111;;71061:14;;;-1:-1:-1;70984:111:0;71138:5;-1:-1:-1;;;;;71117:26:0;:17;-1:-1:-1;;;;;71117:26:0;;71113:102;;71194:1;71168:8;71177:13;;;;;;71168:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;71113:102;70823:3;;70752:478;;;-1:-1:-1;;;71315:29:0;;;-1:-1:-1;71322:8:0;;-1:-1:-1;;68894:2513:0;;;;;;:::o;41230:234::-;64438:10;41325:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;41325:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;41325:60:0;;;;;;;;;;41401:55;;540:41:1;;;41325:49:0;;64438:10;41401:55;;513:18:1;41401:55:0;;;;;;;41230:234;;:::o;48023:407::-;48198:31;48211:4;48217:2;48221:7;48198:12;:31::i;:::-;-1:-1:-1;;;;;48244:14:0;;;:19;48240:183;;48283:56;48314:4;48320:2;48324:7;48333:5;48283:30;:56::i;:::-;48278:145;;48367:40;;-1:-1:-1;;;48367:40:0;;;;;;;;;;;76389:176;76490:4;76514:43;76533:5;76540:10;;76552:4;76514:18;:43::i;78264:206::-;10772:13;:11;:13::i;:::-;78395:14:::1;:30;78412:13:::0;;78395:14;:30:::1;:::i;:::-;-1:-1:-1::0;78436:12:0::1;:26;78451:11:::0;;78436:12;:26:::1;:::i;:::-;;78264:206:::0;;;;:::o;67391:428::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79238:1:0;67555:7;:25;:54;;;-1:-1:-1;29674:7:0;29701:13;67584:7;:25;;67555:54;67551:103;;;67633:9;67391:428;-1:-1:-1;;67391:428:0:o;67551:103::-;67676:21;67689:7;67676:12;:21::i;:::-;67664:33;;67712:9;:16;;;67708:65;;;67752:9;67391:428;-1:-1:-1;;67391:428:0:o;67708:65::-;67790:21;67803:7;67790:12;:21::i;78035:105::-;10772:13;:11;:13::i;:::-;78107:16:::1;:25:::0;;-1:-1:-1;;78107:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;78035:105::o;78548:519::-;78656:13;78687:16;78695:7;78687;:16::i;:::-;78682:59;;78712:29;;-1:-1:-1;;;78712:29:0;;;;;;;;;;;78682:59;78778:14;78772:28;;;;;:::i;:::-;;;78804:1;78772:33;:287;;;;;;;;;;;;;;;;;78897:14;78938:18;78948:7;78938:9;:18::i;:::-;78983:12;78854:164;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78752:307;78548:519;-1:-1:-1;;78548:519:0:o;76812:193::-;10772:13;:11;:13::i;:::-;76934:10:::1;:24:::0;;;;76969:12:::1;:28:::0;76812:193::o;74684:478::-;74758:10;74772:9;74758:23;74750:56;;;;-1:-1:-1;;;74750:56:0;;11366:2:1;74750:56:0;;;11348:21:1;11405:2;11385:18;;;11378:30;-1:-1:-1;;;11424:18:1;;;11417:50;11484:18;;74750:56:0;11164:344:1;74750:56:0;74826:16;;;;74825:17;74817:56;;;;-1:-1:-1;;;74817:56:0;;18770:2:1;74817:56:0;;;18752:21:1;18809:2;18789:18;;;18782:30;18848:28;18828:18;;;18821:56;18894:18;;74817:56:0;18568:350:1;74817:56:0;74006:4;74923:8;74906:14;30408:7;30599:13;-1:-1:-1;;30599:31:0;;30353:296;74906:14;:25;;;;:::i;:::-;:39;;74884:112;;;;-1:-1:-1;;;74884:112:0;;12332:2:1;74884:112:0;;;12314:21:1;12371:2;12351:18;;;12344:30;-1:-1:-1;;;12390:18:1;;;12383:53;12453:18;;74884:112:0;12130:347:1;74884:112:0;75053:5;;75042:16;;:8;:16;:::i;:::-;75029:9;:29;75007:109;;;;-1:-1:-1;;;75007:109:0;;13218:2:1;75007:109:0;;;13200:21:1;13257:2;13237:18;;;13230:30;13296:32;13276:18;;;13269:60;13346:18;;75007:109:0;13016:354:1;75007:109:0;75127:27;75133:10;75145:8;75127:5;:27::i;:::-;74684:478;:::o;11792:201::-;10772:13;:11;:13::i;:::-;-1:-1:-1;;;;;11881:22:0;::::1;11873:73;;;::::0;-1:-1:-1;;;11873:73:0;;19125:2:1;11873:73:0::1;::::0;::::1;19107:21:1::0;19164:2;19144:18;;;19137:30;19203:34;19183:18;;;19176:62;-1:-1:-1;;;19254:18:1;;;19247:36;19300:19;;11873:73:0::1;18923:402:1::0;11873:73:0::1;11957:28;11976:8;11957:18;:28::i;51692:2966::-:0;51765:20;51788:13;;;51816;;;51812:44;;51838:18;;-1:-1:-1;;;51838:18:0;;;;;;;;;;;51812:44;-1:-1:-1;;;;;52344:22:0;;;;;;:18;:22;;;;25413:2;52344:22;;;:71;;52382:32;52370:45;;52344:71;;;52658:31;;;:17;:31;;;;;-1:-1:-1;39394:15:0;;39368:24;39364:46;38963:11;38938:23;38934:41;38931:52;38921:63;;52658:173;;52893:23;;;;52658:31;;52344:22;;53658:25;52344:22;;53511:335;54172:1;54158:12;54154:20;54112:346;54213:3;54204:7;54201:16;54112:346;;54431:7;54421:8;54418:1;54391:25;54388:1;54385;54380:59;54266:1;54253:15;54112:346;;;54116:77;54491:8;54503:1;54491:13;54487:45;;54513:19;;-1:-1:-1;;;54513:19:0;;;;;;;;;;;54487:45;54549:13;:19;-1:-1:-1;47232:193:0;;;:::o;42043:282::-;42108:4;42164:7;79238:1;42145:26;;:66;;;;;42198:13;;42188:7;:23;42145:66;:153;;;;-1:-1:-1;;42249:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;42249:44:0;:49;;42043:282::o;36729:1275::-;36796:7;36831;;79238:1;36880:23;36876:1061;;36933:13;;36926:4;:20;36922:1015;;;36971:14;36988:23;;;:17;:23;;;;;;;-1:-1:-1;;;37077:24:0;;:29;;37073:845;;37742:113;37749:6;37759:1;37749:11;37742:113;;-1:-1:-1;;;37820:6:0;37802:25;;;;:17;:25;;;;;;37742:113;;37073:845;36948:989;36922:1015;37965:31;;-1:-1:-1;;;37965:31:0;;;;;;;;;;;11051:132;10959:6;;-1:-1:-1;;;;;10959:6:0;64438:10;11115:23;11107:68;;;;-1:-1:-1;;;11107:68:0;;19532:2:1;11107:68:0;;;19514:21:1;;;19551:18;;;19544:30;19610:34;19590:18;;;19583:62;19662:18;;11107:68:0;19330:356:1;12153:191:0;12246:6;;;-1:-1:-1;;;;;12263:17:0;;;-1:-1:-1;;;;;;12263:17:0;;;;;;;12296:40;;12246:6;;;12263:17;12246:6;;12296:40;;12227:16;;12296:40;12216:128;12153:191;:::o;36177:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36305:24:0;;;;:17;:24;;;;;;36286:44;;:18;:44::i;50514:716::-;50698:88;;-1:-1:-1;;;50698:88:0;;50677:4;;-1:-1:-1;;;;;50698:45:0;;;;;:88;;64438:10;;50765:4;;50771:7;;50780:5;;50698:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50698:88:0;;;;;;;;-1:-1:-1;;50698:88:0;;;;;;;;;;;;:::i;:::-;;;50694:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50981:6;:13;50998:1;50981:18;50977:235;;51027:40;;-1:-1:-1;;;51027:40:0;;;;;;;;;;;50977:235;51170:6;51164:13;51155:6;51151:2;51147:15;51140:38;50694:529;-1:-1:-1;;;;;;50857:64:0;-1:-1:-1;;;50857:64:0;;-1:-1:-1;50514:716:0;;;;;;:::o;1252:190::-;1377:4;1430;1401:25;1414:5;1421:4;1401:12;:25::i;:::-;:33;;1252:190;-1:-1:-1;;;;1252:190:0:o;35915:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36026:47:0;36045:27;36064:7;36045:18;:27::i;:::-;36026:18;:47::i;64558:1745::-;64623:17;65057:4;65050;65044:11;65040:22;65149:1;65143:4;65136:15;65224:4;65221:1;65217:12;65210:19;;;65306:1;65301:3;65294:14;65410:3;65649:5;65631:428;65697:1;65692:3;65688:11;65681:18;;65868:2;65862:4;65858:13;65854:2;65850:22;65845:3;65837:36;65962:2;65952:13;;66019:25;65631:428;66019:25;-1:-1:-1;66089:13:0;;;-1:-1:-1;;66204:14:0;;;66266:19;;;66204:14;64558:1745;-1:-1:-1;64558:1745:0:o;38103:366::-;-1:-1:-1;;;;;;;;;;;;;38213:41:0;;;;25934:3;38299:33;;;-1:-1:-1;;;;;38265:68:0;-1:-1:-1;;;38265:68:0;-1:-1:-1;;;38363:24:0;;:29;;-1:-1:-1;;;38344:48:0;;;;26455:3;38432:28;;;;-1:-1:-1;;;38403:58:0;-1:-1:-1;38103:366:0:o;2119:296::-;2202:7;2245:4;2202:7;2260:118;2284:5;:12;2280:1;:16;2260:118;;;2333:33;2343:12;2357:5;2363:1;2357:8;;;;;;;;:::i;:::-;;;;;;;2333:9;:33::i;:::-;2318:48;-1:-1:-1;2298:3:0;;;;:::i;:::-;;;;2260:118;;;-1:-1:-1;2395:12:0;2119:296;-1:-1:-1;;;2119:296:0:o;8326:149::-;8389:7;8420:1;8416;:5;:51;;8551:13;8645:15;;;8681:4;8674:15;;;8728:4;8712:21;;8416:51;;;8551:13;8645:15;;;8681:4;8674:15;;;8728:4;8712:21;;8424:20;8483:268;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:275;795:2;789:9;860:2;841:13;;-1:-1:-1;;837:27:1;825:40;;-1:-1:-1;;;;;880:34:1;;916:22;;;877:62;874:88;;;942:18;;:::i;:::-;978:2;971:22;724:275;;-1:-1:-1;724:275:1:o;1004:712::-;1058:5;1111:3;1104:4;1096:6;1092:17;1088:27;1078:55;;1129:1;1126;1119:12;1078:55;1165:6;1152:20;1191:4;-1:-1:-1;;;;;1210:2:1;1207:26;1204:52;;;1236:18;;:::i;:::-;1282:2;1279:1;1275:10;1305:28;1329:2;1325;1321:11;1305:28;:::i;:::-;1367:15;;;1437;;;1433:24;;;1398:12;;;;1469:15;;;1466:35;;;1497:1;1494;1487:12;1466:35;1533:2;1525:6;1521:15;1510:26;;1545:142;1561:6;1556:3;1553:15;1545:142;;;1627:17;;1615:30;;1578:12;;;;1665;;;;1545:142;;;1705:5;1004:712;-1:-1:-1;;;;;;;1004:712:1:o;1721:416::-;1814:6;1822;1875:2;1863:9;1854:7;1850:23;1846:32;1843:52;;;1891:1;1888;1881:12;1843:52;1927:9;1914:23;1904:33;;1988:2;1977:9;1973:18;1960:32;-1:-1:-1;;;;;2007:6:1;2004:30;2001:50;;;2047:1;2044;2037:12;2001:50;2070:61;2123:7;2114:6;2103:9;2099:22;2070:61;:::i;:::-;2060:71;;;1721:416;;;;;:::o;2142:250::-;2227:1;2237:113;2251:6;2248:1;2245:13;2237:113;;;2327:11;;;2321:18;2308:11;;;2301:39;2273:2;2266:10;2237:113;;;-1:-1:-1;;2384:1:1;2366:16;;2359:27;2142:250::o;2397:271::-;2439:3;2477:5;2471:12;2504:6;2499:3;2492:19;2520:76;2589:6;2582:4;2577:3;2573:14;2566:4;2559:5;2555:16;2520:76;:::i;:::-;2650:2;2629:15;-1:-1:-1;;2625:29:1;2616:39;;;;2657:4;2612:50;;2397:271;-1:-1:-1;;2397:271:1:o;2673:220::-;2822:2;2811:9;2804:21;2785:4;2842:45;2883:2;2872:9;2868:18;2860:6;2842:45;:::i;2898:180::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;-1:-1:-1;3049:23:1;;2898:180;-1:-1:-1;2898:180:1:o;3291:173::-;3359:20;;-1:-1:-1;;;;;3408:31:1;;3398:42;;3388:70;;3454:1;3451;3444:12;3388:70;3291:173;;;:::o;3469:254::-;3537:6;3545;3598:2;3586:9;3577:7;3573:23;3569:32;3566:52;;;3614:1;3611;3604:12;3566:52;3637:29;3656:9;3637:29;:::i;:::-;3627:39;3713:2;3698:18;;;;3685:32;;-1:-1:-1;;;3469:254:1:o;3910:328::-;3987:6;3995;4003;4056:2;4044:9;4035:7;4031:23;4027:32;4024:52;;;4072:1;4069;4062:12;4024:52;4095:29;4114:9;4095:29;:::i;:::-;4085:39;;4143:38;4177:2;4166:9;4162:18;4143:38;:::i;:::-;4133:48;;4228:2;4217:9;4213:18;4200:32;4190:42;;3910:328;;;;;:::o;4425:615::-;4511:6;4519;4572:2;4560:9;4551:7;4547:23;4543:32;4540:52;;;4588:1;4585;4578:12;4540:52;4628:9;4615:23;-1:-1:-1;;;;;4698:2:1;4690:6;4687:14;4684:34;;;4714:1;4711;4704:12;4684:34;4752:6;4741:9;4737:22;4727:32;;4797:7;4790:4;4786:2;4782:13;4778:27;4768:55;;4819:1;4816;4809:12;4768:55;4859:2;4846:16;4885:2;4877:6;4874:14;4871:34;;;4901:1;4898;4891:12;4871:34;4954:7;4949:2;4939:6;4936:1;4932:14;4928:2;4924:23;4920:32;4917:45;4914:65;;;4975:1;4972;4965:12;4914:65;5006:2;4998:11;;;;;5028:6;;-1:-1:-1;4425:615:1;;-1:-1:-1;;;;4425:615:1:o;5045:349::-;5129:12;;-1:-1:-1;;;;;5125:38:1;5113:51;;5217:4;5206:16;;;5200:23;-1:-1:-1;;;;;5196:48:1;5180:14;;;5173:72;5308:4;5297:16;;;5291:23;5284:31;5277:39;5261:14;;;5254:63;5370:4;5359:16;;;5353:23;5378:8;5349:38;5333:14;;5326:62;5045:349::o;5399:722::-;5632:2;5684:21;;;5754:13;;5657:18;;;5776:22;;;5603:4;;5632:2;5855:15;;;;5829:2;5814:18;;;5603:4;5898:197;5912:6;5909:1;5906:13;5898:197;;;5961:52;6009:3;6000:6;5994:13;5961:52;:::i;:::-;6070:15;;;;6042:4;6033:14;;;;;5934:1;5927:9;5898:197;;6126:186;6185:6;6238:2;6226:9;6217:7;6213:23;6209:32;6206:52;;;6254:1;6251;6244:12;6206:52;6277:29;6296:9;6277:29;:::i;6317:632::-;6488:2;6540:21;;;6610:13;;6513:18;;;6632:22;;;6459:4;;6488:2;6711:15;;;;6685:2;6670:18;;;6459:4;6754:169;6768:6;6765:1;6762:13;6754:169;;;6829:13;;6817:26;;6898:15;;;;6863:12;;;;6790:1;6783:9;6754:169;;6954:322;7031:6;7039;7047;7100:2;7088:9;7079:7;7075:23;7071:32;7068:52;;;7116:1;7113;7106:12;7068:52;7139:29;7158:9;7139:29;:::i;:::-;7129:39;7215:2;7200:18;;7187:32;;-1:-1:-1;7266:2:1;7251:18;;;7238:32;;6954:322;-1:-1:-1;;;6954:322:1:o;7281:160::-;7346:20;;7402:13;;7395:21;7385:32;;7375:60;;7431:1;7428;7421:12;7446:254;7511:6;7519;7572:2;7560:9;7551:7;7547:23;7543:32;7540:52;;;7588:1;7585;7578:12;7540:52;7611:29;7630:9;7611:29;:::i;:::-;7601:39;;7659:35;7690:2;7679:9;7675:18;7659:35;:::i;:::-;7649:45;;7446:254;;;;;:::o;7705:980::-;7800:6;7808;7816;7824;7877:3;7865:9;7856:7;7852:23;7848:33;7845:53;;;7894:1;7891;7884:12;7845:53;7917:29;7936:9;7917:29;:::i;:::-;7907:39;;7965:2;7986:38;8020:2;8009:9;8005:18;7986:38;:::i;:::-;7976:48;;8071:2;8060:9;8056:18;8043:32;8033:42;;8126:2;8115:9;8111:18;8098:32;-1:-1:-1;;;;;8190:2:1;8182:6;8179:14;8176:34;;;8206:1;8203;8196:12;8176:34;8244:6;8233:9;8229:22;8219:32;;8289:7;8282:4;8278:2;8274:13;8270:27;8260:55;;8311:1;8308;8301:12;8260:55;8347:2;8334:16;8369:2;8365;8362:10;8359:36;;;8375:18;;:::i;:::-;8417:53;8460:2;8441:13;;-1:-1:-1;;8437:27:1;8433:36;;8417:53;:::i;:::-;8404:66;;8493:2;8486:5;8479:17;8533:7;8528:2;8523;8519;8515:11;8511:20;8508:33;8505:53;;;8554:1;8551;8544:12;8505:53;8609:2;8604;8600;8596:11;8591:2;8584:5;8580:14;8567:45;8653:1;8648:2;8643;8636:5;8632:14;8628:23;8621:34;;8674:5;8664:15;;;;;7705:980;;;;;;;:::o;8690:416::-;8783:6;8791;8844:2;8832:9;8823:7;8819:23;8815:32;8812:52;;;8860:1;8857;8850:12;8812:52;8900:9;8887:23;-1:-1:-1;;;;;8925:6:1;8922:30;8919:50;;;8965:1;8962;8955:12;8919:50;8988:61;9041:7;9032:6;9021:9;9017:22;8988:61;:::i;:::-;8978:71;9096:2;9081:18;;;;9068:32;;-1:-1:-1;;;;8690:416:1:o;9111:348::-;9163:8;9173:6;9227:3;9220:4;9212:6;9208:17;9204:27;9194:55;;9245:1;9242;9235:12;9194:55;-1:-1:-1;9268:20:1;;-1:-1:-1;;;;;9300:30:1;;9297:50;;;9343:1;9340;9333:12;9297:50;9380:4;9372:6;9368:17;9356:29;;9432:3;9425:4;9416:6;9408;9404:19;9400:30;9397:39;9394:59;;;9449:1;9446;9439:12;9394:59;9111:348;;;;;:::o;9464:721::-;9556:6;9564;9572;9580;9633:2;9621:9;9612:7;9608:23;9604:32;9601:52;;;9649:1;9646;9639:12;9601:52;9689:9;9676:23;-1:-1:-1;;;;;9759:2:1;9751:6;9748:14;9745:34;;;9775:1;9772;9765:12;9745:34;9814:59;9865:7;9856:6;9845:9;9841:22;9814:59;:::i;:::-;9892:8;;-1:-1:-1;9788:85:1;-1:-1:-1;9980:2:1;9965:18;;9952:32;;-1:-1:-1;9996:16:1;;;9993:36;;;10025:1;10022;10015:12;9993:36;;10064:61;10117:7;10106:8;10095:9;10091:24;10064:61;:::i;:::-;9464:721;;;;-1:-1:-1;10144:8:1;-1:-1:-1;;;;9464:721:1:o;10190:266::-;10386:3;10371:19;;10399:51;10375:9;10432:6;10399:51;:::i;10461:180::-;10517:6;10570:2;10558:9;10549:7;10545:23;10541:32;10538:52;;;10586:1;10583;10576:12;10538:52;10609:26;10625:9;10609:26;:::i;10646:260::-;10714:6;10722;10775:2;10763:9;10754:7;10750:23;10746:32;10743:52;;;10791:1;10788;10781:12;10743:52;10814:29;10833:9;10814:29;:::i;:::-;10804:39;;10862:38;10896:2;10885:9;10881:18;10862:38;:::i;10911:248::-;10979:6;10987;11040:2;11028:9;11019:7;11015:23;11011:32;11008:52;;;11056:1;11053;11046:12;11008:52;-1:-1:-1;;11079:23:1;;;11149:2;11134:18;;;11121:32;;-1:-1:-1;10911:248:1:o;11868:127::-;11929:10;11924:3;11920:20;11917:1;11910:31;11960:4;11957:1;11950:15;11984:4;11981:1;11974:15;12000:125;12065:9;;;12086:10;;;12083:36;;;12099:18;;:::i;12843:168::-;12916:9;;;12947;;12964:15;;;12958:22;;12944:37;12934:71;;12985:18;;:::i;14016:380::-;14095:1;14091:12;;;;14138;;;14159:61;;14213:4;14205:6;14201:17;14191:27;;14159:61;14266:2;14258:6;14255:14;14235:18;14232:38;14229:161;;14312:10;14307:3;14303:20;14300:1;14293:31;14347:4;14344:1;14337:15;14375:4;14372:1;14365:15;14229:161;;14016:380;;;:::o;14401:217::-;14441:1;14467;14457:132;;14511:10;14506:3;14502:20;14499:1;14492:31;14546:4;14543:1;14536:15;14574:4;14571:1;14564:15;14457:132;-1:-1:-1;14603:9:1;;14401:217::o;15177:127::-;15238:10;15233:3;15229:20;15226:1;15219:31;15269:4;15266:1;15259:15;15293:4;15290:1;15283:15;15435:545;15537:2;15532:3;15529:11;15526:448;;;15573:1;15598:5;15594:2;15587:17;15643:4;15639:2;15629:19;15713:2;15701:10;15697:19;15694:1;15690:27;15684:4;15680:38;15749:4;15737:10;15734:20;15731:47;;;-1:-1:-1;15772:4:1;15731:47;15827:2;15822:3;15818:12;15815:1;15811:20;15805:4;15801:31;15791:41;;15882:82;15900:2;15893:5;15890:13;15882:82;;;15945:17;;;15926:1;15915:13;15882:82;;16156:1206;-1:-1:-1;;;;;16275:3:1;16272:27;16269:53;;;16302:18;;:::i;:::-;16331:94;16421:3;16381:38;16413:4;16407:11;16381:38;:::i;:::-;16375:4;16331:94;:::i;:::-;16451:1;16476:2;16471:3;16468:11;16493:1;16488:616;;;;17148:1;17165:3;17162:93;;;-1:-1:-1;17221:19:1;;;17208:33;17162:93;-1:-1:-1;;16113:1:1;16109:11;;;16105:24;16101:29;16091:40;16137:1;16133:11;;;16088:57;17268:78;;16461:895;;16488:616;15382:1;15375:14;;;15419:4;15406:18;;-1:-1:-1;;16524:17:1;;;16625:9;16647:229;16661:7;16658:1;16655:14;16647:229;;;16750:19;;;16737:33;16722:49;;16857:4;16842:20;;;;16810:1;16798:14;;;;16677:12;16647:229;;;16651:3;16904;16895:7;16892:16;16889:159;;;17028:1;17024:6;17018:3;17012;17009:1;17005:11;17001:21;16997:34;16993:39;16980:9;16975:3;16971:19;16958:33;16954:79;16946:6;16939:95;16889:159;;;17091:1;17085:3;17082:1;17078:11;17074:19;17068:4;17061:33;16461:895;;16156:1206;;;:::o;17367:722::-;17417:3;17458:5;17452:12;17487:36;17513:9;17487:36;:::i;:::-;17542:1;17559:18;;;17586:133;;;;17733:1;17728:355;;;;17552:531;;17586:133;-1:-1:-1;;17619:24:1;;17607:37;;17692:14;;17685:22;17673:35;;17664:45;;;-1:-1:-1;17586:133:1;;17728:355;17759:5;17756:1;17749:16;17788:4;17833:2;17830:1;17820:16;17858:1;17872:165;17886:6;17883:1;17880:13;17872:165;;;17964:14;;17951:11;;;17944:35;18007:16;;;;17901:10;;17872:165;;;17876:3;;;18066:6;18061:3;18057:16;18050:23;;17552:531;;;;;17367:722;;;;:::o;18094:469::-;18315:3;18343:38;18377:3;18369:6;18343:38;:::i;:::-;18410:6;18404:13;18426:65;18484:6;18480:2;18473:4;18465:6;18461:17;18426:65;:::i;:::-;18507:50;18549:6;18545:2;18541:15;18533:6;18507:50;:::i;19691:489::-;-1:-1:-1;;;;;19960:15:1;;;19942:34;;20012:15;;20007:2;19992:18;;19985:43;20059:2;20044:18;;20037:34;;;20107:3;20102:2;20087:18;;20080:31;;;19885:4;;20128:46;;20154:19;;20146:6;20128:46;:::i;:::-;20120:54;19691:489;-1:-1:-1;;;;;;19691:489:1:o;20185:249::-;20254:6;20307:2;20295:9;20286:7;20282:23;20278:32;20275:52;;;20323:1;20320;20313:12;20275:52;20355:9;20349:16;20374:30;20398:5;20374:30;:::i;20439:135::-;20478:3;20499:17;;;20496:43;;20519:18;;:::i;:::-;-1:-1:-1;20566:1:1;20555:13;;20439:135::o

Swarm Source

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