ETH Price: $3,331.26 (-3.93%)

Token

Spanishfly NFT (SpanishflyNFT)
 

Overview

Max Total Supply

423 SpanishflyNFT

Holders

168

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ad1990.eth
Balance
2 SpanishflyNFT
0xfcb95624971d38bca2926d05cd433cdf4948a893
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:
SpanishflyNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-24
*/

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: contracts/erc721a/contracts/IERC721A.sol


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

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

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

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

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

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

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

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

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

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

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

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

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

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.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 bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

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

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

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

    // The 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`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

    // Mapping from token ID to approved address.
    mapping(uint256 => 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 auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

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

    /**
     * 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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

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

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

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

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

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

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

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

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

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

        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-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 {
        transferFrom(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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

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

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

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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




pragma solidity ^0.8.0;



contract SpanishflyNFT is Ownable, ERC721A {
    address private _owner;
    uint256 private constant _price = 0.005 ether;
    uint256 private constant _maxNft = 6666;
    uint256 private constant _freeNum = 2;
    uint256 private constant _wallet = 5;
    uint256 public _start = 1655995800;

    string private _baseTokenURI;
    mapping(uint256 => string) private _tokenURIs;
    mapping(uint256 => address) private _tokenAuthors;
    mapping(address => bool) public _airdrop;

    constructor() ERC721A("Spanishfly NFT", "SpanishflyNFT") {
        _baseTokenURI = "http://www.spanishfly.wtf/uri/";
        _owner = msg.sender;
    }

    modifier onlyAdmin() {
        require(_owner == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        if (bytes(_tokenURIs[tokenId]).length > 0) {
            return _tokenURIs[tokenId];
        } else {
            string memory baseURI = _baseURI();
            return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, Strings.toString(tokenId)))
            : '';
        }
    }

    function setBaseURI(string calldata uri) public onlyAdmin(){
        _baseTokenURI = uri;
    }

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

    function mint(address to,uint number) public payable {
        require(block.timestamp > _start,"Not started");
        require(number > 0, "error number");
        require(totalSupply() + number <= _maxNft, "Purchase would exceed max supply of NFTs");
        require(balanceOf(to) + number <= _wallet, "Up to five wallets");
        if(!_airdrop[to]){
            if(balanceOf(to) + number > _freeNum){
                require(msg.value >= _price * (balanceOf(to) + number - _freeNum), "Ether value sent is not correct");
            }
        } else{
            if(balanceOf(to) + number >= _wallet){
                _airdrop[to] = false;
            }
        }
        _safeMint(to, number);
    }
    function airdrop(address[] calldata addrs, uint256 number) public onlyAdmin(){
        for (uint i = 0; i < addrs.length; i++){
            _safeMint(addrs[i], number);
        }
    }
    function setAirdrop(address[] calldata addrs,bool status) public onlyAdmin(){
        for (uint i = 0; i < addrs.length; i++){
            _airdrop[addrs[i]] = status;
        }
    }
    function setStart(uint256 time) public onlyAdmin(){
        _start = time;
    }

    function withdraw(address to) public onlyAdmin(){
        uint256 balance = address(this).balance;
        payable(to).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_airdrop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256","name":"number","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"number","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"addrs","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setAirdrop","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":"time","type":"uint256"}],"name":"setStart","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":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526362b47d98600a553480156200001957600080fd5b506040518060400160405280600e81526020016d14dc185b9a5cda199b1e4813919560921b8152506040518060400160405280600d81526020016c14dc185b9a5cda199b1e539195609a1b815250620000816200007b6200011360201b60201c565b62000117565b81516200009690600390602085019062000167565b508051620000ac90600490602084019062000167565b506000600155505060408051808201909152601e8082527f687474703a2f2f7777772e7370616e697368666c792e7774662f7572692f00006020909201918252620000fa91600b9162000167565b50600980546001600160a01b031916331790556200024a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000175906200020d565b90600052602060002090601f016020900481019282620001995760008555620001e4565b82601f10620001b457805160ff1916838001178555620001e4565b82800160010185558215620001e4579182015b82811115620001e4578251825591602001919060010190620001c7565b50620001f2929150620001f6565b5090565b5b80821115620001f25760008155600101620001f7565b600181811c908216806200022257607f821691505b602082108114156200024457634e487b7160e01b600052602260045260246000fd5b50919050565b611b0e806200025a6000396000f3fe6080604052600436106101665760003560e01c80636e21fc87116100d1578063b88d4fde1161008a578063de4da0bd11610064578063de4da0bd14610420578063e985e9c514610440578063f2fde38b14610489578063f6a03ebf146104a957600080fd5b8063b88d4fde146103c0578063c204642c146103e0578063c87b56dd1461040057600080fd5b80636e21fc871461030857806370a0823114610338578063715018a6146103585780638da5cb5b1461036d57806395d89b411461038b578063a22cb465146103a057600080fd5b806340c10f191161012357806340c10f191461025f57806342842e0e1461027257806351cff8d91461029257806353ef6781146102b257806355f804b3146102c85780636352211e146102e857600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023f575b600080fd5b34801561017757600080fd5b5061018b6101863660046117cd565b6104c9565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b561051b565b604051610197919061192a565b3480156101ce57600080fd5b506101e26101dd366004611879565b6105ad565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611703565b6105f1565b005b34801561022857600080fd5b50600254600154035b604051908152602001610197565b34801561024b57600080fd5b5061021a61025a3660046115c1565b610691565b61021a61026d366004611703565b610822565b34801561027e57600080fd5b5061021a61028d3660046115c1565b610a83565b34801561029e57600080fd5b5061021a6102ad366004611573565b610aa3565b3480156102be57600080fd5b50610231600a5481565b3480156102d457600080fd5b5061021a6102e3366004611807565b610b05565b3480156102f457600080fd5b506101e2610303366004611879565b610b3b565b34801561031457600080fd5b5061018b610323366004611573565b600e6020526000908152604090205460ff1681565b34801561034457600080fd5b50610231610353366004611573565b610b46565b34801561036457600080fd5b5061021a610b95565b34801561037957600080fd5b506000546001600160a01b03166101e2565b34801561039757600080fd5b506101b5610bcb565b3480156103ac57600080fd5b5061021a6103bb3660046116d9565b610bda565b3480156103cc57600080fd5b5061021a6103db3660046115fd565b610c70565b3480156103ec57600080fd5b5061021a6103fb366004611781565b610cba565b34801561040c57600080fd5b506101b561041b366004611879565b610d31565b34801561042c57600080fd5b5061021a61043b36600461172d565b610ec0565b34801561044c57600080fd5b5061018b61045b36600461158e565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561049557600080fd5b5061021a6104a4366004611573565b610f5b565b3480156104b557600080fd5b5061021a6104c4366004611879565b610ff6565b60006301ffc9a760e01b6001600160e01b0319831614806104fa57506380ac58cd60e01b6001600160e01b03198316145b806105155750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461052a90611a00565b80601f016020809104026020016040519081016040528092919081815260200182805461055690611a00565b80156105a35780601f10610578576101008083540402835291602001916105a3565b820191906000526020600020905b81548152906001019060200180831161058657829003601f168201915b5050505050905090565b60006105b882611025565b6105d5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006105fc82610b3b565b9050336001600160a01b0382161461063557610618813361045b565b610635576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061069c8261104d565b9050836001600160a01b0316816001600160a01b0316146106cf5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b0388169091141761071c576106ff863361045b565b61071c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661074357604051633a954ecd60e21b815260040160405180910390fd5b801561074e57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b83166107d957600184016000818152600560205260409020546107d75760015481146107d75760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600a5442116108665760405162461bcd60e51b815260206004820152600b60248201526a139bdd081cdd185c9d195960aa1b60448201526064015b60405180910390fd5b600081116108a55760405162461bcd60e51b815260206004820152600c60248201526b32b93937b910373ab6b132b960a11b604482015260640161085d565b611a0a816108b66002546001540390565b6108c09190611972565b111561091f5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015267206f66204e46547360c01b606482015260840161085d565b60058161092b84610b46565b6109359190611972565b11156109785760405162461bcd60e51b8152602060048201526012602482015271557020746f20666976652077616c6c65747360701b604482015260640161085d565b6001600160a01b0382166000908152600e602052604090205460ff16610a39576002816109a484610b46565b6109ae9190611972565b1115610a34576002816109c084610b46565b6109ca9190611972565b6109d491906119bd565b6109e5906611c37937e0800061199e565b341015610a345760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161085d565b610a75565b600581610a4584610b46565b610a4f9190611972565b10610a75576001600160a01b0382166000908152600e60205260409020805460ff191690555b610a7f82826110ae565b5050565b610a9e83838360405180602001604052806000815250610c70565b505050565b6009546001600160a01b03163314610acd5760405162461bcd60e51b815260040161085d9061193d565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a9e573d6000803e3d6000fd5b6009546001600160a01b03163314610b2f5760405162461bcd60e51b815260040161085d9061193d565b610a9e600b8383611467565b60006105158261104d565b60006001600160a01b038216610b6f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610bbf5760405162461bcd60e51b815260040161085d9061193d565b610bc960006110c8565b565b60606004805461052a90611a00565b6001600160a01b038216331415610c045760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c7b848484610691565b6001600160a01b0383163b15610cb457610c9784848484611118565b610cb4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610ce45760405162461bcd60e51b815260040161085d9061193d565b60005b82811015610cb457610d1f848483818110610d0457610d04611a96565b9050602002016020810190610d199190611573565b836110ae565b80610d2981611a3b565b915050610ce7565b6060610d3c82611025565b610da05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161085d565b6000828152600c602052604081208054610db990611a00565b90501115610e5f576000828152600c602052604090208054610dda90611a00565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0690611a00565b8015610e535780601f10610e2857610100808354040283529160200191610e53565b820191906000526020600020905b815481529060010190602001808311610e3657829003601f168201915b50505050509050919050565b6000610e69611210565b90506000815111610e895760405180602001604052806000815250610eb4565b80610e938461121f565b604051602001610ea49291906118be565b6040516020818303038152906040525b9392505050565b919050565b6009546001600160a01b03163314610eea5760405162461bcd60e51b815260040161085d9061193d565b60005b82811015610cb45781600e6000868685818110610f0c57610f0c611a96565b9050602002016020810190610f219190611573565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f5381611a3b565b915050610eed565b6000546001600160a01b03163314610f855760405162461bcd60e51b815260040161085d9061193d565b6001600160a01b038116610fea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085d565b610ff3816110c8565b50565b6009546001600160a01b031633146110205760405162461bcd60e51b815260040161085d9061193d565b600a55565b600060015482108015610515575050600090815260056020526040902054600160e01b161590565b60008160015481101561109557600081815260056020526040902054600160e01b8116611093575b80610eb4575060001901600081815260056020526040902054611075565b505b604051636f96cda160e11b815260040160405180910390fd5b610a7f82826040518060200160405280600081525061131d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061114d9033908990889088906004016118ed565b602060405180830381600087803b15801561116757600080fd5b505af1925050508015611197575060408051601f3d908101601f19168201909252611194918101906117ea565b60015b6111f2573d8080156111c5576040519150601f19603f3d011682016040523d82523d6000602084013e6111ca565b606091505b5080516111ea576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461052a90611a00565b6060816112435750506040805180820190915260018152600360fc1b602082015290565b8160005b811561126d578061125781611a3b565b91506112669050600a8361198a565b9150611247565b60008167ffffffffffffffff81111561128857611288611aac565b6040519080825280601f01601f1916602001820160405280156112b2576020820181803683370190505b5090505b8415611208576112c76001836119bd565b91506112d4600a86611a56565b6112df906030611972565b60f81b8183815181106112f4576112f4611a96565b60200101906001600160f81b031916908160001a905350611316600a8661198a565b94506112b6565b611327838361138a565b6001600160a01b0383163b15610a9e576001548281035b6113516000868380600101945086611118565b61136e576040516368d2bf6b60e11b815260040160405180910390fd5b81811061133e57816001541461138357600080fd5b5050505050565b6001546001600160a01b0383166113b357604051622e076360e81b815260040160405180910390fd5b816113d15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061141b5760015550505050565b82805461147390611a00565b90600052602060002090601f01602090048101928261149557600085556114db565b82601f106114ae5782800160ff198235161785556114db565b828001600101855582156114db579182015b828111156114db5782358255916020019190600101906114c0565b506114e79291506114eb565b5090565b5b808211156114e757600081556001016114ec565b80356001600160a01b0381168114610ebb57600080fd5b60008083601f84011261152957600080fd5b50813567ffffffffffffffff81111561154157600080fd5b6020830191508360208260051b850101111561155c57600080fd5b9250929050565b80358015158114610ebb57600080fd5b60006020828403121561158557600080fd5b610eb482611500565b600080604083850312156115a157600080fd5b6115aa83611500565b91506115b860208401611500565b90509250929050565b6000806000606084860312156115d657600080fd5b6115df84611500565b92506115ed60208501611500565b9150604084013590509250925092565b6000806000806080858703121561161357600080fd5b61161c85611500565b935061162a60208601611500565b925060408501359150606085013567ffffffffffffffff8082111561164e57600080fd5b818701915087601f83011261166257600080fd5b81358181111561167457611674611aac565b604051601f8201601f19908116603f0116810190838211818310171561169c5761169c611aac565b816040528281528a60208487010111156116b557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156116ec57600080fd5b6116f583611500565b91506115b860208401611563565b6000806040838503121561171657600080fd5b61171f83611500565b946020939093013593505050565b60008060006040848603121561174257600080fd5b833567ffffffffffffffff81111561175957600080fd5b61176586828701611517565b9094509250611778905060208501611563565b90509250925092565b60008060006040848603121561179657600080fd5b833567ffffffffffffffff8111156117ad57600080fd5b6117b986828701611517565b909790965060209590950135949350505050565b6000602082840312156117df57600080fd5b8135610eb481611ac2565b6000602082840312156117fc57600080fd5b8151610eb481611ac2565b6000806020838503121561181a57600080fd5b823567ffffffffffffffff8082111561183257600080fd5b818501915085601f83011261184657600080fd5b81358181111561185557600080fd5b86602082850101111561186757600080fd5b60209290920196919550909350505050565b60006020828403121561188b57600080fd5b5035919050565b600081518084526118aa8160208601602086016119d4565b601f01601f19169290920160200192915050565b600083516118d08184602088016119d4565b8351908301906118e48183602088016119d4565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061192090830184611892565b9695505050505050565b602081526000610eb46020830184611892565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561198557611985611a6a565b500190565b60008261199957611999611a80565b500490565b60008160001904831182151516156119b8576119b8611a6a565b500290565b6000828210156119cf576119cf611a6a565b500390565b60005b838110156119ef5781810151838201526020016119d7565b83811115610cb45750506000910152565b600181811c90821680611a1457607f821691505b60208210811415611a3557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a4f57611a4f611a6a565b5060010190565b600082611a6557611a65611a80565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ff357600080fdfea264697066735822122034d89adccd792a523096b739030cf1475b380a40416a9e4f41f8dfaab5cb273664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636e21fc87116100d1578063b88d4fde1161008a578063de4da0bd11610064578063de4da0bd14610420578063e985e9c514610440578063f2fde38b14610489578063f6a03ebf146104a957600080fd5b8063b88d4fde146103c0578063c204642c146103e0578063c87b56dd1461040057600080fd5b80636e21fc871461030857806370a0823114610338578063715018a6146103585780638da5cb5b1461036d57806395d89b411461038b578063a22cb465146103a057600080fd5b806340c10f191161012357806340c10f191461025f57806342842e0e1461027257806351cff8d91461029257806353ef6781146102b257806355f804b3146102c85780636352211e146102e857600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023f575b600080fd5b34801561017757600080fd5b5061018b6101863660046117cd565b6104c9565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b561051b565b604051610197919061192a565b3480156101ce57600080fd5b506101e26101dd366004611879565b6105ad565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611703565b6105f1565b005b34801561022857600080fd5b50600254600154035b604051908152602001610197565b34801561024b57600080fd5b5061021a61025a3660046115c1565b610691565b61021a61026d366004611703565b610822565b34801561027e57600080fd5b5061021a61028d3660046115c1565b610a83565b34801561029e57600080fd5b5061021a6102ad366004611573565b610aa3565b3480156102be57600080fd5b50610231600a5481565b3480156102d457600080fd5b5061021a6102e3366004611807565b610b05565b3480156102f457600080fd5b506101e2610303366004611879565b610b3b565b34801561031457600080fd5b5061018b610323366004611573565b600e6020526000908152604090205460ff1681565b34801561034457600080fd5b50610231610353366004611573565b610b46565b34801561036457600080fd5b5061021a610b95565b34801561037957600080fd5b506000546001600160a01b03166101e2565b34801561039757600080fd5b506101b5610bcb565b3480156103ac57600080fd5b5061021a6103bb3660046116d9565b610bda565b3480156103cc57600080fd5b5061021a6103db3660046115fd565b610c70565b3480156103ec57600080fd5b5061021a6103fb366004611781565b610cba565b34801561040c57600080fd5b506101b561041b366004611879565b610d31565b34801561042c57600080fd5b5061021a61043b36600461172d565b610ec0565b34801561044c57600080fd5b5061018b61045b36600461158e565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561049557600080fd5b5061021a6104a4366004611573565b610f5b565b3480156104b557600080fd5b5061021a6104c4366004611879565b610ff6565b60006301ffc9a760e01b6001600160e01b0319831614806104fa57506380ac58cd60e01b6001600160e01b03198316145b806105155750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461052a90611a00565b80601f016020809104026020016040519081016040528092919081815260200182805461055690611a00565b80156105a35780601f10610578576101008083540402835291602001916105a3565b820191906000526020600020905b81548152906001019060200180831161058657829003601f168201915b5050505050905090565b60006105b882611025565b6105d5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006105fc82610b3b565b9050336001600160a01b0382161461063557610618813361045b565b610635576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061069c8261104d565b9050836001600160a01b0316816001600160a01b0316146106cf5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b0388169091141761071c576106ff863361045b565b61071c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661074357604051633a954ecd60e21b815260040160405180910390fd5b801561074e57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b83166107d957600184016000818152600560205260409020546107d75760015481146107d75760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600a5442116108665760405162461bcd60e51b815260206004820152600b60248201526a139bdd081cdd185c9d195960aa1b60448201526064015b60405180910390fd5b600081116108a55760405162461bcd60e51b815260206004820152600c60248201526b32b93937b910373ab6b132b960a11b604482015260640161085d565b611a0a816108b66002546001540390565b6108c09190611972565b111561091f5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015267206f66204e46547360c01b606482015260840161085d565b60058161092b84610b46565b6109359190611972565b11156109785760405162461bcd60e51b8152602060048201526012602482015271557020746f20666976652077616c6c65747360701b604482015260640161085d565b6001600160a01b0382166000908152600e602052604090205460ff16610a39576002816109a484610b46565b6109ae9190611972565b1115610a34576002816109c084610b46565b6109ca9190611972565b6109d491906119bd565b6109e5906611c37937e0800061199e565b341015610a345760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161085d565b610a75565b600581610a4584610b46565b610a4f9190611972565b10610a75576001600160a01b0382166000908152600e60205260409020805460ff191690555b610a7f82826110ae565b5050565b610a9e83838360405180602001604052806000815250610c70565b505050565b6009546001600160a01b03163314610acd5760405162461bcd60e51b815260040161085d9061193d565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a9e573d6000803e3d6000fd5b6009546001600160a01b03163314610b2f5760405162461bcd60e51b815260040161085d9061193d565b610a9e600b8383611467565b60006105158261104d565b60006001600160a01b038216610b6f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610bbf5760405162461bcd60e51b815260040161085d9061193d565b610bc960006110c8565b565b60606004805461052a90611a00565b6001600160a01b038216331415610c045760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c7b848484610691565b6001600160a01b0383163b15610cb457610c9784848484611118565b610cb4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610ce45760405162461bcd60e51b815260040161085d9061193d565b60005b82811015610cb457610d1f848483818110610d0457610d04611a96565b9050602002016020810190610d199190611573565b836110ae565b80610d2981611a3b565b915050610ce7565b6060610d3c82611025565b610da05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161085d565b6000828152600c602052604081208054610db990611a00565b90501115610e5f576000828152600c602052604090208054610dda90611a00565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0690611a00565b8015610e535780601f10610e2857610100808354040283529160200191610e53565b820191906000526020600020905b815481529060010190602001808311610e3657829003601f168201915b50505050509050919050565b6000610e69611210565b90506000815111610e895760405180602001604052806000815250610eb4565b80610e938461121f565b604051602001610ea49291906118be565b6040516020818303038152906040525b9392505050565b919050565b6009546001600160a01b03163314610eea5760405162461bcd60e51b815260040161085d9061193d565b60005b82811015610cb45781600e6000868685818110610f0c57610f0c611a96565b9050602002016020810190610f219190611573565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f5381611a3b565b915050610eed565b6000546001600160a01b03163314610f855760405162461bcd60e51b815260040161085d9061193d565b6001600160a01b038116610fea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085d565b610ff3816110c8565b50565b6009546001600160a01b031633146110205760405162461bcd60e51b815260040161085d9061193d565b600a55565b600060015482108015610515575050600090815260056020526040902054600160e01b161590565b60008160015481101561109557600081815260056020526040902054600160e01b8116611093575b80610eb4575060001901600081815260056020526040902054611075565b505b604051636f96cda160e11b815260040160405180910390fd5b610a7f82826040518060200160405280600081525061131d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061114d9033908990889088906004016118ed565b602060405180830381600087803b15801561116757600080fd5b505af1925050508015611197575060408051601f3d908101601f19168201909252611194918101906117ea565b60015b6111f2573d8080156111c5576040519150601f19603f3d011682016040523d82523d6000602084013e6111ca565b606091505b5080516111ea576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461052a90611a00565b6060816112435750506040805180820190915260018152600360fc1b602082015290565b8160005b811561126d578061125781611a3b565b91506112669050600a8361198a565b9150611247565b60008167ffffffffffffffff81111561128857611288611aac565b6040519080825280601f01601f1916602001820160405280156112b2576020820181803683370190505b5090505b8415611208576112c76001836119bd565b91506112d4600a86611a56565b6112df906030611972565b60f81b8183815181106112f4576112f4611a96565b60200101906001600160f81b031916908160001a905350611316600a8661198a565b94506112b6565b611327838361138a565b6001600160a01b0383163b15610a9e576001548281035b6113516000868380600101945086611118565b61136e576040516368d2bf6b60e11b815260040160405180910390fd5b81811061133e57816001541461138357600080fd5b5050505050565b6001546001600160a01b0383166113b357604051622e076360e81b815260040160405180910390fd5b816113d15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061141b5760015550505050565b82805461147390611a00565b90600052602060002090601f01602090048101928261149557600085556114db565b82601f106114ae5782800160ff198235161785556114db565b828001600101855582156114db579182015b828111156114db5782358255916020019190600101906114c0565b506114e79291506114eb565b5090565b5b808211156114e757600081556001016114ec565b80356001600160a01b0381168114610ebb57600080fd5b60008083601f84011261152957600080fd5b50813567ffffffffffffffff81111561154157600080fd5b6020830191508360208260051b850101111561155c57600080fd5b9250929050565b80358015158114610ebb57600080fd5b60006020828403121561158557600080fd5b610eb482611500565b600080604083850312156115a157600080fd5b6115aa83611500565b91506115b860208401611500565b90509250929050565b6000806000606084860312156115d657600080fd5b6115df84611500565b92506115ed60208501611500565b9150604084013590509250925092565b6000806000806080858703121561161357600080fd5b61161c85611500565b935061162a60208601611500565b925060408501359150606085013567ffffffffffffffff8082111561164e57600080fd5b818701915087601f83011261166257600080fd5b81358181111561167457611674611aac565b604051601f8201601f19908116603f0116810190838211818310171561169c5761169c611aac565b816040528281528a60208487010111156116b557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156116ec57600080fd5b6116f583611500565b91506115b860208401611563565b6000806040838503121561171657600080fd5b61171f83611500565b946020939093013593505050565b60008060006040848603121561174257600080fd5b833567ffffffffffffffff81111561175957600080fd5b61176586828701611517565b9094509250611778905060208501611563565b90509250925092565b60008060006040848603121561179657600080fd5b833567ffffffffffffffff8111156117ad57600080fd5b6117b986828701611517565b909790965060209590950135949350505050565b6000602082840312156117df57600080fd5b8135610eb481611ac2565b6000602082840312156117fc57600080fd5b8151610eb481611ac2565b6000806020838503121561181a57600080fd5b823567ffffffffffffffff8082111561183257600080fd5b818501915085601f83011261184657600080fd5b81358181111561185557600080fd5b86602082850101111561186757600080fd5b60209290920196919550909350505050565b60006020828403121561188b57600080fd5b5035919050565b600081518084526118aa8160208601602086016119d4565b601f01601f19169290920160200192915050565b600083516118d08184602088016119d4565b8351908301906118e48183602088016119d4565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061192090830184611892565b9695505050505050565b602081526000610eb46020830184611892565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561198557611985611a6a565b500190565b60008261199957611999611a80565b500490565b60008160001904831182151516156119b8576119b8611a6a565b500290565b6000828210156119cf576119cf611a6a565b500390565b60005b838110156119ef5781810151838201526020016119d7565b83811115610cb45750506000910152565b600181811c90821680611a1457607f821691505b60208210811415611a3557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a4f57611a4f611a6a565b5060010190565b600082611a6557611a65611a80565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ff357600080fdfea264697066735822122034d89adccd792a523096b739030cf1475b380a40416a9e4f41f8dfaab5cb273664736f6c63430008070033

Deployed Bytecode Sourcemap

50355:2870:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18062:615;;;;;;;;;;-1:-1:-1;18062:615:0;;;;;:::i;:::-;;:::i;:::-;;;7088:14:1;;7081:22;7063:41;;7051:2;7036:18;18062:615:0;;;;;;;;23709:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25655:204::-;;;;;;;;;;-1:-1:-1;25655:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6386:32:1;;;6368:51;;6356:2;6341:18;25655:204:0;6222:203:1;25203:386:0;;;;;;;;;;-1:-1:-1;25203:386:0;;;;;:::i;:::-;;:::i;:::-;;17116:315;;;;;;;;;;-1:-1:-1;17382:12:0;;17366:13;;:28;17116:315;;;10466:25:1;;;10454:2;10439:18;17116:315:0;10320:177:1;34920:2800:0;;;;;;;;;;-1:-1:-1;34920:2800:0;;;;;:::i;:::-;;:::i;51875:718::-;;;;;;:::i;:::-;;:::i;26545:185::-;;;;;;;;;;-1:-1:-1;26545:185:0;;;;;:::i;:::-;;:::i;53076:146::-;;;;;;;;;;-1:-1:-1;53076:146:0;;;;;:::i;:::-;;:::i;50619:34::-;;;;;;;;;;;;;;;;51648:97;;;;;;;;;;-1:-1:-1;51648:97:0;;;;;:::i;:::-;;:::i;23498:144::-;;;;;;;;;;-1:-1:-1;23498:144:0;;;;;:::i;:::-;;:::i;50805:40::-;;;;;;;;;;-1:-1:-1;50805:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;18741:224;;;;;;;;;;-1:-1:-1;18741:224:0;;;;;:::i;:::-;;:::i;2645:103::-;;;;;;;;;;;;;:::i;1994:87::-;;;;;;;;;;-1:-1:-1;2040:7:0;2067:6;-1:-1:-1;;;;;2067:6:0;1994:87;;23878:104;;;;;;;;;;;;;:::i;25931:308::-;;;;;;;;;;-1:-1:-1;25931:308:0;;;;;:::i;:::-;;:::i;26801:399::-;;;;;;;;;;-1:-1:-1;26801:399:0;;;;;:::i;:::-;;:::i;52599:188::-;;;;;;;;;;-1:-1:-1;52599:188:0;;;;;:::i;:::-;;:::i;51141:499::-;;;;;;;;;;-1:-1:-1;51141:499:0;;;;;:::i;:::-;;:::i;52793:187::-;;;;;;;;;;-1:-1:-1;52793:187:0;;;;;:::i;:::-;;:::i;26310:164::-;;;;;;;;;;-1:-1:-1;26310:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26431:25:0;;;26407:4;26431:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26310:164;2903:201;;;;;;;;;;-1:-1:-1;2903:201:0;;;;;:::i;:::-;;:::i;52986:82::-;;;;;;;;;;-1:-1:-1;52986:82:0;;;;;:::i;:::-;;:::i;18062:615::-;18147:4;-1:-1:-1;;;;;;;;;18447:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18524:25:0;;;18447:102;:179;;;-1:-1:-1;;;;;;;;;;18601:25:0;;;18447:179;18427:199;18062:615;-1:-1:-1;;18062:615:0:o;23709:100::-;23763:13;23796:5;23789:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23709:100;:::o;25655:204::-;25723:7;25748:16;25756:7;25748;:16::i;:::-;25743:64;;25773:34;;-1:-1:-1;;;25773:34:0;;;;;;;;;;;25743:64;-1:-1:-1;25827:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25827:24:0;;25655:204::o;25203:386::-;25276:13;25292:16;25300:7;25292;:16::i;:::-;25276:32;-1:-1:-1;46103:10:0;-1:-1:-1;;;;;25325:28:0;;;25321:175;;25373:44;25390:5;46103:10;26310:164;:::i;25373:44::-;25368:128;;25445:35;;-1:-1:-1;;;25445:35:0;;;;;;;;;;;25368:128;25508:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25508:29:0;-1:-1:-1;;;;;25508:29:0;;;;;;;;;25553:28;;25508:24;;25553:28;;;;;;;25265:324;25203:386;;:::o;34920:2800::-;35054:27;35084;35103:7;35084:18;:27::i;:::-;35054:57;;35169:4;-1:-1:-1;;;;;35128:45:0;35144:19;-1:-1:-1;;;;;35128:45:0;;35124:86;;35182:28;;-1:-1:-1;;;35182:28:0;;;;;;;;;;;35124:86;35224:27;33650:21;;;33477:15;33692:4;33685:36;33774:4;33758:21;;33864:26;;46103:10;34617:30;;;-1:-1:-1;;;;;34315:26:0;;34596:19;;;34593:55;35403:174;;35490:43;35507:4;46103:10;26310:164;:::i;35490:43::-;35485:92;;35542:35;;-1:-1:-1;;;35542:35:0;;;;;;;;;;;35485:92;-1:-1:-1;;;;;35594:16:0;;35590:52;;35619:23;;-1:-1:-1;;;35619:23:0;;;;;;;;;;;35590:52;35791:15;35788:160;;;35931:1;35910:19;35903:30;35788:160;-1:-1:-1;;;;;36326:24:0;;;;;;;:18;:24;;;;;;36324:26;;-1:-1:-1;;36324:26:0;;;36395:22;;;;;;;;;36393:24;;-1:-1:-1;36393:24:0;;;23397:11;23373:22;23369:40;23356:62;-1:-1:-1;;;23356:62:0;36688:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;36982:46:0;;36978:626;;37086:1;37076:11;;37054:19;37209:30;;;:17;:30;;;;;;37205:384;;37347:13;;37332:11;:28;37328:242;;37494:30;;;;:17;:30;;;;;:52;;;37328:242;37035:569;36978:626;37651:7;37647:2;-1:-1:-1;;;;;37632:27:0;37641:4;-1:-1:-1;;;;;37632:27:0;;;;;;;;;;;35043:2677;;;34920:2800;;;:::o;51875:718::-;51965:6;;51947:15;:24;51939:47;;;;-1:-1:-1;;;51939:47:0;;7541:2:1;51939:47:0;;;7523:21:1;7580:2;7560:18;;;7553:30;-1:-1:-1;;;7599:18:1;;;7592:41;7650:18;;51939:47:0;;;;;;;;;52014:1;52005:6;:10;51997:35;;;;-1:-1:-1;;;51997:35:0;;8697:2:1;51997:35:0;;;8679:21:1;8736:2;8716:18;;;8709:30;-1:-1:-1;;;8755:18:1;;;8748:42;8807:18;;51997:35:0;8495:336:1;51997:35:0;50521:4;52067:6;52051:13;17382:12;;17366:13;;:28;;17116:315;52051:13;:22;;;;:::i;:::-;:33;;52043:86;;;;-1:-1:-1;;;52043:86:0;;7881:2:1;52043:86:0;;;7863:21:1;7920:2;7900:18;;;7893:30;7959:34;7939:18;;;7932:62;-1:-1:-1;;;8010:18:1;;;8003:38;8058:19;;52043:86:0;7679:404:1;52043:86:0;50611:1;52164:6;52148:13;52158:2;52148:9;:13::i;:::-;:22;;;;:::i;:::-;:33;;52140:64;;;;-1:-1:-1;;;52140:64:0;;10175:2:1;52140:64:0;;;10157:21:1;10214:2;10194:18;;;10187:30;-1:-1:-1;;;10233:18:1;;;10226:48;10291:18;;52140:64:0;9973:342:1;52140:64:0;-1:-1:-1;;;;;52219:12:0;;;;;;:8;:12;;;;;;;;52215:339;;50568:1;52266:6;52250:13;52260:2;52250:9;:13::i;:::-;:22;;;;:::i;:::-;:33;52247:173;;;50568:1;52350:6;52334:13;52344:2;52334:9;:13::i;:::-;:22;;;;:::i;:::-;:33;;;;:::i;:::-;52324:44;;50468:11;52324:44;:::i;:::-;52311:9;:57;;52303:101;;;;-1:-1:-1;;;52303:101:0;;9038:2:1;52303:101:0;;;9020:21:1;9077:2;9057:18;;;9050:30;9116:33;9096:18;;;9089:61;9167:18;;52303:101:0;8836:355:1;52303:101:0;52215:339;;;50611:1;52470:6;52454:13;52464:2;52454:9;:13::i;:::-;:22;;;;:::i;:::-;:33;52451:92;;-1:-1:-1;;;;;52507:12:0;;52522:5;52507:12;;;:8;:12;;;;;:20;;-1:-1:-1;;52507:20:0;;;52451:92;52564:21;52574:2;52578:6;52564:9;:21::i;:::-;51875:718;;:::o;26545:185::-;26683:39;26700:4;26706:2;26710:7;26683:39;;;;;;;;;;;;:16;:39::i;:::-;26545:185;;;:::o;53076:146::-;51056:6;;-1:-1:-1;;;;;51056:6:0;51066:10;51056:20;51048:65;;;;-1:-1:-1;;;51048:65:0;;;;;;;:::i;:::-;53185:29:::1;::::0;53153:21:::1;::::0;-1:-1:-1;;;;;53185:20:0;::::1;::::0;:29;::::1;;;::::0;53153:21;;53135:15:::1;53185:29:::0;53135:15;53185:29;53153:21;53185:20;:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;51648:97:::0;51056:6;;-1:-1:-1;;;;;51056:6:0;51066:10;51056:20;51048:65;;;;-1:-1:-1;;;51048:65:0;;;;;;;:::i;:::-;51718:19:::1;:13;51734:3:::0;;51718:19:::1;:::i;23498:144::-:0;23562:7;23605:27;23624:7;23605:18;:27::i;18741:224::-;18805:7;-1:-1:-1;;;;;18829:19:0;;18825:60;;18857:28;;-1:-1:-1;;;18857:28:0;;;;;;;;;;;18825:60;-1:-1:-1;;;;;;18903:25:0;;;;;:18;:25;;;;;;13296:13;18903:54;;18741:224::o;2645:103::-;2040:7;2067:6;-1:-1:-1;;;;;2067:6:0;46103:10;2214:23;2206:68;;;;-1:-1:-1;;;2206:68:0;;;;;;;:::i;:::-;2710:30:::1;2737:1;2710:18;:30::i;:::-;2645:103::o:0;23878:104::-;23934:13;23967:7;23960:14;;;;;:::i;25931:308::-;-1:-1:-1;;;;;26030:31:0;;46103:10;26030:31;26026:61;;;26070:17;;-1:-1:-1;;;26070:17:0;;;;;;;;;;;26026:61;46103:10;26100:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26100:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26100:60:0;;;;;;;;;;26176:55;;7063:41:1;;;26100:49:0;;46103:10;26176:55;;7036:18:1;26176:55:0;;;;;;;25931:308;;:::o;26801:399::-;26968:31;26981:4;26987:2;26991:7;26968:12;:31::i;:::-;-1:-1:-1;;;;;27014:14:0;;;:19;27010:183;;27053:56;27084:4;27090:2;27094:7;27103:5;27053:30;:56::i;:::-;27048:145;;27137:40;;-1:-1:-1;;;27137:40:0;;;;;;;;;;;27048:145;26801:399;;;;:::o;52599:188::-;51056:6;;-1:-1:-1;;;;;51056:6:0;51066:10;51056:20;51048:65;;;;-1:-1:-1;;;51048:65:0;;;;;;;:::i;:::-;52692:6:::1;52687:93;52704:16:::0;;::::1;52687:93;;;52741:27;52751:5;;52757:1;52751:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;52761:6;52741:9;:27::i;:::-;52722:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52687:93;;51141:499:::0;51214:13;51248:16;51256:7;51248;:16::i;:::-;51240:76;;;;-1:-1:-1;;;51240:76:0;;9759:2:1;51240:76:0;;;9741:21:1;9798:2;9778:18;;;9771:30;9837:34;9817:18;;;9810:62;-1:-1:-1;;;9888:18:1;;;9881:45;9943:19;;51240:76:0;9557:411:1;51240:76:0;51369:1;51339:19;;;:10;:19;;;;;51333:33;;;;;:::i;:::-;;;:37;51329:304;;;51394:19;;;;:10;:19;;;;;51387:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51141:499;;;:::o;51329:304::-;51446:21;51470:10;:8;:10::i;:::-;51446:34;;51526:1;51508:7;51502:21;:25;:119;;;;;;;;;;;;;;;;;51567:7;51576:25;51593:7;51576:16;:25::i;:::-;51550:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51502:119;51495:126;51141:499;-1:-1:-1;;;51141:499:0:o;51329:304::-;51141:499;;;:::o;52793:187::-;51056:6;;-1:-1:-1;;;;;51056:6:0;51066:10;51056:20;51048:65;;;;-1:-1:-1;;;51048:65:0;;;;;;;:::i;:::-;52885:6:::1;52880:93;52897:16:::0;;::::1;52880:93;;;52955:6;52934:8;:18;52943:5;;52949:1;52943:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52934:18:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;52934:18:0;:27;;-1:-1:-1;;52934:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52915:3;::::1;::::0;::::1;:::i;:::-;;;;52880:93;;2903:201:::0;2040:7;2067:6;-1:-1:-1;;;;;2067:6:0;46103:10;2214:23;2206:68;;;;-1:-1:-1;;;2206:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2992:22:0;::::1;2984:73;;;::::0;-1:-1:-1;;;2984:73:0;;8290:2:1;2984:73:0::1;::::0;::::1;8272:21:1::0;8329:2;8309:18;;;8302:30;8368:34;8348:18;;;8341:62;-1:-1:-1;;;8419:18:1;;;8412:36;8465:19;;2984:73:0::1;8088:402:1::0;2984:73:0::1;3068:28;3087:8;3068:18;:28::i;:::-;2903:201:::0;:::o;52986:82::-;51056:6;;-1:-1:-1;;;;;51056:6:0;51066:10;51056:20;51048:65;;;;-1:-1:-1;;;51048:65:0;;;;;;;:::i;:::-;53047:6:::1;:13:::0;52986:82::o;27455:273::-;27512:4;27602:13;;27592:7;:23;27549:152;;;;-1:-1:-1;;27653:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27653:43:0;:48;;27455:273::o;20415:1129::-;20482:7;20517;20619:13;;20612:4;:20;20608:869;;;20657:14;20674:23;;;:17;:23;;;;;;-1:-1:-1;;;20763:23:0;;20759:699;;21282:113;21289:11;21282:113;;-1:-1:-1;;;21360:6:0;21342:25;;;;:17;:25;;;;;;21282:113;;20759:699;20634:843;20608:869;21505:31;;-1:-1:-1;;;21505:31:0;;;;;;;;;;;27812:104;27881:27;27891:2;27895:8;27881:27;;;;;;;;;;;;:9;:27::i;3264:191::-;3338:16;3357:6;;-1:-1:-1;;;;;3374:17:0;;;-1:-1:-1;;;;;;3374:17:0;;;;;;3407:40;;3357:6;;;;;;;3407:40;;3338:16;3407:40;3327:128;3264:191;:::o;41671:716::-;41855:88;;-1:-1:-1;;;41855:88:0;;41834:4;;-1:-1:-1;;;;;41855:45:0;;;;;:88;;46103:10;;41922:4;;41928:7;;41937:5;;41855:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41855:88:0;;;;;;;;-1:-1:-1;;41855:88:0;;;;;;;;;;;;:::i;:::-;;;41851:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42138:13:0;;42134:235;;42184:40;;-1:-1:-1;;;42184:40:0;;;;;;;;;;;42134:235;42327:6;42321:13;42312:6;42308:2;42304:15;42297:38;41851:529;-1:-1:-1;;;;;;42014:64:0;-1:-1:-1;;;42014:64:0;;-1:-1:-1;41851:529:0;41671:716;;;;;;:::o;51753:114::-;51813:13;51846;51839:20;;;;;:::i;48559:723::-;48615:13;48836:10;48832:53;;-1:-1:-1;;48863:10:0;;;;;;;;;;;;-1:-1:-1;;;48863:10:0;;;;;48559:723::o;48832:53::-;48910:5;48895:12;48951:78;48958:9;;48951:78;;48984:8;;;;:::i;:::-;;-1:-1:-1;49007:10:0;;-1:-1:-1;49015:2:0;49007:10;;:::i;:::-;;;48951:78;;;49039:19;49071:6;49061:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49061:17:0;;49039:39;;49089:154;49096:10;;49089:154;;49123:11;49133:1;49123:11;;:::i;:::-;;-1:-1:-1;49192:10:0;49200:2;49192:5;:10;:::i;:::-;49179:24;;:2;:24;:::i;:::-;49166:39;;49149:6;49156;49149:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;49149:56:0;;;;;;;;-1:-1:-1;49220:11:0;49229:2;49220:11;;:::i;:::-;;;49089:154;;28332:681;28455:19;28461:2;28465:8;28455:5;:19::i;:::-;-1:-1:-1;;;;;28516:14:0;;;:19;28512:483;;28570:13;;28618:14;;;28651:233;28682:62;28721:1;28725:2;28729:7;;;;;;28738:5;28682:30;:62::i;:::-;28677:167;;28780:40;;-1:-1:-1;;;28780:40:0;;;;;;;;;;;28677:167;28879:3;28871:5;:11;28651:233;;28966:3;28949:13;;:20;28945:34;;28971:8;;;28945:34;28537:458;;28332:681;;;:::o;29286:1529::-;29374:13;;-1:-1:-1;;;;;29402:16:0;;29398:48;;29427:19;;-1:-1:-1;;;29427:19:0;;;;;;;;;;;29398:48;29461:13;29457:44;;29483:18;;-1:-1:-1;;;29483:18:0;;;;;;;;;;;29457:44;-1:-1:-1;;;;;29989:22:0;;;;;;:18;:22;;13433:2;29989:22;;:70;;30027:31;30015:44;;29989:70;;;23397:11;23373:22;23369:40;-1:-1:-1;25107:15:0;;25082:23;25078:45;23366:51;23356:62;30302:31;;;;:17;:31;;;;;:173;30320:12;30551:23;;;30589:101;30616:35;;30641:9;;;;;-1:-1:-1;;;;;30616:35:0;;;30633:1;;30616:35;;30633:1;;30616:35;30685:3;30675:7;:13;30589:101;;30706:13;:19;-1:-1:-1;26545:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:367;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:1;;403:18;392:30;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;486:67;192:367;;;;;:::o;564:160::-;629:20;;685:13;;678:21;668:32;;658:60;;714:1;711;704:12;729:186;788:6;841:2;829:9;820:7;816:23;812:32;809:52;;;857:1;854;847:12;809:52;880:29;899:9;880:29;:::i;920:260::-;988:6;996;1049:2;1037:9;1028:7;1024:23;1020:32;1017:52;;;1065:1;1062;1055:12;1017:52;1088:29;1107:9;1088:29;:::i;:::-;1078:39;;1136:38;1170:2;1159:9;1155:18;1136:38;:::i;:::-;1126:48;;920:260;;;;;:::o;1185:328::-;1262:6;1270;1278;1331:2;1319:9;1310:7;1306:23;1302:32;1299:52;;;1347:1;1344;1337:12;1299:52;1370:29;1389:9;1370:29;:::i;:::-;1360:39;;1418:38;1452:2;1441:9;1437:18;1418:38;:::i;:::-;1408:48;;1503:2;1492:9;1488:18;1475:32;1465:42;;1185:328;;;;;:::o;1518:1138::-;1613:6;1621;1629;1637;1690:3;1678:9;1669:7;1665:23;1661:33;1658:53;;;1707:1;1704;1697:12;1658:53;1730:29;1749:9;1730:29;:::i;:::-;1720:39;;1778:38;1812:2;1801:9;1797:18;1778:38;:::i;:::-;1768:48;;1863:2;1852:9;1848:18;1835:32;1825:42;;1918:2;1907:9;1903:18;1890:32;1941:18;1982:2;1974:6;1971:14;1968:34;;;1998:1;1995;1988:12;1968:34;2036:6;2025:9;2021:22;2011:32;;2081:7;2074:4;2070:2;2066:13;2062:27;2052:55;;2103:1;2100;2093:12;2052:55;2139:2;2126:16;2161:2;2157;2154:10;2151:36;;;2167:18;;:::i;:::-;2242:2;2236:9;2210:2;2296:13;;-1:-1:-1;;2292:22:1;;;2316:2;2288:31;2284:40;2272:53;;;2340:18;;;2360:22;;;2337:46;2334:72;;;2386:18;;:::i;:::-;2426:10;2422:2;2415:22;2461:2;2453:6;2446:18;2501:7;2496:2;2491;2487;2483:11;2479:20;2476:33;2473:53;;;2522:1;2519;2512:12;2473:53;2578:2;2573;2569;2565:11;2560:2;2552:6;2548:15;2535:46;2623:1;2618:2;2613;2605:6;2601:15;2597:24;2590:35;2644:6;2634:16;;;;;;;1518:1138;;;;;;;:::o;2661:254::-;2726:6;2734;2787:2;2775:9;2766:7;2762:23;2758:32;2755:52;;;2803:1;2800;2793:12;2755:52;2826:29;2845:9;2826:29;:::i;:::-;2816:39;;2874:35;2905:2;2894:9;2890:18;2874:35;:::i;2920:254::-;2988:6;2996;3049:2;3037:9;3028:7;3024:23;3020:32;3017:52;;;3065:1;3062;3055:12;3017:52;3088:29;3107:9;3088:29;:::i;:::-;3078:39;3164:2;3149:18;;;;3136:32;;-1:-1:-1;;;2920:254:1:o;3179:505::-;3271:6;3279;3287;3340:2;3328:9;3319:7;3315:23;3311:32;3308:52;;;3356:1;3353;3346:12;3308:52;3396:9;3383:23;3429:18;3421:6;3418:30;3415:50;;;3461:1;3458;3451:12;3415:50;3500:70;3562:7;3553:6;3542:9;3538:22;3500:70;:::i;:::-;3589:8;;-1:-1:-1;3474:96:1;-1:-1:-1;3643:35:1;;-1:-1:-1;3674:2:1;3659:18;;3643:35;:::i;:::-;3633:45;;3179:505;;;;;:::o;3689:::-;3784:6;3792;3800;3853:2;3841:9;3832:7;3828:23;3824:32;3821:52;;;3869:1;3866;3859:12;3821:52;3909:9;3896:23;3942:18;3934:6;3931:30;3928:50;;;3974:1;3971;3964:12;3928:50;4013:70;4075:7;4066:6;4055:9;4051:22;4013:70;:::i;:::-;4102:8;;3987:96;;-1:-1:-1;4184:2:1;4169:18;;;;4156:32;;3689:505;-1:-1:-1;;;;3689:505:1:o;4199:245::-;4257:6;4310:2;4298:9;4289:7;4285:23;4281:32;4278:52;;;4326:1;4323;4316:12;4278:52;4365:9;4352:23;4384:30;4408:5;4384:30;:::i;4449:249::-;4518:6;4571:2;4559:9;4550:7;4546:23;4542:32;4539:52;;;4587:1;4584;4577:12;4539:52;4619:9;4613:16;4638:30;4662:5;4638:30;:::i;4703:592::-;4774:6;4782;4835:2;4823:9;4814:7;4810:23;4806:32;4803:52;;;4851:1;4848;4841:12;4803:52;4891:9;4878:23;4920:18;4961:2;4953:6;4950:14;4947:34;;;4977:1;4974;4967:12;4947:34;5015:6;5004:9;5000:22;4990:32;;5060:7;5053:4;5049:2;5045:13;5041:27;5031:55;;5082:1;5079;5072:12;5031:55;5122:2;5109:16;5148:2;5140:6;5137:14;5134:34;;;5164:1;5161;5154:12;5134:34;5209:7;5204:2;5195:6;5191:2;5187:15;5183:24;5180:37;5177:57;;;5230:1;5227;5220:12;5177:57;5261:2;5253:11;;;;;5283:6;;-1:-1:-1;4703:592:1;;-1:-1:-1;;;;4703:592:1:o;5300:180::-;5359:6;5412:2;5400:9;5391:7;5387:23;5383:32;5380:52;;;5428:1;5425;5418:12;5380:52;-1:-1:-1;5451:23:1;;5300:180;-1:-1:-1;5300:180:1:o;5485:257::-;5526:3;5564:5;5558:12;5591:6;5586:3;5579:19;5607:63;5663:6;5656:4;5651:3;5647:14;5640:4;5633:5;5629:16;5607:63;:::i;:::-;5724:2;5703:15;-1:-1:-1;;5699:29:1;5690:39;;;;5731:4;5686:50;;5485:257;-1:-1:-1;;5485:257:1:o;5747:470::-;5926:3;5964:6;5958:13;5980:53;6026:6;6021:3;6014:4;6006:6;6002:17;5980:53;:::i;:::-;6096:13;;6055:16;;;;6118:57;6096:13;6055:16;6152:4;6140:17;;6118:57;:::i;:::-;6191:20;;5747:470;-1:-1:-1;;;;5747:470:1:o;6430:488::-;-1:-1:-1;;;;;6699:15:1;;;6681:34;;6751:15;;6746:2;6731:18;;6724:43;6798:2;6783:18;;6776:34;;;6846:3;6841:2;6826:18;;6819:31;;;6624:4;;6867:45;;6892:19;;6884:6;6867:45;:::i;:::-;6859:53;6430:488;-1:-1:-1;;;;;;6430:488:1:o;7115:219::-;7264:2;7253:9;7246:21;7227:4;7284:44;7324:2;7313:9;7309:18;7301:6;7284:44;:::i;9196:356::-;9398:2;9380:21;;;9417:18;;;9410:30;9476:34;9471:2;9456:18;;9449:62;9543:2;9528:18;;9196:356::o;10502:128::-;10542:3;10573:1;10569:6;10566:1;10563:13;10560:39;;;10579:18;;:::i;:::-;-1:-1:-1;10615:9:1;;10502:128::o;10635:120::-;10675:1;10701;10691:35;;10706:18;;:::i;:::-;-1:-1:-1;10740:9:1;;10635:120::o;10760:168::-;10800:7;10866:1;10862;10858:6;10854:14;10851:1;10848:21;10843:1;10836:9;10829:17;10825:45;10822:71;;;10873:18;;:::i;:::-;-1:-1:-1;10913:9:1;;10760:168::o;10933:125::-;10973:4;11001:1;10998;10995:8;10992:34;;;11006:18;;:::i;:::-;-1:-1:-1;11043:9:1;;10933:125::o;11063:258::-;11135:1;11145:113;11159:6;11156:1;11153:13;11145:113;;;11235:11;;;11229:18;11216:11;;;11209:39;11181:2;11174:10;11145:113;;;11276:6;11273:1;11270:13;11267:48;;;-1:-1:-1;;11311:1:1;11293:16;;11286:27;11063:258::o;11326:380::-;11405:1;11401:12;;;;11448;;;11469:61;;11523:4;11515:6;11511:17;11501:27;;11469:61;11576:2;11568:6;11565:14;11545:18;11542:38;11539:161;;;11622:10;11617:3;11613:20;11610:1;11603:31;11657:4;11654:1;11647:15;11685:4;11682:1;11675:15;11539:161;;11326:380;;;:::o;11711:135::-;11750:3;-1:-1:-1;;11771:17:1;;11768:43;;;11791:18;;:::i;:::-;-1:-1:-1;11838:1:1;11827:13;;11711:135::o;11851:112::-;11883:1;11909;11899:35;;11914:18;;:::i;:::-;-1:-1:-1;11948:9:1;;11851:112::o;11968:127::-;12029:10;12024:3;12020:20;12017:1;12010:31;12060:4;12057:1;12050:15;12084:4;12081:1;12074:15;12100:127;12161:10;12156:3;12152:20;12149:1;12142:31;12192:4;12189:1;12182:15;12216:4;12213:1;12206:15;12232:127;12293:10;12288:3;12284:20;12281:1;12274:31;12324:4;12321:1;12314:15;12348:4;12345:1;12338:15;12364:127;12425:10;12420:3;12416:20;12413:1;12406:31;12456:4;12453:1;12446:15;12480:4;12477:1;12470:15;12496:131;-1:-1:-1;;;;;;12570:32:1;;12560:43;;12550:71;;12617:1;12614;12607:12

Swarm Source

ipfs://34d89adccd792a523096b739030cf1475b380a40416a9e4f41f8dfaab5cb2736
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.