ETH Price: $2,970.83 (-2.64%)
Gas: 3 Gwei

Token

tinybears (tb)
 

Overview

Max Total Supply

5,555 tb

Holders

810

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 tb
0x2d38552189e2183f078b56ac109381716d9e7b33
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:
tinybears

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-07
*/

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// 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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

    /**
     * @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 {}
}

pragma solidity ^0.8.4;

contract tinybears is ERC721A, Ownable {
    uint256 constant public MAX_MINT = 5555;
    uint256 constant public MAX_MINT_PER_TX = 3;
    uint256 constant public PRICE = 0 ether;

    string public baseURI = "ipfs://QmVc1myfqTniZtFJ1yVVvd24vZDLWfQj7o4do5a9VXdBtx";
    address public stakingAddress;
    bool public paused;

    constructor() ERC721A("tinybears", "tb") {}

    function mint(uint256 quantity) external payable {
        require(!paused, "Sale is currently paused.");
        require(quantity > 0, "Mint quantity less than 0.");
        require(totalSupply() + quantity <= MAX_MINT, "Cannot exceed max mint amount.");
        require(quantity <= MAX_MINT_PER_TX, "Cannot exeeds 10 quantity per tx.");
        require(msg.value >= quantity * PRICE, "Exceeds mint quantity or not enough eth sent");

        _safeMint(msg.sender, quantity);
    }

    function adminMint(uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity <= MAX_MINT, "Cannot exceed max mint amount");

        _safeMint(msg.sender, quantity);
    }

    function whitelistMint(uint256 quantity) external payable {
        require(!paused, "Sale is currently paused.");
        require(quantity > 0, "Mint quantity less than 0.");
        require(totalSupply() + quantity <= MAX_MINT, "Cannot exceed max mint amount.");
        require(quantity <= MAX_MINT_PER_TX, "Cannot exeeds 10 quantity per tx.");
        require(msg.value >= quantity * PRICE, "Exceeds mint quantity or not enough eth sent");

        _safeMint(msg.sender, quantity);
    }

    function setStakingAddress(address newStakingAddress) external onlyOwner {
        stakingAddress = newStakingAddress;
    }

    function setBaseURI(string calldata uri) external onlyOwner {
        baseURI = uri;
    }

    function toggleSale() external onlyOwner {
        paused = !paused;
    }

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

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newStakingAddress","type":"address"}],"name":"setStakingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260356080818152906200200260a0398051620000299160089160209091019062000112565b503480156200003757600080fd5b50604080518082018252600981526874696e79626561727360b81b6020808301918252835180850190945260028452613a3160f11b908401528151919291620000839160019162000112565b5080516200009990600290602084019062000112565b505050620000b6620000b0620000bc60201b60201c565b620000c0565b620001f5565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012090620001b8565b90600052602060002090601f0160209004810192826200014457600085556200018f565b82601f106200015f57805160ff19168380011785556200018f565b828001600101855582156200018f579182015b828111156200018f57825182559160200191906001019062000172565b506200019d929150620001a1565b5090565b5b808211156200019d5760008155600101620001a2565b600181811c90821680620001cd57607f821691505b60208210811415620001ef57634e487b7160e01b600052602260045260246000fd5b50919050565b611dfd80620002056000396000f3fe6080604052600436106101e35760003560e01c80637d8966e411610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610521578063f0292a031461056a578063f2fde38b14610580578063f4e0d9ac146105a057600080fd5b8063b88d4fde146104a1578063c1f26123146104c1578063c87b56dd146104e1578063d7b4be241461050157600080fd5b80638ecad721116100d15780638ecad7211461045757806395d89b411461046c578063a0712d6814610411578063a22cb4651461048157600080fd5b80637d8966e4146103fc578063868ff4a2146104115780638d859f3e146104245780638da5cb5b1461043957600080fd5b806342842e0e1161017a5780636352211e116101495780636352211e146103925780636c0360eb146103b257806370a08231146103c7578063715018a6146103e757600080fd5b806342842e0e146103115780634f6ccce71461033157806355f804b3146103515780635c975abb1461037157600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102bc5780632f745c59146102dc5780633ccfd60b146102fc57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611abc565b6105c0565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261062d565b6040516102149190611c19565b34801561024b57600080fd5b5061025f61025a366004611b68565b6106bf565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611a92565b610703565b005b3480156102a557600080fd5b506102ae610791565b604051908152602001610214565b3480156102c857600080fd5b506102976102d736600461193e565b6107b0565b3480156102e857600080fd5b506102ae6102f7366004611a92565b6107bb565b34801561030857600080fd5b506102976108b8565b34801561031d57600080fd5b5061029761032c36600461193e565b610927565b34801561033d57600080fd5b506102ae61034c366004611b68565b610942565b34801561035d57600080fd5b5061029761036c366004611af6565b6109ed565b34801561037d57600080fd5b5060095461020890600160a01b900460ff1681565b34801561039e57600080fd5b5061025f6103ad366004611b68565b610a23565b3480156103be57600080fd5b50610232610a35565b3480156103d357600080fd5b506102ae6103e23660046118f0565b610ac3565b3480156103f357600080fd5b50610297610b12565b34801561040857600080fd5b50610297610b48565b61029761041f366004611b68565b610b93565b34801561043057600080fd5b506102ae600081565b34801561044557600080fd5b506007546001600160a01b031661025f565b34801561046357600080fd5b506102ae600381565b34801561047857600080fd5b50610232610d75565b34801561048d57600080fd5b5061029761049c366004611a56565b610d84565b3480156104ad57600080fd5b506102976104bc36600461197a565b610e1a565b3480156104cd57600080fd5b506102976104dc366004611b68565b610e54565b3480156104ed57600080fd5b506102326104fc366004611b68565b610ee2565b34801561050d57600080fd5b5060095461025f906001600160a01b031681565b34801561052d57600080fd5b5061020861053c36600461190b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561057657600080fd5b506102ae6115b381565b34801561058c57600080fd5b5061029761059b3660046118f0565b610f67565b3480156105ac57600080fd5b506102976105bb3660046118f0565b610fff565b60006001600160e01b031982166380ac58cd60e01b14806105f157506001600160e01b03198216635b5e139f60e01b145b8061060c57506001600160e01b0319821663780e9d6360e01b145b8061062757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461063c90611cef565b80601f016020809104026020016040519081016040528092919081815260200182805461066890611cef565b80156106b55780601f1061068a576101008083540402835291602001916106b5565b820191906000526020600020905b81548152906001019060200180831161069857829003601f168201915b5050505050905090565b60006106ca8261104b565b6106e7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061070e82610a23565b9050806001600160a01b0316836001600160a01b031614156107435760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107635750610761813361053c565b155b15610781576040516367d9dca160e11b815260040160405180910390fd5b61078c83838361107f565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61078c8383836110db565b60006107c683610ac3565b82106107e5576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156108b257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16158015928201929092529061085e57506108aa565b80516001600160a01b03161561087357805192505b876001600160a01b0316836001600160a01b031614156108a857868414156108a15750935061062792505050565b6001909301925b505b6001016107f6565b50600080fd5b6007546001600160a01b031633146108eb5760405162461bcd60e51b81526004016108e290611c2c565b60405180910390fd5b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610924573d6000803e3d6000fd5b50565b61078c83838360405180602001604052806000815250610e1a565b600080546001600160801b031681805b828110156109d357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906109ca57858314156109c35750949350505050565b6001909201915b50600101610952565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610a175760405162461bcd60e51b81526004016108e290611c2c565b61078c6008838361183b565b6000610a2e826112fa565b5192915050565b60088054610a4290611cef565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6e90611cef565b8015610abb5780601f10610a9057610100808354040283529160200191610abb565b820191906000526020600020905b815481529060010190602001808311610a9e57829003601f168201915b505050505081565b60006001600160a01b038216610aec576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610b3c5760405162461bcd60e51b81526004016108e290611c2c565b610b46600061141e565b565b6007546001600160a01b03163314610b725760405162461bcd60e51b81526004016108e290611c2c565b6009805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600954600160a01b900460ff1615610bed5760405162461bcd60e51b815260206004820152601960248201527f53616c652069732063757272656e746c79207061757365642e0000000000000060448201526064016108e2565b60008111610c3d5760405162461bcd60e51b815260206004820152601a60248201527f4d696e74207175616e74697479206c657373207468616e20302e00000000000060448201526064016108e2565b6115b381610c49610791565b610c539190611c61565b1115610ca15760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f7420657863656564206d6178206d696e7420616d6f756e742e000060448201526064016108e2565b6003811115610cfc5760405162461bcd60e51b815260206004820152602160248201527f43616e6e6f7420657865656473203130207175616e74697479207065722074786044820152601760f91b60648201526084016108e2565b610d07600082611c8d565b341015610d6b5760405162461bcd60e51b815260206004820152602c60248201527f45786365656473206d696e74207175616e74697479206f72206e6f7420656e6f60448201526b1d59da08195d1a081cd95b9d60a21b60648201526084016108e2565b6109243382611470565b60606002805461063c90611cef565b6001600160a01b038216331415610dae5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e258484846110db565b610e318484848461148e565b610e4e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b03163314610e7e5760405162461bcd60e51b81526004016108e290611c2c565b6115b381610e8a610791565b610e949190611c61565b1115610d6b5760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f7420657863656564206d6178206d696e7420616d6f756e7400000060448201526064016108e2565b6060610eed8261104b565b610f0a57604051630a14c4b560e41b815260040160405180910390fd5b6000610f1461159d565b9050805160001415610f355760405180602001604052806000815250610f60565b80610f3f846115ac565b604051602001610f50929190611bad565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610f915760405162461bcd60e51b81526004016108e290611c2c565b6001600160a01b038116610ff65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e2565b6109248161141e565b6007546001600160a01b031633146110295760405162461bcd60e51b81526004016108e290611c2c565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160801b031682108015610627575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110e6826112fa565b80519091506000906001600160a01b0316336001600160a01b0316148061111457508151611114903361053c565b8061112f575033611124846106bf565b6001600160a01b0316145b90508061114f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146111845760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166111ab57604051633a954ecd60e21b815260040160405180910390fd5b6111bb600084846000015161107f565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166112b0576000546001600160801b03168110156112b0578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561140557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114035780516001600160a01b031615611399579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156113fe579392505050565b611399565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61148a8282604051806020016040528060008152506116aa565b5050565b60006001600160a01b0384163b1561159157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114d2903390899088908890600401611bdc565b602060405180830381600087803b1580156114ec57600080fd5b505af192505050801561151c575060408051601f3d908101601f1916820190925261151991810190611ad9565b60015b611577573d80801561154a576040519150601f19603f3d011682016040523d82523d6000602084013e61154f565b606091505b50805161156f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611595565b5060015b949350505050565b60606008805461063c90611cef565b6060816115d05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115fa57806115e481611d2a565b91506115f39050600a83611c79565b91506115d4565b60008167ffffffffffffffff81111561161557611615611d9b565b6040519080825280601f01601f19166020018201604052801561163f576020820181803683370190505b5090505b841561159557611654600183611cac565b9150611661600a86611d45565b61166c906030611c61565b60f81b81838151811061168157611681611d85565b60200101906001600160f81b031916908160001a9053506116a3600a86611c79565b9450611643565b61078c83838360016000546001600160801b03166001600160a01b0385166116e457604051622e076360e81b815260040160405180910390fd5b836117025760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156118155760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156117eb57506117e9600088848861148e565b155b15611809576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611794565b50600080546001600160801b0319166001600160801b03929092169190911790556112f3565b82805461184790611cef565b90600052602060002090601f01602090048101928261186957600085556118af565b82601f106118825782800160ff198235161785556118af565b828001600101855582156118af579182015b828111156118af578235825591602001919060010190611894565b506118bb9291506118bf565b5090565b5b808211156118bb57600081556001016118c0565b80356001600160a01b03811681146118eb57600080fd5b919050565b60006020828403121561190257600080fd5b610f60826118d4565b6000806040838503121561191e57600080fd5b611927836118d4565b9150611935602084016118d4565b90509250929050565b60008060006060848603121561195357600080fd5b61195c846118d4565b925061196a602085016118d4565b9150604084013590509250925092565b6000806000806080858703121561199057600080fd5b611999856118d4565b93506119a7602086016118d4565b925060408501359150606085013567ffffffffffffffff808211156119cb57600080fd5b818701915087601f8301126119df57600080fd5b8135818111156119f1576119f1611d9b565b604051601f8201601f19908116603f01168101908382118183101715611a1957611a19611d9b565b816040528281528a6020848701011115611a3257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a6957600080fd5b611a72836118d4565b915060208301358015158114611a8757600080fd5b809150509250929050565b60008060408385031215611aa557600080fd5b611aae836118d4565b946020939093013593505050565b600060208284031215611ace57600080fd5b8135610f6081611db1565b600060208284031215611aeb57600080fd5b8151610f6081611db1565b60008060208385031215611b0957600080fd5b823567ffffffffffffffff80821115611b2157600080fd5b818501915085601f830112611b3557600080fd5b813581811115611b4457600080fd5b866020828501011115611b5657600080fd5b60209290920196919550909350505050565b600060208284031215611b7a57600080fd5b5035919050565b60008151808452611b99816020860160208601611cc3565b601f01601f19169290920160200192915050565b60008351611bbf818460208801611cc3565b835190830190611bd3818360208801611cc3565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c0f90830184611b81565b9695505050505050565b602081526000610f606020830184611b81565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c7457611c74611d59565b500190565b600082611c8857611c88611d6f565b500490565b6000816000190483118215151615611ca757611ca7611d59565b500290565b600082821015611cbe57611cbe611d59565b500390565b60005b83811015611cde578181015183820152602001611cc6565b83811115610e4e5750506000910152565b600181811c90821680611d0357607f821691505b60208210811415611d2457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d3e57611d3e611d59565b5060010190565b600082611d5457611d54611d6f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461092457600080fdfea2646970667358221220a84d6131b6e10f9d08e1912582282949987dba6078dcaac79250ea35917aa8e364736f6c63430008070033697066733a2f2f516d5663316d796671546e695a74464a3179565676643234765a444c5766516a376f34646f356139565864427478

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80637d8966e411610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610521578063f0292a031461056a578063f2fde38b14610580578063f4e0d9ac146105a057600080fd5b8063b88d4fde146104a1578063c1f26123146104c1578063c87b56dd146104e1578063d7b4be241461050157600080fd5b80638ecad721116100d15780638ecad7211461045757806395d89b411461046c578063a0712d6814610411578063a22cb4651461048157600080fd5b80637d8966e4146103fc578063868ff4a2146104115780638d859f3e146104245780638da5cb5b1461043957600080fd5b806342842e0e1161017a5780636352211e116101495780636352211e146103925780636c0360eb146103b257806370a08231146103c7578063715018a6146103e757600080fd5b806342842e0e146103115780634f6ccce71461033157806355f804b3146103515780635c975abb1461037157600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102bc5780632f745c59146102dc5780633ccfd60b146102fc57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611abc565b6105c0565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261062d565b6040516102149190611c19565b34801561024b57600080fd5b5061025f61025a366004611b68565b6106bf565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611a92565b610703565b005b3480156102a557600080fd5b506102ae610791565b604051908152602001610214565b3480156102c857600080fd5b506102976102d736600461193e565b6107b0565b3480156102e857600080fd5b506102ae6102f7366004611a92565b6107bb565b34801561030857600080fd5b506102976108b8565b34801561031d57600080fd5b5061029761032c36600461193e565b610927565b34801561033d57600080fd5b506102ae61034c366004611b68565b610942565b34801561035d57600080fd5b5061029761036c366004611af6565b6109ed565b34801561037d57600080fd5b5060095461020890600160a01b900460ff1681565b34801561039e57600080fd5b5061025f6103ad366004611b68565b610a23565b3480156103be57600080fd5b50610232610a35565b3480156103d357600080fd5b506102ae6103e23660046118f0565b610ac3565b3480156103f357600080fd5b50610297610b12565b34801561040857600080fd5b50610297610b48565b61029761041f366004611b68565b610b93565b34801561043057600080fd5b506102ae600081565b34801561044557600080fd5b506007546001600160a01b031661025f565b34801561046357600080fd5b506102ae600381565b34801561047857600080fd5b50610232610d75565b34801561048d57600080fd5b5061029761049c366004611a56565b610d84565b3480156104ad57600080fd5b506102976104bc36600461197a565b610e1a565b3480156104cd57600080fd5b506102976104dc366004611b68565b610e54565b3480156104ed57600080fd5b506102326104fc366004611b68565b610ee2565b34801561050d57600080fd5b5060095461025f906001600160a01b031681565b34801561052d57600080fd5b5061020861053c36600461190b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561057657600080fd5b506102ae6115b381565b34801561058c57600080fd5b5061029761059b3660046118f0565b610f67565b3480156105ac57600080fd5b506102976105bb3660046118f0565b610fff565b60006001600160e01b031982166380ac58cd60e01b14806105f157506001600160e01b03198216635b5e139f60e01b145b8061060c57506001600160e01b0319821663780e9d6360e01b145b8061062757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461063c90611cef565b80601f016020809104026020016040519081016040528092919081815260200182805461066890611cef565b80156106b55780601f1061068a576101008083540402835291602001916106b5565b820191906000526020600020905b81548152906001019060200180831161069857829003601f168201915b5050505050905090565b60006106ca8261104b565b6106e7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061070e82610a23565b9050806001600160a01b0316836001600160a01b031614156107435760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107635750610761813361053c565b155b15610781576040516367d9dca160e11b815260040160405180910390fd5b61078c83838361107f565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61078c8383836110db565b60006107c683610ac3565b82106107e5576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156108b257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16158015928201929092529061085e57506108aa565b80516001600160a01b03161561087357805192505b876001600160a01b0316836001600160a01b031614156108a857868414156108a15750935061062792505050565b6001909301925b505b6001016107f6565b50600080fd5b6007546001600160a01b031633146108eb5760405162461bcd60e51b81526004016108e290611c2c565b60405180910390fd5b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610924573d6000803e3d6000fd5b50565b61078c83838360405180602001604052806000815250610e1a565b600080546001600160801b031681805b828110156109d357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906109ca57858314156109c35750949350505050565b6001909201915b50600101610952565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610a175760405162461bcd60e51b81526004016108e290611c2c565b61078c6008838361183b565b6000610a2e826112fa565b5192915050565b60088054610a4290611cef565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6e90611cef565b8015610abb5780601f10610a9057610100808354040283529160200191610abb565b820191906000526020600020905b815481529060010190602001808311610a9e57829003601f168201915b505050505081565b60006001600160a01b038216610aec576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610b3c5760405162461bcd60e51b81526004016108e290611c2c565b610b46600061141e565b565b6007546001600160a01b03163314610b725760405162461bcd60e51b81526004016108e290611c2c565b6009805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600954600160a01b900460ff1615610bed5760405162461bcd60e51b815260206004820152601960248201527f53616c652069732063757272656e746c79207061757365642e0000000000000060448201526064016108e2565b60008111610c3d5760405162461bcd60e51b815260206004820152601a60248201527f4d696e74207175616e74697479206c657373207468616e20302e00000000000060448201526064016108e2565b6115b381610c49610791565b610c539190611c61565b1115610ca15760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f7420657863656564206d6178206d696e7420616d6f756e742e000060448201526064016108e2565b6003811115610cfc5760405162461bcd60e51b815260206004820152602160248201527f43616e6e6f7420657865656473203130207175616e74697479207065722074786044820152601760f91b60648201526084016108e2565b610d07600082611c8d565b341015610d6b5760405162461bcd60e51b815260206004820152602c60248201527f45786365656473206d696e74207175616e74697479206f72206e6f7420656e6f60448201526b1d59da08195d1a081cd95b9d60a21b60648201526084016108e2565b6109243382611470565b60606002805461063c90611cef565b6001600160a01b038216331415610dae5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e258484846110db565b610e318484848461148e565b610e4e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b03163314610e7e5760405162461bcd60e51b81526004016108e290611c2c565b6115b381610e8a610791565b610e949190611c61565b1115610d6b5760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f7420657863656564206d6178206d696e7420616d6f756e7400000060448201526064016108e2565b6060610eed8261104b565b610f0a57604051630a14c4b560e41b815260040160405180910390fd5b6000610f1461159d565b9050805160001415610f355760405180602001604052806000815250610f60565b80610f3f846115ac565b604051602001610f50929190611bad565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610f915760405162461bcd60e51b81526004016108e290611c2c565b6001600160a01b038116610ff65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e2565b6109248161141e565b6007546001600160a01b031633146110295760405162461bcd60e51b81526004016108e290611c2c565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160801b031682108015610627575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110e6826112fa565b80519091506000906001600160a01b0316336001600160a01b0316148061111457508151611114903361053c565b8061112f575033611124846106bf565b6001600160a01b0316145b90508061114f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146111845760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166111ab57604051633a954ecd60e21b815260040160405180910390fd5b6111bb600084846000015161107f565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166112b0576000546001600160801b03168110156112b0578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561140557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114035780516001600160a01b031615611399579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156113fe579392505050565b611399565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61148a8282604051806020016040528060008152506116aa565b5050565b60006001600160a01b0384163b1561159157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114d2903390899088908890600401611bdc565b602060405180830381600087803b1580156114ec57600080fd5b505af192505050801561151c575060408051601f3d908101601f1916820190925261151991810190611ad9565b60015b611577573d80801561154a576040519150601f19603f3d011682016040523d82523d6000602084013e61154f565b606091505b50805161156f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611595565b5060015b949350505050565b60606008805461063c90611cef565b6060816115d05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115fa57806115e481611d2a565b91506115f39050600a83611c79565b91506115d4565b60008167ffffffffffffffff81111561161557611615611d9b565b6040519080825280601f01601f19166020018201604052801561163f576020820181803683370190505b5090505b841561159557611654600183611cac565b9150611661600a86611d45565b61166c906030611c61565b60f81b81838151811061168157611681611d85565b60200101906001600160f81b031916908160001a9053506116a3600a86611c79565b9450611643565b61078c83838360016000546001600160801b03166001600160a01b0385166116e457604051622e076360e81b815260040160405180910390fd5b836117025760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156118155760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156117eb57506117e9600088848861148e565b155b15611809576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611794565b50600080546001600160801b0319166001600160801b03929092169190911790556112f3565b82805461184790611cef565b90600052602060002090601f01602090048101928261186957600085556118af565b82601f106118825782800160ff198235161785556118af565b828001600101855582156118af579182015b828111156118af578235825591602001919060010190611894565b506118bb9291506118bf565b5090565b5b808211156118bb57600081556001016118c0565b80356001600160a01b03811681146118eb57600080fd5b919050565b60006020828403121561190257600080fd5b610f60826118d4565b6000806040838503121561191e57600080fd5b611927836118d4565b9150611935602084016118d4565b90509250929050565b60008060006060848603121561195357600080fd5b61195c846118d4565b925061196a602085016118d4565b9150604084013590509250925092565b6000806000806080858703121561199057600080fd5b611999856118d4565b93506119a7602086016118d4565b925060408501359150606085013567ffffffffffffffff808211156119cb57600080fd5b818701915087601f8301126119df57600080fd5b8135818111156119f1576119f1611d9b565b604051601f8201601f19908116603f01168101908382118183101715611a1957611a19611d9b565b816040528281528a6020848701011115611a3257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a6957600080fd5b611a72836118d4565b915060208301358015158114611a8757600080fd5b809150509250929050565b60008060408385031215611aa557600080fd5b611aae836118d4565b946020939093013593505050565b600060208284031215611ace57600080fd5b8135610f6081611db1565b600060208284031215611aeb57600080fd5b8151610f6081611db1565b60008060208385031215611b0957600080fd5b823567ffffffffffffffff80821115611b2157600080fd5b818501915085601f830112611b3557600080fd5b813581811115611b4457600080fd5b866020828501011115611b5657600080fd5b60209290920196919550909350505050565b600060208284031215611b7a57600080fd5b5035919050565b60008151808452611b99816020860160208601611cc3565b601f01601f19169290920160200192915050565b60008351611bbf818460208801611cc3565b835190830190611bd3818360208801611cc3565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c0f90830184611b81565b9695505050505050565b602081526000610f606020830184611b81565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c7457611c74611d59565b500190565b600082611c8857611c88611d6f565b500490565b6000816000190483118215151615611ca757611ca7611d59565b500290565b600082821015611cbe57611cbe611d59565b500390565b60005b83811015611cde578181015183820152602001611cc6565b83811115610e4e5750506000910152565b600181811c90821680611d0357607f821691505b60208210811415611d2457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d3e57611d3e611d59565b5060010190565b600082611d5457611d54611d6f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461092457600080fdfea2646970667358221220a84d6131b6e10f9d08e1912582282949987dba6078dcaac79250ea35917aa8e364736f6c63430008070033

Deployed Bytecode Sourcemap

46404:2135:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29915:372;;;;;;;;;;-1:-1:-1;29915:372:0;;;;;:::i;:::-;;:::i;:::-;;;5624:14:1;;5617:22;5599:41;;5587:2;5572:18;29915:372:0;;;;;;;;32525:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34028:204::-;;;;;;;;;;-1:-1:-1;34028:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4922:32:1;;;4904:51;;4892:2;4877:18;34028:204:0;4758:203:1;33591:371:0;;;;;;;;;;-1:-1:-1;33591:371:0;;;;;:::i;:::-;;:::i;:::-;;27152:280;;;;;;;;;;;;;:::i;:::-;;;9030:25:1;;;9018:2;9003:18;27152:280:0;8884:177:1;34885:170:0;;;;;;;;;;-1:-1:-1;34885:170:0;;;;;:::i;:::-;;:::i;28738:1105::-;;;;;;;;;;-1:-1:-1;28738:1105:0;;;;;:::i;:::-;;:::i;48430:106::-;;;;;;;;;;;;;:::i;35126:185::-;;;;;;;;;;-1:-1:-1;35126:185:0;;;;;:::i;:::-;;:::i;27725:713::-;;;;;;;;;;-1:-1:-1;27725:713:0;;;;;:::i;:::-;;:::i;48138:92::-;;;;;;;;;;-1:-1:-1;48138:92:0;;;;;:::i;:::-;;:::i;46716:18::-;;;;;;;;;;-1:-1:-1;46716:18:0;;;;-1:-1:-1;;;46716:18:0;;;;;;32334:124;;;;;;;;;;-1:-1:-1;32334:124:0;;;;;:::i;:::-;;:::i;46594:79::-;;;;;;;;;;;;;:::i;30351:206::-;;;;;;;;;;-1:-1:-1;30351:206:0;;;;;:::i;:::-;;:::i;4836:103::-;;;;;;;;;;;;;:::i;48238:76::-;;;;;;;;;;;;;:::i;47497:499::-;;;;;;:::i;:::-;;:::i;46546:39::-;;;;;;;;;;;;46578:7;46546:39;;4185:87;;;;;;;;;;-1:-1:-1;4258:6:0;;-1:-1:-1;;;;;4258:6:0;4185:87;;46496:43;;;;;;;;;;;;46538:1;46496:43;;32694:104;;;;;;;;;;;;;:::i;34304:279::-;;;;;;;;;;-1:-1:-1;34304:279:0;;;;;:::i;:::-;;:::i;35382:342::-;;;;;;;;;;-1:-1:-1;35382:342:0;;;;;:::i;:::-;;:::i;47292:197::-;;;;;;;;;;-1:-1:-1;47292:197:0;;;;;:::i;:::-;;:::i;32869:318::-;;;;;;;;;;-1:-1:-1;32869:318:0;;;;;:::i;:::-;;:::i;46680:29::-;;;;;;;;;;-1:-1:-1;46680:29:0;;;;-1:-1:-1;;;;;46680:29:0;;;34654:164;;;;;;;;;;-1:-1:-1;34654:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34775:25:0;;;34751:4;34775:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34654:164;46450:39;;;;;;;;;;;;46485:4;46450:39;;5094:201;;;;;;;;;;-1:-1:-1;5094:201:0;;;;;:::i;:::-;;:::i;48004:126::-;;;;;;;;;;-1:-1:-1;48004:126:0;;;;;:::i;:::-;;:::i;29915:372::-;30017:4;-1:-1:-1;;;;;;30054:40:0;;-1:-1:-1;;;30054:40:0;;:105;;-1:-1:-1;;;;;;;30111:48:0;;-1:-1:-1;;;30111:48:0;30054:105;:172;;;-1:-1:-1;;;;;;;30176:50:0;;-1:-1:-1;;;30176:50:0;30054:172;:225;;;-1:-1:-1;;;;;;;;;;17078:40:0;;;30243:36;30034:245;29915:372;-1:-1:-1;;29915:372:0:o;32525:100::-;32579:13;32612:5;32605:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32525:100;:::o;34028:204::-;34096:7;34121:16;34129:7;34121;:16::i;:::-;34116:64;;34146:34;;-1:-1:-1;;;34146:34:0;;;;;;;;;;;34116:64;-1:-1:-1;34200:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34200:24:0;;34028:204::o;33591:371::-;33664:13;33680:24;33696:7;33680:15;:24::i;:::-;33664:40;;33725:5;-1:-1:-1;;;;;33719:11:0;:2;-1:-1:-1;;;;;33719:11:0;;33715:48;;;33739:24;;-1:-1:-1;;;33739:24:0;;;;;;;;;;;33715:48;2989:10;-1:-1:-1;;;;;33780:21:0;;;;;;:63;;-1:-1:-1;33806:37:0;33823:5;2989:10;34654:164;:::i;33806:37::-;33805:38;33780:63;33776:138;;;33867:35;;-1:-1:-1;;;33867:35:0;;;;;;;;;;;33776:138;33926:28;33935:2;33939:7;33948:5;33926:8;:28::i;:::-;33653:309;33591:371;;:::o;27152:280::-;27205:7;27397:12;-1:-1:-1;;;;;;;;27397:12:0;;;;27381:13;;;:28;;;;27374:35;;27152:280::o;34885:170::-;35019:28;35029:4;35035:2;35039:7;35019:9;:28::i;28738:1105::-;28827:7;28860:16;28870:5;28860:9;:16::i;:::-;28851:5;:25;28847:61;;28885:23;;-1:-1:-1;;;28885:23:0;;;;;;;;;;;28847:61;28919:22;28944:13;;-1:-1:-1;;;;;28944:13:0;;28919:22;;29194:557;29214:14;29210:1;:18;29194:557;;;29254:31;29288:14;;;:11;:14;;;;;;;;;29254:48;;;;;;;;;-1:-1:-1;;;;;29254:48:0;;;;-1:-1:-1;;;29254:48:0;;;;;;;;;;;-1:-1:-1;;;29254:48:0;;;;;;;;;;;;;;;;29321:73;;29366:8;;;29321:73;29416:14;;-1:-1:-1;;;;;29416:28:0;;29412:111;;29489:14;;;-1:-1:-1;29412:111:0;29566:5;-1:-1:-1;;;;;29545:26:0;:17;-1:-1:-1;;;;;29545:26:0;;29541:195;;;29615:5;29600:11;:20;29596:85;;;-1:-1:-1;29656:1:0;-1:-1:-1;29649:8:0;;-1:-1:-1;;;29649:8:0;29596:85;29703:13;;;;;29541:195;29235:516;29194:557;29230:3;;29194:557;;;;29827:8;;;48430:106;4258:6;;-1:-1:-1;;;;;4258:6:0;2989:10;4405:23;4397:68;;;;-1:-1:-1;;;4397:68:0;;;;;;;:::i;:::-;;;;;;;;;4258:6;;48480:48:::1;::::0;-1:-1:-1;;;;;4258:6:0;;;;48506:21:::1;48480:48:::0;::::1;;;::::0;::::1;::::0;;;48506:21;4258:6;48480:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48430:106::o:0;35126:185::-;35264:39;35281:4;35287:2;35291:7;35264:39;;;;;;;;;;;;:16;:39::i;27725:713::-;27792:7;27837:13;;-1:-1:-1;;;;;27837:13:0;27792:7;;28051:328;28071:14;28067:1;:18;28051:328;;;28111:31;28145:14;;;:11;:14;;;;;;;;;28111:48;;;;;;;;;-1:-1:-1;;;;;28111:48:0;;;;-1:-1:-1;;;28111:48:0;;;;;;;;;;;-1:-1:-1;;;28111:48:0;;;;;;;;;;;;;;28178:186;;28243:5;28228:11;:20;28224:85;;;-1:-1:-1;28284:1:0;27725:713;-1:-1:-1;;;;27725:713:0:o;28224:85::-;28331:13;;;;;28178:186;-1:-1:-1;28087:3:0;;28051:328;;;;28407:23;;-1:-1:-1;;;28407:23:0;;;;;;;;;;;48138:92;4258:6;;-1:-1:-1;;;;;4258:6:0;2989:10;4405:23;4397:68;;;;-1:-1:-1;;;4397:68:0;;;;;;;:::i;:::-;48209:13:::1;:7;48219:3:::0;;48209:13:::1;:::i;32334:124::-:0;32398:7;32425:20;32437:7;32425:11;:20::i;:::-;:25;;32334:124;-1:-1:-1;;32334:124:0:o;46594:79::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30351:206::-;30415:7;-1:-1:-1;;;;;30439:19:0;;30435:60;;30467:28;;-1:-1:-1;;;30467:28:0;;;;;;;;;;;30435:60;-1:-1:-1;;;;;;30521:19:0;;;;;:12;:19;;;;;:27;;;;30351:206::o;4836:103::-;4258:6;;-1:-1:-1;;;;;4258:6:0;2989:10;4405:23;4397:68;;;;-1:-1:-1;;;4397:68:0;;;;;;;:::i;:::-;4901:30:::1;4928:1;4901:18;:30::i;:::-;4836:103::o:0;48238:76::-;4258:6;;-1:-1:-1;;;;;4258:6:0;2989:10;4405:23;4397:68;;;;-1:-1:-1;;;4397:68:0;;;;;;;:::i;:::-;48300:6:::1;::::0;;-1:-1:-1;;;;48290:16:0;::::1;-1:-1:-1::0;;;48300:6:0;;;::::1;;;48299:7;48290:16:::0;;::::1;;::::0;;48238:76::o;47497:499::-;47575:6;;-1:-1:-1;;;47575:6:0;;;;47574:7;47566:45;;;;-1:-1:-1;;;47566:45:0;;6484:2:1;47566:45:0;;;6466:21:1;6523:2;6503:18;;;6496:30;6562:27;6542:18;;;6535:55;6607:18;;47566:45:0;6282:349:1;47566:45:0;47641:1;47630:8;:12;47622:51;;;;-1:-1:-1;;;47622:51:0;;8731:2:1;47622:51:0;;;8713:21:1;8770:2;8750:18;;;8743:30;8809:28;8789:18;;;8782:56;8855:18;;47622:51:0;8529:350:1;47622:51:0;46485:4;47708:8;47692:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;;47684:79;;;;-1:-1:-1;;;47684:79:0;;6838:2:1;47684:79:0;;;6820:21:1;6877:2;6857:18;;;6850:30;6916:32;6896:18;;;6889:60;6966:18;;47684:79:0;6636:354:1;47684:79:0;46538:1;47782:8;:27;;47774:73;;;;-1:-1:-1;;;47774:73:0;;7197:2:1;47774:73:0;;;7179:21:1;7236:2;7216:18;;;7209:30;7275:34;7255:18;;;7248:62;-1:-1:-1;;;7326:18:1;;;7319:31;7367:19;;47774:73:0;6995:397:1;47774:73:0;47879:16;46578:7;47879:8;:16;:::i;:::-;47866:9;:29;;47858:86;;;;-1:-1:-1;;;47858:86:0;;7960:2:1;47858:86:0;;;7942:21:1;7999:2;7979:18;;;7972:30;8038:34;8018:18;;;8011:62;-1:-1:-1;;;8089:18:1;;;8082:42;8141:19;;47858:86:0;7758:408:1;47858:86:0;47957:31;47967:10;47979:8;47957:9;:31::i;32694:104::-;32750:13;32783:7;32776:14;;;;;:::i;34304:279::-;-1:-1:-1;;;;;34395:24:0;;2989:10;34395:24;34391:54;;;34428:17;;-1:-1:-1;;;34428:17:0;;;;;;;;;;;34391:54;2989:10;34458:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34458:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34458:53:0;;;;;;;;;;34527:48;;5599:41:1;;;34458:42:0;;2989:10;34527:48;;5572:18:1;34527:48:0;;;;;;;34304:279;;:::o;35382:342::-;35549:28;35559:4;35565:2;35569:7;35549:9;:28::i;:::-;35593:48;35616:4;35622:2;35626:7;35635:5;35593:22;:48::i;:::-;35588:129;;35665:40;;-1:-1:-1;;;35665:40:0;;;;;;;;;;;35588:129;35382:342;;;;:::o;47292:197::-;4258:6;;-1:-1:-1;;;;;4258:6:0;2989:10;4405:23;4397:68;;;;-1:-1:-1;;;4397:68:0;;;;;;;:::i;:::-;46485:4:::1;47383:8;47367:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;;47359:78;;;::::0;-1:-1:-1;;;47359:78:0;;8373:2:1;47359:78:0::1;::::0;::::1;8355:21:1::0;8412:2;8392:18;;;8385:30;8451:31;8431:18;;;8424:59;8500:18;;47359:78:0::1;8171:353:1::0;32869:318:0;32942:13;32973:16;32981:7;32973;:16::i;:::-;32968:59;;32998:29;;-1:-1:-1;;;32998:29:0;;;;;;;;;;;32968:59;33040:21;33064:10;:8;:10::i;:::-;33040:34;;33098:7;33092:21;33117:1;33092:26;;:87;;;;;;;;;;;;;;;;;33145:7;33154:18;:7;:16;:18::i;:::-;33128:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33092:87;33085:94;32869:318;-1:-1:-1;;;32869:318:0:o;5094:201::-;4258:6;;-1:-1:-1;;;;;4258:6:0;2989:10;4405:23;4397:68;;;;-1:-1:-1;;;4397:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5183:22:0;::::1;5175:73;;;::::0;-1:-1:-1;;;5175:73:0;;6077:2:1;5175:73:0::1;::::0;::::1;6059:21:1::0;6116:2;6096:18;;;6089:30;6155:34;6135:18;;;6128:62;-1:-1:-1;;;6206:18:1;;;6199:36;6252:19;;5175:73:0::1;5875:402:1::0;5175:73:0::1;5259:28;5278:8;5259:18;:28::i;48004:126::-:0;4258:6;;-1:-1:-1;;;;;4258:6:0;2989:10;4405:23;4397:68;;;;-1:-1:-1;;;4397:68:0;;;;;;;:::i;:::-;48088:14:::1;:34:::0;;-1:-1:-1;;;;;;48088:34:0::1;-1:-1:-1::0;;;;;48088:34:0;;;::::1;::::0;;;::::1;::::0;;48004:126::o;35979:144::-;36036:4;36070:13;;-1:-1:-1;;;;;36070:13:0;36060:23;;:55;;;;-1:-1:-1;;36088:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36088:27:0;;;;36087:28;;35979:144::o;43195:196::-;43310:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43310:29:0;-1:-1:-1;;;;;43310:29:0;;;;;;;;;43355:28;;43310:24;;43355:28;;;;;;;43195:196;;;:::o;38696:2112::-;38811:35;38849:20;38861:7;38849:11;:20::i;:::-;38924:18;;38811:58;;-1:-1:-1;38882:22:0;;-1:-1:-1;;;;;38908:34:0;2989:10;-1:-1:-1;;;;;38908:34:0;;:101;;;-1:-1:-1;38976:18:0;;38959:50;;2989:10;34654:164;:::i;38959:50::-;38908:154;;;-1:-1:-1;2989:10:0;39026:20;39038:7;39026:11;:20::i;:::-;-1:-1:-1;;;;;39026:36:0;;38908:154;38882:181;;39081:17;39076:66;;39107:35;;-1:-1:-1;;;39107:35:0;;;;;;;;;;;39076:66;39179:4;-1:-1:-1;;;;;39157:26:0;:13;:18;;;-1:-1:-1;;;;;39157:26:0;;39153:67;;39192:28;;-1:-1:-1;;;39192:28:0;;;;;;;;;;;39153:67;-1:-1:-1;;;;;39235:16:0;;39231:52;;39260:23;;-1:-1:-1;;;39260:23:0;;;;;;;;;;;39231:52;39404:49;39421:1;39425:7;39434:13;:18;;;39404:8;:49::i;:::-;-1:-1:-1;;;;;39749:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39749:31:0;;;;;;;-1:-1:-1;;39749:31:0;;;;;;;39795:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39795:29:0;;;;;;;;;;;39841:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39886:61:0;;;;-1:-1:-1;;;39931:15:0;39886:61;;;;;;;;;;;40221:11;;;40251:24;;;;;:29;40221:11;;40251:29;40247:445;;40476:13;;-1:-1:-1;;;;;40476:13:0;40462:27;;40458:219;;;40546:18;;;40514:24;;;:11;:24;;;;;;;;:50;;40629:28;;;;40587:70;;-1:-1:-1;;;40587:70:0;-1:-1:-1;;;;;;40587:70:0;;;-1:-1:-1;;;;;40514:50:0;;;40587:70;;;;;;;40458:219;39724:979;40739:7;40735:2;-1:-1:-1;;;;;40720:27:0;40729:4;-1:-1:-1;;;;;40720:27:0;;;;;;;;;;;40758:42;38800:2008;;38696:2112;;;:::o;31189:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;31355:13:0;;31299:7;;-1:-1:-1;;;;;31355:13:0;31348:20;;31344:861;;;31389:31;31423:17;;;:11;:17;;;;;;;;;31389:51;;;;;;;;;-1:-1:-1;;;;;31389:51:0;;;;-1:-1:-1;;;31389:51:0;;;;;;;;;;;-1:-1:-1;;;31389:51:0;;;;;;;;;;;;;;31459:731;;31509:14;;-1:-1:-1;;;;;31509:28:0;;31505:101;;31573:9;31189:1083;-1:-1:-1;;;31189:1083:0:o;31505:101::-;-1:-1:-1;;;31950:6:0;31995:17;;;;:11;:17;;;;;;;;;31983:29;;;;;;;;;-1:-1:-1;;;;;31983:29:0;;;;;-1:-1:-1;;;31983:29:0;;;;;;;;;;;-1:-1:-1;;;31983:29:0;;;;;;;;;;;;;32043:28;32039:109;;32111:9;31189:1083;-1:-1:-1;;;31189:1083:0:o;32039:109::-;31910:261;;;31370:835;31344:861;32233:31;;-1:-1:-1;;;32233:31:0;;;;;;;;;;;5455:191;5548:6;;;-1:-1:-1;;;;;5565:17:0;;;-1:-1:-1;;;;;;5565:17:0;;;;;;;5598:40;;5548:6;;;5565:17;5548:6;;5598:40;;5529:16;;5598:40;5518:128;5455:191;:::o;36131:104::-;36200:27;36210:2;36214:8;36200:27;;;;;;;;;;;;:9;:27::i;:::-;36131:104;;:::o;43956:790::-;44111:4;-1:-1:-1;;;;;44132:13:0;;7181:19;:23;44128:611;;44168:72;;-1:-1:-1;;;44168:72:0;;-1:-1:-1;;;;;44168:36:0;;;;;:72;;2989:10;;44219:4;;44225:7;;44234:5;;44168:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44168:72:0;;;;;;;;-1:-1:-1;;44168:72:0;;;;;;;;;;;;:::i;:::-;;;44164:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44414:13:0;;44410:259;;44464:40;;-1:-1:-1;;;44464:40:0;;;;;;;;;;;44410:259;44619:6;44613:13;44604:6;44600:2;44596:15;44589:38;44164:520;-1:-1:-1;;;;;;44291:55:0;-1:-1:-1;;;44291:55:0;;-1:-1:-1;44284:62:0;;44128:611;-1:-1:-1;44723:4:0;44128:611;43956:790;;;;;;:::o;48322:100::-;48374:13;48407:7;48400:14;;;;;:::i;471:723::-;527:13;748:10;744:53;;-1:-1:-1;;775:10:0;;;;;;;;;;;;-1:-1:-1;;;775:10:0;;;;;471:723::o;744:53::-;822:5;807:12;863:78;870:9;;863:78;;896:8;;;;:::i;:::-;;-1:-1:-1;919:10:0;;-1:-1:-1;927:2:0;919:10;;:::i;:::-;;;863:78;;;951:19;983:6;973:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;973:17:0;;951:39;;1001:154;1008:10;;1001:154;;1035:11;1045:1;1035:11;;:::i;:::-;;-1:-1:-1;1104:10:0;1112:2;1104:5;:10;:::i;:::-;1091:24;;:2;:24;:::i;:::-;1078:39;;1061:6;1068;1061:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1061:56:0;;;;;;;;-1:-1:-1;1132:11:0;1141:2;1132:11;;:::i;:::-;;;1001:154;;36598:163;36721:32;36727:2;36731:8;36741:5;36748:4;37159:20;37182:13;-1:-1:-1;;;;;37182:13:0;-1:-1:-1;;;;;37210:16:0;;37206:48;;37235:19;;-1:-1:-1;;;37235:19:0;;;;;;;;;;;37206:48;37269:13;37265:44;;37291:18;;-1:-1:-1;;;37291:18:0;;;;;;;;;;;37265:44;-1:-1:-1;;;;;37661:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;37720:49:0;;37661:44;;;;;;;;37720:49;;;;-1:-1:-1;;37661:44:0;;;;;;37720:49;;;;;;;;;;;;;;;;37786:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37836:66:0;;;;-1:-1:-1;;;37886:15:0;37836:66;;;;;;;;;;;37786:25;;37971:328;37991:8;37987:1;:12;37971:328;;;38030:38;;38055:12;;-1:-1:-1;;;;;38030:38:0;;;38047:1;;38030:38;;38047:1;;38030:38;38091:4;:68;;;;;38100:59;38131:1;38135:2;38139:12;38153:5;38100:22;:59::i;:::-;38099:60;38091:68;38087:164;;;38191:40;;-1:-1:-1;;;38191:40:0;;;;;;;;;;;38087:164;38269:14;;;;;38001:3;37971:328;;;-1:-1:-1;38315:13:0;:37;;-1:-1:-1;;;;;;38315:37:0;-1:-1:-1;;;;;38315:37:0;;;;;;;;;;38374:60;35382:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:470::-;4462:3;4500:6;4494:13;4516:53;4562:6;4557:3;4550:4;4542:6;4538:17;4516:53;:::i;:::-;4632:13;;4591:16;;;;4654:57;4632:13;4591:16;4688:4;4676:17;;4654:57;:::i;:::-;4727:20;;4283:470;-1:-1:-1;;;;4283:470:1:o;4966:488::-;-1:-1:-1;;;;;5235:15:1;;;5217:34;;5287:15;;5282:2;5267:18;;5260:43;5334:2;5319:18;;5312:34;;;5382:3;5377:2;5362:18;;5355:31;;;5160:4;;5403:45;;5428:19;;5420:6;5403:45;:::i;:::-;5395:53;4966:488;-1:-1:-1;;;;;;4966:488:1:o;5651:219::-;5800:2;5789:9;5782:21;5763:4;5820:44;5860:2;5849:9;5845:18;5837:6;5820:44;:::i;7397:356::-;7599:2;7581:21;;;7618:18;;;7611:30;7677:34;7672:2;7657:18;;7650:62;7744:2;7729:18;;7397:356::o;9066:128::-;9106:3;9137:1;9133:6;9130:1;9127:13;9124:39;;;9143:18;;:::i;:::-;-1:-1:-1;9179:9:1;;9066:128::o;9199:120::-;9239:1;9265;9255:35;;9270:18;;:::i;:::-;-1:-1:-1;9304:9:1;;9199:120::o;9324:168::-;9364:7;9430:1;9426;9422:6;9418:14;9415:1;9412:21;9407:1;9400:9;9393:17;9389:45;9386:71;;;9437:18;;:::i;:::-;-1:-1:-1;9477:9:1;;9324:168::o;9497:125::-;9537:4;9565:1;9562;9559:8;9556:34;;;9570:18;;:::i;:::-;-1:-1:-1;9607:9:1;;9497:125::o;9627:258::-;9699:1;9709:113;9723:6;9720:1;9717:13;9709:113;;;9799:11;;;9793:18;9780:11;;;9773:39;9745:2;9738:10;9709:113;;;9840:6;9837:1;9834:13;9831:48;;;-1:-1:-1;;9875:1:1;9857:16;;9850:27;9627:258::o;9890:380::-;9969:1;9965:12;;;;10012;;;10033:61;;10087:4;10079:6;10075:17;10065:27;;10033:61;10140:2;10132:6;10129:14;10109:18;10106:38;10103:161;;;10186:10;10181:3;10177:20;10174:1;10167:31;10221:4;10218:1;10211:15;10249:4;10246:1;10239:15;10103:161;;9890:380;;;:::o;10275:135::-;10314:3;-1:-1:-1;;10335:17:1;;10332:43;;;10355:18;;:::i;:::-;-1:-1:-1;10402:1:1;10391:13;;10275:135::o;10415:112::-;10447:1;10473;10463:35;;10478:18;;:::i;:::-;-1:-1:-1;10512:9:1;;10415:112::o;10532:127::-;10593:10;10588:3;10584:20;10581:1;10574:31;10624:4;10621:1;10614:15;10648:4;10645:1;10638:15;10664:127;10725:10;10720:3;10716:20;10713:1;10706:31;10756:4;10753:1;10746:15;10780:4;10777:1;10770:15;10796:127;10857:10;10852:3;10848:20;10845:1;10838:31;10888:4;10885:1;10878:15;10912:4;10909:1;10902:15;10928:127;10989:10;10984:3;10980:20;10977:1;10970:31;11020:4;11017:1;11010:15;11044:4;11041:1;11034:15;11060:131;-1:-1:-1;;;;;;11134:32:1;;11124:43;;11114:71;;11181:1;11178;11171:12

Swarm Source

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