ETH Price: $2,222.83 (+5.82%)

Token

AnimeVerse NFT (AVNFT)
 

Overview

Max Total Supply

30 AVNFT

Holders

13

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
*jfu-09🏄🏾‍♂️.eth
Balance
2 AVNFT
0xa705290E488a2CA3CC36a1f674C6c267d5cBA2c7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

AnimeVerse Unique concept combining Anime, Crypto and NFTs. Providing utility as a token but also for its NFT collection. Generating passive income whilst also donating to society.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AnimeVerseNFT

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-12
*/

// 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/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// 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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/AnimeNFT.sol


pragma solidity ^0.8.7;






contract AnimeVerseNFT is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;
    
    uint256 public MAX_SUPPLY = 150;

    uint256 public COST = 0.1  ether;

    string private BASE_URI;
    string private UNREVEAL_URI;

    Counters.Counter private _COUNTER;

    bool public PAUSED = true;
    constructor() ERC721("AnimeVerse NFT", "AVNFT") {}

    function togglePause() public onlyOwner {
        PAUSED = !PAUSED;
    }

    function setUnevealURI(string memory unrevealURI) external onlyOwner {
        UNREVEAL_URI = unrevealURI;
    }

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

    function setMintPrice(uint256 price) external onlyOwner {
        COST = price;
    }

    function setMaxLimit(uint256 maxLimit) external onlyOwner {
        MAX_SUPPLY = maxLimit;
    }

    function airdrop(address to, uint256 numberOfTokens) external onlyOwner {
        require(_COUNTER.current() + numberOfTokens < MAX_SUPPLY, "Purchase would exceed MAX_SUPPLY");
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _COUNTER.current();
            _safeMint(to, tokenId);
            _COUNTER.increment();
        }
    }

    function mint(uint256 numberOfTokens) external payable {
        require(!PAUSED, "Sale is not opened");

        require(_COUNTER.current() + numberOfTokens < MAX_SUPPLY,"Purchase would exceed MAX_SUPPLY");

        require(COST * numberOfTokens <= msg.value,"ETH amount is not sufficient");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _COUNTER.current();
            _safeMint(msg.sender, tokenId);
            _COUNTER.increment();
        }
    }

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

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxLimit","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealURI","type":"string"}],"name":"setUnevealURI","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":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526096600b5567016345785d8a0000600c556010805460ff191660011790553480156200002f57600080fd5b50604080518082018252600e81526d105b9a5b5955995c9cd94813919560921b602080830191825283518085019094526005845264105593919560da1b908401528151919291620000839160009162000112565b5080516200009990600190602084019062000112565b505050620000b6620000b0620000bc60201b60201c565b620000c0565b620001f4565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012090620001b8565b90600052602060002090601f0160209004810192826200014457600085556200018f565b82601f106200015f57805160ff19168380011785556200018f565b828001600101855582156200018f579182015b828111156200018f57825182559160200191906001019062000172565b506200019d929150620001a1565b5090565b5b808211156200019d5760008155600101620001a2565b600181811c90821680620001cd57607f821691505b602082108103620001ee57634e487b7160e01b600052602260045260246000fd5b50919050565b61221180620002046000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b88d4fde11610095578063c87b56dd11610064578063c87b56dd146104ed578063e985e9c51461050d578063f2fde38b14610556578063f4a0a5281461057657600080fd5b8063b88d4fde14610482578063bf8bcee4146104a2578063bf8fbbd2146104c2578063c4ae3168146104d857600080fd5b806395d89b41116100d157806395d89b4114610420578063a0712d6814610435578063a22cb46514610448578063a9aad58c1461046857600080fd5b8063715018a6146103cd5780638ba4cc3c146103e25780638da5cb5b1461040257600080fd5b806332cb6b0c1161016f5780634f6ccce71161013e5780634f6ccce71461034d57806355f804b31461036d5780636352211e1461038d57806370a08231146103ad57600080fd5b806332cb6b0c146102e25780633ccfd60b146102f857806342842e0e1461030d5780634cffc28e1461032d57600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611bc1565b610596565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105c1565b6040516101fe9190611c3d565b34801561023557600080fd5b50610249610244366004611c50565b610653565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611c85565b6106ed565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611caf565b610802565b3480156102ce57600080fd5b506102946102dd366004611c85565b610833565b3480156102ee57600080fd5b50610294600b5481565b34801561030457600080fd5b506102816108c9565b34801561031957600080fd5b50610281610328366004611caf565b610926565b34801561033957600080fd5b50610281610348366004611d77565b610941565b34801561035957600080fd5b50610294610368366004611c50565b61097e565b34801561037957600080fd5b50610281610388366004611d77565b610a11565b34801561039957600080fd5b506102496103a8366004611c50565b610a4e565b3480156103b957600080fd5b506102946103c8366004611dc0565b610ac5565b3480156103d957600080fd5b50610281610b4c565b3480156103ee57600080fd5b506102816103fd366004611c85565b610b82565b34801561040e57600080fd5b50600a546001600160a01b0316610249565b34801561042c57600080fd5b5061021c610c53565b610281610443366004611c50565b610c62565b34801561045457600080fd5b50610281610463366004611ddb565b610dae565b34801561047457600080fd5b506010546101f29060ff1681565b34801561048e57600080fd5b5061028161049d366004611e17565b610db9565b3480156104ae57600080fd5b506102816104bd366004611c50565b610df1565b3480156104ce57600080fd5b50610294600c5481565b3480156104e457600080fd5b50610281610e20565b3480156104f957600080fd5b5061021c610508366004611c50565b610e5e565b34801561051957600080fd5b506101f2610528366004611e93565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056257600080fd5b50610281610571366004611dc0565b610fb4565b34801561058257600080fd5b50610281610591366004611c50565b61104f565b60006001600160e01b0319821663780e9d6360e01b14806105bb57506105bb8261107e565b92915050565b6060600080546105d090611ec6565b80601f01602080910402602001604051908101604052809291908181526020018280546105fc90611ec6565b80156106495780601f1061061e57610100808354040283529160200191610649565b820191906000526020600020905b81548152906001019060200180831161062c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106d15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f882610a4e565b9050806001600160a01b0316836001600160a01b0316036107655760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c8565b336001600160a01b038216148061078157506107818133610528565b6107f35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c8565b6107fd83836110ce565b505050565b61080c338261113c565b6108285760405162461bcd60e51b81526004016106c890611f00565b6107fd838383611233565b600061083e83610ac5565b82106108a05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106c8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108f35760405162461bcd60e51b81526004016106c890611f51565b6040514790339082156108fc029083906000818181858888f19350505050158015610922573d6000803e3d6000fd5b5050565b6107fd83838360405180602001604052806000815250610db9565b600a546001600160a01b0316331461096b5760405162461bcd60e51b81526004016106c890611f51565b805161092290600e906020840190611b12565b600061098960085490565b82106109ec5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106c8565b600882815481106109ff576109ff611f86565b90600052602060002001549050919050565b600a546001600160a01b03163314610a3b5760405162461bcd60e51b81526004016106c890611f51565b805161092290600d906020840190611b12565b6000818152600260205260408120546001600160a01b0316806105bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c8565b60006001600160a01b038216610b305760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c8565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b765760405162461bcd60e51b81526004016106c890611f51565b610b8060006113da565b565b600a546001600160a01b03163314610bac5760405162461bcd60e51b81526004016106c890611f51565b600b5481610bb9600f5490565b610bc39190611fb2565b10610c105760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564204d41585f535550504c5960448201526064016106c8565b60005b818110156107fd576000610c26600f5490565b9050610c32848261142c565b610c40600f80546001019055565b5080610c4b81611fca565b915050610c13565b6060600180546105d090611ec6565b60105460ff1615610caa5760405162461bcd60e51b815260206004820152601260248201527114d85b19481a5cc81b9bdd081bdc195b995960721b60448201526064016106c8565b600b5481610cb7600f5490565b610cc19190611fb2565b10610d0e5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564204d41585f535550504c5960448201526064016106c8565b3481600c54610d1d9190611fe3565b1115610d6b5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e740000000060448201526064016106c8565b60005b81811015610922576000610d81600f5490565b9050610d8d338261142c565b610d9b600f80546001019055565b5080610da681611fca565b915050610d6e565b610922338383611446565b610dc3338361113c565b610ddf5760405162461bcd60e51b81526004016106c890611f00565b610deb84848484611514565b50505050565b600a546001600160a01b03163314610e1b5760405162461bcd60e51b81526004016106c890611f51565b600b55565b600a546001600160a01b03163314610e4a5760405162461bcd60e51b81526004016106c890611f51565b6010805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b0316610edd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c8565b6000600d8054610eec90611ec6565b905011610f8357600e8054610f0090611ec6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2c90611ec6565b8015610f795780601f10610f4e57610100808354040283529160200191610f79565b820191906000526020600020905b815481529060010190602001808311610f5c57829003601f168201915b50505050506105bb565b600d610f8e83611547565b604051602001610f9f92919061201e565b60405160208183030381529060405292915050565b600a546001600160a01b03163314610fde5760405162461bcd60e51b81526004016106c890611f51565b6001600160a01b0381166110435760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c8565b61104c816113da565b50565b600a546001600160a01b031633146110795760405162461bcd60e51b81526004016106c890611f51565b600c55565b60006001600160e01b031982166380ac58cd60e01b14806110af57506001600160e01b03198216635b5e139f60e01b145b806105bb57506301ffc9a760e01b6001600160e01b03198316146105bb565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110382610a4e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c8565b60006111c083610a4e565b9050806001600160a01b0316846001600160a01b0316148061120757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061122b5750836001600160a01b031661122084610653565b6001600160a01b0316145b949350505050565b826001600160a01b031661124682610a4e565b6001600160a01b0316146112aa5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106c8565b6001600160a01b03821661130c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c8565b611317838383611648565b6113226000826110ce565b6001600160a01b038316600090815260036020526040812080546001929061134b9084906120c4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611379908490611fb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610922828260405180602001604052806000815250611700565b816001600160a01b0316836001600160a01b0316036114a75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61151f848484611233565b61152b84848484611733565b610deb5760405162461bcd60e51b81526004016106c8906120db565b60608160000361156e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611598578061158281611fca565b91506115919050600a83612143565b9150611572565b60008167ffffffffffffffff8111156115b3576115b3611ceb565b6040519080825280601f01601f1916602001820160405280156115dd576020820181803683370190505b5090505b841561122b576115f26001836120c4565b91506115ff600a86612157565b61160a906030611fb2565b60f81b81838151811061161f5761161f611f86565b60200101906001600160f81b031916908160001a905350611641600a86612143565b94506115e1565b6001600160a01b0383166116a35761169e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116c6565b816001600160a01b0316836001600160a01b0316146116c6576116c68382611834565b6001600160a01b0382166116dd576107fd816118d1565b826001600160a01b0316826001600160a01b0316146107fd576107fd8282611980565b61170a83836119c4565b6117176000848484611733565b6107fd5760405162461bcd60e51b81526004016106c8906120db565b60006001600160a01b0384163b1561182957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061177790339089908890889060040161216b565b6020604051808303816000875af19250505080156117b2575060408051601f3d908101601f191682019092526117af918101906121a8565b60015b61180f573d8080156117e0576040519150601f19603f3d011682016040523d82523d6000602084013e6117e5565b606091505b5080516000036118075760405162461bcd60e51b81526004016106c8906120db565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061122b565b506001949350505050565b6000600161184184610ac5565b61184b91906120c4565b60008381526007602052604090205490915080821461189e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118e3906001906120c4565b6000838152600960205260408120546008805493945090928490811061190b5761190b611f86565b90600052602060002001549050806008838154811061192c5761192c611f86565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611964576119646121c5565b6001900381819060005260206000200160009055905550505050565b600061198b83610ac5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a1a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c8565b6000818152600260205260409020546001600160a01b031615611a7f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c8565b611a8b60008383611648565b6001600160a01b0382166000908152600360205260408120805460019290611ab4908490611fb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b1e90611ec6565b90600052602060002090601f016020900481019282611b405760008555611b86565b82601f10611b5957805160ff1916838001178555611b86565b82800160010185558215611b86579182015b82811115611b86578251825591602001919060010190611b6b565b50611b92929150611b96565b5090565b5b80821115611b925760008155600101611b97565b6001600160e01b03198116811461104c57600080fd5b600060208284031215611bd357600080fd5b8135611bde81611bab565b9392505050565b60005b83811015611c00578181015183820152602001611be8565b83811115610deb5750506000910152565b60008151808452611c29816020860160208601611be5565b601f01601f19169290920160200192915050565b602081526000611bde6020830184611c11565b600060208284031215611c6257600080fd5b5035919050565b80356001600160a01b0381168114611c8057600080fd5b919050565b60008060408385031215611c9857600080fd5b611ca183611c69565b946020939093013593505050565b600080600060608486031215611cc457600080fd5b611ccd84611c69565b9250611cdb60208501611c69565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d1c57611d1c611ceb565b604051601f8501601f19908116603f01168101908282118183101715611d4457611d44611ceb565b81604052809350858152868686011115611d5d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d8957600080fd5b813567ffffffffffffffff811115611da057600080fd5b8201601f81018413611db157600080fd5b61122b84823560208401611d01565b600060208284031215611dd257600080fd5b611bde82611c69565b60008060408385031215611dee57600080fd5b611df783611c69565b915060208301358015158114611e0c57600080fd5b809150509250929050565b60008060008060808587031215611e2d57600080fd5b611e3685611c69565b9350611e4460208601611c69565b925060408501359150606085013567ffffffffffffffff811115611e6757600080fd5b8501601f81018713611e7857600080fd5b611e8787823560208401611d01565b91505092959194509250565b60008060408385031215611ea657600080fd5b611eaf83611c69565b9150611ebd60208401611c69565b90509250929050565b600181811c90821680611eda57607f821691505b602082108103611efa57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115611fc557611fc5611f9c565b500190565b600060018201611fdc57611fdc611f9c565b5060010190565b6000816000190483118215151615611ffd57611ffd611f9c565b500290565b60008151612014818560208601611be5565b9290920192915050565b600080845481600182811c91508083168061203a57607f831692505b6020808410820361205957634e487b7160e01b86526022600452602486fd5b81801561206d576001811461207e576120ab565b60ff198616895284890196506120ab565b60008b81526020902060005b868110156120a35781548b82015290850190830161208a565b505084890196505b5050505050506120bb8185612002565b95945050505050565b6000828210156120d6576120d6611f9c565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826121525761215261212d565b500490565b6000826121665761216661212d565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061219e90830184611c11565b9695505050505050565b6000602082840312156121ba57600080fd5b8151611bde81611bab565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220260d8e6465ab9a7d21b99ba8fbeea8270916a9940cacedbfe68f79bd82756d6964736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b88d4fde11610095578063c87b56dd11610064578063c87b56dd146104ed578063e985e9c51461050d578063f2fde38b14610556578063f4a0a5281461057657600080fd5b8063b88d4fde14610482578063bf8bcee4146104a2578063bf8fbbd2146104c2578063c4ae3168146104d857600080fd5b806395d89b41116100d157806395d89b4114610420578063a0712d6814610435578063a22cb46514610448578063a9aad58c1461046857600080fd5b8063715018a6146103cd5780638ba4cc3c146103e25780638da5cb5b1461040257600080fd5b806332cb6b0c1161016f5780634f6ccce71161013e5780634f6ccce71461034d57806355f804b31461036d5780636352211e1461038d57806370a08231146103ad57600080fd5b806332cb6b0c146102e25780633ccfd60b146102f857806342842e0e1461030d5780634cffc28e1461032d57600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611bc1565b610596565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105c1565b6040516101fe9190611c3d565b34801561023557600080fd5b50610249610244366004611c50565b610653565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611c85565b6106ed565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611caf565b610802565b3480156102ce57600080fd5b506102946102dd366004611c85565b610833565b3480156102ee57600080fd5b50610294600b5481565b34801561030457600080fd5b506102816108c9565b34801561031957600080fd5b50610281610328366004611caf565b610926565b34801561033957600080fd5b50610281610348366004611d77565b610941565b34801561035957600080fd5b50610294610368366004611c50565b61097e565b34801561037957600080fd5b50610281610388366004611d77565b610a11565b34801561039957600080fd5b506102496103a8366004611c50565b610a4e565b3480156103b957600080fd5b506102946103c8366004611dc0565b610ac5565b3480156103d957600080fd5b50610281610b4c565b3480156103ee57600080fd5b506102816103fd366004611c85565b610b82565b34801561040e57600080fd5b50600a546001600160a01b0316610249565b34801561042c57600080fd5b5061021c610c53565b610281610443366004611c50565b610c62565b34801561045457600080fd5b50610281610463366004611ddb565b610dae565b34801561047457600080fd5b506010546101f29060ff1681565b34801561048e57600080fd5b5061028161049d366004611e17565b610db9565b3480156104ae57600080fd5b506102816104bd366004611c50565b610df1565b3480156104ce57600080fd5b50610294600c5481565b3480156104e457600080fd5b50610281610e20565b3480156104f957600080fd5b5061021c610508366004611c50565b610e5e565b34801561051957600080fd5b506101f2610528366004611e93565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056257600080fd5b50610281610571366004611dc0565b610fb4565b34801561058257600080fd5b50610281610591366004611c50565b61104f565b60006001600160e01b0319821663780e9d6360e01b14806105bb57506105bb8261107e565b92915050565b6060600080546105d090611ec6565b80601f01602080910402602001604051908101604052809291908181526020018280546105fc90611ec6565b80156106495780601f1061061e57610100808354040283529160200191610649565b820191906000526020600020905b81548152906001019060200180831161062c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106d15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f882610a4e565b9050806001600160a01b0316836001600160a01b0316036107655760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c8565b336001600160a01b038216148061078157506107818133610528565b6107f35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c8565b6107fd83836110ce565b505050565b61080c338261113c565b6108285760405162461bcd60e51b81526004016106c890611f00565b6107fd838383611233565b600061083e83610ac5565b82106108a05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106c8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108f35760405162461bcd60e51b81526004016106c890611f51565b6040514790339082156108fc029083906000818181858888f19350505050158015610922573d6000803e3d6000fd5b5050565b6107fd83838360405180602001604052806000815250610db9565b600a546001600160a01b0316331461096b5760405162461bcd60e51b81526004016106c890611f51565b805161092290600e906020840190611b12565b600061098960085490565b82106109ec5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106c8565b600882815481106109ff576109ff611f86565b90600052602060002001549050919050565b600a546001600160a01b03163314610a3b5760405162461bcd60e51b81526004016106c890611f51565b805161092290600d906020840190611b12565b6000818152600260205260408120546001600160a01b0316806105bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c8565b60006001600160a01b038216610b305760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c8565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b765760405162461bcd60e51b81526004016106c890611f51565b610b8060006113da565b565b600a546001600160a01b03163314610bac5760405162461bcd60e51b81526004016106c890611f51565b600b5481610bb9600f5490565b610bc39190611fb2565b10610c105760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564204d41585f535550504c5960448201526064016106c8565b60005b818110156107fd576000610c26600f5490565b9050610c32848261142c565b610c40600f80546001019055565b5080610c4b81611fca565b915050610c13565b6060600180546105d090611ec6565b60105460ff1615610caa5760405162461bcd60e51b815260206004820152601260248201527114d85b19481a5cc81b9bdd081bdc195b995960721b60448201526064016106c8565b600b5481610cb7600f5490565b610cc19190611fb2565b10610d0e5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564204d41585f535550504c5960448201526064016106c8565b3481600c54610d1d9190611fe3565b1115610d6b5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e740000000060448201526064016106c8565b60005b81811015610922576000610d81600f5490565b9050610d8d338261142c565b610d9b600f80546001019055565b5080610da681611fca565b915050610d6e565b610922338383611446565b610dc3338361113c565b610ddf5760405162461bcd60e51b81526004016106c890611f00565b610deb84848484611514565b50505050565b600a546001600160a01b03163314610e1b5760405162461bcd60e51b81526004016106c890611f51565b600b55565b600a546001600160a01b03163314610e4a5760405162461bcd60e51b81526004016106c890611f51565b6010805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b0316610edd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c8565b6000600d8054610eec90611ec6565b905011610f8357600e8054610f0090611ec6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2c90611ec6565b8015610f795780601f10610f4e57610100808354040283529160200191610f79565b820191906000526020600020905b815481529060010190602001808311610f5c57829003601f168201915b50505050506105bb565b600d610f8e83611547565b604051602001610f9f92919061201e565b60405160208183030381529060405292915050565b600a546001600160a01b03163314610fde5760405162461bcd60e51b81526004016106c890611f51565b6001600160a01b0381166110435760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c8565b61104c816113da565b50565b600a546001600160a01b031633146110795760405162461bcd60e51b81526004016106c890611f51565b600c55565b60006001600160e01b031982166380ac58cd60e01b14806110af57506001600160e01b03198216635b5e139f60e01b145b806105bb57506301ffc9a760e01b6001600160e01b03198316146105bb565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110382610a4e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c8565b60006111c083610a4e565b9050806001600160a01b0316846001600160a01b0316148061120757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061122b5750836001600160a01b031661122084610653565b6001600160a01b0316145b949350505050565b826001600160a01b031661124682610a4e565b6001600160a01b0316146112aa5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106c8565b6001600160a01b03821661130c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c8565b611317838383611648565b6113226000826110ce565b6001600160a01b038316600090815260036020526040812080546001929061134b9084906120c4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611379908490611fb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610922828260405180602001604052806000815250611700565b816001600160a01b0316836001600160a01b0316036114a75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61151f848484611233565b61152b84848484611733565b610deb5760405162461bcd60e51b81526004016106c8906120db565b60608160000361156e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611598578061158281611fca565b91506115919050600a83612143565b9150611572565b60008167ffffffffffffffff8111156115b3576115b3611ceb565b6040519080825280601f01601f1916602001820160405280156115dd576020820181803683370190505b5090505b841561122b576115f26001836120c4565b91506115ff600a86612157565b61160a906030611fb2565b60f81b81838151811061161f5761161f611f86565b60200101906001600160f81b031916908160001a905350611641600a86612143565b94506115e1565b6001600160a01b0383166116a35761169e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116c6565b816001600160a01b0316836001600160a01b0316146116c6576116c68382611834565b6001600160a01b0382166116dd576107fd816118d1565b826001600160a01b0316826001600160a01b0316146107fd576107fd8282611980565b61170a83836119c4565b6117176000848484611733565b6107fd5760405162461bcd60e51b81526004016106c8906120db565b60006001600160a01b0384163b1561182957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061177790339089908890889060040161216b565b6020604051808303816000875af19250505080156117b2575060408051601f3d908101601f191682019092526117af918101906121a8565b60015b61180f573d8080156117e0576040519150601f19603f3d011682016040523d82523d6000602084013e6117e5565b606091505b5080516000036118075760405162461bcd60e51b81526004016106c8906120db565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061122b565b506001949350505050565b6000600161184184610ac5565b61184b91906120c4565b60008381526007602052604090205490915080821461189e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118e3906001906120c4565b6000838152600960205260408120546008805493945090928490811061190b5761190b611f86565b90600052602060002001549050806008838154811061192c5761192c611f86565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611964576119646121c5565b6001900381819060005260206000200160009055905550505050565b600061198b83610ac5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a1a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c8565b6000818152600260205260409020546001600160a01b031615611a7f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c8565b611a8b60008383611648565b6001600160a01b0382166000908152600360205260408120805460019290611ab4908490611fb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b1e90611ec6565b90600052602060002090601f016020900481019282611b405760008555611b86565b82601f10611b5957805160ff1916838001178555611b86565b82800160010185558215611b86579182015b82811115611b86578251825591602001919060010190611b6b565b50611b92929150611b96565b5090565b5b80821115611b925760008155600101611b97565b6001600160e01b03198116811461104c57600080fd5b600060208284031215611bd357600080fd5b8135611bde81611bab565b9392505050565b60005b83811015611c00578181015183820152602001611be8565b83811115610deb5750506000910152565b60008151808452611c29816020860160208601611be5565b601f01601f19169290920160200192915050565b602081526000611bde6020830184611c11565b600060208284031215611c6257600080fd5b5035919050565b80356001600160a01b0381168114611c8057600080fd5b919050565b60008060408385031215611c9857600080fd5b611ca183611c69565b946020939093013593505050565b600080600060608486031215611cc457600080fd5b611ccd84611c69565b9250611cdb60208501611c69565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d1c57611d1c611ceb565b604051601f8501601f19908116603f01168101908282118183101715611d4457611d44611ceb565b81604052809350858152868686011115611d5d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d8957600080fd5b813567ffffffffffffffff811115611da057600080fd5b8201601f81018413611db157600080fd5b61122b84823560208401611d01565b600060208284031215611dd257600080fd5b611bde82611c69565b60008060408385031215611dee57600080fd5b611df783611c69565b915060208301358015158114611e0c57600080fd5b809150509250929050565b60008060008060808587031215611e2d57600080fd5b611e3685611c69565b9350611e4460208601611c69565b925060408501359150606085013567ffffffffffffffff811115611e6757600080fd5b8501601f81018713611e7857600080fd5b611e8787823560208401611d01565b91505092959194509250565b60008060408385031215611ea657600080fd5b611eaf83611c69565b9150611ebd60208401611c69565b90509250929050565b600181811c90821680611eda57607f821691505b602082108103611efa57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115611fc557611fc5611f9c565b500190565b600060018201611fdc57611fdc611f9c565b5060010190565b6000816000190483118215151615611ffd57611ffd611f9c565b500290565b60008151612014818560208601611be5565b9290920192915050565b600080845481600182811c91508083168061203a57607f831692505b6020808410820361205957634e487b7160e01b86526022600452602486fd5b81801561206d576001811461207e576120ab565b60ff198616895284890196506120ab565b60008b81526020902060005b868110156120a35781548b82015290850190830161208a565b505084890196505b5050505050506120bb8185612002565b95945050505050565b6000828210156120d6576120d6611f9c565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826121525761215261212d565b500490565b6000826121665761216661212d565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061219e90830184611c11565b9695505050505050565b6000602082840312156121ba57600080fd5b8151611bde81611bab565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220260d8e6465ab9a7d21b99ba8fbeea8270916a9940cacedbfe68f79bd82756d6964736f6c634300080e0033

Deployed Bytecode Sourcemap

47040:2282:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40818:224;;;;;;;;;;-1:-1:-1;40818:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;40818:224:0;;;;;;;;27637:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29197:221::-;;;;;;;;;;-1:-1:-1;29197:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;29197:221:0;1550:203:1;28720:411:0;;;;;;;;;;-1:-1:-1;28720:411:0;;;;;:::i;:::-;;:::i;:::-;;41458:113;;;;;;;;;;-1:-1:-1;41546:10:0;:17;41458:113;;;2341:25:1;;;2329:2;2314:18;41458:113:0;2195:177:1;29947:339:0;;;;;;;;;;-1:-1:-1;29947:339:0;;;;;:::i;:::-;;:::i;41126:256::-;;;;;;;;;;-1:-1:-1;41126:256:0;;;;;:::i;:::-;;:::i;47179:31::-;;;;;;;;;;;;;;;;49172:147;;;;;;;;;;;;;:::i;30357:185::-;;;;;;;;;;-1:-1:-1;30357:185:0;;;;;:::i;:::-;;:::i;47541:114::-;;;;;;;;;;-1:-1:-1;47541:114:0;;;;;:::i;:::-;;:::i;41648:233::-;;;;;;;;;;-1:-1:-1;41648:233:0;;;;;:::i;:::-;;:::i;47663:99::-;;;;;;;;;;-1:-1:-1;47663:99:0;;;;;:::i;:::-;;:::i;27331:239::-;;;;;;;;;;-1:-1:-1;27331:239:0;;;;;:::i;:::-;;:::i;27061:208::-;;;;;;;;;;-1:-1:-1;27061:208:0;;;;;:::i;:::-;;:::i;12376:103::-;;;;;;;;;;;;;:::i;47971:374::-;;;;;;;;;;-1:-1:-1;47971:374:0;;;;;:::i;:::-;;:::i;11725:87::-;;;;;;;;;;-1:-1:-1;11798:6:0;;-1:-1:-1;;;;;11798:6:0;11725:87;;27806:104;;;;;;;;;;;;;:::i;48353:504::-;;;;;;:::i;:::-;;:::i;29490:155::-;;;;;;;;;;-1:-1:-1;29490:155:0;;;;;:::i;:::-;;:::i;47368:25::-;;;;;;;;;;-1:-1:-1;47368:25:0;;;;;;;;30613:328;;;;;;;;;;-1:-1:-1;30613:328:0;;;;;:::i;:::-;;:::i;47865:98::-;;;;;;;;;;-1:-1:-1;47865:98:0;;;;;:::i;:::-;;:::i;47219:32::-;;;;;;;;;;;;;;;;47458:75;;;;;;;;;;;;;:::i;48865:299::-;;;;;;;;;;-1:-1:-1;48865:299:0;;;;;:::i;:::-;;:::i;29716:164::-;;;;;;;;;;-1:-1:-1;29716:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29837:25:0;;;29813:4;29837:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29716:164;12634:201;;;;;;;;;;-1:-1:-1;12634:201:0;;;;;:::i;:::-;;:::i;47770:87::-;;;;;;;;;;-1:-1:-1;47770:87:0;;;;;:::i;:::-;;:::i;40818:224::-;40920:4;-1:-1:-1;;;;;;40944:50:0;;-1:-1:-1;;;40944:50:0;;:90;;;40998:36;41022:11;40998:23;:36::i;:::-;40937:97;40818:224;-1:-1:-1;;40818:224:0:o;27637:100::-;27691:13;27724:5;27717:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27637:100;:::o;29197:221::-;29273:7;32540:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32540:16:0;29293:73;;;;-1:-1:-1;;;29293:73:0;;6002:2:1;29293:73:0;;;5984:21:1;6041:2;6021:18;;;6014:30;6080:34;6060:18;;;6053:62;-1:-1:-1;;;6131:18:1;;;6124:42;6183:19;;29293:73:0;;;;;;;;;-1:-1:-1;29386:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29386:24:0;;29197:221::o;28720:411::-;28801:13;28817:23;28832:7;28817:14;:23::i;:::-;28801:39;;28865:5;-1:-1:-1;;;;;28859:11:0;:2;-1:-1:-1;;;;;28859:11:0;;28851:57;;;;-1:-1:-1;;;28851:57:0;;6415:2:1;28851:57:0;;;6397:21:1;6454:2;6434:18;;;6427:30;6493:34;6473:18;;;6466:62;-1:-1:-1;;;6544:18:1;;;6537:31;6585:19;;28851:57:0;6213:397:1;28851:57:0;10529:10;-1:-1:-1;;;;;28943:21:0;;;;:62;;-1:-1:-1;28968:37:0;28985:5;10529:10;29716:164;:::i;28968:37::-;28921:168;;;;-1:-1:-1;;;28921:168:0;;6817:2:1;28921:168:0;;;6799:21:1;6856:2;6836:18;;;6829:30;6895:34;6875:18;;;6868:62;6966:26;6946:18;;;6939:54;7010:19;;28921:168:0;6615:420:1;28921:168:0;29102:21;29111:2;29115:7;29102:8;:21::i;:::-;28790:341;28720:411;;:::o;29947:339::-;30142:41;10529:10;30175:7;30142:18;:41::i;:::-;30134:103;;;;-1:-1:-1;;;30134:103:0;;;;;;;:::i;:::-;30250:28;30260:4;30266:2;30270:7;30250:9;:28::i;41126:256::-;41223:7;41259:23;41276:5;41259:16;:23::i;:::-;41251:5;:31;41243:87;;;;-1:-1:-1;;;41243:87:0;;7660:2:1;41243:87:0;;;7642:21:1;7699:2;7679:18;;;7672:30;7738:34;7718:18;;;7711:62;-1:-1:-1;;;7789:18:1;;;7782:41;7840:19;;41243:87:0;7458:407:1;41243:87:0;-1:-1:-1;;;;;;41348:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41126:256::o;49172:147::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;49274:37:::1;::::0;49240:21:::1;::::0;49282:10:::1;::::0;49274:37;::::1;;;::::0;49240:21;;49222:15:::1;49274:37:::0;49222:15;49274:37;49240:21;49282:10;49274:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49211:108;49172:147::o:0;30357:185::-;30495:39;30512:4;30518:2;30522:7;30495:39;;;;;;;;;;;;:16;:39::i;47541:114::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;47621:26;;::::1;::::0;:12:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;41648:233::-:0;41723:7;41759:30;41546:10;:17;;41458:113;41759:30;41751:5;:38;41743:95;;;;-1:-1:-1;;;41743:95:0;;8433:2:1;41743:95:0;;;8415:21:1;8472:2;8452:18;;;8445:30;8511:34;8491:18;;;8484:62;-1:-1:-1;;;8562:18:1;;;8555:42;8614:19;;41743:95:0;8231:408:1;41743:95:0;41856:10;41867:5;41856:17;;;;;;;;:::i;:::-;;;;;;;;;41849:24;;41648:233;;;:::o;47663:99::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;47736:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;27331:239::-:0;27403:7;27439:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27439:16:0;;27466:73;;;;-1:-1:-1;;;27466:73:0;;8978:2:1;27466:73:0;;;8960:21:1;9017:2;8997:18;;;8990:30;9056:34;9036:18;;;9029:62;-1:-1:-1;;;9107:18:1;;;9100:39;9156:19;;27466:73:0;8776:405:1;27061:208:0;27133:7;-1:-1:-1;;;;;27161:19:0;;27153:74;;;;-1:-1:-1;;;27153:74:0;;9388:2:1;27153:74:0;;;9370:21:1;9427:2;9407:18;;;9400:30;9466:34;9446:18;;;9439:62;-1:-1:-1;;;9517:18:1;;;9510:40;9567:19;;27153:74:0;9186:406:1;27153:74:0;-1:-1:-1;;;;;;27245:16:0;;;;;:9;:16;;;;;;;27061:208::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;47971:374::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;48100:10:::1;;48083:14;48062:18;:8;14157:14:::0;;14065:114;48062:18:::1;:35;;;;:::i;:::-;:48;48054:93;;;::::0;-1:-1:-1;;;48054:93:0;;10064:2:1;48054:93:0::1;::::0;::::1;10046:21:1::0;;;10083:18;;;10076:30;10142:34;10122:18;;;10115:62;10194:18;;48054:93:0::1;9862:356:1::0;48054:93:0::1;48163:9;48158:180;48182:14;48178:1;:18;48158:180;;;48218:15;48236:18;:8;14157:14:::0;;14065:114;48236:18:::1;48218:36;;48269:22;48279:2;48283:7;48269:9;:22::i;:::-;48306:20;:8;14276:19:::0;;14294:1;14276:19;;;14187:127;48306:20:::1;-1:-1:-1::0;48198:3:0;::::1;::::0;::::1;:::i;:::-;;;;48158:180;;27806:104:::0;27862:13;27895:7;27888:14;;;;;:::i;48353:504::-;48428:6;;;;48427:7;48419:38;;;;-1:-1:-1;;;48419:38:0;;10565:2:1;48419:38:0;;;10547:21:1;10604:2;10584:18;;;10577:30;-1:-1:-1;;;10623:18:1;;;10616:48;10681:18;;48419:38:0;10363:342:1;48419:38:0;48516:10;;48499:14;48478:18;:8;14157:14;;14065:114;48478:18;:35;;;;:::i;:::-;:48;48470:92;;;;-1:-1:-1;;;48470:92:0;;10064:2:1;48470:92:0;;;10046:21:1;;;10083:18;;;10076:30;10142:34;10122:18;;;10115:62;10194:18;;48470:92:0;9862:356:1;48470:92:0;48608:9;48590:14;48583:4;;:21;;;;:::i;:::-;:34;;48575:74;;;;-1:-1:-1;;;48575:74:0;;11085:2:1;48575:74:0;;;11067:21:1;11124:2;11104:18;;;11097:30;11163;11143:18;;;11136:58;11211:18;;48575:74:0;10883:352:1;48575:74:0;48667:9;48662:188;48686:14;48682:1;:18;48662:188;;;48722:15;48740:18;:8;14157:14;;14065:114;48740:18;48722:36;;48773:30;48783:10;48795:7;48773:9;:30::i;:::-;48818:20;:8;14276:19;;14294:1;14276:19;;;14187:127;48818:20;-1:-1:-1;48702:3:0;;;;:::i;:::-;;;;48662:188;;29490:155;29585:52;10529:10;29618:8;29628;29585:18;:52::i;30613:328::-;30788:41;10529:10;30821:7;30788:18;:41::i;:::-;30780:103;;;;-1:-1:-1;;;30780:103:0;;;;;;;:::i;:::-;30894:39;30908:4;30914:2;30918:7;30927:5;30894:13;:39::i;:::-;30613:328;;;;:::o;47865:98::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;47934:10:::1;:21:::0;47865:98::o;47458:75::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;47519:6:::1;::::0;;-1:-1:-1;;47509:16:0;::::1;47519:6;::::0;;::::1;47518:7;47509:16;::::0;;47458:75::o;48865:299::-;32516:4;32540:16;;;:7;:16;;;;;;48938:13;;-1:-1:-1;;;;;32540:16:0;48964:76;;;;-1:-1:-1;;;48964:76:0;;11442:2:1;48964:76:0;;;11424:21:1;11481:2;11461:18;;;11454:30;11520:34;11500:18;;;11493:62;-1:-1:-1;;;11571:18:1;;;11564:45;11626:19;;48964:76:0;11240:411:1;48964:76:0;49083:1;49064:8;49058:22;;;;;:::i;:::-;;;:26;:98;;49144:12;49058:98;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49111:8;49121:18;:7;:16;:18::i;:::-;49094:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49051:105;48865:299;-1:-1:-1;;48865:299:0: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;;13353:2:1;12715:73:0::1;::::0;::::1;13335:21:1::0;13392:2;13372:18;;;13365:30;13431:34;13411:18;;;13404:62;-1:-1:-1;;;13482:18:1;;;13475:36;13528:19;;12715:73:0::1;13151:402:1::0;12715:73:0::1;12799:28;12818:8;12799:18;:28::i;:::-;12634:201:::0;:::o;47770:87::-;11798:6;;-1:-1:-1;;;;;11798:6:0;10529:10;11945:23;11937:68;;;;-1:-1:-1;;;11937:68:0;;;;;;;:::i;:::-;47837:4:::1;:12:::0;47770:87::o;26692:305::-;26794:4;-1:-1:-1;;;;;;26831:40:0;;-1:-1:-1;;;26831:40:0;;:105;;-1:-1:-1;;;;;;;26888:48:0;;-1:-1:-1;;;26888:48:0;26831:105;:158;;;-1:-1:-1;;;;;;;;;;2945:40:0;;;26953:36;2836:157;36597:174;36672:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36672:29:0;-1:-1:-1;;;;;36672:29:0;;;;;;;;:24;;36726:23;36672:24;36726:14;:23::i;:::-;-1:-1:-1;;;;;36717:46:0;;;;;;;;;;;36597:174;;:::o;32745:348::-;32838:4;32540:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32540:16:0;32855:73;;;;-1:-1:-1;;;32855:73:0;;13760:2:1;32855:73:0;;;13742:21:1;13799:2;13779:18;;;13772:30;13838:34;13818:18;;;13811:62;-1:-1:-1;;;13889:18:1;;;13882:42;13941:19;;32855:73:0;13558:408:1;32855:73:0;32939:13;32955:23;32970:7;32955:14;:23::i;:::-;32939:39;;33008:5;-1:-1:-1;;;;;32997:16:0;:7;-1:-1:-1;;;;;32997:16:0;;:52;;;-1:-1:-1;;;;;;29837:25:0;;;29813:4;29837:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33017:32;32997:87;;;;33077:7;-1:-1:-1;;;;;33053:31:0;:20;33065:7;33053:11;:20::i;:::-;-1:-1:-1;;;;;33053:31:0;;32997:87;32989:96;32745:348;-1:-1:-1;;;;32745:348:0:o;35854:625::-;36013:4;-1:-1:-1;;;;;35986:31:0;:23;36001:7;35986:14;:23::i;:::-;-1:-1:-1;;;;;35986:31:0;;35978:81;;;;-1:-1:-1;;;35978:81:0;;14173:2:1;35978:81:0;;;14155:21:1;14212:2;14192:18;;;14185:30;14251:34;14231:18;;;14224:62;-1:-1:-1;;;14302:18:1;;;14295:35;14347:19;;35978:81:0;13971:401:1;35978:81:0;-1:-1:-1;;;;;36078:16:0;;36070:65;;;;-1:-1:-1;;;36070:65:0;;14579:2:1;36070:65:0;;;14561:21:1;14618:2;14598:18;;;14591:30;14657:34;14637:18;;;14630:62;-1:-1:-1;;;14708:18:1;;;14701:34;14752:19;;36070:65:0;14377:400:1;36070:65:0;36148:39;36169:4;36175:2;36179:7;36148:20;:39::i;:::-;36252:29;36269:1;36273:7;36252:8;:29::i;:::-;-1:-1:-1;;;;;36294:15:0;;;;;;:9;:15;;;;;:20;;36313:1;;36294:15;:20;;36313:1;;36294:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36325:13:0;;;;;;:9;:13;;;;;:18;;36342:1;;36325:13;:18;;36342:1;;36325:18;:::i;:::-;;;;-1:-1:-1;;36354:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36354:21:0;-1:-1:-1;;;;;36354:21:0;;;;;;;;;36393:27;;36354:16;;36393:27;;;;;;;28790:341;28720:411;;:::o;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;33435:110::-;33511:26;33521:2;33525:7;33511:26;;;;;;;;;;;;:9;:26::i;36913:315::-;37068:8;-1:-1:-1;;;;;37059:17:0;:5;-1:-1:-1;;;;;37059:17:0;;37051:55;;;;-1:-1:-1;;;37051:55:0;;15114:2:1;37051:55:0;;;15096:21:1;15153:2;15133:18;;;15126:30;15192:27;15172:18;;;15165:55;15237:18;;37051:55:0;14912:349:1;37051:55:0;-1:-1:-1;;;;;37117:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37117:46:0;;;;;;;;;;37179:41;;540::1;;;37179::0;;513:18:1;37179:41:0;;;;;;;36913:315;;;:::o;31823:::-;31980:28;31990:4;31996:2;32000:7;31980:9;:28::i;:::-;32027:48;32050:4;32056:2;32060:7;32069:5;32027:22;:48::i;:::-;32019:111;;;;-1:-1:-1;;;32019:111:0;;;;;;;:::i;23526:723::-;23582:13;23803:5;23812:1;23803:10;23799:53;;-1:-1:-1;;23830:10:0;;;;;;;;;;;;-1:-1:-1;;;23830:10:0;;;;;23526:723::o;23799:53::-;23877:5;23862:12;23918:78;23925:9;;23918:78;;23951:8;;;;:::i;:::-;;-1:-1:-1;23974:10:0;;-1:-1:-1;23982:2:0;23974:10;;:::i;:::-;;;23918:78;;;24006:19;24038:6;24028:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24028:17:0;;24006:39;;24056:154;24063:10;;24056:154;;24090:11;24100:1;24090:11;;:::i;:::-;;-1:-1:-1;24159:10:0;24167:2;24159:5;:10;:::i;:::-;24146:24;;:2;:24;:::i;:::-;24133:39;;24116:6;24123;24116:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;24116:56:0;;;;;;;;-1:-1:-1;24187:11:0;24196:2;24187:11;;:::i;:::-;;;24056:154;;42494:589;-1:-1:-1;;;;;42700:18:0;;42696:187;;42735:40;42767:7;43910:10;:17;;43883:24;;;;:15;:24;;;;;:44;;;43938:24;;;;;;;;;;;;43806:164;42735:40;42696:187;;;42805:2;-1:-1:-1;;;;;42797:10:0;:4;-1:-1:-1;;;;;42797:10:0;;42793:90;;42824:47;42857:4;42863:7;42824:32;:47::i;:::-;-1:-1:-1;;;;;42897:16:0;;42893:183;;42930:45;42967:7;42930:36;:45::i;42893:183::-;43003:4;-1:-1:-1;;;;;42997:10:0;:2;-1:-1:-1;;;;;42997:10:0;;42993:83;;43024:40;43052:2;43056:7;43024:27;:40::i;33772:321::-;33902:18;33908:2;33912:7;33902:5;:18::i;:::-;33953:54;33984:1;33988:2;33992:7;34001:5;33953:22;:54::i;:::-;33931:154;;;;-1:-1:-1;;;33931:154:0;;;;;;;:::i;37793:799::-;37948:4;-1:-1:-1;;;;;37969:13:0;;16186:19;:23;37965:620;;38005:72;;-1:-1:-1;;;38005:72:0;;-1:-1:-1;;;;;38005:36:0;;;;;:72;;10529:10;;38056:4;;38062:7;;38071:5;;38005:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38005:72:0;;;;;;;;-1:-1:-1;;38005:72:0;;;;;;;;;;;;:::i;:::-;;;38001:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38247:6;:13;38264:1;38247:18;38243:272;;38290:60;;-1:-1:-1;;;38290:60:0;;;;;;;:::i;38243:272::-;38465:6;38459:13;38450:6;38446:2;38442:15;38435:38;38001:529;-1:-1:-1;;;;;;38128:51:0;-1:-1:-1;;;38128:51:0;;-1:-1:-1;38121:58:0;;37965:620;-1:-1:-1;38569:4:0;37793:799;;;;;;:::o;44597:988::-;44863:22;44913:1;44888:22;44905:4;44888:16;:22::i;:::-;:26;;;;:::i;:::-;44925:18;44946:26;;;:17;:26;;;;;;44863:51;;-1:-1:-1;45079:28:0;;;45075:328;;-1:-1:-1;;;;;45146:18:0;;45124:19;45146:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45197:30;;;;;;:44;;;45314:30;;:17;:30;;;;;:43;;;45075:328;-1:-1:-1;45499:26:0;;;;:17;:26;;;;;;;;45492:33;;;-1:-1:-1;;;;;45543:18:0;;;;;:12;:18;;;;;:34;;;;;;;45536:41;44597:988::o;45880:1079::-;46158:10;:17;46133:22;;46158:21;;46178:1;;46158:21;:::i;:::-;46190:18;46211:24;;;:15;:24;;;;;;46584:10;:26;;46133:46;;-1:-1:-1;46211:24:0;;46133:46;;46584:26;;;;;;:::i;:::-;;;;;;;;;46562:48;;46648:11;46623:10;46634;46623:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46728:28;;;:15;:28;;;;;;;:41;;;46900:24;;;;;46893:31;46935:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45951:1008;;;45880:1079;:::o;43384:221::-;43469:14;43486:20;43503:2;43486:16;:20::i;:::-;-1:-1:-1;;;;;43517:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43562:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43384:221:0:o;34429:439::-;-1:-1:-1;;;;;34509:16:0;;34501:61;;;;-1:-1:-1;;;34501:61:0;;17152:2:1;34501:61:0;;;17134:21:1;;;17171:18;;;17164:30;17230:34;17210:18;;;17203:62;17282:18;;34501:61:0;16950:356:1;34501:61:0;32516:4;32540:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32540:16:0;:30;34573:58;;;;-1:-1:-1;;;34573:58:0;;17513:2:1;34573:58:0;;;17495:21:1;17552:2;17532:18;;;17525:30;17591;17571:18;;;17564:58;17639:18;;34573:58:0;17311:352:1;34573:58:0;34644:45;34673:1;34677:2;34681:7;34644:20;:45::i;:::-;-1:-1:-1;;;;;34702:13:0;;;;;;:9;:13;;;;;:18;;34719:1;;34702:13;:18;;34719:1;;34702:18;:::i;:::-;;;;-1:-1:-1;;34731:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34731:21:0;-1:-1:-1;;;;;34731:21:0;;;;;;;;34770:33;;34731:16;;;34770:33;;34731:16;;34770:33;49274:37:::1;49211:108;49172:147::o:0;-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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;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:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:127::-;2771:10;2766:3;2762:20;2759:1;2752:31;2802:4;2799:1;2792:15;2826:4;2823:1;2816:15;2842:632;2907:5;2937:18;2978:2;2970:6;2967:14;2964:40;;;2984:18;;:::i;:::-;3059:2;3053:9;3027:2;3113:15;;-1:-1:-1;;3109:24:1;;;3135:2;3105:33;3101:42;3089:55;;;3159:18;;;3179:22;;;3156:46;3153:72;;;3205:18;;:::i;:::-;3245:10;3241:2;3234:22;3274:6;3265:15;;3304:6;3296;3289:22;3344:3;3335:6;3330:3;3326:16;3323:25;3320:45;;;3361:1;3358;3351:12;3320:45;3411:6;3406:3;3399:4;3391:6;3387:17;3374:44;3466:1;3459:4;3450:6;3442;3438:19;3434:30;3427:41;;;;2842:632;;;;;:::o;3479:451::-;3548:6;3601:2;3589:9;3580:7;3576:23;3572:32;3569:52;;;3617:1;3614;3607:12;3569:52;3657:9;3644:23;3690:18;3682:6;3679:30;3676:50;;;3722:1;3719;3712:12;3676:50;3745:22;;3798:4;3790:13;;3786:27;-1:-1:-1;3776:55:1;;3827:1;3824;3817:12;3776:55;3850:74;3916:7;3911:2;3898:16;3893:2;3889;3885:11;3850:74;:::i;3935:186::-;3994:6;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4086:29;4105:9;4086:29;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:380::-;5494:1;5490:12;;;;5537;;;5558:61;;5612:4;5604:6;5600:17;5590:27;;5558:61;5665:2;5657:6;5654:14;5634:18;5631:38;5628:161;;5711:10;5706:3;5702:20;5699:1;5692:31;5746:4;5743:1;5736:15;5774:4;5771:1;5764:15;5628:161;;5415:380;;;:::o;7040:413::-;7242:2;7224:21;;;7281:2;7261:18;;;7254:30;7320:34;7315:2;7300:18;;7293:62;-1:-1:-1;;;7386:2:1;7371:18;;7364:47;7443:3;7428:19;;7040:413::o;7870:356::-;8072:2;8054:21;;;8091:18;;;8084:30;8150:34;8145:2;8130:18;;8123:62;8217:2;8202:18;;7870:356::o;8644:127::-;8705:10;8700:3;8696:20;8693:1;8686:31;8736:4;8733:1;8726:15;8760:4;8757:1;8750:15;9597:127;9658:10;9653:3;9649:20;9646:1;9639:31;9689:4;9686:1;9679:15;9713:4;9710:1;9703:15;9729:128;9769:3;9800:1;9796:6;9793:1;9790:13;9787:39;;;9806:18;;:::i;:::-;-1:-1:-1;9842:9:1;;9729:128::o;10223:135::-;10262:3;10283:17;;;10280:43;;10303:18;;:::i;:::-;-1:-1:-1;10350:1:1;10339:13;;10223:135::o;10710:168::-;10750:7;10816:1;10812;10808:6;10804:14;10801:1;10798:21;10793:1;10786:9;10779:17;10775:45;10772:71;;;10823:18;;:::i;:::-;-1:-1:-1;10863:9:1;;10710:168::o;11782:185::-;11824:3;11862:5;11856:12;11877:52;11922:6;11917:3;11910:4;11903:5;11899:16;11877:52;:::i;:::-;11945:16;;;;;11782:185;-1:-1:-1;;11782:185:1:o;11972:1174::-;12148:3;12177:1;12210:6;12204:13;12240:3;12262:1;12290:9;12286:2;12282:18;12272:28;;12350:2;12339:9;12335:18;12372;12362:61;;12416:4;12408:6;12404:17;12394:27;;12362:61;12442:2;12490;12482:6;12479:14;12459:18;12456:38;12453:165;;-1:-1:-1;;;12517:33:1;;12573:4;12570:1;12563:15;12603:4;12524:3;12591:17;12453:165;12634:18;12661:104;;;;12779:1;12774:320;;;;12627:467;;12661:104;-1:-1:-1;;12694:24:1;;12682:37;;12739:16;;;;-1:-1:-1;12661:104:1;;12774:320;11729:1;11722:14;;;11766:4;11753:18;;12869:1;12883:165;12897:6;12894:1;12891:13;12883:165;;;12975:14;;12962:11;;;12955:35;13018:16;;;;12912:10;;12883:165;;;12887:3;;13077:6;13072:3;13068:16;13061:23;;12627:467;;;;;;;13110:30;13136:3;13128:6;13110:30;:::i;:::-;13103:37;11972:1174;-1:-1:-1;;;;;11972:1174:1:o;14782:125::-;14822:4;14850:1;14847;14844:8;14841:34;;;14855:18;;:::i;:::-;-1:-1:-1;14892:9:1;;14782:125::o;15266:414::-;15468:2;15450:21;;;15507:2;15487:18;;;15480:30;15546:34;15541:2;15526:18;;15519:62;-1:-1:-1;;;15612:2:1;15597:18;;15590:48;15670:3;15655:19;;15266:414::o;15685:127::-;15746:10;15741:3;15737:20;15734:1;15727:31;15777:4;15774:1;15767:15;15801:4;15798:1;15791:15;15817:120;15857:1;15883;15873:35;;15888:18;;:::i;:::-;-1:-1:-1;15922:9:1;;15817:120::o;15942:112::-;15974:1;16000;15990:35;;16005:18;;:::i;:::-;-1:-1:-1;16039:9:1;;15942:112::o;16059:500::-;-1:-1:-1;;;;;16328:15:1;;;16310:34;;16380:15;;16375:2;16360:18;;16353:43;16427:2;16412:18;;16405:34;;;16475:3;16470:2;16455:18;;16448:31;;;16253:4;;16496:57;;16533:19;;16525:6;16496:57;:::i;:::-;16488:65;16059:500;-1:-1:-1;;;;;;16059:500:1:o;16564:249::-;16633:6;16686:2;16674:9;16665:7;16661:23;16657:32;16654:52;;;16702:1;16699;16692:12;16654:52;16734:9;16728:16;16753:30;16777:5;16753:30;:::i;16818:127::-;16879:10;16874:3;16870:20;16867:1;16860:31;16910:4;16907:1;16900:15;16934:4;16931:1;16924:15

Swarm Source

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