ETH Price: $2,437.88 (+2.85%)

Token

GM!Cookies! (GM!Cookies!)
 

Overview

Max Total Supply

1,999 GM!Cookies!

Holders

389

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 GM!Cookies!
0x61dd391608a9eb5f131a995289a1be956b90655c
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:
GmCookieNFT

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-10
*/

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


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

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


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

pragma solidity ^0.8.4;


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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

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

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

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

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

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


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

pragma solidity ^0.8.4;



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

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

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

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

// File: contracts/Gm_Cookies/GmCookieNft.sol

// contracts/GmCookiesNFT.sol


                                                                    
pragma solidity ^0.8.0;





/*
 ____                ____                    __                           
/\  _`\             /\  _`\                 /\ \      __                  
\ \ \L\_\    ___ ___\ \ \/\_\    ___     ___\ \ \/'\ /\_\     __    ____  
 \ \ \L_L  /' __` __`\ \ \/_/_  / __`\  / __`\ \ , < \/\ \  /'__`\ /',__\ 
  \ \ \/, \/\ \/\ \/\ \ \ \L\ \/\ \L\ \/\ \L\ \ \ \\`\\ \ \/\  __//\__, `\
   \ \____/\ \_\ \_\ \_\ \____/\ \____/\ \____/\ \_\ \_\ \_\ \____\/\____/
    \/___/  \/_/\/_/\/_/\/___/  \/___/  \/___/  \/_/\/_/\/_/\/____/\/___/ 
*/    
contract GmCookieNFT is Ownable, ERC721AQueryable, ReentrancyGuard {
    constructor() ERC721A("GM!Cookies!", "GM!Cookies!") {
        PRICE = 3000000000000000;
    }

    string public BASE_URI = "/";

    function initialize() public onlyOwner nonReentrant {
        _safeMint(owner(), 1);
    }

    uint256 public constant MAX_SUPPLY = 1999; // MAX_SUPPLY
    uint256 public constant MAX_MINT = 5; // max per mint call
    uint256 public constant MAX_MINT_PER_ADDRESS = 10; // the max num single address can <MINT>
    uint256 public PRICE = 3000000000000000; // price

    bool public paused = true; // if the saling is running
    uint256 public minted = 0;

    mapping(address => uint256) public userMinted; // to limit single user mint max
    mapping(address => bool) public burnPassMap;

    function setBaseUri(string memory uri) public onlyOwner {
        BASE_URI = uri;
    }

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

    function setPause(bool _paused) public onlyOwner {
        paused = _paused;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        PRICE = newPrice;
    }

    modifier notPaused() {
        require(!paused, "gm! cookies error: sale paused!");
        _;
    }

    function mint(uint256 amount) public payable notPaused nonReentrant {
        address wallet = _msgSender();
        // EOA check
        require(msg.sender == tx.origin, "gm! cookies error: eoa only");
        // CHECK PAYMENT
        require(PRICE * amount <= msg.value, "gm! cookies error: price not enough");
        // CHECK MINT AMOUNT
        require(MAX_MINT >= amount, "gm! cookies error: u cannot mint once more than MAX_MINT (5) !");
        // CHECK REACH CAP
        require(MAX_SUPPLY >= minted + amount, "gm! cookies error: MAX_SUPPLY reached!");
        // CHECK REACH USER MINT CAP
        require(MAX_MINT_PER_ADDRESS >= userMinted[wallet] + amount,"gm! cookies error: u cannot mint more than MAX_MINT_PER_ADDRESS (10) !");
        _safeMint(wallet,amount);
    }

    function _safeMint(address wallet,uint256 amount) override internal {
        // mint
        super._safeMint(wallet, amount);
        userMinted[wallet] += amount;
        minted += amount;
    }

    function setburnPassMap(address _addr, bool pass) public onlyOwner {
        burnPassMap[_addr] = pass;
    }

    function burn(uint256 tokenId, address _user) external {
        require(_msgSender() == owner() || burnPassMap[_msgSender()], "gm! cookies error:user or contract shall not pass");
        require(ownerOf(tokenId) == _user, "gm! cookies error:only owner can burn this token!");
        _burn(tokenId);
    }

    function withdraw(uint256 amount) public onlyOwner nonReentrant {
        uint256 _amt = amount;
        if (amount == 0) {
            _amt = address(this).balance;
        }
        require(_amt > 0, "gm! cookies error:amount cannot be zero");
        _widthdraw(owner(), _amt);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "gm! cookies error:Transfer failed.");
    }

    function setApprovalForAll(address operator, bool approved) public override(IERC721A, ERC721A) {
        super.setApprovalForAll(operator, approved);
    }

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

    struct ContractDashboard {
        bool paused;
        uint256 totalMinted;
        uint256 totalSupply;
        uint256 userMinted;
    }

    function status(address _addr) public view returns (ContractDashboard memory dashboard) {
        dashboard.paused = paused;
        dashboard.totalMinted = minted;
        dashboard.totalSupply = totalSupply();
        dashboard.userMinted = userMinted[_addr];
        return dashboard;
    }

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

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

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

    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC721A, ERC721A) returns (bool) {
        // Supports the following `interfaceId`s:
        // - IERC165: 0x01ffc9a7
        // - IERC721: 0x80ac58cd
        // - IERC721Metadata: 0x5b5e139f
        return ERC721A.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"burnPassMap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"pass","type":"bool"}],"name":"setburnPassMap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"status","outputs":[{"components":[{"internalType":"bool","name":"paused","type":"bool"},{"internalType":"uint256","name":"totalMinted","type":"uint256"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"userMinted","type":"uint256"}],"internalType":"struct GmCookieNFT.ContractDashboard","name":"dashboard","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260016080908152602f60f81b60a052600a90620000229082620001e4565b50660aa87bee538000600b55600c805460ff191660011790556000600d553480156200004d57600080fd5b506040518060400160405280600b81526020016a474d21436f6f6b6965732160a81b8152506040518060400160405280600b81526020016a474d21436f6f6b6965732160a81b815250620000b0620000aa620000eb60201b60201c565b620000ef565b6003620000be8382620001e4565b506004620000cd8282620001e4565b50600060019081556009555050660aa87bee538000600b55620002b0565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200016a57607f821691505b6020821081036200018b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001df57600081815260208120601f850160051c81016020861015620001ba5750805b601f850160051c820191505b81811015620001db57828155600101620001c6565b5050505b505050565b81516001600160401b038111156200020057620002006200013f565b620002188162000211845462000155565b8462000191565b602080601f831160018114620002505760008415620002375750858301515b600019600386901b1c1916600185901b178555620001db565b600085815260208120601f198616915b82811015620002815788860151825594840194600190910190840162000260565b5085821015620002a05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61259f80620002c06000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063a22cb465116100ab578063dbddb26a1161006f578063dbddb26a1461068f578063e985e9c5146106a4578063f0292a03146106ed578063f2fde38b14610702578063fcd3533c1461072257600080fd5b8063a22cb465146105ef578063b88d4fde1461060f578063bedb86fb14610622578063c23dc68f14610642578063c87b56dd1461066f57600080fd5b806391b7f5ed116100f257806391b7f5ed1461056757806395d89b411461058757806399a2557a1461059c578063a0712d68146105bc578063a0bcfc7f146105cf57600080fd5b8063715018a6146104dc5780638129fc1c146104f15780638462151c146105065780638d859f3e146105335780638da5cb5b1461054957600080fd5b80633acd6cb2116101bc5780635c975abb116101805780635c975abb1461040d5780636352211e14610427578063645b8b1b146104475780636c832a6d1461049c57806370a08231146104bc57600080fd5b80633acd6cb21461037257806342842e0e146103875780634de0d5eb1461039a5780634f02c420146103ca5780635bbb2177146103e057600080fd5b806318160ddd1161020357806318160ddd146102d95780631aa5e872146102fc57806323b872dd146103295780632e1a7d4d1461033c57806332cb6b0c1461035c57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611e54565b610742565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610753565b6040516102619190611ec1565b34801561029857600080fd5b506102ac6102a7366004611ed4565b6107e5565b6040516001600160a01b039091168152602001610261565b6102d76102d2366004611f09565b610829565b005b3480156102e557600080fd5b50600254600154035b604051908152602001610261565b34801561030857600080fd5b506102ee610317366004611f33565b600e6020526000908152604090205481565b6102d7610337366004611f4e565b610837565b34801561034857600080fd5b506102d7610357366004611ed4565b610847565b34801561036857600080fd5b506102ee6107cf81565b34801561037e57600080fd5b506102ee600a81565b6102d7610395366004611f4e565b610910565b3480156103a657600080fd5b506102556103b5366004611f33565b600f6020526000908152604090205460ff1681565b3480156103d657600080fd5b506102ee600d5481565b3480156103ec57600080fd5b506104006103fb366004611f8a565b61091b565b604051610261919061203c565b34801561041957600080fd5b50600c546102559060ff1681565b34801561043357600080fd5b506102ac610442366004611ed4565b6109e7565b34801561045357600080fd5b50610467610462366004611f33565b6109f2565b604051610261919081511515815260208083015190820152604080830151908201526060918201519181019190915260800190565b3480156104a857600080fd5b506102d76104b736600461208e565b610a63565b3480156104c857600080fd5b506102ee6104d7366004611f33565b610a96565b3480156104e857600080fd5b506102d7610ae5565b3480156104fd57600080fd5b506102d7610af9565b34801561051257600080fd5b50610526610521366004611f33565b610b4b565b60405161026191906120c1565b34801561053f57600080fd5b506102ee600b5481565b34801561055557600080fd5b506000546001600160a01b03166102ac565b34801561057357600080fd5b506102d7610582366004611ed4565b610c54565b34801561059357600080fd5b5061027f610c61565b3480156105a857600080fd5b506105266105b73660046120f9565b610c70565b6102d76105ca366004611ed4565b610dea565b3480156105db57600080fd5b506102d76105ea3660046121b8565b6110b5565b3480156105fb57600080fd5b506102d761060a36600461208e565b6110c9565b6102d761061d366004612201565b6110d3565b34801561062e57600080fd5b506102d761063d36600461227d565b6110e5565b34801561064e57600080fd5b5061066261065d366004611ed4565b611100565b6040516102619190612298565b34801561067b57600080fd5b5061027f61068a366004611ed4565b611178565b34801561069b57600080fd5b5061027f6111fb565b3480156106b057600080fd5b506102556106bf3660046122a6565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106f957600080fd5b506102ee600581565b34801561070e57600080fd5b506102d761071d366004611f33565b611289565b34801561072e57600080fd5b506102d761073d3660046122d0565b611302565b600061074d8261141c565b92915050565b606060038054610762906122f3565b80601f016020809104026020016040519081016040528092919081815260200182805461078e906122f3565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b5050505050905090565b60006107f08261146a565b61080d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6108338282611492565b5050565b610842838383611532565b505050565b61084f6116c3565b60026009540361087a5760405162461bcd60e51b81526004016108719061232d565b60405180910390fd5b600260095580600081900361088c5750475b600081116108ec5760405162461bcd60e51b815260206004820152602760248201527f676d2120636f6f6b696573206572726f723a616d6f756e742063616e6e6f74206044820152666265207a65726f60c81b6064820152608401610871565b6109076109016000546001600160a01b031690565b8261171d565b50506001600955565b6108428383836117cb565b60608160008167ffffffffffffffff8111156109395761093961212c565b60405190808252806020026020018201604052801561098b57816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816109575790505b50905060005b8281146109de576109b98686838181106109ad576109ad612364565b90506020020135611100565b8282815181106109cb576109cb612364565b6020908102919091010152600101610991565b50949350505050565b600061074d826117e6565b610a1f60405180608001604052806000151581526020016000815260200160008152602001600081525090565b600c5460ff1615158152600d546020820152600254600154036040808301919091526001600160a01b039092166000908152600e6020529190912054606082015290565b610a6b6116c3565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b60006001600160a01b038216610abf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610aed6116c3565b610af7600061184d565b565b610b016116c3565b600260095403610b235760405162461bcd60e51b81526004016108719061232d565b6002600955610b44610b3d6000546001600160a01b031690565b600161189d565b6001600955565b60606000806000610b5b85610a96565b905060008167ffffffffffffffff811115610b7857610b7861212c565b604051908082528060200260200182016040528015610ba1578160200160208202803683370190505b509050610bce60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614610c4857610be1816118f1565b91508160400151610c405781516001600160a01b031615610c0157815194505b876001600160a01b0316856001600160a01b031603610c405780838780600101985081518110610c3357610c33612364565b6020026020010181815250505b600101610bd1565b50909695505050505050565b610c5c6116c3565b600b55565b606060048054610762906122f3565b6060818310610c9257604051631960ccad60e11b815260040160405180910390fd5b600080610c9e60015490565b905080841115610cac578093505b6000610cb787610a96565b905084861015610cd65785850381811015610cd0578091505b50610cda565b5060005b60008167ffffffffffffffff811115610cf557610cf561212c565b604051908082528060200260200182016040528015610d1e578160200160208202803683370190505b50905081600003610d34579350610de392505050565b6000610d3f88611100565b905060008160400151610d50575080515b885b888114158015610d625750848714155b15610dd757610d70816118f1565b92508260400151610dcf5782516001600160a01b031615610d9057825191505b8a6001600160a01b0316826001600160a01b031603610dcf5780848880600101995081518110610dc257610dc2612364565b6020026020010181815250505b600101610d52565b50505092835250909150505b9392505050565b600c5460ff1615610e3d5760405162461bcd60e51b815260206004820152601f60248201527f676d2120636f6f6b696573206572726f723a2073616c652070617573656421006044820152606401610871565b600260095403610e5f5760405162461bcd60e51b81526004016108719061232d565b600260095533328114610eb45760405162461bcd60e51b815260206004820152601b60248201527f676d2120636f6f6b696573206572726f723a20656f61206f6e6c7900000000006044820152606401610871565b3482600b54610ec39190612390565b1115610f1d5760405162461bcd60e51b815260206004820152602360248201527f676d2120636f6f6b696573206572726f723a207072696365206e6f7420656e6f6044820152620eaced60eb1b6064820152608401610871565b8160051015610f945760405162461bcd60e51b815260206004820152603e60248201527f676d2120636f6f6b696573206572726f723a20752063616e6e6f74206d696e7460448201527f206f6e6365206d6f7265207468616e204d41585f4d494e5420283529202100006064820152608401610871565b81600d54610fa291906123a7565b6107cf10156110025760405162461bcd60e51b815260206004820152602660248201527f676d2120636f6f6b696573206572726f723a204d41585f535550504c5920726560448201526561636865642160d01b6064820152608401610871565b6001600160a01b0381166000908152600e60205260409020546110269083906123a7565b600a10156110ab5760405162461bcd60e51b815260206004820152604660248201527f676d2120636f6f6b696573206572726f723a20752063616e6e6f74206d696e7460448201527f206d6f7265207468616e204d41585f4d494e545f5045525f414444524553532060648201526528313029202160d01b608482015260a401610871565b610907818361189d565b6110bd6116c3565b600a6108338282612400565b610833828261192d565b6110df84848484611999565b50505050565b6110ed6116c3565b600c805460ff1916911515919091179055565b60408051608080820183526000808352602080840182905283850182905260608085018390528551938401865282845290830182905293820181905292810183905290915060015483106111545792915050565b61115d836118f1565b905080604001511561116f5792915050565b610de3836119dd565b60606111838261146a565b6111a057604051630a14c4b560e41b815260040160405180910390fd5b60006111aa611a12565b905080516000036111ca5760405180602001604052806000815250610de3565b806111d484611a21565b6040516020016111e59291906124c0565b6040516020818303038152906040529392505050565b600a8054611208906122f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611234906122f3565b80156112815780601f1061125657610100808354040283529160200191611281565b820191906000526020600020905b81548152906001019060200180831161126457829003601f168201915b505050505081565b6112916116c3565b6001600160a01b0381166112f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610871565b6112ff8161184d565b50565b6000546001600160a01b031633148061132a5750336000908152600f602052604090205460ff165b6113905760405162461bcd60e51b815260206004820152603160248201527f676d2120636f6f6b696573206572726f723a75736572206f7220636f6e7472616044820152706374207368616c6c206e6f74207061737360781b6064820152608401610871565b806001600160a01b03166113a3836109e7565b6001600160a01b0316146114135760405162461bcd60e51b815260206004820152603160248201527f676d2120636f6f6b696573206572726f723a6f6e6c79206f776e65722063616e604482015270206275726e207468697320746f6b656e2160781b6064820152608401610871565b61083382611a65565b60006301ffc9a760e01b6001600160e01b03198316148061144d57506380ac58cd60e01b6001600160e01b03198316145b8061074d5750506001600160e01b031916635b5e139f60e01b1490565b60006001548210801561074d575050600090815260056020526040902054600160e01b161590565b600061149d826109e7565b9050336001600160a01b038216146114d6576114b981336106bf565b6114d6576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061153d826117e6565b9050836001600160a01b0316816001600160a01b0316146115705760405162a1148160e81b815260040160405180910390fd5b6000828152600760205260409020805461159c8187335b6001600160a01b039081169116811491141790565b6115c7576115aa86336106bf565b6115c757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166115ee57604051633a954ecd60e21b815260040160405180910390fd5b80156115f957600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b8416900361168b576001840160008181526005602052604081205490036116895760015481146116895760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061254a83398151915260405160405180910390a45b505050505050565b6000546001600160a01b03163314610af75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610871565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461176a576040519150601f19603f3d011682016040523d82523d6000602084013e61176f565b606091505b50509050806108425760405162461bcd60e51b815260206004820152602260248201527f676d2120636f6f6b696573206572726f723a5472616e73666572206661696c65604482015261321760f11b6064820152608401610871565b610842838383604051806020016040528060008152506110d3565b6000816001548110156118345760008181526005602052604081205490600160e01b82169003611832575b80600003610de3575060001901600081815260056020526040902054611811565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6118a78282611a70565b6001600160a01b0382166000908152600e6020526040812080548392906118cf9084906123a7565b9250508190555080600d60008282546118e891906123a7565b90915550505050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526005602052604090205461074d90611a8a565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6119a4848484610837565b6001600160a01b0383163b156110df576119c084848484611ad2565b6110df576040516368d2bf6b60e11b815260040160405180910390fd5b60408051608081018252600080825260208201819052918101829052606081019190915261074d611a0d836117e6565b611a8a565b6060600a8054610762906122f3565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611a3b5750819003601f19909101908152919050565b6112ff816000611bbe565b610833828260405180602001604052806000815250611cf7565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b079033908990889088906004016124ef565b6020604051808303816000875af1925050508015611b42575060408051601f3d908101601f19168201909252611b3f9181019061252c565b60015b611ba0573d808015611b70576040519150601f19603f3d011682016040523d82523d6000602084013e611b75565b606091505b508051600003611b98576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000611bc9836117e6565b905080600080611be786600090815260076020526040902080549091565b915091508415611c2757611bfc818433611587565b611c2757611c0a83336106bf565b611c2757604051632ce44b5f60e11b815260040160405180910390fd5b8015611c3257600082555b6001600160a01b038316600081815260066020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260056020526040812091909155600160e11b85169003611cc057600186016000818152600560205260408120549003611cbe576001548114611cbe5760008181526005602052604090208590555b505b60405186906000906001600160a01b0386169060008051602061254a833981519152908390a4505060028054600101905550505050565b611d018383611d64565b6001600160a01b0383163b15610842576001548281035b611d2b6000868380600101945086611ad2565b611d48576040516368d2bf6b60e11b815260040160405180910390fd5b818110611d18578160015414611d5d57600080fd5b5050505050565b6001546000829003611d895760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b1783179055828401908390839060008051602061254a8339815191528180a4600183015b818114611e14578083600060008051602061254a833981519152600080a4600101611dee565b5081600003611e3557604051622e076360e81b815260040160405180910390fd5b60015550505050565b6001600160e01b0319811681146112ff57600080fd5b600060208284031215611e6657600080fd5b8135610de381611e3e565b60005b83811015611e8c578181015183820152602001611e74565b50506000910152565b60008151808452611ead816020860160208601611e71565b601f01601f19169290920160200192915050565b602081526000610de36020830184611e95565b600060208284031215611ee657600080fd5b5035919050565b80356001600160a01b0381168114611f0457600080fd5b919050565b60008060408385031215611f1c57600080fd5b611f2583611eed565b946020939093013593505050565b600060208284031215611f4557600080fd5b610de382611eed565b600080600060608486031215611f6357600080fd5b611f6c84611eed565b9250611f7a60208501611eed565b9150604084013590509250925092565b60008060208385031215611f9d57600080fd5b823567ffffffffffffffff80821115611fb557600080fd5b818501915085601f830112611fc957600080fd5b813581811115611fd857600080fd5b8660208260051b8501011115611fed57600080fd5b60209290920196919550909350505050565b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610c485761206b838551611fff565b9284019260809290920191600101612058565b80358015158114611f0457600080fd5b600080604083850312156120a157600080fd5b6120aa83611eed565b91506120b86020840161207e565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015610c48578351835292840192918401916001016120dd565b60008060006060848603121561210e57600080fd5b61211784611eed565b95602085013595506040909401359392505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561215d5761215d61212c565b604051601f8501601f19908116603f011681019082821181831017156121855761218561212c565b8160405280935085815286868601111561219e57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156121ca57600080fd5b813567ffffffffffffffff8111156121e157600080fd5b8201601f810184136121f257600080fd5b611bb684823560208401612142565b6000806000806080858703121561221757600080fd5b61222085611eed565b935061222e60208601611eed565b925060408501359150606085013567ffffffffffffffff81111561225157600080fd5b8501601f8101871361226257600080fd5b61227187823560208401612142565b91505092959194509250565b60006020828403121561228f57600080fd5b610de38261207e565b6080810161074d8284611fff565b600080604083850312156122b957600080fd5b6122c283611eed565b91506120b860208401611eed565b600080604083850312156122e357600080fd5b823591506120b860208401611eed565b600181811c9082168061230757607f821691505b60208210810361232757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761074d5761074d61237a565b8082018082111561074d5761074d61237a565b601f82111561084257600081815260208120601f850160051c810160208610156123e15750805b601f850160051c820191505b818110156116bb578281556001016123ed565b815167ffffffffffffffff81111561241a5761241a61212c565b61242e8161242884546122f3565b846123ba565b602080601f831160018114612463576000841561244b5750858301515b600019600386901b1c1916600185901b1785556116bb565b600085815260208120601f198616915b8281101561249257888601518255948401946001909101908401612473565b50858210156124b05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600083516124d2818460208801611e71565b8351908301906124e6818360208801611e71565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061252290830184611e95565b9695505050505050565b60006020828403121561253e57600080fd5b8151610de381611e3e56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122042026def381bfe74168b27ea04948c2476783813eb530e54f641fb58ecaf28df64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063a22cb465116100ab578063dbddb26a1161006f578063dbddb26a1461068f578063e985e9c5146106a4578063f0292a03146106ed578063f2fde38b14610702578063fcd3533c1461072257600080fd5b8063a22cb465146105ef578063b88d4fde1461060f578063bedb86fb14610622578063c23dc68f14610642578063c87b56dd1461066f57600080fd5b806391b7f5ed116100f257806391b7f5ed1461056757806395d89b411461058757806399a2557a1461059c578063a0712d68146105bc578063a0bcfc7f146105cf57600080fd5b8063715018a6146104dc5780638129fc1c146104f15780638462151c146105065780638d859f3e146105335780638da5cb5b1461054957600080fd5b80633acd6cb2116101bc5780635c975abb116101805780635c975abb1461040d5780636352211e14610427578063645b8b1b146104475780636c832a6d1461049c57806370a08231146104bc57600080fd5b80633acd6cb21461037257806342842e0e146103875780634de0d5eb1461039a5780634f02c420146103ca5780635bbb2177146103e057600080fd5b806318160ddd1161020357806318160ddd146102d95780631aa5e872146102fc57806323b872dd146103295780632e1a7d4d1461033c57806332cb6b0c1461035c57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611e54565b610742565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610753565b6040516102619190611ec1565b34801561029857600080fd5b506102ac6102a7366004611ed4565b6107e5565b6040516001600160a01b039091168152602001610261565b6102d76102d2366004611f09565b610829565b005b3480156102e557600080fd5b50600254600154035b604051908152602001610261565b34801561030857600080fd5b506102ee610317366004611f33565b600e6020526000908152604090205481565b6102d7610337366004611f4e565b610837565b34801561034857600080fd5b506102d7610357366004611ed4565b610847565b34801561036857600080fd5b506102ee6107cf81565b34801561037e57600080fd5b506102ee600a81565b6102d7610395366004611f4e565b610910565b3480156103a657600080fd5b506102556103b5366004611f33565b600f6020526000908152604090205460ff1681565b3480156103d657600080fd5b506102ee600d5481565b3480156103ec57600080fd5b506104006103fb366004611f8a565b61091b565b604051610261919061203c565b34801561041957600080fd5b50600c546102559060ff1681565b34801561043357600080fd5b506102ac610442366004611ed4565b6109e7565b34801561045357600080fd5b50610467610462366004611f33565b6109f2565b604051610261919081511515815260208083015190820152604080830151908201526060918201519181019190915260800190565b3480156104a857600080fd5b506102d76104b736600461208e565b610a63565b3480156104c857600080fd5b506102ee6104d7366004611f33565b610a96565b3480156104e857600080fd5b506102d7610ae5565b3480156104fd57600080fd5b506102d7610af9565b34801561051257600080fd5b50610526610521366004611f33565b610b4b565b60405161026191906120c1565b34801561053f57600080fd5b506102ee600b5481565b34801561055557600080fd5b506000546001600160a01b03166102ac565b34801561057357600080fd5b506102d7610582366004611ed4565b610c54565b34801561059357600080fd5b5061027f610c61565b3480156105a857600080fd5b506105266105b73660046120f9565b610c70565b6102d76105ca366004611ed4565b610dea565b3480156105db57600080fd5b506102d76105ea3660046121b8565b6110b5565b3480156105fb57600080fd5b506102d761060a36600461208e565b6110c9565b6102d761061d366004612201565b6110d3565b34801561062e57600080fd5b506102d761063d36600461227d565b6110e5565b34801561064e57600080fd5b5061066261065d366004611ed4565b611100565b6040516102619190612298565b34801561067b57600080fd5b5061027f61068a366004611ed4565b611178565b34801561069b57600080fd5b5061027f6111fb565b3480156106b057600080fd5b506102556106bf3660046122a6565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106f957600080fd5b506102ee600581565b34801561070e57600080fd5b506102d761071d366004611f33565b611289565b34801561072e57600080fd5b506102d761073d3660046122d0565b611302565b600061074d8261141c565b92915050565b606060038054610762906122f3565b80601f016020809104026020016040519081016040528092919081815260200182805461078e906122f3565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b5050505050905090565b60006107f08261146a565b61080d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6108338282611492565b5050565b610842838383611532565b505050565b61084f6116c3565b60026009540361087a5760405162461bcd60e51b81526004016108719061232d565b60405180910390fd5b600260095580600081900361088c5750475b600081116108ec5760405162461bcd60e51b815260206004820152602760248201527f676d2120636f6f6b696573206572726f723a616d6f756e742063616e6e6f74206044820152666265207a65726f60c81b6064820152608401610871565b6109076109016000546001600160a01b031690565b8261171d565b50506001600955565b6108428383836117cb565b60608160008167ffffffffffffffff8111156109395761093961212c565b60405190808252806020026020018201604052801561098b57816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816109575790505b50905060005b8281146109de576109b98686838181106109ad576109ad612364565b90506020020135611100565b8282815181106109cb576109cb612364565b6020908102919091010152600101610991565b50949350505050565b600061074d826117e6565b610a1f60405180608001604052806000151581526020016000815260200160008152602001600081525090565b600c5460ff1615158152600d546020820152600254600154036040808301919091526001600160a01b039092166000908152600e6020529190912054606082015290565b610a6b6116c3565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b60006001600160a01b038216610abf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610aed6116c3565b610af7600061184d565b565b610b016116c3565b600260095403610b235760405162461bcd60e51b81526004016108719061232d565b6002600955610b44610b3d6000546001600160a01b031690565b600161189d565b6001600955565b60606000806000610b5b85610a96565b905060008167ffffffffffffffff811115610b7857610b7861212c565b604051908082528060200260200182016040528015610ba1578160200160208202803683370190505b509050610bce60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614610c4857610be1816118f1565b91508160400151610c405781516001600160a01b031615610c0157815194505b876001600160a01b0316856001600160a01b031603610c405780838780600101985081518110610c3357610c33612364565b6020026020010181815250505b600101610bd1565b50909695505050505050565b610c5c6116c3565b600b55565b606060048054610762906122f3565b6060818310610c9257604051631960ccad60e11b815260040160405180910390fd5b600080610c9e60015490565b905080841115610cac578093505b6000610cb787610a96565b905084861015610cd65785850381811015610cd0578091505b50610cda565b5060005b60008167ffffffffffffffff811115610cf557610cf561212c565b604051908082528060200260200182016040528015610d1e578160200160208202803683370190505b50905081600003610d34579350610de392505050565b6000610d3f88611100565b905060008160400151610d50575080515b885b888114158015610d625750848714155b15610dd757610d70816118f1565b92508260400151610dcf5782516001600160a01b031615610d9057825191505b8a6001600160a01b0316826001600160a01b031603610dcf5780848880600101995081518110610dc257610dc2612364565b6020026020010181815250505b600101610d52565b50505092835250909150505b9392505050565b600c5460ff1615610e3d5760405162461bcd60e51b815260206004820152601f60248201527f676d2120636f6f6b696573206572726f723a2073616c652070617573656421006044820152606401610871565b600260095403610e5f5760405162461bcd60e51b81526004016108719061232d565b600260095533328114610eb45760405162461bcd60e51b815260206004820152601b60248201527f676d2120636f6f6b696573206572726f723a20656f61206f6e6c7900000000006044820152606401610871565b3482600b54610ec39190612390565b1115610f1d5760405162461bcd60e51b815260206004820152602360248201527f676d2120636f6f6b696573206572726f723a207072696365206e6f7420656e6f6044820152620eaced60eb1b6064820152608401610871565b8160051015610f945760405162461bcd60e51b815260206004820152603e60248201527f676d2120636f6f6b696573206572726f723a20752063616e6e6f74206d696e7460448201527f206f6e6365206d6f7265207468616e204d41585f4d494e5420283529202100006064820152608401610871565b81600d54610fa291906123a7565b6107cf10156110025760405162461bcd60e51b815260206004820152602660248201527f676d2120636f6f6b696573206572726f723a204d41585f535550504c5920726560448201526561636865642160d01b6064820152608401610871565b6001600160a01b0381166000908152600e60205260409020546110269083906123a7565b600a10156110ab5760405162461bcd60e51b815260206004820152604660248201527f676d2120636f6f6b696573206572726f723a20752063616e6e6f74206d696e7460448201527f206d6f7265207468616e204d41585f4d494e545f5045525f414444524553532060648201526528313029202160d01b608482015260a401610871565b610907818361189d565b6110bd6116c3565b600a6108338282612400565b610833828261192d565b6110df84848484611999565b50505050565b6110ed6116c3565b600c805460ff1916911515919091179055565b60408051608080820183526000808352602080840182905283850182905260608085018390528551938401865282845290830182905293820181905292810183905290915060015483106111545792915050565b61115d836118f1565b905080604001511561116f5792915050565b610de3836119dd565b60606111838261146a565b6111a057604051630a14c4b560e41b815260040160405180910390fd5b60006111aa611a12565b905080516000036111ca5760405180602001604052806000815250610de3565b806111d484611a21565b6040516020016111e59291906124c0565b6040516020818303038152906040529392505050565b600a8054611208906122f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611234906122f3565b80156112815780601f1061125657610100808354040283529160200191611281565b820191906000526020600020905b81548152906001019060200180831161126457829003601f168201915b505050505081565b6112916116c3565b6001600160a01b0381166112f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610871565b6112ff8161184d565b50565b6000546001600160a01b031633148061132a5750336000908152600f602052604090205460ff165b6113905760405162461bcd60e51b815260206004820152603160248201527f676d2120636f6f6b696573206572726f723a75736572206f7220636f6e7472616044820152706374207368616c6c206e6f74207061737360781b6064820152608401610871565b806001600160a01b03166113a3836109e7565b6001600160a01b0316146114135760405162461bcd60e51b815260206004820152603160248201527f676d2120636f6f6b696573206572726f723a6f6e6c79206f776e65722063616e604482015270206275726e207468697320746f6b656e2160781b6064820152608401610871565b61083382611a65565b60006301ffc9a760e01b6001600160e01b03198316148061144d57506380ac58cd60e01b6001600160e01b03198316145b8061074d5750506001600160e01b031916635b5e139f60e01b1490565b60006001548210801561074d575050600090815260056020526040902054600160e01b161590565b600061149d826109e7565b9050336001600160a01b038216146114d6576114b981336106bf565b6114d6576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061153d826117e6565b9050836001600160a01b0316816001600160a01b0316146115705760405162a1148160e81b815260040160405180910390fd5b6000828152600760205260409020805461159c8187335b6001600160a01b039081169116811491141790565b6115c7576115aa86336106bf565b6115c757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166115ee57604051633a954ecd60e21b815260040160405180910390fd5b80156115f957600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b8416900361168b576001840160008181526005602052604081205490036116895760015481146116895760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061254a83398151915260405160405180910390a45b505050505050565b6000546001600160a01b03163314610af75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610871565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461176a576040519150601f19603f3d011682016040523d82523d6000602084013e61176f565b606091505b50509050806108425760405162461bcd60e51b815260206004820152602260248201527f676d2120636f6f6b696573206572726f723a5472616e73666572206661696c65604482015261321760f11b6064820152608401610871565b610842838383604051806020016040528060008152506110d3565b6000816001548110156118345760008181526005602052604081205490600160e01b82169003611832575b80600003610de3575060001901600081815260056020526040902054611811565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6118a78282611a70565b6001600160a01b0382166000908152600e6020526040812080548392906118cf9084906123a7565b9250508190555080600d60008282546118e891906123a7565b90915550505050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526005602052604090205461074d90611a8a565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6119a4848484610837565b6001600160a01b0383163b156110df576119c084848484611ad2565b6110df576040516368d2bf6b60e11b815260040160405180910390fd5b60408051608081018252600080825260208201819052918101829052606081019190915261074d611a0d836117e6565b611a8a565b6060600a8054610762906122f3565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611a3b5750819003601f19909101908152919050565b6112ff816000611bbe565b610833828260405180602001604052806000815250611cf7565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b079033908990889088906004016124ef565b6020604051808303816000875af1925050508015611b42575060408051601f3d908101601f19168201909252611b3f9181019061252c565b60015b611ba0573d808015611b70576040519150601f19603f3d011682016040523d82523d6000602084013e611b75565b606091505b508051600003611b98576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000611bc9836117e6565b905080600080611be786600090815260076020526040902080549091565b915091508415611c2757611bfc818433611587565b611c2757611c0a83336106bf565b611c2757604051632ce44b5f60e11b815260040160405180910390fd5b8015611c3257600082555b6001600160a01b038316600081815260066020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260056020526040812091909155600160e11b85169003611cc057600186016000818152600560205260408120549003611cbe576001548114611cbe5760008181526005602052604090208590555b505b60405186906000906001600160a01b0386169060008051602061254a833981519152908390a4505060028054600101905550505050565b611d018383611d64565b6001600160a01b0383163b15610842576001548281035b611d2b6000868380600101945086611ad2565b611d48576040516368d2bf6b60e11b815260040160405180910390fd5b818110611d18578160015414611d5d57600080fd5b5050505050565b6001546000829003611d895760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b1783179055828401908390839060008051602061254a8339815191528180a4600183015b818114611e14578083600060008051602061254a833981519152600080a4600101611dee565b5081600003611e3557604051622e076360e81b815260040160405180910390fd5b60015550505050565b6001600160e01b0319811681146112ff57600080fd5b600060208284031215611e6657600080fd5b8135610de381611e3e565b60005b83811015611e8c578181015183820152602001611e74565b50506000910152565b60008151808452611ead816020860160208601611e71565b601f01601f19169290920160200192915050565b602081526000610de36020830184611e95565b600060208284031215611ee657600080fd5b5035919050565b80356001600160a01b0381168114611f0457600080fd5b919050565b60008060408385031215611f1c57600080fd5b611f2583611eed565b946020939093013593505050565b600060208284031215611f4557600080fd5b610de382611eed565b600080600060608486031215611f6357600080fd5b611f6c84611eed565b9250611f7a60208501611eed565b9150604084013590509250925092565b60008060208385031215611f9d57600080fd5b823567ffffffffffffffff80821115611fb557600080fd5b818501915085601f830112611fc957600080fd5b813581811115611fd857600080fd5b8660208260051b8501011115611fed57600080fd5b60209290920196919550909350505050565b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610c485761206b838551611fff565b9284019260809290920191600101612058565b80358015158114611f0457600080fd5b600080604083850312156120a157600080fd5b6120aa83611eed565b91506120b86020840161207e565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015610c48578351835292840192918401916001016120dd565b60008060006060848603121561210e57600080fd5b61211784611eed565b95602085013595506040909401359392505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561215d5761215d61212c565b604051601f8501601f19908116603f011681019082821181831017156121855761218561212c565b8160405280935085815286868601111561219e57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156121ca57600080fd5b813567ffffffffffffffff8111156121e157600080fd5b8201601f810184136121f257600080fd5b611bb684823560208401612142565b6000806000806080858703121561221757600080fd5b61222085611eed565b935061222e60208601611eed565b925060408501359150606085013567ffffffffffffffff81111561225157600080fd5b8501601f8101871361226257600080fd5b61227187823560208401612142565b91505092959194509250565b60006020828403121561228f57600080fd5b610de38261207e565b6080810161074d8284611fff565b600080604083850312156122b957600080fd5b6122c283611eed565b91506120b860208401611eed565b600080604083850312156122e357600080fd5b823591506120b860208401611eed565b600181811c9082168061230757607f821691505b60208210810361232757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761074d5761074d61237a565b8082018082111561074d5761074d61237a565b601f82111561084257600081815260208120601f850160051c810160208610156123e15750805b601f850160051c820191505b818110156116bb578281556001016123ed565b815167ffffffffffffffff81111561241a5761241a61212c565b61242e8161242884546122f3565b846123ba565b602080601f831160018114612463576000841561244b5750858301515b600019600386901b1c1916600185901b1785556116bb565b600085815260208120601f198616915b8281101561249257888601518255948401946001909101908401612473565b50858210156124b05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600083516124d2818460208801611e71565b8351908301906124e6818360208801611e71565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061252290830184611e95565b9695505050505050565b60006020828403121561253e57600080fd5b8151610de381611e3e56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122042026def381bfe74168b27ea04948c2476783813eb530e54f641fb58ecaf28df64736f6c63430008120033

Deployed Bytecode Sourcemap

67495:5079:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72236:335;;;;;;;;;;-1:-1:-1;72236:335:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;72236:335:0;;;;;;;;28182:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34673:218::-;;;;;;;;;;-1:-1:-1;34673:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;34673:218:0;1533:203:1;70955:146:0;;;;;;:::i;:::-;;:::i;:::-;;23933:323;;;;;;;;;;-1:-1:-1;24207:12:0;;24191:13;;:28;23933:323;;;2324:25:1;;;2312:2;2297:18;23933:323:0;2178:177:1;68183:45:0;;;;;;;;;;-1:-1:-1;68183:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;71568:198;;;;;;:::i;:::-;;:::i;70282:293::-;;;;;;;;;;-1:-1:-1;70282:293:0;;;;;:::i;:::-;;:::i;67809:41::-;;;;;;;;;;;;67846:4;67809:41;;67935:49;;;;;;;;;;;;67982:2;67935:49;;71774:206;;;;;;:::i;:::-;;:::i;68268:43::-;;;;;;;;;;-1:-1:-1;68268:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;68149:25;;;;;;;;;;;;;;;;61979:528;;;;;;;;;;-1:-1:-1;61979:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;68089:25::-;;;;;;;;;;-1:-1:-1;68089:25:0;;;;;;;;29575:152;;;;;;;;;;-1:-1:-1;29575:152:0;;;;;:::i;:::-;;:::i;71261:299::-;;;;;;;;;;-1:-1:-1;71261:299:0;;;;;:::i;:::-;;:::i;:::-;;;;;;4834:13:1;;4827:21;4820:29;4802:48;;4906:4;4894:17;;;4888:24;4866:20;;;4859:54;4969:4;4957:17;;;4951:24;4929:20;;;4922:54;5032:4;5020:17;;;5014:24;4992:20;;;4985:54;;;;4789:3;4774:19;;4585:460;69844:111:0;;;;;;;;;;-1:-1:-1;69844:111:0;;;;;:::i;:::-;;:::i;25117:233::-;;;;;;;;;;-1:-1:-1;25117:233:0;;;;;:::i;:::-;;:::i;5535:103::-;;;;;;;;;;;;;:::i;67709:92::-;;;;;;;;;;;;;:::i;65855:900::-;;;;;;;;;;-1:-1:-1;65855:900:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;68032:39::-;;;;;;;;;;;;;;;;4887:87;;;;;;;;;;-1:-1:-1;4933:7:0;4960:6;-1:-1:-1;;;;;4960:6:0;4887:87;;68626:88;;;;;;;;;;-1:-1:-1;68626:88:0;;;;;:::i;:::-;;:::i;28358:104::-;;;;;;;;;;;;;:::i;62895:2513::-;;;;;;;;;;-1:-1:-1;62895:2513:0;;;;;:::i;:::-;;:::i;68833:794::-;;;;;;:::i;:::-;;:::i;68320:89::-;;;;;;;;;;-1:-1:-1;68320:89:0;;;;;:::i;:::-;;:::i;70790:157::-;;;;;;;;;;-1:-1:-1;70790:157:0;;;;;:::i;:::-;;:::i;71988:240::-;;;;;;:::i;:::-;;:::i;68534:84::-;;;;;;;;;;-1:-1:-1;68534:84:0;;;;;:::i;:::-;;:::i;61392:428::-;;;;;;;;;;-1:-1:-1;61392:428:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28568:318::-;;;;;;;;;;-1:-1:-1;28568:318:0;;;;;:::i;:::-;;:::i;67672:28::-;;;;;;;;;;;;;:::i;35622:164::-;;;;;;;;;;-1:-1:-1;35622:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35743:25:0;;;35719:4;35743:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35622:164;67871:36;;;;;;;;;;;;67906:1;67871:36;;5793:201;;;;;;;;;;-1:-1:-1;5793:201:0;;;;;:::i;:::-;;:::i;69963:311::-;;;;;;;;;;-1:-1:-1;69963:311:0;;;;;:::i;:::-;;:::i;72236:335::-;72340:4;72525:38;72551:11;72525:25;:38::i;:::-;72518:45;72236:335;-1:-1:-1;;72236:335:0:o;28182:100::-;28236:13;28269:5;28262:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28182:100;:::o;34673:218::-;34749:7;34774:16;34782:7;34774;:16::i;:::-;34769:64;;34799:34;;-1:-1:-1;;;34799:34:0;;;;;;;;;;;34769:64;-1:-1:-1;34853:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;34853:30:0;;34673:218::o;70955:146::-;71061:32;71075:8;71085:7;71061:13;:32::i;:::-;70955:146;;:::o;71568:198::-;71721:37;71740:4;71746:2;71750:7;71721:18;:37::i;:::-;71568:198;;;:::o;70282:293::-;4773:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;;-1:-1:-1::0;;;2402:63:0::1;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18:::0;70372:6;70357:12:::2;70393:11:::0;;;70389:72:::2;;-1:-1:-1::0;70428:21:0::2;70389:72;70486:1;70479:4;:8;70471:60;;;::::0;-1:-1:-1;;;70471:60:0;;10262:2:1;70471:60:0::2;::::0;::::2;10244:21:1::0;10301:2;10281:18;;;10274:30;10340:34;10320:18;;;10313:62;-1:-1:-1;;;10391:18:1;;;10384:37;10438:19;;70471:60:0::2;10060:403:1::0;70471:60:0::2;70542:25;70553:7;4933::::0;4960:6;-1:-1:-1;;;;;4960:6:0;;4887:87;70553:7:::2;70562:4;70542:10;:25::i;:::-;-1:-1:-1::0;;1768:1:0::1;2722:7;:22:::0;70282:293::o;71774:206::-;71931:41;71954:4;71960:2;71964:7;71931:22;:41::i;61979:528::-;62123:23;62214:8;62189:22;62214:8;62281:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62281:36:0;;-1:-1:-1;;62281:36:0;;;;;;;;;;;;62244:73;;62337:9;62332:125;62353:14;62348:1;:19;62332:125;;62409:32;62429:8;;62438:1;62429:11;;;;;;;:::i;:::-;;;;;;;62409:19;:32::i;:::-;62393:10;62404:1;62393:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;62369:3;;62332:125;;;-1:-1:-1;62478:10:0;61979:528;-1:-1:-1;;;;61979:528:0:o;29575:152::-;29647:7;29690:27;29709:7;29690:18;:27::i;71261:299::-;71313:34;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71313:34:0;71379:6;;;;71360:25;;;;71420:6;;71396:21;;;:30;24207:12;;24191:13;;:28;71437:21;;;;:37;;;;-1:-1:-1;;;;;71508:17:0;;;;;;;:10;:17;;;;;;;71485:20;;;:40;71437:9;71261:299::o;69844:111::-;4773:13;:11;:13::i;:::-;-1:-1:-1;;;;;69922:18:0;;;::::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;69922:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;69844:111::o;25117:233::-;25189:7;-1:-1:-1;;;;;25213:19:0;;25209:60;;25241:28;;-1:-1:-1;;;25241:28:0;;;;;;;;;;;25209:60;-1:-1:-1;;;;;;25287:25:0;;;;;:18;:25;;;;;;19276:13;25287:55;;25117:233::o;5535:103::-;4773:13;:11;:13::i;:::-;5600:30:::1;5627:1;5600:18;:30::i;:::-;5535:103::o:0;67709:92::-;4773:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;;-1:-1:-1::0;;;2402:63:0::1;;;;;;;:::i;:::-;1812:1;2543:7;:18:::0;67772:21:::2;67782:7;4933::::0;4960:6;-1:-1:-1;;;;;4960:6:0;;4887:87;67782:7:::2;67791:1;67772:9;:21::i;:::-;1768:1:::1;2722:7;:22:::0;67709:92::o;65855:900::-;65933:16;65987:19;66021:25;66061:22;66086:16;66096:5;66086:9;:16::i;:::-;66061:41;;66117:25;66159:14;66145:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66145:29:0;;66117:57;;66189:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66189:31:0;66240:9;66235:472;66284:14;66269:11;:29;66235:472;;66336:15;66349:1;66336:12;:15::i;:::-;66324:27;;66374:9;:16;;;66415:8;66370:73;66465:14;;-1:-1:-1;;;;;66465:28:0;;66461:111;;66538:14;;;-1:-1:-1;66461:111:0;66615:5;-1:-1:-1;;;;;66594:26:0;:17;-1:-1:-1;;;;;66594:26:0;;66590:102;;66671:1;66645:8;66654:13;;;;;;66645:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;66590:102;66300:3;;66235:472;;;-1:-1:-1;66728:8:0;;65855:900;-1:-1:-1;;;;;;65855:900:0:o;68626:88::-;4773:13;:11;:13::i;:::-;68690:5:::1;:16:::0;68626:88::o;28358:104::-;28414:13;28447:7;28440:14;;;;;:::i;62895:2513::-;63038:16;63105:4;63096:5;:13;63092:45;;63118:19;;-1:-1:-1;;;63118:19:0;;;;;;;;;;;63092:45;63152:19;63186:17;63206:14;23702:13;;;23620:103;63206:14;63186:34;-1:-1:-1;63457:9:0;63450:4;:16;63446:73;;;63494:9;63487:16;;63446:73;63533:25;63561:16;63571:5;63561:9;:16::i;:::-;63533:44;;63755:4;63747:5;:12;63743:278;;;63802:12;;;63837:31;;;63833:111;;;63913:11;63893:31;;63833:111;63761:198;63743:278;;;-1:-1:-1;64004:1:0;63743:278;64035:25;64077:17;64063:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64063:32:0;;64035:60;;64114:17;64135:1;64114:22;64110:78;;64164:8;-1:-1:-1;64157:15:0;;-1:-1:-1;;;64157:15:0;64110:78;64332:31;64366:26;64386:5;64366:19;:26::i;:::-;64332:60;;64407:25;64652:9;:16;;;64647:92;;-1:-1:-1;64709:14:0;;64647:92;64770:5;64753:478;64782:4;64777:1;:9;;:45;;;;;64805:17;64790:11;:32;;64777:45;64753:478;;;64860:15;64873:1;64860:12;:15::i;:::-;64848:27;;64898:9;:16;;;64939:8;64894:73;64989:14;;-1:-1:-1;;;;;64989:28:0;;64985:111;;65062:14;;;-1:-1:-1;64985:111:0;65139:5;-1:-1:-1;;;;;65118:26:0;:17;-1:-1:-1;;;;;65118:26:0;;65114:102;;65195:1;65169:8;65178:13;;;;;;65169:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;65114:102;64824:3;;64753:478;;;-1:-1:-1;;;65316:29:0;;;-1:-1:-1;65323:8:0;;-1:-1:-1;;62895:2513:0;;;;;;:::o;68833:794::-;68763:6;;;;68762:7;68754:51;;;;-1:-1:-1;;;68754:51:0;;10802:2:1;68754:51:0;;;10784:21:1;10841:2;10821:18;;;10814:30;10880:33;10860:18;;;10853:61;10931:18;;68754:51:0;10600:355:1;68754:51:0;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;;-1:-1:-1::0;;;2402:63:0::1;;;;;;;:::i;:::-;1812:1;2543:7;:18:::0;3518:10;68996:9:::2;68982:23:::0;::::2;68974:63;;;::::0;-1:-1:-1;;;68974:63:0;;11162:2:1;68974:63:0::2;::::0;::::2;11144:21:1::0;11201:2;11181:18;;;11174:30;11240:29;11220:18;;;11213:57;11287:18;;68974:63:0::2;10960:351:1::0;68974:63:0::2;69100:9;69090:6;69082:5;;:14;;;;:::i;:::-;:27;;69074:75;;;::::0;-1:-1:-1;;;69074:75:0;;11823:2:1;69074:75:0::2;::::0;::::2;11805:21:1::0;11862:2;11842:18;;;11835:30;11901:34;11881:18;;;11874:62;-1:-1:-1;;;11952:18:1;;;11945:33;11995:19;;69074:75:0::2;11621:399:1::0;69074:75:0::2;69210:6;67906:1;69198:18;;69190:93;;;::::0;-1:-1:-1;;;69190:93:0;;12227:2:1;69190:93:0::2;::::0;::::2;12209:21:1::0;12266:2;12246:18;;;12239:30;12305:34;12285:18;;;12278:62;12376:32;12356:18;;;12349:60;12426:19;;69190:93:0::2;12025:426:1::0;69190:93:0::2;69353:6;69344;;:15;;;;:::i;:::-;67846:4;69330:29;;69322:80;;;::::0;-1:-1:-1;;;69322:80:0;;12788:2:1;69322:80:0::2;::::0;::::2;12770:21:1::0;12827:2;12807:18;;;12800:30;12866:34;12846:18;;;12839:62;-1:-1:-1;;;12917:18:1;;;12910:36;12963:19;;69322:80:0::2;12586:402:1::0;69322:80:0::2;-1:-1:-1::0;;;;;69483:18:0;::::2;;::::0;;;:10:::2;:18;::::0;;;;;:27:::2;::::0;69504:6;;69483:27:::2;:::i;:::-;67982:2;69459:51;;69451:133;;;::::0;-1:-1:-1;;;69451:133:0;;13195:2:1;69451:133:0::2;::::0;::::2;13177:21:1::0;13234:2;13214:18;;;13207:30;13273:34;13253:18;;;13246:62;13344:34;13324:18;;;13317:62;-1:-1:-1;;;13395:19:1;;;13388:37;13442:19;;69451:133:0::2;12993:474:1::0;69451:133:0::2;69595:24;69605:6;69612;69595:9;:24::i;68320:89::-:0;4773:13;:11;:13::i;:::-;68387:8:::1;:14;68398:3:::0;68387:8;:14:::1;:::i;70790:157::-:0;70896:43;70920:8;70930;70896:23;:43::i;71988:240::-;72173:47;72196:4;72202:2;72206:7;72215:4;72173:22;:47::i;:::-;71988:240;;;;:::o;68534:84::-;4773:13;:11;:13::i;:::-;68594:6:::1;:16:::0;;-1:-1:-1;;68594:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;68534:84::o;61392:428::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23702:13:0;;61585:7;:25;61552:103;;61634:9;61392:428;-1:-1:-1;;61392:428:0:o;61552:103::-;61677:21;61690:7;61677:12;:21::i;:::-;61665:33;;61713:9;:16;;;61709:65;;;61753:9;61392:428;-1:-1:-1;;61392:428:0:o;61709:65::-;61791:21;61804:7;61791:12;:21::i;28568:318::-;28641:13;28672:16;28680:7;28672;:16::i;:::-;28667:59;;28697:29;;-1:-1:-1;;;28697:29:0;;;;;;;;;;;28667:59;28739:21;28763:10;:8;:10::i;:::-;28739:34;;28797:7;28791:21;28816:1;28791:26;:87;;;;;;;;;;;;;;;;;28844:7;28853:18;28863:7;28853:9;:18::i;:::-;28827:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28784:94;28568:318;-1:-1:-1;;;28568:318:0:o;67672:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5793:201::-;4773:13;:11;:13::i;:::-;-1:-1:-1;;;;;5882:22:0;::::1;5874:73;;;::::0;-1:-1:-1;;;5874:73:0;;16379:2:1;5874:73:0::1;::::0;::::1;16361:21:1::0;16418:2;16398:18;;;16391:30;16457:34;16437:18;;;16430:62;-1:-1:-1;;;16508:18:1;;;16501:36;16554:19;;5874:73:0::1;16177:402:1::0;5874:73:0::1;5958:28;5977:8;5958:18;:28::i;:::-;5793:201:::0;:::o;69963:311::-;4933:7;4960:6;-1:-1:-1;;;;;4960:6:0;3518:10;70037:23;;:52;;-1:-1:-1;3518:10:0;70064:25;;;;:11;:25;;;;;;;;70037:52;70029:114;;;;-1:-1:-1;;;70029:114:0;;16786:2:1;70029:114:0;;;16768:21:1;16825:2;16805:18;;;16798:30;16864:34;16844:18;;;16837:62;-1:-1:-1;;;16915:18:1;;;16908:47;16972:19;;70029:114:0;16584:413:1;70029:114:0;70182:5;-1:-1:-1;;;;;70162:25:0;:16;70170:7;70162;:16::i;:::-;-1:-1:-1;;;;;70162:25:0;;70154:87;;;;-1:-1:-1;;;70154:87:0;;17204:2:1;70154:87:0;;;17186:21:1;17243:2;17223:18;;;17216:30;17282:34;17262:18;;;17255:62;-1:-1:-1;;;17333:18:1;;;17326:47;17390:19;;70154:87:0;17002:413:1;70154:87:0;70252:14;70258:7;70252:5;:14::i;27280:639::-;27365:4;-1:-1:-1;;;;;;;;;27689:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;27766:25:0;;;27689:102;:179;;;-1:-1:-1;;;;;;;;27843:25:0;-1:-1:-1;;;27843:25:0;;27280:639::o;36044:282::-;36109:4;36199:13;;36189:7;:23;36146:153;;;;-1:-1:-1;;36250:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;36250:44:0;:49;;36044:282::o;34106:408::-;34195:13;34211:16;34219:7;34211;:16::i;:::-;34195:32;-1:-1:-1;3518:10:0;-1:-1:-1;;;;;34244:28:0;;;34240:175;;34292:44;34309:5;3518:10;35622:164;:::i;34292:44::-;34287:128;;34364:35;;-1:-1:-1;;;34364:35:0;;;;;;;;;;;34287:128;34427:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;34427:35:0;-1:-1:-1;;;;;34427:35:0;;;;;;;;;34478:28;;34427:24;;34478:28;;;;;;;34184:330;34106:408;;:::o;38312:2825::-;38454:27;38484;38503:7;38484:18;:27::i;:::-;38454:57;;38569:4;-1:-1:-1;;;;;38528:45:0;38544:19;-1:-1:-1;;;;;38528:45:0;;38524:86;;38582:28;;-1:-1:-1;;;38582:28:0;;;;;;;;;;;38524:86;38624:27;37420:24;;;:15;:24;;;;;37648:26;;38815:68;37648:26;38857:4;3518:10;38863:19;-1:-1:-1;;;;;36894:32:0;;;36738:28;;37023:20;;37045:30;;37020:56;;36435:659;38815:68;38810:180;;38903:43;38920:4;3518:10;35622:164;:::i;38903:43::-;38898:92;;38955:35;;-1:-1:-1;;;38955:35:0;;;;;;;;;;;38898:92;-1:-1:-1;;;;;39007:16:0;;39003:52;;39032:23;;-1:-1:-1;;;39032:23:0;;;;;;;;;;;39003:52;39204:15;39201:160;;;39344:1;39323:19;39316:30;39201:160;-1:-1:-1;;;;;39741:24:0;;;;;;;:18;:24;;;;;;39739:26;;-1:-1:-1;;39739:26:0;;;39810:22;;;;;;;;;39808:24;;-1:-1:-1;39808:24:0;;;32964:11;32939:23;32935:41;32922:63;-1:-1:-1;;;32922:63:0;40103:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;40398:47:0;;:52;;40394:627;;40503:1;40493:11;;40471:19;40626:30;;;:17;:30;;;;;;:35;;40622:384;;40764:13;;40749:11;:28;40745:242;;40911:30;;;;:17;:30;;;;;:52;;;40745:242;40452:569;40394:627;41068:7;41064:2;-1:-1:-1;;;;;41049:27:0;41058:4;-1:-1:-1;;;;;41049:27:0;-1:-1:-1;;;;;;;;;;;41049:27:0;;;;;;;;;41087:42;38443:2694;;;38312:2825;;;:::o;5052:132::-;4933:7;4960:6;-1:-1:-1;;;;;4960:6:0;3518:10;5116:23;5108:68;;;;-1:-1:-1;;;5108:68:0;;17622:2:1;5108:68:0;;;17604:21:1;;;17641:18;;;17634:30;17700:34;17680:18;;;17673:62;17752:18;;5108:68:0;17420:356:1;70583:199:0;70658:12;70676:8;-1:-1:-1;;;;;70676:13:0;70697:7;70676:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70657:52;;;70728:7;70720:54;;;;-1:-1:-1;;;70720:54:0;;18193:2:1;70720:54:0;;;18175:21:1;18232:2;18212:18;;;18205:30;18271:34;18251:18;;;18244:62;-1:-1:-1;;;18322:18:1;;;18315:32;18364:19;;70720:54:0;17991:398:1;41233:193:0;41379:39;41396:4;41402:2;41406:7;41379:39;;;;;;;;;;;;:16;:39::i;30730:1275::-;30797:7;30832;30934:13;;30927:4;:20;30923:1015;;;30972:14;30989:23;;;:17;:23;;;;;;;-1:-1:-1;;;31078:24:0;;:29;;31074:845;;31743:113;31750:6;31760:1;31750:11;31743:113;;-1:-1:-1;;;31821:6:0;31803:25;;;;:17;:25;;;;;;31743:113;;31074:845;30949:989;30923:1015;31966:31;;-1:-1:-1;;;31966:31:0;;;;;;;;;;;6154:191;6228:16;6247:6;;-1:-1:-1;;;;;6264:17:0;;;-1:-1:-1;;;;;;6264:17:0;;;;;;6297:40;;6247:6;;;;;;;6297:40;;6228:16;6297:40;6217:128;6154:191;:::o;69635:201::-;69731:31;69747:6;69755;69731:15;:31::i;:::-;-1:-1:-1;;;;;69773:18:0;;;;;;:10;:18;;;;;:28;;69795:6;;69773:18;:28;;69795:6;;69773:28;:::i;:::-;;;;;;;;69822:6;69812;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;69635:201:0:o;30178:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30306:24:0;;;;:17;:24;;;;;;30287:44;;:18;:44::i;35231:234::-;3518:10;35326:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;35326:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;35326:60:0;;;;;;;;;;35402:55;;540:41:1;;;35326:49:0;;3518:10;35402:55;;513:18:1;35402:55:0;;;;;;;35231:234;;:::o;42024:407::-;42199:31;42212:4;42218:2;42222:7;42199:12;:31::i;:::-;-1:-1:-1;;;;;42245:14:0;;;:19;42241:183;;42284:56;42315:4;42321:2;42325:7;42334:5;42284:30;:56::i;:::-;42279:145;;42368:40;;-1:-1:-1;;;42368:40:0;;;;;;;;;;;29916:166;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30027:47:0;30046:27;30065:7;30046:18;:27::i;:::-;30027:18;:47::i;68417:109::-;68477:13;68510:8;68503:15;;;;;:::i;58559:1745::-;58624:17;59058:4;59051;59045:11;59041:22;59150:1;59144:4;59137:15;59225:4;59222:1;59218:12;59211:19;;;59307:1;59302:3;59295:14;59411:3;59650:5;59632:428;59698:1;59693:3;59689:11;59682:18;;59869:2;59863:4;59859:13;59855:2;59851:22;59846:3;59838:36;59963:2;59953:13;;60020:25;59632:428;60020:25;-1:-1:-1;60090:13:0;;;-1:-1:-1;;60205:14:0;;;60267:19;;;60205:14;58559:1745;-1:-1:-1;58559:1745:0:o;52563:89::-;52623:21;52629:7;52638:5;52623;:21::i;52184:112::-;52261:27;52271:2;52275:8;52261:27;;;;;;;;;;;;:9;:27::i;32104:366::-;-1:-1:-1;;;;;;;;;;;;;32214:41:0;;;;19935:3;32300:33;;;32266:68;;-1:-1:-1;;;32266:68:0;-1:-1:-1;;;32364:24:0;;:29;;-1:-1:-1;;;32345:48:0;;;;20456:3;32433:28;;;;-1:-1:-1;;;32404:58:0;-1:-1:-1;32104:366:0:o;44515:716::-;44699:88;;-1:-1:-1;;;44699:88:0;;44678:4;;-1:-1:-1;;;;;44699:45:0;;;;;:88;;3518:10;;44766:4;;44772:7;;44781:5;;44699:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44699:88:0;;;;;;;;-1:-1:-1;;44699:88:0;;;;;;;;;;;;:::i;:::-;;;44695:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44982:6;:13;44999:1;44982:18;44978:235;;45028:40;;-1:-1:-1;;;45028:40:0;;;;;;;;;;;44978:235;45171:6;45165:13;45156:6;45152:2;45148:15;45141:38;44695:529;-1:-1:-1;;;;;;44858:64:0;-1:-1:-1;;;44858:64:0;;-1:-1:-1;44695:529:0;44515:716;;;;;;:::o;52881:3081::-;52961:27;52991;53010:7;52991:18;:27::i;:::-;52961:57;-1:-1:-1;52961:57:0;53031:12;;53153:35;53180:7;37309:27;37420:24;;;:15;:24;;;;;37648:26;;37420:24;;37207:485;53153:35;53096:92;;;;53205:13;53201:316;;;53326:68;53351:15;53368:4;3518:10;53374:19;3438:98;53326:68;53321:184;;53418:43;53435:4;3518:10;35622:164;:::i;53418:43::-;53413:92;;53470:35;;-1:-1:-1;;;53470:35:0;;;;;;;;;;;53413:92;53673:15;53670:160;;;53813:1;53792:19;53785:30;53670:160;-1:-1:-1;;;;;54432:24:0;;;;;;:18;:24;;;;;:60;;54460:32;54432:60;;;32964:11;32939:23;32935:41;32922:63;-1:-1:-1;;;32922:63:0;54730:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;55055:47:0;;:52;;55051:627;;55160:1;55150:11;;55128:19;55283:30;;;:17;:30;;;;;;:35;;55279:384;;55421:13;;55406:11;:28;55402:242;;55568:30;;;;:17;:30;;;;;:52;;;55402:242;55109:569;55051:627;55706:35;;55733:7;;55729:1;;-1:-1:-1;;;;;55706:35:0;;;-1:-1:-1;;;;;;;;;;;55706:35:0;55729:1;;55706:35;-1:-1:-1;;55929:12:0;:14;;;;;;-1:-1:-1;;;;52881:3081:0:o;51411:689::-;51542:19;51548:2;51552:8;51542:5;:19::i;:::-;-1:-1:-1;;;;;51603:14:0;;;:19;51599:483;;51657:13;;51705:14;;;51738:233;51769:62;51808:1;51812:2;51816:7;;;;;;51825:5;51769:30;:62::i;:::-;51764:167;;51867:40;;-1:-1:-1;;;51867:40:0;;;;;;;;;;;51764:167;51966:3;51958:5;:11;51738:233;;52053:3;52036:13;;:20;52032:34;;52058:8;;;52032:34;51624:458;;51411:689;;;:::o;45693:2966::-;45789:13;;45766:20;45817:13;;;45813:44;;45839:18;;-1:-1:-1;;;45839:18:0;;;;;;;;;;;45813:44;-1:-1:-1;;;;;46345:22:0;;;;;;:18;:22;;;;19414:2;46345:22;;;:71;;46383:32;46371:45;;46345:71;;;46659:31;;;:17;:31;;;;;-1:-1:-1;33395:15:0;;33369:24;33365:46;32964:11;32939:23;32935:41;32932:52;32922:63;;46659:173;;46894:23;;;;46659:31;;46345:22;;-1:-1:-1;;;;;;;;;;;46345:22:0;;47512:335;48173:1;48159:12;48155:20;48113:346;48214:3;48205:7;48202:16;48113:346;;48432:7;48422:8;48419:1;-1:-1:-1;;;;;;;;;;;48389:1:0;48386;48381:59;48267:1;48254:15;48113:346;;;48117:77;48492:8;48504:1;48492:13;48488:45;;48514:19;;-1:-1:-1;;;48514:19:0;;;;;;;;;;;48488:45;48550:13;:19;-1:-1:-1;71568:198:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:186::-;2419:6;2472:2;2460:9;2451:7;2447:23;2443:32;2440:52;;;2488:1;2485;2478:12;2440:52;2511:29;2530:9;2511:29;:::i;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;2884:615::-;2970:6;2978;3031:2;3019:9;3010:7;3006:23;3002:32;2999:52;;;3047:1;3044;3037:12;2999:52;3087:9;3074:23;3116:18;3157:2;3149:6;3146:14;3143:34;;;3173:1;3170;3163:12;3143:34;3211:6;3200:9;3196:22;3186:32;;3256:7;3249:4;3245:2;3241:13;3237:27;3227:55;;3278:1;3275;3268:12;3227:55;3318:2;3305:16;3344:2;3336:6;3333:14;3330:34;;;3360:1;3357;3350:12;3330:34;3413:7;3408:2;3398:6;3395:1;3391:14;3387:2;3383:23;3379:32;3376:45;3373:65;;;3434:1;3431;3424:12;3373:65;3465:2;3457:11;;;;;3487:6;;-1:-1:-1;2884:615:1;;-1:-1:-1;;;;2884:615:1:o;3504:349::-;3588:12;;-1:-1:-1;;;;;3584:38:1;3572:51;;3676:4;3665:16;;;3659:23;3684:18;3655:48;3639:14;;;3632:72;3767:4;3756:16;;;3750:23;3743:31;3736:39;3720:14;;;3713:63;3829:4;3818:16;;;3812:23;3837:8;3808:38;3792:14;;3785:62;3504:349::o;3858:722::-;4091:2;4143:21;;;4213:13;;4116:18;;;4235:22;;;4062:4;;4091:2;4314:15;;;;4288:2;4273:18;;;4062:4;4357:197;4371:6;4368:1;4365:13;4357:197;;;4420:52;4468:3;4459:6;4453:13;4420:52;:::i;:::-;4529:15;;;;4501:4;4492:14;;;;;4393:1;4386:9;4357:197;;5050:160;5115:20;;5171:13;;5164:21;5154:32;;5144:60;;5200:1;5197;5190:12;5215:254;5280:6;5288;5341:2;5329:9;5320:7;5316:23;5312:32;5309:52;;;5357:1;5354;5347:12;5309:52;5380:29;5399:9;5380:29;:::i;:::-;5370:39;;5428:35;5459:2;5448:9;5444:18;5428:35;:::i;:::-;5418:45;;5215:254;;;;;:::o;5474:632::-;5645:2;5697:21;;;5767:13;;5670:18;;;5789:22;;;5616:4;;5645:2;5868:15;;;;5842:2;5827:18;;;5616:4;5911:169;5925:6;5922:1;5919:13;5911:169;;;5986:13;;5974:26;;6055:15;;;;6020:12;;;;5947:1;5940:9;5911:169;;6111:322;6188:6;6196;6204;6257:2;6245:9;6236:7;6232:23;6228:32;6225:52;;;6273:1;6270;6263:12;6225:52;6296:29;6315:9;6296:29;:::i;:::-;6286:39;6372:2;6357:18;;6344:32;;-1:-1:-1;6423:2:1;6408:18;;;6395:32;;6111:322;-1:-1:-1;;;6111:322:1:o;6438:127::-;6499:10;6494:3;6490:20;6487:1;6480:31;6530:4;6527:1;6520:15;6554:4;6551:1;6544:15;6570:632;6635:5;6665:18;6706:2;6698:6;6695:14;6692:40;;;6712:18;;:::i;:::-;6787:2;6781:9;6755:2;6841:15;;-1:-1:-1;;6837:24:1;;;6863:2;6833:33;6829:42;6817:55;;;6887:18;;;6907:22;;;6884:46;6881:72;;;6933:18;;:::i;:::-;6973:10;6969:2;6962:22;7002:6;6993:15;;7032:6;7024;7017:22;7072:3;7063:6;7058:3;7054:16;7051:25;7048:45;;;7089:1;7086;7079:12;7048:45;7139:6;7134:3;7127:4;7119:6;7115:17;7102:44;7194:1;7187:4;7178:6;7170;7166:19;7162:30;7155:41;;;;6570:632;;;;;:::o;7207:451::-;7276:6;7329:2;7317:9;7308:7;7304:23;7300:32;7297:52;;;7345:1;7342;7335:12;7297:52;7385:9;7372:23;7418:18;7410:6;7407:30;7404:50;;;7450:1;7447;7440:12;7404:50;7473:22;;7526:4;7518:13;;7514:27;-1:-1:-1;7504:55:1;;7555:1;7552;7545:12;7504:55;7578:74;7644:7;7639:2;7626:16;7621:2;7617;7613:11;7578:74;:::i;7663:667::-;7758:6;7766;7774;7782;7835:3;7823:9;7814:7;7810:23;7806:33;7803:53;;;7852:1;7849;7842:12;7803:53;7875:29;7894:9;7875:29;:::i;:::-;7865:39;;7923:38;7957:2;7946:9;7942:18;7923:38;:::i;:::-;7913:48;;8008:2;7997:9;7993:18;7980:32;7970:42;;8063:2;8052:9;8048:18;8035:32;8090:18;8082:6;8079:30;8076:50;;;8122:1;8119;8112:12;8076:50;8145:22;;8198:4;8190:13;;8186:27;-1:-1:-1;8176:55:1;;8227:1;8224;8217:12;8176:55;8250:74;8316:7;8311:2;8298:16;8293:2;8289;8285:11;8250:74;:::i;:::-;8240:84;;;7663:667;;;;;;;:::o;8335:180::-;8391:6;8444:2;8432:9;8423:7;8419:23;8415:32;8412:52;;;8460:1;8457;8450:12;8412:52;8483:26;8499:9;8483:26;:::i;8520:266::-;8716:3;8701:19;;8729:51;8705:9;8762:6;8729:51;:::i;8791:260::-;8859:6;8867;8920:2;8908:9;8899:7;8895:23;8891:32;8888:52;;;8936:1;8933;8926:12;8888:52;8959:29;8978:9;8959:29;:::i;:::-;8949:39;;9007:38;9041:2;9030:9;9026:18;9007:38;:::i;9056:254::-;9124:6;9132;9185:2;9173:9;9164:7;9160:23;9156:32;9153:52;;;9201:1;9198;9191:12;9153:52;9237:9;9224:23;9214:33;;9266:38;9300:2;9289:9;9285:18;9266:38;:::i;9315:380::-;9394:1;9390:12;;;;9437;;;9458:61;;9512:4;9504:6;9500:17;9490:27;;9458:61;9565:2;9557:6;9554:14;9534:18;9531:38;9528:161;;9611:10;9606:3;9602:20;9599:1;9592:31;9646:4;9643:1;9636:15;9674:4;9671:1;9664:15;9528:161;;9315:380;;;:::o;9700:355::-;9902:2;9884:21;;;9941:2;9921:18;;;9914:30;9980:33;9975:2;9960:18;;9953:61;10046:2;10031:18;;9700:355::o;10468:127::-;10529:10;10524:3;10520:20;10517:1;10510:31;10560:4;10557:1;10550:15;10584:4;10581:1;10574:15;11316:127;11377:10;11372:3;11368:20;11365:1;11358:31;11408:4;11405:1;11398:15;11432:4;11429:1;11422:15;11448:168;11521:9;;;11552;;11569:15;;;11563:22;;11549:37;11539:71;;11590:18;;:::i;12456:125::-;12521:9;;;12542:10;;;12539:36;;;12555:18;;:::i;13598:545::-;13700:2;13695:3;13692:11;13689:448;;;13736:1;13761:5;13757:2;13750:17;13806:4;13802:2;13792:19;13876:2;13864:10;13860:19;13857:1;13853:27;13847:4;13843:38;13912:4;13900:10;13897:20;13894:47;;;-1:-1:-1;13935:4:1;13894:47;13990:2;13985:3;13981:12;13978:1;13974:20;13968:4;13964:31;13954:41;;14045:82;14063:2;14056:5;14053:13;14045:82;;;14108:17;;;14089:1;14078:13;14045:82;;14319:1352;14445:3;14439:10;14472:18;14464:6;14461:30;14458:56;;;14494:18;;:::i;:::-;14523:97;14613:6;14573:38;14605:4;14599:11;14573:38;:::i;:::-;14567:4;14523:97;:::i;:::-;14675:4;;14739:2;14728:14;;14756:1;14751:663;;;;15458:1;15475:6;15472:89;;;-1:-1:-1;15527:19:1;;;15521:26;15472:89;-1:-1:-1;;14276:1:1;14272:11;;;14268:24;14264:29;14254:40;14300:1;14296:11;;;14251:57;15574:81;;14721:944;;14751:663;13545:1;13538:14;;;13582:4;13569:18;;-1:-1:-1;;14787:20:1;;;14905:236;14919:7;14916:1;14913:14;14905:236;;;15008:19;;;15002:26;14987:42;;15100:27;;;;15068:1;15056:14;;;;14935:19;;14905:236;;;14909:3;15169:6;15160:7;15157:19;15154:201;;;15230:19;;;15224:26;-1:-1:-1;;15313:1:1;15309:14;;;15325:3;15305:24;15301:37;15297:42;15282:58;15267:74;;15154:201;-1:-1:-1;;;;;15401:1:1;15385:14;;;15381:22;15368:36;;-1:-1:-1;14319:1352:1:o;15676:496::-;15855:3;15893:6;15887:13;15909:66;15968:6;15963:3;15956:4;15948:6;15944:17;15909:66;:::i;:::-;16038:13;;15997:16;;;;16060:70;16038:13;15997:16;16107:4;16095:17;;16060:70;:::i;:::-;16146:20;;15676:496;-1:-1:-1;;;;15676:496:1:o;18394:489::-;-1:-1:-1;;;;;18663:15:1;;;18645:34;;18715:15;;18710:2;18695:18;;18688:43;18762:2;18747:18;;18740:34;;;18810:3;18805:2;18790:18;;18783:31;;;18588:4;;18831:46;;18857:19;;18849:6;18831:46;:::i;:::-;18823:54;18394:489;-1:-1:-1;;;;;;18394:489:1:o;18888:249::-;18957:6;19010:2;18998:9;18989:7;18985:23;18981:32;18978:52;;;19026:1;19023;19016:12;18978:52;19058:9;19052:16;19077:30;19101:5;19077:30;:::i

Swarm Source

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