ETH Price: $3,101.11 (+1.06%)
Gas: 8 Gwei

Token

Fooyao Pass (FYP)
 

Overview

Max Total Supply

316 FYP

Holders

278

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FYP
0x8028335048390d14408986b34b09a2cf0a6c9877
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:
fooyaoMintPass

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


// ERC721A Contracts v4.0.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))) : '.json';
    }

    /**
     * @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);
        unchecked {
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 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++;
        }
    }

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

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}


    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }


    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            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
            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)
        }
    }
}


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        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);
    }
}

pragma solidity ^0.8.0;

abstract contract ReentrancyGuard {
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

        _status = _NOT_ENTERED;
    }
}


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

pragma solidity ^0.8.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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



pragma solidity >=0.8.0 <0.9.0;


contract fooyaoMintPass is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string public baseURI = "ipfs://QmSJxgvrydCKQ5fzjXYvq1gt4KBJ1T5Wx4BrKqbisshSNn/";

    uint256 public cost = 0.00625 ether;
    uint256 public maxSupply = 250;
    bool public paused = false;

    mapping(address=>uint256[]) private owner_tokenids;
    mapping(uint256=>uint256) private NFT_expTime;

    constructor()
        ERC721A('Fooyao Pass', 'FYP') {}

    function mint(uint256 month) public payable nonReentrant {
        require(!paused, "Minting is paused");
        require(totalSupply() + 1 <= maxSupply, "Max supply exceeded");
        require(msg.value >= cost * month, "Insufficient funds");
        uint256 tokenId = _nextTokenId();
        owner_tokenids[msg.sender].push(tokenId);
        NFT_expTime[tokenId] = block.timestamp + 30 * 24 * 3600 * month;
        _safeMint(_msgSender(), 1);
        payable(owner()).transfer(msg.value);
    }

    function renew(uint256 month, uint256 tokenId) public payable nonReentrant {
        require(msg.value >= cost * month, "Insufficient funds");
        NFT_expTime[tokenId] = block.timestamp + 30 * 24 * 3600 * month;
        payable(owner()).transfer(msg.value);
    }

    function get_owner_tokenids(address theAddress) external view returns (uint256[] memory) {
        return owner_tokenids[theAddress];
    }

    function expTime(uint256 tokenId) external view returns (uint256) {
        return NFT_expTime[tokenId];
    }

    function isExp(uint256 tokenId) external view returns (bool) {
        return block.timestamp < NFT_expTime[tokenId];
    }

    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");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0?string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")): "";
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    function setCost(uint256 _cost) external onlyOwner {
        cost = _cost;
    }

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

    function setPaused(bool _state) external onlyOwner {
        paused = _state;
    }

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

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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"expTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"theAddress","type":"address"}],"name":"get_owner_tokenids","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isExp","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"month","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"month","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"renew","outputs":[],"stateMutability":"payable","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":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603660808181529062001f6160a039600a90620000229082620001bf565b506616345785d8a000600b5560fa600c55600d805460ff191690553480156200004a57600080fd5b506040518060400160405280600b81526020016a466f6f79616f205061737360a81b8152506040518060400160405280600381526020016204659560ec1b81525081600290816200009c9190620001bf565b506003620000ab8282620001bf565b50506000805550620000bd33620000c8565b60016009556200028b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014557607f821691505b6020821081036200016657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ba57600081815260208120601f850160051c81016020861015620001955750805b601f850160051c820191505b81811015620001b657828155600101620001a1565b5050505b505050565b81516001600160401b03811115620001db57620001db6200011a565b620001f381620001ec845462000130565b846200016c565b602080601f8311600181146200022b5760008415620002125750858301515b600019600386901b1c1916600185901b178555620001b6565b600085815260208120601f198616915b828110156200025c578886015182559484019460019091019084016200023b565b50858210156200027b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611cc6806200029b6000396000f3fe6080604052600436106101d85760003560e01c80636f8b44b011610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610546578063d5abeb0114610566578063e985e9c51461057c578063f2fde38b1461059c57600080fd5b8063a22cb465146104c4578063b57770ea146104e4578063b88d4fde14610513578063c475abff1461053357600080fd5b80639068999e116100d15780639068999e1461044257806395d89b411461046f5780639b0e6e4c14610484578063a0712d68146104b157600080fd5b80636f8b44b0146103cf57806370a08231146103ef578063715018a61461040f5780638da5cb5b1461042457600080fd5b806323b872dd1161017a57806355f804b31161014957806355f804b3146103605780635c975abb146103805780636352211e1461039a5780636c0360eb146103ba57600080fd5b806323b872dd146102eb5780633ccfd60b1461030b57806342842e0e1461032057806344a0d68a1461034057600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313faede61461028e57806316c38b3c146102b257806318160ddd146102d257600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f836600461160e565b6105bc565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022761060e565b604051610209919061167b565b34801561024057600080fd5b5061025461024f36600461168e565b6106a0565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c6102873660046116c3565b6106e4565b005b34801561029a57600080fd5b506102a4600b5481565b604051908152602001610209565b3480156102be57600080fd5b5061028c6102cd3660046116fd565b6107b6565b3480156102de57600080fd5b50600154600054036102a4565b3480156102f757600080fd5b5061028c610306366004611718565b6107fc565b34801561031757600080fd5b5061028c61080c565b34801561032c57600080fd5b5061028c61033b366004611718565b6108ba565b34801561034c57600080fd5b5061028c61035b36600461168e565b6108d5565b34801561036c57600080fd5b5061028c61037b3660046117e0565b610904565b34801561038c57600080fd5b50600d546101fd9060ff1681565b3480156103a657600080fd5b506102546103b536600461168e565b61093e565b3480156103c657600080fd5b50610227610949565b3480156103db57600080fd5b5061028c6103ea36600461168e565b6109d7565b3480156103fb57600080fd5b506102a461040a366004611829565b610a06565b34801561041b57600080fd5b5061028c610a55565b34801561043057600080fd5b506008546001600160a01b0316610254565b34801561044e57600080fd5b5061046261045d366004611829565b610a8b565b6040516102099190611844565b34801561047b57600080fd5b50610227610af7565b34801561049057600080fd5b506102a461049f36600461168e565b6000908152600f602052604090205490565b61028c6104bf36600461168e565b610b06565b3480156104d057600080fd5b5061028c6104df366004611888565b610cc4565b3480156104f057600080fd5b506101fd6104ff36600461168e565b6000908152600f6020526040902054421090565b34801561051f57600080fd5b5061028c61052e3660046118bb565b610d59565b61028c610541366004611937565b610da3565b34801561055257600080fd5b5061022761056136600461168e565b610e53565b34801561057257600080fd5b506102a4600c5481565b34801561058857600080fd5b506101fd610597366004611959565b610f1e565b3480156105a857600080fd5b5061028c6105b7366004611829565b610f4c565b60006301ffc9a760e01b6001600160e01b0319831614806105ed57506380ac58cd60e01b6001600160e01b03198316145b806106085750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461061d90611983565b80601f016020809104026020016040519081016040528092919081815260200182805461064990611983565b80156106965780601f1061066b57610100808354040283529160200191610696565b820191906000526020600020905b81548152906001019060200180831161067957829003601f168201915b5050505050905090565b60006106ab82610fe7565b6106c8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ef8261100e565b9050806001600160a01b0316836001600160a01b0316036107235760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461075a5761073d8133610f1e565b61075a576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146107e95760405162461bcd60e51b81526004016107e0906119bd565b60405180910390fd5b600d805460ff1916911515919091179055565b610807838383611075565b505050565b6008546001600160a01b031633146108365760405162461bcd60e51b81526004016107e0906119bd565b6002600954036108585760405162461bcd60e51b81526004016107e0906119f2565b6002600955604051600090339047908381818185875af1925050503d806000811461089f576040519150601f19603f3d011682016040523d82523d6000602084013e6108a4565b606091505b50509050806108b257600080fd5b506001600955565b61080783838360405180602001604052806000815250610d59565b6008546001600160a01b031633146108ff5760405162461bcd60e51b81526004016107e0906119bd565b600b55565b6008546001600160a01b0316331461092e5760405162461bcd60e51b81526004016107e0906119bd565b600a61093a8282611a77565b5050565b60006106088261100e565b600a805461095690611983565b80601f016020809104026020016040519081016040528092919081815260200182805461098290611983565b80156109cf5780601f106109a4576101008083540402835291602001916109cf565b820191906000526020600020905b8154815290600101906020018083116109b257829003601f168201915b505050505081565b6008546001600160a01b03163314610a015760405162461bcd60e51b81526004016107e0906119bd565b600c55565b60006001600160a01b038216610a2f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a7f5760405162461bcd60e51b81526004016107e0906119bd565b610a89600061121c565b565b6001600160a01b0381166000908152600e6020908152604091829020805483518184028101840190945280845260609392830182828015610aeb57602002820191906000526020600020905b815481526020019060010190808311610ad7575b50505050509050919050565b60606003805461061d90611983565b600260095403610b285760405162461bcd60e51b81526004016107e0906119f2565b6002600955600d5460ff1615610b745760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b60448201526064016107e0565b600c5460015460005403610b89906001611b4d565b1115610bcd5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016107e0565b80600b54610bdb9190611b60565b341015610c1f5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016107e0565b60008054338252600e60209081526040832080546001810182559084529220909101819055610c518262278d00611b60565b610c5b9042611b4d565b6000828152600f6020526040902055610c7533600161126e565b6008546001600160a01b03165b6001600160a01b03166108fc349081150290604051600060405180830381858888f19350505050158015610cba573d6000803e3d6000fd5b5050600160095550565b336001600160a01b03831603610ced5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d64848484611075565b6001600160a01b0383163b15610d9d57610d8084848484611288565b610d9d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600260095403610dc55760405162461bcd60e51b81526004016107e0906119f2565b6002600955600b54610dd8908390611b60565b341015610e1c5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016107e0565b610e298262278d00611b60565b610e339042611b4d565b6000828152600f60205260409020556008546001600160a01b0316610c82565b6060610e5e82610fe7565b610ec25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107e0565b6000610ecc611374565b90506000815111610eec5760405180602001604052806000815250610f17565b80610ef684611383565b604051602001610f07929190611b77565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610f765760405162461bcd60e51b81526004016107e0906119bd565b6001600160a01b038116610fdb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e0565b610fe48161121c565b50565b6000805482108015610608575050600090815260046020526040902054600160e01b161590565b60008160005481101561105c5760008181526004602052604081205490600160e01b8216900361105a575b80600003610f17575060001901600081815260046020526040902054611039565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110808261100e565b9050836001600160a01b0316816001600160a01b0316146110b35760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110d157506110d18533610f1e565b806110ec5750336110e1846106a0565b6001600160a01b0316145b90508061110c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661113357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036111d4576001830160008181526004602052604081205490036111d25760005481146111d25760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61093a828260405180602001604052806000815250611484565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112bd903390899088908890600401611bb6565b6020604051808303816000875af19250505080156112f8575060408051601f3d908101601f191682019092526112f591810190611bf3565b60015b611356573d808015611326576040519150601f19603f3d011682016040523d82523d6000602084013e61132b565b606091505b50805160000361134e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461061d90611983565b6060816000036113aa5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113d457806113be81611c10565b91506113cd9050600a83611c3f565b91506113ae565b60008167ffffffffffffffff8111156113ef576113ef611754565b6040519080825280601f01601f191660200182016040528015611419576020820181803683370190505b5090505b841561136c5761142e600183611c53565b915061143b600a86611c66565b611446906030611b4d565b60f81b81838151811061145b5761145b611c7a565b60200101906001600160f81b031916908160001a90535061147d600a86611c3f565b945061141d565b6000546001600160a01b0384166114ad57604051622e076360e81b815260040160405180910390fd5b826000036114ce5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156115a3575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461156c6000878480600101955087611288565b611589576040516368d2bf6b60e11b815260040160405180910390fd5b80821061152157826000541461159e57600080fd5b6115e8565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115a4575b506000908155610d9d9085838684565b6001600160e01b031981168114610fe457600080fd5b60006020828403121561162057600080fd5b8135610f17816115f8565b60005b8381101561164657818101518382015260200161162e565b50506000910152565b6000815180845261166781602086016020860161162b565b601f01601f19169290920160200192915050565b602081526000610f17602083018461164f565b6000602082840312156116a057600080fd5b5035919050565b80356001600160a01b03811681146116be57600080fd5b919050565b600080604083850312156116d657600080fd5b6116df836116a7565b946020939093013593505050565b803580151581146116be57600080fd5b60006020828403121561170f57600080fd5b610f17826116ed565b60008060006060848603121561172d57600080fd5b611736846116a7565b9250611744602085016116a7565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561178557611785611754565b604051601f8501601f19908116603f011681019082821181831017156117ad576117ad611754565b816040528093508581528686860111156117c657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156117f257600080fd5b813567ffffffffffffffff81111561180957600080fd5b8201601f8101841361181a57600080fd5b61136c8482356020840161176a565b60006020828403121561183b57600080fd5b610f17826116a7565b6020808252825182820181905260009190848201906040850190845b8181101561187c57835183529284019291840191600101611860565b50909695505050505050565b6000806040838503121561189b57600080fd5b6118a4836116a7565b91506118b2602084016116ed565b90509250929050565b600080600080608085870312156118d157600080fd5b6118da856116a7565b93506118e8602086016116a7565b925060408501359150606085013567ffffffffffffffff81111561190b57600080fd5b8501601f8101871361191c57600080fd5b61192b8782356020840161176a565b91505092959194509250565b6000806040838503121561194a57600080fd5b50508035926020909101359150565b6000806040838503121561196c57600080fd5b611975836116a7565b91506118b2602084016116a7565b600181811c9082168061199757607f821691505b6020821081036119b757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b601f82111561080757600081815260208120601f850160051c81016020861015611a505750805b601f850160051c820191505b81811015611a6f57828155600101611a5c565b505050505050565b815167ffffffffffffffff811115611a9157611a91611754565b611aa581611a9f8454611983565b84611a29565b602080601f831160018114611ada5760008415611ac25750858301515b600019600386901b1c1916600185901b178555611a6f565b600085815260208120601f198616915b82811015611b0957888601518255948401946001909101908401611aea565b5085821015611b275787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561060857610608611b37565b808202811582820484141761060857610608611b37565b60008351611b8981846020880161162b565b835190830190611b9d81836020880161162b565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611be99083018461164f565b9695505050505050565b600060208284031215611c0557600080fd5b8151610f17816115f8565b600060018201611c2257611c22611b37565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611c4e57611c4e611c29565b500490565b8181038181111561060857610608611b37565b600082611c7557611c75611c29565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122009edb1cf0ec7192e65e9aa4d14c767de18c5bd08d60ff02bf69d8cc0779e990c64736f6c63430008130033697066733a2f2f516d534a786776727964434b5135667a6a58597671316774344b424a31543557783442724b716269737368534e6e2f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636f8b44b011610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610546578063d5abeb0114610566578063e985e9c51461057c578063f2fde38b1461059c57600080fd5b8063a22cb465146104c4578063b57770ea146104e4578063b88d4fde14610513578063c475abff1461053357600080fd5b80639068999e116100d15780639068999e1461044257806395d89b411461046f5780639b0e6e4c14610484578063a0712d68146104b157600080fd5b80636f8b44b0146103cf57806370a08231146103ef578063715018a61461040f5780638da5cb5b1461042457600080fd5b806323b872dd1161017a57806355f804b31161014957806355f804b3146103605780635c975abb146103805780636352211e1461039a5780636c0360eb146103ba57600080fd5b806323b872dd146102eb5780633ccfd60b1461030b57806342842e0e1461032057806344a0d68a1461034057600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313faede61461028e57806316c38b3c146102b257806318160ddd146102d257600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f836600461160e565b6105bc565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022761060e565b604051610209919061167b565b34801561024057600080fd5b5061025461024f36600461168e565b6106a0565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c6102873660046116c3565b6106e4565b005b34801561029a57600080fd5b506102a4600b5481565b604051908152602001610209565b3480156102be57600080fd5b5061028c6102cd3660046116fd565b6107b6565b3480156102de57600080fd5b50600154600054036102a4565b3480156102f757600080fd5b5061028c610306366004611718565b6107fc565b34801561031757600080fd5b5061028c61080c565b34801561032c57600080fd5b5061028c61033b366004611718565b6108ba565b34801561034c57600080fd5b5061028c61035b36600461168e565b6108d5565b34801561036c57600080fd5b5061028c61037b3660046117e0565b610904565b34801561038c57600080fd5b50600d546101fd9060ff1681565b3480156103a657600080fd5b506102546103b536600461168e565b61093e565b3480156103c657600080fd5b50610227610949565b3480156103db57600080fd5b5061028c6103ea36600461168e565b6109d7565b3480156103fb57600080fd5b506102a461040a366004611829565b610a06565b34801561041b57600080fd5b5061028c610a55565b34801561043057600080fd5b506008546001600160a01b0316610254565b34801561044e57600080fd5b5061046261045d366004611829565b610a8b565b6040516102099190611844565b34801561047b57600080fd5b50610227610af7565b34801561049057600080fd5b506102a461049f36600461168e565b6000908152600f602052604090205490565b61028c6104bf36600461168e565b610b06565b3480156104d057600080fd5b5061028c6104df366004611888565b610cc4565b3480156104f057600080fd5b506101fd6104ff36600461168e565b6000908152600f6020526040902054421090565b34801561051f57600080fd5b5061028c61052e3660046118bb565b610d59565b61028c610541366004611937565b610da3565b34801561055257600080fd5b5061022761056136600461168e565b610e53565b34801561057257600080fd5b506102a4600c5481565b34801561058857600080fd5b506101fd610597366004611959565b610f1e565b3480156105a857600080fd5b5061028c6105b7366004611829565b610f4c565b60006301ffc9a760e01b6001600160e01b0319831614806105ed57506380ac58cd60e01b6001600160e01b03198316145b806106085750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461061d90611983565b80601f016020809104026020016040519081016040528092919081815260200182805461064990611983565b80156106965780601f1061066b57610100808354040283529160200191610696565b820191906000526020600020905b81548152906001019060200180831161067957829003601f168201915b5050505050905090565b60006106ab82610fe7565b6106c8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ef8261100e565b9050806001600160a01b0316836001600160a01b0316036107235760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461075a5761073d8133610f1e565b61075a576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146107e95760405162461bcd60e51b81526004016107e0906119bd565b60405180910390fd5b600d805460ff1916911515919091179055565b610807838383611075565b505050565b6008546001600160a01b031633146108365760405162461bcd60e51b81526004016107e0906119bd565b6002600954036108585760405162461bcd60e51b81526004016107e0906119f2565b6002600955604051600090339047908381818185875af1925050503d806000811461089f576040519150601f19603f3d011682016040523d82523d6000602084013e6108a4565b606091505b50509050806108b257600080fd5b506001600955565b61080783838360405180602001604052806000815250610d59565b6008546001600160a01b031633146108ff5760405162461bcd60e51b81526004016107e0906119bd565b600b55565b6008546001600160a01b0316331461092e5760405162461bcd60e51b81526004016107e0906119bd565b600a61093a8282611a77565b5050565b60006106088261100e565b600a805461095690611983565b80601f016020809104026020016040519081016040528092919081815260200182805461098290611983565b80156109cf5780601f106109a4576101008083540402835291602001916109cf565b820191906000526020600020905b8154815290600101906020018083116109b257829003601f168201915b505050505081565b6008546001600160a01b03163314610a015760405162461bcd60e51b81526004016107e0906119bd565b600c55565b60006001600160a01b038216610a2f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a7f5760405162461bcd60e51b81526004016107e0906119bd565b610a89600061121c565b565b6001600160a01b0381166000908152600e6020908152604091829020805483518184028101840190945280845260609392830182828015610aeb57602002820191906000526020600020905b815481526020019060010190808311610ad7575b50505050509050919050565b60606003805461061d90611983565b600260095403610b285760405162461bcd60e51b81526004016107e0906119f2565b6002600955600d5460ff1615610b745760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b60448201526064016107e0565b600c5460015460005403610b89906001611b4d565b1115610bcd5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016107e0565b80600b54610bdb9190611b60565b341015610c1f5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016107e0565b60008054338252600e60209081526040832080546001810182559084529220909101819055610c518262278d00611b60565b610c5b9042611b4d565b6000828152600f6020526040902055610c7533600161126e565b6008546001600160a01b03165b6001600160a01b03166108fc349081150290604051600060405180830381858888f19350505050158015610cba573d6000803e3d6000fd5b5050600160095550565b336001600160a01b03831603610ced5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d64848484611075565b6001600160a01b0383163b15610d9d57610d8084848484611288565b610d9d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600260095403610dc55760405162461bcd60e51b81526004016107e0906119f2565b6002600955600b54610dd8908390611b60565b341015610e1c5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016107e0565b610e298262278d00611b60565b610e339042611b4d565b6000828152600f60205260409020556008546001600160a01b0316610c82565b6060610e5e82610fe7565b610ec25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107e0565b6000610ecc611374565b90506000815111610eec5760405180602001604052806000815250610f17565b80610ef684611383565b604051602001610f07929190611b77565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610f765760405162461bcd60e51b81526004016107e0906119bd565b6001600160a01b038116610fdb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e0565b610fe48161121c565b50565b6000805482108015610608575050600090815260046020526040902054600160e01b161590565b60008160005481101561105c5760008181526004602052604081205490600160e01b8216900361105a575b80600003610f17575060001901600081815260046020526040902054611039565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110808261100e565b9050836001600160a01b0316816001600160a01b0316146110b35760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110d157506110d18533610f1e565b806110ec5750336110e1846106a0565b6001600160a01b0316145b90508061110c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661113357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036111d4576001830160008181526004602052604081205490036111d25760005481146111d25760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61093a828260405180602001604052806000815250611484565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112bd903390899088908890600401611bb6565b6020604051808303816000875af19250505080156112f8575060408051601f3d908101601f191682019092526112f591810190611bf3565b60015b611356573d808015611326576040519150601f19603f3d011682016040523d82523d6000602084013e61132b565b606091505b50805160000361134e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461061d90611983565b6060816000036113aa5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113d457806113be81611c10565b91506113cd9050600a83611c3f565b91506113ae565b60008167ffffffffffffffff8111156113ef576113ef611754565b6040519080825280601f01601f191660200182016040528015611419576020820181803683370190505b5090505b841561136c5761142e600183611c53565b915061143b600a86611c66565b611446906030611b4d565b60f81b81838151811061145b5761145b611c7a565b60200101906001600160f81b031916908160001a90535061147d600a86611c3f565b945061141d565b6000546001600160a01b0384166114ad57604051622e076360e81b815260040160405180910390fd5b826000036114ce5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156115a3575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461156c6000878480600101955087611288565b611589576040516368d2bf6b60e11b815260040160405180910390fd5b80821061152157826000541461159e57600080fd5b6115e8565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115a4575b506000908155610d9d9085838684565b6001600160e01b031981168114610fe457600080fd5b60006020828403121561162057600080fd5b8135610f17816115f8565b60005b8381101561164657818101518382015260200161162e565b50506000910152565b6000815180845261166781602086016020860161162b565b601f01601f19169290920160200192915050565b602081526000610f17602083018461164f565b6000602082840312156116a057600080fd5b5035919050565b80356001600160a01b03811681146116be57600080fd5b919050565b600080604083850312156116d657600080fd5b6116df836116a7565b946020939093013593505050565b803580151581146116be57600080fd5b60006020828403121561170f57600080fd5b610f17826116ed565b60008060006060848603121561172d57600080fd5b611736846116a7565b9250611744602085016116a7565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561178557611785611754565b604051601f8501601f19908116603f011681019082821181831017156117ad576117ad611754565b816040528093508581528686860111156117c657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156117f257600080fd5b813567ffffffffffffffff81111561180957600080fd5b8201601f8101841361181a57600080fd5b61136c8482356020840161176a565b60006020828403121561183b57600080fd5b610f17826116a7565b6020808252825182820181905260009190848201906040850190845b8181101561187c57835183529284019291840191600101611860565b50909695505050505050565b6000806040838503121561189b57600080fd5b6118a4836116a7565b91506118b2602084016116ed565b90509250929050565b600080600080608085870312156118d157600080fd5b6118da856116a7565b93506118e8602086016116a7565b925060408501359150606085013567ffffffffffffffff81111561190b57600080fd5b8501601f8101871361191c57600080fd5b61192b8782356020840161176a565b91505092959194509250565b6000806040838503121561194a57600080fd5b50508035926020909101359150565b6000806040838503121561196c57600080fd5b611975836116a7565b91506118b2602084016116a7565b600181811c9082168061199757607f821691505b6020821081036119b757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b601f82111561080757600081815260208120601f850160051c81016020861015611a505750805b601f850160051c820191505b81811015611a6f57828155600101611a5c565b505050505050565b815167ffffffffffffffff811115611a9157611a91611754565b611aa581611a9f8454611983565b84611a29565b602080601f831160018114611ada5760008415611ac25750858301515b600019600386901b1c1916600185901b178555611a6f565b600085815260208120601f198616915b82811015611b0957888601518255948401946001909101908401611aea565b5085821015611b275787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561060857610608611b37565b808202811582820484141761060857610608611b37565b60008351611b8981846020880161162b565b835190830190611b9d81836020880161162b565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611be99083018461164f565b9695505050505050565b600060208284031215611c0557600080fd5b8151610f17816115f8565b600060018201611c2257611c22611b37565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611c4e57611c4e611c29565b500490565b8181038181111561060857610608611b37565b600082611c7557611c75611c29565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122009edb1cf0ec7192e65e9aa4d14c767de18c5bd08d60ff02bf69d8cc0779e990c64736f6c63430008130033

Deployed Bytecode Sourcemap

39659:2728:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12966:615;;;;;;;;;;-1:-1:-1;12966:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;12966:615:0;;;;;;;;17979:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20052:204::-;;;;;;;;;;-1:-1:-1;20052:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;20052:204:0;1533:203:1;19512:474:0;;;;;;;;;;-1:-1:-1;19512:474:0;;;;;:::i;:::-;;:::i;:::-;;39850:35;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;39850:35:0;2178:177:1;42115:85:0;;;;;;;;;;-1:-1:-1;42115:85:0;;;;;:::i;:::-;;:::i;12020:315::-;;;;;;;;;;-1:-1:-1;12286:12:0;;12073:7;12270:13;:28;12020:315;;20938:170;;;;;;;;;;-1:-1:-1;20938:170:0;;;;;:::i;:::-;;:::i;42208:176::-;;;;;;;;;;;;;:::i;21179:185::-;;;;;;;;;;-1:-1:-1;21179:185:0;;;;;:::i;:::-;;:::i;41925:82::-;;;;;;;;;;-1:-1:-1;41925:82:0;;;;;:::i;:::-;;:::i;42015:92::-;;;;;;;;;;-1:-1:-1;42015:92:0;;;;;:::i;:::-;;:::i;39929:26::-;;;;;;;;;;-1:-1:-1;39929:26:0;;;;;;;;17768:144;;;;;;;;;;-1:-1:-1;17768:144:0;;;;;:::i;:::-;;:::i;39761:80::-;;;;;;;;;;;;;:::i;41815:102::-;;;;;;;;;;-1:-1:-1;41815:102:0;;;;;:::i;:::-;;:::i;13645:224::-;;;;;;;;;;-1:-1:-1;13645:224:0;;;;;:::i;:::-;;:::i;38801:103::-;;;;;;;;;;;;;:::i;38150:87::-;;;;;;;;;;-1:-1:-1;38223:6:0;;-1:-1:-1;;;;;38223:6:0;38150:87;;40930:141;;;;;;;;;;-1:-1:-1;40930:141:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;18148:104::-;;;;;;;;;;;;;:::i;41079:112::-;;;;;;;;;;-1:-1:-1;41079:112:0;;;;;:::i;:::-;41136:7;41163:20;;;:11;:20;;;;;;;41079:112;40138:505;;;;;;:::i;:::-;;:::i;20328:308::-;;;;;;;;;;-1:-1:-1;20328:308:0;;;;;:::i;:::-;;:::i;41199:125::-;;;;;;;;;;-1:-1:-1;41199:125:0;;;;;:::i;:::-;41254:4;41296:20;;;:11;:20;;;;;;41278:15;:38;;41199:125;21435:396;;;;;;;;;;-1:-1:-1;21435:396:0;;;;;:::i;:::-;;:::i;40651:271::-;;;;;;:::i;:::-;;:::i;41448:359::-;;;;;;;;;;-1:-1:-1;41448:359:0;;;;;:::i;:::-;;:::i;39892:30::-;;;;;;;;;;;;;;;;20707:164;;;;;;;;;;-1:-1:-1;20707:164:0;;;;;:::i;:::-;;:::i;39059:201::-;;;;;;;;;;-1:-1:-1;39059:201:0;;;;;:::i;:::-;;:::i;12966:615::-;13051:4;-1:-1:-1;;;;;;;;;13351:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;13428:25:0;;;13351:102;:179;;;-1:-1:-1;;;;;;;;;;13505:25:0;;;13351:179;13331:199;12966:615;-1:-1:-1;;12966:615:0:o;17979:100::-;18033:13;18066:5;18059:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17979:100;:::o;20052:204::-;20120:7;20145:16;20153:7;20145;:16::i;:::-;20140:64;;20170:34;;-1:-1:-1;;;20170:34:0;;;;;;;;;;;20140:64;-1:-1:-1;20224:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20224:24:0;;20052:204::o;19512:474::-;19585:13;19617:27;19636:7;19617:18;:27::i;:::-;19585:61;;19667:5;-1:-1:-1;;;;;19661:11:0;:2;-1:-1:-1;;;;;19661:11:0;;19657:48;;19681:24;;-1:-1:-1;;;19681:24:0;;;;;;;;;;;19657:48;33532:10;-1:-1:-1;;;;;19722:28:0;;;19718:175;;19770:44;19787:5;33532:10;20707:164;:::i;19770:44::-;19765:128;;19842:35;;-1:-1:-1;;;19842:35:0;;;;;;;;;;;19765:128;19905:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19905:29:0;-1:-1:-1;;;;;19905:29:0;;;;;;;;;19950:28;;19905:24;;19950:28;;;;;;;19574:412;19512:474;;:::o;42115:85::-;38223:6;;-1:-1:-1;;;;;38223:6:0;33532:10;38370:23;38362:68;;;;-1:-1:-1;;;38362:68:0;;;;;;;:::i;:::-;;;;;;;;;42177:6:::1;:15:::0;;-1:-1:-1;;42177:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42115:85::o;20938:170::-;21072:28;21082:4;21088:2;21092:7;21072:9;:28::i;:::-;20938:170;;;:::o;42208:176::-;38223:6;;-1:-1:-1;;;;;38223:6:0;33532:10;38370:23;38362:68;;;;-1:-1:-1;;;38362:68:0;;;;;;;:::i;:::-;36883:1:::1;37103:7;;:19:::0;37095:63:::1;;;;-1:-1:-1::0;;;37095:63:0::1;;;;;;;:::i;:::-;36883:1;37236:7;:18:::0;42290:58:::2;::::0;42272:12:::2;::::0;42298:10:::2;::::0;42322:21:::2;::::0;42272:12;42290:58;42272:12;42290:58;42322:21;42298:10;42290:58:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42271:77;;;42367:7;42359:16;;;::::0;::::2;;-1:-1:-1::0;36839:1:0::1;37281:7;:22:::0;42208:176::o;21179:185::-;21317:39;21334:4;21340:2;21344:7;21317:39;;;;;;;;;;;;:16;:39::i;41925:82::-;38223:6;;-1:-1:-1;;;;;38223:6:0;33532:10;38370:23;38362:68;;;;-1:-1:-1;;;38362:68:0;;;;;;;:::i;:::-;41987:4:::1;:12:::0;41925:82::o;42015:92::-;38223:6;;-1:-1:-1;;;;;38223:6:0;33532:10;38370:23;38362:68;;;;-1:-1:-1;;;38362:68:0;;;;;;;:::i;:::-;42085:7:::1;:14;42095:4:::0;42085:7;:14:::1;:::i;:::-;;42015:92:::0;:::o;17768:144::-;17832:7;17875:27;17894:7;17875:18;:27::i;39761:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41815:102::-;38223:6;;-1:-1:-1;;;;;38223:6:0;33532:10;38370:23;38362:68;;;;-1:-1:-1;;;38362:68:0;;;;;;;:::i;:::-;41887:9:::1;:22:::0;41815:102::o;13645:224::-;13709:7;-1:-1:-1;;;;;13733:19:0;;13729:60;;13761:28;;-1:-1:-1;;;13761:28:0;;;;;;;;;;;13729:60;-1:-1:-1;;;;;;13807:25:0;;;;;:18;:25;;;;;;8984:13;13807:54;;13645:224::o;38801:103::-;38223:6;;-1:-1:-1;;;;;38223:6:0;33532:10;38370:23;38362:68;;;;-1:-1:-1;;;38362:68:0;;;;;;;:::i;:::-;38866:30:::1;38893:1;38866:18;:30::i;:::-;38801:103::o:0;40930:141::-;-1:-1:-1;;;;;41037:26:0;;;;;;:14;:26;;;;;;;;;41030:33;;;;;;;;;;;;;;;;;41001:16;;41030:33;;;41037:26;41030:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40930:141;;;:::o;18148:104::-;18204:13;18237:7;18230:14;;;;;:::i;40138:505::-;36883:1;37103:7;;:19;37095:63;;;;-1:-1:-1;;;37095:63:0;;;;;;;:::i;:::-;36883:1;37236:7;:18;40215:6:::1;::::0;::::1;;40214:7;40206:37;;;::::0;-1:-1:-1;;;40206:37:0;;10267:2:1;40206:37:0::1;::::0;::::1;10249:21:1::0;10306:2;10286:18;;;10279:30;-1:-1:-1;;;10325:18:1;;;10318:47;10382:18;;40206:37:0::1;10065:341:1::0;40206:37:0::1;40283:9;::::0;12286:12;;12073:7;12270:13;:28;40262:17:::1;::::0;40278:1:::1;40262:17;:::i;:::-;:30;;40254:62;;;::::0;-1:-1:-1;;;40254:62:0;;10875:2:1;40254:62:0::1;::::0;::::1;10857:21:1::0;10914:2;10894:18;;;10887:30;-1:-1:-1;;;10933:18:1;;;10926:49;10992:18;;40254:62:0::1;10673:343:1::0;40254:62:0::1;40355:5;40348:4;;:12;;;;:::i;:::-;40335:9;:25;;40327:56;;;::::0;-1:-1:-1;;;40327:56:0;;11396:2:1;40327:56:0::1;::::0;::::1;11378:21:1::0;11435:2;11415:18;;;11408:30;-1:-1:-1;;;11454:18:1;;;11447:48;11512:18;;40327:56:0::1;11194:342:1::0;40327:56:0::1;40394:15;11788:13:::0;;40452:10:::1;40437:26:::0;;:14:::1;:26;::::0;;;;;;:40;;::::1;::::0;::::1;::::0;;;;;;;;;::::1;::::0;;;40529:22:::1;40546:5:::0;40529:14:::1;:22;:::i;:::-;40511:40;::::0;:15:::1;:40;:::i;:::-;40488:20;::::0;;;:11:::1;:20;::::0;;;;:63;40562:26:::1;33532:10:::0;40586:1:::1;40562:9;:26::i;:::-;38223:6:::0;;-1:-1:-1;;;;;38223:6:0;40607:7:::1;-1:-1:-1::0;;;;;40599:25:0::1;:36;40625:9;40599:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;36839:1:0;37281:7;:22;-1:-1:-1;40138:505:0:o;20328:308::-;33532:10;-1:-1:-1;;;;;20427:31:0;;;20423:61;;20467:17;;-1:-1:-1;;;20467:17:0;;;;;;;;;;;20423:61;33532:10;20497:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20497:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20497:60:0;;;;;;;;;;20573:55;;540:41:1;;;20497:49:0;;33532:10;20573:55;;513:18:1;20573:55:0;;;;;;;20328:308;;:::o;21435:396::-;21602:28;21612:4;21618:2;21622:7;21602:9;:28::i;:::-;-1:-1:-1;;;;;21645:14:0;;;:19;21641:183;;21684:56;21715:4;21721:2;21725:7;21734:5;21684:30;:56::i;:::-;21679:145;;21768:40;;-1:-1:-1;;;21768:40:0;;;;;;;;;;;21679:145;21435:396;;;;:::o;40651:271::-;36883:1;37103:7;;:19;37095:63;;;;-1:-1:-1;;;37095:63:0;;;;;;;:::i;:::-;36883:1;37236:7;:18;40758:4:::1;::::0;:12:::1;::::0;40765:5;;40758:12:::1;:::i;:::-;40745:9;:25;;40737:56;;;::::0;-1:-1:-1;;;40737:56:0;;11396:2:1;40737:56:0::1;::::0;::::1;11378:21:1::0;11435:2;11415:18;;;11408:30;-1:-1:-1;;;11454:18:1;;;11447:48;11512:18;;40737:56:0::1;11194:342:1::0;40737:56:0::1;40845:22;40862:5:::0;40845:14:::1;:22;:::i;:::-;40827:40;::::0;:15:::1;:40;:::i;:::-;40804:20;::::0;;;:11:::1;:20;::::0;;;;:63;38223:6;;-1:-1:-1;;;;;38223:6:0;40886:7:::1;38150:87:::0;41448:359;41521:13;41555:16;41563:7;41555;:16::i;:::-;41547:76;;;;-1:-1:-1;;;41547:76:0;;11743:2:1;41547:76:0;;;11725:21:1;11782:2;11762:18;;;11755:30;11821:34;11801:18;;;11794:62;-1:-1:-1;;;11872:18:1;;;11865:45;11927:19;;41547:76:0;11541:411:1;41547:76:0;41634:28;41665:10;:8;:10::i;:::-;41634:41;;41724:1;41699:14;41693:28;:32;:106;;;;;;;;;;;;;;;;;41750:14;41766:18;:7;:16;:18::i;:::-;41733:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41693:106;41686:113;41448:359;-1:-1:-1;;;41448:359:0:o;20707:164::-;-1:-1:-1;;;;;20828:25:0;;;20804:4;20828:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20707:164::o;39059:201::-;38223:6;;-1:-1:-1;;;;;38223:6:0;33532:10;38370:23;38362:68;;;;-1:-1:-1;;;38362:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39148:22:0;::::1;39140:73;;;::::0;-1:-1:-1;;;39140:73:0;;12827:2:1;39140:73:0::1;::::0;::::1;12809:21:1::0;12866:2;12846:18;;;12839:30;12905:34;12885:18;;;12878:62;-1:-1:-1;;;12956:18:1;;;12949:36;13002:19;;39140:73:0::1;12625:402:1::0;39140:73:0::1;39224:28;39243:8;39224:18;:28::i;:::-;39059:201:::0;:::o;22086:273::-;22143:4;22233:13;;22223:7;:23;22180:152;;;;-1:-1:-1;;22284:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22284:43:0;:48;;22086:273::o;15283:1129::-;15350:7;15385;15487:13;;15480:4;:20;15476:869;;;15525:14;15542:23;;;:17;:23;;;;;;;-1:-1:-1;;;15631:23:0;;:28;;15627:699;;16150:113;16157:6;16167:1;16157:11;16150:113;;-1:-1:-1;;;16228:6:0;16210:25;;;;:17;:25;;;;;;16150:113;;15627:699;15502:843;15476:869;16373:31;;-1:-1:-1;;;16373:31:0;;;;;;;;;;;26658:2515;26773:27;26803;26822:7;26803:18;:27::i;:::-;26773:57;;26888:4;-1:-1:-1;;;;;26847:45:0;26863:19;-1:-1:-1;;;;;26847:45:0;;26843:86;;26901:28;;-1:-1:-1;;;26901:28:0;;;;;;;;;;;26843:86;26942:22;33532:10;-1:-1:-1;;;;;26968:27:0;;;;:87;;-1:-1:-1;27012:43:0;27029:4;33532:10;20707:164;:::i;27012:43::-;26968:147;;;-1:-1:-1;33532:10:0;27072:20;27084:7;27072:11;:20::i;:::-;-1:-1:-1;;;;;27072:43:0;;26968:147;26942:174;;27134:17;27129:66;;27160:35;;-1:-1:-1;;;27160:35:0;;;;;;;;;;;27129:66;-1:-1:-1;;;;;27210:16:0;;27206:52;;27235:23;;-1:-1:-1;;;27235:23:0;;;;;;;;;;;27206:52;27387:24;;;;:15;:24;;;;;;;;27380:31;;-1:-1:-1;;;;;;27380:31:0;;;-1:-1:-1;;;;;27779:24:0;;;;;:18;:24;;;;;27777:26;;-1:-1:-1;;27777:26:0;;;27848:22;;;;;;;27846:24;;-1:-1:-1;27846:24:0;;;28141:26;;;:17;:26;;;;;-1:-1:-1;;;28229:15:0;9638:3;28229:41;28187:84;;:128;;28141:174;;;28435:46;;:51;;28431:626;;28539:1;28529:11;;28507:19;28662:30;;;:17;:30;;;;;;:35;;28658:384;;28800:13;;28785:11;:28;28781:242;;28947:30;;;;:17;:30;;;;;:52;;;28781:242;28488:569;28431:626;29104:7;29100:2;-1:-1:-1;;;;;29085:27:0;29094:4;-1:-1:-1;;;;;29085:27:0;;;;;;;;;;;26762:2411;;26658:2515;;;:::o;39420:191::-;39513:6;;;-1:-1:-1;;;;;39530:17:0;;;-1:-1:-1;;;;;;39530:17:0;;;;;;;39563:40;;39513:6;;;39530:17;39513:6;;39563:40;;39494:16;;39563:40;39483:128;39420:191;:::o;22443:104::-;22512:27;22522:2;22526:8;22512:27;;;;;;;;;;;;:9;:27::i;32386:716::-;32570:88;;-1:-1:-1;;;32570:88:0;;32549:4;;-1:-1:-1;;;;;32570:45:0;;;;;:88;;33532:10;;32637:4;;32643:7;;32652:5;;32570:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32570:88:0;;;;;;;;-1:-1:-1;;32570:88:0;;;;;;;;;;;;:::i;:::-;;;32566:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32853:6;:13;32870:1;32853:18;32849:235;;32899:40;;-1:-1:-1;;;32899:40:0;;;;;;;;;;;32849:235;33042:6;33036:13;33027:6;33023:2;33019:15;33012:38;32566:529;-1:-1:-1;;;;;;32729:64:0;-1:-1:-1;;;32729:64:0;;-1:-1:-1;32566:529:0;32386:716;;;;;;:::o;41332:108::-;41392:13;41425:7;41418:14;;;;;:::i;35163:532::-;35219:13;35249:5;35258:1;35249:10;35245:53;;-1:-1:-1;;35276:10:0;;;;;;;;;;;;-1:-1:-1;;;35276:10:0;;;;;35163:532::o;35245:53::-;35323:5;35308:12;35364:78;35371:9;;35364:78;;35397:8;;;;:::i;:::-;;-1:-1:-1;35420:10:0;;-1:-1:-1;35428:2:0;35420:10;;:::i;:::-;;;35364:78;;;35452:19;35484:6;35474:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35474:17:0;;35452:39;;35502:154;35509:10;;35502:154;;35536:11;35546:1;35536:11;;:::i;:::-;;-1:-1:-1;35605:10:0;35613:2;35605:5;:10;:::i;:::-;35592:24;;:2;:24;:::i;:::-;35579:39;;35562:6;35569;35562:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;35562:56:0;;;;;;;;-1:-1:-1;35633:11:0;35642:2;35633:11;;:::i;:::-;;;35502:154;;22920:1569;23043:20;23066:13;-1:-1:-1;;;;;23094:16:0;;23090:48;;23119:19;;-1:-1:-1;;;23119:19:0;;;;;;;;;;;23090:48;23153:8;23165:1;23153:13;23149:44;;23175:18;;-1:-1:-1;;;23175:18:0;;;;;;;;;;;23149:44;-1:-1:-1;;;;;23303:22:0;;;;;;:18;:22;;;;9121:2;23303:22;;;:70;;23341:31;23329:44;;23303:70;;;23388:31;;;:17;:31;;;;;23481:15;9638:3;23481:41;23439:84;;-1:-1:-1;23559:13:0;;9901:3;23544:56;23439:162;23388:213;;:31;;23682:23;;;;23726:14;:19;23722:635;;23766:313;23797:38;;23822:12;;-1:-1:-1;;;;;23797:38:0;;;23814:1;;23797:38;;23814:1;;23797:38;23863:69;23902:1;23906:2;23910:14;;;;;;23926:5;23863:30;:69::i;:::-;23858:174;;23968:40;;-1:-1:-1;;;23968:40:0;;;;;;;;;;;23858:174;24074:3;24059:12;:18;23766:313;;24160:12;24143:13;;:29;24139:43;;24174:8;;;24139:43;23722:635;;;24223:119;24254:40;;24279:14;;;;;-1:-1:-1;;;;;24254:40:0;;;24271:1;;24254:40;;24271:1;;24254:40;24337:3;24322:12;:18;24223:119;;23722:635;-1:-1:-1;24371:13:0;:28;;;24421:60;;24454:2;24458:12;24472:8;24421:60;:::i;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:160::-;2425:20;;2481:13;;2474:21;2464:32;;2454:60;;2510:1;2507;2500:12;2525:180;2581:6;2634:2;2622:9;2613:7;2609:23;2605:32;2602:52;;;2650:1;2647;2640:12;2602:52;2673:26;2689:9;2673:26;:::i;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:127::-;3104:10;3099:3;3095:20;3092:1;3085:31;3135:4;3132:1;3125:15;3159:4;3156:1;3149:15;3175:632;3240:5;3270:18;3311:2;3303:6;3300:14;3297:40;;;3317:18;;:::i;:::-;3392:2;3386:9;3360:2;3446:15;;-1:-1:-1;;3442:24:1;;;3468:2;3438:33;3434:42;3422:55;;;3492:18;;;3512:22;;;3489:46;3486:72;;;3538:18;;:::i;:::-;3578:10;3574:2;3567:22;3607:6;3598:15;;3637:6;3629;3622:22;3677:3;3668:6;3663:3;3659:16;3656:25;3653:45;;;3694:1;3691;3684:12;3653:45;3744:6;3739:3;3732:4;3724:6;3720:17;3707:44;3799:1;3792:4;3783:6;3775;3771:19;3767:30;3760:41;;;;3175:632;;;;;:::o;3812:451::-;3881:6;3934:2;3922:9;3913:7;3909:23;3905:32;3902:52;;;3950:1;3947;3940:12;3902:52;3990:9;3977:23;4023:18;4015:6;4012:30;4009:50;;;4055:1;4052;4045:12;4009:50;4078:22;;4131:4;4123:13;;4119:27;-1:-1:-1;4109:55:1;;4160:1;4157;4150:12;4109:55;4183:74;4249:7;4244:2;4231:16;4226:2;4222;4218:11;4183:74;:::i;4268:186::-;4327:6;4380:2;4368:9;4359:7;4355:23;4351:32;4348:52;;;4396:1;4393;4386:12;4348:52;4419:29;4438:9;4419:29;:::i;4459:632::-;4630:2;4682:21;;;4752:13;;4655:18;;;4774:22;;;4601:4;;4630:2;4853:15;;;;4827:2;4812:18;;;4601:4;4896:169;4910:6;4907:1;4904:13;4896:169;;;4971:13;;4959:26;;5040:15;;;;5005:12;;;;4932:1;4925:9;4896:169;;;-1:-1:-1;5082:3:1;;4459:632;-1:-1:-1;;;;;;4459:632:1:o;5096:254::-;5161:6;5169;5222:2;5210:9;5201:7;5197:23;5193:32;5190:52;;;5238:1;5235;5228:12;5190:52;5261:29;5280:9;5261:29;:::i;:::-;5251:39;;5309:35;5340:2;5329:9;5325:18;5309:35;:::i;:::-;5299:45;;5096:254;;;;;:::o;5355:667::-;5450:6;5458;5466;5474;5527:3;5515:9;5506:7;5502:23;5498:33;5495:53;;;5544:1;5541;5534:12;5495:53;5567:29;5586:9;5567:29;:::i;:::-;5557:39;;5615:38;5649:2;5638:9;5634:18;5615:38;:::i;:::-;5605:48;;5700:2;5689:9;5685:18;5672:32;5662:42;;5755:2;5744:9;5740:18;5727:32;5782:18;5774:6;5771:30;5768:50;;;5814:1;5811;5804:12;5768:50;5837:22;;5890:4;5882:13;;5878:27;-1:-1:-1;5868:55:1;;5919:1;5916;5909:12;5868:55;5942:74;6008:7;6003:2;5990:16;5985:2;5981;5977:11;5942:74;:::i;:::-;5932:84;;;5355:667;;;;;;;:::o;6027:248::-;6095:6;6103;6156:2;6144:9;6135:7;6131:23;6127:32;6124:52;;;6172:1;6169;6162:12;6124:52;-1:-1:-1;;6195:23:1;;;6265:2;6250:18;;;6237:32;;-1:-1:-1;6027:248:1:o;6280:260::-;6348:6;6356;6409:2;6397:9;6388:7;6384:23;6380:32;6377:52;;;6425:1;6422;6415:12;6377:52;6448:29;6467:9;6448:29;:::i;:::-;6438:39;;6496:38;6530:2;6519:9;6515:18;6496:38;:::i;6545:380::-;6624:1;6620:12;;;;6667;;;6688:61;;6742:4;6734:6;6730:17;6720:27;;6688:61;6795:2;6787:6;6784:14;6764:18;6761:38;6758:161;;6841:10;6836:3;6832:20;6829:1;6822:31;6876:4;6873:1;6866:15;6904:4;6901:1;6894:15;6758:161;;6545:380;;;:::o;6930:356::-;7132:2;7114:21;;;7151:18;;;7144:30;7210:34;7205:2;7190:18;;7183:62;7277:2;7262:18;;6930:356::o;7291:355::-;7493:2;7475:21;;;7532:2;7512:18;;;7505:30;7571:33;7566:2;7551:18;;7544:61;7637:2;7622:18;;7291:355::o;7987:545::-;8089:2;8084:3;8081:11;8078:448;;;8125:1;8150:5;8146:2;8139:17;8195:4;8191:2;8181:19;8265:2;8253:10;8249:19;8246:1;8242:27;8236:4;8232:38;8301:4;8289:10;8286:20;8283:47;;;-1:-1:-1;8324:4:1;8283:47;8379:2;8374:3;8370:12;8367:1;8363:20;8357:4;8353:31;8343:41;;8434:82;8452:2;8445:5;8442:13;8434:82;;;8497:17;;;8478:1;8467:13;8434:82;;;8438:3;;;7987:545;;;:::o;8708:1352::-;8834:3;8828:10;8861:18;8853:6;8850:30;8847:56;;;8883:18;;:::i;:::-;8912:97;9002:6;8962:38;8994:4;8988:11;8962:38;:::i;:::-;8956:4;8912:97;:::i;:::-;9064:4;;9128:2;9117:14;;9145:1;9140:663;;;;9847:1;9864:6;9861:89;;;-1:-1:-1;9916:19:1;;;9910:26;9861:89;-1:-1:-1;;8665:1:1;8661:11;;;8657:24;8653:29;8643:40;8689:1;8685:11;;;8640:57;9963:81;;9110:944;;9140:663;7934:1;7927:14;;;7971:4;7958:18;;-1:-1:-1;;9176:20:1;;;9294:236;9308:7;9305:1;9302:14;9294:236;;;9397:19;;;9391:26;9376:42;;9489:27;;;;9457:1;9445:14;;;;9324:19;;9294:236;;;9298:3;9558:6;9549:7;9546:19;9543:201;;;9619:19;;;9613:26;-1:-1:-1;;9702:1:1;9698:14;;;9714:3;9694:24;9690:37;9686:42;9671:58;9656:74;;9543:201;-1:-1:-1;;;;;9790:1:1;9774:14;;;9770:22;9757:36;;-1:-1:-1;8708:1352:1:o;10411:127::-;10472:10;10467:3;10463:20;10460:1;10453:31;10503:4;10500:1;10493:15;10527:4;10524:1;10517:15;10543:125;10608:9;;;10629:10;;;10626:36;;;10642:18;;:::i;11021:168::-;11094:9;;;11125;;11142:15;;;11136:22;;11122:37;11112:71;;11163:18;;:::i;11957:663::-;12237:3;12275:6;12269:13;12291:66;12350:6;12345:3;12338:4;12330:6;12326:17;12291:66;:::i;:::-;12420:13;;12379:16;;;;12442:70;12420:13;12379:16;12489:4;12477:17;;12442:70;:::i;:::-;-1:-1:-1;;;12534:20:1;;12563:22;;;12612:1;12601:13;;11957:663;-1:-1:-1;;;;11957:663:1:o;13032:489::-;-1:-1:-1;;;;;13301:15:1;;;13283:34;;13353:15;;13348:2;13333:18;;13326:43;13400:2;13385:18;;13378:34;;;13448:3;13443:2;13428:18;;13421:31;;;13226:4;;13469:46;;13495:19;;13487:6;13469:46;:::i;:::-;13461:54;13032:489;-1:-1:-1;;;;;;13032:489:1:o;13526:249::-;13595:6;13648:2;13636:9;13627:7;13623:23;13619:32;13616:52;;;13664:1;13661;13654:12;13616:52;13696:9;13690:16;13715:30;13739:5;13715:30;:::i;13780:135::-;13819:3;13840:17;;;13837:43;;13860:18;;:::i;:::-;-1:-1:-1;13907:1:1;13896:13;;13780:135::o;13920:127::-;13981:10;13976:3;13972:20;13969:1;13962:31;14012:4;14009:1;14002:15;14036:4;14033:1;14026:15;14052:120;14092:1;14118;14108:35;;14123:18;;:::i;:::-;-1:-1:-1;14157:9:1;;14052:120::o;14177:128::-;14244:9;;;14265:11;;;14262:37;;;14279:18;;:::i;14310:112::-;14342:1;14368;14358:35;;14373:18;;:::i;:::-;-1:-1:-1;14407:9:1;;14310:112::o;14427:127::-;14488:10;14483:3;14479:20;14476:1;14469:31;14519:4;14516:1;14509:15;14543:4;14540:1;14533:15

Swarm Source

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