ETH Price: $2,422.61 (+2.98%)

Token

wallpaperspix.wtf (wp)
 

Overview

Max Total Supply

999 wp

Holders

332

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 wp
0xe6e6c5c258c7d5574ede8ace9a0e4ab6bbe28c49
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:
wallpaperpixwtf

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-11
*/

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/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.selector);
        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.selector);

        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 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If not burned.
            if (packed & _BITMASK_BURNED == 0) {
                // If the data at the starting slot does not exist, start the scan.
                if (packed == 0) {
                    if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                    // 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, `tokenId` will not underflow.
                    //
                    // We can directly compare the packed value.
                    // If the address is zero, packed will be zero.
                    for (;;) {
                        unchecked {
                            packed = _packedOwnerships[--tokenId];
                        }
                        if (packed == 0) continue;
                        return packed;
                    }
                }
                // Otherwise, the data exists and is not burned. We can skip the scan.
                // This is possible because we have already achieved the target condition.
                // This saves 2143 gas on transfers of initialized tokens.
                return packed;
            }
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @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. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

    /**
     * @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.selector);

        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);

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (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.selector);

        _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;
                    }
                }
            }
        }

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // 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.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

        _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.selector);
            }
    }

    /**
     * @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.selector);
            }
            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.selector);

        _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:
            // - `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)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            do {
                assembly {
                    // 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`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

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

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

        _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.selector);
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) _revert(bytes4(0));
            }
        }
    }

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

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

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

    // =============================================================
    //                        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.selector);
        }

        _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.selector);
        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)
        }
    }

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/interfaces/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: wallpaper/wallpapernft.sol

//SPDX-License-Identifier: MIT
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.0;

























contract wallpaperpixwtf is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://bafybeicmindhbdofbw5miuuypu4bi277q2wsnn7hmhvdtbwbjgt2vcknra/";
    address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    bool private isOpenSeaProxyActive = true;

    uint256 public constant MAX_MINTS_PER_TX = 3;
    uint256 public maxSupply = 999;

    uint256 public constant PUBLIC_SALE_PRICE = 0.005 ether;
    uint256 public NUM_FREE_MINTS = 69 ;
    bool public isPublicSaleActive = true;




    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier publicSaleActive() {
        require(isPublicSaleActive, "Public sale is not open");
        _;
    }



    modifier maxMintsPerTX(uint256 numberOfTokens) {
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        _;
    }

    modifier canMintNFTs(uint256 numberOfTokens) {
        require(
            totalSupply() + numberOfTokens <=
                maxSupply,
            "Not enough mints remaining to mint"
        );
        _;
    }

    modifier freeMintsAvailable() {
        require(
            totalSupply() <=
                NUM_FREE_MINTS,
            "Not enough free mints remain"
        );
        _;
    }



    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        if(totalSupply()>NUM_FREE_MINTS){
        require(
            (price * numberOfTokens) == msg.value,
            "Incorrect ETH value sent"
        );
        }
        _;
    }


    constructor() ERC721A("wallpaperspix.wtf", "wp") {}

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
    {

        _safeMint(msg.sender, numberOfTokens);
    }



    //A simple free mint function to avoid confusion
    //The normal mint function with a cost of 0 would work too

    // ============ PUBLIC READ-ONLY FUNCTIONS ============

    function getBaseURI() external view returns (string memory) {
        return baseURI;
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    // function to disable gasless listings for security in case
    // opensea ever shuts down or is compromised
    function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive)
        external
        onlyOwner
    {
        isOpenSeaProxyActive = _isOpenSeaProxyActive;
    }

    function setIsPublicSaleActive(bool _isPublicSaleActive)
        external
        onlyOwner
    {
        isPublicSaleActive = _isPublicSaleActive;
    }


    function setNumFreeMints(uint256 _numfreemints)
        external
        onlyOwner
    {
        NUM_FREE_MINTS = _numfreemints;
    }


    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }



    // ============ SUPPORTING FUNCTIONS ============

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }

    // ============ FUNCTION OVERRIDES ============

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        ProxyRegistry proxyRegistry = ProxyRegistry(
            openSeaProxyRegistryAddress
        );
        if (
            isOpenSeaProxyActive &&
            address(proxyRegistry.proxies(owner)) == operator
        ) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Nonexistent token");

        return
            string(abi.encodePacked(baseURI, "/", (tokenId+1).toString(), ".json"));
    }

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");

        return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
    }
}

// These contract definitions are used to create a reference to the OpenSea
// ProxyRegistry contract by using the registry's address (see isApprovedForAll).
contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

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":"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_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060438152602001620035f960439139600b90805190602001906200003592919062000291565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60146101000a81548160ff0219169083151502179055506103e7600d556045600e556001600f60006101000a81548160ff021916908315150217905550348015620000d957600080fd5b506040518060400160405280601181526020017f77616c6c7061706572737069782e7774660000000000000000000000000000008152506040518060400160405280600281526020017f777000000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200015e92919062000291565b5080600390805190602001906200017792919062000291565b5062000188620001be60201b60201c565b6000819055505050620001b0620001a4620001c360201b60201c565b620001cb60201b60201c565b6001600981905550620003a6565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029f9062000341565b90600052602060002090601f016020900481019282620002c357600085556200030f565b82601f10620002de57805160ff19168380011785556200030f565b828001600101855582156200030f579182015b828111156200030e578251825591602001919060010190620002f1565b5b5090506200031e919062000322565b5090565b5b808211156200033d57600081600090555060010162000323565b5090565b600060028204905060018216806200035a57607f821691505b6020821081141562000371576200037062000377565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61324380620003b66000396000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610656578063e43082f714610681578063e985e9c5146106aa578063f2fde38b146106e7576101d8565b8063a22cb465146105a9578063b88d4fde146105d2578063c6a91b42146105ee578063c87b56dd14610619576101d8565b80638da5cb5b116100d15780638da5cb5b1461050c57806395d89b4114610537578063982d669e14610562578063a0712d681461058d576101d8565b80636352211e1461045057806370a082311461048d578063714c5398146104ca578063715018a6146104f5576101d8565b80631e84c4131161017a5780633ccfd60b116101495780633ccfd60b146103cb57806342842e0e146103e257806349df728c146103fe57806355f804b314610427576101d8565b80631e84c4131461031d57806323b872dd1461034857806328cad13d146103645780632a55205a1461038d576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad5780630a00ae83146102c957806318160ddd146102f2576101d8565b806301ffc9a7146101dd57806306fdde031461021a57806307e89ec014610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612533565b610710565b6040516102119190612a41565b60405180910390f35b34801561022657600080fd5b5061022f61078a565b60405161023c9190612a5c565b60405180910390f35b34801561025157600080fd5b5061025a61081c565b6040516102679190612b7e565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190612630565b610827565b6040516102a491906129b1565b60405180910390f35b6102c760048036038101906102c29190612499565b610885565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190612630565b610895565b005b3480156102fe57600080fd5b506103076108a7565b6040516103149190612b7e565b60405180910390f35b34801561032957600080fd5b506103326108be565b60405161033f9190612a41565b60405180910390f35b610362600480360381019061035d9190612383565b6108d1565b005b34801561037057600080fd5b5061038b600480360381019061038691906124d9565b610b95565b005b34801561039957600080fd5b506103b460048036038101906103af919061268a565b610bba565b6040516103c2929190612a18565b60405180910390f35b3480156103d757600080fd5b506103e0610c26565b005b6103fc60048036038101906103f79190612383565b610c7d565b005b34801561040a57600080fd5b506104256004803603810190610420919061258d565b610c9d565b005b34801561043357600080fd5b5061044e600480360381019061044991906125e7565b610dc4565b005b34801561045c57600080fd5b5061047760048036038101906104729190612630565b610de6565b60405161048491906129b1565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190612316565b610df8565b6040516104c19190612b7e565b60405180910390f35b3480156104d657600080fd5b506104df610e90565b6040516104ec9190612a5c565b60405180910390f35b34801561050157600080fd5b5061050a610f22565b005b34801561051857600080fd5b50610521610f36565b60405161052e91906129b1565b60405180910390f35b34801561054357600080fd5b5061054c610f60565b6040516105599190612a5c565b60405180910390f35b34801561056e57600080fd5b50610577610ff2565b6040516105849190612b7e565b60405180910390f35b6105a760048036038101906105a29190612630565b610ff8565b005b3480156105b557600080fd5b506105d060048036038101906105cb9190612459565b61116d565b005b6105ec60048036038101906105e791906123d6565b611278565b005b3480156105fa57600080fd5b506106036112ca565b6040516106109190612b7e565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190612630565b6112cf565b60405161064d9190612a5c565b60405180910390f35b34801561066257600080fd5b5061066b611357565b6040516106789190612b7e565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a391906124d9565b61135d565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612343565b611382565b6040516106de9190612a41565b60405180910390f35b3480156106f357600080fd5b5061070e60048036038101906107099190612316565b61149c565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610783575061078282611520565b5b9050919050565b60606002805461079990612e33565b80601f01602080910402602001604051908101604052809291908181526020018280546107c590612e33565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b6611c37937e0800081565b6000610832826115b2565b6108475761084663cf4700e460e01b611611565b5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108918282600161161b565b5050565b61089d61174a565b80600e8190555050565b60006108b16117c8565b6001546000540303905090565b600f60009054906101000a900460ff1681565b60006108dc826117cd565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109515761095063a114810060e01b611611565b5b60008061095d84611890565b91509150610973818761096e6118b7565b6118bf565b61099e57610988866109836118b7565b611382565b61099d5761099c6359c896be60e01b611611565b5b5b6109ab8686866001611903565b80156109b657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a8485610a60888887611909565b7c020000000000000000000000000000000000000000000000000000000017611931565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b0c576000600185019050600060046000838152602001908152602001600020541415610b0a576000548114610b09578360046000838152602001908152602001600020819055505b5b505b600073ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46000811415610b7f57610b7e63ea553b3460e01b611611565b5b610b8c878787600161195c565b50505050505050565b610b9d61174a565b80600f60006101000a81548160ff02191690831515021790555050565b600080610bc6846115b2565b610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90612ade565b60405180910390fd5b30610c1b610c14856005611962565b6064611978565b915091509250929050565b610c2e61174a565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c79573d6000803e3d6000fd5b5050565b610c9883838360405180602001604052806000815250611278565b505050565b610ca561174a565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ce091906129b1565b60206040518083038186803b158015610cf857600080fd5b505afa158015610d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d30919061265d565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610d6d929190612a18565b602060405180830381600087803b158015610d8757600080fd5b505af1158015610d9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbf9190612506565b505050565b610dcc61174a565b80600b9080519060200190610de29291906120d6565b5050565b6000610df1826117cd565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e3f57610e3e638f4eb60460e01b611611565b5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6060600b8054610e9f90612e33565b80601f0160208091040260200160405190810160405280929190818152602001828054610ecb90612e33565b8015610f185780601f10610eed57610100808354040283529160200191610f18565b820191906000526020600020905b815481529060010190602001808311610efb57829003601f168201915b5050505050905090565b610f2a61174a565b610f34600061198e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f6f90612e33565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9b90612e33565b8015610fe85780601f10610fbd57610100808354040283529160200191610fe8565b820191906000526020600020905b815481529060010190602001808311610fcb57829003601f168201915b5050505050905090565b600e5481565b611000611a54565b6611c37937e0800081600e546110146108a7565b1115611068573481836110279190612cff565b14611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90612b1e565b60405180910390fd5b5b600f60009054906101000a900460ff166110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90612b5e565b60405180910390fd5b82600d54816110c46108a7565b6110ce9190612c78565b111561110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690612a9e565b60405180910390fd5b836003811115611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90612abe565b60405180910390fd5b61115e3386611aa4565b5050505061116a611ac2565b50565b806007600061117a6118b7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112276118b7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161126c9190612a41565b60405180910390a35050565b6112838484846108d1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112c4576112ae84848484611acc565b6112c3576112c263d1a57ed660e01b611611565b5b5b50505050565b600381565b60606112da826115b2565b611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090612ade565b60405180910390fd5b600b61133060018461132b9190612c78565b611c0b565b604051602001611341929190612977565b6040516020818303038152906040529050919050565b600d5481565b61136561174a565b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff16801561147957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161141191906129b1565b60206040518083038186803b15801561142957600080fd5b505afa15801561143d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146191906125ba565b73ffffffffffffffffffffffffffffffffffffffff16145b15611488576001915050611496565b6114928484611ce3565b9150505b92915050565b6114a461174a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90612a7e565b60405180910390fd5b61151d8161198e565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061157b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806115ab5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000816115bd6117c8565b111580156115cc575060005482105b801561160a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b8060005260046000fd5b600061162683610de6565b905081801561166857508073ffffffffffffffffffffffffffffffffffffffff1661164f6118b7565b73ffffffffffffffffffffffffffffffffffffffff1614155b156116945761167e816116796118b7565b611382565b6116935761169263cfb3b94260e01b611611565b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b611752611d77565b73ffffffffffffffffffffffffffffffffffffffff16611770610f36565b73ffffffffffffffffffffffffffffffffffffffff16146117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd90612afe565b60405180910390fd5b565b600090565b6000816117d86117c8565b1161187a576004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561187957600081141561187457600054821061183e5761183d63df2d9b4260e01b611611565b5b5b6004600083600190039350838152602001908152602001600020549050600081141561186a5761186f565b61188b565b61183f565b61188b565b5b61188a63df2d9b4260e01b611611565b5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611920868684611d7f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600081836119709190612cff565b905092915050565b600081836119869190612cce565b905092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60026009541415611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190612b3e565b60405180910390fd5b6002600981905550565b611abe828260405180602001604052806000815250611d88565b5050565b6001600981905550565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611af26118b7565b8786866040518563ffffffff1660e01b8152600401611b1494939291906129cc565b602060405180830381600087803b158015611b2e57600080fd5b505af1925050508015611b5f57506040513d601f19601f82011682018060405250810190611b5c9190612560565b60015b611bb8573d8060008114611b8f576040519150601f19603f3d011682016040523d82523d6000602084013e611b94565b606091505b50600081511415611bb057611baf63d1a57ed660e01b611611565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001611c1a84611e0d565b01905060008167ffffffffffffffff811115611c3957611c38612f23565b5b6040519080825280601f01601f191660200182016040528015611c6b5781602001600182028036833780820191505090505b509050600082602001820190505b600115611cd8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611cc257611cc1612ec5565b5b0494506000851415611cd357611cd8565b611c79565b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b60009392505050565b611d928383611f60565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0857600080549050600083820390505b611dd26000868380600101945086611acc565b611de757611de663d1a57ed660e01b611611565b5b818110611dbf578160005414611e0557611e04600060e01b611611565b5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611e6b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611e6157611e60612ec5565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611ea8576d04ee2d6d415b85acef81000000008381611e9e57611e9d612ec5565b5b0492506020810190505b662386f26fc100008310611ed757662386f26fc100008381611ecd57611ecc612ec5565b5b0492506010810190505b6305f5e1008310611f00576305f5e1008381611ef657611ef5612ec5565b5b0492506008810190505b6127108310611f25576127108381611f1b57611f1a612ec5565b5b0492506004810190505b60648310611f485760648381611f3e57611f3d612ec5565b5b0492506002810190505b600a8310611f57576001810190505b80915050919050565b6000805490506000821415611f8057611f7f63b562e8dd60e01b611611565b5b611f8d6000848385611903565b611fad83611f9e6000866000611909565b611fa7856120c6565b17611931565b6004600083815260200190815260200160002081905550600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff16169050600081141561206657612065632e07630060e01b611611565b5b6000838301905060008390505b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48181600101915081141561207357816000819055505050506120c1600084838561195c565b505050565b60006001821460e11b9050919050565b8280546120e290612e33565b90600052602060002090601f016020900481019282612104576000855561214b565b82601f1061211d57805160ff191683800117855561214b565b8280016001018555821561214b579182015b8281111561214a57825182559160200191906001019061212f565b5b509050612158919061215c565b5090565b5b8082111561217557600081600090555060010161215d565b5090565b600061218c61218784612bbe565b612b99565b9050828152602081018484840111156121a8576121a7612f57565b5b6121b3848285612df1565b509392505050565b60006121ce6121c984612bef565b612b99565b9050828152602081018484840111156121ea576121e9612f57565b5b6121f5848285612df1565b509392505050565b60008135905061220c81613183565b92915050565b6000813590506122218161319a565b92915050565b6000815190506122368161319a565b92915050565b60008135905061224b816131b1565b92915050565b600081519050612260816131b1565b92915050565b600082601f83011261227b5761227a612f52565b5b813561228b848260208601612179565b91505092915050565b6000813590506122a3816131c8565b92915050565b6000815190506122b8816131df565b92915050565b600082601f8301126122d3576122d2612f52565b5b81356122e38482602086016121bb565b91505092915050565b6000813590506122fb816131f6565b92915050565b600081519050612310816131f6565b92915050565b60006020828403121561232c5761232b612f61565b5b600061233a848285016121fd565b91505092915050565b6000806040838503121561235a57612359612f61565b5b6000612368858286016121fd565b9250506020612379858286016121fd565b9150509250929050565b60008060006060848603121561239c5761239b612f61565b5b60006123aa868287016121fd565b93505060206123bb868287016121fd565b92505060406123cc868287016122ec565b9150509250925092565b600080600080608085870312156123f0576123ef612f61565b5b60006123fe878288016121fd565b945050602061240f878288016121fd565b9350506040612420878288016122ec565b925050606085013567ffffffffffffffff81111561244157612440612f5c565b5b61244d87828801612266565b91505092959194509250565b600080604083850312156124705761246f612f61565b5b600061247e858286016121fd565b925050602061248f85828601612212565b9150509250929050565b600080604083850312156124b0576124af612f61565b5b60006124be858286016121fd565b92505060206124cf858286016122ec565b9150509250929050565b6000602082840312156124ef576124ee612f61565b5b60006124fd84828501612212565b91505092915050565b60006020828403121561251c5761251b612f61565b5b600061252a84828501612227565b91505092915050565b60006020828403121561254957612548612f61565b5b60006125578482850161223c565b91505092915050565b60006020828403121561257657612575612f61565b5b600061258484828501612251565b91505092915050565b6000602082840312156125a3576125a2612f61565b5b60006125b184828501612294565b91505092915050565b6000602082840312156125d0576125cf612f61565b5b60006125de848285016122a9565b91505092915050565b6000602082840312156125fd576125fc612f61565b5b600082013567ffffffffffffffff81111561261b5761261a612f5c565b5b612627848285016122be565b91505092915050565b60006020828403121561264657612645612f61565b5b6000612654848285016122ec565b91505092915050565b60006020828403121561267357612672612f61565b5b600061268184828501612301565b91505092915050565b600080604083850312156126a1576126a0612f61565b5b60006126af858286016122ec565b92505060206126c0858286016122ec565b9150509250929050565b6126d381612d59565b82525050565b6126e281612d6b565b82525050565b60006126f382612c35565b6126fd8185612c4b565b935061270d818560208601612e00565b61271681612f66565b840191505092915050565b600061272c82612c40565b6127368185612c5c565b9350612746818560208601612e00565b61274f81612f66565b840191505092915050565b600061276582612c40565b61276f8185612c6d565b935061277f818560208601612e00565b80840191505092915050565b6000815461279881612e33565b6127a28186612c6d565b945060018216600081146127bd57600181146127ce57612801565b60ff19831686528186019350612801565b6127d785612c20565b60005b838110156127f9578154818901526001820191506020810190506127da565b838801955050505b50505092915050565b6000612817602683612c5c565b915061282282612f77565b604082019050919050565b600061283a602283612c5c565b915061284582612fc6565b604082019050919050565b600061285d602283612c5c565b915061286882613015565b604082019050919050565b6000612880601183612c5c565b915061288b82613064565b602082019050919050565b60006128a3600583612c6d565b91506128ae8261308d565b600582019050919050565b60006128c6602083612c5c565b91506128d1826130b6565b602082019050919050565b60006128e9601883612c5c565b91506128f4826130df565b602082019050919050565b600061290c601f83612c5c565b915061291782613108565b602082019050919050565b600061292f601783612c5c565b915061293a82613131565b602082019050919050565b6000612952600183612c6d565b915061295d8261315a565b600182019050919050565b61297181612de7565b82525050565b6000612983828561278b565b915061298e82612945565b915061299a828461275a565b91506129a582612896565b91508190509392505050565b60006020820190506129c660008301846126ca565b92915050565b60006080820190506129e160008301876126ca565b6129ee60208301866126ca565b6129fb6040830185612968565b8181036060830152612a0d81846126e8565b905095945050505050565b6000604082019050612a2d60008301856126ca565b612a3a6020830184612968565b9392505050565b6000602082019050612a5660008301846126d9565b92915050565b60006020820190508181036000830152612a768184612721565b905092915050565b60006020820190508181036000830152612a978161280a565b9050919050565b60006020820190508181036000830152612ab78161282d565b9050919050565b60006020820190508181036000830152612ad781612850565b9050919050565b60006020820190508181036000830152612af781612873565b9050919050565b60006020820190508181036000830152612b17816128b9565b9050919050565b60006020820190508181036000830152612b37816128dc565b9050919050565b60006020820190508181036000830152612b57816128ff565b9050919050565b60006020820190508181036000830152612b7781612922565b9050919050565b6000602082019050612b936000830184612968565b92915050565b6000612ba3612bb4565b9050612baf8282612e65565b919050565b6000604051905090565b600067ffffffffffffffff821115612bd957612bd8612f23565b5b612be282612f66565b9050602081019050919050565b600067ffffffffffffffff821115612c0a57612c09612f23565b5b612c1382612f66565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c8382612de7565b9150612c8e83612de7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cc357612cc2612e96565b5b828201905092915050565b6000612cd982612de7565b9150612ce483612de7565b925082612cf457612cf3612ec5565b5b828204905092915050565b6000612d0a82612de7565b9150612d1583612de7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d4e57612d4d612e96565b5b828202905092915050565b6000612d6482612dc7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000612dae82612d59565b9050919050565b6000612dc082612d59565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e1e578082015181840152602081019050612e03565b83811115612e2d576000848401525b50505050565b60006002820490506001821680612e4b57607f821691505b60208210811415612e5f57612e5e612ef4565b5b50919050565b612e6e82612f66565b810181811067ffffffffffffffff82111715612e8d57612e8c612f23565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61318c81612d59565b811461319757600080fd5b50565b6131a381612d6b565b81146131ae57600080fd5b50565b6131ba81612d77565b81146131c557600080fd5b50565b6131d181612da3565b81146131dc57600080fd5b50565b6131e881612db5565b81146131f357600080fd5b50565b6131ff81612de7565b811461320a57600080fd5b5056fea26469706673582212203f6b7960d070e48534da0de49ab57affd6954600f98fe6b3d80e44e06274680064736f6c63430008070033697066733a2f2f62616679626569636d696e646862646f666277356d697575797075346269323737713277736e6e37686d687664746277626a67743276636b6e72612f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610656578063e43082f714610681578063e985e9c5146106aa578063f2fde38b146106e7576101d8565b8063a22cb465146105a9578063b88d4fde146105d2578063c6a91b42146105ee578063c87b56dd14610619576101d8565b80638da5cb5b116100d15780638da5cb5b1461050c57806395d89b4114610537578063982d669e14610562578063a0712d681461058d576101d8565b80636352211e1461045057806370a082311461048d578063714c5398146104ca578063715018a6146104f5576101d8565b80631e84c4131161017a5780633ccfd60b116101495780633ccfd60b146103cb57806342842e0e146103e257806349df728c146103fe57806355f804b314610427576101d8565b80631e84c4131461031d57806323b872dd1461034857806328cad13d146103645780632a55205a1461038d576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad5780630a00ae83146102c957806318160ddd146102f2576101d8565b806301ffc9a7146101dd57806306fdde031461021a57806307e89ec014610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612533565b610710565b6040516102119190612a41565b60405180910390f35b34801561022657600080fd5b5061022f61078a565b60405161023c9190612a5c565b60405180910390f35b34801561025157600080fd5b5061025a61081c565b6040516102679190612b7e565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190612630565b610827565b6040516102a491906129b1565b60405180910390f35b6102c760048036038101906102c29190612499565b610885565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190612630565b610895565b005b3480156102fe57600080fd5b506103076108a7565b6040516103149190612b7e565b60405180910390f35b34801561032957600080fd5b506103326108be565b60405161033f9190612a41565b60405180910390f35b610362600480360381019061035d9190612383565b6108d1565b005b34801561037057600080fd5b5061038b600480360381019061038691906124d9565b610b95565b005b34801561039957600080fd5b506103b460048036038101906103af919061268a565b610bba565b6040516103c2929190612a18565b60405180910390f35b3480156103d757600080fd5b506103e0610c26565b005b6103fc60048036038101906103f79190612383565b610c7d565b005b34801561040a57600080fd5b506104256004803603810190610420919061258d565b610c9d565b005b34801561043357600080fd5b5061044e600480360381019061044991906125e7565b610dc4565b005b34801561045c57600080fd5b5061047760048036038101906104729190612630565b610de6565b60405161048491906129b1565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190612316565b610df8565b6040516104c19190612b7e565b60405180910390f35b3480156104d657600080fd5b506104df610e90565b6040516104ec9190612a5c565b60405180910390f35b34801561050157600080fd5b5061050a610f22565b005b34801561051857600080fd5b50610521610f36565b60405161052e91906129b1565b60405180910390f35b34801561054357600080fd5b5061054c610f60565b6040516105599190612a5c565b60405180910390f35b34801561056e57600080fd5b50610577610ff2565b6040516105849190612b7e565b60405180910390f35b6105a760048036038101906105a29190612630565b610ff8565b005b3480156105b557600080fd5b506105d060048036038101906105cb9190612459565b61116d565b005b6105ec60048036038101906105e791906123d6565b611278565b005b3480156105fa57600080fd5b506106036112ca565b6040516106109190612b7e565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190612630565b6112cf565b60405161064d9190612a5c565b60405180910390f35b34801561066257600080fd5b5061066b611357565b6040516106789190612b7e565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a391906124d9565b61135d565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612343565b611382565b6040516106de9190612a41565b60405180910390f35b3480156106f357600080fd5b5061070e60048036038101906107099190612316565b61149c565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610783575061078282611520565b5b9050919050565b60606002805461079990612e33565b80601f01602080910402602001604051908101604052809291908181526020018280546107c590612e33565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b6611c37937e0800081565b6000610832826115b2565b6108475761084663cf4700e460e01b611611565b5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108918282600161161b565b5050565b61089d61174a565b80600e8190555050565b60006108b16117c8565b6001546000540303905090565b600f60009054906101000a900460ff1681565b60006108dc826117cd565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109515761095063a114810060e01b611611565b5b60008061095d84611890565b91509150610973818761096e6118b7565b6118bf565b61099e57610988866109836118b7565b611382565b61099d5761099c6359c896be60e01b611611565b5b5b6109ab8686866001611903565b80156109b657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a8485610a60888887611909565b7c020000000000000000000000000000000000000000000000000000000017611931565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b0c576000600185019050600060046000838152602001908152602001600020541415610b0a576000548114610b09578360046000838152602001908152602001600020819055505b5b505b600073ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46000811415610b7f57610b7e63ea553b3460e01b611611565b5b610b8c878787600161195c565b50505050505050565b610b9d61174a565b80600f60006101000a81548160ff02191690831515021790555050565b600080610bc6846115b2565b610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90612ade565b60405180910390fd5b30610c1b610c14856005611962565b6064611978565b915091509250929050565b610c2e61174a565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c79573d6000803e3d6000fd5b5050565b610c9883838360405180602001604052806000815250611278565b505050565b610ca561174a565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ce091906129b1565b60206040518083038186803b158015610cf857600080fd5b505afa158015610d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d30919061265d565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610d6d929190612a18565b602060405180830381600087803b158015610d8757600080fd5b505af1158015610d9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbf9190612506565b505050565b610dcc61174a565b80600b9080519060200190610de29291906120d6565b5050565b6000610df1826117cd565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e3f57610e3e638f4eb60460e01b611611565b5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6060600b8054610e9f90612e33565b80601f0160208091040260200160405190810160405280929190818152602001828054610ecb90612e33565b8015610f185780601f10610eed57610100808354040283529160200191610f18565b820191906000526020600020905b815481529060010190602001808311610efb57829003601f168201915b5050505050905090565b610f2a61174a565b610f34600061198e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f6f90612e33565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9b90612e33565b8015610fe85780601f10610fbd57610100808354040283529160200191610fe8565b820191906000526020600020905b815481529060010190602001808311610fcb57829003601f168201915b5050505050905090565b600e5481565b611000611a54565b6611c37937e0800081600e546110146108a7565b1115611068573481836110279190612cff565b14611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90612b1e565b60405180910390fd5b5b600f60009054906101000a900460ff166110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90612b5e565b60405180910390fd5b82600d54816110c46108a7565b6110ce9190612c78565b111561110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690612a9e565b60405180910390fd5b836003811115611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90612abe565b60405180910390fd5b61115e3386611aa4565b5050505061116a611ac2565b50565b806007600061117a6118b7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112276118b7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161126c9190612a41565b60405180910390a35050565b6112838484846108d1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112c4576112ae84848484611acc565b6112c3576112c263d1a57ed660e01b611611565b5b5b50505050565b600381565b60606112da826115b2565b611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090612ade565b60405180910390fd5b600b61133060018461132b9190612c78565b611c0b565b604051602001611341929190612977565b6040516020818303038152906040529050919050565b600d5481565b61136561174a565b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff16801561147957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161141191906129b1565b60206040518083038186803b15801561142957600080fd5b505afa15801561143d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146191906125ba565b73ffffffffffffffffffffffffffffffffffffffff16145b15611488576001915050611496565b6114928484611ce3565b9150505b92915050565b6114a461174a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90612a7e565b60405180910390fd5b61151d8161198e565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061157b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806115ab5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000816115bd6117c8565b111580156115cc575060005482105b801561160a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b8060005260046000fd5b600061162683610de6565b905081801561166857508073ffffffffffffffffffffffffffffffffffffffff1661164f6118b7565b73ffffffffffffffffffffffffffffffffffffffff1614155b156116945761167e816116796118b7565b611382565b6116935761169263cfb3b94260e01b611611565b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b611752611d77565b73ffffffffffffffffffffffffffffffffffffffff16611770610f36565b73ffffffffffffffffffffffffffffffffffffffff16146117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd90612afe565b60405180910390fd5b565b600090565b6000816117d86117c8565b1161187a576004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561187957600081141561187457600054821061183e5761183d63df2d9b4260e01b611611565b5b5b6004600083600190039350838152602001908152602001600020549050600081141561186a5761186f565b61188b565b61183f565b61188b565b5b61188a63df2d9b4260e01b611611565b5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611920868684611d7f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600081836119709190612cff565b905092915050565b600081836119869190612cce565b905092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60026009541415611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190612b3e565b60405180910390fd5b6002600981905550565b611abe828260405180602001604052806000815250611d88565b5050565b6001600981905550565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611af26118b7565b8786866040518563ffffffff1660e01b8152600401611b1494939291906129cc565b602060405180830381600087803b158015611b2e57600080fd5b505af1925050508015611b5f57506040513d601f19601f82011682018060405250810190611b5c9190612560565b60015b611bb8573d8060008114611b8f576040519150601f19603f3d011682016040523d82523d6000602084013e611b94565b606091505b50600081511415611bb057611baf63d1a57ed660e01b611611565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001611c1a84611e0d565b01905060008167ffffffffffffffff811115611c3957611c38612f23565b5b6040519080825280601f01601f191660200182016040528015611c6b5781602001600182028036833780820191505090505b509050600082602001820190505b600115611cd8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611cc257611cc1612ec5565b5b0494506000851415611cd357611cd8565b611c79565b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b60009392505050565b611d928383611f60565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0857600080549050600083820390505b611dd26000868380600101945086611acc565b611de757611de663d1a57ed660e01b611611565b5b818110611dbf578160005414611e0557611e04600060e01b611611565b5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611e6b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611e6157611e60612ec5565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611ea8576d04ee2d6d415b85acef81000000008381611e9e57611e9d612ec5565b5b0492506020810190505b662386f26fc100008310611ed757662386f26fc100008381611ecd57611ecc612ec5565b5b0492506010810190505b6305f5e1008310611f00576305f5e1008381611ef657611ef5612ec5565b5b0492506008810190505b6127108310611f25576127108381611f1b57611f1a612ec5565b5b0492506004810190505b60648310611f485760648381611f3e57611f3d612ec5565b5b0492506002810190505b600a8310611f57576001810190505b80915050919050565b6000805490506000821415611f8057611f7f63b562e8dd60e01b611611565b5b611f8d6000848385611903565b611fad83611f9e6000866000611909565b611fa7856120c6565b17611931565b6004600083815260200190815260200160002081905550600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff16169050600081141561206657612065632e07630060e01b611611565b5b6000838301905060008390505b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48181600101915081141561207357816000819055505050506120c1600084838561195c565b505050565b60006001821460e11b9050919050565b8280546120e290612e33565b90600052602060002090601f016020900481019282612104576000855561214b565b82601f1061211d57805160ff191683800117855561214b565b8280016001018555821561214b579182015b8281111561214a57825182559160200191906001019061212f565b5b509050612158919061215c565b5090565b5b8082111561217557600081600090555060010161215d565b5090565b600061218c61218784612bbe565b612b99565b9050828152602081018484840111156121a8576121a7612f57565b5b6121b3848285612df1565b509392505050565b60006121ce6121c984612bef565b612b99565b9050828152602081018484840111156121ea576121e9612f57565b5b6121f5848285612df1565b509392505050565b60008135905061220c81613183565b92915050565b6000813590506122218161319a565b92915050565b6000815190506122368161319a565b92915050565b60008135905061224b816131b1565b92915050565b600081519050612260816131b1565b92915050565b600082601f83011261227b5761227a612f52565b5b813561228b848260208601612179565b91505092915050565b6000813590506122a3816131c8565b92915050565b6000815190506122b8816131df565b92915050565b600082601f8301126122d3576122d2612f52565b5b81356122e38482602086016121bb565b91505092915050565b6000813590506122fb816131f6565b92915050565b600081519050612310816131f6565b92915050565b60006020828403121561232c5761232b612f61565b5b600061233a848285016121fd565b91505092915050565b6000806040838503121561235a57612359612f61565b5b6000612368858286016121fd565b9250506020612379858286016121fd565b9150509250929050565b60008060006060848603121561239c5761239b612f61565b5b60006123aa868287016121fd565b93505060206123bb868287016121fd565b92505060406123cc868287016122ec565b9150509250925092565b600080600080608085870312156123f0576123ef612f61565b5b60006123fe878288016121fd565b945050602061240f878288016121fd565b9350506040612420878288016122ec565b925050606085013567ffffffffffffffff81111561244157612440612f5c565b5b61244d87828801612266565b91505092959194509250565b600080604083850312156124705761246f612f61565b5b600061247e858286016121fd565b925050602061248f85828601612212565b9150509250929050565b600080604083850312156124b0576124af612f61565b5b60006124be858286016121fd565b92505060206124cf858286016122ec565b9150509250929050565b6000602082840312156124ef576124ee612f61565b5b60006124fd84828501612212565b91505092915050565b60006020828403121561251c5761251b612f61565b5b600061252a84828501612227565b91505092915050565b60006020828403121561254957612548612f61565b5b60006125578482850161223c565b91505092915050565b60006020828403121561257657612575612f61565b5b600061258484828501612251565b91505092915050565b6000602082840312156125a3576125a2612f61565b5b60006125b184828501612294565b91505092915050565b6000602082840312156125d0576125cf612f61565b5b60006125de848285016122a9565b91505092915050565b6000602082840312156125fd576125fc612f61565b5b600082013567ffffffffffffffff81111561261b5761261a612f5c565b5b612627848285016122be565b91505092915050565b60006020828403121561264657612645612f61565b5b6000612654848285016122ec565b91505092915050565b60006020828403121561267357612672612f61565b5b600061268184828501612301565b91505092915050565b600080604083850312156126a1576126a0612f61565b5b60006126af858286016122ec565b92505060206126c0858286016122ec565b9150509250929050565b6126d381612d59565b82525050565b6126e281612d6b565b82525050565b60006126f382612c35565b6126fd8185612c4b565b935061270d818560208601612e00565b61271681612f66565b840191505092915050565b600061272c82612c40565b6127368185612c5c565b9350612746818560208601612e00565b61274f81612f66565b840191505092915050565b600061276582612c40565b61276f8185612c6d565b935061277f818560208601612e00565b80840191505092915050565b6000815461279881612e33565b6127a28186612c6d565b945060018216600081146127bd57600181146127ce57612801565b60ff19831686528186019350612801565b6127d785612c20565b60005b838110156127f9578154818901526001820191506020810190506127da565b838801955050505b50505092915050565b6000612817602683612c5c565b915061282282612f77565b604082019050919050565b600061283a602283612c5c565b915061284582612fc6565b604082019050919050565b600061285d602283612c5c565b915061286882613015565b604082019050919050565b6000612880601183612c5c565b915061288b82613064565b602082019050919050565b60006128a3600583612c6d565b91506128ae8261308d565b600582019050919050565b60006128c6602083612c5c565b91506128d1826130b6565b602082019050919050565b60006128e9601883612c5c565b91506128f4826130df565b602082019050919050565b600061290c601f83612c5c565b915061291782613108565b602082019050919050565b600061292f601783612c5c565b915061293a82613131565b602082019050919050565b6000612952600183612c6d565b915061295d8261315a565b600182019050919050565b61297181612de7565b82525050565b6000612983828561278b565b915061298e82612945565b915061299a828461275a565b91506129a582612896565b91508190509392505050565b60006020820190506129c660008301846126ca565b92915050565b60006080820190506129e160008301876126ca565b6129ee60208301866126ca565b6129fb6040830185612968565b8181036060830152612a0d81846126e8565b905095945050505050565b6000604082019050612a2d60008301856126ca565b612a3a6020830184612968565b9392505050565b6000602082019050612a5660008301846126d9565b92915050565b60006020820190508181036000830152612a768184612721565b905092915050565b60006020820190508181036000830152612a978161280a565b9050919050565b60006020820190508181036000830152612ab78161282d565b9050919050565b60006020820190508181036000830152612ad781612850565b9050919050565b60006020820190508181036000830152612af781612873565b9050919050565b60006020820190508181036000830152612b17816128b9565b9050919050565b60006020820190508181036000830152612b37816128dc565b9050919050565b60006020820190508181036000830152612b57816128ff565b9050919050565b60006020820190508181036000830152612b7781612922565b9050919050565b6000602082019050612b936000830184612968565b92915050565b6000612ba3612bb4565b9050612baf8282612e65565b919050565b6000604051905090565b600067ffffffffffffffff821115612bd957612bd8612f23565b5b612be282612f66565b9050602081019050919050565b600067ffffffffffffffff821115612c0a57612c09612f23565b5b612c1382612f66565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c8382612de7565b9150612c8e83612de7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cc357612cc2612e96565b5b828201905092915050565b6000612cd982612de7565b9150612ce483612de7565b925082612cf457612cf3612ec5565b5b828204905092915050565b6000612d0a82612de7565b9150612d1583612de7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d4e57612d4d612e96565b5b828202905092915050565b6000612d6482612dc7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000612dae82612d59565b9050919050565b6000612dc082612d59565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e1e578082015181840152602081019050612e03565b83811115612e2d576000848401525b50505050565b60006002820490506001821680612e4b57607f821691505b60208210811415612e5f57612e5e612ef4565b5b50919050565b612e6e82612f66565b810181811067ffffffffffffffff82111715612e8d57612e8c612f23565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61318c81612d59565b811461319757600080fd5b50565b6131a381612d6b565b81146131ae57600080fd5b50565b6131ba81612d77565b81146131c557600080fd5b50565b6131d181612da3565b81146131dc57600080fd5b50565b6131e881612db5565b81146131f357600080fd5b50565b6131ff81612de7565b811461320a57600080fd5b5056fea26469706673582212203f6b7960d070e48534da0de49ab57affd6954600f98fe6b3d80e44e06274680064736f6c63430008070033

Deployed Bytecode Sourcemap

107084:5700:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110973:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19395:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107620:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25822:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25539:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110241:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15137:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107724:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29470:3523;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110073:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112463:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;110390:143;;;;;;;;;;;;;:::i;:::-;;33089:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110541:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109675:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20797:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16321:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109511:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76314:103;;;;;;;;;;;;;:::i;:::-;;75666:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19571:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107682:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108995:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26389:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33880:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;107530:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;112090:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107581:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109899:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;111402:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76572:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110973:292;111121:4;111178:26;111163:41;;;:11;:41;;;;:94;;;;111221:36;111245:11;111221:23;:36::i;:::-;111163:94;111143:114;;110973:292;;;:::o;19395:100::-;19449:13;19482:5;19475:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19395:100;:::o;107620:55::-;107664:11;107620:55;:::o;25822:227::-;25898:7;25923:16;25931:7;25923;:16::i;:::-;25918:73;;25941:50;25949:41;;;25941:7;:50::i;:::-;25918:73;26011:15;:24;26027:7;26011:24;;;;;;;;;;;:30;;;;;;;;;;;;26004:37;;25822:227;;;:::o;25539:124::-;25628:27;25637:2;25641:7;25650:4;25628:8;:27::i;:::-;25539:124;;:::o;110241:139::-;75552:13;:11;:13::i;:::-;110359::::1;110342:14;:30;;;;110241:139:::0;:::o;15137:323::-;15198:7;15426:15;:13;:15::i;:::-;15411:12;;15395:13;;:28;:46;15388:53;;15137:323;:::o;107724:37::-;;;;;;;;;;;;;:::o;29470:3523::-;29612:27;29642;29661:7;29642:18;:27::i;:::-;29612:57;;11938:14;29813:4;29797:22;;:41;29774:66;;29898:4;29857:45;;29873:19;29857:45;;;29853:95;;29904:44;29912:35;;;29904:7;:44::i;:::-;29853:95;29962:27;29991:23;30018:35;30045:7;30018:26;:35::i;:::-;29961:92;;;;30153:68;30178:15;30195:4;30201:19;:17;:19::i;:::-;30153:24;:68::i;:::-;30148:189;;30241:43;30258:4;30264:19;:17;:19::i;:::-;30241:16;:43::i;:::-;30236:101;;30286:51;30294:42;;;30286:7;:51::i;:::-;30236:101;30148:189;30350:43;30372:4;30378:2;30382:7;30391:1;30350:21;:43::i;:::-;30486:15;30483:160;;;30626:1;30605:19;30598:30;30483:160;31023:18;:24;31042:4;31023:24;;;;;;;;;;;;;;;;31021:26;;;;;;;;;;;;31092:18;:22;31111:2;31092:22;;;;;;;;;;;;;;;;31090:24;;;;;;;;;;;31414:146;31451:2;31500:45;31515:4;31521:2;31525:19;31500:14;:45::i;:::-;11536:8;31472:73;31414:18;:146::i;:::-;31385:17;:26;31403:7;31385:26;;;;;;;;;;;:175;;;;31731:1;11536:8;31680:19;:47;:52;31676:627;;;31753:19;31785:1;31775:7;:11;31753:33;;31942:1;31908:17;:30;31926:11;31908:30;;;;;;;;;;;;:35;31904:384;;;32046:13;;32031:11;:28;32027:242;;32226:19;32193:17;:30;32211:11;32193:30;;;;;;;;;;;:52;;;;32027:242;31904:384;31734:569;31676:627;32416:16;11938:14;32451:2;32435:20;;:39;32416:58;;32815:7;32779:8;32745:4;32687:25;32632:1;32575;32552:299;32888:1;32876:8;:13;32872:58;;;32891:39;32899:30;;;32891:7;:39::i;:::-;32872:58;32943:42;32964:4;32970:2;32974:7;32983:1;32943:20;:42::i;:::-;29601:3392;;;;29470:3523;;;:::o;110073:158::-;75552:13;:11;:13::i;:::-;110204:19:::1;110183:18;;:40;;;;;;;;;;;;;;;;;;110073:158:::0;:::o;112463:318::-;112588:16;112606:21;112653:16;112661:7;112653;:16::i;:::-;112645:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;112720:4;112727:45;112740:26;112753:9;112764:1;112740:12;:26::i;:::-;112768:3;112727:12;:45::i;:::-;112704:69;;;;112463:318;;;;;:::o;110390:143::-;75552:13;:11;:13::i;:::-;110438:15:::1;110456:21;110438:39;;110496:10;110488:28;;:37;110517:7;110488:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;110427:106;110390:143::o:0;33089:193::-;33235:39;33252:4;33258:2;33262:7;33235:39;;;;;;;;;;;;:16;:39::i;:::-;33089:193;;;:::o;110541:168::-;75552:13;:11;:13::i;:::-;110607:15:::1;110625:5;:15;;;110649:4;110625:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;110607:48;;110666:5;:14;;;110681:10;110693:7;110666:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;110596:113;110541:168:::0;:::o;109675:100::-;75552:13;:11;:13::i;:::-;109759:8:::1;109749:7;:18;;;;;;;;;;;;:::i;:::-;;109675:100:::0;:::o;20797:152::-;20869:7;20912:27;20931:7;20912:18;:27::i;:::-;20889:52;;20797:152;;;:::o;16321:242::-;16393:7;16434:1;16417:19;;:5;:19;;;16413:69;;;16438:44;16446:35;;;16438:7;:44::i;:::-;16413:69;10480:13;16500:18;:25;16519:5;16500:25;;;;;;;;;;;;;;;;:55;16493:62;;16321:242;;;:::o;109511:93::-;109556:13;109589:7;109582:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109511:93;:::o;76314:103::-;75552:13;:11;:13::i;:::-;76379:30:::1;76406:1;76379:18;:30::i;:::-;76314:103::o:0;75666:87::-;75712:7;75739:6;;;;;;;;;;;75732:13;;75666:87;:::o;19571:104::-;19627:13;19660:7;19653:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19571:104;:::o;107682:34::-;;;;:::o;108995:321::-;97703:21;:19;:21::i;:::-;107664:11:::1;109135:14;108693;;108679:13;:11;:13::i;:::-;:28;108676:166;;;108769:9;108750:14;108742:5;:22;;;;:::i;:::-;108741:37;108719:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;108676:166;107891:18:::2;;;;;;;;;;;107883:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;109198:14:::3;108302:9;;108267:14;108251:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;108229:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;109237:14:::4;107573:1;108049:14;:34;;108027:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;109271:37:::5;109281:10;109293:14;109271:9;:37::i;:::-;108384:1:::4;107948::::3;97735::::1;;97747:20:::0;:18;:20::i;:::-;108995:321;:::o;26389:234::-;26536:8;26484:18;:39;26503:19;:17;:19::i;:::-;26484:39;;;;;;;;;;;;;;;:49;26524:8;26484:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26596:8;26560:55;;26575:19;:17;:19::i;:::-;26560:55;;;26606:8;26560:55;;;;;;:::i;:::-;;;;;;;;26389:234;;:::o;33880:416::-;34055:31;34068:4;34074:2;34078:7;34055:12;:31::i;:::-;34119:1;34101:2;:14;;;:19;34097:192;;34140:56;34171:4;34177:2;34181:7;34190:5;34140:30;:56::i;:::-;34135:154;;34217:56;34225:47;;;34217:7;:56::i;:::-;34135:154;34097:192;33880:416;;;;:::o;107530:44::-;107573:1;107530:44;:::o;112090:307::-;112208:13;112247:16;112255:7;112247;:16::i;:::-;112239:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;112342:7;112356:22;112365:1;112357:7;:9;;;;:::i;:::-;112356:20;:22::i;:::-;112325:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;112298:91;;112090:307;;;:::o;107581:30::-;;;;:::o;109899:166::-;75552:13;:11;:13::i;:::-;110036:21:::1;110013:20;;:44;;;;;;;;;;;;;;;;;;109899:166:::0;:::o;111402:617::-;111527:4;111692:27;111750;;;;;;;;;;;111692:96;;111817:20;;;;;;;;;;;:86;;;;;111895:8;111854:49;;111862:13;:21;;;111884:5;111862:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;111854:49;;;111817:86;111799:154;;;111937:4;111930:11;;;;;111799:154;111972:39;111995:5;112002:8;111972:22;:39::i;:::-;111965:46;;;111402:617;;;;;:::o;76572:201::-;75552:13;:11;:13::i;:::-;76681:1:::1;76661:22;;:8;:22;;;;76653:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;76737:28;76756:8;76737:18;:28::i;:::-;76572:201:::0;:::o;18493:639::-;18578:4;18917:10;18902:25;;:11;:25;;;;:102;;;;18994:10;18979:25;;:11;:25;;;;18902:102;:179;;;;19071:10;19056:25;;:11;:25;;;;18902:179;18882:199;;18493:639;;;:::o;27202:282::-;27267:4;27323:7;27304:15;:13;:15::i;:::-;:26;;:66;;;;;27357:13;;27347:7;:23;27304:66;:153;;;;;27456:1;11256:8;27408:17;:26;27426:7;27408:26;;;;;;;;;;;;:44;:49;27304:153;27284:173;;27202:282;;;:::o;52894:165::-;52995:13;52989:4;52982:27;53036:4;53030;53023:18;44327:474;44456:13;44472:16;44480:7;44472;:16::i;:::-;44456:32;;44505:13;:45;;;;;44545:5;44522:28;;:19;:17;:19::i;:::-;:28;;;;44505:45;44501:201;;;44570:44;44587:5;44594:19;:17;:19::i;:::-;44570:16;:44::i;:::-;44565:137;;44635:51;44643:42;;;44635:7;:51::i;:::-;44565:137;44501:201;44747:2;44714:15;:24;44730:7;44714:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44785:7;44781:2;44765:28;;44774:5;44765:28;;;;;;;;;;;;44445:356;44327:474;;;:::o;75831:132::-;75906:12;:10;:12::i;:::-;75895:23;;:7;:5;:7::i;:::-;:23;;;75887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75831:132::o;14653:92::-;14709:7;14653:92;:::o;21952:1730::-;22019:14;22069:7;22050:15;:13;:15::i;:::-;:26;22046:1571;;22102:17;:26;22120:7;22102:26;;;;;;;;;;;;22093:35;;22206:1;11256:8;22178:6;:24;:29;22174:1432;;;22327:1;22317:6;:11;22313:990;;;22368:13;;22357:7;:24;22353:77;;22383:47;22391:38;;;22383:7;:47::i;:::-;22353:77;23027:257;23113:17;:28;23131:9;;;;;;;23113:28;;;;;;;;;;;;23104:37;;23209:1;23199:6;:11;23195:25;;;23212:8;;23195:25;23247:13;;23027:257;;;22313:990;23577:13;;22174:1432;22046:1571;23627:47;23635:38;;;23627:7;:47::i;:::-;21952:1730;;;;:::o;28365:485::-;28467:27;28496:23;28537:38;28578:15;:24;28594:7;28578:24;;;;;;;;;;;28537:65;;28755:18;28732:41;;28812:19;28806:26;28787:45;;28717:126;28365:485;;;:::o;50875:105::-;50935:7;50962:10;50955:17;;50875:105;:::o;27593:659::-;27742:11;27907:16;27900:5;27896:28;27887:37;;28067:16;28056:9;28052:32;28039:45;;28217:15;28206:9;28203:30;28195:5;28184:9;28181:20;28178:56;28168:66;;27593:659;;;;;:::o;34958:159::-;;;;;:::o;50184:311::-;50319:7;50339:16;11660:3;50365:19;:41;;50339:68;;11660:3;50433:31;50444:4;50450:2;50454:9;50433:10;:31::i;:::-;50425:40;;:62;;50418:69;;;50184:311;;;;;:::o;24230:450::-;24310:14;24478:16;24471:5;24467:28;24458:37;;24655:5;24641:11;24616:23;24612:41;24609:52;24602:5;24599:63;24589:73;;24230:450;;;;:::o;35782:158::-;;;;;:::o;103383:98::-;103441:7;103472:1;103468;:5;;;;:::i;:::-;103461:12;;103383:98;;;;:::o;103782:::-;103840:7;103871:1;103867;:5;;;;:::i;:::-;103860:12;;103782:98;;;;:::o;76933:191::-;77007:16;77026:6;;;;;;;;;;;77007:25;;77052:8;77043:6;;:17;;;;;;;;;;;;;;;;;;77107:8;77076:40;;77097:8;77076:40;;;;;;;;;;;;76996:128;76933:191;:::o;97783:293::-;97185:1;97917:7;;:19;;97909:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;97185:1;98050:7;:18;;;;97783:293::o;43409:112::-;43486:27;43496:2;43500:8;43486:27;;;;;;;;;;;;:9;:27::i;:::-;43409:112;;:::o;98084:213::-;97141:1;98267:7;:22;;;;98084:213::o;36380:691::-;36543:4;36589:2;36564:45;;;36610:19;:17;:19::i;:::-;36631:4;36637:7;36646:5;36564:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36560:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36864:1;36847:6;:13;:18;36843:115;;;36886:56;36894:47;;;36886:7;:56::i;:::-;36843:115;37030:6;37024:13;37015:6;37011:2;37007:15;37000:38;36560:504;36733:54;;;36723:64;;;:6;:64;;;;36716:71;;;36380:691;;;;;;:::o;90436:716::-;90492:13;90543:14;90580:1;90560:17;90571:5;90560:10;:17::i;:::-;:21;90543:38;;90596:20;90630:6;90619:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90596:41;;90652:11;90781:6;90777:2;90773:15;90765:6;90761:28;90754:35;;90818:288;90825:4;90818:288;;;90850:5;;;;;;;;90992:8;90987:2;90980:5;90976:14;90971:30;90966:3;90958:44;91048:2;91039:11;;;;;;:::i;:::-;;;;;91082:1;91073:5;:10;91069:21;;;91085:5;;91069:21;90818:288;;;91127:6;91120:13;;;;;90436:716;;;:::o;26780:164::-;26877:4;26901:18;:25;26920:5;26901:25;;;;;;;;;;;;;;;:35;26927:8;26901:35;;;;;;;;;;;;;;;;;;;;;;;;;26894:42;;26780:164;;;;:::o;74217:98::-;74270:7;74297:10;74290:17;;74217:98;:::o;49885:147::-;50022:6;49885:147;;;;;:::o;42617:708::-;42748:19;42754:2;42758:8;42748:5;:19::i;:::-;42827:1;42809:2;:14;;;:19;42805:502;;42849:11;42863:13;;42849:27;;42895:13;42917:8;42911:3;:14;42895:30;;42944:242;42975:62;43014:1;43018:2;43022:7;;;;;;43031:5;42975:30;:62::i;:::-;42970:176;;43066:56;43074:47;;;43066:7;:56::i;:::-;42970:176;43181:3;43173:5;:11;42944:242;;43268:3;43251:13;;:20;43247:44;;43273:18;43288:1;43281:9;;43273:7;:18::i;:::-;43247:44;42830:477;;42805:502;42617:708;;;:::o;87302:922::-;87355:7;87375:14;87392:1;87375:18;;87442:6;87433:5;:15;87429:102;;87478:6;87469:15;;;;;;:::i;:::-;;;;;87513:2;87503:12;;;;87429:102;87558:6;87549:5;:15;87545:102;;87594:6;87585:15;;;;;;:::i;:::-;;;;;87629:2;87619:12;;;;87545:102;87674:6;87665:5;:15;87661:102;;87710:6;87701:15;;;;;;:::i;:::-;;;;;87745:2;87735:12;;;;87661:102;87790:5;87781;:14;87777:99;;87825:5;87816:14;;;;;;:::i;:::-;;;;;87859:1;87849:11;;;;87777:99;87903:5;87894;:14;87890:99;;87938:5;87929:14;;;;;;:::i;:::-;;;;;87972:1;87962:11;;;;87890:99;88016:5;88007;:14;88003:99;;88051:5;88042:14;;;;;;:::i;:::-;;;;;88085:1;88075:11;;;;88003:99;88129:5;88120;:14;88116:66;;88165:1;88155:11;;;;88116:66;88210:6;88203:13;;;87302:922;;;:::o;37533:2305::-;37606:20;37629:13;;37606:36;;37669:1;37657:8;:13;37653:53;;;37672:34;37680:25;;;37672:7;:34::i;:::-;37653:53;37719:61;37749:1;37753:2;37757:12;37771:8;37719:21;:61::i;:::-;38253:139;38290:2;38344:33;38367:1;38371:2;38375:1;38344:14;:33::i;:::-;38311:30;38332:8;38311:20;:30::i;:::-;:66;38253:18;:139::i;:::-;38219:17;:31;38237:12;38219:31;;;;;;;;;;;:173;;;;38679:1;10618:2;38649:1;:26;;38648:32;38636:8;:45;38610:18;:22;38629:2;38610:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38792:16;11938:14;38827:2;38811:20;;:39;38792:58;;38883:1;38871:8;:13;38867:54;;;38886:35;38894:26;;;38886:7;:35::i;:::-;38867:54;38938:11;38967:8;38952:12;:23;38938:37;;38990:15;39008:12;38990:30;;39037:676;39456:7;39412:8;39367:1;39301:25;39238:1;39173;39142:358;39708:3;39695:9;;;;;;:16;;39037:676;;39745:3;39729:13;:19;;;;37968:1792;;;39770:60;39799:1;39803:2;39807:12;39821:8;39770:20;:60::i;:::-;37595:2243;37533:2305;;:::o;24782:324::-;24852:14;25085:1;25075:8;25072:15;25046:24;25042:46;25032:56;;24782:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1915:169::-;1976:5;2014:6;2001:20;1992:29;;2030:48;2072:5;2030:48;:::i;:::-;1915:169;;;;:::o;2090:201::-;2176:5;2207:6;2201:13;2192:22;;2223:62;2279:5;2223:62;:::i;:::-;2090:201;;;;:::o;2311:340::-;2367:5;2416:3;2409:4;2401:6;2397:17;2393:27;2383:122;;2424:79;;:::i;:::-;2383:122;2541:6;2528:20;2566:79;2641:3;2633:6;2626:4;2618:6;2614:17;2566:79;:::i;:::-;2557:88;;2373:278;2311:340;;;;:::o;2657:139::-;2703:5;2741:6;2728:20;2719:29;;2757:33;2784:5;2757:33;:::i;:::-;2657:139;;;;:::o;2802:143::-;2859:5;2890:6;2884:13;2875:22;;2906:33;2933:5;2906:33;:::i;:::-;2802:143;;;;:::o;2951:329::-;3010:6;3059:2;3047:9;3038:7;3034:23;3030:32;3027:119;;;3065:79;;:::i;:::-;3027:119;3185:1;3210:53;3255:7;3246:6;3235:9;3231:22;3210:53;:::i;:::-;3200:63;;3156:117;2951:329;;;;:::o;3286:474::-;3354:6;3362;3411:2;3399:9;3390:7;3386:23;3382:32;3379:119;;;3417:79;;:::i;:::-;3379:119;3537:1;3562:53;3607:7;3598:6;3587:9;3583:22;3562:53;:::i;:::-;3552:63;;3508:117;3664:2;3690:53;3735:7;3726:6;3715:9;3711:22;3690:53;:::i;:::-;3680:63;;3635:118;3286:474;;;;;:::o;3766:619::-;3843:6;3851;3859;3908:2;3896:9;3887:7;3883:23;3879:32;3876:119;;;3914:79;;:::i;:::-;3876:119;4034:1;4059:53;4104:7;4095:6;4084:9;4080:22;4059:53;:::i;:::-;4049:63;;4005:117;4161:2;4187:53;4232:7;4223:6;4212:9;4208:22;4187:53;:::i;:::-;4177:63;;4132:118;4289:2;4315:53;4360:7;4351:6;4340:9;4336:22;4315:53;:::i;:::-;4305:63;;4260:118;3766:619;;;;;:::o;4391:943::-;4486:6;4494;4502;4510;4559:3;4547:9;4538:7;4534:23;4530:33;4527:120;;;4566:79;;:::i;:::-;4527:120;4686:1;4711:53;4756:7;4747:6;4736:9;4732:22;4711:53;:::i;:::-;4701:63;;4657:117;4813:2;4839:53;4884:7;4875:6;4864:9;4860:22;4839:53;:::i;:::-;4829:63;;4784:118;4941:2;4967:53;5012:7;5003:6;4992:9;4988:22;4967:53;:::i;:::-;4957:63;;4912:118;5097:2;5086:9;5082:18;5069:32;5128:18;5120:6;5117:30;5114:117;;;5150:79;;:::i;:::-;5114:117;5255:62;5309:7;5300:6;5289:9;5285:22;5255:62;:::i;:::-;5245:72;;5040:287;4391:943;;;;;;;:::o;5340:468::-;5405:6;5413;5462:2;5450:9;5441:7;5437:23;5433:32;5430:119;;;5468:79;;:::i;:::-;5430:119;5588:1;5613:53;5658:7;5649:6;5638:9;5634:22;5613:53;:::i;:::-;5603:63;;5559:117;5715:2;5741:50;5783:7;5774:6;5763:9;5759:22;5741:50;:::i;:::-;5731:60;;5686:115;5340:468;;;;;:::o;5814:474::-;5882:6;5890;5939:2;5927:9;5918:7;5914:23;5910:32;5907:119;;;5945:79;;:::i;:::-;5907:119;6065:1;6090:53;6135:7;6126:6;6115:9;6111:22;6090:53;:::i;:::-;6080:63;;6036:117;6192:2;6218:53;6263:7;6254:6;6243:9;6239:22;6218:53;:::i;:::-;6208:63;;6163:118;5814:474;;;;;:::o;6294:323::-;6350:6;6399:2;6387:9;6378:7;6374:23;6370:32;6367:119;;;6405:79;;:::i;:::-;6367:119;6525:1;6550:50;6592:7;6583:6;6572:9;6568:22;6550:50;:::i;:::-;6540:60;;6496:114;6294:323;;;;:::o;6623:345::-;6690:6;6739:2;6727:9;6718:7;6714:23;6710:32;6707:119;;;6745:79;;:::i;:::-;6707:119;6865:1;6890:61;6943:7;6934:6;6923:9;6919:22;6890:61;:::i;:::-;6880:71;;6836:125;6623:345;;;;:::o;6974:327::-;7032:6;7081:2;7069:9;7060:7;7056:23;7052:32;7049:119;;;7087:79;;:::i;:::-;7049:119;7207:1;7232:52;7276:7;7267:6;7256:9;7252:22;7232:52;:::i;:::-;7222:62;;7178:116;6974:327;;;;:::o;7307:349::-;7376:6;7425:2;7413:9;7404:7;7400:23;7396:32;7393:119;;;7431:79;;:::i;:::-;7393:119;7551:1;7576:63;7631:7;7622:6;7611:9;7607:22;7576:63;:::i;:::-;7566:73;;7522:127;7307:349;;;;:::o;7662:359::-;7736:6;7785:2;7773:9;7764:7;7760:23;7756:32;7753:119;;;7791:79;;:::i;:::-;7753:119;7911:1;7936:68;7996:7;7987:6;7976:9;7972:22;7936:68;:::i;:::-;7926:78;;7882:132;7662:359;;;;:::o;8027:409::-;8126:6;8175:2;8163:9;8154:7;8150:23;8146:32;8143:119;;;8181:79;;:::i;:::-;8143:119;8301:1;8326:93;8411:7;8402:6;8391:9;8387:22;8326:93;:::i;:::-;8316:103;;8272:157;8027:409;;;;:::o;8442:509::-;8511:6;8560:2;8548:9;8539:7;8535:23;8531:32;8528:119;;;8566:79;;:::i;:::-;8528:119;8714:1;8703:9;8699:17;8686:31;8744:18;8736:6;8733:30;8730:117;;;8766:79;;:::i;:::-;8730:117;8871:63;8926:7;8917:6;8906:9;8902:22;8871:63;:::i;:::-;8861:73;;8657:287;8442:509;;;;:::o;8957:329::-;9016:6;9065:2;9053:9;9044:7;9040:23;9036:32;9033:119;;;9071:79;;:::i;:::-;9033:119;9191:1;9216:53;9261:7;9252:6;9241:9;9237:22;9216:53;:::i;:::-;9206:63;;9162:117;8957:329;;;;:::o;9292:351::-;9362:6;9411:2;9399:9;9390:7;9386:23;9382:32;9379:119;;;9417:79;;:::i;:::-;9379:119;9537:1;9562:64;9618:7;9609:6;9598:9;9594:22;9562:64;:::i;:::-;9552:74;;9508:128;9292:351;;;;:::o;9649:474::-;9717:6;9725;9774:2;9762:9;9753:7;9749:23;9745:32;9742:119;;;9780:79;;:::i;:::-;9742:119;9900:1;9925:53;9970:7;9961:6;9950:9;9946:22;9925:53;:::i;:::-;9915:63;;9871:117;10027:2;10053:53;10098:7;10089:6;10078:9;10074:22;10053:53;:::i;:::-;10043:63;;9998:118;9649:474;;;;;:::o;10129:118::-;10216:24;10234:5;10216:24;:::i;:::-;10211:3;10204:37;10129:118;;:::o;10253:109::-;10334:21;10349:5;10334:21;:::i;:::-;10329:3;10322:34;10253:109;;:::o;10368:360::-;10454:3;10482:38;10514:5;10482:38;:::i;:::-;10536:70;10599:6;10594:3;10536:70;:::i;:::-;10529:77;;10615:52;10660:6;10655:3;10648:4;10641:5;10637:16;10615:52;:::i;:::-;10692:29;10714:6;10692:29;:::i;:::-;10687:3;10683:39;10676:46;;10458:270;10368:360;;;;:::o;10734:364::-;10822:3;10850:39;10883:5;10850:39;:::i;:::-;10905:71;10969:6;10964:3;10905:71;:::i;:::-;10898:78;;10985:52;11030:6;11025:3;11018:4;11011:5;11007:16;10985:52;:::i;:::-;11062:29;11084:6;11062:29;:::i;:::-;11057:3;11053:39;11046:46;;10826:272;10734:364;;;;:::o;11104:377::-;11210:3;11238:39;11271:5;11238:39;:::i;:::-;11293:89;11375:6;11370:3;11293:89;:::i;:::-;11286:96;;11391:52;11436:6;11431:3;11424:4;11417:5;11413:16;11391:52;:::i;:::-;11468:6;11463:3;11459:16;11452:23;;11214:267;11104:377;;;;:::o;11511:845::-;11614:3;11651:5;11645:12;11680:36;11706:9;11680:36;:::i;:::-;11732:89;11814:6;11809:3;11732:89;:::i;:::-;11725:96;;11852:1;11841:9;11837:17;11868:1;11863:137;;;;12014:1;12009:341;;;;11830:520;;11863:137;11947:4;11943:9;11932;11928:25;11923:3;11916:38;11983:6;11978:3;11974:16;11967:23;;11863:137;;12009:341;12076:38;12108:5;12076:38;:::i;:::-;12136:1;12150:154;12164:6;12161:1;12158:13;12150:154;;;12238:7;12232:14;12228:1;12223:3;12219:11;12212:35;12288:1;12279:7;12275:15;12264:26;;12186:4;12183:1;12179:12;12174:17;;12150:154;;;12333:6;12328:3;12324:16;12317:23;;12016:334;;11830:520;;11618:738;;11511:845;;;;:::o;12362:366::-;12504:3;12525:67;12589:2;12584:3;12525:67;:::i;:::-;12518:74;;12601:93;12690:3;12601:93;:::i;:::-;12719:2;12714:3;12710:12;12703:19;;12362:366;;;:::o;12734:::-;12876:3;12897:67;12961:2;12956:3;12897:67;:::i;:::-;12890:74;;12973:93;13062:3;12973:93;:::i;:::-;13091:2;13086:3;13082:12;13075:19;;12734:366;;;:::o;13106:::-;13248:3;13269:67;13333:2;13328:3;13269:67;:::i;:::-;13262:74;;13345:93;13434:3;13345:93;:::i;:::-;13463:2;13458:3;13454:12;13447:19;;13106:366;;;:::o;13478:::-;13620:3;13641:67;13705:2;13700:3;13641:67;:::i;:::-;13634:74;;13717:93;13806:3;13717:93;:::i;:::-;13835:2;13830:3;13826:12;13819:19;;13478:366;;;:::o;13850:400::-;14010:3;14031:84;14113:1;14108:3;14031:84;:::i;:::-;14024:91;;14124:93;14213:3;14124:93;:::i;:::-;14242:1;14237:3;14233:11;14226:18;;13850:400;;;:::o;14256:366::-;14398:3;14419:67;14483:2;14478:3;14419:67;:::i;:::-;14412:74;;14495:93;14584:3;14495:93;:::i;:::-;14613:2;14608:3;14604:12;14597:19;;14256:366;;;:::o;14628:::-;14770:3;14791:67;14855:2;14850:3;14791:67;:::i;:::-;14784:74;;14867:93;14956:3;14867:93;:::i;:::-;14985:2;14980:3;14976:12;14969:19;;14628:366;;;:::o;15000:::-;15142:3;15163:67;15227:2;15222:3;15163:67;:::i;:::-;15156:74;;15239:93;15328:3;15239:93;:::i;:::-;15357:2;15352:3;15348:12;15341:19;;15000:366;;;:::o;15372:::-;15514:3;15535:67;15599:2;15594:3;15535:67;:::i;:::-;15528:74;;15611:93;15700:3;15611:93;:::i;:::-;15729:2;15724:3;15720:12;15713:19;;15372:366;;;:::o;15744:400::-;15904:3;15925:84;16007:1;16002:3;15925:84;:::i;:::-;15918:91;;16018:93;16107:3;16018:93;:::i;:::-;16136:1;16131:3;16127:11;16120:18;;15744:400;;;:::o;16150:118::-;16237:24;16255:5;16237:24;:::i;:::-;16232:3;16225:37;16150:118;;:::o;16274:961::-;16653:3;16675:92;16763:3;16754:6;16675:92;:::i;:::-;16668:99;;16784:148;16928:3;16784:148;:::i;:::-;16777:155;;16949:95;17040:3;17031:6;16949:95;:::i;:::-;16942:102;;17061:148;17205:3;17061:148;:::i;:::-;17054:155;;17226:3;17219:10;;16274:961;;;;;:::o;17241:222::-;17334:4;17372:2;17361:9;17357:18;17349:26;;17385:71;17453:1;17442:9;17438:17;17429:6;17385:71;:::i;:::-;17241:222;;;;:::o;17469:640::-;17664:4;17702:3;17691:9;17687:19;17679:27;;17716:71;17784:1;17773:9;17769:17;17760:6;17716:71;:::i;:::-;17797:72;17865:2;17854:9;17850:18;17841:6;17797:72;:::i;:::-;17879;17947:2;17936:9;17932:18;17923:6;17879:72;:::i;:::-;17998:9;17992:4;17988:20;17983:2;17972:9;17968:18;17961:48;18026:76;18097:4;18088:6;18026:76;:::i;:::-;18018:84;;17469:640;;;;;;;:::o;18115:332::-;18236:4;18274:2;18263:9;18259:18;18251:26;;18287:71;18355:1;18344:9;18340:17;18331:6;18287:71;:::i;:::-;18368:72;18436:2;18425:9;18421:18;18412:6;18368:72;:::i;:::-;18115:332;;;;;:::o;18453:210::-;18540:4;18578:2;18567:9;18563:18;18555:26;;18591:65;18653:1;18642:9;18638:17;18629:6;18591:65;:::i;:::-;18453:210;;;;:::o;18669:313::-;18782:4;18820:2;18809:9;18805:18;18797:26;;18869:9;18863:4;18859:20;18855:1;18844:9;18840:17;18833:47;18897:78;18970:4;18961:6;18897:78;:::i;:::-;18889:86;;18669:313;;;;:::o;18988:419::-;19154:4;19192:2;19181:9;19177:18;19169:26;;19241:9;19235:4;19231:20;19227:1;19216:9;19212:17;19205:47;19269:131;19395:4;19269:131;:::i;:::-;19261:139;;18988:419;;;:::o;19413:::-;19579:4;19617:2;19606:9;19602:18;19594:26;;19666:9;19660:4;19656:20;19652:1;19641:9;19637:17;19630:47;19694:131;19820:4;19694:131;:::i;:::-;19686:139;;19413:419;;;:::o;19838:::-;20004:4;20042:2;20031:9;20027:18;20019:26;;20091:9;20085:4;20081:20;20077:1;20066:9;20062:17;20055:47;20119:131;20245:4;20119:131;:::i;:::-;20111:139;;19838:419;;;:::o;20263:::-;20429:4;20467:2;20456:9;20452:18;20444:26;;20516:9;20510:4;20506:20;20502:1;20491:9;20487:17;20480:47;20544:131;20670:4;20544:131;:::i;:::-;20536:139;;20263:419;;;:::o;20688:::-;20854:4;20892:2;20881:9;20877:18;20869:26;;20941:9;20935:4;20931:20;20927:1;20916:9;20912:17;20905:47;20969:131;21095:4;20969:131;:::i;:::-;20961:139;;20688:419;;;:::o;21113:::-;21279:4;21317:2;21306:9;21302:18;21294:26;;21366:9;21360:4;21356:20;21352:1;21341:9;21337:17;21330:47;21394:131;21520:4;21394:131;:::i;:::-;21386:139;;21113:419;;;:::o;21538:::-;21704:4;21742:2;21731:9;21727:18;21719:26;;21791:9;21785:4;21781:20;21777:1;21766:9;21762:17;21755:47;21819:131;21945:4;21819:131;:::i;:::-;21811:139;;21538:419;;;:::o;21963:::-;22129:4;22167:2;22156:9;22152:18;22144:26;;22216:9;22210:4;22206:20;22202:1;22191:9;22187:17;22180:47;22244:131;22370:4;22244:131;:::i;:::-;22236:139;;21963:419;;;:::o;22388:222::-;22481:4;22519:2;22508:9;22504:18;22496:26;;22532:71;22600:1;22589:9;22585:17;22576:6;22532:71;:::i;:::-;22388:222;;;;:::o;22616:129::-;22650:6;22677:20;;:::i;:::-;22667:30;;22706:33;22734:4;22726:6;22706:33;:::i;:::-;22616:129;;;:::o;22751:75::-;22784:6;22817:2;22811:9;22801:19;;22751:75;:::o;22832:307::-;22893:4;22983:18;22975:6;22972:30;22969:56;;;23005:18;;:::i;:::-;22969:56;23043:29;23065:6;23043:29;:::i;:::-;23035:37;;23127:4;23121;23117:15;23109:23;;22832:307;;;:::o;23145:308::-;23207:4;23297:18;23289:6;23286:30;23283:56;;;23319:18;;:::i;:::-;23283:56;23357:29;23379:6;23357:29;:::i;:::-;23349:37;;23441:4;23435;23431:15;23423:23;;23145:308;;;:::o;23459:141::-;23508:4;23531:3;23523:11;;23554:3;23551:1;23544:14;23588:4;23585:1;23575:18;23567:26;;23459:141;;;:::o;23606:98::-;23657:6;23691:5;23685:12;23675:22;;23606:98;;;:::o;23710:99::-;23762:6;23796:5;23790:12;23780:22;;23710:99;;;:::o;23815:168::-;23898:11;23932:6;23927:3;23920:19;23972:4;23967:3;23963:14;23948:29;;23815:168;;;;:::o;23989:169::-;24073:11;24107:6;24102:3;24095:19;24147:4;24142:3;24138:14;24123:29;;23989:169;;;;:::o;24164:148::-;24266:11;24303:3;24288:18;;24164:148;;;;:::o;24318:305::-;24358:3;24377:20;24395:1;24377:20;:::i;:::-;24372:25;;24411:20;24429:1;24411:20;:::i;:::-;24406:25;;24565:1;24497:66;24493:74;24490:1;24487:81;24484:107;;;24571:18;;:::i;:::-;24484:107;24615:1;24612;24608:9;24601:16;;24318:305;;;;:::o;24629:185::-;24669:1;24686:20;24704:1;24686:20;:::i;:::-;24681:25;;24720:20;24738:1;24720:20;:::i;:::-;24715:25;;24759:1;24749:35;;24764:18;;:::i;:::-;24749:35;24806:1;24803;24799:9;24794:14;;24629:185;;;;:::o;24820:348::-;24860:7;24883:20;24901:1;24883:20;:::i;:::-;24878:25;;24917:20;24935:1;24917:20;:::i;:::-;24912:25;;25105:1;25037:66;25033:74;25030:1;25027:81;25022:1;25015:9;25008:17;25004:105;25001:131;;;25112:18;;:::i;:::-;25001:131;25160:1;25157;25153:9;25142:20;;24820:348;;;;:::o;25174:96::-;25211:7;25240:24;25258:5;25240:24;:::i;:::-;25229:35;;25174:96;;;:::o;25276:90::-;25310:7;25353:5;25346:13;25339:21;25328:32;;25276:90;;;:::o;25372:149::-;25408:7;25448:66;25441:5;25437:78;25426:89;;25372:149;;;:::o;25527:111::-;25579:7;25608:24;25626:5;25608:24;:::i;:::-;25597:35;;25527:111;;;:::o;25644:125::-;25710:7;25739:24;25757:5;25739:24;:::i;:::-;25728:35;;25644:125;;;:::o;25775:126::-;25812:7;25852:42;25845:5;25841:54;25830:65;;25775:126;;;:::o;25907:77::-;25944:7;25973:5;25962:16;;25907:77;;;:::o;25990:154::-;26074:6;26069:3;26064;26051:30;26136:1;26127:6;26122:3;26118:16;26111:27;25990:154;;;:::o;26150:307::-;26218:1;26228:113;26242:6;26239:1;26236:13;26228:113;;;26327:1;26322:3;26318:11;26312:18;26308:1;26303:3;26299:11;26292:39;26264:2;26261:1;26257:10;26252:15;;26228:113;;;26359:6;26356:1;26353:13;26350:101;;;26439:1;26430:6;26425:3;26421:16;26414:27;26350:101;26199:258;26150:307;;;:::o;26463:320::-;26507:6;26544:1;26538:4;26534:12;26524:22;;26591:1;26585:4;26581:12;26612:18;26602:81;;26668:4;26660:6;26656:17;26646:27;;26602:81;26730:2;26722:6;26719:14;26699:18;26696:38;26693:84;;;26749:18;;:::i;:::-;26693:84;26514:269;26463:320;;;:::o;26789:281::-;26872:27;26894:4;26872:27;:::i;:::-;26864:6;26860:40;27002:6;26990:10;26987:22;26966:18;26954:10;26951:34;26948:62;26945:88;;;27013:18;;:::i;:::-;26945:88;27053:10;27049:2;27042:22;26832:238;26789:281;;:::o;27076:180::-;27124:77;27121:1;27114:88;27221:4;27218:1;27211:15;27245:4;27242:1;27235:15;27262:180;27310:77;27307:1;27300:88;27407:4;27404:1;27397:15;27431:4;27428:1;27421:15;27448:180;27496:77;27493:1;27486:88;27593:4;27590:1;27583:15;27617:4;27614:1;27607:15;27634:180;27682:77;27679:1;27672:88;27779:4;27776:1;27769:15;27803:4;27800:1;27793:15;27820:117;27929:1;27926;27919:12;27943:117;28052:1;28049;28042:12;28066:117;28175:1;28172;28165:12;28189:117;28298:1;28295;28288:12;28312:102;28353:6;28404:2;28400:7;28395:2;28388:5;28384:14;28380:28;28370:38;;28312:102;;;:::o;28420:225::-;28560:34;28556:1;28548:6;28544:14;28537:58;28629:8;28624:2;28616:6;28612:15;28605:33;28420:225;:::o;28651:221::-;28791:34;28787:1;28779:6;28775:14;28768:58;28860:4;28855:2;28847:6;28843:15;28836:29;28651:221;:::o;28878:::-;29018:34;29014:1;29006:6;29002:14;28995:58;29087:4;29082:2;29074:6;29070:15;29063:29;28878:221;:::o;29105:167::-;29245:19;29241:1;29233:6;29229:14;29222:43;29105:167;:::o;29278:155::-;29418:7;29414:1;29406:6;29402:14;29395:31;29278:155;:::o;29439:182::-;29579:34;29575:1;29567:6;29563:14;29556:58;29439:182;:::o;29627:174::-;29767:26;29763:1;29755:6;29751:14;29744:50;29627:174;:::o;29807:181::-;29947:33;29943:1;29935:6;29931:14;29924:57;29807:181;:::o;29994:173::-;30134:25;30130:1;30122:6;30118:14;30111:49;29994:173;:::o;30173:151::-;30313:3;30309:1;30301:6;30297:14;30290:27;30173:151;:::o;30330:122::-;30403:24;30421:5;30403:24;:::i;:::-;30396:5;30393:35;30383:63;;30442:1;30439;30432:12;30383:63;30330:122;:::o;30458:116::-;30528:21;30543:5;30528:21;:::i;:::-;30521:5;30518:32;30508:60;;30564:1;30561;30554:12;30508:60;30458:116;:::o;30580:120::-;30652:23;30669:5;30652:23;:::i;:::-;30645:5;30642:34;30632:62;;30690:1;30687;30680:12;30632:62;30580:120;:::o;30706:152::-;30794:39;30827:5;30794:39;:::i;:::-;30787:5;30784:50;30774:78;;30848:1;30845;30838:12;30774:78;30706:152;:::o;30864:180::-;30966:53;31013:5;30966:53;:::i;:::-;30959:5;30956:64;30946:92;;31034:1;31031;31024:12;30946:92;30864:180;:::o;31050:122::-;31123:24;31141:5;31123:24;:::i;:::-;31116:5;31113:35;31103:63;;31162:1;31159;31152:12;31103:63;31050:122;:::o

Swarm Source

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