ETH Price: $3,307.52 (-3.27%)
Gas: 12 Gwei

Token

SPIRALS (SPIN)
 

Overview

Max Total Supply

50 SPIN

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SPIN
0x7670d9d73fe172d856bb1e9012251c828d09bccc
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:
Spirals_by_DinizBR

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-18
*/

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

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

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

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

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

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

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        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]`.
        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.
            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 aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 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: contracts/spirals.sol


pragma solidity ^0.8.4;

/*
──▒▒▒▒▒────▄████▄─────
─▒─▄▒─▄▒──███▄█▀──────
─▒▒▒▒▒▒▒─▐████──█──█──
─▒▒▒▒▒▒▒──█████▄──────
─▒─▒─▒─▒───▀████▀────                                            
*/



contract Spirals_by_DinizBR is ERC721A, Ownable {
    uint256 MAX_MINTS = 1;
    uint256 MAX_SUPPLY = 50;
    uint256 public mintRate = 0.000 ether;

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

    constructor() ERC721A("SPIRALS", "SPIN") {}

    function mint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

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

    function _startTokenId() internal view virtual override(ERC721A) returns (uint256) {
        return 1;
    }

    function setMintRate(uint256 _mintRate) public onlyOwner {
        mintRate = _mintRate;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60016009556032600a556000600b5560e060405260366080818152906200159e60a03980516200003891600c9160209091019062000113565b503480156200004657600080fd5b50604080518082018252600781526653504952414c5360c81b60208083019182528351808501909452600484526329a824a760e11b908401528151919291620000929160029162000113565b508051620000a890600390602084019062000113565b5050600160005550620000bb33620000c1565b620001f6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012190620001b9565b90600052602060002090601f01602090048101928262000145576000855562000190565b82601f106200016057805160ff191683800117855562000190565b8280016001018555821562000190579182015b828111156200019057825182559160200191906001019062000173565b506200019e929150620001a2565b5090565b5b808211156200019e5760008155600101620001a3565b600181811c90821680620001ce57607f821691505b60208210811415620001f057634e487b7160e01b600052602260045260246000fd5b50919050565b61139880620002066000396000f3fe60806040526004361061012a5760003560e01c8063715018a6116100ab578063b88d4fde1161006f578063b88d4fde14610317578063c87b56dd14610337578063ca0dcf1614610357578063dbe2193f1461036d578063e985e9c51461038d578063f2fde38b146103d657600080fd5b8063715018a61461029c5780638da5cb5b146102b157806395d89b41146102cf578063a0712d68146102e4578063a22cb465146102f757600080fd5b806323b872dd116100f257806323b872dd1461020757806342842e0e146102275780636352211e146102475780636c0360eb1461026757806370a082311461027c57600080fd5b806301ffc9a71461012f57806306fdde0314610164578063081812fc14610186578063095ea7b3146101be57806318160ddd146101e0575b600080fd5b34801561013b57600080fd5b5061014f61014a366004611187565b6103f6565b60405190151581526020015b60405180910390f35b34801561017057600080fd5b50610179610448565b60405161015b919061126f565b34801561019257600080fd5b506101a66101a13660046111bf565b6104da565b6040516001600160a01b03909116815260200161015b565b3480156101ca57600080fd5b506101de6101d936600461115e565b61051e565b005b3480156101ec57600080fd5b5060015460005403600019015b60405190815260200161015b565b34801561021357600080fd5b506101de610222366004611014565b6105be565b34801561023357600080fd5b506101de610242366004611014565b61074f565b34801561025357600080fd5b506101a66102623660046111bf565b61076f565b34801561027357600080fd5b5061017961077a565b34801561028857600080fd5b506101f9610297366004610fc8565b610808565b3480156102a857600080fd5b506101de610857565b3480156102bd57600080fd5b506008546001600160a01b03166101a6565b3480156102db57600080fd5b5061017961086b565b6101de6102f23660046111bf565b61087a565b34801561030357600080fd5b506101de610312366004611124565b6109b0565b34801561032357600080fd5b506101de61033236600461104f565b610a46565b34801561034357600080fd5b506101796103523660046111bf565b610a90565b34801561036357600080fd5b506101f9600b5481565b34801561037957600080fd5b506101de6103883660046111bf565b610b15565b34801561039957600080fd5b5061014f6103a8366004610fe2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156103e257600080fd5b506101de6103f1366004610fc8565b610b22565b60006301ffc9a760e01b6001600160e01b03198316148061042757506380ac58cd60e01b6001600160e01b03198316145b806104425750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610457906112e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610483906112e5565b80156104d05780601f106104a5576101008083540402835291602001916104d0565b820191906000526020600020905b8154815290600101906020018083116104b357829003601f168201915b5050505050905090565b60006104e582610b98565b610502576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105298261076f565b9050336001600160a01b038216146105625761054581336103a8565b610562576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006105c982610bcd565b9050836001600160a01b0316816001600160a01b0316146105fc5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106495761062c86336103a8565b61064957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661067057604051633a954ecd60e21b815260040160405180910390fd5b801561067b57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661070657600184016000818152600460205260409020546107045760005481146107045760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61076a83838360405180602001604052806000815250610a46565b505050565b600061044282610bcd565b600c8054610787906112e5565b80601f01602080910402602001604051908101604052809291908181526020018280546107b3906112e5565b80156108005780601f106107d557610100808354040283529160200191610800565b820191906000526020600020905b8154815290600101906020018083116107e357829003601f168201915b505050505081565b60006001600160a01b038216610831576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61085f610c36565b6108696000610c90565b565b606060038054610457906112e5565b6009543360009081526005602052604090819020546108a4911c67ffffffffffffffff1683611282565b11156108ec5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064015b60405180910390fd5b600a5460015460005483919003600019016109079190611282565b111561094e5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108e3565b80600b5461095c919061129a565b3410156109a35760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016108e3565b6109ad3382610ce2565b50565b6001600160a01b0382163314156109da5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a518484846105be565b6001600160a01b0383163b15610a8a57610a6d84848484610d00565b610a8a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610a9b82610b98565b610ab857604051630a14c4b560e41b815260040160405180910390fd5b6000610ac2610df7565b9050805160001415610ae35760405180602001604052806000815250610b0e565b80610aed84610e06565b604051602001610afe929190611203565b6040516020818303038152906040525b9392505050565b610b1d610c36565b600b55565b610b2a610c36565b6001600160a01b038116610b8f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e3565b6109ad81610c90565b600081600111158015610bac575060005482105b8015610442575050600090815260046020526040902054600160e01b161590565b60008180600111610c1d57600054811015610c1d57600081815260046020526040902054600160e01b8116610c1b575b80610b0e575060001901600081815260046020526040902054610bfd565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cfc828260405180602001604052806000815250610e48565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610d35903390899088908890600401611232565b602060405180830381600087803b158015610d4f57600080fd5b505af1925050508015610d7f575060408051601f3d908101601f19168201909252610d7c918101906111a3565b60015b610dda573d808015610dad576040519150601f19603f3d011682016040523d82523d6000602084013e610db2565b606091505b508051610dd2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600c8054610457906112e5565b604080516080019081905280825b600183039250600a81066030018353600a900480610e3157610e36565b610e14565b50819003601f19909101908152919050565b610e528383610eb5565b6001600160a01b0383163b1561076a576000548281035b610e7c6000868380600101945086610d00565b610e99576040516368d2bf6b60e11b815260040160405180910390fd5b818110610e69578160005414610eae57600080fd5b5050505050565b60005481610ed65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610f8557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f4d565b5081610fa357604051622e076360e81b815260040160405180910390fd5b60005550505050565b80356001600160a01b0381168114610fc357600080fd5b919050565b600060208284031215610fd9578081fd5b610b0e82610fac565b60008060408385031215610ff4578081fd5b610ffd83610fac565b915061100b60208401610fac565b90509250929050565b600080600060608486031215611028578081fd5b61103184610fac565b925061103f60208501610fac565b9150604084013590509250925092565b60008060008060808587031215611064578081fd5b61106d85610fac565b935061107b60208601610fac565b925060408501359150606085013567ffffffffffffffff8082111561109e578283fd5b818701915087601f8301126110b1578283fd5b8135818111156110c3576110c3611336565b604051601f8201601f19908116603f011681019083821181831017156110eb576110eb611336565b816040528281528a6020848701011115611103578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611136578182fd5b61113f83610fac565b915060208301358015158114611153578182fd5b809150509250929050565b60008060408385031215611170578182fd5b61117983610fac565b946020939093013593505050565b600060208284031215611198578081fd5b8135610b0e8161134c565b6000602082840312156111b4578081fd5b8151610b0e8161134c565b6000602082840312156111d0578081fd5b5035919050565b600081518084526111ef8160208601602086016112b9565b601f01601f19169290920160200192915050565b600083516112158184602088016112b9565b8351908301906112298183602088016112b9565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611265908301846111d7565b9695505050505050565b602081526000610b0e60208301846111d7565b6000821982111561129557611295611320565b500190565b60008160001904831182151516156112b4576112b4611320565b500290565b60005b838110156112d45781810151838201526020016112bc565b83811115610a8a5750506000910152565b600181811c908216806112f957607f821691505b6020821081141561131a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ad57600080fdfea264697066735822122020f0ee61108595f40cc34a6e73b8dd00727d58df245e7fd3410561811935771664736f6c63430008040033697066733a2f2f516d615850317a3450635133504b456f3866794a7975625836315662637645546b4543766e644c373831595336502f

Deployed Bytecode

0x60806040526004361061012a5760003560e01c8063715018a6116100ab578063b88d4fde1161006f578063b88d4fde14610317578063c87b56dd14610337578063ca0dcf1614610357578063dbe2193f1461036d578063e985e9c51461038d578063f2fde38b146103d657600080fd5b8063715018a61461029c5780638da5cb5b146102b157806395d89b41146102cf578063a0712d68146102e4578063a22cb465146102f757600080fd5b806323b872dd116100f257806323b872dd1461020757806342842e0e146102275780636352211e146102475780636c0360eb1461026757806370a082311461027c57600080fd5b806301ffc9a71461012f57806306fdde0314610164578063081812fc14610186578063095ea7b3146101be57806318160ddd146101e0575b600080fd5b34801561013b57600080fd5b5061014f61014a366004611187565b6103f6565b60405190151581526020015b60405180910390f35b34801561017057600080fd5b50610179610448565b60405161015b919061126f565b34801561019257600080fd5b506101a66101a13660046111bf565b6104da565b6040516001600160a01b03909116815260200161015b565b3480156101ca57600080fd5b506101de6101d936600461115e565b61051e565b005b3480156101ec57600080fd5b5060015460005403600019015b60405190815260200161015b565b34801561021357600080fd5b506101de610222366004611014565b6105be565b34801561023357600080fd5b506101de610242366004611014565b61074f565b34801561025357600080fd5b506101a66102623660046111bf565b61076f565b34801561027357600080fd5b5061017961077a565b34801561028857600080fd5b506101f9610297366004610fc8565b610808565b3480156102a857600080fd5b506101de610857565b3480156102bd57600080fd5b506008546001600160a01b03166101a6565b3480156102db57600080fd5b5061017961086b565b6101de6102f23660046111bf565b61087a565b34801561030357600080fd5b506101de610312366004611124565b6109b0565b34801561032357600080fd5b506101de61033236600461104f565b610a46565b34801561034357600080fd5b506101796103523660046111bf565b610a90565b34801561036357600080fd5b506101f9600b5481565b34801561037957600080fd5b506101de6103883660046111bf565b610b15565b34801561039957600080fd5b5061014f6103a8366004610fe2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156103e257600080fd5b506101de6103f1366004610fc8565b610b22565b60006301ffc9a760e01b6001600160e01b03198316148061042757506380ac58cd60e01b6001600160e01b03198316145b806104425750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610457906112e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610483906112e5565b80156104d05780601f106104a5576101008083540402835291602001916104d0565b820191906000526020600020905b8154815290600101906020018083116104b357829003601f168201915b5050505050905090565b60006104e582610b98565b610502576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105298261076f565b9050336001600160a01b038216146105625761054581336103a8565b610562576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006105c982610bcd565b9050836001600160a01b0316816001600160a01b0316146105fc5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106495761062c86336103a8565b61064957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661067057604051633a954ecd60e21b815260040160405180910390fd5b801561067b57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661070657600184016000818152600460205260409020546107045760005481146107045760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61076a83838360405180602001604052806000815250610a46565b505050565b600061044282610bcd565b600c8054610787906112e5565b80601f01602080910402602001604051908101604052809291908181526020018280546107b3906112e5565b80156108005780601f106107d557610100808354040283529160200191610800565b820191906000526020600020905b8154815290600101906020018083116107e357829003601f168201915b505050505081565b60006001600160a01b038216610831576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61085f610c36565b6108696000610c90565b565b606060038054610457906112e5565b6009543360009081526005602052604090819020546108a4911c67ffffffffffffffff1683611282565b11156108ec5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064015b60405180910390fd5b600a5460015460005483919003600019016109079190611282565b111561094e5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108e3565b80600b5461095c919061129a565b3410156109a35760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016108e3565b6109ad3382610ce2565b50565b6001600160a01b0382163314156109da5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a518484846105be565b6001600160a01b0383163b15610a8a57610a6d84848484610d00565b610a8a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610a9b82610b98565b610ab857604051630a14c4b560e41b815260040160405180910390fd5b6000610ac2610df7565b9050805160001415610ae35760405180602001604052806000815250610b0e565b80610aed84610e06565b604051602001610afe929190611203565b6040516020818303038152906040525b9392505050565b610b1d610c36565b600b55565b610b2a610c36565b6001600160a01b038116610b8f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e3565b6109ad81610c90565b600081600111158015610bac575060005482105b8015610442575050600090815260046020526040902054600160e01b161590565b60008180600111610c1d57600054811015610c1d57600081815260046020526040902054600160e01b8116610c1b575b80610b0e575060001901600081815260046020526040902054610bfd565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cfc828260405180602001604052806000815250610e48565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610d35903390899088908890600401611232565b602060405180830381600087803b158015610d4f57600080fd5b505af1925050508015610d7f575060408051601f3d908101601f19168201909252610d7c918101906111a3565b60015b610dda573d808015610dad576040519150601f19603f3d011682016040523d82523d6000602084013e610db2565b606091505b508051610dd2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600c8054610457906112e5565b604080516080019081905280825b600183039250600a81066030018353600a900480610e3157610e36565b610e14565b50819003601f19909101908152919050565b610e528383610eb5565b6001600160a01b0383163b1561076a576000548281035b610e7c6000868380600101945086610d00565b610e99576040516368d2bf6b60e11b815260040160405180910390fd5b818110610e69578160005414610eae57600080fd5b5050505050565b60005481610ed65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610f8557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f4d565b5081610fa357604051622e076360e81b815260040160405180910390fd5b60005550505050565b80356001600160a01b0381168114610fc357600080fd5b919050565b600060208284031215610fd9578081fd5b610b0e82610fac565b60008060408385031215610ff4578081fd5b610ffd83610fac565b915061100b60208401610fac565b90509250929050565b600080600060608486031215611028578081fd5b61103184610fac565b925061103f60208501610fac565b9150604084013590509250925092565b60008060008060808587031215611064578081fd5b61106d85610fac565b935061107b60208601610fac565b925060408501359150606085013567ffffffffffffffff8082111561109e578283fd5b818701915087601f8301126110b1578283fd5b8135818111156110c3576110c3611336565b604051601f8201601f19908116603f011681019083821181831017156110eb576110eb611336565b816040528281528a6020848701011115611103578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611136578182fd5b61113f83610fac565b915060208301358015158114611153578182fd5b809150509250929050565b60008060408385031215611170578182fd5b61117983610fac565b946020939093013593505050565b600060208284031215611198578081fd5b8135610b0e8161134c565b6000602082840312156111b4578081fd5b8151610b0e8161134c565b6000602082840312156111d0578081fd5b5035919050565b600081518084526111ef8160208601602086016112b9565b601f01601f19169290920160200192915050565b600083516112158184602088016112b9565b8351908301906112298183602088016112b9565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611265908301846111d7565b9695505050505050565b602081526000610b0e60208301846111d7565b6000821982111561129557611295611320565b500190565b60008160001904831182151516156112b4576112b4611320565b500290565b60005b838110156112d45781810151838201526020016112bc565b83811115610a8a5750506000910152565b600181811c908216806112f957607f821691505b6020821081141561131a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ad57600080fdfea264697066735822122020f0ee61108595f40cc34a6e73b8dd00727d58df245e7fd3410561811935771664736f6c63430008040033

Deployed Bytecode Sourcemap

54877:1065:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22028:639;;;;;;;;;;-1:-1:-1;22028:639:0;;;;;:::i;:::-;;:::i;:::-;;;5162:14:1;;5155:22;5137:41;;5125:2;5110:18;22028:639:0;;;;;;;;22930:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29413:218::-;;;;;;;;;;-1:-1:-1;29413:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4460:32:1;;;4442:51;;4430:2;4415:18;29413:218:0;4397:102:1;28854:400:0;;;;;;;;;;-1:-1:-1;28854:400:0;;;;;:::i;:::-;;:::i;:::-;;18681:323;;;;;;;;;;-1:-1:-1;55826:1:0;18955:12;18742:7;18939:13;:28;-1:-1:-1;;18939:46:0;18681:323;;;7375:25:1;;;7363:2;7348:18;18681:323:0;7330:76:1;33120:2817:0;;;;;;;;;;-1:-1:-1;33120:2817:0;;;;;:::i;:::-;;:::i;36033:185::-;;;;;;;;;;-1:-1:-1;36033:185:0;;;;;:::i;:::-;;:::i;24323:152::-;;;;;;;;;;-1:-1:-1;24323:152:0;;;;;:::i;:::-;;:::i;55036:80::-;;;;;;;;;;;;;:::i;19865:233::-;;;;;;;;;;-1:-1:-1;19865:233:0;;;;;:::i;:::-;;:::i;2776:103::-;;;;;;;;;;;;;:::i;2128:87::-;;;;;;;;;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;2201:6:0;2128:87;;23106:104;;;;;;;;;;;;;:::i;55176:433::-;;;;;;:::i;:::-;;:::i;29971:308::-;;;;;;;;;;-1:-1:-1;29971:308:0;;;;;:::i;:::-;;:::i;36816:399::-;;;;;;;;;;-1:-1:-1;36816:399:0;;;;;:::i;:::-;;:::i;23316:318::-;;;;;;;;;;-1:-1:-1;23316:318:0;;;;;:::i;:::-;;:::i;54990:37::-;;;;;;;;;;;;;;;;55843:96;;;;;;;;;;-1:-1:-1;55843:96:0;;;;;:::i;:::-;;:::i;30436:164::-;;;;;;;;;;-1:-1:-1;30436:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30557:25:0;;;30533:4;30557:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30436:164;3034:201;;;;;;;;;;-1:-1:-1;3034:201:0;;;;;:::i;:::-;;:::i;22028:639::-;22113:4;-1:-1:-1;;;;;;;;;22437:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22514:25:0;;;22437:102;:179;;;-1:-1:-1;;;;;;;;;;22591:25:0;;;22437:179;22417:199;22028:639;-1:-1:-1;;22028:639:0:o;22930:100::-;22984:13;23017:5;23010:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22930:100;:::o;29413:218::-;29489:7;29514:16;29522:7;29514;:16::i;:::-;29509:64;;29539:34;;-1:-1:-1;;;29539:34:0;;;;;;;;;;;29509:64;-1:-1:-1;29593:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;29593:30:0;;29413:218::o;28854:400::-;28935:13;28951:16;28959:7;28951;:16::i;:::-;28935:32;-1:-1:-1;52711:10:0;-1:-1:-1;;;;;28984:28:0;;;28980:175;;29032:44;29049:5;52711:10;30436:164;:::i;29032:44::-;29027:128;;29104:35;;-1:-1:-1;;;29104:35:0;;;;;;;;;;;29027:128;29167:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;29167:35:0;-1:-1:-1;;;;;29167:35:0;;;;;;;;;29218:28;;29167:24;;29218:28;;;;;;;28854:400;;;:::o;33120:2817::-;33254:27;33284;33303:7;33284:18;:27::i;:::-;33254:57;;33369:4;-1:-1:-1;;;;;33328:45:0;33344:19;-1:-1:-1;;;;;33328:45:0;;33324:86;;33382:28;;-1:-1:-1;;;33382:28:0;;;;;;;;;;;33324:86;33424:27;32234:24;;;:15;:24;;;;;32456:26;;52711:10;31859:30;;;-1:-1:-1;;;;;31552:28:0;;31837:20;;;31834:56;33610:180;;33703:43;33720:4;52711:10;30436:164;:::i;33703:43::-;33698:92;;33755:35;;-1:-1:-1;;;33755:35:0;;;;;;;;;;;33698:92;-1:-1:-1;;;;;33807:16:0;;33803:52;;33832:23;;-1:-1:-1;;;33832:23:0;;;;;;;;;;;33803:52;34004:15;34001:2;;;34144:1;34123:19;34116:30;34001:2;-1:-1:-1;;;;;34541:24:0;;;;;;;:18;:24;;;;;;34539:26;;-1:-1:-1;;34539:26:0;;;34610:22;;;;;;;;;34608:24;;-1:-1:-1;34608:24:0;;;27712:11;27687:23;27683:41;27670:63;-1:-1:-1;;;27670:63:0;34903:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;35198:47:0;;35194:627;;35303:1;35293:11;;35271:19;35426:30;;;:17;:30;;;;;;35422:384;;35564:13;;35549:11;:28;35545:242;;35711:30;;;;:17;:30;;;;;:52;;;35545:242;35194:627;;35868:7;35864:2;-1:-1:-1;;;;;35849:27:0;35858:4;-1:-1:-1;;;;;35849:27:0;;;;;;;;;;;33120:2817;;;;;;:::o;36033:185::-;36171:39;36188:4;36194:2;36198:7;36171:39;;;;;;;;;;;;:16;:39::i;:::-;36033:185;;;:::o;24323:152::-;24395:7;24438:27;24457:7;24438:18;:27::i;55036:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19865:233::-;19937:7;-1:-1:-1;;;;;19961:19:0;;19957:60;;19989:28;;-1:-1:-1;;;19989:28:0;;;;;;;;;;;19957:60;-1:-1:-1;;;;;;20035:25:0;;;;;:18;:25;;;;;;14024:13;20035:55;;19865:233::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;23106:104::-;23162:13;23195:7;23188:14;;;;;:::i;55176:433::-;55364:9;;55349:10;20241:7;20269:25;;;:18;:25;;14162:2;20269:25;;;;;55324:36;;20269:50;14024:13;20268:82;55324:8;:36;:::i;:::-;:49;;55316:80;;;;-1:-1:-1;;;55316:80:0;;6022:2:1;55316:80:0;;;6004:21:1;6061:2;6041:18;;;6034:30;-1:-1:-1;;;6080:18:1;;;6073:48;6138:18;;55316:80:0;;;;;;;;;55443:10;;55826:1;18955:12;18742:7;18939:13;55431:8;;18939:28;;-1:-1:-1;;18939:46:0;55415:24;;;;:::i;:::-;:38;;55407:73;;;;-1:-1:-1;;;55407:73:0;;6369:2:1;55407:73:0;;;6351:21:1;6408:2;6388:18;;;6381:30;-1:-1:-1;;;6427:18:1;;;6420:52;6489:18;;55407:73:0;6341:172:1;55407:73:0;55524:8;55513;;:19;;;;:::i;:::-;55499:9;:34;;55491:68;;;;-1:-1:-1;;;55491:68:0;;7081:2:1;55491:68:0;;;7063:21:1;7120:2;7100:18;;;7093:30;-1:-1:-1;;;7139:18:1;;;7132:51;7200:18;;55491:68:0;7053:171:1;55491:68:0;55570:31;55580:10;55592:8;55570:9;:31::i;:::-;55176:433;:::o;29971:308::-;-1:-1:-1;;;;;30070:31:0;;52711:10;30070:31;30066:61;;;30110:17;;-1:-1:-1;;;30110:17:0;;;;;;;;;;;30066:61;52711:10;30140:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;30140:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;30140:60:0;;;;;;;;;;30216:55;;5137:41:1;;;30140:49:0;;52711:10;30216:55;;5110:18:1;30216:55:0;;;;;;;29971:308;;:::o;36816:399::-;36983:31;36996:4;37002:2;37006:7;36983:12;:31::i;:::-;-1:-1:-1;;;;;37029:14:0;;;:19;37025:183;;37068:56;37099:4;37105:2;37109:7;37118:5;37068:30;:56::i;:::-;37063:145;;37152:40;;-1:-1:-1;;;37152:40:0;;;;;;;;;;;37063:145;36816:399;;;;:::o;23316:318::-;23389:13;23420:16;23428:7;23420;:16::i;:::-;23415:59;;23445:29;;-1:-1:-1;;;23445:29:0;;;;;;;;;;;23415:59;23487:21;23511:10;:8;:10::i;:::-;23487:34;;23545:7;23539:21;23564:1;23539:26;;:87;;;;;;;;;;;;;;;;;23592:7;23601:18;23611:7;23601:9;:18::i;:::-;23575:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23539:87;23532:94;23316:318;-1:-1:-1;;;23316:318:0:o;55843:96::-;2014:13;:11;:13::i;:::-;55911:8:::1;:20:::0;55843:96::o;3034:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3123:22:0;::::1;3115:73;;;::::0;-1:-1:-1;;;3115:73:0;;5615:2:1;3115:73:0::1;::::0;::::1;5597:21:1::0;5654:2;5634:18;;;5627:30;5693:34;5673:18;;;5666:62;-1:-1:-1;;;5744:18:1;;;5737:36;5790:19;;3115:73:0::1;5587:228:1::0;3115:73:0::1;3199:28;3218:8;3199:18;:28::i;30858:282::-:0;30923:4;30979:7;55826:1;30960:26;;:66;;;;;31013:13;;31003:7;:23;30960:66;:153;;;;-1:-1:-1;;31064:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;31064:44:0;:49;;30858:282::o;25478:1275::-;25545:7;25580;;55826:1;25629:23;25625:1061;;25682:13;;25675:4;:20;25671:1015;;;25720:14;25737:23;;;:17;:23;;;;;;-1:-1:-1;;;25826:24:0;;25822:845;;26491:113;26498:11;26491:113;;-1:-1:-1;;;26569:6:0;26551:25;;;;:17;:25;;;;;;26491:113;;25822:845;25671:1015;;26714:31;;-1:-1:-1;;;26714:31:0;;;;;;;;;;;2293:132;2201:6;;-1:-1:-1;;;;;2201:6:0;52711:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;6720:2:1;2349:68:0;;;6702:21:1;;;6739:18;;;6732:30;6798:34;6778:18;;;6771:62;6850:18;;2349:68:0;6692:182:1;3395:191:0;3488:6;;;-1:-1:-1;;;;;3505:17:0;;;-1:-1:-1;;;;;;3505:17:0;;;;;;;3538:40;;3488:6;;;3505:17;3488:6;;3538:40;;3469:16;;3538:40;3395:191;;:::o;46456:112::-;46533:27;46543:2;46547:8;46533:27;;;;;;;;;;;;:9;:27::i;:::-;46456:112;;:::o;39299:716::-;39483:88;;-1:-1:-1;;;39483:88:0;;39462:4;;-1:-1:-1;;;;;39483:45:0;;;;;:88;;52711:10;;39550:4;;39556:7;;39565:5;;39483:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39483:88:0;;;;;;;;-1:-1:-1;;39483:88:0;;;;;;;;;;;;:::i;:::-;;;39479:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39766:13:0;;39762:235;;39812:40;;-1:-1:-1;;;39812:40:0;;;;;;;;;;;39762:235;39955:6;39949:13;39940:6;39936:2;39932:15;39925:38;39479:529;-1:-1:-1;;;;;;39642:64:0;-1:-1:-1;;;39642:64:0;;-1:-1:-1;39299:716:0;;;;;;:::o;55617:100::-;55669:13;55702:7;55695:14;;;;;:::i;52831:1581::-;53314:4;53308:11;;53321:4;53304:22;53400:17;;;;53304:22;53758:5;53740:428;53806:1;53801:3;53797:11;53790:18;;53977:2;53971:4;53967:13;53963:2;53959:22;53954:3;53946:36;54071:2;54061:13;;;54128:2;;54146:5;;54128:2;53740:428;;;-1:-1:-1;54198:13:0;;;-1:-1:-1;;54313:14:0;;;54375:19;;;54313:14;52935:1470;-1:-1:-1;52935:1470:0:o;45683:689::-;45814:19;45820:2;45824:8;45814:5;:19::i;:::-;-1:-1:-1;;;;;45875:14:0;;;:19;45871:483;;45915:11;45929:13;45977:14;;;46010:233;46041:62;46080:1;46084:2;46088:7;;;;;;46097:5;46041:30;:62::i;:::-;46036:167;;46139:40;;-1:-1:-1;;;46139:40:0;;;;;;;;;;;46036:167;46238:3;46230:5;:11;46010:233;;46325:3;46308:13;;:20;46304:34;;46330:8;;;46304:34;45871:483;;45683:689;;;:::o;40477:2454::-;40550:20;40573:13;40601;40597:44;;40623:18;;-1:-1:-1;;;40623:18:0;;;;;;;;;;;40597:44;-1:-1:-1;;;;;41129:22:0;;;;;;:18;:22;;;;14162:2;41129:22;;;:71;;41167:32;41155:45;;41129:71;;;41443:31;;;:17;:31;;;;;-1:-1:-1;28143:15:0;;28117:24;28113:46;27712:11;27687:23;27683:41;27680:52;27670:63;;41443:173;;41678:23;;;;41443:31;;41129:22;;42177:25;41129:22;;42030:335;42445:1;42431:12;42427:20;42385:346;42486:3;42477:7;42474:16;42385:346;;42704:7;42694:8;42691:1;42664:25;42661:1;42658;42653:59;42539:1;42526:15;42385:346;;;-1:-1:-1;42764:13:0;42760:45;;42786:19;;-1:-1:-1;;;42786:19:0;;;;;;;;;;;42760:45;42822:13;:19;-1:-1:-1;36033:185:0;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;2264:6;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:255::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:2;;;2972:6;2964;2957:22;2919:2;3016:9;3003:23;3035:30;3059:5;3035:30;:::i;3100:259::-;3169:6;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3243:6;3235;3228:22;3190:2;3280:9;3274:16;3299:30;3323:5;3299:30;:::i;3364:190::-;3423:6;3476:2;3464:9;3455:7;3451:23;3447:32;3444:2;;;3497:6;3489;3482:22;3444:2;-1:-1:-1;3525:23:1;;3434:120;-1:-1:-1;3434:120:1:o;3559:257::-;3600:3;3638:5;3632:12;3665:6;3660:3;3653:19;3681:63;3737:6;3730:4;3725:3;3721:14;3714:4;3707:5;3703:16;3681:63;:::i;:::-;3798:2;3777:15;-1:-1:-1;;3773:29:1;3764:39;;;;3805:4;3760:50;;3608:208;-1:-1:-1;;3608:208:1:o;3821:470::-;4000:3;4038:6;4032:13;4054:53;4100:6;4095:3;4088:4;4080:6;4076:17;4054:53;:::i;:::-;4170:13;;4129:16;;;;4192:57;4170:13;4129:16;4226:4;4214:17;;4192:57;:::i;:::-;4265:20;;4008:283;-1:-1:-1;;;;4008:283:1:o;4504:488::-;-1:-1:-1;;;;;4773:15:1;;;4755:34;;4825:15;;4820:2;4805:18;;4798:43;4872:2;4857:18;;4850:34;;;4920:3;4915:2;4900:18;;4893:31;;;4698:4;;4941:45;;4966:19;;4958:6;4941:45;:::i;:::-;4933:53;4707:285;-1:-1:-1;;;;;;4707:285:1:o;5189:219::-;5338:2;5327:9;5320:21;5301:4;5358:44;5398:2;5387:9;5383:18;5375:6;5358:44;:::i;7411:128::-;7451:3;7482:1;7478:6;7475:1;7472:13;7469:2;;;7488:18;;:::i;:::-;-1:-1:-1;7524:9:1;;7459:80::o;7544:168::-;7584:7;7650:1;7646;7642:6;7638:14;7635:1;7632:21;7627:1;7620:9;7613:17;7609:45;7606:2;;;7657:18;;:::i;:::-;-1:-1:-1;7697:9:1;;7596:116::o;7717:258::-;7789:1;7799:113;7813:6;7810:1;7807:13;7799:113;;;7889:11;;;7883:18;7870:11;;;7863:39;7835:2;7828:10;7799:113;;;7930:6;7927:1;7924:13;7921:2;;;-1:-1:-1;;7965:1:1;7947:16;;7940:27;7770:205::o;7980:380::-;8059:1;8055:12;;;;8102;;;8123:2;;8177:4;8169:6;8165:17;8155:27;;8123:2;8230;8222:6;8219:14;8199:18;8196:38;8193:2;;;8276:10;8271:3;8267:20;8264:1;8257:31;8311:4;8308:1;8301:15;8339:4;8336:1;8329:15;8193:2;;8035:325;;;:::o;8365:127::-;8426:10;8421:3;8417:20;8414:1;8407:31;8457:4;8454:1;8447:15;8481:4;8478:1;8471:15;8497:127;8558:10;8553:3;8549:20;8546:1;8539:31;8589:4;8586:1;8579:15;8613:4;8610:1;8603:15;8629:131;-1:-1:-1;;;;;;8703:32:1;;8693:43;;8683:2;;8750:1;8747;8740:12

Swarm Source

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