ETH Price: $3,416.03 (-1.36%)
Gas: 5 Gwei

Token

oldmate (oldmate)
 

Overview

Max Total Supply

4,444 oldmate

Holders

957

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 oldmate
0x3382a156b02032395473442f357aecbba16c415c
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:
oldmate

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-04-17
*/

// SPDX-License-Identifier: MIT
// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3


pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;


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

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

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

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

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

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


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

pragma solidity ^0.8.4;



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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

// File: @openzeppelin/contracts/utils/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);
    }
}




pragma solidity ^0.8.4;






contract oldmate is ERC721AQueryable, Ownable {
  using Strings for uint256;
  uint256 public MAX_SUPPLY = 4444;
  uint256 public MAX_FREE = 4444;
  uint256 public maxFreeMintPerWallet = 1;
  uint256 public maxPublicMintPerWallet = 15;
  uint256 public publicTokenPrice = .003 ether;
  string _contractURI;

  bool public saleStarted = false;
  uint256 public freeMintCount;

  mapping(address => uint256) public freeMintClaimed;


  string private _baseTokenURI;

  constructor() ERC721A("oldmate", "oldmate") {
  _baseTokenURI = "ipfs://bafybeickwtuea6lzoibgix34lxyqdyff7kdoszp27tzjzqwxqmckysrmmq/";
  }

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

  modifier underMaxSupply(uint256 _quantity) {
    require(
      _totalMinted() + _quantity <= MAX_SUPPLY,
      "Old mate is trying to grab too many, haha."
    );
    _;
  }

  function setTotalMaxSupply(uint256 _newSupply) external onlyOwner {
      MAX_SUPPLY = _newSupply;
  }


  function setPublicTokenPrice(uint256 _newPrice) external onlyOwner {
      publicTokenPrice = _newPrice;
  }
  function mint(uint256 _quantity) external payable callerIsUser underMaxSupply(_quantity) {
    require(balanceOf(msg.sender) < maxPublicMintPerWallet, "Not enough.");
    require(saleStarted, "Sale has not started");
    if (_totalMinted() < (MAX_SUPPLY)) {
      if (freeMintCount >= MAX_FREE) {
        require(msg.value >= _quantity * publicTokenPrice, "Not enough Ethereum.");
        _mint(msg.sender, _quantity);
      } else if (freeMintClaimed[msg.sender] < maxFreeMintPerWallet) {
        uint256 _mintableFreeQuantity = maxFreeMintPerWallet - freeMintClaimed[msg.sender];
        if (_quantity <= _mintableFreeQuantity) {
          freeMintCount += _quantity;
          freeMintClaimed[msg.sender] += _quantity;
        } else {
          freeMintCount += _mintableFreeQuantity;
          freeMintClaimed[msg.sender] += _mintableFreeQuantity;
          require(
            msg.value >= (_quantity - _mintableFreeQuantity) * publicTokenPrice,
            "Not enough Ethereum."
          );
        }
        _mint(msg.sender, _quantity);
      } else {
        require(msg.value >= (_quantity * publicTokenPrice), "Not Enough Ethereum.");
        _mint(msg.sender, _quantity);
      }
    }
  }

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

  function tokenURI(uint256 tokenId) public view virtual override(ERC721A, IERC721A) returns (string memory) {
    if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

  function ownerMint(uint256 _numberToMint) external onlyOwner underMaxSupply(_numberToMint) {
    _mint(msg.sender, _numberToMint);
  }

  function ownerMintToAddress(address _recipient, uint256 _numberToMint)
    external
    onlyOwner
    underMaxSupply(_numberToMint)
  {
    _mint(_recipient, _numberToMint);
  }

  function setFreeMintCount(uint256 _count) external onlyOwner {
    MAX_FREE = _count;
  }

  function setMaxFreeMintPerWallet(uint256 _count) external onlyOwner {
    maxFreeMintPerWallet = _count;
  }

  function setMaxPublicMintPerWallet(uint256 _count) external onlyOwner {
    maxPublicMintPerWallet = _count;
  }

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

  // Storefront metadata
  // https://docs.opensea.io/docs/contract-level-metadata
  function contractURI() public view returns (string memory) {
    return _contractURI;
  }

  function setContractURI(string memory _URI) external onlyOwner {
    _contractURI = _URI;
  }

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

  function withdrawFundsToAddress(address _address, uint256 amount) external onlyOwner {
    (bool success, ) = _address.call{ value: amount }("");
    require(success, "Transfer failed");
  }

  function flipSaleStarted() external onlyOwner {
    saleStarted = !saleStarted;
  }
}

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":"MAX_FREE","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"flipSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberToMint","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_numberToMint","type":"uint256"}],"name":"ownerMintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setFreeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxPublicMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPublicTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setTotalMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFundsToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261115c6009819055600a556001600b55600f600c819055660aa87bee538000600d55805460ff191690553480156200003b57600080fd5b506040805180820182526007808252666f6c646d61746560c81b60208084018290528451808601909552918452908301529060026200007b8382620001c4565b5060036200008a8282620001c4565b50506001600055506200009d33620000cd565b6040518060800160405280604381526020016200273c60439139601290620000c69082620001c4565b5062000290565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014a57607f821691505b6020821081036200016b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001bf57600081815260208120601f850160051c810160208610156200019a5750805b601f850160051c820191505b81811015620001bb57828155600101620001a6565b5050505b505050565b81516001600160401b03811115620001e057620001e06200011f565b620001f881620001f1845462000135565b8462000171565b602080601f831160018114620002305760008415620002175750858301515b600019600386901b1c1916600185901b178555620001bb565b600085815260208120601f198616915b82811015620002615788860151825594840194600190910190840162000240565b5085821015620002805787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61249c80620002a06000396000f3fe6080604052600436106102675760003560e01c8063857c4b6211610144578063c23dc68f116100b6578063e8a3d4851161007a578063e8a3d485146106f1578063e985e9c514610706578063ed6661c21461074f578063f19e75d414610765578063f2fde38b14610785578063f77b1edd146107a557600080fd5b8063c23dc68f14610641578063c87b56dd1461066e578063dc33e6811461068e578063e0ec7c36146106ae578063e55f58bb146106db57600080fd5b806399a2557a1161010857806399a2557a1461059b5780639aaf21f4146105bb5780639d9e3c47146105db578063a0712d68146105fb578063a22cb4651461060e578063b88d4fde1461062e57600080fd5b8063857c4b621461051d578063899d7b38146105335780638da5cb5b14610548578063938e3d7b1461056657806395d89b411461058657600080fd5b806342842e0e116101dd5780635c474f9e116101a15780635c474f9e1461046b5780636352211e1461048557806370a08231146104a5578063715018a6146104c5578063845bb3bb146104da5780638462151c146104f057600080fd5b806342842e0e146103d55780634c10337c146103e85780634f7f8976146103fe57806355f804b31461041e5780635bbb21771461043e57600080fd5b806323b872dd1161022f57806323b872dd1461033757806324600fc31461034a578063253ca9341461035f5780632b1065931461037f5780633267838f1461039f57806332cb6b0c146103bf57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd14610310575b600080fd5b34801561027857600080fd5b5061028c610287366004611c6e565b6107c5565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610817565b6040516102989190611cdb565b3480156102cf57600080fd5b506102e36102de366004611cee565b6108a9565b6040516001600160a01b039091168152602001610298565b61030e610309366004611d23565b6108ed565b005b34801561031c57600080fd5b5060015460005403600019015b604051908152602001610298565b61030e610345366004611d4d565b61098d565b34801561035657600080fd5b5061030e610b26565b34801561036b57600080fd5b5061030e61037a366004611cee565b610bc0565b34801561038b57600080fd5b5061030e61039a366004611cee565b610bcd565b3480156103ab57600080fd5b5061030e6103ba366004611cee565b610bda565b3480156103cb57600080fd5b5061032960095481565b61030e6103e3366004611d4d565b610be7565b3480156103f457600080fd5b50610329600d5481565b34801561040a57600080fd5b5061030e610419366004611d23565b610c07565b34801561042a57600080fd5b5061030e610439366004611d89565b610ca4565b34801561044a57600080fd5b5061045e610459366004611dfa565b610cb9565b6040516102989190611e98565b34801561047757600080fd5b50600f5461028c9060ff1681565b34801561049157600080fd5b506102e36104a0366004611cee565b610d84565b3480156104b157600080fd5b506103296104c0366004611eda565b610d8f565b3480156104d157600080fd5b5061030e610ddd565b3480156104e657600080fd5b50610329600b5481565b3480156104fc57600080fd5b5061051061050b366004611eda565b610df1565b6040516102989190611ef5565b34801561052957600080fd5b50610329600c5481565b34801561053f57600080fd5b5061030e610ef9565b34801561055457600080fd5b506008546001600160a01b03166102e3565b34801561057257600080fd5b5061030e610581366004611fb8565b610f15565b34801561059257600080fd5b506102b6610f2d565b3480156105a757600080fd5b506105106105b6366004612000565b610f3c565b3480156105c757600080fd5b5061030e6105d6366004611d23565b6110c3565b3480156105e757600080fd5b5061030e6105f6366004611cee565b61110f565b61030e610609366004611cee565b61111c565b34801561061a57600080fd5b5061030e610629366004612033565b61142e565b61030e61063c36600461206f565b61149a565b34801561064d57600080fd5b5061066161065c366004611cee565b6114e4565b60405161029891906120ea565b34801561067a57600080fd5b506102b6610689366004611cee565b61156c565b34801561069a57600080fd5b506103296106a9366004611eda565b6115ef565b3480156106ba57600080fd5b506103296106c9366004611eda565b60116020526000908152604090205481565b3480156106e757600080fd5b5061032960105481565b3480156106fd57600080fd5b506102b6611619565b34801561071257600080fd5b5061028c6107213660046120f8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075b57600080fd5b50610329600a5481565b34801561077157600080fd5b5061030e610780366004611cee565b611628565b34801561079157600080fd5b5061030e6107a0366004611eda565b61166a565b3480156107b157600080fd5b5061030e6107c0366004611cee565b6116e0565b60006301ffc9a760e01b6001600160e01b0319831614806107f657506380ac58cd60e01b6001600160e01b03198316145b806108115750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546108269061212b565b80601f01602080910402602001604051908101604052809291908181526020018280546108529061212b565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b4826116ed565b6108d1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108f882610d84565b9050336001600160a01b03821614610931576109148133610721565b610931576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061099882611722565b9050836001600160a01b0316816001600160a01b0316146109cb5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a18576109fb8633610721565b610a1857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a3f57604051633a954ecd60e21b815260040160405180910390fd5b8015610a4a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610adc57600184016000818152600460205260408120549003610ada576000548114610ada5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610b2e611791565b604051600090339047908381818185875af1925050503d8060008114610b70576040519150601f19603f3d011682016040523d82523d6000602084013e610b75565b606091505b5050905080610bbd5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064015b60405180910390fd5b50565b610bc8611791565b600a55565b610bd5611791565b600d55565b610be2611791565b600c55565b610c028383836040518060200160405280600081525061149a565b505050565b610c0f611791565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610c5c576040519150601f19603f3d011682016040523d82523d6000602084013e610c61565b606091505b5050905080610c025760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610bb4565b610cac611791565b6012610c028284836121ab565b6060816000816001600160401b03811115610cd657610cd6611f2d565b604051908082528060200260200182016040528015610d2857816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610cf45790505b50905060005b828114610d7b57610d56868683818110610d4a57610d4a61226b565b905060200201356114e4565b828281518110610d6857610d6861226b565b6020908102919091010152600101610d2e565b50949350505050565b600061081182611722565b60006001600160a01b038216610db8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610de5611791565b610def60006117eb565b565b60606000806000610e0185610d8f565b90506000816001600160401b03811115610e1d57610e1d611f2d565b604051908082528060200260200182016040528015610e46578160200160208202803683370190505b509050610e7360408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610eed57610e868161183d565b91508160400151610ee55781516001600160a01b031615610ea657815194505b876001600160a01b0316856001600160a01b031603610ee55780838780600101985081518110610ed857610ed861226b565b6020026020010181815250505b600101610e76565b50909695505050505050565b610f01611791565b600f805460ff19811660ff90911615179055565b610f1d611791565b600e610f298282612281565b5050565b6060600380546108269061212b565b6060818310610f5e57604051631960ccad60e11b815260040160405180910390fd5b600080610f6a60005490565b90506001851015610f7a57600194505b80841115610f86578093505b6000610f9187610d8f565b905084861015610fb05785850381811015610faa578091505b50610fb4565b5060005b6000816001600160401b03811115610fce57610fce611f2d565b604051908082528060200260200182016040528015610ff7578160200160208202803683370190505b5090508160000361100d5793506110bc92505050565b6000611018886114e4565b905060008160400151611029575080515b885b88811415801561103b5750848714155b156110b0576110498161183d565b925082604001516110a85782516001600160a01b03161561106957825191505b8a6001600160a01b0316826001600160a01b0316036110a8578084888060010199508151811061109b5761109b61226b565b6020026020010181815250505b60010161102b565b50505092835250909150505b9392505050565b6110cb611791565b80600954816110dd6000546000190190565b6110e79190612356565b11156111055760405162461bcd60e51b8152600401610bb490612369565b610c028383611879565b611117611791565b600955565b3233146111775760405162461bcd60e51b8152602060048201526024808201527f4a696d7a3a205468652063616c6c657220697320616e6f7468657220636f6e746044820152631c9858dd60e21b6064820152608401610bb4565b80600954816111896000546000190190565b6111939190612356565b11156111b15760405162461bcd60e51b8152600401610bb490612369565b600c546111bd33610d8f565b106111f85760405162461bcd60e51b815260206004820152600b60248201526a2737ba1032b737bab3b41760a91b6044820152606401610bb4565b600f5460ff166112415760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b6044820152606401610bb4565b600954600054600019011015610f2957600a54601054106112b957600d5461126990836123b3565b3410156112af5760405162461bcd60e51b81526020600482015260146024820152732737ba1032b737bab3b41022ba3432b932bab69760611b6044820152606401610bb4565b610f293383611879565b600b543360009081526011602052604090205410156113db5733600090815260116020526040812054600b546112ef91906123ca565b905080831161133957826010600082825461130a9190612356565b9091555050336000908152601160205260408120805485929061132e908490612356565b909155506113d19050565b806010600082825461134b9190612356565b9091555050336000908152601160205260408120805483929061136f908490612356565b9091555050600d5461138182856123ca565b61138b91906123b3565b3410156113d15760405162461bcd60e51b81526020600482015260146024820152732737ba1032b737bab3b41022ba3432b932bab69760611b6044820152606401610bb4565b610c023384611879565b600d546113e890836123b3565b3410156112af5760405162461bcd60e51b81526020600482015260146024820152732737ba1022b737bab3b41022ba3432b932bab69760611b6044820152606401610bb4565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114a584848461098d565b6001600160a01b0383163b156114de576114c184848484611977565b6114de576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061153d57506000548310155b156115485792915050565b6115518361183d565b90508060400151156115635792915050565b6110bc83611a63565b6060611577826116ed565b61159457604051630a14c4b560e41b815260040160405180910390fd5b600061159e611a98565b905080516000036115be57604051806020016040528060008152506110bc565b806115c884611aa7565b6040516020016115d99291906123dd565b6040516020818303038152906040529392505050565b6001600160a01b038116600090815260056020526040808220546001600160401b03911c16610811565b6060600e80546108269061212b565b611630611791565b80600954816116426000546000190190565b61164c9190612356565b11156112af5760405162461bcd60e51b8152600401610bb490612369565b611672611791565b6001600160a01b0381166116d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb4565b610bbd816117eb565b6116e8611791565b600b55565b600081600111158015611701575060005482105b8015610811575050600090815260046020526040902054600160e01b161590565b60008180600111611778576000548110156117785760008181526004602052604081205490600160e01b82169003611776575b806000036110bc575060001901600081815260046020526040902054611755565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610def5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461081190611b39565b600080549082900361189e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461194d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611915565b508160000361196e57604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119ac90339089908890889060040161240c565b6020604051808303816000875af19250505080156119e7575060408051601f3d908101601f191682019092526119e491810190612449565b60015b611a45573d808015611a15576040519150601f19603f3d011682016040523d82523d6000602084013e611a1a565b606091505b508051600003611a3d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610811611a9383611722565b611b39565b6060601280546108269061212b565b60606000611ab483611b80565b60010190506000816001600160401b03811115611ad357611ad3611f2d565b6040519080825280601f01601f191660200182016040528015611afd576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b0757509392505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611bbf5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611beb576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611c0957662386f26fc10000830492506010015b6305f5e1008310611c21576305f5e100830492506008015b6127108310611c3557612710830492506004015b60648310611c47576064830492506002015b600a83106108115760010192915050565b6001600160e01b031981168114610bbd57600080fd5b600060208284031215611c8057600080fd5b81356110bc81611c58565b60005b83811015611ca6578181015183820152602001611c8e565b50506000910152565b60008151808452611cc7816020860160208601611c8b565b601f01601f19169290920160200192915050565b6020815260006110bc6020830184611caf565b600060208284031215611d0057600080fd5b5035919050565b80356001600160a01b0381168114611d1e57600080fd5b919050565b60008060408385031215611d3657600080fd5b611d3f83611d07565b946020939093013593505050565b600080600060608486031215611d6257600080fd5b611d6b84611d07565b9250611d7960208501611d07565b9150604084013590509250925092565b60008060208385031215611d9c57600080fd5b82356001600160401b0380821115611db357600080fd5b818501915085601f830112611dc757600080fd5b813581811115611dd657600080fd5b866020828501011115611de857600080fd5b60209290920196919550909350505050565b60008060208385031215611e0d57600080fd5b82356001600160401b0380821115611e2457600080fd5b818501915085601f830112611e3857600080fd5b813581811115611e4757600080fd5b8660208260051b8501011115611de857600080fd5b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610eed57611ec7838551611e5c565b9284019260809290920191600101611eb4565b600060208284031215611eec57600080fd5b6110bc82611d07565b6020808252825182820181905260009190848201906040850190845b81811015610eed57835183529284019291840191600101611f11565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f5d57611f5d611f2d565b604051601f8501601f19908116603f01168101908282118183101715611f8557611f85611f2d565b81604052809350858152868686011115611f9e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fca57600080fd5b81356001600160401b03811115611fe057600080fd5b8201601f81018413611ff157600080fd5b611a5b84823560208401611f43565b60008060006060848603121561201557600080fd5b61201e84611d07565b95602085013595506040909401359392505050565b6000806040838503121561204657600080fd5b61204f83611d07565b91506020830135801515811461206457600080fd5b809150509250929050565b6000806000806080858703121561208557600080fd5b61208e85611d07565b935061209c60208601611d07565b92506040850135915060608501356001600160401b038111156120be57600080fd5b8501601f810187136120cf57600080fd5b6120de87823560208401611f43565b91505092959194509250565b608081016108118284611e5c565b6000806040838503121561210b57600080fd5b61211483611d07565b915061212260208401611d07565b90509250929050565b600181811c9082168061213f57607f821691505b60208210810361215f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610c0257600081815260208120601f850160051c8101602086101561218c5750805b601f850160051c820191505b81811015610b1e57828155600101612198565b6001600160401b038311156121c2576121c2611f2d565b6121d6836121d0835461212b565b83612165565b6000601f84116001811461220a57600085156121f25750838201355b600019600387901b1c1916600186901b178355612264565b600083815260209020601f19861690835b8281101561223b578685013582556020948501946001909201910161221b565b50868210156122585760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052603260045260246000fd5b81516001600160401b0381111561229a5761229a611f2d565b6122ae816122a8845461212b565b84612165565b602080601f8311600181146122e357600084156122cb5750858301515b600019600386901b1c1916600185901b178555610b1e565b600085815260208120601f198616915b82811015612312578886015182559484019460019091019084016122f3565b50858210156123305787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561081157610811612340565b6020808252602a908201527f4f6c64206d61746520697320747279696e6720746f206772616220746f6f206d60408201526930b73c96103430b4309760b11b606082015260800190565b808202811582820484141761081157610811612340565b8181038181111561081157610811612340565b600083516123ef818460208801611c8b565b835190830190612403818360208801611c8b565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061243f90830184611caf565b9695505050505050565b60006020828403121561245b57600080fd5b81516110bc81611c5856fea26469706673582212208300826fa4253b4d76bd8a0f62935ea1e2cecdaee30bc1686226c05960f1b05b64736f6c63430008120033697066733a2f2f62616679626569636b7774756561366c7a6f696267697833346c78797164796666376b646f737a703237747a6a7a717778716d636b7973726d6d712f

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063857c4b6211610144578063c23dc68f116100b6578063e8a3d4851161007a578063e8a3d485146106f1578063e985e9c514610706578063ed6661c21461074f578063f19e75d414610765578063f2fde38b14610785578063f77b1edd146107a557600080fd5b8063c23dc68f14610641578063c87b56dd1461066e578063dc33e6811461068e578063e0ec7c36146106ae578063e55f58bb146106db57600080fd5b806399a2557a1161010857806399a2557a1461059b5780639aaf21f4146105bb5780639d9e3c47146105db578063a0712d68146105fb578063a22cb4651461060e578063b88d4fde1461062e57600080fd5b8063857c4b621461051d578063899d7b38146105335780638da5cb5b14610548578063938e3d7b1461056657806395d89b411461058657600080fd5b806342842e0e116101dd5780635c474f9e116101a15780635c474f9e1461046b5780636352211e1461048557806370a08231146104a5578063715018a6146104c5578063845bb3bb146104da5780638462151c146104f057600080fd5b806342842e0e146103d55780634c10337c146103e85780634f7f8976146103fe57806355f804b31461041e5780635bbb21771461043e57600080fd5b806323b872dd1161022f57806323b872dd1461033757806324600fc31461034a578063253ca9341461035f5780632b1065931461037f5780633267838f1461039f57806332cb6b0c146103bf57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd14610310575b600080fd5b34801561027857600080fd5b5061028c610287366004611c6e565b6107c5565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610817565b6040516102989190611cdb565b3480156102cf57600080fd5b506102e36102de366004611cee565b6108a9565b6040516001600160a01b039091168152602001610298565b61030e610309366004611d23565b6108ed565b005b34801561031c57600080fd5b5060015460005403600019015b604051908152602001610298565b61030e610345366004611d4d565b61098d565b34801561035657600080fd5b5061030e610b26565b34801561036b57600080fd5b5061030e61037a366004611cee565b610bc0565b34801561038b57600080fd5b5061030e61039a366004611cee565b610bcd565b3480156103ab57600080fd5b5061030e6103ba366004611cee565b610bda565b3480156103cb57600080fd5b5061032960095481565b61030e6103e3366004611d4d565b610be7565b3480156103f457600080fd5b50610329600d5481565b34801561040a57600080fd5b5061030e610419366004611d23565b610c07565b34801561042a57600080fd5b5061030e610439366004611d89565b610ca4565b34801561044a57600080fd5b5061045e610459366004611dfa565b610cb9565b6040516102989190611e98565b34801561047757600080fd5b50600f5461028c9060ff1681565b34801561049157600080fd5b506102e36104a0366004611cee565b610d84565b3480156104b157600080fd5b506103296104c0366004611eda565b610d8f565b3480156104d157600080fd5b5061030e610ddd565b3480156104e657600080fd5b50610329600b5481565b3480156104fc57600080fd5b5061051061050b366004611eda565b610df1565b6040516102989190611ef5565b34801561052957600080fd5b50610329600c5481565b34801561053f57600080fd5b5061030e610ef9565b34801561055457600080fd5b506008546001600160a01b03166102e3565b34801561057257600080fd5b5061030e610581366004611fb8565b610f15565b34801561059257600080fd5b506102b6610f2d565b3480156105a757600080fd5b506105106105b6366004612000565b610f3c565b3480156105c757600080fd5b5061030e6105d6366004611d23565b6110c3565b3480156105e757600080fd5b5061030e6105f6366004611cee565b61110f565b61030e610609366004611cee565b61111c565b34801561061a57600080fd5b5061030e610629366004612033565b61142e565b61030e61063c36600461206f565b61149a565b34801561064d57600080fd5b5061066161065c366004611cee565b6114e4565b60405161029891906120ea565b34801561067a57600080fd5b506102b6610689366004611cee565b61156c565b34801561069a57600080fd5b506103296106a9366004611eda565b6115ef565b3480156106ba57600080fd5b506103296106c9366004611eda565b60116020526000908152604090205481565b3480156106e757600080fd5b5061032960105481565b3480156106fd57600080fd5b506102b6611619565b34801561071257600080fd5b5061028c6107213660046120f8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075b57600080fd5b50610329600a5481565b34801561077157600080fd5b5061030e610780366004611cee565b611628565b34801561079157600080fd5b5061030e6107a0366004611eda565b61166a565b3480156107b157600080fd5b5061030e6107c0366004611cee565b6116e0565b60006301ffc9a760e01b6001600160e01b0319831614806107f657506380ac58cd60e01b6001600160e01b03198316145b806108115750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546108269061212b565b80601f01602080910402602001604051908101604052809291908181526020018280546108529061212b565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b4826116ed565b6108d1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108f882610d84565b9050336001600160a01b03821614610931576109148133610721565b610931576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061099882611722565b9050836001600160a01b0316816001600160a01b0316146109cb5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a18576109fb8633610721565b610a1857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a3f57604051633a954ecd60e21b815260040160405180910390fd5b8015610a4a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610adc57600184016000818152600460205260408120549003610ada576000548114610ada5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610b2e611791565b604051600090339047908381818185875af1925050503d8060008114610b70576040519150601f19603f3d011682016040523d82523d6000602084013e610b75565b606091505b5050905080610bbd5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064015b60405180910390fd5b50565b610bc8611791565b600a55565b610bd5611791565b600d55565b610be2611791565b600c55565b610c028383836040518060200160405280600081525061149a565b505050565b610c0f611791565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610c5c576040519150601f19603f3d011682016040523d82523d6000602084013e610c61565b606091505b5050905080610c025760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610bb4565b610cac611791565b6012610c028284836121ab565b6060816000816001600160401b03811115610cd657610cd6611f2d565b604051908082528060200260200182016040528015610d2857816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610cf45790505b50905060005b828114610d7b57610d56868683818110610d4a57610d4a61226b565b905060200201356114e4565b828281518110610d6857610d6861226b565b6020908102919091010152600101610d2e565b50949350505050565b600061081182611722565b60006001600160a01b038216610db8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610de5611791565b610def60006117eb565b565b60606000806000610e0185610d8f565b90506000816001600160401b03811115610e1d57610e1d611f2d565b604051908082528060200260200182016040528015610e46578160200160208202803683370190505b509050610e7360408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610eed57610e868161183d565b91508160400151610ee55781516001600160a01b031615610ea657815194505b876001600160a01b0316856001600160a01b031603610ee55780838780600101985081518110610ed857610ed861226b565b6020026020010181815250505b600101610e76565b50909695505050505050565b610f01611791565b600f805460ff19811660ff90911615179055565b610f1d611791565b600e610f298282612281565b5050565b6060600380546108269061212b565b6060818310610f5e57604051631960ccad60e11b815260040160405180910390fd5b600080610f6a60005490565b90506001851015610f7a57600194505b80841115610f86578093505b6000610f9187610d8f565b905084861015610fb05785850381811015610faa578091505b50610fb4565b5060005b6000816001600160401b03811115610fce57610fce611f2d565b604051908082528060200260200182016040528015610ff7578160200160208202803683370190505b5090508160000361100d5793506110bc92505050565b6000611018886114e4565b905060008160400151611029575080515b885b88811415801561103b5750848714155b156110b0576110498161183d565b925082604001516110a85782516001600160a01b03161561106957825191505b8a6001600160a01b0316826001600160a01b0316036110a8578084888060010199508151811061109b5761109b61226b565b6020026020010181815250505b60010161102b565b50505092835250909150505b9392505050565b6110cb611791565b80600954816110dd6000546000190190565b6110e79190612356565b11156111055760405162461bcd60e51b8152600401610bb490612369565b610c028383611879565b611117611791565b600955565b3233146111775760405162461bcd60e51b8152602060048201526024808201527f4a696d7a3a205468652063616c6c657220697320616e6f7468657220636f6e746044820152631c9858dd60e21b6064820152608401610bb4565b80600954816111896000546000190190565b6111939190612356565b11156111b15760405162461bcd60e51b8152600401610bb490612369565b600c546111bd33610d8f565b106111f85760405162461bcd60e51b815260206004820152600b60248201526a2737ba1032b737bab3b41760a91b6044820152606401610bb4565b600f5460ff166112415760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b6044820152606401610bb4565b600954600054600019011015610f2957600a54601054106112b957600d5461126990836123b3565b3410156112af5760405162461bcd60e51b81526020600482015260146024820152732737ba1032b737bab3b41022ba3432b932bab69760611b6044820152606401610bb4565b610f293383611879565b600b543360009081526011602052604090205410156113db5733600090815260116020526040812054600b546112ef91906123ca565b905080831161133957826010600082825461130a9190612356565b9091555050336000908152601160205260408120805485929061132e908490612356565b909155506113d19050565b806010600082825461134b9190612356565b9091555050336000908152601160205260408120805483929061136f908490612356565b9091555050600d5461138182856123ca565b61138b91906123b3565b3410156113d15760405162461bcd60e51b81526020600482015260146024820152732737ba1032b737bab3b41022ba3432b932bab69760611b6044820152606401610bb4565b610c023384611879565b600d546113e890836123b3565b3410156112af5760405162461bcd60e51b81526020600482015260146024820152732737ba1022b737bab3b41022ba3432b932bab69760611b6044820152606401610bb4565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114a584848461098d565b6001600160a01b0383163b156114de576114c184848484611977565b6114de576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061153d57506000548310155b156115485792915050565b6115518361183d565b90508060400151156115635792915050565b6110bc83611a63565b6060611577826116ed565b61159457604051630a14c4b560e41b815260040160405180910390fd5b600061159e611a98565b905080516000036115be57604051806020016040528060008152506110bc565b806115c884611aa7565b6040516020016115d99291906123dd565b6040516020818303038152906040529392505050565b6001600160a01b038116600090815260056020526040808220546001600160401b03911c16610811565b6060600e80546108269061212b565b611630611791565b80600954816116426000546000190190565b61164c9190612356565b11156112af5760405162461bcd60e51b8152600401610bb490612369565b611672611791565b6001600160a01b0381166116d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb4565b610bbd816117eb565b6116e8611791565b600b55565b600081600111158015611701575060005482105b8015610811575050600090815260046020526040902054600160e01b161590565b60008180600111611778576000548110156117785760008181526004602052604081205490600160e01b82169003611776575b806000036110bc575060001901600081815260046020526040902054611755565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610def5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461081190611b39565b600080549082900361189e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461194d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611915565b508160000361196e57604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119ac90339089908890889060040161240c565b6020604051808303816000875af19250505080156119e7575060408051601f3d908101601f191682019092526119e491810190612449565b60015b611a45573d808015611a15576040519150601f19603f3d011682016040523d82523d6000602084013e611a1a565b606091505b508051600003611a3d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610811611a9383611722565b611b39565b6060601280546108269061212b565b60606000611ab483611b80565b60010190506000816001600160401b03811115611ad357611ad3611f2d565b6040519080825280601f01601f191660200182016040528015611afd576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b0757509392505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611bbf5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611beb576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611c0957662386f26fc10000830492506010015b6305f5e1008310611c21576305f5e100830492506008015b6127108310611c3557612710830492506004015b60648310611c47576064830492506002015b600a83106108115760010192915050565b6001600160e01b031981168114610bbd57600080fd5b600060208284031215611c8057600080fd5b81356110bc81611c58565b60005b83811015611ca6578181015183820152602001611c8e565b50506000910152565b60008151808452611cc7816020860160208601611c8b565b601f01601f19169290920160200192915050565b6020815260006110bc6020830184611caf565b600060208284031215611d0057600080fd5b5035919050565b80356001600160a01b0381168114611d1e57600080fd5b919050565b60008060408385031215611d3657600080fd5b611d3f83611d07565b946020939093013593505050565b600080600060608486031215611d6257600080fd5b611d6b84611d07565b9250611d7960208501611d07565b9150604084013590509250925092565b60008060208385031215611d9c57600080fd5b82356001600160401b0380821115611db357600080fd5b818501915085601f830112611dc757600080fd5b813581811115611dd657600080fd5b866020828501011115611de857600080fd5b60209290920196919550909350505050565b60008060208385031215611e0d57600080fd5b82356001600160401b0380821115611e2457600080fd5b818501915085601f830112611e3857600080fd5b813581811115611e4757600080fd5b8660208260051b8501011115611de857600080fd5b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610eed57611ec7838551611e5c565b9284019260809290920191600101611eb4565b600060208284031215611eec57600080fd5b6110bc82611d07565b6020808252825182820181905260009190848201906040850190845b81811015610eed57835183529284019291840191600101611f11565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f5d57611f5d611f2d565b604051601f8501601f19908116603f01168101908282118183101715611f8557611f85611f2d565b81604052809350858152868686011115611f9e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fca57600080fd5b81356001600160401b03811115611fe057600080fd5b8201601f81018413611ff157600080fd5b611a5b84823560208401611f43565b60008060006060848603121561201557600080fd5b61201e84611d07565b95602085013595506040909401359392505050565b6000806040838503121561204657600080fd5b61204f83611d07565b91506020830135801515811461206457600080fd5b809150509250929050565b6000806000806080858703121561208557600080fd5b61208e85611d07565b935061209c60208601611d07565b92506040850135915060608501356001600160401b038111156120be57600080fd5b8501601f810187136120cf57600080fd5b6120de87823560208401611f43565b91505092959194509250565b608081016108118284611e5c565b6000806040838503121561210b57600080fd5b61211483611d07565b915061212260208401611d07565b90509250929050565b600181811c9082168061213f57607f821691505b60208210810361215f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610c0257600081815260208120601f850160051c8101602086101561218c5750805b601f850160051c820191505b81811015610b1e57828155600101612198565b6001600160401b038311156121c2576121c2611f2d565b6121d6836121d0835461212b565b83612165565b6000601f84116001811461220a57600085156121f25750838201355b600019600387901b1c1916600186901b178355612264565b600083815260209020601f19861690835b8281101561223b578685013582556020948501946001909201910161221b565b50868210156122585760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052603260045260246000fd5b81516001600160401b0381111561229a5761229a611f2d565b6122ae816122a8845461212b565b84612165565b602080601f8311600181146122e357600084156122cb5750858301515b600019600386901b1c1916600185901b178555610b1e565b600085815260208120601f198616915b82811015612312578886015182559484019460019091019084016122f3565b50858210156123305787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561081157610811612340565b6020808252602a908201527f4f6c64206d61746520697320747279696e6720746f206772616220746f6f206d60408201526930b73c96103430b4309760b11b606082015260800190565b808202811582820484141761081157610811612340565b8181038181111561081157610811612340565b600083516123ef818460208801611c8b565b835190830190612403818360208801611c8b565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061243f90830184611caf565b9695505050505050565b60006020828403121561245b57600080fd5b81516110bc81611c5856fea26469706673582212208300826fa4253b4d76bd8a0f62935ea1e2cecdaee30bc1686226c05960f1b05b64736f6c63430008120033

Deployed Bytecode Sourcemap

79256:4574:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18415:639;;;;;;;;;;-1:-1:-1;18415:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18415:639:0;;;;;;;;19317:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25808:218::-;;;;;;;;;;-1:-1:-1;25808:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;25808:218:0;1533:203:1;25241:408:0;;;;;;:::i;:::-;;:::i;:::-;;15068:323;;;;;;;;;;-1:-1:-1;82302:1:0;15342:12;15129:7;15326:13;:28;-1:-1:-1;;15326:46:0;15068:323;;;2324:25:1;;;2312:2;2297:18;15068:323:0;2178:177:1;29447:2825:0;;;;;;:::i;:::-;;:::i;83368:169::-;;;;;;;;;;;;;:::i;82646:91::-;;;;;;;;;;-1:-1:-1;82646:91:0;;;;;:::i;:::-;;:::i;80307:110::-;;;;;;;;;;-1:-1:-1;80307:110:0;;;;;:::i;:::-;;:::i;82859:114::-;;;;;;;;;;-1:-1:-1;82859:114:0;;;;;:::i;:::-;;:::i;79337:32::-;;;;;;;;;;;;;;;;32368:193;;;;;;:::i;:::-;;:::i;79500:44::-;;;;;;;;;;;;;;;;83543:193;;;;;;;;;;-1:-1:-1;83543:193:0;;;;;:::i;:::-;;:::i;82979:100::-;;;;;;;;;;-1:-1:-1;82979:100:0;;;;;:::i;:::-;;:::i;55638:528::-;;;;;;;;;;-1:-1:-1;55638:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;79575:31::-;;;;;;;;;;-1:-1:-1;79575:31:0;;;;;;;;20710:152;;;;;;;;;;-1:-1:-1;20710:152:0;;;;;:::i;:::-;;:::i;16252:233::-;;;;;;;;;;-1:-1:-1;16252:233:0;;;;;:::i;:::-;;:::i;78396:103::-;;;;;;;;;;;;;:::i;79409:39::-;;;;;;;;;;;;;;;;59514:900;;;;;;;;;;-1:-1:-1;59514:900:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;79453:42::-;;;;;;;;;;;;;;;;83742:85;;;;;;;;;;;;;:::i;77748:87::-;;;;;;;;;;-1:-1:-1;77821:6:0;;-1:-1:-1;;;;;77821:6:0;77748:87;;83267:95;;;;;;;;;;-1:-1:-1;83267:95:0;;;;;:::i;:::-;;:::i;19493:104::-;;;;;;;;;;;;;:::i;56554:2513::-;;;;;;;;;;-1:-1:-1;56554:2513:0;;;;;:::i;:::-;;:::i;82457:183::-;;;;;;;;;;-1:-1:-1;82457:183:0;;;;;:::i;:::-;;:::i;80195:104::-;;;;;;;;;;-1:-1:-1;80195:104:0;;;;;:::i;:::-;;:::i;80421:1231::-;;;;;;:::i;:::-;;:::i;26366:234::-;;;;;;;;;;-1:-1:-1;26366:234:0;;;;;:::i;:::-;;:::i;33159:407::-;;;;;;:::i;:::-;;:::i;55051:428::-;;;;;;;;;;-1:-1:-1;55051:428:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;81772:323::-;;;;;;;;;;-1:-1:-1;81772:323:0;;;;;:::i;:::-;;:::i;82101:107::-;;;;;;;;;;-1:-1:-1;82101:107:0;;;;;:::i;:::-;;:::i;79646:50::-;;;;;;;;;;-1:-1:-1;79646:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;79611:28;;;;;;;;;;;;;;;;83170:91;;;;;;;;;;;;;:::i;26757:164::-;;;;;;;;;;-1:-1:-1;26757:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26878:25:0;;;26854:4;26878:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26757:164;79374:30;;;;;;;;;;;;;;;;82315:136;;;;;;;;;;-1:-1:-1;82315:136:0;;;;;:::i;:::-;;:::i;78654:201::-;;;;;;;;;;-1:-1:-1;78654:201:0;;;;;:::i;:::-;;:::i;82743:110::-;;;;;;;;;;-1:-1:-1;82743:110:0;;;;;:::i;:::-;;:::i;18415:639::-;18500:4;-1:-1:-1;;;;;;;;;18824:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18901:25:0;;;18824:102;:179;;;-1:-1:-1;;;;;;;;;;18978:25:0;;;18824:179;18804:199;18415:639;-1:-1:-1;;18415:639:0:o;19317:100::-;19371:13;19404:5;19397:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19317:100;:::o;25808:218::-;25884:7;25909:16;25917:7;25909;:16::i;:::-;25904:64;;25934:34;;-1:-1:-1;;;25934:34:0;;;;;;;;;;;25904:64;-1:-1:-1;25988:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;25988:30:0;;25808:218::o;25241:408::-;25330:13;25346:16;25354:7;25346;:16::i;:::-;25330:32;-1:-1:-1;49574:10:0;-1:-1:-1;;;;;25379:28:0;;;25375:175;;25427:44;25444:5;49574:10;26757:164;:::i;25427:44::-;25422:128;;25499:35;;-1:-1:-1;;;25499:35:0;;;;;;;;;;;25422:128;25562:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;25562:35:0;-1:-1:-1;;;;;25562:35:0;;;;;;;;;25613:28;;25562:24;;25613:28;;;;;;;25319:330;25241:408;;:::o;29447:2825::-;29589:27;29619;29638:7;29619:18;:27::i;:::-;29589:57;;29704:4;-1:-1:-1;;;;;29663:45:0;29679:19;-1:-1:-1;;;;;29663:45:0;;29659:86;;29717:28;;-1:-1:-1;;;29717:28:0;;;;;;;;;;;29659:86;29759:27;28555:24;;;:15;:24;;;;;28783:26;;49574:10;28180:30;;;-1:-1:-1;;;;;27873:28:0;;28158:20;;;28155:56;29945:180;;30038:43;30055:4;49574:10;26757:164;:::i;30038:43::-;30033:92;;30090:35;;-1:-1:-1;;;30090:35:0;;;;;;;;;;;30033:92;-1:-1:-1;;;;;30142:16:0;;30138:52;;30167:23;;-1:-1:-1;;;30167:23:0;;;;;;;;;;;30138:52;30339:15;30336:160;;;30479:1;30458:19;30451:30;30336:160;-1:-1:-1;;;;;30876:24:0;;;;;;;:18;:24;;;;;;30874:26;;-1:-1:-1;;30874:26:0;;;30945:22;;;;;;;;;30943:24;;-1:-1:-1;30943:24:0;;;24099:11;24074:23;24070:41;24057:63;-1:-1:-1;;;24057:63:0;31238:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;31533:47:0;;:52;;31529:627;;31638:1;31628:11;;31606:19;31761:30;;;:17;:30;;;;;;:35;;31757:384;;31899:13;;31884:11;:28;31880:242;;32046:30;;;;:17;:30;;;;;:52;;;31880:242;31587:569;31529:627;32203:7;32199:2;-1:-1:-1;;;;;32184:27:0;32193:4;-1:-1:-1;;;;;32184:27:0;;;;;;;;;;;32222:42;29578:2694;;;29447:2825;;;:::o;83368:169::-;77634:13;:11;:13::i;:::-;83438:51:::1;::::0;83420:12:::1;::::0;83438:10:::1;::::0;83462:21:::1;::::0;83420:12;83438:51;83420:12;83438:51;83462:21;83438:10;:51:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83419:70;;;83504:7;83496:35;;;::::0;-1:-1:-1;;;83496:35:0;;9724:2:1;83496:35:0::1;::::0;::::1;9706:21:1::0;9763:2;9743:18;;;9736:30;-1:-1:-1;;;9782:18:1;;;9775:45;9837:18;;83496:35:0::1;;;;;;;;;83412:125;83368:169::o:0;82646:91::-;77634:13;:11;:13::i;:::-;82714:8:::1;:17:::0;82646:91::o;80307:110::-;77634:13;:11;:13::i;:::-;80383:16:::1;:28:::0;80307:110::o;82859:114::-;77634:13;:11;:13::i;:::-;82936:22:::1;:31:::0;82859:114::o;32368:193::-;32514:39;32531:4;32537:2;32541:7;32514:39;;;;;;;;;;;;:16;:39::i;:::-;32368:193;;;:::o;83543:::-;77634:13;:11;:13::i;:::-;83636:12:::1;83654:8;-1:-1:-1::0;;;;;83654:13:0::1;83676:6;83654:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83635:53;;;83703:7;83695:35;;;::::0;-1:-1:-1;;;83695:35:0;;9724:2:1;83695:35:0::1;::::0;::::1;9706:21:1::0;9763:2;9743:18;;;9736:30;-1:-1:-1;;;9782:18:1;;;9775:45;9837:18;;83695:35:0::1;9522:339:1::0;82979:100:0;77634:13;:11;:13::i;:::-;83050::::1;:23;83066:7:::0;;83050:13;:23:::1;:::i;55638:528::-:0;55782:23;55873:8;55848:22;55873:8;-1:-1:-1;;;;;55940:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55940:36:0;;-1:-1:-1;;55940:36:0;;;;;;;;;;;;55903:73;;55996:9;55991:125;56012:14;56007:1;:19;55991:125;;56068:32;56088:8;;56097:1;56088:11;;;;;;;:::i;:::-;;;;;;;56068:19;:32::i;:::-;56052:10;56063:1;56052:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;56028:3;;55991:125;;;-1:-1:-1;56137:10:0;55638:528;-1:-1:-1;;;;55638:528:0:o;20710:152::-;20782:7;20825:27;20844:7;20825:18;:27::i;16252:233::-;16324:7;-1:-1:-1;;;;;16348:19:0;;16344:60;;16376:28;;-1:-1:-1;;;16376:28:0;;;;;;;;;;;16344:60;-1:-1:-1;;;;;;16422:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;16422:55:0;;16252:233::o;78396:103::-;77634:13;:11;:13::i;:::-;78461:30:::1;78488:1;78461:18;:30::i;:::-;78396:103::o:0;59514:900::-;59592:16;59646:19;59680:25;59720:22;59745:16;59755:5;59745:9;:16::i;:::-;59720:41;;59776:25;59818:14;-1:-1:-1;;;;;59804:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59804:29:0;;59776:57;;59848:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59848:31:0;82302:1;59894:472;59943:14;59928:11;:29;59894:472;;59995:15;60008:1;59995:12;:15::i;:::-;59983:27;;60033:9;:16;;;60074:8;60029:73;60124:14;;-1:-1:-1;;;;;60124:28:0;;60120:111;;60197:14;;;-1:-1:-1;60120:111:0;60274:5;-1:-1:-1;;;;;60253:26:0;:17;-1:-1:-1;;;;;60253:26:0;;60249:102;;60330:1;60304:8;60313:13;;;;;;60304:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;60249:102;59959:3;;59894:472;;;-1:-1:-1;60387:8:0;;59514:900;-1:-1:-1;;;;;;59514:900:0:o;83742:85::-;77634:13;:11;:13::i;:::-;83810:11:::1;::::0;;-1:-1:-1;;83795:26:0;::::1;83810:11;::::0;;::::1;83809:12;83795:26;::::0;;83742:85::o;83267:95::-;77634:13;:11;:13::i;:::-;83337:12:::1;:19;83352:4:::0;83337:12;:19:::1;:::i;:::-;;83267:95:::0;:::o;19493:104::-;19549:13;19582:7;19575:14;;;;;:::i;56554:2513::-;56697:16;56764:4;56755:5;:13;56751:45;;56777:19;;-1:-1:-1;;;56777:19:0;;;;;;;;;;;56751:45;56811:19;56845:17;56865:14;14810:7;14837:13;;14755:103;56865:14;56845:34;-1:-1:-1;82302:1:0;56957:5;:23;56953:87;;;82302:1;57001:23;;56953:87;57116:9;57109:4;:16;57105:73;;;57153:9;57146:16;;57105:73;57192:25;57220:16;57230:5;57220:9;:16::i;:::-;57192:44;;57414:4;57406:5;:12;57402:278;;;57461:12;;;57496:31;;;57492:111;;;57572:11;57552:31;;57492:111;57420:198;57402:278;;;-1:-1:-1;57663:1:0;57402:278;57694:25;57736:17;-1:-1:-1;;;;;57722:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57722:32:0;;57694:60;;57773:17;57794:1;57773:22;57769:78;;57823:8;-1:-1:-1;57816:15:0;;-1:-1:-1;;;57816:15:0;57769:78;57991:31;58025:26;58045:5;58025:19;:26::i;:::-;57991:60;;58066:25;58311:9;:16;;;58306:92;;-1:-1:-1;58368:14:0;;58306:92;58429:5;58412:478;58441:4;58436:1;:9;;:45;;;;;58464:17;58449:11;:32;;58436:45;58412:478;;;58519:15;58532:1;58519:12;:15::i;:::-;58507:27;;58557:9;:16;;;58598:8;58553:73;58648:14;;-1:-1:-1;;;;;58648:28:0;;58644:111;;58721:14;;;-1:-1:-1;58644:111:0;58798:5;-1:-1:-1;;;;;58777:26:0;:17;-1:-1:-1;;;;;58777:26:0;;58773:102;;58854:1;58828:8;58837:13;;;;;;58828:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;58773:102;58483:3;;58412:478;;;-1:-1:-1;;;58975:29:0;;;-1:-1:-1;58982:8:0;;-1:-1:-1;;56554:2513:0;;;;;;:::o;82457:183::-;77634:13;:11;:13::i;:::-;82577::::1;80105:10;;80092:9;80075:14;15544:7:::0;15735:13;-1:-1:-1;;15735:31:0;;15489:296;80075:14:::1;:26;;;;:::i;:::-;:40;;80059:116;;;;-1:-1:-1::0;;;80059:116:0::1;;;;;;;:::i;:::-;82602:32:::2;82608:10;82620:13;82602:5;:32::i;80195:104::-:0;77634:13;:11;:13::i;:::-;80270:10:::1;:23:::0;80195:104::o;80421:1231::-;79925:9;79938:10;79925:23;79917:72;;;;-1:-1:-1;;;79917:72:0;;14288:2:1;79917:72:0;;;14270:21:1;14327:2;14307:18;;;14300:30;14366:34;14346:18;;;14339:62;-1:-1:-1;;;14417:18:1;;;14410:34;14461:19;;79917:72:0;14086:400:1;79917:72:0;80499:9:::1;80105:10;;80092:9;80075:14;15544:7:::0;15735:13;-1:-1:-1;;15735:31:0;;15489:296;80075:14:::1;:26;;;;:::i;:::-;:40;;80059:116;;;;-1:-1:-1::0;;;80059:116:0::1;;;;;;;:::i;:::-;80549:22:::2;;80525:21;80535:10;80525:9;:21::i;:::-;:46;80517:70;;;::::0;-1:-1:-1;;;80517:70:0;;14693:2:1;80517:70:0::2;::::0;::::2;14675:21:1::0;14732:2;14712:18;;;14705:30;-1:-1:-1;;;14751:18:1;;;14744:41;14802:18;;80517:70:0::2;14491:335:1::0;80517:70:0::2;80602:11;::::0;::::2;;80594:44;;;::::0;-1:-1:-1;;;80594:44:0;;15033:2:1;80594:44:0::2;::::0;::::2;15015:21:1::0;15072:2;15052:18;;;15045:30;-1:-1:-1;;;15091:18:1;;;15084:50;15151:18;;80594:44:0::2;14831:344:1::0;80594:44:0::2;80667:10;::::0;15544:7;15735:13;-1:-1:-1;;15735:31:0;80649:29:::2;80645:1002;;;80710:8;;80693:13;;:25;80689:951;;80764:16;::::0;80752:28:::2;::::0;:9;:28:::2;:::i;:::-;80739:9;:41;;80731:74;;;::::0;-1:-1:-1;;;80731:74:0;;15555:2:1;80731:74:0::2;::::0;::::2;15537:21:1::0;15594:2;15574:18;;;15567:30;-1:-1:-1;;;15613:18:1;;;15606:50;15673:18;;80731:74:0::2;15353:344:1::0;80731:74:0::2;80816:28;80822:10;80834:9;80816:5;:28::i;80689:951::-;80894:20;::::0;80880:10:::2;80864:27;::::0;;;:15:::2;:27;::::0;;;;;:50:::2;80860:780;;;80998:10;80927:29;80982:27:::0;;;:15:::2;:27;::::0;;;;;80959:20:::2;::::0;:50:::2;::::0;80982:27;80959:50:::2;:::i;:::-;80927:82;;81037:21;81024:9;:34;81020:430;;81090:9;81073:13;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;81128:10:0::2;81112:27;::::0;;;:15:::2;:27;::::0;;;;:40;;81143:9;;81112:27;:40:::2;::::0;81143:9;;81112:40:::2;:::i;:::-;::::0;;;-1:-1:-1;81020:430:0::2;::::0;-1:-1:-1;81020:430:0::2;;81200:21;81183:13;;:38;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;81250:10:0::2;81234:27;::::0;;;:15:::2;:27;::::0;;;;:52;;81265:21;;81234:27;:52:::2;::::0;81265:21;;81234:52:::2;:::i;:::-;::::0;;;-1:-1:-1;;81372:16:0::2;::::0;81335:33:::2;81347:21:::0;81335:9;:33:::2;:::i;:::-;81334:54;;;;:::i;:::-;81321:9;:67;;81299:139;;;::::0;-1:-1:-1;;;81299:139:0;;15555:2:1;81299:139:0::2;::::0;::::2;15537:21:1::0;15594:2;15574:18;;;15567:30;-1:-1:-1;;;15613:18:1;;;15606:50;15673:18;;81299:139:0::2;15353:344:1::0;81299:139:0::2;81460:28;81466:10;81478:9;81460:5;:28::i;80860:780::-;81549:16;::::0;81537:28:::2;::::0;:9;:28:::2;:::i;:::-;81523:9;:43;;81515:76;;;::::0;-1:-1:-1;;;81515:76:0;;16037:2:1;81515:76:0::2;::::0;::::2;16019:21:1::0;16076:2;16056:18;;;16049:30;-1:-1:-1;;;16095:18:1;;;16088:50;16155:18;;81515:76:0::2;15835:344:1::0;26366:234:0;49574:10;26461:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26461:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26461:60:0;;;;;;;;;;26537:55;;540:41:1;;;26461:49:0;;49574:10;26537:55;;513:18:1;26537:55:0;;;;;;;26366:234;;:::o;33159:407::-;33334:31;33347:4;33353:2;33357:7;33334:12;:31::i;:::-;-1:-1:-1;;;;;33380:14:0;;;:19;33376:183;;33419:56;33450:4;33456:2;33460:7;33469:5;33419:30;:56::i;:::-;33414:145;;33503:40;;-1:-1:-1;;;33503:40:0;;;;;;;;;;;33414:145;33159:407;;;;:::o;55051:428::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82302:1:0;55215:7;:25;:54;;;-1:-1:-1;14810:7:0;14837:13;55244:7;:25;;55215:54;55211:103;;;55293:9;55051:428;-1:-1:-1;;55051:428:0:o;55211:103::-;55336:21;55349:7;55336:12;:21::i;:::-;55324:33;;55372:9;:16;;;55368:65;;;55412:9;55051:428;-1:-1:-1;;55051:428:0:o;55368:65::-;55450:21;55463:7;55450:12;:21::i;81772:323::-;81864:13;81891:16;81899:7;81891;:16::i;:::-;81886:59;;81916:29;;-1:-1:-1;;;81916:29:0;;;;;;;;;;;81886:59;81954:21;81978:10;:8;:10::i;:::-;81954:34;;82008:7;82002:21;82027:1;82002:26;:87;;;;;;;;;;;;;;;;;82055:7;82064:18;:7;:16;:18::i;:::-;82038:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81995:94;81772:323;-1:-1:-1;;;81772:323:0:o;82101:107::-;-1:-1:-1;;;;;16656:25:0;;82159:7;16656:25;;;:18;:25;;10549:2;16656:25;;;;-1:-1:-1;;;;;16656:50:0;;16655:82;82182:20;16567:178;83170:91;83214:13;83243:12;83236:19;;;;;:::i;82315:136::-;77634:13;:11;:13::i;:::-;82391::::1;80105:10;;80092:9;80075:14;15544:7:::0;15735:13;-1:-1:-1;;15735:31:0;;15489:296;80075:14:::1;:26;;;;:::i;:::-;:40;;80059:116;;;;-1:-1:-1::0;;;80059:116:0::1;;;;;;;:::i;78654:201::-:0;77634:13;:11;:13::i;:::-;-1:-1:-1;;;;;78743:22:0;::::1;78735:73;;;::::0;-1:-1:-1;;;78735:73:0;;16887:2:1;78735:73:0::1;::::0;::::1;16869:21:1::0;16926:2;16906:18;;;16899:30;16965:34;16945:18;;;16938:62;-1:-1:-1;;;17016:18:1;;;17009:36;17062:19;;78735:73:0::1;16685:402:1::0;78735:73:0::1;78819:28;78838:8;78819:18;:28::i;82743:110::-:0;77634:13;:11;:13::i;:::-;82818:20:::1;:29:::0;82743:110::o;27179:282::-;27244:4;27300:7;82302:1;27281:26;;:66;;;;;27334:13;;27324:7;:23;27281:66;:153;;;;-1:-1:-1;;27385:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27385:44:0;:49;;27179:282::o;21865:1275::-;21932:7;21967;;82302:1;22016:23;22012:1061;;22069:13;;22062:4;:20;22058:1015;;;22107:14;22124:23;;;:17;:23;;;;;;;-1:-1:-1;;;22213:24:0;;:29;;22209:845;;22878:113;22885:6;22895:1;22885:11;22878:113;;-1:-1:-1;;;22956:6:0;22938:25;;;;:17;:25;;;;;;22878:113;;22209:845;22084:989;22058:1015;23101:31;;-1:-1:-1;;;23101:31:0;;;;;;;;;;;77913:132;77821:6;;-1:-1:-1;;;;;77821:6:0;49574:10;77977:23;77969:68;;;;-1:-1:-1;;;77969:68:0;;17294:2:1;77969:68:0;;;17276:21:1;;;17313:18;;;17306:30;17372:34;17352:18;;;17345:62;17424:18;;77969:68:0;17092:356:1;79015:191:0;79108:6;;;-1:-1:-1;;;;;79125:17:0;;;-1:-1:-1;;;;;;79125:17:0;;;;;;;79158:40;;79108:6;;;79125:17;79108:6;;79158:40;;79089:16;;79158:40;79078:128;79015:191;:::o;21313:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21441:24:0;;;;:17;:24;;;;;;21422:44;;:18;:44::i;36828:2966::-;36901:20;36924:13;;;36952;;;36948:44;;36974:18;;-1:-1:-1;;;36974:18:0;;;;;;;;;;;36948:44;-1:-1:-1;;;;;37480:22:0;;;;;;:18;:22;;;;10549:2;37480:22;;;:71;;37518:32;37506:45;;37480:71;;;37794:31;;;:17;:31;;;;;-1:-1:-1;24530:15:0;;24504:24;24500:46;24099:11;24074:23;24070:41;24067:52;24057:63;;37794:173;;38029:23;;;;37794:31;;37480:22;;38794:25;37480:22;;38647:335;39308:1;39294:12;39290:20;39248:346;39349:3;39340:7;39337:16;39248:346;;39567:7;39557:8;39554:1;39527:25;39524:1;39521;39516:59;39402:1;39389:15;39248:346;;;39252:77;39627:8;39639:1;39627:13;39623:45;;39649:19;;-1:-1:-1;;;39649:19:0;;;;;;;;;;;39623:45;39685:13;:19;-1:-1:-1;32368:193:0;;;:::o;35650:716::-;35834:88;;-1:-1:-1;;;35834:88:0;;35813:4;;-1:-1:-1;;;;;35834:45:0;;;;;:88;;49574:10;;35901:4;;35907:7;;35916:5;;35834:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35834:88:0;;;;;;;;-1:-1:-1;;35834:88:0;;;;;;;;;;;;:::i;:::-;;;35830:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36117:6;:13;36134:1;36117:18;36113:235;;36163:40;;-1:-1:-1;;;36163:40:0;;;;;;;;;;;36113:235;36306:6;36300:13;36291:6;36287:2;36283:15;36276:38;35830:529;-1:-1:-1;;;;;;35993:64:0;-1:-1:-1;;;35993:64:0;;-1:-1:-1;35830:529:0;35650:716;;;;;;:::o;21051:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21162:47:0;21181:27;21200:7;21181:18;:27::i;:::-;21162:18;:47::i;81658:108::-;81718:13;81747;81740:20;;;;;:::i;73726:716::-;73782:13;73833:14;73850:17;73861:5;73850:10;:17::i;:::-;73870:1;73850:21;73833:38;;73886:20;73920:6;-1:-1:-1;;;;;73909:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73909:18:0;-1:-1:-1;73886:41:0;-1:-1:-1;74051:28:0;;;74067:2;74051:28;74108:288;-1:-1:-1;;74140:5:0;-1:-1:-1;;;74277:2:0;74266:14;;74261:30;74140:5;74248:44;74338:2;74329:11;;;-1:-1:-1;74359:21:0;74108:288;74359:21;-1:-1:-1;74417:6:0;73726:716;-1:-1:-1;;;73726:716:0:o;23239:366::-;-1:-1:-1;;;;;;;;;;;;;23349:41:0;;;;11070:3;23435:33;;;-1:-1:-1;;;;;23401:68:0;-1:-1:-1;;;23401:68:0;-1:-1:-1;;;23499:24:0;;:29;;-1:-1:-1;;;23480:48:0;;;;11591:3;23568:28;;;;-1:-1:-1;;;23539:58:0;-1:-1:-1;23239:366:0:o;70592:922::-;70645:7;;-1:-1:-1;;;70723:15:0;;70719:102;;-1:-1:-1;;;70759:15:0;;;-1:-1:-1;70803:2:0;70793:12;70719:102;70848:6;70839:5;:15;70835:102;;70884:6;70875:15;;;-1:-1:-1;70919:2:0;70909:12;70835:102;70964:6;70955:5;:15;70951:102;;71000:6;70991:15;;;-1:-1:-1;71035:2:0;71025:12;70951:102;71080:5;71071;:14;71067:99;;71115:5;71106:14;;;-1:-1:-1;71149:1:0;71139:11;71067:99;71193:5;71184;:14;71180:99;;71228:5;71219:14;;;-1:-1:-1;71262:1:0;71252:11;71180:99;71306:5;71297;:14;71293:99;;71341:5;71332:14;;;-1:-1:-1;71375:1:0;71365:11;71293:99;71419:5;71410;:14;71406:66;;71455:1;71445:11;71500:6;70592:922;-1:-1:-1;;70592:922: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:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:592::-;2764:6;2772;2825:2;2813:9;2804:7;2800:23;2796:32;2793:52;;;2841:1;2838;2831:12;2793:52;2881:9;2868:23;-1:-1:-1;;;;;2951:2:1;2943:6;2940:14;2937:34;;;2967:1;2964;2957:12;2937:34;3005:6;2994:9;2990:22;2980:32;;3050:7;3043:4;3039:2;3035:13;3031:27;3021:55;;3072:1;3069;3062:12;3021:55;3112:2;3099:16;3138:2;3130:6;3127:14;3124:34;;;3154:1;3151;3144:12;3124:34;3199:7;3194:2;3185:6;3181:2;3177:15;3173:24;3170:37;3167:57;;;3220:1;3217;3210:12;3167:57;3251:2;3243:11;;;;;3273:6;;-1:-1:-1;2693:592:1;;-1:-1:-1;;;;2693:592:1:o;3290:615::-;3376:6;3384;3437:2;3425:9;3416:7;3412:23;3408:32;3405:52;;;3453:1;3450;3443:12;3405:52;3493:9;3480:23;-1:-1:-1;;;;;3563:2:1;3555:6;3552:14;3549:34;;;3579:1;3576;3569:12;3549:34;3617:6;3606:9;3602:22;3592:32;;3662:7;3655:4;3651:2;3647:13;3643:27;3633:55;;3684:1;3681;3674:12;3633:55;3724:2;3711:16;3750:2;3742:6;3739:14;3736:34;;;3766:1;3763;3756:12;3736:34;3819:7;3814:2;3804:6;3801:1;3797:14;3793:2;3789:23;3785:32;3782:45;3779:65;;;3840:1;3837;3830:12;3910:349;3994:12;;-1:-1:-1;;;;;3990:38:1;3978:51;;4082:4;4071:16;;;4065:23;-1:-1:-1;;;;;4061:48:1;4045:14;;;4038:72;4173:4;4162:16;;;4156:23;4149:31;4142:39;4126:14;;;4119:63;4235:4;4224:16;;;4218:23;4243:8;4214:38;4198:14;;4191:62;3910:349::o;4264:720::-;4495:2;4547:21;;;4617:13;;4520:18;;;4639:22;;;4466:4;;4495:2;4718:15;;;;4692:2;4677:18;;;4466:4;4761:197;4775:6;4772:1;4769:13;4761:197;;;4824:52;4872:3;4863:6;4857:13;4824:52;:::i;:::-;4933:15;;;;4905:4;4896:14;;;;;4797:1;4790:9;4761:197;;4989:186;5048:6;5101:2;5089:9;5080:7;5076:23;5072:32;5069:52;;;5117:1;5114;5107:12;5069:52;5140:29;5159:9;5140:29;:::i;5180:632::-;5351:2;5403:21;;;5473:13;;5376:18;;;5495:22;;;5322:4;;5351:2;5574:15;;;;5548:2;5533:18;;;5322:4;5617:169;5631:6;5628:1;5625:13;5617:169;;;5692:13;;5680:26;;5761:15;;;;5726:12;;;;5653:1;5646:9;5617:169;;5817:127;5878:10;5873:3;5869:20;5866:1;5859:31;5909:4;5906:1;5899:15;5933:4;5930:1;5923:15;5949:632;6014:5;-1:-1:-1;;;;;6085:2:1;6077:6;6074:14;6071:40;;;6091:18;;:::i;:::-;6166:2;6160:9;6134:2;6220:15;;-1:-1:-1;;6216:24:1;;;6242:2;6212:33;6208:42;6196:55;;;6266:18;;;6286:22;;;6263:46;6260:72;;;6312:18;;:::i;:::-;6352:10;6348:2;6341:22;6381:6;6372:15;;6411:6;6403;6396:22;6451:3;6442:6;6437:3;6433:16;6430:25;6427:45;;;6468:1;6465;6458:12;6427:45;6518:6;6513:3;6506:4;6498:6;6494:17;6481:44;6573:1;6566:4;6557:6;6549;6545:19;6541:30;6534:41;;;;5949:632;;;;;:::o;6586:451::-;6655:6;6708:2;6696:9;6687:7;6683:23;6679:32;6676:52;;;6724:1;6721;6714:12;6676:52;6764:9;6751:23;-1:-1:-1;;;;;6789:6:1;6786:30;6783:50;;;6829:1;6826;6819:12;6783:50;6852:22;;6905:4;6897:13;;6893:27;-1:-1:-1;6883:55:1;;6934:1;6931;6924:12;6883:55;6957:74;7023:7;7018:2;7005:16;7000:2;6996;6992:11;6957:74;:::i;7042:322::-;7119:6;7127;7135;7188:2;7176:9;7167:7;7163:23;7159:32;7156:52;;;7204:1;7201;7194:12;7156:52;7227:29;7246:9;7227:29;:::i;:::-;7217:39;7303:2;7288:18;;7275:32;;-1:-1:-1;7354:2:1;7339:18;;;7326:32;;7042:322;-1:-1:-1;;;7042:322:1:o;7369:347::-;7434:6;7442;7495:2;7483:9;7474:7;7470:23;7466:32;7463:52;;;7511:1;7508;7501:12;7463:52;7534:29;7553:9;7534:29;:::i;:::-;7524:39;;7613:2;7602:9;7598:18;7585:32;7660:5;7653:13;7646:21;7639:5;7636:32;7626:60;;7682:1;7679;7672:12;7626:60;7705:5;7695:15;;;7369:347;;;;;:::o;7721:667::-;7816:6;7824;7832;7840;7893:3;7881:9;7872:7;7868:23;7864:33;7861:53;;;7910:1;7907;7900:12;7861:53;7933:29;7952:9;7933:29;:::i;:::-;7923:39;;7981:38;8015:2;8004:9;8000:18;7981:38;:::i;:::-;7971:48;;8066:2;8055:9;8051:18;8038:32;8028:42;;8121:2;8110:9;8106:18;8093:32;-1:-1:-1;;;;;8140:6:1;8137:30;8134:50;;;8180:1;8177;8170:12;8134:50;8203:22;;8256:4;8248:13;;8244:27;-1:-1:-1;8234:55:1;;8285:1;8282;8275:12;8234:55;8308:74;8374:7;8369:2;8356:16;8351:2;8347;8343:11;8308:74;:::i;:::-;8298:84;;;7721:667;;;;;;;:::o;8393:264::-;8587:3;8572:19;;8600:51;8576:9;8633:6;8600:51;:::i;8662:260::-;8730:6;8738;8791:2;8779:9;8770:7;8766:23;8762:32;8759:52;;;8807:1;8804;8797:12;8759:52;8830:29;8849:9;8830:29;:::i;:::-;8820:39;;8878:38;8912:2;8901:9;8897:18;8878:38;:::i;:::-;8868:48;;8662:260;;;;;:::o;8927:380::-;9006:1;9002:12;;;;9049;;;9070:61;;9124:4;9116:6;9112:17;9102:27;;9070:61;9177:2;9169:6;9166:14;9146:18;9143:38;9140:161;;9223:10;9218:3;9214:20;9211:1;9204:31;9258:4;9255:1;9248:15;9286:4;9283:1;9276:15;9140:161;;8927:380;;;:::o;9992:545::-;10094:2;10089:3;10086:11;10083:448;;;10130:1;10155:5;10151:2;10144:17;10200:4;10196:2;10186:19;10270:2;10258:10;10254:19;10251:1;10247:27;10241:4;10237:38;10306:4;10294:10;10291:20;10288:47;;;-1:-1:-1;10329:4:1;10288:47;10384:2;10379:3;10375:12;10372:1;10368:20;10362:4;10358:31;10348:41;;10439:82;10457:2;10450:5;10447:13;10439:82;;;10502:17;;;10483:1;10472:13;10439:82;;10713:1206;-1:-1:-1;;;;;10832:3:1;10829:27;10826:53;;;10859:18;;:::i;:::-;10888:94;10978:3;10938:38;10970:4;10964:11;10938:38;:::i;:::-;10932:4;10888:94;:::i;:::-;11008:1;11033:2;11028:3;11025:11;11050:1;11045:616;;;;11705:1;11722:3;11719:93;;;-1:-1:-1;11778:19:1;;;11765:33;11719:93;-1:-1:-1;;10670:1:1;10666:11;;;10662:24;10658:29;10648:40;10694:1;10690:11;;;10645:57;11825:78;;11018:895;;11045:616;9939:1;9932:14;;;9976:4;9963:18;;-1:-1:-1;;11081:17:1;;;11182:9;11204:229;11218:7;11215:1;11212:14;11204:229;;;11307:19;;;11294:33;11279:49;;11414:4;11399:20;;;;11367:1;11355:14;;;;11234:12;11204:229;;;11208:3;11461;11452:7;11449:16;11446:159;;;11585:1;11581:6;11575:3;11569;11566:1;11562:11;11558:21;11554:34;11550:39;11537:9;11532:3;11528:19;11515:33;11511:79;11503:6;11496:95;11446:159;;;11648:1;11642:3;11639:1;11635:11;11631:19;11625:4;11618:33;11018:895;;;10713:1206;;;:::o;11924:127::-;11985:10;11980:3;11976:20;11973:1;11966:31;12016:4;12013:1;12006:15;12040:4;12037:1;12030:15;12056:1352;12182:3;12176:10;-1:-1:-1;;;;;12201:6:1;12198:30;12195:56;;;12231:18;;:::i;:::-;12260:97;12350:6;12310:38;12342:4;12336:11;12310:38;:::i;:::-;12304:4;12260:97;:::i;:::-;12412:4;;12476:2;12465:14;;12493:1;12488:663;;;;13195:1;13212:6;13209:89;;;-1:-1:-1;13264:19:1;;;13258:26;13209:89;-1:-1:-1;;10670:1:1;10666:11;;;10662:24;10658:29;10648:40;10694:1;10690:11;;;10645:57;13311:81;;12458:944;;12488:663;9939:1;9932:14;;;9976:4;9963:18;;-1:-1:-1;;12524:20:1;;;12642:236;12656:7;12653:1;12650:14;12642:236;;;12745:19;;;12739:26;12724:42;;12837:27;;;;12805:1;12793:14;;;;12672:19;;12642:236;;;12646:3;12906:6;12897:7;12894:19;12891:201;;;12967:19;;;12961:26;-1:-1:-1;;13050:1:1;13046:14;;;13062:3;13042:24;13038:37;13034:42;13019:58;13004:74;;12891:201;-1:-1:-1;;;;;13138:1:1;13122:14;;;13118:22;13105:36;;-1:-1:-1;12056:1352:1:o;13413:127::-;13474:10;13469:3;13465:20;13462:1;13455:31;13505:4;13502:1;13495:15;13529:4;13526:1;13519:15;13545:125;13610:9;;;13631:10;;;13628:36;;;13644:18;;:::i;13675:406::-;13877:2;13859:21;;;13916:2;13896:18;;;13889:30;13955:34;13950:2;13935:18;;13928:62;-1:-1:-1;;;14021:2:1;14006:18;;13999:40;14071:3;14056:19;;13675:406::o;15180:168::-;15253:9;;;15284;;15301:15;;;15295:22;;15281:37;15271:71;;15322:18;;:::i;15702:128::-;15769:9;;;15790:11;;;15787:37;;;15804:18;;:::i;16184:496::-;16363:3;16401:6;16395:13;16417:66;16476:6;16471:3;16464:4;16456:6;16452:17;16417:66;:::i;:::-;16546:13;;16505:16;;;;16568:70;16546:13;16505:16;16615:4;16603:17;;16568:70;:::i;:::-;16654:20;;16184:496;-1:-1:-1;;;;16184:496:1:o;17453:489::-;-1:-1:-1;;;;;17722:15:1;;;17704:34;;17774:15;;17769:2;17754:18;;17747:43;17821:2;17806:18;;17799:34;;;17869:3;17864:2;17849:18;;17842:31;;;17647:4;;17890:46;;17916:19;;17908:6;17890:46;:::i;:::-;17882:54;17453:489;-1:-1:-1;;;;;;17453:489:1:o;17947:249::-;18016:6;18069:2;18057:9;18048:7;18044:23;18040:32;18037:52;;;18085:1;18082;18075:12;18037:52;18117:9;18111:16;18136:30;18160:5;18136:30;:::i

Swarm Source

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