ETH Price: $3,087.97 (+0.56%)
Gas: 8 Gwei

Token

Sudo Inu (XMINU)
 

Overview

Max Total Supply

1,000 XMINU

Holders

136

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 XMINU
0xb1c2b19d112dca00fa37c8fe71073d100902c88c
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:
SudoInu

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 3: SudoInu.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./ERC721A.sol";

contract SudoInu is ERC721A {
    bool minted;

    constructor() ERC721A("Sudo Inu", "XMINU") {}

    function _baseURI() internal view virtual override returns (string memory) {
        return "ipfs://QmUL5WAgCYMZZ714mi6LayiWiEA8dCAWD5o4Sm2gpJx6cj";
    }

    function mint() external payable {
        require(!minted, "Mint already completed");

        _mint(msg.sender, 1000);
        minted = true;
    }
}

File 1 of 3: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721A.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? baseURI : '';
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 3: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f5375646f20496e750000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f584d494e55000000000000000000000000000000000000000000000000000000815250816002908051906020019062000096929190620000d3565b508060039080519060200190620000af929190620000d3565b50620000c0620000ce60201b60201c565b6000819055505050620001e8565b600090565b828054620000e19062000183565b90600052602060002090601f01602090048101928262000105576000855562000151565b82601f106200012057805160ff191683800117855562000151565b8280016001018555821562000151579182015b828111156200015057825182559160200191906001019062000133565b5b50905062000160919062000164565b5090565b5b808211156200017f57600081600090555060010162000165565b5090565b600060028204905060018216806200019c57607f821691505b60208210811415620001b357620001b2620001b9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611bf980620001f86000396000f3fe6080604052600436106100e85760003560e01c806342842e0e1161008a578063a22cb46511610059578063a22cb465146102e7578063b88d4fde14610310578063c87b56dd14610339578063e985e9c514610376576100e8565b806342842e0e146102195780636352211e1461024257806370a082311461027f57806395d89b41146102bc576100e8565b8063095ea7b3116100c6578063095ea7b3146101925780631249c58b146101bb57806318160ddd146101c557806323b872dd146101f0576100e8565b806301ffc9a7146100ed57806306fdde031461012a578063081812fc14610155575b600080fd5b3480156100f957600080fd5b50610114600480360381019061010f91906116b7565b6103b3565b6040516101219190611867565b60405180910390f35b34801561013657600080fd5b5061013f610445565b60405161014c9190611882565b60405180910390f35b34801561016157600080fd5b5061017c60048036038101906101779190611711565b6104d7565b6040516101899190611800565b60405180910390f35b34801561019e57600080fd5b506101b960048036038101906101b49190611677565b610556565b005b6101c361069a565b005b3480156101d157600080fd5b506101da610713565b6040516101e791906118c4565b60405180910390f35b3480156101fc57600080fd5b5061021760048036038101906102129190611561565b61072a565b005b34801561022557600080fd5b50610240600480360381019061023b9190611561565b610a4f565b005b34801561024e57600080fd5b5061026960048036038101906102649190611711565b610a6f565b6040516102769190611800565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a191906114f4565b610a81565b6040516102b391906118c4565b60405180910390f35b3480156102c857600080fd5b506102d1610b3a565b6040516102de9190611882565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190611637565b610bcc565b005b34801561031c57600080fd5b50610337600480360381019061033291906115b4565b610d44565b005b34801561034557600080fd5b50610360600480360381019061035b9190611711565b610db7565b60405161036d9190611882565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190611521565b610e2d565b6040516103aa9190611867565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061040e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061043e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461045490611a23565b80601f016020809104026020016040519081016040528092919081815260200182805461048090611a23565b80156104cd5780601f106104a2576101008083540402835291602001916104cd565b820191906000526020600020905b8154815290600101906020018083116104b057829003601f168201915b5050505050905090565b60006104e282610ec1565b610518576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061056182610a6f565b90508073ffffffffffffffffffffffffffffffffffffffff16610582610f20565b73ffffffffffffffffffffffffffffffffffffffff16146105e5576105ae816105a9610f20565b610e2d565b6105e4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600860009054906101000a900460ff16156106ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e1906118a4565b60405180910390fd5b6106f6336103e8610f28565b6001600860006101000a81548160ff021916908315150217905550565b600061071d6110e5565b6001546000540303905090565b6000610735826110ea565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461079c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806107a8846111b8565b915091506107be81876107b9610f20565b6111df565b61080a576107d3866107ce610f20565b610e2d565b610809576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610871576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61087e8686866001611223565b801561088957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061095785610933888887611229565b7c020000000000000000000000000000000000000000000000000000000017611251565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156109df5760006001850190506000600460008381526020019081526020016000205414156109dd5760005481146109dc578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a47868686600161127c565b505050505050565b610a6a83838360405180602001604052806000815250610d44565b505050565b6000610a7a826110ea565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ae9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610b4990611a23565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7590611a23565b8015610bc25780601f10610b9757610100808354040283529160200191610bc2565b820191906000526020600020905b815481529060010190602001808311610ba557829003601f168201915b5050505050905090565b610bd4610f20565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c39576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610c46610f20565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cf3610f20565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d389190611867565b60405180910390a35050565b610d4f84848461072a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610db157610d7a84848484611282565b610db0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610dc282610ec1565b610df8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610e026113e2565b9050600081511415610e235760405180602001604052806000815250610e25565b805b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081610ecc6110e5565b11158015610edb575060005482105b8015610f19575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000805490506000821415610f69576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f766000848385611223565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550610fed83610fde6000866000611229565b610fe785611402565b17611251565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461108e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611053565b5060008214156110ca576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506110e0600084838561127c565b505050565b600090565b600080829050806110f96110e5565b11611181576000548110156111805760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561117e575b6000811415611174576004600083600190039350838152602001908152602001600020549050611149565b80925050506111b3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611240868684611412565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026112a8610f20565b8786866040518563ffffffff1660e01b81526004016112ca949392919061181b565b602060405180830381600087803b1580156112e457600080fd5b505af192505050801561131557506040513d601f19601f8201168201806040525081019061131291906116e4565b60015b61138f573d8060008114611345576040519150601f19603f3d011682016040523d82523d6000602084013e61134a565b606091505b50600081511415611387576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060604051806060016040528060358152602001611b8f60359139905090565b60006001821460e11b9050919050565b60009392505050565b600061142e61142984611904565b6118df565b90508281526020810184848401111561144a57611449611ae9565b5b6114558482856119e1565b509392505050565b60008135905061146c81611b32565b92915050565b60008135905061148181611b49565b92915050565b60008135905061149681611b60565b92915050565b6000815190506114ab81611b60565b92915050565b600082601f8301126114c6576114c5611ae4565b5b81356114d684826020860161141b565b91505092915050565b6000813590506114ee81611b77565b92915050565b60006020828403121561150a57611509611af3565b5b60006115188482850161145d565b91505092915050565b6000806040838503121561153857611537611af3565b5b60006115468582860161145d565b92505060206115578582860161145d565b9150509250929050565b60008060006060848603121561157a57611579611af3565b5b60006115888682870161145d565b93505060206115998682870161145d565b92505060406115aa868287016114df565b9150509250925092565b600080600080608085870312156115ce576115cd611af3565b5b60006115dc8782880161145d565b94505060206115ed8782880161145d565b93505060406115fe878288016114df565b925050606085013567ffffffffffffffff81111561161f5761161e611aee565b5b61162b878288016114b1565b91505092959194509250565b6000806040838503121561164e5761164d611af3565b5b600061165c8582860161145d565b925050602061166d85828601611472565b9150509250929050565b6000806040838503121561168e5761168d611af3565b5b600061169c8582860161145d565b92505060206116ad858286016114df565b9150509250929050565b6000602082840312156116cd576116cc611af3565b5b60006116db84828501611487565b91505092915050565b6000602082840312156116fa576116f9611af3565b5b60006117088482850161149c565b91505092915050565b60006020828403121561172757611726611af3565b5b6000611735848285016114df565b91505092915050565b6117478161196d565b82525050565b6117568161197f565b82525050565b600061176782611935565b611771818561194b565b93506117818185602086016119f0565b61178a81611af8565b840191505092915050565b60006117a082611940565b6117aa818561195c565b93506117ba8185602086016119f0565b6117c381611af8565b840191505092915050565b60006117db60168361195c565b91506117e682611b09565b602082019050919050565b6117fa816119d7565b82525050565b6000602082019050611815600083018461173e565b92915050565b6000608082019050611830600083018761173e565b61183d602083018661173e565b61184a60408301856117f1565b818103606083015261185c818461175c565b905095945050505050565b600060208201905061187c600083018461174d565b92915050565b6000602082019050818103600083015261189c8184611795565b905092915050565b600060208201905081810360008301526118bd816117ce565b9050919050565b60006020820190506118d960008301846117f1565b92915050565b60006118e96118fa565b90506118f58282611a55565b919050565b6000604051905090565b600067ffffffffffffffff82111561191f5761191e611ab5565b5b61192882611af8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000611978826119b7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015611a0e5780820151818401526020810190506119f3565b83811115611a1d576000848401525b50505050565b60006002820490506001821680611a3b57607f821691505b60208210811415611a4f57611a4e611a86565b5b50919050565b611a5e82611af8565b810181811067ffffffffffffffff82111715611a7d57611a7c611ab5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e7420616c726561647920636f6d706c6574656400000000000000000000600082015250565b611b3b8161196d565b8114611b4657600080fd5b50565b611b528161197f565b8114611b5d57600080fd5b50565b611b698161198b565b8114611b7457600080fd5b50565b611b80816119d7565b8114611b8b57600080fd5b5056fe697066733a2f2f516d554c3557416743594d5a5a3731346d69364c61796957694541386443415744356f34536d3267704a7836636aa2646970667358221220dc2dd497bc42d9b332dc14fa27bd5e1aab119c0eb60faf15c84207e226400a1f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106100e85760003560e01c806342842e0e1161008a578063a22cb46511610059578063a22cb465146102e7578063b88d4fde14610310578063c87b56dd14610339578063e985e9c514610376576100e8565b806342842e0e146102195780636352211e1461024257806370a082311461027f57806395d89b41146102bc576100e8565b8063095ea7b3116100c6578063095ea7b3146101925780631249c58b146101bb57806318160ddd146101c557806323b872dd146101f0576100e8565b806301ffc9a7146100ed57806306fdde031461012a578063081812fc14610155575b600080fd5b3480156100f957600080fd5b50610114600480360381019061010f91906116b7565b6103b3565b6040516101219190611867565b60405180910390f35b34801561013657600080fd5b5061013f610445565b60405161014c9190611882565b60405180910390f35b34801561016157600080fd5b5061017c60048036038101906101779190611711565b6104d7565b6040516101899190611800565b60405180910390f35b34801561019e57600080fd5b506101b960048036038101906101b49190611677565b610556565b005b6101c361069a565b005b3480156101d157600080fd5b506101da610713565b6040516101e791906118c4565b60405180910390f35b3480156101fc57600080fd5b5061021760048036038101906102129190611561565b61072a565b005b34801561022557600080fd5b50610240600480360381019061023b9190611561565b610a4f565b005b34801561024e57600080fd5b5061026960048036038101906102649190611711565b610a6f565b6040516102769190611800565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a191906114f4565b610a81565b6040516102b391906118c4565b60405180910390f35b3480156102c857600080fd5b506102d1610b3a565b6040516102de9190611882565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190611637565b610bcc565b005b34801561031c57600080fd5b50610337600480360381019061033291906115b4565b610d44565b005b34801561034557600080fd5b50610360600480360381019061035b9190611711565b610db7565b60405161036d9190611882565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190611521565b610e2d565b6040516103aa9190611867565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061040e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061043e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461045490611a23565b80601f016020809104026020016040519081016040528092919081815260200182805461048090611a23565b80156104cd5780601f106104a2576101008083540402835291602001916104cd565b820191906000526020600020905b8154815290600101906020018083116104b057829003601f168201915b5050505050905090565b60006104e282610ec1565b610518576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061056182610a6f565b90508073ffffffffffffffffffffffffffffffffffffffff16610582610f20565b73ffffffffffffffffffffffffffffffffffffffff16146105e5576105ae816105a9610f20565b610e2d565b6105e4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600860009054906101000a900460ff16156106ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e1906118a4565b60405180910390fd5b6106f6336103e8610f28565b6001600860006101000a81548160ff021916908315150217905550565b600061071d6110e5565b6001546000540303905090565b6000610735826110ea565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461079c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806107a8846111b8565b915091506107be81876107b9610f20565b6111df565b61080a576107d3866107ce610f20565b610e2d565b610809576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610871576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61087e8686866001611223565b801561088957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061095785610933888887611229565b7c020000000000000000000000000000000000000000000000000000000017611251565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156109df5760006001850190506000600460008381526020019081526020016000205414156109dd5760005481146109dc578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a47868686600161127c565b505050505050565b610a6a83838360405180602001604052806000815250610d44565b505050565b6000610a7a826110ea565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ae9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610b4990611a23565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7590611a23565b8015610bc25780601f10610b9757610100808354040283529160200191610bc2565b820191906000526020600020905b815481529060010190602001808311610ba557829003601f168201915b5050505050905090565b610bd4610f20565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c39576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610c46610f20565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cf3610f20565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d389190611867565b60405180910390a35050565b610d4f84848461072a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610db157610d7a84848484611282565b610db0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610dc282610ec1565b610df8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610e026113e2565b9050600081511415610e235760405180602001604052806000815250610e25565b805b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081610ecc6110e5565b11158015610edb575060005482105b8015610f19575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000805490506000821415610f69576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f766000848385611223565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550610fed83610fde6000866000611229565b610fe785611402565b17611251565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461108e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611053565b5060008214156110ca576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506110e0600084838561127c565b505050565b600090565b600080829050806110f96110e5565b11611181576000548110156111805760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561117e575b6000811415611174576004600083600190039350838152602001908152602001600020549050611149565b80925050506111b3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611240868684611412565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026112a8610f20565b8786866040518563ffffffff1660e01b81526004016112ca949392919061181b565b602060405180830381600087803b1580156112e457600080fd5b505af192505050801561131557506040513d601f19601f8201168201806040525081019061131291906116e4565b60015b61138f573d8060008114611345576040519150601f19603f3d011682016040523d82523d6000602084013e61134a565b606091505b50600081511415611387576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060604051806060016040528060358152602001611b8f60359139905090565b60006001821460e11b9050919050565b60009392505050565b600061142e61142984611904565b6118df565b90508281526020810184848401111561144a57611449611ae9565b5b6114558482856119e1565b509392505050565b60008135905061146c81611b32565b92915050565b60008135905061148181611b49565b92915050565b60008135905061149681611b60565b92915050565b6000815190506114ab81611b60565b92915050565b600082601f8301126114c6576114c5611ae4565b5b81356114d684826020860161141b565b91505092915050565b6000813590506114ee81611b77565b92915050565b60006020828403121561150a57611509611af3565b5b60006115188482850161145d565b91505092915050565b6000806040838503121561153857611537611af3565b5b60006115468582860161145d565b92505060206115578582860161145d565b9150509250929050565b60008060006060848603121561157a57611579611af3565b5b60006115888682870161145d565b93505060206115998682870161145d565b92505060406115aa868287016114df565b9150509250925092565b600080600080608085870312156115ce576115cd611af3565b5b60006115dc8782880161145d565b94505060206115ed8782880161145d565b93505060406115fe878288016114df565b925050606085013567ffffffffffffffff81111561161f5761161e611aee565b5b61162b878288016114b1565b91505092959194509250565b6000806040838503121561164e5761164d611af3565b5b600061165c8582860161145d565b925050602061166d85828601611472565b9150509250929050565b6000806040838503121561168e5761168d611af3565b5b600061169c8582860161145d565b92505060206116ad858286016114df565b9150509250929050565b6000602082840312156116cd576116cc611af3565b5b60006116db84828501611487565b91505092915050565b6000602082840312156116fa576116f9611af3565b5b60006117088482850161149c565b91505092915050565b60006020828403121561172757611726611af3565b5b6000611735848285016114df565b91505092915050565b6117478161196d565b82525050565b6117568161197f565b82525050565b600061176782611935565b611771818561194b565b93506117818185602086016119f0565b61178a81611af8565b840191505092915050565b60006117a082611940565b6117aa818561195c565b93506117ba8185602086016119f0565b6117c381611af8565b840191505092915050565b60006117db60168361195c565b91506117e682611b09565b602082019050919050565b6117fa816119d7565b82525050565b6000602082019050611815600083018461173e565b92915050565b6000608082019050611830600083018761173e565b61183d602083018661173e565b61184a60408301856117f1565b818103606083015261185c818461175c565b905095945050505050565b600060208201905061187c600083018461174d565b92915050565b6000602082019050818103600083015261189c8184611795565b905092915050565b600060208201905081810360008301526118bd816117ce565b9050919050565b60006020820190506118d960008301846117f1565b92915050565b60006118e96118fa565b90506118f58282611a55565b919050565b6000604051905090565b600067ffffffffffffffff82111561191f5761191e611ab5565b5b61192882611af8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000611978826119b7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015611a0e5780820151818401526020810190506119f3565b83811115611a1d576000848401525b50505050565b60006002820490506001821680611a3b57607f821691505b60208210811415611a4f57611a4e611a86565b5b50919050565b611a5e82611af8565b810181811067ffffffffffffffff82111715611a7d57611a7c611ab5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e7420616c726561647920636f6d706c6574656400000000000000000000600082015250565b611b3b8161196d565b8114611b4657600080fd5b50565b611b528161197f565b8114611b5d57600080fd5b50565b611b698161198b565b8114611b7457600080fd5b50565b611b80816119d7565b8114611b8b57600080fd5b5056fe697066733a2f2f516d554c3557416743594d5a5a3731346d69364c61796957694541386443415744356f34536d3267704a7836636aa2646970667358221220dc2dd497bc42d9b332dc14fa27bd5e1aab119c0eb60faf15c84207e226400a1f64736f6c63430008070033

Deployed Bytecode Sourcemap

83:414:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9112:630:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9996:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16263:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15723:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;346:149:2;;;:::i;:::-;;5851:317:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19878:2756;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22725:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11302:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7002:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10165:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16804:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23485:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10368:267;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17257:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9112:630;9197:4;9530:10;9515:25;;:11;:25;;;;:101;;;;9606:10;9591:25;;:11;:25;;;;9515:101;:177;;;;9682:10;9667:25;;:11;:25;;;;9515:177;9496:196;;9112:630;;;:::o;9996:98::-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;16263:214::-;16339:7;16363:16;16371:7;16363;:16::i;:::-;16358:64;;16388:34;;;;;;;;;;;;;;16358:64;16440:15;:24;16456:7;16440:24;;;;;;;;;;;:30;;;;;;;;;;;;16433:37;;16263:214;;;:::o;15723:390::-;15803:13;15819:16;15827:7;15819;:16::i;:::-;15803:32;;15873:5;15850:28;;:19;:17;:19::i;:::-;:28;;;15846:172;;15897:44;15914:5;15921:19;:17;:19::i;:::-;15897:16;:44::i;:::-;15892:126;;15968:35;;;;;;;;;;;;;;15892:126;15846:172;16061:2;16028:15;:24;16044:7;16028:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16098:7;16094:2;16078:28;;16087:5;16078:28;;;;;;;;;;;;15793:320;15723:390;;:::o;346:149:2:-;398:6;;;;;;;;;;;397:7;389:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;442:23;448:10;460:4;442:5;:23::i;:::-;484:4;475:6;;:13;;;;;;;;;;;;;;;;;;346:149::o;5851:317:0:-;5912:7;6136:15;:13;:15::i;:::-;6121:12;;6105:13;;:28;:46;6098:53;;5851:317;:::o;19878:2756::-;20007:27;20037;20056:7;20037:18;:27::i;:::-;20007:57;;20120:4;20079:45;;20095:19;20079:45;;;20075:86;;20133:28;;;;;;;;;;;;;;20075:86;20173:27;20202:23;20229:35;20256:7;20229:26;:35::i;:::-;20172:92;;;;20361:68;20386:15;20403:4;20409:19;:17;:19::i;:::-;20361:24;:68::i;:::-;20356:179;;20448:43;20465:4;20471:19;:17;:19::i;:::-;20448:16;:43::i;:::-;20443:92;;20500:35;;;;;;;;;;;;;;20443:92;20356:179;20564:1;20550:16;;:2;:16;;;20546:52;;;20575:23;;;;;;;;;;;;;;20546:52;20609:43;20631:4;20637:2;20641:7;20650:1;20609:21;:43::i;:::-;20741:15;20738:157;;;20879:1;20858:19;20851:30;20738:157;21267:18;:24;21286:4;21267:24;;;;;;;;;;;;;;;;21265:26;;;;;;;;;;;;21335:18;:22;21354:2;21335:22;;;;;;;;;;;;;;;;21333:24;;;;;;;;;;;21650:143;21686:2;21734:45;21749:4;21755:2;21759:19;21734:14;:45::i;:::-;2349:8;21706:73;21650:18;:143::i;:::-;21621:17;:26;21639:7;21621:26;;;;;;;;;;;:172;;;;21961:1;2349:8;21910:19;:47;:52;21906:617;;;21982:19;22014:1;22004:7;:11;21982:33;;22169:1;22135:17;:30;22153:11;22135:30;;;;;;;;;;;;:35;22131:378;;;22271:13;;22256:11;:28;22252:239;;22449:19;22416:17;:30;22434:11;22416:30;;;;;;;;;;;:52;;;;22252:239;22131:378;21964:559;21906:617;22567:7;22563:2;22548:27;;22557:4;22548:27;;;;;;;;;;;;22585:42;22606:4;22612:2;22616:7;22625:1;22585:20;:42::i;:::-;19997:2637;;;19878:2756;;;:::o;22725:179::-;22858:39;22875:4;22881:2;22885:7;22858:39;;;;;;;;;;;;:16;:39::i;:::-;22725:179;;;:::o;11302:150::-;11374:7;11416:27;11435:7;11416:18;:27::i;:::-;11393:52;;11302:150;;;:::o;7002:230::-;7074:7;7114:1;7097:19;;:5;:19;;;7093:60;;;7125:28;;;;;;;;;;;;;;7093:60;1317:13;7170:18;:25;7189:5;7170:25;;;;;;;;;;;;;;;;:55;7163:62;;7002:230;;;:::o;10165:102::-;10221:13;10253:7;10246:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10165:102;:::o;16804:303::-;16914:19;:17;:19::i;:::-;16902:31;;:8;:31;;;16898:61;;;16942:17;;;;;;;;;;;;;;16898:61;17022:8;16970:18;:39;16989:19;:17;:19::i;:::-;16970:39;;;;;;;;;;;;;;;:49;17010:8;16970:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17081:8;17045:55;;17060:19;:17;:19::i;:::-;17045:55;;;17091:8;17045:55;;;;;;:::i;:::-;;;;;;;;16804:303;;:::o;23485:388::-;23646:31;23659:4;23665:2;23669:7;23646:12;:31::i;:::-;23709:1;23691:2;:14;;;:19;23687:180;;23729:56;23760:4;23766:2;23770:7;23779:5;23729:30;:56::i;:::-;23724:143;;23812:40;;;;;;;;;;;;;;23724:143;23687:180;23485:388;;;;:::o;10368:267::-;10441:13;10471:16;10479:7;10471;:16::i;:::-;10466:59;;10496:29;;;;;;;;;;;;;;10466:59;10536:21;10560:10;:8;:10::i;:::-;10536:34;;10612:1;10593:7;10587:21;:26;;:41;;;;;;;;;;;;;;;;;10616:7;10587:41;10580:48;;;10368:267;;;:::o;17257:162::-;17354:4;17377:18;:25;17396:5;17377:25;;;;;;;;;;;;;;;:35;17403:8;17377:35;;;;;;;;;;;;;;;;;;;;;;;;;17370:42;;17257:162;;;;:::o;17668:277::-;17733:4;17787:7;17768:15;:13;:15::i;:::-;:26;;:65;;;;;17820:13;;17810:7;:23;17768:65;:151;;;;;17918:1;2075:8;17870:17;:26;17888:7;17870:26;;;;;;;;;;;;:44;:49;17768:151;17749:170;;17668:277;;;:::o;39145:103::-;39205:7;39231:10;39224:17;;39145:103;:::o;27042:2659::-;27114:20;27137:13;;27114:36;;27176:1;27164:8;:13;27160:44;;;27186:18;;;;;;;;;;;;;;27160:44;27215:61;27245:1;27249:2;27253:12;27267:8;27215:21;:61::i;:::-;27748:1;1452:2;27718:1;:26;;27717:32;27705:8;:45;27679:18;:22;27698:2;27679:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28020:136;28056:2;28109:33;28132:1;28136:2;28140:1;28109:14;:33::i;:::-;28076:30;28097:8;28076:20;:30::i;:::-;:66;28020:18;:136::i;:::-;27986:17;:31;28004:12;27986:31;;;;;;;;;;;:170;;;;28171:16;28201:11;28230:8;28215:12;:23;28201:37;;28743:16;28739:2;28735:25;28723:37;;29107:12;29068:8;29028:1;28967:25;28909:1;28849;28823:328;29228:1;29214:12;29210:20;29169:339;29268:3;29259:7;29256:16;29169:339;;29482:7;29472:8;29469:1;29442:25;29439:1;29436;29431:59;29320:1;29311:7;29307:15;29296:26;;29169:339;;;29173:75;29551:1;29539:8;:13;29535:45;;;29561:19;;;;;;;;;;;;;;29535:45;29611:3;29595:13;:19;;;;27459:2166;;29634:60;29663:1;29667:2;29671:12;29685:8;29634:20;:60::i;:::-;27104:2597;27042:2659;;:::o;5383:90::-;5439:7;5383:90;:::o;12426:1249::-;12493:7;12512:12;12527:7;12512:22;;12592:4;12573:15;:13;:15::i;:::-;:23;12569:1042;;12625:13;;12618:4;:20;12614:997;;;12662:14;12679:17;:23;12697:4;12679:23;;;;;;;;;;;;12662:40;;12794:1;2075:8;12766:6;:24;:29;12762:831;;;13421:111;13438:1;13428:6;:11;13421:111;;;13480:17;:25;13498:6;;;;;;;13480:25;;;;;;;;;;;;13471:34;;13421:111;;;13564:6;13557:13;;;;;;12762:831;12640:971;12614:997;12569:1042;13637:31;;;;;;;;;;;;;;12426:1249;;;;:::o;18803:474::-;18902:27;18931:23;18970:38;19011:15;:24;19027:7;19011:24;;;;;;;;;;;18970:65;;19185:18;19162:41;;19241:19;19235:26;19216:45;;19148:123;18803:474;;;:::o;18049:646::-;18194:11;18356:16;18349:5;18345:28;18336:37;;18514:16;18503:9;18499:32;18486:45;;18662:15;18651:9;18648:30;18640:5;18629:9;18626:20;18623:56;18613:66;;18049:646;;;;;:::o;24517:154::-;;;;;:::o;38472:304::-;38603:7;38622:16;2470:3;38648:19;:41;;38622:68;;2470:3;38715:31;38726:4;38732:2;38736:9;38715:10;:31::i;:::-;38707:40;;:62;;38700:69;;;38472:304;;;;;:::o;14208:443::-;14288:14;14453:16;14446:5;14442:28;14433:37;;14628:5;14614:11;14589:23;14585:41;14582:52;14575:5;14572:63;14562:73;;14208:443;;;;:::o;25318:153::-;;;;;:::o;25899:697::-;26057:4;26102:2;26077:45;;;26123:19;:17;:19::i;:::-;26144:4;26150:7;26159:5;26077:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26073:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26372:1;26355:6;:13;:18;26351:229;;;26400:40;;;;;;;;;;;;;;26351:229;26540:6;26534:13;26525:6;26521:2;26517:15;26510:38;26073:517;26243:54;;;26233:64;;;:6;:64;;;;26226:71;;;25899:697;;;;;;:::o;186:154:2:-;246:13;271:62;;;;;;;;;;;;;;;;;;;186:154;:::o;14748:318:0:-;14818:14;15047:1;15037:8;15034:15;15008:24;15004:46;14994:56;;14748:318;;;:::o;38183:143::-;38316:6;38183:143;;;;;:::o;7:410:3:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:118::-;5952:24;5970:5;5952:24;:::i;:::-;5947:3;5940:37;5865:118;;:::o;5989:109::-;6070:21;6085:5;6070:21;:::i;:::-;6065:3;6058:34;5989:109;;:::o;6104:360::-;6190:3;6218:38;6250:5;6218:38;:::i;:::-;6272:70;6335:6;6330:3;6272:70;:::i;:::-;6265:77;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6194:270;6104:360;;;;:::o;6470:364::-;6558:3;6586:39;6619:5;6586:39;:::i;:::-;6641:71;6705:6;6700:3;6641:71;:::i;:::-;6634:78;;6721:52;6766:6;6761:3;6754:4;6747:5;6743:16;6721:52;:::i;:::-;6798:29;6820:6;6798:29;:::i;:::-;6793:3;6789:39;6782:46;;6562:272;6470:364;;;;:::o;6840:366::-;6982:3;7003:67;7067:2;7062:3;7003:67;:::i;:::-;6996:74;;7079:93;7168:3;7079:93;:::i;:::-;7197:2;7192:3;7188:12;7181:19;;6840:366;;;:::o;7212:118::-;7299:24;7317:5;7299:24;:::i;:::-;7294:3;7287:37;7212:118;;:::o;7336:222::-;7429:4;7467:2;7456:9;7452:18;7444:26;;7480:71;7548:1;7537:9;7533:17;7524:6;7480:71;:::i;:::-;7336:222;;;;:::o;7564:640::-;7759:4;7797:3;7786:9;7782:19;7774:27;;7811:71;7879:1;7868:9;7864:17;7855:6;7811:71;:::i;:::-;7892:72;7960:2;7949:9;7945:18;7936:6;7892:72;:::i;:::-;7974;8042:2;8031:9;8027:18;8018:6;7974:72;:::i;:::-;8093:9;8087:4;8083:20;8078:2;8067:9;8063:18;8056:48;8121:76;8192:4;8183:6;8121:76;:::i;:::-;8113:84;;7564:640;;;;;;;:::o;8210:210::-;8297:4;8335:2;8324:9;8320:18;8312:26;;8348:65;8410:1;8399:9;8395:17;8386:6;8348:65;:::i;:::-;8210:210;;;;:::o;8426:313::-;8539:4;8577:2;8566:9;8562:18;8554:26;;8626:9;8620:4;8616:20;8612:1;8601:9;8597:17;8590:47;8654:78;8727:4;8718:6;8654:78;:::i;:::-;8646:86;;8426:313;;;;:::o;8745:419::-;8911:4;8949:2;8938:9;8934:18;8926:26;;8998:9;8992:4;8988:20;8984:1;8973:9;8969:17;8962:47;9026:131;9152:4;9026:131;:::i;:::-;9018:139;;8745:419;;;:::o;9170:222::-;9263:4;9301:2;9290:9;9286:18;9278:26;;9314:71;9382:1;9371:9;9367:17;9358:6;9314:71;:::i;:::-;9170:222;;;;:::o;9398:129::-;9432:6;9459:20;;:::i;:::-;9449:30;;9488:33;9516:4;9508:6;9488:33;:::i;:::-;9398:129;;;:::o;9533:75::-;9566:6;9599:2;9593:9;9583:19;;9533:75;:::o;9614:307::-;9675:4;9765:18;9757:6;9754:30;9751:56;;;9787:18;;:::i;:::-;9751:56;9825:29;9847:6;9825:29;:::i;:::-;9817:37;;9909:4;9903;9899:15;9891:23;;9614:307;;;:::o;9927:98::-;9978:6;10012:5;10006:12;9996:22;;9927:98;;;:::o;10031:99::-;10083:6;10117:5;10111:12;10101:22;;10031:99;;;:::o;10136:168::-;10219:11;10253:6;10248:3;10241:19;10293:4;10288:3;10284:14;10269:29;;10136:168;;;;:::o;10310:169::-;10394:11;10428:6;10423:3;10416:19;10468:4;10463:3;10459:14;10444:29;;10310:169;;;;:::o;10485:96::-;10522:7;10551:24;10569:5;10551:24;:::i;:::-;10540:35;;10485:96;;;:::o;10587:90::-;10621:7;10664:5;10657:13;10650:21;10639:32;;10587:90;;;:::o;10683:149::-;10719:7;10759:66;10752:5;10748:78;10737:89;;10683:149;;;:::o;10838:126::-;10875:7;10915:42;10908:5;10904:54;10893:65;;10838:126;;;:::o;10970:77::-;11007:7;11036:5;11025:16;;10970:77;;;:::o;11053:154::-;11137:6;11132:3;11127;11114:30;11199:1;11190:6;11185:3;11181:16;11174:27;11053:154;;;:::o;11213:307::-;11281:1;11291:113;11305:6;11302:1;11299:13;11291:113;;;11390:1;11385:3;11381:11;11375:18;11371:1;11366:3;11362:11;11355:39;11327:2;11324:1;11320:10;11315:15;;11291:113;;;11422:6;11419:1;11416:13;11413:101;;;11502:1;11493:6;11488:3;11484:16;11477:27;11413:101;11262:258;11213:307;;;:::o;11526:320::-;11570:6;11607:1;11601:4;11597:12;11587:22;;11654:1;11648:4;11644:12;11675:18;11665:81;;11731:4;11723:6;11719:17;11709:27;;11665:81;11793:2;11785:6;11782:14;11762:18;11759:38;11756:84;;;11812:18;;:::i;:::-;11756:84;11577:269;11526:320;;;:::o;11852:281::-;11935:27;11957:4;11935:27;:::i;:::-;11927:6;11923:40;12065:6;12053:10;12050:22;12029:18;12017:10;12014:34;12011:62;12008:88;;;12076:18;;:::i;:::-;12008:88;12116:10;12112:2;12105:22;11895:238;11852:281;;:::o;12139:180::-;12187:77;12184:1;12177:88;12284:4;12281:1;12274:15;12308:4;12305:1;12298:15;12325:180;12373:77;12370:1;12363:88;12470:4;12467:1;12460:15;12494:4;12491:1;12484:15;12511:117;12620:1;12617;12610:12;12634:117;12743:1;12740;12733:12;12757:117;12866:1;12863;12856:12;12880:117;12989:1;12986;12979:12;13003:102;13044:6;13095:2;13091:7;13086:2;13079:5;13075:14;13071:28;13061:38;;13003:102;;;:::o;13111:172::-;13251:24;13247:1;13239:6;13235:14;13228:48;13111:172;:::o;13289:122::-;13362:24;13380:5;13362:24;:::i;:::-;13355:5;13352:35;13342:63;;13401:1;13398;13391:12;13342:63;13289:122;:::o;13417:116::-;13487:21;13502:5;13487:21;:::i;:::-;13480:5;13477:32;13467:60;;13523:1;13520;13513:12;13467:60;13417:116;:::o;13539:120::-;13611:23;13628:5;13611:23;:::i;:::-;13604:5;13601:34;13591:62;;13649:1;13646;13639:12;13591:62;13539:120;:::o;13665:122::-;13738:24;13756:5;13738:24;:::i;:::-;13731:5;13728:35;13718:63;;13777:1;13774;13767:12;13718:63;13665:122;:::o

Swarm Source

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