ETH Price: $2,303.50 (+0.65%)

Token

Absolutely Nothing NFT (ABN)
 

Overview

Max Total Supply

8,888 ABN

Holders

366

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 ABN
0x39daae252a864987a5d098d8409d8ec478cfc71a
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:
AbsolutelyNothing

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

// 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: @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/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/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// 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/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: contracts/AbsolutelyNothing.sol


pragma solidity ^0.8.7;








// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
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 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**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    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;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used). 
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 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 returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * 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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 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 = 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**256.
        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**256.
        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 {}
}

contract AbsolutelyNothing is ERC721A, Ownable {
    using Strings for uint256;
    
    uint256 public MAX_SUPPLY = 8888;

    string private BASE_URI;
    string private UNREVEAL_URI;

    uint256 public PUBLIC_MINT_LIMIT = MAX_SUPPLY;

    uint256 public SALE_STEP = 0; // 0 => NONE, 1 => START

    constructor() ERC721A("Absolutely Nothing NFT", "ABN") {}

    function setPublicMintLimit(uint256 _publicMintLimit) external onlyOwner {
        PUBLIC_MINT_LIMIT = _publicMintLimit;
    }
    
    function numberMinted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function mintPublic(uint256 _mintAmount) external {
        require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");

        require(SALE_STEP == 1, "Public Sale is not opened");

        require((numberMinted(msg.sender) + _mintAmount) <= PUBLIC_MINT_LIMIT, "Exceeds Max Mint Amount");

        _mintLoop(msg.sender, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses, uint256 _mintAmount) external onlyOwner {
        require(totalSupply() + _airdropAddresses.length * _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");

        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, _mintAmount);
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : UNREVEAL_URI;
    }

    function setMaxSupply(uint256 _supply) external onlyOwner {
        MAX_SUPPLY = _supply;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        BASE_URI = _newBaseURI;
    }

    function setUnrevealURI(string memory _newUnrevealURI) external onlyOwner {
        UNREVEAL_URI = _newUnrevealURI;
    }

    function setSaleStep(uint256 _saleStep) external onlyOwner {
        SALE_STEP = _saleStep;
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }

    function withdraw() external onlyOwner {
        uint256 curBalance = address(this).balance;
        payable(msg.sender).transfer(curBalance);
    }
}

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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_STEP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"_mintAmount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMintLimit","type":"uint256"}],"name":"setPublicMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStep","type":"uint256"}],"name":"setSaleStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUnrevealURI","type":"string"}],"name":"setUnrevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526122b8600955600954600c556000600d553480156200002257600080fd5b50604080518082018252601681527f4162736f6c7574656c79204e6f7468696e67204e46540000000000000000000060208083019182528351808501909452600384526220a12760e91b908401528151919291620000839160029162000112565b5080516200009990600390602084019062000112565b505050620000b6620000b0620000bc60201b60201c565b620000c0565b620001f4565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012090620001b8565b90600052602060002090601f0160209004810192826200014457600085556200018f565b82601f106200015f57805160ff19168380011785556200018f565b828001600101855582156200018f579182015b828111156200018f57825182559160200191906001019062000172565b506200019d929150620001a1565b5090565b5b808211156200019d5760008155600101620001a2565b600181811c90821680620001cd57607f821691505b602082108103620001ee57634e487b7160e01b600052602260045260246000fd5b50919050565b611b9780620002046000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806384b9a4a511610104578063bceae77b116100a2578063e985e9c511610071578063e985e9c5146103f6578063ef3e067c14610432578063efd0cbf914610445578063f2fde38b1461045857600080fd5b8063bceae77b146103b4578063c204642c146103bd578063c87b56dd146103d0578063dc33e681146103e357600080fd5b806395d89b41116100de57806395d89b411461037357806397bc411c1461037b578063a22cb4651461038e578063b88d4fde146103a157600080fd5b806384b9a4a5146103105780638da5cb5b146103195780639231ab2a1461032a57600080fd5b80633ccfd60b1161017c5780636352211e1161014b5780636352211e146102cf5780636f8b44b0146102e257806370a08231146102f5578063715018a61461030857600080fd5b80633ccfd60b1461028e57806342842e0e1461029657806353e90cbd146102a957806355f804b3146102bc57600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c57806323b872dd1461027257806332cb6b0c1461028557600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046115d9565b61046b565b60405190151581526020015b60405180910390f35b61020f6104bd565b6040516101fe919061164e565b61022f61022a366004611661565b61054f565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004611696565b610593565b005b600154600054035b6040519081526020016101fe565b61025a6102803660046116c0565b610620565b61026460095481565b61025a61062b565b61025a6102a43660046116c0565b610691565b61025a6102b7366004611661565b6106ac565b61025a6102ca366004611799565b6106db565b61022f6102dd366004611661565b610718565b61025a6102f0366004611661565b61072a565b6102646103033660046117e1565b610759565b61025a6107a7565b610264600d5481565b6008546001600160a01b031661022f565b61033d610338366004611661565b6107dd565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016101fe565b61020f610803565b61025a610389366004611799565b610812565b61025a61039c3660046117fc565b61084f565b61025a6103af366004611838565b6108e4565b610264600c5481565b61025a6103cb3660046118b3565b61091e565b61020f6103de366004611661565b6109f3565b6102646103f13660046117e1565b610b39565b6101f2610404366004611965565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025a610440366004611661565b610b44565b61025a610453366004611661565b610b73565b61025a6104663660046117e1565b610c95565b60006001600160e01b031982166380ac58cd60e01b148061049c57506001600160e01b03198216635b5e139f60e01b145b806104b757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104cc90611998565b80601f01602080910402602001604051908101604052809291908181526020018280546104f890611998565b80156105455780601f1061051a57610100808354040283529160200191610545565b820191906000526020600020905b81548152906001019060200180831161052857829003601f168201915b5050505050905090565b600061055a82610d2d565b610577576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061059e82610718565b9050806001600160a01b0316836001600160a01b0316036105d25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105f257506105f08133610404565b155b15610610576040516367d9dca160e11b815260040160405180910390fd5b61061b838383610d58565b505050565b61061b838383610db4565b6008546001600160a01b0316331461065e5760405162461bcd60e51b8152600401610655906119d2565b60405180910390fd5b6040514790339082156108fc029083906000818181858888f1935050505015801561068d573d6000803e3d6000fd5b5050565b61061b838383604051806020016040528060008152506108e4565b6008546001600160a01b031633146106d65760405162461bcd60e51b8152600401610655906119d2565b600d55565b6008546001600160a01b031633146107055760405162461bcd60e51b8152600401610655906119d2565b805161068d90600a90602084019061152a565b600061072382610fc8565b5192915050565b6008546001600160a01b031633146107545760405162461bcd60e51b8152600401610655906119d2565b600955565b60006001600160a01b038216610782576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146107d15760405162461bcd60e51b8152600401610655906119d2565b6107db60006110e1565b565b60408051606081018252600080825260208201819052918101919091526104b782610fc8565b6060600380546104cc90611998565b6008546001600160a01b0316331461083c5760405162461bcd60e51b8152600401610655906119d2565b805161068d90600b90602084019061152a565b336001600160a01b038316036108785760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108ef848484610db4565b6108fb84848484611133565b610918576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146109485760405162461bcd60e51b8152600401610655906119d2565b6009548183516109589190611a1d565b600154600054036109699190611a3c565b11156109ac5760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610655565b60005b825181101561061b5760008382815181106109cc576109cc611a54565b602002602001015190506109e08184611236565b50806109eb81611a6a565b9150506109af565b60606109fe82610d2d565b610a625760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610655565b6000610a6c611240565b90506000815111610b0757600b8054610a8490611998565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab090611998565b8015610afd5780601f10610ad257610100808354040283529160200191610afd565b820191906000526020600020905b815481529060010190602001808311610ae057829003601f168201915b5050505050610b32565b80610b118461124f565b604051602001610b22929190611a83565b6040516020818303038152906040525b9392505050565b60006104b78261134f565b6008546001600160a01b03163314610b6e5760405162461bcd60e51b8152600401610655906119d2565b600c55565b60095481610b846001546000540390565b610b8e9190611a3c565b1115610bd15760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610655565b600d54600114610c235760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c65206973206e6f74206f70656e6564000000000000006044820152606401610655565b600c5481610c3033610b39565b610c3a9190611a3c565b1115610c885760405162461bcd60e51b815260206004820152601760248201527f45786365656473204d6178204d696e7420416d6f756e740000000000000000006044820152606401610655565b610c923382611236565b50565b6008546001600160a01b03163314610cbf5760405162461bcd60e51b8152600401610655906119d2565b6001600160a01b038116610d245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610655565b610c92816110e1565b60008054821080156104b7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610dbf82610fc8565b80519091506000906001600160a01b0316336001600160a01b03161480610ded57508151610ded9033610404565b80610e08575033610dfd8461054f565b6001600160a01b0316145b905080610e2857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e5d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e8457604051633a954ecd60e21b815260040160405180910390fd5b610e946000848460000151610d58565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f7e57600054811015610f7e57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482908110156110c857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906110c65780516001600160a01b03161561105d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156110c1579392505050565b61105d565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561122a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611177903390899088908890600401611ab2565b6020604051808303816000875af19250505080156111b2575060408051601f3d908101601f191682019092526111af91810190611aef565b60015b611210573d8080156111e0576040519150601f19603f3d011682016040523d82523d6000602084013e6111e5565b606091505b508051600003611208576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061122e565b5060015b949350505050565b61068d82826113a4565b6060600a80546104cc90611998565b6060816000036112765750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112a0578061128a81611a6a565b91506112999050600a83611b22565b915061127a565b6000816001600160401b038111156112ba576112ba6116fc565b6040519080825280601f01601f1916602001820160405280156112e4576020820181803683370190505b5090505b841561122e576112f9600183611b36565b9150611306600a86611b4d565b611311906030611a3c565b60f81b81838151811061132657611326611a54565b60200101906001600160f81b031916908160001a905350611348600a86611b22565b94506112e8565b60006001600160a01b038216611378576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b61068d82826040518060200160405280600081525061061b83838360016000546001600160a01b0385166113ea57604051622e076360e81b815260040160405180910390fd5b8360000361140b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156115215760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156114f757506114f56000888488611133565b155b15611515576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016114a0565b50600055610fc1565b82805461153690611998565b90600052602060002090601f016020900481019282611558576000855561159e565b82601f1061157157805160ff191683800117855561159e565b8280016001018555821561159e579182015b8281111561159e578251825591602001919060010190611583565b506115aa9291506115ae565b5090565b5b808211156115aa57600081556001016115af565b6001600160e01b031981168114610c9257600080fd5b6000602082840312156115eb57600080fd5b8135610b32816115c3565b60005b838110156116115781810151838201526020016115f9565b838111156109185750506000910152565b6000815180845261163a8160208601602086016115f6565b601f01601f19169290920160200192915050565b602081526000610b326020830184611622565b60006020828403121561167357600080fd5b5035919050565b80356001600160a01b038116811461169157600080fd5b919050565b600080604083850312156116a957600080fd5b6116b28361167a565b946020939093013593505050565b6000806000606084860312156116d557600080fd5b6116de8461167a565b92506116ec6020850161167a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561173a5761173a6116fc565b604052919050565b60006001600160401b0383111561175b5761175b6116fc565b61176e601f8401601f1916602001611712565b905082815283838301111561178257600080fd5b828260208301376000602084830101529392505050565b6000602082840312156117ab57600080fd5b81356001600160401b038111156117c157600080fd5b8201601f810184136117d257600080fd5b61122e84823560208401611742565b6000602082840312156117f357600080fd5b610b328261167a565b6000806040838503121561180f57600080fd5b6118188361167a565b91506020830135801515811461182d57600080fd5b809150509250929050565b6000806000806080858703121561184e57600080fd5b6118578561167a565b93506118656020860161167a565b92506040850135915060608501356001600160401b0381111561188757600080fd5b8501601f8101871361189857600080fd5b6118a787823560208401611742565b91505092959194509250565b600080604083850312156118c657600080fd5b82356001600160401b03808211156118dd57600080fd5b818501915085601f8301126118f157600080fd5b8135602082821115611905576119056116fc565b8160051b9250611916818401611712565b828152928401810192818101908985111561193057600080fd5b948201945b84861015611955576119468661167a565b82529482019490820190611935565b9997909101359750505050505050565b6000806040838503121561197857600080fd5b6119818361167a565b915061198f6020840161167a565b90509250929050565b600181811c908216806119ac57607f821691505b6020821081036119cc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611a3757611a37611a07565b500290565b60008219821115611a4f57611a4f611a07565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201611a7c57611a7c611a07565b5060010190565b60008351611a958184602088016115f6565b835190830190611aa98183602088016115f6565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ae590830184611622565b9695505050505050565b600060208284031215611b0157600080fd5b8151610b32816115c3565b634e487b7160e01b600052601260045260246000fd5b600082611b3157611b31611b0c565b500490565b600082821015611b4857611b48611a07565b500390565b600082611b5c57611b5c611b0c565b50069056fea2646970667358221220e1a83e83e5fac49941112cd3859660dde17e97505603b5cf39cc5ce89dd6818a64736f6c634300080e0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806384b9a4a511610104578063bceae77b116100a2578063e985e9c511610071578063e985e9c5146103f6578063ef3e067c14610432578063efd0cbf914610445578063f2fde38b1461045857600080fd5b8063bceae77b146103b4578063c204642c146103bd578063c87b56dd146103d0578063dc33e681146103e357600080fd5b806395d89b41116100de57806395d89b411461037357806397bc411c1461037b578063a22cb4651461038e578063b88d4fde146103a157600080fd5b806384b9a4a5146103105780638da5cb5b146103195780639231ab2a1461032a57600080fd5b80633ccfd60b1161017c5780636352211e1161014b5780636352211e146102cf5780636f8b44b0146102e257806370a08231146102f5578063715018a61461030857600080fd5b80633ccfd60b1461028e57806342842e0e1461029657806353e90cbd146102a957806355f804b3146102bc57600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c57806323b872dd1461027257806332cb6b0c1461028557600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046115d9565b61046b565b60405190151581526020015b60405180910390f35b61020f6104bd565b6040516101fe919061164e565b61022f61022a366004611661565b61054f565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004611696565b610593565b005b600154600054035b6040519081526020016101fe565b61025a6102803660046116c0565b610620565b61026460095481565b61025a61062b565b61025a6102a43660046116c0565b610691565b61025a6102b7366004611661565b6106ac565b61025a6102ca366004611799565b6106db565b61022f6102dd366004611661565b610718565b61025a6102f0366004611661565b61072a565b6102646103033660046117e1565b610759565b61025a6107a7565b610264600d5481565b6008546001600160a01b031661022f565b61033d610338366004611661565b6107dd565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016101fe565b61020f610803565b61025a610389366004611799565b610812565b61025a61039c3660046117fc565b61084f565b61025a6103af366004611838565b6108e4565b610264600c5481565b61025a6103cb3660046118b3565b61091e565b61020f6103de366004611661565b6109f3565b6102646103f13660046117e1565b610b39565b6101f2610404366004611965565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025a610440366004611661565b610b44565b61025a610453366004611661565b610b73565b61025a6104663660046117e1565b610c95565b60006001600160e01b031982166380ac58cd60e01b148061049c57506001600160e01b03198216635b5e139f60e01b145b806104b757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104cc90611998565b80601f01602080910402602001604051908101604052809291908181526020018280546104f890611998565b80156105455780601f1061051a57610100808354040283529160200191610545565b820191906000526020600020905b81548152906001019060200180831161052857829003601f168201915b5050505050905090565b600061055a82610d2d565b610577576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061059e82610718565b9050806001600160a01b0316836001600160a01b0316036105d25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105f257506105f08133610404565b155b15610610576040516367d9dca160e11b815260040160405180910390fd5b61061b838383610d58565b505050565b61061b838383610db4565b6008546001600160a01b0316331461065e5760405162461bcd60e51b8152600401610655906119d2565b60405180910390fd5b6040514790339082156108fc029083906000818181858888f1935050505015801561068d573d6000803e3d6000fd5b5050565b61061b838383604051806020016040528060008152506108e4565b6008546001600160a01b031633146106d65760405162461bcd60e51b8152600401610655906119d2565b600d55565b6008546001600160a01b031633146107055760405162461bcd60e51b8152600401610655906119d2565b805161068d90600a90602084019061152a565b600061072382610fc8565b5192915050565b6008546001600160a01b031633146107545760405162461bcd60e51b8152600401610655906119d2565b600955565b60006001600160a01b038216610782576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146107d15760405162461bcd60e51b8152600401610655906119d2565b6107db60006110e1565b565b60408051606081018252600080825260208201819052918101919091526104b782610fc8565b6060600380546104cc90611998565b6008546001600160a01b0316331461083c5760405162461bcd60e51b8152600401610655906119d2565b805161068d90600b90602084019061152a565b336001600160a01b038316036108785760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108ef848484610db4565b6108fb84848484611133565b610918576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146109485760405162461bcd60e51b8152600401610655906119d2565b6009548183516109589190611a1d565b600154600054036109699190611a3c565b11156109ac5760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610655565b60005b825181101561061b5760008382815181106109cc576109cc611a54565b602002602001015190506109e08184611236565b50806109eb81611a6a565b9150506109af565b60606109fe82610d2d565b610a625760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610655565b6000610a6c611240565b90506000815111610b0757600b8054610a8490611998565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab090611998565b8015610afd5780601f10610ad257610100808354040283529160200191610afd565b820191906000526020600020905b815481529060010190602001808311610ae057829003601f168201915b5050505050610b32565b80610b118461124f565b604051602001610b22929190611a83565b6040516020818303038152906040525b9392505050565b60006104b78261134f565b6008546001600160a01b03163314610b6e5760405162461bcd60e51b8152600401610655906119d2565b600c55565b60095481610b846001546000540390565b610b8e9190611a3c565b1115610bd15760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610655565b600d54600114610c235760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c65206973206e6f74206f70656e6564000000000000006044820152606401610655565b600c5481610c3033610b39565b610c3a9190611a3c565b1115610c885760405162461bcd60e51b815260206004820152601760248201527f45786365656473204d6178204d696e7420416d6f756e740000000000000000006044820152606401610655565b610c923382611236565b50565b6008546001600160a01b03163314610cbf5760405162461bcd60e51b8152600401610655906119d2565b6001600160a01b038116610d245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610655565b610c92816110e1565b60008054821080156104b7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610dbf82610fc8565b80519091506000906001600160a01b0316336001600160a01b03161480610ded57508151610ded9033610404565b80610e08575033610dfd8461054f565b6001600160a01b0316145b905080610e2857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e5d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e8457604051633a954ecd60e21b815260040160405180910390fd5b610e946000848460000151610d58565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f7e57600054811015610f7e57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482908110156110c857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906110c65780516001600160a01b03161561105d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156110c1579392505050565b61105d565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561122a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611177903390899088908890600401611ab2565b6020604051808303816000875af19250505080156111b2575060408051601f3d908101601f191682019092526111af91810190611aef565b60015b611210573d8080156111e0576040519150601f19603f3d011682016040523d82523d6000602084013e6111e5565b606091505b508051600003611208576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061122e565b5060015b949350505050565b61068d82826113a4565b6060600a80546104cc90611998565b6060816000036112765750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112a0578061128a81611a6a565b91506112999050600a83611b22565b915061127a565b6000816001600160401b038111156112ba576112ba6116fc565b6040519080825280601f01601f1916602001820160405280156112e4576020820181803683370190505b5090505b841561122e576112f9600183611b36565b9150611306600a86611b4d565b611311906030611a3c565b60f81b81838151811061132657611326611a54565b60200101906001600160f81b031916908160001a905350611348600a86611b22565b94506112e8565b60006001600160a01b038216611378576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b61068d82826040518060200160405280600081525061061b83838360016000546001600160a01b0385166113ea57604051622e076360e81b815260040160405180910390fd5b8360000361140b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156115215760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156114f757506114f56000888488611133565b155b15611515576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016114a0565b50600055610fc1565b82805461153690611998565b90600052602060002090601f016020900481019282611558576000855561159e565b82601f1061157157805160ff191683800117855561159e565b8280016001018555821561159e579182015b8281111561159e578251825591602001919060010190611583565b506115aa9291506115ae565b5090565b5b808211156115aa57600081556001016115af565b6001600160e01b031981168114610c9257600080fd5b6000602082840312156115eb57600080fd5b8135610b32816115c3565b60005b838110156116115781810151838201526020016115f9565b838111156109185750506000910152565b6000815180845261163a8160208601602086016115f6565b601f01601f19169290920160200192915050565b602081526000610b326020830184611622565b60006020828403121561167357600080fd5b5035919050565b80356001600160a01b038116811461169157600080fd5b919050565b600080604083850312156116a957600080fd5b6116b28361167a565b946020939093013593505050565b6000806000606084860312156116d557600080fd5b6116de8461167a565b92506116ec6020850161167a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561173a5761173a6116fc565b604052919050565b60006001600160401b0383111561175b5761175b6116fc565b61176e601f8401601f1916602001611712565b905082815283838301111561178257600080fd5b828260208301376000602084830101529392505050565b6000602082840312156117ab57600080fd5b81356001600160401b038111156117c157600080fd5b8201601f810184136117d257600080fd5b61122e84823560208401611742565b6000602082840312156117f357600080fd5b610b328261167a565b6000806040838503121561180f57600080fd5b6118188361167a565b91506020830135801515811461182d57600080fd5b809150509250929050565b6000806000806080858703121561184e57600080fd5b6118578561167a565b93506118656020860161167a565b92506040850135915060608501356001600160401b0381111561188757600080fd5b8501601f8101871361189857600080fd5b6118a787823560208401611742565b91505092959194509250565b600080604083850312156118c657600080fd5b82356001600160401b03808211156118dd57600080fd5b818501915085601f8301126118f157600080fd5b8135602082821115611905576119056116fc565b8160051b9250611916818401611712565b828152928401810192818101908985111561193057600080fd5b948201945b84861015611955576119468661167a565b82529482019490820190611935565b9997909101359750505050505050565b6000806040838503121561197857600080fd5b6119818361167a565b915061198f6020840161167a565b90509250929050565b600181811c908216806119ac57607f821691505b6020821081036119cc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611a3757611a37611a07565b500290565b60008219821115611a4f57611a4f611a07565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201611a7c57611a7c611a07565b5060010190565b60008351611a958184602088016115f6565b835190830190611aa98183602088016115f6565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ae590830184611622565b9695505050505050565b600060208284031215611b0157600080fd5b8151610b32816115c3565b634e487b7160e01b600052601260045260246000fd5b600082611b3157611b31611b0c565b500490565b600082821015611b4857611b48611a07565b500390565b600082611b5c57611b5c611b0c565b50069056fea2646970667358221220e1a83e83e5fac49941112cd3859660dde17e97505603b5cf39cc5ce89dd6818a64736f6c634300080e0033

Deployed Bytecode Sourcemap

44820:2772:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27618:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27618:305:0;;;;;;;;30978:100;;;:::i;:::-;;;;;;;:::i;32481:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;32481:204:0;1528:203:1;32044:371:0;;;;;;:::i;:::-;;:::i;:::-;;27275:271;27511:12;;27319:7;27495:13;:28;27275:271;;;2319:25:1;;;2307:2;2292:18;27275:271:0;2173:177:1;33338:170:0;;;;;;:::i;:::-;;:::i;44912:32::-;;;;;;47438:151;;;:::i;33579:185::-;;;;;;:::i;:::-;;:::i;47060:99::-;;;;;;:::i;:::-;;:::i;46814:107::-;;;;;;:::i;:::-;;:::i;30787:124::-;;;;;;:::i;:::-;;:::i;46709:97::-;;;;;;:::i;:::-;;:::i;27987:206::-;;;;;;:::i;:::-;;:::i;12376:103::-;;;:::i;45073:28::-;;;;;;11725:87;11798:6;;-1:-1:-1;;;;;11798:6:0;11725:87;;47295:135;;;;;;:::i;:::-;;:::i;:::-;;;;4389:13:1;;-1:-1:-1;;;;;4385:39:1;4367:58;;4485:4;4473:17;;;4467:24;-1:-1:-1;;;;;4463:49:1;4441:20;;;4434:79;4571:17;;;4565:24;4558:32;4551:40;4529:20;;;4522:70;4355:2;4340:18;47295:135:0;4159:439:1;31147:104:0;;;:::i;46929:123::-;;;;;;:::i;:::-;;:::i;32757:279::-;;;;;;:::i;:::-;;:::i;33835:342::-;;;;;;:::i;:::-;;:::i;45019:45::-;;;;;;45834:379;;;;;;:::i;:::-;;:::i;46338:363::-;;;;;;:::i;:::-;;:::i;45340:115::-;;;;;;:::i;:::-;;:::i;33107:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;33228:25:0;;;33204:4;33228:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33107:164;45200:128;;;;;;:::i;:::-;;:::i;45463:363::-;;;;;;:::i;:::-;;:::i;12634:201::-;;;;;;:::i;:::-;;:::i;27618:305::-;27720:4;-1:-1:-1;;;;;;27757:40:0;;-1:-1:-1;;;27757:40:0;;:105;;-1:-1:-1;;;;;;;27814:48:0;;-1:-1:-1;;;27814:48:0;27757:105;:158;;;-1:-1:-1;;;;;;;;;;8661:40:0;;;27879:36;27737:178;27618:305;-1:-1:-1;;27618:305:0:o;30978:100::-;31032:13;31065:5;31058:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30978:100;:::o;32481:204::-;32549:7;32574:16;32582:7;32574;:16::i;:::-;32569:64;;32599:34;;-1:-1:-1;;;32599:34:0;;;;;;;;;;;32569:64;-1:-1:-1;32653:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32653:24:0;;32481:204::o;32044:371::-;32117:13;32133:24;32149:7;32133:15;:24::i;:::-;32117:40;;32178:5;-1:-1:-1;;;;;32172:11:0;:2;-1:-1:-1;;;;;32172:11:0;;32168:48;;32192:24;;-1:-1:-1;;;32192:24:0;;;;;;;;;;;32168:48;10529:10;-1:-1:-1;;;;;32233:21:0;;;;;;:63;;-1:-1:-1;32259:37:0;32276:5;10529:10;33107:164;:::i;32259:37::-;32258:38;32233:63;32229:138;;;32320:35;;-1:-1:-1;;;32320:35:0;;;;;;;;;;;32229:138;32379:28;32388:2;32392:7;32401:5;32379:8;:28::i;:::-;32106:309;32044:371;;:::o;33338:170::-;33472:28;33482:4;33488:2;33492:7;33472:9;:28::i;47438:151::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;;;;;;;;;47541:40:::1;::::0;47509:21:::1;::::0;47549:10:::1;::::0;47541:40;::::1;;;::::0;47509:21;;47488:18:::1;47541:40:::0;47488:18;47541:40;47509:21;47549:10;47541:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47477:112;47438:151::o:0;33579:185::-;33717:39;33734:4;33740:2;33744:7;33717:39;;;;;;;;;;;;:16;:39::i;47060:99::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;47130:9:::1;:21:::0;47060:99::o;46814:107::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;46891:22;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;30787:124::-:0;30851:7;30878:20;30890:7;30878:11;:20::i;:::-;:25;;30787:124;-1:-1:-1;;30787:124:0:o;46709:97::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;46778:10:::1;:20:::0;46709:97::o;27987:206::-;28051:7;-1:-1:-1;;;;;28075:19:0;;28071:60;;28103:28;;-1:-1:-1;;;28103:28:0;;;;;;;;;;;28071:60;-1:-1:-1;;;;;;28157:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28157:27:0;;27987:206::o;12376:103::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;12441:30:::1;12468:1;12441:18;:30::i;:::-;12376:103::o:0;47295:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;47402:20:0;47414:7;47402:11;:20::i;31147:104::-;31203:13;31236:7;31229:14;;;;;:::i;46929:123::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;47014:30;;::::1;::::0;:12:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;32757:279::-:0;10529:10;-1:-1:-1;;;;;32848:24:0;;;32844:54;;32881:17;;-1:-1:-1;;;32881:17:0;;;;;;;;;;;32844:54;10529:10;32911:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32911:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32911:53:0;;;;;;;;;;32980:48;;540:41:1;;;32911:42:0;;10529:10;32980:48;;513:18:1;32980:48:0;;;;;;;32757:279;;:::o;33835:342::-;34002:28;34012:4;34018:2;34022:7;34002:9;:28::i;:::-;34046:48;34069:4;34075:2;34079:7;34088:5;34046:22;:48::i;:::-;34041:129;;34118:40;;-1:-1:-1;;;34118:40:0;;;;;;;;;;;34041:129;33835:342;;;;:::o;45834:379::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;46004:10:::1;;45989:11;45962:17;:24;:38;;;;:::i;:::-;27511:12:::0;;27319:7;27495:13;:28;45946:54:::1;;;;:::i;:::-;:68;;45938:99;;;::::0;-1:-1:-1;;;45938:99:0;;8305:2:1;45938:99:0::1;::::0;::::1;8287:21:1::0;8344:2;8324:18;;;8317:30;-1:-1:-1;;;8363:18:1;;;8356:48;8421:18;;45938:99:0::1;8103:342:1::0;45938:99:0::1;46055:9;46050:156;46074:17;:24;46070:1;:28;46050:156;;;46120:10;46133:17;46151:1;46133:20;;;;;;;;:::i;:::-;;;;;;;46120:33;;46168:26;46178:2;46182:11;46168:9;:26::i;:::-;-1:-1:-1::0;46100:3:0;::::1;::::0;::::1;:::i;:::-;;;;46050:156;;46338:363:::0;46411:13;46445:16;46453:7;46445;:16::i;:::-;46437:76;;;;-1:-1:-1;;;46437:76:0;;8924:2:1;46437:76:0;;;8906:21:1;8963:2;8943:18;;;8936:30;9002:34;8982:18;;;8975:62;-1:-1:-1;;;9053:18:1;;;9046:45;9108:19;;46437:76:0;8722:411:1;46437:76:0;46524:28;46555:10;:8;:10::i;:::-;46524:41;;46614:1;46589:14;46583:28;:32;:110;;46681:12;46583:110;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46642:14;46658:18;:7;:16;:18::i;:::-;46625:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46583:110;46576:117;46338:363;-1:-1:-1;;;46338:363:0:o;45340:115::-;45399:7;45426:21;45440:6;45426:13;:21::i;45200:128::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;45284:17:::1;:36:::0;45200:128::o;45463:363::-;45563:10;;45548:11;45532:13;27511:12;;27319:7;27495:13;:28;;27275:271;45532:13;:27;;;;:::i;:::-;:41;;45524:72;;;;-1:-1:-1;;;45524:72:0;;8305:2:1;45524:72:0;;;8287:21:1;8344:2;8324:18;;;8317:30;-1:-1:-1;;;8363:18:1;;;8356:48;8421:18;;45524:72:0;8103:342:1;45524:72:0;45617:9;;45630:1;45617:14;45609:52;;;;-1:-1:-1;;;45609:52:0;;9815:2:1;45609:52:0;;;9797:21:1;9854:2;9834:18;;;9827:30;9893:27;9873:18;;;9866:55;9938:18;;45609:52:0;9613:349:1;45609:52:0;45726:17;;45710:11;45683:24;45696:10;45683:12;:24::i;:::-;:38;;;;:::i;:::-;45682:61;;45674:97;;;;-1:-1:-1;;;45674:97:0;;10169:2:1;45674:97:0;;;10151:21:1;10208:2;10188:18;;;10181:30;10247:25;10227:18;;;10220:53;10290:18;;45674:97:0;9967:347:1;45674:97:0;45784:34;45794:10;45806:11;45784:9;:34::i;:::-;45463:363;:::o;12634:201::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12723:22:0;::::1;12715:73;;;::::0;-1:-1:-1;;;12715:73:0;;10521:2:1;12715:73:0::1;::::0;::::1;10503:21:1::0;10560:2;10540:18;;;10533:30;10599:34;10579:18;;;10572:62;-1:-1:-1;;;10650:18:1;;;10643:36;10696:19;;12715:73:0::1;10319:402:1::0;12715:73:0::1;12799:28;12818:8;12799:18;:28::i;34432:144::-:0;34489:4;34523:13;;34513:7;:23;:55;;;;-1:-1:-1;;34541:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34541:27:0;;;;34540:28;;34432:144::o;41638:196::-;41753:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41753:29:0;-1:-1:-1;;;;;41753:29:0;;;;;;;;;41798:28;;41753:24;;41798:28;;;;;;;41638:196;;;:::o;37139:2112::-;37254:35;37292:20;37304:7;37292:11;:20::i;:::-;37367:18;;37254:58;;-1:-1:-1;37325:22:0;;-1:-1:-1;;;;;37351:34:0;10529:10;-1:-1:-1;;;;;37351:34:0;;:101;;;-1:-1:-1;37419:18:0;;37402:50;;10529:10;33107:164;:::i;37402:50::-;37351:154;;;-1:-1:-1;10529:10:0;37469:20;37481:7;37469:11;:20::i;:::-;-1:-1:-1;;;;;37469:36:0;;37351:154;37325:181;;37524:17;37519:66;;37550:35;;-1:-1:-1;;;37550:35:0;;;;;;;;;;;37519:66;37622:4;-1:-1:-1;;;;;37600:26:0;:13;:18;;;-1:-1:-1;;;;;37600:26:0;;37596:67;;37635:28;;-1:-1:-1;;;37635:28:0;;;;;;;;;;;37596:67;-1:-1:-1;;;;;37678:16:0;;37674:52;;37703:23;;-1:-1:-1;;;37703:23:0;;;;;;;;;;;37674:52;37847:49;37864:1;37868:7;37877:13;:18;;;37847:8;:49::i;:::-;-1:-1:-1;;;;;38192:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38192:31:0;;;-1:-1:-1;;;;;38192:31:0;;;-1:-1:-1;;38192:31:0;;;;;;;38238:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38238:29:0;;;;;;;;;;;38284:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;38329:61:0;;;;-1:-1:-1;;;38374:15:0;38329:61;;;;;;;;;;;38664:11;;;38694:24;;;;;:29;38664:11;;38694:29;38690:445;;38919:13;;38905:11;:27;38901:219;;;38989:18;;;38957:24;;;:11;:24;;;;;;;;:50;;39072:28;;;;-1:-1:-1;;;;;39030:70:0;-1:-1:-1;;;39030:70:0;-1:-1:-1;;;;;;39030:70:0;;;-1:-1:-1;;;;;38957:50:0;;;39030:70;;;;;;;38901:219;38167:979;39182:7;39178:2;-1:-1:-1;;;;;39163:27:0;39172:4;-1:-1:-1;;;;;39163:27:0;;;;;;;;;;;39201:42;37243:2008;;37139:2112;;;:::o;29642:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;29808:13:0;;29752:7;;29801:20;;29797:861;;;29842:31;29876:17;;;:11;:17;;;;;;;;;29842:51;;;;;;;;;-1:-1:-1;;;;;29842:51:0;;;;-1:-1:-1;;;29842:51:0;;-1:-1:-1;;;;;29842:51:0;;;;;;;;-1:-1:-1;;;29842:51:0;;;;;;;;;;;;;;29912:731;;29962:14;;-1:-1:-1;;;;;29962:28:0;;29958:101;;30026:9;29642:1083;-1:-1:-1;;;29642:1083:0:o;29958:101::-;-1:-1:-1;;;30403:6:0;30448:17;;;;:11;:17;;;;;;;;;30436:29;;;;;;;;;-1:-1:-1;;;;;30436:29:0;;;;;-1:-1:-1;;;30436:29:0;;-1:-1:-1;;;;;30436:29:0;;;;;;;;-1:-1:-1;;;30436:29:0;;;;;;;;;;;;;30496:28;30492:109;;30564:9;29642:1083;-1:-1:-1;;;29642:1083:0:o;30492:109::-;30363:261;;;29823:835;29797:861;30686:31;;-1:-1:-1;;;30686:31:0;;;;;;;;;;;12995:191;13088:6;;;-1:-1:-1;;;;;13105:17:0;;;-1:-1:-1;;;;;;13105:17:0;;;;;;;13138:40;;13088:6;;;13105:17;13088:6;;13138:40;;13069:16;;13138:40;13058:128;12995:191;:::o;42399:790::-;42554:4;-1:-1:-1;;;;;42575:13:0;;14721:19;:23;42571:611;;42611:72;;-1:-1:-1;;;42611:72:0;;-1:-1:-1;;;;;42611:36:0;;;;;:72;;10529:10;;42662:4;;42668:7;;42677:5;;42611:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42611:72:0;;;;;;;;-1:-1:-1;;42611:72:0;;;;;;;;;;;;:::i;:::-;;;42607:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42857:6;:13;42874:1;42857:18;42853:259;;42907:40;;-1:-1:-1;;;42907:40:0;;;;;;;;;;;42853:259;43062:6;43056:13;43047:6;43043:2;43039:15;43032:38;42607:520;-1:-1:-1;;;;;;42734:55:0;-1:-1:-1;;;42734:55:0;;-1:-1:-1;42727:62:0;;42571:611;-1:-1:-1;43166:4:0;42571:611;42399:790;;;;;;:::o;47167:120::-;47246:33;47256:9;47267:11;47246:9;:33::i;46221:109::-;46281:13;46314:8;46307:15;;;;;:::i;22061:723::-;22117:13;22338:5;22347:1;22338:10;22334:53;;-1:-1:-1;;22365:10:0;;;;;;;;;;;;-1:-1:-1;;;22365:10:0;;;;;22061:723::o;22334:53::-;22412:5;22397:12;22453:78;22460:9;;22453:78;;22486:8;;;;:::i;:::-;;-1:-1:-1;22509:10:0;;-1:-1:-1;22517:2:0;22509:10;;:::i;:::-;;;22453:78;;;22541:19;22573:6;-1:-1:-1;;;;;22563:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22563:17:0;;22541:39;;22591:154;22598:10;;22591:154;;22625:11;22635:1;22625:11;;:::i;:::-;;-1:-1:-1;22694:10:0;22702:2;22694:5;:10;:::i;:::-;22681:24;;:2;:24;:::i;:::-;22668:39;;22651:6;22658;22651:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;22651:56:0;;;;;;;;-1:-1:-1;22722:11:0;22731:2;22722:11;;:::i;:::-;;;22591:154;;28275:207;28336:7;-1:-1:-1;;;;;28360:19:0;;28356:59;;28388:27;;-1:-1:-1;;;28388:27:0;;;;;;;;;;;28356:59;-1:-1:-1;;;;;;28441:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;28441:32:0;;-1:-1:-1;;;;;28441:32:0;;28275:207::o;34584:104::-;34653:27;34663:2;34667:8;34653:27;;;;;;;;;;;;35174:32;35180:2;35184:8;35194:5;35201:4;35612:20;35635:13;-1:-1:-1;;;;;35663:16:0;;35659:48;;35688:19;;-1:-1:-1;;;35688:19:0;;;;;;;;;;;35659:48;35722:8;35734:1;35722:13;35718:44;;35744:18;;-1:-1:-1;;;35744:18:0;;;;;;;;;;;35718:44;-1:-1:-1;;;;;36113:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36172:49:0;;-1:-1:-1;;;;;36113:44:0;;;;;;;36172:49;;;-1:-1:-1;;;;;36113:44:0;;;;;;36172:49;;;;;;;;;;;;;;;;36238:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;36288:66:0;;;;-1:-1:-1;;;36338:15:0;36288:66;;;;;;;;;;;36238:25;;36423:328;36443:8;36439:1;:12;36423:328;;;36482:38;;36507:12;;-1:-1:-1;;;;;36482:38:0;;;36499:1;;36482:38;;36499:1;;36482:38;36543:4;:68;;;;;36552:59;36583:1;36587:2;36591:12;36605:5;36552:22;:59::i;:::-;36551:60;36543:68;36539:164;;;36643:40;;-1:-1:-1;;;36643:40:0;;;;;;;;;;;36539:164;36721:14;;;;;36453:3;36423:328;;;-1:-1:-1;36767:13:0;:28;36817:60;33835:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:275;2891:2;2885:9;2956:2;2937:13;;-1:-1:-1;;2933:27:1;2921:40;;-1:-1:-1;;;;;2976:34:1;;3012:22;;;2973:62;2970:88;;;3038:18;;:::i;:::-;3074:2;3067:22;2820:275;;-1:-1:-1;2820:275:1:o;3100:407::-;3165:5;-1:-1:-1;;;;;3191:6:1;3188:30;3185:56;;;3221:18;;:::i;:::-;3259:57;3304:2;3283:15;;-1:-1:-1;;3279:29:1;3310:4;3275:40;3259:57;:::i;:::-;3250:66;;3339:6;3332:5;3325:21;3379:3;3370:6;3365:3;3361:16;3358:25;3355:45;;;3396:1;3393;3386:12;3355:45;3445:6;3440:3;3433:4;3426:5;3422:16;3409:43;3499:1;3492:4;3483:6;3476:5;3472:18;3468:29;3461:40;3100:407;;;;;:::o;3512:451::-;3581:6;3634:2;3622:9;3613:7;3609:23;3605:32;3602:52;;;3650:1;3647;3640:12;3602:52;3690:9;3677:23;-1:-1:-1;;;;;3715:6:1;3712:30;3709:50;;;3755:1;3752;3745:12;3709:50;3778:22;;3831:4;3823:13;;3819:27;-1:-1:-1;3809:55:1;;3860:1;3857;3850:12;3809:55;3883:74;3949:7;3944:2;3931:16;3926:2;3922;3918:11;3883:74;:::i;3968:186::-;4027:6;4080:2;4068:9;4059:7;4055:23;4051:32;4048:52;;;4096:1;4093;4086:12;4048:52;4119:29;4138:9;4119:29;:::i;4603:347::-;4668:6;4676;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;4768:29;4787:9;4768:29;:::i;:::-;4758:39;;4847:2;4836:9;4832:18;4819:32;4894:5;4887:13;4880:21;4873:5;4870:32;4860:60;;4916:1;4913;4906:12;4860:60;4939:5;4929:15;;;4603:347;;;;;:::o;4955:667::-;5050:6;5058;5066;5074;5127:3;5115:9;5106:7;5102:23;5098:33;5095:53;;;5144:1;5141;5134:12;5095:53;5167:29;5186:9;5167:29;:::i;:::-;5157:39;;5215:38;5249:2;5238:9;5234:18;5215:38;:::i;:::-;5205:48;;5300:2;5289:9;5285:18;5272:32;5262:42;;5355:2;5344:9;5340:18;5327:32;-1:-1:-1;;;;;5374:6:1;5371:30;5368:50;;;5414:1;5411;5404:12;5368:50;5437:22;;5490:4;5482:13;;5478:27;-1:-1:-1;5468:55:1;;5519:1;5516;5509:12;5468:55;5542:74;5608:7;5603:2;5590:16;5585:2;5581;5577:11;5542:74;:::i;:::-;5532:84;;;4955:667;;;;;;;:::o;5627:1022::-;5720:6;5728;5781:2;5769:9;5760:7;5756:23;5752:32;5749:52;;;5797:1;5794;5787:12;5749:52;5837:9;5824:23;-1:-1:-1;;;;;5907:2:1;5899:6;5896:14;5893:34;;;5923:1;5920;5913:12;5893:34;5961:6;5950:9;5946:22;5936:32;;6006:7;5999:4;5995:2;5991:13;5987:27;5977:55;;6028:1;6025;6018:12;5977:55;6064:2;6051:16;6086:4;6109:2;6105;6102:10;6099:36;;;6115:18;;:::i;:::-;6161:2;6158:1;6154:10;6144:20;;6184:28;6208:2;6204;6200:11;6184:28;:::i;:::-;6246:15;;;6316:11;;;6312:20;;;6277:12;;;;6344:19;;;6341:39;;;6376:1;6373;6366:12;6341:39;6400:11;;;;6420:148;6436:6;6431:3;6428:15;6420:148;;;6502:23;6521:3;6502:23;:::i;:::-;6490:36;;6453:12;;;;6546;;;;6420:148;;;6587:5;6624:18;;;;6611:32;;-1:-1:-1;;;;;;;5627:1022:1:o;6654:260::-;6722:6;6730;6783:2;6771:9;6762:7;6758:23;6754:32;6751:52;;;6799:1;6796;6789:12;6751:52;6822:29;6841:9;6822:29;:::i;:::-;6812:39;;6870:38;6904:2;6893:9;6889:18;6870:38;:::i;:::-;6860:48;;6654:260;;;;;:::o;6919:380::-;6998:1;6994:12;;;;7041;;;7062:61;;7116:4;7108:6;7104:17;7094:27;;7062:61;7169:2;7161:6;7158:14;7138:18;7135:38;7132:161;;7215:10;7210:3;7206:20;7203:1;7196:31;7250:4;7247:1;7240:15;7278:4;7275:1;7268:15;7132:161;;6919:380;;;:::o;7304:356::-;7506:2;7488:21;;;7525:18;;;7518:30;7584:34;7579:2;7564:18;;7557:62;7651:2;7636:18;;7304:356::o;7665:127::-;7726:10;7721:3;7717:20;7714:1;7707:31;7757:4;7754:1;7747:15;7781:4;7778:1;7771:15;7797:168;7837:7;7903:1;7899;7895:6;7891:14;7888:1;7885:21;7880:1;7873:9;7866:17;7862:45;7859:71;;;7910:18;;:::i;:::-;-1:-1:-1;7950:9:1;;7797:168::o;7970:128::-;8010:3;8041:1;8037:6;8034:1;8031:13;8028:39;;;8047:18;;:::i;:::-;-1:-1:-1;8083:9:1;;7970:128::o;8450:127::-;8511:10;8506:3;8502:20;8499:1;8492:31;8542:4;8539:1;8532:15;8566:4;8563:1;8556:15;8582:135;8621:3;8642:17;;;8639:43;;8662:18;;:::i;:::-;-1:-1:-1;8709:1:1;8698:13;;8582:135::o;9138:470::-;9317:3;9355:6;9349:13;9371:53;9417:6;9412:3;9405:4;9397:6;9393:17;9371:53;:::i;:::-;9487:13;;9446:16;;;;9509:57;9487:13;9446:16;9543:4;9531:17;;9509:57;:::i;:::-;9582:20;;9138:470;-1:-1:-1;;;;9138:470:1:o;10726:489::-;-1:-1:-1;;;;;10995:15:1;;;10977:34;;11047:15;;11042:2;11027:18;;11020:43;11094:2;11079:18;;11072:34;;;11142:3;11137:2;11122:18;;11115:31;;;10920:4;;11163:46;;11189:19;;11181:6;11163:46;:::i;:::-;11155:54;10726:489;-1:-1:-1;;;;;;10726:489:1:o;11220:249::-;11289:6;11342:2;11330:9;11321:7;11317:23;11313:32;11310:52;;;11358:1;11355;11348:12;11310:52;11390:9;11384:16;11409:30;11433:5;11409:30;:::i;11474:127::-;11535:10;11530:3;11526:20;11523:1;11516:31;11566:4;11563:1;11556:15;11590:4;11587:1;11580:15;11606:120;11646:1;11672;11662:35;;11677:18;;:::i;:::-;-1:-1:-1;11711:9:1;;11606:120::o;11731:125::-;11771:4;11799:1;11796;11793:8;11790:34;;;11804:18;;:::i;:::-;-1:-1:-1;11841:9:1;;11731:125::o;11861:112::-;11893:1;11919;11909:35;;11924:18;;:::i;:::-;-1:-1:-1;11958:9:1;;11861:112::o

Swarm Source

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