ETH Price: $3,495.88 (+6.60%)
Gas: 8 Gwei

Token

Dumbkeys (DUMB)
 

Overview

Max Total Supply

3,333 DUMB

Holders

1,082

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DUMB
0xfefef682c54d7dc0b7bede523db0a409729be2df
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:
Dumbkeys

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

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

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


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view 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;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 virtual 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 virtual 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 virtual 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;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view 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);
        }
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

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

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal 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 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 (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal 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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal 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 Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred.
     * This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred.
     * This includes minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

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

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

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/Dumbkeys.sol



pragma solidity ^0.8.0;






contract Dumbkeys is Ownable, ERC721A, ReentrancyGuard {

    bool private isPublicSaleOn = false;
    uint private constant MAX_SUPPLY = 3333;
    bytes32 public whiteListRoot;
  
    bool private whitelistOn = false;
    mapping(address => uint256) public whiteListClaimed;
    mapping(address => bool) public whiteListClaimedChecker;
    


    constructor() ERC721A("Dumbkeys", "DUMB") {}

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }


    function reserveGiveaway(uint256 num, address walletAddress)
        public
        onlyOwner
    {
        require(totalSupply() + num <= MAX_SUPPLY, "Exceeds total supply");
        _safeMint(walletAddress, num);
    }

    function whiteListMint(bytes32[] calldata _merkleProof, uint256 quantity) external payable callerIsUser {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, whiteListRoot, leaf),
            "Invalid Merkle Proof.");
        require(whitelistOn, "whitelist sale has not begun yet");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Exceeds total supply");
        if (!whiteListClaimedChecker[msg.sender]) {
            whiteListClaimedChecker[msg.sender] = true;
            whiteListClaimed[msg.sender] = 3;
        }
        require(whiteListClaimed[msg.sender] - quantity >= 0, "Address already minted num of tokens allowed");
        whiteListClaimed[msg.sender] = whiteListClaimed[msg.sender] - quantity;
        _safeMint(msg.sender, quantity);
        
    }


    function publicSaleMint(uint256 quantity)
        external
        payable
        callerIsUser
    {
      
        require(
            isPublicSaleOn,
            "public sale has not begun yet"
        );
        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "reached max supply"
        );
       
        _safeMint(msg.sender, quantity);
  
    }


    function setPublicSale(bool flag) external onlyOwner {
        isPublicSaleOn = flag;
    }

    function setWhitelistFlag(bool flag) external onlyOwner {
        whitelistOn = flag;
    }

    function setWhiteListRoot(bytes32 merkle_root) external onlyOwner {
        whiteListRoot = merkle_root;
    }

    string private _baseTokenURI;

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

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

    function withdraw() external onlyOwner nonReentrant {
         (bool success, ) = msg.sender.call{value: address(this).balance}("");
         require(success, "Transfer failed.");
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"walletAddress","type":"address"}],"name":"reserveGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkle_root","type":"bytes32"}],"name":"setWhiteListRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"setWhitelistFlag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListClaimedChecker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff19908116909155600c805490911690553480156200002757600080fd5b506040518060400160405280600881526020016744756d626b65797360c01b81525060405180604001604052806004815260200163222aa6a160e11b815250620000806200007a620000be60201b60201c565b620000c2565b81516200009590600390602085019062000112565b508051620000ab90600490602084019062000112565b50506000600190815560095550620001f5565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200012090620001b8565b90600052602060002090601f0160209004810192826200014457600085556200018f565b82601f106200015f57805160ff19168380011785556200018f565b828001600101855582156200018f579182015b828111156200018f57825182559160200191906001019062000172565b506200019d929150620001a1565b5090565b5b808211156200019d5760008155600101620001a2565b600181811c90821680620001cd57607f821691505b60208210811415620001ef57634e487b7160e01b600052602260045260246000fd5b50919050565b611b7e80620002056000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146104f1578063dc33e68114610511578063e985e9c514610531578063f2fde38b1461057a57600080fd5b8063a22cb4651461048b578063b3ab66b0146104ab578063b88d4fde146104be578063c30bf318146104de57600080fd5b806370a08231116100d157806370a0823114610423578063715018a6146104435780638da5cb5b1461045857806395d89b411461047657600080fd5b80636352211e146103cd57806365f4fd12146103ed57806368010d6e1461040357600080fd5b806323b872dd1161016457806342842e0e1161013e57806342842e0e1461034d57806345149bb31461036d57806355f804b31461038d5780635aca1bb6146103ad57600080fd5b806323b872dd146102f85780633ccfd60b146103185780634200e4fc1461032d57600080fd5b8063081812fc116101a0578063081812fc1461024e578063095ea7b31461028657806318160ddd146102a85780632333f3c4146102cb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc57806307d3b3581461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046118c5565b61059a565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105ec565b6040516101f39190611a2c565b34801561022a57600080fd5b506101e761023936600461165c565b600e6020526000908152604090205460ff1681565b34801561025a57600080fd5b5061026e6102693660046118ac565b61067e565b6040516001600160a01b0390911681526020016101f3565b34801561029257600080fd5b506102a66102a13660046117ec565b6106c2565b005b3480156102b457600080fd5b50600254600154035b6040519081526020016101f3565b3480156102d757600080fd5b506102bd6102e636600461165c565b600d6020526000908152604090205481565b34801561030457600080fd5b506102a66103133660046116aa565b610762565b34801561032457600080fd5b506102a66108f3565b34801561033957600080fd5b506102a6610348366004611891565b6109eb565b34801561035957600080fd5b506102a66103683660046116aa565b610a06565b34801561037957600080fd5b506102a66103883660046118ac565b610a26565b34801561039957600080fd5b506102a66103a83660046118ff565b610a33565b3480156103b957600080fd5b506102a66103c8366004611891565b610a47565b3480156103d957600080fd5b5061026e6103e83660046118ac565b610a62565b3480156103f957600080fd5b506102bd600b5481565b34801561040f57600080fd5b506102a661041e366004611971565b610a6d565b34801561042f57600080fd5b506102bd61043e36600461165c565b610ae3565b34801561044f57600080fd5b506102a6610b32565b34801561046457600080fd5b506000546001600160a01b031661026e565b34801561048257600080fd5b50610211610b46565b34801561049757600080fd5b506102a66104a63660046117c2565b610b55565b6102a66104b93660046118ac565b610beb565b3480156104ca57600080fd5b506102a66104d93660046116e6565b610cf7565b6102a66104ec366004611816565b610d41565b3480156104fd57600080fd5b5061021161050c3660046118ac565b610ff6565b34801561051d57600080fd5b506102bd61052c36600461165c565b61107b565b34801561053d57600080fd5b506101e761054c366004611677565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561058657600080fd5b506102a661059536600461165c565b6110a6565b60006301ffc9a760e01b6001600160e01b0319831614806105cb57506380ac58cd60e01b6001600160e01b03198316145b806105e65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546105fb90611a9a565b80601f016020809104026020016040519081016040528092919081815260200182805461062790611a9a565b80156106745780601f1061064957610100808354040283529160200191610674565b820191906000526020600020905b81548152906001019060200180831161065757829003601f168201915b5050505050905090565b60006106898261111c565b6106a6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106cd82610a62565b9050336001600160a01b03821614610706576106e9813361054c565b610706576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061076d82611144565b9050836001600160a01b0316816001600160a01b0316146107a05760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176107ed576107d0863361054c565b6107ed57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661081457604051633a954ecd60e21b815260040160405180910390fd5b801561081f57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b83166108aa57600184016000818152600560205260409020546108a85760015481146108a85760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6108fb6111a5565b600260095414156109535760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955604051600090339047908381818185875af1925050503d806000811461099a576040519150601f19603f3d011682016040523d82523d6000602084013e61099f565b606091505b50509050806109e35760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161094a565b506001600955565b6109f36111a5565b600c805460ff1916911515919091179055565b610a2183838360405180602001604052806000815250610cf7565b505050565b610a2e6111a5565b600b55565b610a3b6111a5565b610a21600f8383611597565b610a4f6111a5565b600a805460ff1916911515919091179055565b60006105e682611144565b610a756111a5565b610d0582610a866002546001540390565b610a909190611a3f565b1115610ad55760405162461bcd60e51b81526020600482015260146024820152734578636565647320746f74616c20737570706c7960601b604482015260640161094a565b610adf81836111ff565b5050565b60006001600160a01b038216610b0c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610b3a6111a5565b610b446000611219565b565b6060600480546105fb90611a9a565b6001600160a01b038216331415610b7f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b323314610c3a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161094a565b600a5460ff16610c8c5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e20796574000000604482015260640161094a565b610d0581610c9d6002546001540390565b610ca79190611a3f565b1115610cea5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b604482015260640161094a565b610cf433826111ff565b50565b610d02848484610762565b6001600160a01b0383163b15610d3b57610d1e84848484611269565b610d3b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b323314610d905760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161094a565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610e0a84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611360565b610e4e5760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b21026b2b935b63290283937b7b31760591b604482015260640161094a565b600c5460ff16610ea05760405162461bcd60e51b815260206004820181905260248201527f77686974656c6973742073616c6520686173206e6f7420626567756e20796574604482015260640161094a565b610d0582610eb16002546001540390565b610ebb9190611a3f565b1115610f005760405162461bcd60e51b81526020600482015260146024820152734578636565647320746f74616c20737570706c7960601b604482015260640161094a565b336000908152600e602052604090205460ff16610f4057336000908152600e60209081526040808320805460ff19166001179055600d9091529020600390555b336000908152600d6020526040812054610f5b908490611a57565b1015610fbe5760405162461bcd60e51b815260206004820152602c60248201527f4164647265737320616c7265616479206d696e746564206e756d206f6620746f60448201526b1ad95b9cc8185b1b1bddd95960a21b606482015260840161094a565b336000908152600d6020526040902054610fd9908390611a57565b336000818152600d6020526040902091909155610d3b90836111ff565b60606110018261111c565b61101e57604051630a14c4b560e41b815260040160405180910390fd5b6000611028611376565b90508051600014156110495760405180602001604052806000815250611074565b8061105384611385565b6040516020016110649291906119c0565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166105e6565b6110ae6111a5565b6001600160a01b0381166111135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094a565b610cf481611219565b6000600154821080156105e6575050600090815260056020526040902054600160e01b161590565b60008160015481101561118c57600081815260056020526040902054600160e01b811661118a575b8061107457506000190160008181526005602052604090205461116c565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b03163314610b445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161094a565b610adf8282604051806020016040528060008152506113d4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061129e9033908990889088906004016119ef565b602060405180830381600087803b1580156112b857600080fd5b505af19250505080156112e8575060408051601f3d908101601f191682019092526112e5918101906118e2565b60015b611343573d808015611316576040519150601f19603f3d011682016040523d82523d6000602084013e61131b565b606091505b50805161133b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008261136d8584611441565b14949350505050565b6060600f80546105fb90611a9a565b604080516080810191829052607f0190826030600a8206018353600a90045b80156113c257600183039250600a81066030018353600a90046113a4565b50819003601f19909101908152919050565b6113de838361148e565b6001600160a01b0383163b15610a21576001548281035b6114086000868380600101945086611269565b611425576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113f557816001541461143a57600080fd5b5050505050565b600081815b8451811015611486576114728286838151811061146557611465611b06565b602002602001015161156b565b91508061147e81611ad5565b915050611446565b509392505050565b6001546001600160a01b0383166114b757604051622e076360e81b815260040160405180910390fd5b816114d55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061151f5760015550505050565b6000818310611587576000828152602084905260409020611074565b5060009182526020526040902090565b8280546115a390611a9a565b90600052602060002090601f0160209004810192826115c5576000855561160b565b82601f106115de5782800160ff1982351617855561160b565b8280016001018555821561160b579182015b8281111561160b5782358255916020019190600101906115f0565b5061161792915061161b565b5090565b5b80821115611617576000815560010161161c565b80356001600160a01b038116811461164757600080fd5b919050565b8035801515811461164757600080fd5b60006020828403121561166e57600080fd5b61107482611630565b6000806040838503121561168a57600080fd5b61169383611630565b91506116a160208401611630565b90509250929050565b6000806000606084860312156116bf57600080fd5b6116c884611630565b92506116d660208501611630565b9150604084013590509250925092565b600080600080608085870312156116fc57600080fd5b61170585611630565b935061171360208601611630565b925060408501359150606085013567ffffffffffffffff8082111561173757600080fd5b818701915087601f83011261174b57600080fd5b81358181111561175d5761175d611b1c565b604051601f8201601f19908116603f0116810190838211818310171561178557611785611b1c565b816040528281528a602084870101111561179e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117d557600080fd5b6117de83611630565b91506116a16020840161164c565b600080604083850312156117ff57600080fd5b61180883611630565b946020939093013593505050565b60008060006040848603121561182b57600080fd5b833567ffffffffffffffff8082111561184357600080fd5b818601915086601f83011261185757600080fd5b81358181111561186657600080fd5b8760208260051b850101111561187b57600080fd5b6020928301989097509590910135949350505050565b6000602082840312156118a357600080fd5b6110748261164c565b6000602082840312156118be57600080fd5b5035919050565b6000602082840312156118d757600080fd5b813561107481611b32565b6000602082840312156118f457600080fd5b815161107481611b32565b6000806020838503121561191257600080fd5b823567ffffffffffffffff8082111561192a57600080fd5b818501915085601f83011261193e57600080fd5b81358181111561194d57600080fd5b86602082850101111561195f57600080fd5b60209290920196919550909350505050565b6000806040838503121561198457600080fd5b823591506116a160208401611630565b600081518084526119ac816020860160208601611a6e565b601f01601f19169290920160200192915050565b600083516119d2818460208801611a6e565b8351908301906119e6818360208801611a6e565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a2290830184611994565b9695505050505050565b6020815260006110746020830184611994565b60008219821115611a5257611a52611af0565b500190565b600082821015611a6957611a69611af0565b500390565b60005b83811015611a89578181015183820152602001611a71565b83811115610d3b5750506000910152565b600181811c90821680611aae57607f821691505b60208210811415611acf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ae957611ae9611af0565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cf457600080fdfea2646970667358221220af89ee45105b2e78a065268ef36561b665d83d7850aea7739fb3859d618073bf64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146104f1578063dc33e68114610511578063e985e9c514610531578063f2fde38b1461057a57600080fd5b8063a22cb4651461048b578063b3ab66b0146104ab578063b88d4fde146104be578063c30bf318146104de57600080fd5b806370a08231116100d157806370a0823114610423578063715018a6146104435780638da5cb5b1461045857806395d89b411461047657600080fd5b80636352211e146103cd57806365f4fd12146103ed57806368010d6e1461040357600080fd5b806323b872dd1161016457806342842e0e1161013e57806342842e0e1461034d57806345149bb31461036d57806355f804b31461038d5780635aca1bb6146103ad57600080fd5b806323b872dd146102f85780633ccfd60b146103185780634200e4fc1461032d57600080fd5b8063081812fc116101a0578063081812fc1461024e578063095ea7b31461028657806318160ddd146102a85780632333f3c4146102cb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc57806307d3b3581461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046118c5565b61059a565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105ec565b6040516101f39190611a2c565b34801561022a57600080fd5b506101e761023936600461165c565b600e6020526000908152604090205460ff1681565b34801561025a57600080fd5b5061026e6102693660046118ac565b61067e565b6040516001600160a01b0390911681526020016101f3565b34801561029257600080fd5b506102a66102a13660046117ec565b6106c2565b005b3480156102b457600080fd5b50600254600154035b6040519081526020016101f3565b3480156102d757600080fd5b506102bd6102e636600461165c565b600d6020526000908152604090205481565b34801561030457600080fd5b506102a66103133660046116aa565b610762565b34801561032457600080fd5b506102a66108f3565b34801561033957600080fd5b506102a6610348366004611891565b6109eb565b34801561035957600080fd5b506102a66103683660046116aa565b610a06565b34801561037957600080fd5b506102a66103883660046118ac565b610a26565b34801561039957600080fd5b506102a66103a83660046118ff565b610a33565b3480156103b957600080fd5b506102a66103c8366004611891565b610a47565b3480156103d957600080fd5b5061026e6103e83660046118ac565b610a62565b3480156103f957600080fd5b506102bd600b5481565b34801561040f57600080fd5b506102a661041e366004611971565b610a6d565b34801561042f57600080fd5b506102bd61043e36600461165c565b610ae3565b34801561044f57600080fd5b506102a6610b32565b34801561046457600080fd5b506000546001600160a01b031661026e565b34801561048257600080fd5b50610211610b46565b34801561049757600080fd5b506102a66104a63660046117c2565b610b55565b6102a66104b93660046118ac565b610beb565b3480156104ca57600080fd5b506102a66104d93660046116e6565b610cf7565b6102a66104ec366004611816565b610d41565b3480156104fd57600080fd5b5061021161050c3660046118ac565b610ff6565b34801561051d57600080fd5b506102bd61052c36600461165c565b61107b565b34801561053d57600080fd5b506101e761054c366004611677565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561058657600080fd5b506102a661059536600461165c565b6110a6565b60006301ffc9a760e01b6001600160e01b0319831614806105cb57506380ac58cd60e01b6001600160e01b03198316145b806105e65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546105fb90611a9a565b80601f016020809104026020016040519081016040528092919081815260200182805461062790611a9a565b80156106745780601f1061064957610100808354040283529160200191610674565b820191906000526020600020905b81548152906001019060200180831161065757829003601f168201915b5050505050905090565b60006106898261111c565b6106a6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106cd82610a62565b9050336001600160a01b03821614610706576106e9813361054c565b610706576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061076d82611144565b9050836001600160a01b0316816001600160a01b0316146107a05760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176107ed576107d0863361054c565b6107ed57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661081457604051633a954ecd60e21b815260040160405180910390fd5b801561081f57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b83166108aa57600184016000818152600560205260409020546108a85760015481146108a85760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6108fb6111a5565b600260095414156109535760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955604051600090339047908381818185875af1925050503d806000811461099a576040519150601f19603f3d011682016040523d82523d6000602084013e61099f565b606091505b50509050806109e35760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161094a565b506001600955565b6109f36111a5565b600c805460ff1916911515919091179055565b610a2183838360405180602001604052806000815250610cf7565b505050565b610a2e6111a5565b600b55565b610a3b6111a5565b610a21600f8383611597565b610a4f6111a5565b600a805460ff1916911515919091179055565b60006105e682611144565b610a756111a5565b610d0582610a866002546001540390565b610a909190611a3f565b1115610ad55760405162461bcd60e51b81526020600482015260146024820152734578636565647320746f74616c20737570706c7960601b604482015260640161094a565b610adf81836111ff565b5050565b60006001600160a01b038216610b0c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610b3a6111a5565b610b446000611219565b565b6060600480546105fb90611a9a565b6001600160a01b038216331415610b7f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b323314610c3a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161094a565b600a5460ff16610c8c5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e20796574000000604482015260640161094a565b610d0581610c9d6002546001540390565b610ca79190611a3f565b1115610cea5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b604482015260640161094a565b610cf433826111ff565b50565b610d02848484610762565b6001600160a01b0383163b15610d3b57610d1e84848484611269565b610d3b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b323314610d905760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161094a565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610e0a84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611360565b610e4e5760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b21026b2b935b63290283937b7b31760591b604482015260640161094a565b600c5460ff16610ea05760405162461bcd60e51b815260206004820181905260248201527f77686974656c6973742073616c6520686173206e6f7420626567756e20796574604482015260640161094a565b610d0582610eb16002546001540390565b610ebb9190611a3f565b1115610f005760405162461bcd60e51b81526020600482015260146024820152734578636565647320746f74616c20737570706c7960601b604482015260640161094a565b336000908152600e602052604090205460ff16610f4057336000908152600e60209081526040808320805460ff19166001179055600d9091529020600390555b336000908152600d6020526040812054610f5b908490611a57565b1015610fbe5760405162461bcd60e51b815260206004820152602c60248201527f4164647265737320616c7265616479206d696e746564206e756d206f6620746f60448201526b1ad95b9cc8185b1b1bddd95960a21b606482015260840161094a565b336000908152600d6020526040902054610fd9908390611a57565b336000818152600d6020526040902091909155610d3b90836111ff565b60606110018261111c565b61101e57604051630a14c4b560e41b815260040160405180910390fd5b6000611028611376565b90508051600014156110495760405180602001604052806000815250611074565b8061105384611385565b6040516020016110649291906119c0565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166105e6565b6110ae6111a5565b6001600160a01b0381166111135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094a565b610cf481611219565b6000600154821080156105e6575050600090815260056020526040902054600160e01b161590565b60008160015481101561118c57600081815260056020526040902054600160e01b811661118a575b8061107457506000190160008181526005602052604090205461116c565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b03163314610b445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161094a565b610adf8282604051806020016040528060008152506113d4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061129e9033908990889088906004016119ef565b602060405180830381600087803b1580156112b857600080fd5b505af19250505080156112e8575060408051601f3d908101601f191682019092526112e5918101906118e2565b60015b611343573d808015611316576040519150601f19603f3d011682016040523d82523d6000602084013e61131b565b606091505b50805161133b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008261136d8584611441565b14949350505050565b6060600f80546105fb90611a9a565b604080516080810191829052607f0190826030600a8206018353600a90045b80156113c257600183039250600a81066030018353600a90046113a4565b50819003601f19909101908152919050565b6113de838361148e565b6001600160a01b0383163b15610a21576001548281035b6114086000868380600101945086611269565b611425576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113f557816001541461143a57600080fd5b5050505050565b600081815b8451811015611486576114728286838151811061146557611465611b06565b602002602001015161156b565b91508061147e81611ad5565b915050611446565b509392505050565b6001546001600160a01b0383166114b757604051622e076360e81b815260040160405180910390fd5b816114d55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061151f5760015550505050565b6000818310611587576000828152602084905260409020611074565b5060009182526020526040902090565b8280546115a390611a9a565b90600052602060002090601f0160209004810192826115c5576000855561160b565b82601f106115de5782800160ff1982351617855561160b565b8280016001018555821561160b579182015b8281111561160b5782358255916020019190600101906115f0565b5061161792915061161b565b5090565b5b80821115611617576000815560010161161c565b80356001600160a01b038116811461164757600080fd5b919050565b8035801515811461164757600080fd5b60006020828403121561166e57600080fd5b61107482611630565b6000806040838503121561168a57600080fd5b61169383611630565b91506116a160208401611630565b90509250929050565b6000806000606084860312156116bf57600080fd5b6116c884611630565b92506116d660208501611630565b9150604084013590509250925092565b600080600080608085870312156116fc57600080fd5b61170585611630565b935061171360208601611630565b925060408501359150606085013567ffffffffffffffff8082111561173757600080fd5b818701915087601f83011261174b57600080fd5b81358181111561175d5761175d611b1c565b604051601f8201601f19908116603f0116810190838211818310171561178557611785611b1c565b816040528281528a602084870101111561179e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117d557600080fd5b6117de83611630565b91506116a16020840161164c565b600080604083850312156117ff57600080fd5b61180883611630565b946020939093013593505050565b60008060006040848603121561182b57600080fd5b833567ffffffffffffffff8082111561184357600080fd5b818601915086601f83011261185757600080fd5b81358181111561186657600080fd5b8760208260051b850101111561187b57600080fd5b6020928301989097509590910135949350505050565b6000602082840312156118a357600080fd5b6110748261164c565b6000602082840312156118be57600080fd5b5035919050565b6000602082840312156118d757600080fd5b813561107481611b32565b6000602082840312156118f457600080fd5b815161107481611b32565b6000806020838503121561191257600080fd5b823567ffffffffffffffff8082111561192a57600080fd5b818501915085601f83011261193e57600080fd5b81358181111561194d57600080fd5b86602082850101111561195f57600080fd5b60209290920196919550909350505050565b6000806040838503121561198457600080fd5b823591506116a160208401611630565b600081518084526119ac816020860160208601611a6e565b601f01601f19169290920160200192915050565b600083516119d2818460208801611a6e565b8351908301906119e6818360208801611a6e565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a2290830184611994565b9695505050505050565b6020815260006110746020830184611994565b60008219821115611a5257611a52611af0565b500190565b600082821015611a6957611a69611af0565b500390565b60005b83811015611a89578181015183820152602001611a71565b83811115610d3b5750506000910152565b600181811c90821680611aae57607f821691505b60208210811415611acf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ae957611ae9611af0565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cf457600080fdfea2646970667358221220af89ee45105b2e78a065268ef36561b665d83d7850aea7739fb3859d618073bf64736f6c63430008070033

Deployed Bytecode Sourcemap

62478:2952:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25944:615;;;;;;;;;;-1:-1:-1;25944:615:0;;;;;:::i;:::-;;:::i;:::-;;;7463:14:1;;7456:22;7438:41;;7426:2;7411:18;25944:615:0;;;;;;;;31663:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;62766:55::-;;;;;;;;;;-1:-1:-1;62766:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33623:218;;;;;;;;;;-1:-1:-1;33623:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6761:32:1;;;6743:51;;6731:2;6716:18;33623:218:0;6597:203:1;33157:400:0;;;;;;;;;;-1:-1:-1;33157:400:0;;;;;:::i;:::-;;:::i;:::-;;24974:323;;;;;;;;;;-1:-1:-1;25248:12:0;;25232:13;;:28;24974:323;;;7636:25:1;;;7624:2;7609:18;24974:323:0;7490:177:1;62708:51:0;;;;;;;;;;-1:-1:-1;62708:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;42762:2800;;;;;;;;;;-1:-1:-1;42762:2800:0;;;;;:::i;:::-;;:::i;65116:188::-;;;;;;;;;;;;;:::i;64622:93::-;;;;;;;;;;-1:-1:-1;64622:93:0;;;;;:::i;:::-;;:::i;34527:185::-;;;;;;;;;;-1:-1:-1;34527:185:0;;;;;:::i;:::-;;:::i;64723:112::-;;;;;;;;;;-1:-1:-1;64723:112:0;;;;;:::i;:::-;;:::i;65002:106::-;;;;;;;;;;-1:-1:-1;65002:106:0;;;;;:::i;:::-;;:::i;64521:93::-;;;;;;;;;;-1:-1:-1;64521:93:0;;;;;:::i;:::-;;:::i;31444:152::-;;;;;;;;;;-1:-1:-1;31444:152:0;;;;;:::i;:::-;;:::i;62630:28::-;;;;;;;;;;;;;;;;63021:226;;;;;;;;;;-1:-1:-1;63021:226:0;;;;;:::i;:::-;;:::i;26623:232::-;;;;;;;;;;-1:-1:-1;26623:232:0;;;;;:::i;:::-;;:::i;61585:103::-;;;;;;;;;;;;;:::i;60937:87::-;;;;;;;;;;-1:-1:-1;60983:7:0;61010:6;-1:-1:-1;;;;;61010:6:0;60937:87;;31832:104;;;;;;;;;;;;;:::i;33913:308::-;;;;;;;;;;-1:-1:-1;33913:308:0;;;;;:::i;:::-;;:::i;64115:396::-;;;;;;:::i;:::-;;:::i;34783:399::-;;;;;;;;;;-1:-1:-1;34783:399:0;;;;;:::i;:::-;;:::i;63255:850::-;;;;;;:::i;:::-;;:::i;32007:318::-;;;;;;;;;;-1:-1:-1;32007:318:0;;;;;:::i;:::-;;:::i;65312:113::-;;;;;;;;;;-1:-1:-1;65312:113:0;;;;;:::i;:::-;;:::i;34292:164::-;;;;;;;;;;-1:-1:-1;34292:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34413:25:0;;;34389:4;34413:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34292:164;61843:201;;;;;;;;;;-1:-1:-1;61843:201:0;;;;;:::i;:::-;;:::i;25944:615::-;26029:4;-1:-1:-1;;;;;;;;;26329:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;26406:25:0;;;26329:102;:179;;;-1:-1:-1;;;;;;;;;;26483:25:0;;;26329:179;26309:199;25944:615;-1:-1:-1;;25944:615:0:o;31663:100::-;31717:13;31750:5;31743:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31663:100;:::o;33623:218::-;33699:7;33724:16;33732:7;33724;:16::i;:::-;33719:64;;33749:34;;-1:-1:-1;;;33749:34:0;;;;;;;;;;;33719:64;-1:-1:-1;33803:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;33803:30:0;;33623:218::o;33157:400::-;33238:13;33254:16;33262:7;33254;:16::i;:::-;33238:32;-1:-1:-1;53953:10:0;-1:-1:-1;;;;;33287:28:0;;;33283:175;;33335:44;33352:5;53953:10;34292:164;:::i;33335:44::-;33330:128;;33407:35;;-1:-1:-1;;;33407:35:0;;;;;;;;;;;33330:128;33470:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;33470:35:0;-1:-1:-1;;;;;33470:35:0;;;;;;;;;33521:28;;33470:24;;33521:28;;;;;;;33227:330;33157:400;;:::o;42762:2800::-;42896:27;42926;42945:7;42926:18;:27::i;:::-;42896:57;;43011:4;-1:-1:-1;;;;;42970:45:0;42986:19;-1:-1:-1;;;;;42970:45:0;;42966:86;;43024:28;;-1:-1:-1;;;43024:28:0;;;;;;;;;;;42966:86;43066:27;41484:24;;;:15;:24;;;;;41706:26;;53953:10;42459:30;;;-1:-1:-1;;;;;42157:26:0;;42438:19;;;42435:55;43245:174;;43332:43;43349:4;53953:10;34292:164;:::i;43332:43::-;43327:92;;43384:35;;-1:-1:-1;;;43384:35:0;;;;;;;;;;;43327:92;-1:-1:-1;;;;;43436:16:0;;43432:52;;43461:23;;-1:-1:-1;;;43461:23:0;;;;;;;;;;;43432:52;43633:15;43630:160;;;43773:1;43752:19;43745:30;43630:160;-1:-1:-1;;;;;44168:24:0;;;;;;;:18;:24;;;;;;44166:26;;-1:-1:-1;;44166:26:0;;;44237:22;;;;;;;;;44235:24;;-1:-1:-1;44235:24:0;;;31343:11;31319:22;31315:40;31302:62;-1:-1:-1;;;31302:62:0;44530:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;44824:46:0;;44820:626;;44928:1;44918:11;;44896:19;45051:30;;;:17;:30;;;;;;45047:384;;45189:13;;45174:11;:28;45170:242;;45336:30;;;;:17;:30;;;;;:52;;;45170:242;44877:569;44820:626;45493:7;45489:2;-1:-1:-1;;;;;45474:27:0;45483:4;-1:-1:-1;;;;;45474:27:0;;;;;;;;;;;42885:2677;;;42762:2800;;;:::o;65116:188::-;60823:13;:11;:13::i;:::-;57862:1:::1;58460:7;;:19;;58452:63;;;::::0;-1:-1:-1;;;58452:63:0;;11748:2:1;58452:63:0::1;::::0;::::1;11730:21:1::0;11787:2;11767:18;;;11760:30;11826:33;11806:18;;;11799:61;11877:18;;58452:63:0::1;;;;;;;;;57862:1;58593:7;:18:::0;65199:49:::2;::::0;65181:12:::2;::::0;65199:10:::2;::::0;65222:21:::2;::::0;65181:12;65199:49;65181:12;65199:49;65222:21;65199:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65180:68;;;65268:7;65260:36;;;::::0;-1:-1:-1;;;65260:36:0;;11403:2:1;65260:36:0::2;::::0;::::2;11385:21:1::0;11442:2;11422:18;;;11415:30;-1:-1:-1;;;11461:18:1;;;11454:46;11517:18;;65260:36:0::2;11201:340:1::0;65260:36:0::2;-1:-1:-1::0;57818:1:0::1;58772:7;:22:::0;65116:188::o;64622:93::-;60823:13;:11;:13::i;:::-;64689:11:::1;:18:::0;;-1:-1:-1;;64689:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64622:93::o;34527:185::-;34665:39;34682:4;34688:2;34692:7;34665:39;;;;;;;;;;;;:16;:39::i;:::-;34527:185;;;:::o;64723:112::-;60823:13;:11;:13::i;:::-;64800::::1;:27:::0;64723:112::o;65002:106::-;60823:13;:11;:13::i;:::-;65077:23:::1;:13;65093:7:::0;;65077:23:::1;:::i;64521:93::-:0;60823:13;:11;:13::i;:::-;64585:14:::1;:21:::0;;-1:-1:-1;;64585:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64521:93::o;31444:152::-;31516:7;31559:27;31578:7;31559:18;:27::i;63021:226::-;60823:13;:11;:13::i;:::-;62619:4:::1;63157:3;63141:13;25248:12:::0;;25232:13;;:28;;24974:323;63141:13:::1;:19;;;;:::i;:::-;:33;;63133:66;;;::::0;-1:-1:-1;;;63133:66:0;;9216:2:1;63133:66:0::1;::::0;::::1;9198:21:1::0;9255:2;9235:18;;;9228:30;-1:-1:-1;;;9274:18:1;;;9267:50;9334:18;;63133:66:0::1;9014:344:1::0;63133:66:0::1;63210:29;63220:13;63235:3;63210:9;:29::i;:::-;63021:226:::0;;:::o;26623:232::-;26695:7;-1:-1:-1;;;;;26719:19:0;;26715:60;;26747:28;;-1:-1:-1;;;26747:28:0;;;;;;;;;;;26715:60;-1:-1:-1;;;;;;26793:25:0;;;;;:18;:25;;;;;;21137:13;26793:54;;26623:232::o;61585:103::-;60823:13;:11;:13::i;:::-;61650:30:::1;61677:1;61650:18;:30::i;:::-;61585:103::o:0;31832:104::-;31888:13;31921:7;31914:14;;;;;:::i;33913:308::-;-1:-1:-1;;;;;34012:31:0;;53953:10;34012:31;34008:61;;;34052:17;;-1:-1:-1;;;34052:17:0;;;;;;;;;;;34008:61;53953:10;34082:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;34082:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;34082:60:0;;;;;;;;;;34158:55;;7438:41:1;;;34082:49:0;;53953:10;34158:55;;7411:18:1;34158:55:0;;;;;;;33913:308;;:::o;64115:396::-;62933:9;62946:10;62933:23;62925:66;;;;-1:-1:-1;;;62925:66:0;;9978:2:1;62925:66:0;;;9960:21:1;10017:2;9997:18;;;9990:30;10056:32;10036:18;;;10029:60;10106:18;;62925:66:0;9776:354:1;62925:66:0;64260:14:::1;::::0;::::1;;64238:93;;;::::0;-1:-1:-1;;;64238:93:0;;11045:2:1;64238:93:0::1;::::0;::::1;11027:21:1::0;11084:2;11064:18;;;11057:30;11123:31;11103:18;;;11096:59;11172:18;;64238:93:0::1;10843:353:1::0;64238:93:0::1;62619:4;64380:8;64364:13;25248:12:::0;;25232:13;;:28;;24974:323;64364:13:::1;:24;;;;:::i;:::-;:38;;64342:106;;;::::0;-1:-1:-1;;;64342:106:0;;10337:2:1;64342:106:0::1;::::0;::::1;10319:21:1::0;10376:2;10356:18;;;10349:30;-1:-1:-1;;;10395:18:1;;;10388:48;10453:18;;64342:106:0::1;10135:342:1::0;64342:106:0::1;64468:31;64478:10;64490:8;64468:9;:31::i;:::-;64115:396:::0;:::o;34783:399::-;34950:31;34963:4;34969:2;34973:7;34950:12;:31::i;:::-;-1:-1:-1;;;;;34996:14:0;;;:19;34992:183;;35035:56;35066:4;35072:2;35076:7;35085:5;35035:30;:56::i;:::-;35030:145;;35119:40;;-1:-1:-1;;;35119:40:0;;;;;;;;;;;35030:145;34783:399;;;;:::o;63255:850::-;62933:9;62946:10;62933:23;62925:66;;;;-1:-1:-1;;;62925:66:0;;9978:2:1;62925:66:0;;;9960:21:1;10017:2;9997:18;;;9990:30;10056:32;10036:18;;;10029:60;10106:18;;62925:66:0;9776:354:1;62925:66:0;63395:28:::1;::::0;-1:-1:-1;;63412:10:0::1;5827:2:1::0;5823:15;5819:53;63395:28:0::1;::::0;::::1;5807:66:1::0;63370:12:0::1;::::0;5889::1;;63395:28:0::1;;;;;;;;;;;;63385:39;;;;;;63370:54;;63443:53;63462:12;;63443:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;63476:13:0::1;::::0;;-1:-1:-1;63491:4:0;;-1:-1:-1;63443:18:0::1;:53::i;:::-;63435:100;;;::::0;-1:-1:-1;;;63435:100:0;;8866:2:1;63435:100:0::1;::::0;::::1;8848:21:1::0;8905:2;8885:18;;;8878:30;-1:-1:-1;;;8924:18:1;;;8917:51;8985:18;;63435:100:0::1;8664:345:1::0;63435:100:0::1;63554:11;::::0;::::1;;63546:56;;;::::0;-1:-1:-1;;;63546:56:0;;8098:2:1;63546:56:0::1;::::0;::::1;8080:21:1::0;;;8117:18;;;8110:30;8176:34;8156:18;;;8149:62;8228:18;;63546:56:0::1;7896:356:1::0;63546:56:0::1;62619:4;63637:8;63621:13;25248:12:::0;;25232:13;;:28;;24974:323;63621:13:::1;:24;;;;:::i;:::-;:38;;63613:71;;;::::0;-1:-1:-1;;;63613:71:0;;9216:2:1;63613:71:0::1;::::0;::::1;9198:21:1::0;9255:2;9235:18;;;9228:30;-1:-1:-1;;;9274:18:1;;;9267:50;9334:18;;63613:71:0::1;9014:344:1::0;63613:71:0::1;63724:10;63700:35;::::0;;;:23:::1;:35;::::0;;;;;::::1;;63695:158;;63776:10;63752:35;::::0;;;:23:::1;:35;::::0;;;;;;;:42;;-1:-1:-1;;63752:42:0::1;63790:4;63752:42;::::0;;63809:16:::1;:28:::0;;;;;63840:1:::1;63809:32:::0;;63695:158:::1;63888:10;63914:1;63871:28:::0;;;:16:::1;:28;::::0;;;;;:39:::1;::::0;63902:8;;63871:39:::1;:::i;:::-;:44;;63863:101;;;::::0;-1:-1:-1;;;63863:101:0;;9565:2:1;63863:101:0::1;::::0;::::1;9547:21:1::0;9604:2;9584:18;;;9577:30;9643:34;9623:18;;;9616:62;-1:-1:-1;;;9694:18:1;;;9687:42;9746:19;;63863:101:0::1;9363:408:1::0;63863:101:0::1;64023:10;64006:28;::::0;;;:16:::1;:28;::::0;;;;;:39:::1;::::0;64037:8;;64006:39:::1;:::i;:::-;63992:10;63975:28;::::0;;;:16:::1;:28;::::0;;;;:70;;;;64056:31:::1;::::0;64078:8;64056:9:::1;:31::i;32007:318::-:0;32080:13;32111:16;32119:7;32111;:16::i;:::-;32106:59;;32136:29;;-1:-1:-1;;;32136:29:0;;;;;;;;;;;32106:59;32178:21;32202:10;:8;:10::i;:::-;32178:34;;32236:7;32230:21;32255:1;32230:26;;:87;;;;;;;;;;;;;;;;;32283:7;32292:18;32302:7;32292:9;:18::i;:::-;32266:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32230:87;32223:94;32007:318;-1:-1:-1;;;32007:318:0:o;65312:113::-;-1:-1:-1;;;;;27034:25:0;;65370:7;27034:25;;;:18;:25;;21274:2;27034:25;;;;21137:13;27034:49;;27033:80;65397:20;26937:184;61843:201;60823:13;:11;:13::i;:::-;-1:-1:-1;;;;;61932:22:0;::::1;61924:73;;;::::0;-1:-1:-1;;;61924:73:0;;8459:2:1;61924:73:0::1;::::0;::::1;8441:21:1::0;8498:2;8478:18;;;8471:30;8537:34;8517:18;;;8510:62;-1:-1:-1;;;8588:18:1;;;8581:36;8634:19;;61924:73:0::1;8257:402:1::0;61924:73:0::1;62008:28;62027:8;62008:18;:28::i;35437:281::-:0;35502:4;35592:13;;35582:7;:23;35539:152;;;;-1:-1:-1;;35643:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;35643:43:0;:48;;35437:281::o;28337:1129::-;28404:7;28439;28541:13;;28534:4;:20;28530:869;;;28579:14;28596:23;;;:17;:23;;;;;;-1:-1:-1;;;28685:23:0;;28681:699;;29204:113;29211:11;29204:113;;-1:-1:-1;;;29282:6:0;29264:25;;;;:17;:25;;;;;;29204:113;;28681:699;28556:843;28530:869;29427:31;;-1:-1:-1;;;29427:31:0;;;;;;;;;;;61102:132;60983:7;61010:6;-1:-1:-1;;;;;61010:6:0;53953:10;61166:23;61158:68;;;;-1:-1:-1;;;61158:68:0;;10684:2:1;61158:68:0;;;10666:21:1;;;10703:18;;;10696:30;10762:34;10742:18;;;10735:62;10814:18;;61158:68:0;10482:356:1;35802:112:0;35879:27;35889:2;35893:8;35879:27;;;;;;;;;;;;:9;:27::i;62204:191::-;62278:16;62297:6;;-1:-1:-1;;;;;62314:17:0;;;-1:-1:-1;;;;;;62314:17:0;;;;;;62347:40;;62297:6;;;;;;;62347:40;;62278:16;62347:40;62267:128;62204:191;:::o;49513:716::-;49697:88;;-1:-1:-1;;;49697:88:0;;49676:4;;-1:-1:-1;;;;;49697:45:0;;;;;:88;;53953:10;;49764:4;;49770:7;;49779:5;;49697:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49697:88:0;;;;;;;;-1:-1:-1;;49697:88:0;;;;;;;;;;;;:::i;:::-;;;49693:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49980:13:0;;49976:235;;50026:40;;-1:-1:-1;;;50026:40:0;;;;;;;;;;;49976:235;50169:6;50163:13;50154:6;50150:2;50146:15;50139:38;49693:529;-1:-1:-1;;;;;;49856:64:0;-1:-1:-1;;;49856:64:0;;-1:-1:-1;49513:716:0;;;;;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;;1219:190;-1:-1:-1;;;;1219:190:0:o;64880:114::-;64940:13;64973;64966:20;;;;;:::i;54077:1968::-;54554:4;54548:11;;54561:3;54544:21;;54639:17;;;;55335:11;;;55214:5;55467:2;55481;55471:13;;55463:22;55335:11;55450:36;55522:2;55512:13;;55106:697;55541:4;55106:697;;;55732:1;55727:3;55723:11;55716:18;;55783:2;55777:4;55773:13;55769:2;55765:22;55760:3;55752:36;55636:2;55626:13;;55106:697;;;-1:-1:-1;55833:13:0;;;-1:-1:-1;;55948:12:0;;;56008:19;;;55948:12;54077:1968;-1:-1:-1;54077:1968:0:o;36330:689::-;36461:19;36467:2;36471:8;36461:5;:19::i;:::-;-1:-1:-1;;;;;36522:14:0;;;:19;36518:483;;36576:13;;36624:14;;;36657:233;36688:62;36727:1;36731:2;36735:7;;;;;;36744:5;36688:30;:62::i;:::-;36683:167;;36786:40;;-1:-1:-1;;;36786:40:0;;;;;;;;;;;36683:167;36885:3;36877:5;:11;36657:233;;36972:3;36955:13;;:20;36951:34;;36977:8;;;36951:34;36543:458;;36330:689;;;:::o;2086:296::-;2169:7;2212:4;2169:7;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;2300:9;:33::i;:::-;2285:48;-1:-1:-1;2265:3:0;;;;:::i;:::-;;;;2227:118;;;-1:-1:-1;2362:12:0;2086:296;-1:-1:-1;;;2086:296:0:o;37292:1537::-;37388:13;;-1:-1:-1;;;;;37416:16:0;;37412:48;;37441:19;;-1:-1:-1;;;37441:19:0;;;;;;;;;;;37412:48;37475:13;37471:44;;37497:18;;-1:-1:-1;;;37497:18:0;;;;;;;;;;;37471:44;-1:-1:-1;;;;;38003:22:0;;;;;;:18;:22;;21274:2;38003:22;;:70;;38041:31;38029:44;;38003:70;;;31343:11;31319:22;31315:40;-1:-1:-1;33061:15:0;;33036:23;33032:45;31312:51;31302:62;38316:31;;;;:17;:31;;;;;:173;38334:12;38565:23;;;38603:101;38630:35;;38655:9;;;;;-1:-1:-1;;;;;38630:35:0;;;38647:1;;38630:35;;38647:1;;38630:35;38699:3;38689:7;:13;38603:101;;38720:13;:19;-1:-1:-1;34527:185:0;;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8383:51;;;-1:-1:-1;8518:13:0;8612:15;;;8648:4;8641:15;8695:4;8679:21;;;8293:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:689::-;2902:6;2910;2918;2971:2;2959:9;2950:7;2946:23;2942:32;2939:52;;;2987:1;2984;2977:12;2939:52;3027:9;3014:23;3056:18;3097:2;3089:6;3086:14;3083:34;;;3113:1;3110;3103:12;3083:34;3151:6;3140:9;3136:22;3126:32;;3196:7;3189:4;3185:2;3181:13;3177:27;3167:55;;3218:1;3215;3208:12;3167:55;3258:2;3245:16;3284:2;3276:6;3273:14;3270:34;;;3300:1;3297;3290:12;3270:34;3355:7;3348:4;3338:6;3335:1;3331:14;3327:2;3323:23;3319:34;3316:47;3313:67;;;3376:1;3373;3366:12;3313:67;3407:4;3399:13;;;;3431:6;;-1:-1:-1;3469:20:1;;;;3456:34;;2807:689;-1:-1:-1;;;;2807:689:1:o;3501:180::-;3557:6;3610:2;3598:9;3589:7;3585:23;3581:32;3578:52;;;3626:1;3623;3616:12;3578:52;3649:26;3665:9;3649:26;:::i;3686:180::-;3745:6;3798:2;3786:9;3777:7;3773:23;3769:32;3766:52;;;3814:1;3811;3804:12;3766:52;-1:-1:-1;3837:23:1;;3686:180;-1:-1:-1;3686:180:1:o;3871:245::-;3929:6;3982:2;3970:9;3961:7;3957:23;3953:32;3950:52;;;3998:1;3995;3988:12;3950:52;4037:9;4024:23;4056:30;4080:5;4056:30;:::i;4121:249::-;4190:6;4243:2;4231:9;4222:7;4218:23;4214:32;4211:52;;;4259:1;4256;4249:12;4211:52;4291:9;4285:16;4310:30;4334:5;4310:30;:::i;4375:592::-;4446:6;4454;4507:2;4495:9;4486:7;4482:23;4478:32;4475:52;;;4523:1;4520;4513:12;4475:52;4563:9;4550:23;4592:18;4633:2;4625:6;4622:14;4619:34;;;4649:1;4646;4639:12;4619:34;4687:6;4676:9;4672:22;4662:32;;4732:7;4725:4;4721:2;4717:13;4713:27;4703:55;;4754:1;4751;4744:12;4703:55;4794:2;4781:16;4820:2;4812:6;4809:14;4806:34;;;4836:1;4833;4826:12;4806:34;4881:7;4876:2;4867:6;4863:2;4859:15;4855:24;4852:37;4849:57;;;4902:1;4899;4892:12;4849:57;4933:2;4925:11;;;;;4955:6;;-1:-1:-1;4375:592:1;;-1:-1:-1;;;;4375:592:1:o;5157:254::-;5225:6;5233;5286:2;5274:9;5265:7;5261:23;5257:32;5254:52;;;5302:1;5299;5292:12;5254:52;5338:9;5325:23;5315:33;;5367:38;5401:2;5390:9;5386:18;5367:38;:::i;5416:257::-;5457:3;5495:5;5489:12;5522:6;5517:3;5510:19;5538:63;5594:6;5587:4;5582:3;5578:14;5571:4;5564:5;5560:16;5538:63;:::i;:::-;5655:2;5634:15;-1:-1:-1;;5630:29:1;5621:39;;;;5662:4;5617:50;;5416:257;-1:-1:-1;;5416:257:1:o;5912:470::-;6091:3;6129:6;6123:13;6145:53;6191:6;6186:3;6179:4;6171:6;6167:17;6145:53;:::i;:::-;6261:13;;6220:16;;;;6283:57;6261:13;6220:16;6317:4;6305:17;;6283:57;:::i;:::-;6356:20;;5912:470;-1:-1:-1;;;;5912:470:1:o;6805:488::-;-1:-1:-1;;;;;7074:15:1;;;7056:34;;7126:15;;7121:2;7106:18;;7099:43;7173:2;7158:18;;7151:34;;;7221:3;7216:2;7201:18;;7194:31;;;6999:4;;7242:45;;7267:19;;7259:6;7242:45;:::i;:::-;7234:53;6805:488;-1:-1:-1;;;;;;6805:488:1:o;7672:219::-;7821:2;7810:9;7803:21;7784:4;7841:44;7881:2;7870:9;7866:18;7858:6;7841:44;:::i;12088:128::-;12128:3;12159:1;12155:6;12152:1;12149:13;12146:39;;;12165:18;;:::i;:::-;-1:-1:-1;12201:9:1;;12088:128::o;12221:125::-;12261:4;12289:1;12286;12283:8;12280:34;;;12294:18;;:::i;:::-;-1:-1:-1;12331:9:1;;12221:125::o;12351:258::-;12423:1;12433:113;12447:6;12444:1;12441:13;12433:113;;;12523:11;;;12517:18;12504:11;;;12497:39;12469:2;12462:10;12433:113;;;12564:6;12561:1;12558:13;12555:48;;;-1:-1:-1;;12599:1:1;12581:16;;12574:27;12351:258::o;12614:380::-;12693:1;12689:12;;;;12736;;;12757:61;;12811:4;12803:6;12799:17;12789:27;;12757:61;12864:2;12856:6;12853:14;12833:18;12830:38;12827:161;;;12910:10;12905:3;12901:20;12898:1;12891:31;12945:4;12942:1;12935:15;12973:4;12970:1;12963:15;12827:161;;12614:380;;;:::o;12999:135::-;13038:3;-1:-1:-1;;13059:17:1;;13056:43;;;13079:18;;:::i;:::-;-1:-1:-1;13126:1:1;13115:13;;12999:135::o;13139:127::-;13200:10;13195:3;13191:20;13188:1;13181:31;13231:4;13228:1;13221:15;13255:4;13252:1;13245:15;13271:127;13332:10;13327:3;13323:20;13320:1;13313:31;13363:4;13360:1;13353:15;13387:4;13384:1;13377:15;13403:127;13464:10;13459:3;13455:20;13452:1;13445:31;13495:4;13492:1;13485:15;13519:4;13516:1;13509:15;13535:131;-1:-1:-1;;;;;;13609:32:1;;13599:43;;13589:71;;13656:1;13653;13646:12

Swarm Source

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