ETH Price: $2,595.92 (+0.79%)

Token

TheFinalMoment (TFM)
 

Overview

Max Total Supply

772 TFM

Holders

754

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 TFM
0x0000000000000000000000000000000000000000
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:
TheFinalMoment

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-03-02
*/

// SPDX-License-Identifier: MIT

// What lies beyond the final breath,
// When all the pain has reached its max?


pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * 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();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    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 => address) private _tokenApprovals;

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Returns the auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

    /**
     * @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, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


pragma solidity ^0.8.0;


contract TheFinalMoment is ERC721A, Ownable {

    using Strings for uint256;
    string private baseURI;
    uint256 public price = 0.004 ether;
    uint256 public maxPerTx = 10;
    uint256 public maxFreePerWallet = 1;
    uint256 public totalFree = 7777;
    uint256 public maxSupply = 7777;

    bool public mintEnabled = false;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("TheFinalMoment", "TFM") {
        _safeMint(msg.sender, 10);
        setBaseURI("ipfs://tbd/");
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < maxSupply + 1, "No more left.");
        require(mintEnabled, "Mint is not live yet.");
        require(count < maxPerTx + 1, "Max per TX reached.");
        require(tx.origin == msg.sender, "Contracts not allowed to mint.");


        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660e35fa931a0000600a55600a600b556001600c55611e61600d55611e61600e556000600f60006101000a81548160ff0219169083151502179055503480156200004d57600080fd5b506040518060400160405280600e81526020017f54686546696e616c4d6f6d656e740000000000000000000000000000000000008152506040518060400160405280600381526020017f54464d00000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d2929190620007d0565b508060039080519060200190620000eb929190620007d0565b50620000fc6200018360201b60201c565b600081905550505062000124620001186200018860201b60201c565b6200019060201b60201c565b6200013733600a6200025660201b60201c565b6200017d6040518060400160405280600b81526020017f697066733a2f2f7462642f0000000000000000000000000000000000000000008152506200027c60201b60201c565b62000b54565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002788282604051806020016040528060008152506200032760201b60201c565b5050565b6200028c6200018860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b26200060c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200030b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030290620009a7565b60405180910390fd5b806009908051906020019062000323929190620007d0565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000395576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415620003d1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003e660008583866200063660201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000453600185146200063c60201b60201c565b901b60a042901b6200046b866200064660201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146200057c575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200052860008784806001019550876200065060201b60201c565b6200055f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620004b15782600054146200057657600080fd5b620005e8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200057d575b816000819055505050620006066000858386620007c260201b60201c565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200067e620007c860201b60201c565b8786866040518563ffffffff1660e01b8152600401620006a2949392919062000953565b602060405180830381600087803b158015620006bd57600080fd5b505af1925050508015620006f157506040513d601f19601f82011682018060405250810190620006ee919062000897565b60015b6200076f573d806000811462000724576040519150601f19603f3d011682016040523d82523d6000602084013e62000729565b606091505b5060008151141562000767576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620007de9062000a96565b90600052602060002090601f0160209004810192826200080257600085556200084e565b82601f106200081d57805160ff19168380011785556200084e565b828001600101855582156200084e579182015b828111156200084d57825182559160200191906001019062000830565b5b5090506200085d919062000861565b5090565b5b808211156200087c57600081600090555060010162000862565b5090565b600081519050620008918162000b3a565b92915050565b600060208284031215620008b057620008af62000afb565b5b6000620008c08482850162000880565b91505092915050565b620008d481620009f6565b82525050565b6000620008e782620009c9565b620008f38185620009d4565b93506200090581856020860162000a60565b620009108162000b00565b840191505092915050565b60006200092a602083620009e5565b9150620009378262000b11565b602082019050919050565b6200094d8162000a56565b82525050565b60006080820190506200096a6000830187620008c9565b620009796020830186620008c9565b62000988604083018562000942565b81810360608301526200099c8184620008da565b905095945050505050565b60006020820190508181036000830152620009c2816200091b565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000a038262000a36565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a8057808201518184015260208101905062000a63565b8381111562000a90576000848401525b50505050565b6000600282049050600182168062000aaf57607f821691505b6020821081141562000ac65762000ac562000acc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000b458162000a0a565b811462000b5157600080fd5b50565b61329a8062000b646000396000f3fe6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb01146105f9578063e985e9c514610624578063f2fde38b14610661578063f968adbe1461068a576101c2565b8063a70273571461053d578063b88d4fde14610568578063c87b56dd14610591578063d1239730146105ce576101c2565b806395d89b41116100d157806395d89b41146104a2578063a035b1fe146104cd578063a0712d68146104f8578063a22cb46514610514576101c2565b80638da5cb5b1461042557806391b7f5ed1461045057806392910eec14610479576101c2565b80633ccfd60b116101645780636352211e1161013e5780636352211e1461037d57806370a08231146103ba578063715018a6146103f75780637ba5e6211461040e576101c2565b80633ccfd60b1461031457806342842e0e1461032b57806355f804b314610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c0578063333e44e6146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906125ba565b6106b5565b6040516101fb9190612a05565b60405180910390f35b34801561021057600080fd5b50610219610747565b6040516102269190612a20565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061265d565b6107d9565b604051610263919061299e565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061257a565b610855565b005b3480156102a157600080fd5b506102aa6109fc565b6040516102b79190612b62565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612464565b610a13565b005b3480156102f557600080fd5b506102fe610a23565b60405161030b9190612b62565b60405180910390f35b34801561032057600080fd5b50610329610a29565b005b34801561033757600080fd5b50610352600480360381019061034d9190612464565b610b54565b005b34801561036057600080fd5b5061037b60048036038101906103769190612614565b610b74565b005b34801561038957600080fd5b506103a4600480360381019061039f919061265d565b610c0a565b6040516103b1919061299e565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc91906123f7565b610c1c565b6040516103ee9190612b62565b60405180910390f35b34801561040357600080fd5b5061040c610cd5565b005b34801561041a57600080fd5b50610423610d5d565b005b34801561043157600080fd5b5061043a610e05565b604051610447919061299e565b60405180910390f35b34801561045c57600080fd5b506104776004803603810190610472919061265d565b610e2f565b005b34801561048557600080fd5b506104a0600480360381019061049b919061265d565b610eb5565b005b3480156104ae57600080fd5b506104b7610f3b565b6040516104c49190612a20565b60405180910390f35b3480156104d957600080fd5b506104e2610fcd565b6040516104ef9190612b62565b60405180910390f35b610512600480360381019061050d919061265d565b610fd3565b005b34801561052057600080fd5b5061053b6004803603810190610536919061253a565b61128d565b005b34801561054957600080fd5b50610552611405565b60405161055f9190612b62565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a91906124b7565b61140b565b005b34801561059d57600080fd5b506105b860048036038101906105b3919061265d565b61147e565b6040516105c59190612a20565b60405180910390f35b3480156105da57600080fd5b506105e36114fa565b6040516105f09190612a05565b60405180910390f35b34801561060557600080fd5b5061060e61150d565b60405161061b9190612b62565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190612424565b611513565b6040516106589190612a05565b60405180910390f35b34801561066d57600080fd5b50610688600480360381019061068391906123f7565b6115a7565b005b34801561069657600080fd5b5061069f61169f565b6040516106ac9190612b62565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461075690612e32565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612e32565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e4826116a5565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086082611704565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e76117d2565b73ffffffffffffffffffffffffffffffffffffffff161461094a576109138161090e6117d2565b611513565b610949576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a066117da565b6001546000540303905090565b610a1e8383836117df565b505050565b600d5481565b610a31611b89565b73ffffffffffffffffffffffffffffffffffffffff16610a4f610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c90612ac2565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610acb90612989565b60006040518083038185875af1925050503d8060008114610b08576040519150601f19603f3d011682016040523d82523d6000602084013e610b0d565b606091505b5050905080610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890612b22565b60405180910390fd5b50565b610b6f8383836040518060200160405280600081525061140b565b505050565b610b7c611b89565b73ffffffffffffffffffffffffffffffffffffffff16610b9a610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790612ac2565b60405180910390fd5b8060099080519060200190610c0692919061220b565b5050565b6000610c1582611704565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c84576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cdd611b89565b73ffffffffffffffffffffffffffffffffffffffff16610cfb610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890612ac2565b60405180910390fd5b610d5b6000611b91565b565b610d65611b89565b73ffffffffffffffffffffffffffffffffffffffff16610d83610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090612ac2565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e37611b89565b73ffffffffffffffffffffffffffffffffffffffff16610e55610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290612ac2565b60405180910390fd5b80600a8190555050565b610ebd611b89565b73ffffffffffffffffffffffffffffffffffffffff16610edb610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890612ac2565b60405180910390fd5b80600d8190555050565b606060038054610f4a90612e32565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7690612e32565b8015610fc35780601f10610f9857610100808354040283529160200191610fc3565b820191906000526020600020905b815481529060010190602001808311610fa657829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610feb9190612c67565b83610ff46109fc565b610ffe9190612c67565b1080156110575750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110549190612c67565b11155b9050801561106457600091505b81836110709190612cee565b3410156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990612b02565b60405180910390fd5b6001600e546110c19190612c67565b836110ca6109fc565b6110d49190612c67565b10611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b90612a42565b60405180910390fd5b600f60009054906101000a900460ff16611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90612a82565b60405180910390fd5b6001600b546111729190612c67565b83106111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90612b42565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612aa2565b60405180910390fd5b801561127e5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112769190612c67565b925050819055505b6112883384611c57565b505050565b6112956117d2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113076117d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b46117d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113f99190612a05565b60405180910390a35050565b600c5481565b6114168484846117df565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114785761144184848484611c75565b611477576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611489826116a5565b6114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf90612ae2565b60405180910390fd5b60096114d383611dd5565b6040516020016114e492919061295a565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115af611b89565b73ffffffffffffffffffffffffffffffffffffffff166115cd610e05565b73ffffffffffffffffffffffffffffffffffffffff1614611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a90612ac2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90612a62565b60405180910390fd5b61169c81611b91565b50565b600b5481565b6000816116b06117da565b111580156116bf575060005482105b80156116fd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806117136117da565b1161179b5760005481101561179a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611798575b600081141561178e576004600083600190039350838152602001908152602001600020549050611763565b80925050506117cd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006117ea82611704565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611851576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118726117d2565b73ffffffffffffffffffffffffffffffffffffffff1614806118a157506118a08561189b6117d2565b611513565b5b806118e657506118af6117d2565b73ffffffffffffffffffffffffffffffffffffffff166118ce846107d9565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061191f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611986576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119938585856001611f36565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a9086611f3c565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611b1a576000600184019050600060046000838152602001908152602001600020541415611b18576000548114611b17578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b828585856001611f46565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c71828260405180602001604052806000815250611f4c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c9b6117d2565b8786866040518563ffffffff1660e01b8152600401611cbd94939291906129b9565b602060405180830381600087803b158015611cd757600080fd5b505af1925050508015611d0857506040513d601f19601f82011682018060405250810190611d0591906125e7565b60015b611d82573d8060008114611d38576040519150601f19603f3d011682016040523d82523d6000602084013e611d3d565b606091505b50600081511415611d7a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e1d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f31565b600082905060005b60008214611e4f578080611e3890612e95565b915050600a82611e489190612cbd565b9150611e25565b60008167ffffffffffffffff811115611e6b57611e6a612fcb565b5b6040519080825280601f01601f191660200182016040528015611e9d5781602001600182028036833780820191505090505b5090505b60008514611f2a57600182611eb69190612d48565b9150600a85611ec59190612ede565b6030611ed19190612c67565b60f81b818381518110611ee757611ee6612f9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f239190612cbd565b9450611ea1565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fb9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611ff4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120016000858386611f36565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161206660018514612201565b901b60a042901b61207686611f3c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461217a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461212a6000878480600101955087611c75565b612160576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106120bb57826000541461217557600080fd5b6121e5565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061217b575b8160008190555050506121fb6000858386611f46565b50505050565b6000819050919050565b82805461221790612e32565b90600052602060002090601f0160209004810192826122395760008555612280565b82601f1061225257805160ff1916838001178555612280565b82800160010185558215612280579182015b8281111561227f578251825591602001919060010190612264565b5b50905061228d9190612291565b5090565b5b808211156122aa576000816000905550600101612292565b5090565b60006122c16122bc84612ba2565b612b7d565b9050828152602081018484840111156122dd576122dc612fff565b5b6122e8848285612df0565b509392505050565b60006123036122fe84612bd3565b612b7d565b90508281526020810184848401111561231f5761231e612fff565b5b61232a848285612df0565b509392505050565b60008135905061234181613208565b92915050565b6000813590506123568161321f565b92915050565b60008135905061236b81613236565b92915050565b60008151905061238081613236565b92915050565b600082601f83011261239b5761239a612ffa565b5b81356123ab8482602086016122ae565b91505092915050565b600082601f8301126123c9576123c8612ffa565b5b81356123d98482602086016122f0565b91505092915050565b6000813590506123f18161324d565b92915050565b60006020828403121561240d5761240c613009565b5b600061241b84828501612332565b91505092915050565b6000806040838503121561243b5761243a613009565b5b600061244985828601612332565b925050602061245a85828601612332565b9150509250929050565b60008060006060848603121561247d5761247c613009565b5b600061248b86828701612332565b935050602061249c86828701612332565b92505060406124ad868287016123e2565b9150509250925092565b600080600080608085870312156124d1576124d0613009565b5b60006124df87828801612332565b94505060206124f087828801612332565b9350506040612501878288016123e2565b925050606085013567ffffffffffffffff81111561252257612521613004565b5b61252e87828801612386565b91505092959194509250565b6000806040838503121561255157612550613009565b5b600061255f85828601612332565b925050602061257085828601612347565b9150509250929050565b6000806040838503121561259157612590613009565b5b600061259f85828601612332565b92505060206125b0858286016123e2565b9150509250929050565b6000602082840312156125d0576125cf613009565b5b60006125de8482850161235c565b91505092915050565b6000602082840312156125fd576125fc613009565b5b600061260b84828501612371565b91505092915050565b60006020828403121561262a57612629613009565b5b600082013567ffffffffffffffff81111561264857612647613004565b5b612654848285016123b4565b91505092915050565b60006020828403121561267357612672613009565b5b6000612681848285016123e2565b91505092915050565b61269381612d7c565b82525050565b6126a281612d8e565b82525050565b60006126b382612c19565b6126bd8185612c2f565b93506126cd818560208601612dff565b6126d68161300e565b840191505092915050565b60006126ec82612c24565b6126f68185612c4b565b9350612706818560208601612dff565b61270f8161300e565b840191505092915050565b600061272582612c24565b61272f8185612c5c565b935061273f818560208601612dff565b80840191505092915050565b6000815461275881612e32565b6127628186612c5c565b9450600182166000811461277d576001811461278e576127c1565b60ff198316865281860193506127c1565b61279785612c04565b60005b838110156127b95781548189015260018201915060208101905061279a565b838801955050505b50505092915050565b60006127d7600d83612c4b565b91506127e28261301f565b602082019050919050565b60006127fa602683612c4b565b915061280582613048565b604082019050919050565b600061281d601583612c4b565b915061282882613097565b602082019050919050565b6000612840601e83612c4b565b915061284b826130c0565b602082019050919050565b6000612863600583612c5c565b915061286e826130e9565b600582019050919050565b6000612886602083612c4b565b915061289182613112565b602082019050919050565b60006128a9602f83612c4b565b91506128b48261313b565b604082019050919050565b60006128cc601d83612c4b565b91506128d78261318a565b602082019050919050565b60006128ef600083612c40565b91506128fa826131b3565b600082019050919050565b6000612912601083612c4b565b915061291d826131b6565b602082019050919050565b6000612935601383612c4b565b9150612940826131df565b602082019050919050565b61295481612de6565b82525050565b6000612966828561274b565b9150612972828461271a565b915061297d82612856565b91508190509392505050565b6000612994826128e2565b9150819050919050565b60006020820190506129b3600083018461268a565b92915050565b60006080820190506129ce600083018761268a565b6129db602083018661268a565b6129e8604083018561294b565b81810360608301526129fa81846126a8565b905095945050505050565b6000602082019050612a1a6000830184612699565b92915050565b60006020820190508181036000830152612a3a81846126e1565b905092915050565b60006020820190508181036000830152612a5b816127ca565b9050919050565b60006020820190508181036000830152612a7b816127ed565b9050919050565b60006020820190508181036000830152612a9b81612810565b9050919050565b60006020820190508181036000830152612abb81612833565b9050919050565b60006020820190508181036000830152612adb81612879565b9050919050565b60006020820190508181036000830152612afb8161289c565b9050919050565b60006020820190508181036000830152612b1b816128bf565b9050919050565b60006020820190508181036000830152612b3b81612905565b9050919050565b60006020820190508181036000830152612b5b81612928565b9050919050565b6000602082019050612b77600083018461294b565b92915050565b6000612b87612b98565b9050612b938282612e64565b919050565b6000604051905090565b600067ffffffffffffffff821115612bbd57612bbc612fcb565b5b612bc68261300e565b9050602081019050919050565b600067ffffffffffffffff821115612bee57612bed612fcb565b5b612bf78261300e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c7282612de6565b9150612c7d83612de6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cb257612cb1612f0f565b5b828201905092915050565b6000612cc882612de6565b9150612cd383612de6565b925082612ce357612ce2612f3e565b5b828204905092915050565b6000612cf982612de6565b9150612d0483612de6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d3d57612d3c612f0f565b5b828202905092915050565b6000612d5382612de6565b9150612d5e83612de6565b925082821015612d7157612d70612f0f565b5b828203905092915050565b6000612d8782612dc6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e1d578082015181840152602081019050612e02565b83811115612e2c576000848401525b50505050565b60006002820490506001821680612e4a57607f821691505b60208210811415612e5e57612e5d612f6d565b5b50919050565b612e6d8261300e565b810181811067ffffffffffffffff82111715612e8c57612e8b612fcb565b5b80604052505050565b6000612ea082612de6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ed357612ed2612f0f565b5b600182019050919050565b6000612ee982612de6565b9150612ef483612de6565b925082612f0457612f03612f3e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f7265206c6566742e00000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c697665207965742e0000000000000000000000600082015250565b7f436f6e747261637473206e6f7420616c6c6f77656420746f206d696e742e0000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b61321181612d7c565b811461321c57600080fd5b50565b61322881612d8e565b811461323357600080fd5b50565b61323f81612d9a565b811461324a57600080fd5b50565b61325681612de6565b811461326157600080fd5b5056fea2646970667358221220173c2d60cf17f31cb93baa36de3c21d0010b39ac330cba8598d2284fab44d28c64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb01146105f9578063e985e9c514610624578063f2fde38b14610661578063f968adbe1461068a576101c2565b8063a70273571461053d578063b88d4fde14610568578063c87b56dd14610591578063d1239730146105ce576101c2565b806395d89b41116100d157806395d89b41146104a2578063a035b1fe146104cd578063a0712d68146104f8578063a22cb46514610514576101c2565b80638da5cb5b1461042557806391b7f5ed1461045057806392910eec14610479576101c2565b80633ccfd60b116101645780636352211e1161013e5780636352211e1461037d57806370a08231146103ba578063715018a6146103f75780637ba5e6211461040e576101c2565b80633ccfd60b1461031457806342842e0e1461032b57806355f804b314610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c0578063333e44e6146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906125ba565b6106b5565b6040516101fb9190612a05565b60405180910390f35b34801561021057600080fd5b50610219610747565b6040516102269190612a20565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061265d565b6107d9565b604051610263919061299e565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061257a565b610855565b005b3480156102a157600080fd5b506102aa6109fc565b6040516102b79190612b62565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612464565b610a13565b005b3480156102f557600080fd5b506102fe610a23565b60405161030b9190612b62565b60405180910390f35b34801561032057600080fd5b50610329610a29565b005b34801561033757600080fd5b50610352600480360381019061034d9190612464565b610b54565b005b34801561036057600080fd5b5061037b60048036038101906103769190612614565b610b74565b005b34801561038957600080fd5b506103a4600480360381019061039f919061265d565b610c0a565b6040516103b1919061299e565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc91906123f7565b610c1c565b6040516103ee9190612b62565b60405180910390f35b34801561040357600080fd5b5061040c610cd5565b005b34801561041a57600080fd5b50610423610d5d565b005b34801561043157600080fd5b5061043a610e05565b604051610447919061299e565b60405180910390f35b34801561045c57600080fd5b506104776004803603810190610472919061265d565b610e2f565b005b34801561048557600080fd5b506104a0600480360381019061049b919061265d565b610eb5565b005b3480156104ae57600080fd5b506104b7610f3b565b6040516104c49190612a20565b60405180910390f35b3480156104d957600080fd5b506104e2610fcd565b6040516104ef9190612b62565b60405180910390f35b610512600480360381019061050d919061265d565b610fd3565b005b34801561052057600080fd5b5061053b6004803603810190610536919061253a565b61128d565b005b34801561054957600080fd5b50610552611405565b60405161055f9190612b62565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a91906124b7565b61140b565b005b34801561059d57600080fd5b506105b860048036038101906105b3919061265d565b61147e565b6040516105c59190612a20565b60405180910390f35b3480156105da57600080fd5b506105e36114fa565b6040516105f09190612a05565b60405180910390f35b34801561060557600080fd5b5061060e61150d565b60405161061b9190612b62565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190612424565b611513565b6040516106589190612a05565b60405180910390f35b34801561066d57600080fd5b50610688600480360381019061068391906123f7565b6115a7565b005b34801561069657600080fd5b5061069f61169f565b6040516106ac9190612b62565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461075690612e32565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612e32565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e4826116a5565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086082611704565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e76117d2565b73ffffffffffffffffffffffffffffffffffffffff161461094a576109138161090e6117d2565b611513565b610949576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a066117da565b6001546000540303905090565b610a1e8383836117df565b505050565b600d5481565b610a31611b89565b73ffffffffffffffffffffffffffffffffffffffff16610a4f610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c90612ac2565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610acb90612989565b60006040518083038185875af1925050503d8060008114610b08576040519150601f19603f3d011682016040523d82523d6000602084013e610b0d565b606091505b5050905080610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890612b22565b60405180910390fd5b50565b610b6f8383836040518060200160405280600081525061140b565b505050565b610b7c611b89565b73ffffffffffffffffffffffffffffffffffffffff16610b9a610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790612ac2565b60405180910390fd5b8060099080519060200190610c0692919061220b565b5050565b6000610c1582611704565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c84576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cdd611b89565b73ffffffffffffffffffffffffffffffffffffffff16610cfb610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890612ac2565b60405180910390fd5b610d5b6000611b91565b565b610d65611b89565b73ffffffffffffffffffffffffffffffffffffffff16610d83610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090612ac2565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e37611b89565b73ffffffffffffffffffffffffffffffffffffffff16610e55610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290612ac2565b60405180910390fd5b80600a8190555050565b610ebd611b89565b73ffffffffffffffffffffffffffffffffffffffff16610edb610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890612ac2565b60405180910390fd5b80600d8190555050565b606060038054610f4a90612e32565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7690612e32565b8015610fc35780601f10610f9857610100808354040283529160200191610fc3565b820191906000526020600020905b815481529060010190602001808311610fa657829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610feb9190612c67565b83610ff46109fc565b610ffe9190612c67565b1080156110575750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110549190612c67565b11155b9050801561106457600091505b81836110709190612cee565b3410156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990612b02565b60405180910390fd5b6001600e546110c19190612c67565b836110ca6109fc565b6110d49190612c67565b10611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b90612a42565b60405180910390fd5b600f60009054906101000a900460ff16611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90612a82565b60405180910390fd5b6001600b546111729190612c67565b83106111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90612b42565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612aa2565b60405180910390fd5b801561127e5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112769190612c67565b925050819055505b6112883384611c57565b505050565b6112956117d2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113076117d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b46117d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113f99190612a05565b60405180910390a35050565b600c5481565b6114168484846117df565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114785761144184848484611c75565b611477576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611489826116a5565b6114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf90612ae2565b60405180910390fd5b60096114d383611dd5565b6040516020016114e492919061295a565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115af611b89565b73ffffffffffffffffffffffffffffffffffffffff166115cd610e05565b73ffffffffffffffffffffffffffffffffffffffff1614611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a90612ac2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90612a62565b60405180910390fd5b61169c81611b91565b50565b600b5481565b6000816116b06117da565b111580156116bf575060005482105b80156116fd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806117136117da565b1161179b5760005481101561179a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611798575b600081141561178e576004600083600190039350838152602001908152602001600020549050611763565b80925050506117cd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006117ea82611704565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611851576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118726117d2565b73ffffffffffffffffffffffffffffffffffffffff1614806118a157506118a08561189b6117d2565b611513565b5b806118e657506118af6117d2565b73ffffffffffffffffffffffffffffffffffffffff166118ce846107d9565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061191f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611986576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119938585856001611f36565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a9086611f3c565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611b1a576000600184019050600060046000838152602001908152602001600020541415611b18576000548114611b17578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b828585856001611f46565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c71828260405180602001604052806000815250611f4c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c9b6117d2565b8786866040518563ffffffff1660e01b8152600401611cbd94939291906129b9565b602060405180830381600087803b158015611cd757600080fd5b505af1925050508015611d0857506040513d601f19601f82011682018060405250810190611d0591906125e7565b60015b611d82573d8060008114611d38576040519150601f19603f3d011682016040523d82523d6000602084013e611d3d565b606091505b50600081511415611d7a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e1d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f31565b600082905060005b60008214611e4f578080611e3890612e95565b915050600a82611e489190612cbd565b9150611e25565b60008167ffffffffffffffff811115611e6b57611e6a612fcb565b5b6040519080825280601f01601f191660200182016040528015611e9d5781602001600182028036833780820191505090505b5090505b60008514611f2a57600182611eb69190612d48565b9150600a85611ec59190612ede565b6030611ed19190612c67565b60f81b818381518110611ee757611ee6612f9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f239190612cbd565b9450611ea1565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fb9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611ff4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120016000858386611f36565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161206660018514612201565b901b60a042901b61207686611f3c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461217a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461212a6000878480600101955087611c75565b612160576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106120bb57826000541461217557600080fd5b6121e5565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061217b575b8160008190555050506121fb6000858386611f46565b50505050565b6000819050919050565b82805461221790612e32565b90600052602060002090601f0160209004810192826122395760008555612280565b82601f1061225257805160ff1916838001178555612280565b82800160010185558215612280579182015b8281111561227f578251825591602001919060010190612264565b5b50905061228d9190612291565b5090565b5b808211156122aa576000816000905550600101612292565b5090565b60006122c16122bc84612ba2565b612b7d565b9050828152602081018484840111156122dd576122dc612fff565b5b6122e8848285612df0565b509392505050565b60006123036122fe84612bd3565b612b7d565b90508281526020810184848401111561231f5761231e612fff565b5b61232a848285612df0565b509392505050565b60008135905061234181613208565b92915050565b6000813590506123568161321f565b92915050565b60008135905061236b81613236565b92915050565b60008151905061238081613236565b92915050565b600082601f83011261239b5761239a612ffa565b5b81356123ab8482602086016122ae565b91505092915050565b600082601f8301126123c9576123c8612ffa565b5b81356123d98482602086016122f0565b91505092915050565b6000813590506123f18161324d565b92915050565b60006020828403121561240d5761240c613009565b5b600061241b84828501612332565b91505092915050565b6000806040838503121561243b5761243a613009565b5b600061244985828601612332565b925050602061245a85828601612332565b9150509250929050565b60008060006060848603121561247d5761247c613009565b5b600061248b86828701612332565b935050602061249c86828701612332565b92505060406124ad868287016123e2565b9150509250925092565b600080600080608085870312156124d1576124d0613009565b5b60006124df87828801612332565b94505060206124f087828801612332565b9350506040612501878288016123e2565b925050606085013567ffffffffffffffff81111561252257612521613004565b5b61252e87828801612386565b91505092959194509250565b6000806040838503121561255157612550613009565b5b600061255f85828601612332565b925050602061257085828601612347565b9150509250929050565b6000806040838503121561259157612590613009565b5b600061259f85828601612332565b92505060206125b0858286016123e2565b9150509250929050565b6000602082840312156125d0576125cf613009565b5b60006125de8482850161235c565b91505092915050565b6000602082840312156125fd576125fc613009565b5b600061260b84828501612371565b91505092915050565b60006020828403121561262a57612629613009565b5b600082013567ffffffffffffffff81111561264857612647613004565b5b612654848285016123b4565b91505092915050565b60006020828403121561267357612672613009565b5b6000612681848285016123e2565b91505092915050565b61269381612d7c565b82525050565b6126a281612d8e565b82525050565b60006126b382612c19565b6126bd8185612c2f565b93506126cd818560208601612dff565b6126d68161300e565b840191505092915050565b60006126ec82612c24565b6126f68185612c4b565b9350612706818560208601612dff565b61270f8161300e565b840191505092915050565b600061272582612c24565b61272f8185612c5c565b935061273f818560208601612dff565b80840191505092915050565b6000815461275881612e32565b6127628186612c5c565b9450600182166000811461277d576001811461278e576127c1565b60ff198316865281860193506127c1565b61279785612c04565b60005b838110156127b95781548189015260018201915060208101905061279a565b838801955050505b50505092915050565b60006127d7600d83612c4b565b91506127e28261301f565b602082019050919050565b60006127fa602683612c4b565b915061280582613048565b604082019050919050565b600061281d601583612c4b565b915061282882613097565b602082019050919050565b6000612840601e83612c4b565b915061284b826130c0565b602082019050919050565b6000612863600583612c5c565b915061286e826130e9565b600582019050919050565b6000612886602083612c4b565b915061289182613112565b602082019050919050565b60006128a9602f83612c4b565b91506128b48261313b565b604082019050919050565b60006128cc601d83612c4b565b91506128d78261318a565b602082019050919050565b60006128ef600083612c40565b91506128fa826131b3565b600082019050919050565b6000612912601083612c4b565b915061291d826131b6565b602082019050919050565b6000612935601383612c4b565b9150612940826131df565b602082019050919050565b61295481612de6565b82525050565b6000612966828561274b565b9150612972828461271a565b915061297d82612856565b91508190509392505050565b6000612994826128e2565b9150819050919050565b60006020820190506129b3600083018461268a565b92915050565b60006080820190506129ce600083018761268a565b6129db602083018661268a565b6129e8604083018561294b565b81810360608301526129fa81846126a8565b905095945050505050565b6000602082019050612a1a6000830184612699565b92915050565b60006020820190508181036000830152612a3a81846126e1565b905092915050565b60006020820190508181036000830152612a5b816127ca565b9050919050565b60006020820190508181036000830152612a7b816127ed565b9050919050565b60006020820190508181036000830152612a9b81612810565b9050919050565b60006020820190508181036000830152612abb81612833565b9050919050565b60006020820190508181036000830152612adb81612879565b9050919050565b60006020820190508181036000830152612afb8161289c565b9050919050565b60006020820190508181036000830152612b1b816128bf565b9050919050565b60006020820190508181036000830152612b3b81612905565b9050919050565b60006020820190508181036000830152612b5b81612928565b9050919050565b6000602082019050612b77600083018461294b565b92915050565b6000612b87612b98565b9050612b938282612e64565b919050565b6000604051905090565b600067ffffffffffffffff821115612bbd57612bbc612fcb565b5b612bc68261300e565b9050602081019050919050565b600067ffffffffffffffff821115612bee57612bed612fcb565b5b612bf78261300e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c7282612de6565b9150612c7d83612de6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cb257612cb1612f0f565b5b828201905092915050565b6000612cc882612de6565b9150612cd383612de6565b925082612ce357612ce2612f3e565b5b828204905092915050565b6000612cf982612de6565b9150612d0483612de6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d3d57612d3c612f0f565b5b828202905092915050565b6000612d5382612de6565b9150612d5e83612de6565b925082821015612d7157612d70612f0f565b5b828203905092915050565b6000612d8782612dc6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e1d578082015181840152602081019050612e02565b83811115612e2c576000848401525b50505050565b60006002820490506001821680612e4a57607f821691505b60208210811415612e5e57612e5d612f6d565b5b50919050565b612e6d8261300e565b810181811067ffffffffffffffff82111715612e8c57612e8b612fcb565b5b80604052505050565b6000612ea082612de6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ed357612ed2612f0f565b5b600182019050919050565b6000612ee982612de6565b9150612ef483612de6565b925082612f0457612f03612f3e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f7265206c6566742e00000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c697665207965742e0000000000000000000000600082015250565b7f436f6e747261637473206e6f7420616c6c6f77656420746f206d696e742e0000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b61321181612d7c565b811461321c57600080fd5b50565b61322881612d8e565b811461323357600080fd5b50565b61323f81612d9a565b811461324a57600080fd5b50565b61325681612de6565b811461326157600080fd5b5056fea2646970667358221220173c2d60cf17f31cb93baa36de3c21d0010b39ac330cba8598d2284fab44d28c64736f6c63430008070033

Deployed Bytecode Sourcemap

76577:2397:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13134:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18147:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20215:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19675:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12188:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21101:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76809:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78765:206;;;;;;;;;;;;;:::i;:::-;;21342:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78374:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17936:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13813:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43655:103;;;;;;;;;;;;;:::i;:::-;;78673:84;;;;;;;;;;;;;:::i;:::-;;43004:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78573:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78470:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18316:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76691:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77124:768;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20491:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76767:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21598:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78016:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76887:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76847;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20870:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43913:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76732:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13134:615;13219:4;13534:10;13519:25;;:11;:25;;;;:102;;;;13611:10;13596:25;;:11;:25;;;;13519:102;:179;;;;13688:10;13673:25;;:11;:25;;;;13519:179;13499:199;;13134:615;;;:::o;18147:100::-;18201:13;18234:5;18227:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18147:100;:::o;20215:204::-;20283:7;20308:16;20316:7;20308;:16::i;:::-;20303:64;;20333:34;;;;;;;;;;;;;;20303:64;20387:15;:24;20403:7;20387:24;;;;;;;;;;;;;;;;;;;;;20380:31;;20215:204;;;:::o;19675:474::-;19748:13;19780:27;19799:7;19780:18;:27::i;:::-;19748:61;;19830:5;19824:11;;:2;:11;;;19820:48;;;19844:24;;;;;;;;;;;;;;19820:48;19908:5;19885:28;;:19;:17;:19::i;:::-;:28;;;19881:175;;19933:44;19950:5;19957:19;:17;:19::i;:::-;19933:16;:44::i;:::-;19928:128;;20005:35;;;;;;;;;;;;;;19928:128;19881:175;20095:2;20068:15;:24;20084:7;20068:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20133:7;20129:2;20113:28;;20122:5;20113:28;;;;;;;;;;;;19737:412;19675:474;;:::o;12188:315::-;12241:7;12469:15;:13;:15::i;:::-;12454:12;;12438:13;;:28;:46;12431:53;;12188:315;:::o;21101:170::-;21235:28;21245:4;21251:2;21255:7;21235:9;:28::i;:::-;21101:170;;;:::o;76809:31::-;;;;:::o;78765:206::-;43235:12;:10;:12::i;:::-;43224:23;;:7;:5;:7::i;:::-;:23;;;43216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78816:12:::1;78842:10;78834:24;;78880:21;78834:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78815:101;;;78935:7;78927:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;78804:167;78765:206::o:0;21342:185::-;21480:39;21497:4;21503:2;21507:7;21480:39;;;;;;;;;;;;:16;:39::i;:::-;21342:185;;;:::o;78374:88::-;43235:12;:10;:12::i;:::-;43224:23;;:7;:5;:7::i;:::-;:23;;;43216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78451:3:::1;78441:7;:13;;;;;;;;;;;;:::i;:::-;;78374:88:::0;:::o;17936:144::-;18000:7;18043:27;18062:7;18043:18;:27::i;:::-;18020:52;;17936:144;;;:::o;13813:224::-;13877:7;13918:1;13901:19;;:5;:19;;;13897:60;;;13929:28;;;;;;;;;;;;;;13897:60;9152:13;13975:18;:25;13994:5;13975:25;;;;;;;;;;;;;;;;:54;13968:61;;13813:224;;;:::o;43655:103::-;43235:12;:10;:12::i;:::-;43224:23;;:7;:5;:7::i;:::-;:23;;;43216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43720:30:::1;43747:1;43720:18;:30::i;:::-;43655:103::o:0;78673:84::-;43235:12;:10;:12::i;:::-;43224:23;;:7;:5;:7::i;:::-;:23;;;43216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78738:11:::1;;;;;;;;;;;78737:12;78723:11;;:26;;;;;;;;;;;;;;;;;;78673:84::o:0;43004:87::-;43050:7;43077:6;;;;;;;;;;;43070:13;;43004:87;:::o;78573:92::-;43235:12;:10;:12::i;:::-;43224:23;;:7;:5;:7::i;:::-;:23;;;43216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78648:9:::1;78640:5;:17;;;;78573:92:::0;:::o;78470:95::-;43235:12;:10;:12::i;:::-;43224:23;;:7;:5;:7::i;:::-;:23;;;43216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78551:6:::1;78539:9;:18;;;;78470:95:::0;:::o;18316:104::-;18372:13;18405:7;18398:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18316:104;:::o;76691:34::-;;;;:::o;77124:768::-;77181:12;77196:5;;77181:20;;77212:11;77264:1;77252:9;;:13;;;;:::i;:::-;77244:5;77228:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;77227:115;;;;;77325:16;;77316:5;77284:17;:29;77302:10;77284:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;77227:115;77212:131;;77360:6;77356:47;;;77390:1;77383:8;;77356:47;77444:4;77436:5;:12;;;;:::i;:::-;77423:9;:25;;77415:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;77537:1;77525:9;;:13;;;;:::i;:::-;77517:5;77501:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;77493:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;77575:11;;;;;;;;;;;77567:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;77650:1;77639:8;;:12;;;;:::i;:::-;77631:5;:20;77623:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;77707:10;77694:23;;:9;:23;;;77686:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;77771:6;77767:77;;;77827:5;77794:17;:29;77812:10;77794:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;77767:77;77856:28;77866:10;77878:5;77856:9;:28::i;:::-;77170:722;;77124:768;:::o;20491:308::-;20602:19;:17;:19::i;:::-;20590:31;;:8;:31;;;20586:61;;;20630:17;;;;;;;;;;;;;;20586:61;20712:8;20660:18;:39;20679:19;:17;:19::i;:::-;20660:39;;;;;;;;;;;;;;;:49;20700:8;20660:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20772:8;20736:55;;20751:19;:17;:19::i;:::-;20736:55;;;20782:8;20736:55;;;;;;:::i;:::-;;;;;;;;20491:308;;:::o;76767:35::-;;;;:::o;21598:396::-;21765:28;21775:4;21781:2;21785:7;21765:9;:28::i;:::-;21826:1;21808:2;:14;;;:19;21804:183;;21847:56;21878:4;21884:2;21888:7;21897:5;21847:30;:56::i;:::-;21842:145;;21931:40;;;;;;;;;;;;;;21842:145;21804:183;21598:396;;;;:::o;78016:350::-;78134:13;78187:16;78195:7;78187;:16::i;:::-;78165:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;78320:7;78329:18;:7;:16;:18::i;:::-;78303:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78289:69;;78016:350;;;:::o;76887:31::-;;;;;;;;;;;;;:::o;76847:::-;;;;:::o;20870:164::-;20967:4;20991:18;:25;21010:5;20991:25;;;;;;;;;;;;;;;:35;21017:8;20991:35;;;;;;;;;;;;;;;;;;;;;;;;;20984:42;;20870:164;;;;:::o;43913:201::-;43235:12;:10;:12::i;:::-;43224:23;;:7;:5;:7::i;:::-;:23;;;43216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44022:1:::1;44002:22;;:8;:22;;;;43994:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44078:28;44097:8;44078:18;:28::i;:::-;43913:201:::0;:::o;76732:28::-;;;;:::o;22249:273::-;22306:4;22362:7;22343:15;:13;:15::i;:::-;:26;;:66;;;;;22396:13;;22386:7;:23;22343:66;:152;;;;;22494:1;9922:8;22447:17;:26;22465:7;22447:26;;;;;;;;;;;;:43;:48;22343:152;22323:172;;22249:273;;;:::o;15451:1129::-;15518:7;15538:12;15553:7;15538:22;;15621:4;15602:15;:13;:15::i;:::-;:23;15598:915;;15655:13;;15648:4;:20;15644:869;;;15693:14;15710:17;:23;15728:4;15710:23;;;;;;;;;;;;15693:40;;15826:1;9922:8;15799:6;:23;:28;15795:699;;;16318:113;16335:1;16325:6;:11;16318:113;;;16378:17;:25;16396:6;;;;;;;16378:25;;;;;;;;;;;;16369:34;;16318:113;;;16464:6;16457:13;;;;;;15795:699;15670:843;15644:869;15598:915;16541:31;;;;;;;;;;;;;;15451:1129;;;;:::o;36231:105::-;36291:7;36318:10;36311:17;;36231:105;:::o;11711:92::-;11767:7;11711:92;:::o;27488:2515::-;27603:27;27633;27652:7;27633:18;:27::i;:::-;27603:57;;27718:4;27677:45;;27693:19;27677:45;;;27673:86;;27731:28;;;;;;;;;;;;;;27673:86;27772:22;27821:4;27798:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27842:43;27859:4;27865:19;:17;:19::i;:::-;27842:16;:43::i;:::-;27798:87;:147;;;;27926:19;:17;:19::i;:::-;27902:43;;:20;27914:7;27902:11;:20::i;:::-;:43;;;27798:147;27772:174;;27964:17;27959:66;;27990:35;;;;;;;;;;;;;;27959:66;28054:1;28040:16;;:2;:16;;;28036:52;;;28065:23;;;;;;;;;;;;;;28036:52;28101:43;28123:4;28129:2;28133:7;28142:1;28101:21;:43::i;:::-;28217:15;:24;28233:7;28217:24;;;;;;;;;;;;28210:31;;;;;;;;;;;28609:18;:24;28628:4;28609:24;;;;;;;;;;;;;;;;28607:26;;;;;;;;;;;;28678:18;:22;28697:2;28678:22;;;;;;;;;;;;;;;;28676:24;;;;;;;;;;;10204:8;9806:3;29059:15;:41;;29017:21;29035:2;29017:17;:21::i;:::-;:84;:128;28971:17;:26;28989:7;28971:26;;;;;;;;;;;:174;;;;29315:1;10204:8;29265:19;:46;:51;29261:626;;;29337:19;29369:1;29359:7;:11;29337:33;;29526:1;29492:17;:30;29510:11;29492:30;;;;;;;;;;;;:35;29488:384;;;29630:13;;29615:11;:28;29611:242;;29810:19;29777:17;:30;29795:11;29777:30;;;;;;;;;;;:52;;;;29611:242;29488:384;29318:569;29261:626;29934:7;29930:2;29915:27;;29924:4;29915:27;;;;;;;;;;;;29953:42;29974:4;29980:2;29984:7;29993:1;29953:20;:42::i;:::-;27592:2411;;27488:2515;;;:::o;41675:98::-;41728:7;41755:10;41748:17;;41675:98;:::o;44274:191::-;44348:16;44367:6;;;;;;;;;;;44348:25;;44393:8;44384:6;;:17;;;;;;;;;;;;;;;;;;44448:8;44417:40;;44438:8;44417:40;;;;;;;;;;;;44337:128;44274:191;:::o;22606:104::-;22675:27;22685:2;22689:8;22675:27;;;;;;;;;;;;:9;:27::i;:::-;22606:104;;:::o;33700:716::-;33863:4;33909:2;33884:45;;;33930:19;:17;:19::i;:::-;33951:4;33957:7;33966:5;33884:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33880:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34184:1;34167:6;:13;:18;34163:235;;;34213:40;;;;;;;;;;;;;;34163:235;34356:6;34350:13;34341:6;34337:2;34333:15;34326:38;33880:529;34053:54;;;34043:64;;;:6;:64;;;;34036:71;;;33700:716;;;;;;:::o;38876:723::-;38932:13;39162:1;39153:5;:10;39149:53;;;39180:10;;;;;;;;;;;;;;;;;;;;;39149:53;39212:12;39227:5;39212:20;;39243:14;39268:78;39283:1;39275:4;:9;39268:78;;39301:8;;;;;:::i;:::-;;;;39332:2;39324:10;;;;;:::i;:::-;;;39268:78;;;39356:19;39388:6;39378:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39356:39;;39406:154;39422:1;39413:5;:10;39406:154;;39450:1;39440:11;;;;;:::i;:::-;;;39517:2;39509:5;:10;;;;:::i;:::-;39496:2;:24;;;;:::i;:::-;39483:39;;39466:6;39473;39466:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39546:2;39537:11;;;;;:::i;:::-;;;39406:154;;;39584:6;39570:21;;;;;38876:723;;;;:::o;35064:159::-;;;;;:::o;19236:148::-;19300:14;19361:5;19351:15;;19236:148;;;:::o;35882:158::-;;;;;:::o;23083:2236::-;23206:20;23229:13;;23206:36;;23271:1;23257:16;;:2;:16;;;23253:48;;;23282:19;;;;;;;;;;;;;;23253:48;23328:1;23316:8;:13;23312:44;;;23338:18;;;;;;;;;;;;;;23312:44;23369:61;23399:1;23403:2;23407:12;23421:8;23369:21;:61::i;:::-;23973:1;9289:2;23944:1;:25;;23943:31;23931:8;:44;23905:18;:22;23924:2;23905:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10069:3;24374:29;24401:1;24389:8;:13;24374:14;:29::i;:::-;:56;;9806:3;24311:15;:41;;24269:21;24287:2;24269:17;:21::i;:::-;:84;:162;24218:17;:31;24236:12;24218:31;;;;;;;;;;;:213;;;;24448:20;24471:12;24448:35;;24498:11;24527:8;24512:12;:23;24498:37;;24574:1;24556:2;:14;;;:19;24552:635;;24596:313;24652:12;24648:2;24627:38;;24644:1;24627:38;;;;;;;;;;;;24693:69;24732:1;24736:2;24740:14;;;;;;24756:5;24693:30;:69::i;:::-;24688:174;;24798:40;;;;;;;;;;;;;;24688:174;24904:3;24889:12;:18;24596:313;;24990:12;24973:13;;:29;24969:43;;25004:8;;;24969:43;24552:635;;;25053:119;25109:14;;;;;;25105:2;25084:40;;25101:1;25084:40;;;;;;;;;;;;25167:3;25152:12;:18;25053:119;;24552:635;25217:12;25201:13;:28;;;;23682:1559;;25251:60;25280:1;25284:2;25288:12;25302:8;25251:20;:60::i;:::-;23195:2124;23083:2236;;;:::o;19471:142::-;19529:14;19590:5;19580:15;;19471:142;;;:::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::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:400::-;11039:3;11060:84;11142:1;11137:3;11060:84;:::i;:::-;11053:91;;11153:93;11242:3;11153:93;:::i;:::-;11271:1;11266:3;11262:11;11255:18;;10879:400;;;:::o;11285:366::-;11427:3;11448:67;11512:2;11507:3;11448:67;:::i;:::-;11441:74;;11524:93;11613:3;11524:93;:::i;:::-;11642:2;11637:3;11633:12;11626:19;;11285:366;;;:::o;11657:::-;11799:3;11820:67;11884:2;11879:3;11820:67;:::i;:::-;11813:74;;11896:93;11985:3;11896:93;:::i;:::-;12014:2;12009:3;12005:12;11998:19;;11657:366;;;:::o;12029:::-;12171:3;12192:67;12256:2;12251:3;12192:67;:::i;:::-;12185:74;;12268:93;12357:3;12268:93;:::i;:::-;12386:2;12381:3;12377:12;12370:19;;12029:366;;;:::o;12401:398::-;12560:3;12581:83;12662:1;12657:3;12581:83;:::i;:::-;12574:90;;12673:93;12762:3;12673:93;:::i;:::-;12791:1;12786:3;12782:11;12775:18;;12401:398;;;:::o;12805:366::-;12947:3;12968:67;13032:2;13027:3;12968:67;:::i;:::-;12961:74;;13044:93;13133:3;13044:93;:::i;:::-;13162:2;13157:3;13153:12;13146:19;;12805:366;;;:::o;13177:::-;13319:3;13340:67;13404:2;13399:3;13340:67;:::i;:::-;13333:74;;13416:93;13505:3;13416:93;:::i;:::-;13534:2;13529:3;13525:12;13518:19;;13177:366;;;:::o;13549:118::-;13636:24;13654:5;13636:24;:::i;:::-;13631:3;13624:37;13549:118;;:::o;13673:695::-;13951:3;13973:92;14061:3;14052:6;13973:92;:::i;:::-;13966:99;;14082:95;14173:3;14164:6;14082:95;:::i;:::-;14075:102;;14194:148;14338:3;14194:148;:::i;:::-;14187:155;;14359:3;14352:10;;13673:695;;;;;:::o;14374:379::-;14558:3;14580:147;14723:3;14580:147;:::i;:::-;14573:154;;14744:3;14737:10;;14374:379;;;:::o;14759:222::-;14852:4;14890:2;14879:9;14875:18;14867:26;;14903:71;14971:1;14960:9;14956:17;14947:6;14903:71;:::i;:::-;14759:222;;;;:::o;14987:640::-;15182:4;15220:3;15209:9;15205:19;15197:27;;15234:71;15302:1;15291:9;15287:17;15278:6;15234:71;:::i;:::-;15315:72;15383:2;15372:9;15368:18;15359:6;15315:72;:::i;:::-;15397;15465:2;15454:9;15450:18;15441:6;15397:72;:::i;:::-;15516:9;15510:4;15506:20;15501:2;15490:9;15486:18;15479:48;15544:76;15615:4;15606:6;15544:76;:::i;:::-;15536:84;;14987:640;;;;;;;:::o;15633:210::-;15720:4;15758:2;15747:9;15743:18;15735:26;;15771:65;15833:1;15822:9;15818:17;15809:6;15771:65;:::i;:::-;15633:210;;;;:::o;15849:313::-;15962:4;16000:2;15989:9;15985:18;15977:26;;16049:9;16043:4;16039:20;16035:1;16024:9;16020:17;16013:47;16077:78;16150:4;16141:6;16077:78;:::i;:::-;16069:86;;15849:313;;;;:::o;16168:419::-;16334:4;16372:2;16361:9;16357:18;16349:26;;16421:9;16415:4;16411:20;16407:1;16396:9;16392:17;16385:47;16449:131;16575:4;16449:131;:::i;:::-;16441:139;;16168:419;;;:::o;16593:::-;16759:4;16797:2;16786:9;16782:18;16774:26;;16846:9;16840:4;16836:20;16832:1;16821:9;16817:17;16810:47;16874:131;17000:4;16874:131;:::i;:::-;16866:139;;16593:419;;;:::o;17018:::-;17184:4;17222:2;17211:9;17207:18;17199:26;;17271:9;17265:4;17261:20;17257:1;17246:9;17242:17;17235:47;17299:131;17425:4;17299:131;:::i;:::-;17291:139;;17018:419;;;:::o;17443:::-;17609:4;17647:2;17636:9;17632:18;17624:26;;17696:9;17690:4;17686:20;17682:1;17671:9;17667:17;17660:47;17724:131;17850:4;17724:131;:::i;:::-;17716:139;;17443:419;;;:::o;17868:::-;18034:4;18072:2;18061:9;18057:18;18049:26;;18121:9;18115:4;18111:20;18107:1;18096:9;18092:17;18085:47;18149:131;18275:4;18149:131;:::i;:::-;18141:139;;17868:419;;;:::o;18293:::-;18459:4;18497:2;18486:9;18482:18;18474:26;;18546:9;18540:4;18536:20;18532:1;18521:9;18517:17;18510:47;18574:131;18700:4;18574:131;:::i;:::-;18566:139;;18293:419;;;:::o;18718:::-;18884:4;18922:2;18911:9;18907:18;18899:26;;18971:9;18965:4;18961:20;18957:1;18946:9;18942:17;18935:47;18999:131;19125:4;18999:131;:::i;:::-;18991:139;;18718:419;;;:::o;19143:::-;19309:4;19347:2;19336:9;19332:18;19324:26;;19396:9;19390:4;19386:20;19382:1;19371:9;19367:17;19360:47;19424:131;19550:4;19424:131;:::i;:::-;19416:139;;19143:419;;;:::o;19568:::-;19734:4;19772:2;19761:9;19757:18;19749:26;;19821:9;19815:4;19811:20;19807:1;19796:9;19792:17;19785:47;19849:131;19975:4;19849:131;:::i;:::-;19841:139;;19568:419;;;:::o;19993:222::-;20086:4;20124:2;20113:9;20109:18;20101:26;;20137:71;20205:1;20194:9;20190:17;20181:6;20137:71;:::i;:::-;19993:222;;;;:::o;20221:129::-;20255:6;20282:20;;:::i;:::-;20272:30;;20311:33;20339:4;20331:6;20311:33;:::i;:::-;20221:129;;;:::o;20356:75::-;20389:6;20422:2;20416:9;20406:19;;20356:75;:::o;20437:307::-;20498:4;20588:18;20580:6;20577:30;20574:56;;;20610:18;;:::i;:::-;20574:56;20648:29;20670:6;20648:29;:::i;:::-;20640:37;;20732:4;20726;20722:15;20714:23;;20437:307;;;:::o;20750:308::-;20812:4;20902:18;20894:6;20891:30;20888:56;;;20924:18;;:::i;:::-;20888:56;20962:29;20984:6;20962:29;:::i;:::-;20954:37;;21046:4;21040;21036:15;21028:23;;20750:308;;;:::o;21064:141::-;21113:4;21136:3;21128:11;;21159:3;21156:1;21149:14;21193:4;21190:1;21180:18;21172:26;;21064:141;;;:::o;21211:98::-;21262:6;21296:5;21290:12;21280:22;;21211:98;;;:::o;21315:99::-;21367:6;21401:5;21395:12;21385:22;;21315:99;;;:::o;21420:168::-;21503:11;21537:6;21532:3;21525:19;21577:4;21572:3;21568:14;21553:29;;21420:168;;;;:::o;21594:147::-;21695:11;21732:3;21717:18;;21594:147;;;;:::o;21747:169::-;21831:11;21865:6;21860:3;21853:19;21905:4;21900:3;21896:14;21881:29;;21747:169;;;;:::o;21922:148::-;22024:11;22061:3;22046:18;;21922:148;;;;:::o;22076:305::-;22116:3;22135:20;22153:1;22135:20;:::i;:::-;22130:25;;22169:20;22187:1;22169:20;:::i;:::-;22164:25;;22323:1;22255:66;22251:74;22248:1;22245:81;22242:107;;;22329:18;;:::i;:::-;22242:107;22373:1;22370;22366:9;22359:16;;22076:305;;;;:::o;22387:185::-;22427:1;22444:20;22462:1;22444:20;:::i;:::-;22439:25;;22478:20;22496:1;22478:20;:::i;:::-;22473:25;;22517:1;22507:35;;22522:18;;:::i;:::-;22507:35;22564:1;22561;22557:9;22552:14;;22387:185;;;;:::o;22578:348::-;22618:7;22641:20;22659:1;22641:20;:::i;:::-;22636:25;;22675:20;22693:1;22675:20;:::i;:::-;22670:25;;22863:1;22795:66;22791:74;22788:1;22785:81;22780:1;22773:9;22766:17;22762:105;22759:131;;;22870:18;;:::i;:::-;22759:131;22918:1;22915;22911:9;22900:20;;22578:348;;;;:::o;22932:191::-;22972:4;22992:20;23010:1;22992:20;:::i;:::-;22987:25;;23026:20;23044:1;23026:20;:::i;:::-;23021:25;;23065:1;23062;23059:8;23056:34;;;23070:18;;:::i;:::-;23056:34;23115:1;23112;23108:9;23100:17;;22932:191;;;;:::o;23129:96::-;23166:7;23195:24;23213:5;23195:24;:::i;:::-;23184:35;;23129:96;;;:::o;23231:90::-;23265:7;23308:5;23301:13;23294:21;23283:32;;23231:90;;;:::o;23327:149::-;23363:7;23403:66;23396:5;23392:78;23381:89;;23327:149;;;:::o;23482:126::-;23519:7;23559:42;23552:5;23548:54;23537:65;;23482:126;;;:::o;23614:77::-;23651:7;23680:5;23669:16;;23614:77;;;:::o;23697:154::-;23781:6;23776:3;23771;23758:30;23843:1;23834:6;23829:3;23825:16;23818:27;23697:154;;;:::o;23857:307::-;23925:1;23935:113;23949:6;23946:1;23943:13;23935:113;;;24034:1;24029:3;24025:11;24019:18;24015:1;24010:3;24006:11;23999:39;23971:2;23968:1;23964:10;23959:15;;23935:113;;;24066:6;24063:1;24060:13;24057:101;;;24146:1;24137:6;24132:3;24128:16;24121:27;24057:101;23906:258;23857:307;;;:::o;24170:320::-;24214:6;24251:1;24245:4;24241:12;24231:22;;24298:1;24292:4;24288:12;24319:18;24309:81;;24375:4;24367:6;24363:17;24353:27;;24309:81;24437:2;24429:6;24426:14;24406:18;24403:38;24400:84;;;24456:18;;:::i;:::-;24400:84;24221:269;24170:320;;;:::o;24496:281::-;24579:27;24601:4;24579:27;:::i;:::-;24571:6;24567:40;24709:6;24697:10;24694:22;24673:18;24661:10;24658:34;24655:62;24652:88;;;24720:18;;:::i;:::-;24652:88;24760:10;24756:2;24749:22;24539:238;24496:281;;:::o;24783:233::-;24822:3;24845:24;24863:5;24845:24;:::i;:::-;24836:33;;24891:66;24884:5;24881:77;24878:103;;;24961:18;;:::i;:::-;24878:103;25008:1;25001:5;24997:13;24990:20;;24783:233;;;:::o;25022:176::-;25054:1;25071:20;25089:1;25071:20;:::i;:::-;25066:25;;25105:20;25123:1;25105:20;:::i;:::-;25100:25;;25144:1;25134:35;;25149:18;;:::i;:::-;25134:35;25190:1;25187;25183:9;25178:14;;25022:176;;;;:::o;25204:180::-;25252:77;25249:1;25242:88;25349:4;25346:1;25339:15;25373:4;25370:1;25363:15;25390:180;25438:77;25435:1;25428:88;25535:4;25532:1;25525:15;25559:4;25556:1;25549:15;25576:180;25624:77;25621:1;25614:88;25721:4;25718:1;25711:15;25745:4;25742:1;25735:15;25762:180;25810:77;25807:1;25800:88;25907:4;25904:1;25897:15;25931:4;25928:1;25921:15;25948:180;25996:77;25993:1;25986:88;26093:4;26090:1;26083:15;26117:4;26114:1;26107:15;26134:117;26243:1;26240;26233:12;26257:117;26366:1;26363;26356:12;26380:117;26489:1;26486;26479:12;26503:117;26612:1;26609;26602:12;26626:102;26667:6;26718:2;26714:7;26709:2;26702:5;26698:14;26694:28;26684:38;;26626:102;;;:::o;26734:163::-;26874:15;26870:1;26862:6;26858:14;26851:39;26734:163;:::o;26903:225::-;27043:34;27039:1;27031:6;27027:14;27020:58;27112:8;27107:2;27099:6;27095:15;27088:33;26903:225;:::o;27134:171::-;27274:23;27270:1;27262:6;27258:14;27251:47;27134:171;:::o;27311:180::-;27451:32;27447:1;27439:6;27435:14;27428:56;27311:180;:::o;27497:155::-;27637:7;27633:1;27625:6;27621:14;27614:31;27497:155;:::o;27658:182::-;27798:34;27794:1;27786:6;27782:14;27775:58;27658:182;:::o;27846:234::-;27986:34;27982:1;27974:6;27970:14;27963:58;28055:17;28050:2;28042:6;28038:15;28031:42;27846:234;:::o;28086:179::-;28226:31;28222:1;28214:6;28210:14;28203:55;28086:179;:::o;28271:114::-;;:::o;28391:166::-;28531:18;28527:1;28519:6;28515:14;28508:42;28391:166;:::o;28563:169::-;28703:21;28699:1;28691:6;28687:14;28680:45;28563:169;:::o;28738:122::-;28811:24;28829:5;28811:24;:::i;:::-;28804:5;28801:35;28791:63;;28850:1;28847;28840:12;28791:63;28738:122;:::o;28866:116::-;28936:21;28951:5;28936:21;:::i;:::-;28929:5;28926:32;28916:60;;28972:1;28969;28962:12;28916:60;28866:116;:::o;28988:120::-;29060:23;29077:5;29060:23;:::i;:::-;29053:5;29050:34;29040:62;;29098:1;29095;29088:12;29040:62;28988:120;:::o;29114:122::-;29187:24;29205:5;29187:24;:::i;:::-;29180:5;29177:35;29167:63;;29226:1;29223;29216:12;29167:63;29114:122;:::o

Swarm Source

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