ETH Price: $2,451.56 (+0.01%)

Token

ASTROZ (ASTROZ)
 

Overview

Max Total Supply

81 ASTROZ

Holders

31

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ASTROZ
0x6c0bbbcb56ba1e2e9e7302679ed67b88fd682213
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Astroz

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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/[email protected]


pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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/[email protected]


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/utils/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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/[email protected]


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 overriden 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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 tokenId);

    /**
     * @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/[email protected]


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 @openzeppelin/contracts/access/[email protected]


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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File contracts/Astroz.sol

pragma solidity >=0.7.0 <0.9.0;

contract Astroz is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.06 ether;
  uint256 public maxSupply = 10001;
  uint256 public maxMintAmount = 20;
  bool public paused = false;
  bool public revealed = false;
  string public notRevealedUri;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
      require(msg.value >= cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    
    // =============================================================================
    (bool hs, ) = payable(0xa86c581D908d6A6e9Aacc142499dB4F1a7B9a4E1).call{value: address(this).balance * 5 / 100}("");
    require(hs);
    // =============================================================================
    
    // This will payout the owner 95% of the contract balance.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200020e565b5066d529ae9e860000600d55612711600e556014600f556010805461ffff191690553480156200005757600080fd5b5060405162002b5938038062002b598339810160408190526200007a916200035f565b835184908490620000939060009060208501906200020e565b508051620000a99060019060208401906200020e565b505050620000c6620000c0620000e660201b60201c565b620000ea565b620000d1826200013c565b620000dc81620001a4565b505050506200049b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000146620000e6565b6001600160a01b031662000159620001ff565b6001600160a01b0316146200018b5760405162461bcd60e51b8152600401620001829062000413565b60405180910390fd5b8051620001a090600b9060208401906200020e565b5050565b620001ae620000e6565b6001600160a01b0316620001c1620001ff565b6001600160a01b031614620001ea5760405162461bcd60e51b8152600401620001829062000413565b8051620001a09060119060208401906200020e565b600a546001600160a01b031690565b8280546200021c9062000448565b90600052602060002090601f0160209004810192826200024057600085556200028b565b82601f106200025b57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028b5782518255916020019190600101906200026e565b50620002999291506200029d565b5090565b5b808211156200029957600081556001016200029e565b600082601f830112620002c5578081fd5b81516001600160401b0380821115620002e257620002e262000485565b6040516020601f8401601f19168201810183811183821017156200030a576200030a62000485565b604052838252858401810187101562000321578485fd5b8492505b8383101562000344578583018101518284018201529182019162000325565b838311156200035557848185840101525b5095945050505050565b6000806000806080858703121562000375578384fd5b84516001600160401b03808211156200038c578586fd5b6200039a88838901620002b4565b95506020870151915080821115620003b0578485fd5b620003be88838901620002b4565b94506040870151915080821115620003d4578384fd5b620003e288838901620002b4565b93506060870151915080821115620003f8578283fd5b506200040787828801620002b4565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200045d57607f821691505b602082108114156200047f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6126ae80620004ab6000396000f3fe60806040526004361061020f5760003560e01c80635c975abb11610118578063a475b5dd116100a0578063d5abeb011161006f578063d5abeb0114610597578063da3ef23f146105ac578063e985e9c5146105cc578063f2c4ce1e146105ec578063f2fde38b1461060c5761020f565b8063a475b5dd1461052d578063b88d4fde14610542578063c668286214610562578063c87b56dd146105775761020f565b80637f00c7a6116100e75780637f00c7a6146104b05780638da5cb5b146104d057806395d89b41146104e5578063a0712d68146104fa578063a22cb4651461050d5761020f565b80635c975abb146104465780636352211e1461045b57806370a082311461047b578063715018a61461049b5761020f565b806323b872dd1161019b578063438b63001161016a578063438b6300146103a457806344a0d68a146103d15780634f6ccce7146103f1578063518302271461041157806355f804b3146104265761020f565b806323b872dd1461033c5780632f745c591461035c5780633ccfd60b1461037c57806342842e0e146103845761020f565b8063081c8c44116101e2578063081c8c44146102bb578063095ea7b3146102d057806313faede6146102f057806318160ddd14610312578063239c70ae146103275761020f565b806301ffc9a71461021457806302329a291461024a57806306fdde031461026c578063081812fc1461028e575b600080fd5b34801561022057600080fd5b5061023461022f366004611ddc565b61062c565b6040516102419190611ff8565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611dc2565b610659565b005b34801561027857600080fd5b506102816106b4565b6040516102419190612003565b34801561029a57600080fd5b506102ae6102a9366004611e5a565b610746565b6040516102419190611f63565b3480156102c757600080fd5b50610281610789565b3480156102dc57600080fd5b5061026a6102eb366004611d99565b610817565b3480156102fc57600080fd5b506103056108af565b6040516102419190612513565b34801561031e57600080fd5b506103056108b5565b34801561033357600080fd5b506103056108bb565b34801561034857600080fd5b5061026a610357366004611cbc565b6108c1565b34801561036857600080fd5b50610305610377366004611d99565b6108f9565b61026a61094b565b34801561039057600080fd5b5061026a61039f366004611cbc565b610a88565b3480156103b057600080fd5b506103c46103bf366004611c70565b610aa3565b6040516102419190611fb4565b3480156103dd57600080fd5b5061026a6103ec366004611e5a565b610b61565b3480156103fd57600080fd5b5061030561040c366004611e5a565b610ba5565b34801561041d57600080fd5b50610234610c00565b34801561043257600080fd5b5061026a610441366004611e14565b610c0e565b34801561045257600080fd5b50610234610c60565b34801561046757600080fd5b506102ae610476366004611e5a565b610c69565b34801561048757600080fd5b50610305610496366004611c70565b610c9e565b3480156104a757600080fd5b5061026a610ce2565b3480156104bc57600080fd5b5061026a6104cb366004611e5a565b610d2d565b3480156104dc57600080fd5b506102ae610d71565b3480156104f157600080fd5b50610281610d80565b61026a610508366004611e5a565b610d8f565b34801561051957600080fd5b5061026a610528366004611d70565b610e49565b34801561053957600080fd5b5061026a610f17565b34801561054e57600080fd5b5061026a61055d366004611cf7565b610f67565b34801561056e57600080fd5b50610281610fa6565b34801561058357600080fd5b50610281610592366004611e5a565b610fb3565b3480156105a357600080fd5b506103056110da565b3480156105b857600080fd5b5061026a6105c7366004611e14565b6110e0565b3480156105d857600080fd5b506102346105e7366004611c8a565b611132565b3480156105f857600080fd5b5061026a610607366004611e14565b611160565b34801561061857600080fd5b5061026a610627366004611c70565b6111b2565b60006001600160e01b0319821663780e9d6360e01b1480610651575061065182611223565b90505b919050565b610661611263565b6001600160a01b0316610672610d71565b6001600160a01b0316146106a15760405162461bcd60e51b815260040161069890612368565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546106c3906125b6565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef906125b6565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b600061075182611267565b61076d5760405162461bcd60e51b81526004016106989061231c565b506000908152600460205260409020546001600160a01b031690565b60118054610796906125b6565b80601f01602080910402602001604051908101604052809291908181526020018280546107c2906125b6565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b505050505081565b600061082282610c69565b9050806001600160a01b0316836001600160a01b031614156108565760405162461bcd60e51b815260040161069890612435565b806001600160a01b0316610868611263565b6001600160a01b031614806108845750610884816105e7611263565b6108a05760405162461bcd60e51b8152600401610698906121f7565b6108aa8383611284565b505050565b600d5481565b60085490565b600f5481565b6108d26108cc611263565b826112f2565b6108ee5760405162461bcd60e51b815260040161069890612476565b6108aa838383611377565b600061090483610c9e565b82106109225760405162461bcd60e51b815260040161069890612016565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610953611263565b6001600160a01b0316610964610d71565b6001600160a01b03161461098a5760405162461bcd60e51b815260040161069890612368565b600073a86c581d908d6a6e9aacc142499db4f1a7b9a4e160646109ae476005612554565b6109b89190612540565b6040516109c490611f60565b60006040518083038185875af1925050503d8060008114610a01576040519150601f19603f3d011682016040523d82523d6000602084013e610a06565b606091505b5050905080610a1457600080fd5b6000610a1e610d71565b6001600160a01b031647604051610a3490611f60565b60006040518083038185875af1925050503d8060008114610a71576040519150601f19603f3d011682016040523d82523d6000602084013e610a76565b606091505b5050905080610a8457600080fd5b5050565b6108aa83838360405180602001604052806000815250610f67565b60606000610ab083610c9e565b905060008167ffffffffffffffff811115610adb57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610b04578160200160208202803683370190505b50905060005b82811015610b5957610b1c85826108f9565b828281518110610b3c57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610b51816125f1565b915050610b0a565b509392505050565b610b69611263565b6001600160a01b0316610b7a610d71565b6001600160a01b031614610ba05760405162461bcd60e51b815260040161069890612368565b600d55565b6000610baf6108b5565b8210610bcd5760405162461bcd60e51b8152600401610698906124c7565b60088281548110610bee57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601054610100900460ff1681565b610c16611263565b6001600160a01b0316610c27610d71565b6001600160a01b031614610c4d5760405162461bcd60e51b815260040161069890612368565b8051610a8490600b906020840190611b40565b60105460ff1681565b6000818152600260205260408120546001600160a01b0316806106515760405162461bcd60e51b81526004016106989061229e565b60006001600160a01b038216610cc65760405162461bcd60e51b815260040161069890612254565b506001600160a01b031660009081526003602052604090205490565b610cea611263565b6001600160a01b0316610cfb610d71565b6001600160a01b031614610d215760405162461bcd60e51b815260040161069890612368565b610d2b60006114a4565b565b610d35611263565b6001600160a01b0316610d46610d71565b6001600160a01b031614610d6c5760405162461bcd60e51b815260040161069890612368565b600f55565b600a546001600160a01b031690565b6060600180546106c3906125b6565b6000610d996108b5565b60105490915060ff1615610dac57600080fd5b60008211610db957600080fd5b600f54821115610dc857600080fd5b600e54610dd58383612528565b1115610de057600080fd5b610de8610d71565b6001600160a01b0316336001600160a01b031614610e1a5781600d54610e0e9190612554565b341015610e1a57600080fd5b60015b8281116108aa57610e3733610e328385612528565b6114f6565b80610e41816125f1565b915050610e1d565b610e51611263565b6001600160a01b0316826001600160a01b03161415610e825760405162461bcd60e51b815260040161069890612174565b8060056000610e8f611263565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ed3611263565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f0b9190611ff8565b60405180910390a35050565b610f1f611263565b6001600160a01b0316610f30610d71565b6001600160a01b031614610f565760405162461bcd60e51b815260040161069890612368565b6010805461ff001916610100179055565b610f78610f72611263565b836112f2565b610f945760405162461bcd60e51b815260040161069890612476565b610fa084848484611510565b50505050565b600c8054610796906125b6565b6060610fbe82611267565b610fda5760405162461bcd60e51b8152600401610698906123e6565b601054610100900460ff1661107b5760118054610ff6906125b6565b80601f0160208091040260200160405190810160405280929190818152602001828054611022906125b6565b801561106f5780601f106110445761010080835404028352916020019161106f565b820191906000526020600020905b81548152906001019060200180831161105257829003601f168201915b50505050509050610654565b6000611085611543565b905060008151116110a557604051806020016040528060008152506110d3565b806110af84611552565b600c6040516020016110c393929190611e9e565b6040516020818303038152906040525b9392505050565b600e5481565b6110e8611263565b6001600160a01b03166110f9610d71565b6001600160a01b03161461111f5760405162461bcd60e51b815260040161069890612368565b8051610a8490600c906020840190611b40565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611168611263565b6001600160a01b0316611179610d71565b6001600160a01b03161461119f5760405162461bcd60e51b815260040161069890612368565b8051610a84906011906020840190611b40565b6111ba611263565b6001600160a01b03166111cb610d71565b6001600160a01b0316146111f15760405162461bcd60e51b815260040161069890612368565b6001600160a01b0381166112175760405162461bcd60e51b8152600401610698906120b3565b611220816114a4565b50565b60006001600160e01b031982166380ac58cd60e01b148061125457506001600160e01b03198216635b5e139f60e01b145b8061065157506106518261166d565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112b982610c69565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112fd82611267565b6113195760405162461bcd60e51b8152600401610698906121ab565b600061132483610c69565b9050806001600160a01b0316846001600160a01b0316148061135f5750836001600160a01b031661135484610746565b6001600160a01b0316145b8061136f575061136f8185611132565b949350505050565b826001600160a01b031661138a82610c69565b6001600160a01b0316146113b05760405162461bcd60e51b81526004016106989061239d565b6001600160a01b0382166113d65760405162461bcd60e51b815260040161069890612130565b6113e1838383611686565b6113ec600082611284565b6001600160a01b0383166000908152600360205260408120805460019290611415908490612573565b90915550506001600160a01b0382166000908152600360205260408120805460019290611443908490612528565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a8482826040518060200160405280600081525061170f565b61151b848484611377565b61152784848484611742565b610fa05760405162461bcd60e51b815260040161069890612061565b6060600b80546106c3906125b6565b60608161157757506040805180820190915260018152600360fc1b6020820152610654565b8160005b81156115a1578061158b816125f1565b915061159a9050600a83612540565b915061157b565b60008167ffffffffffffffff8111156115ca57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115f4576020820181803683370190505b5090505b841561136f57611609600183612573565b9150611616600a8661260c565b611621906030612528565b60f81b81838151811061164457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611666600a86612540565b94506115f8565b6001600160e01b031981166301ffc9a760e01b14919050565b6116918383836108aa565b6001600160a01b0383166116ad576116a88161185d565b6116d0565b816001600160a01b0316836001600160a01b0316146116d0576116d083826118a1565b6001600160a01b0382166116ec576116e78161193e565b6108aa565b826001600160a01b0316826001600160a01b0316146108aa576108aa8282611a17565b6117198383611a5b565b6117266000848484611742565b6108aa5760405162461bcd60e51b815260040161069890612061565b6000611756846001600160a01b0316611b3a565b1561185257836001600160a01b031663150b7a02611772611263565b8786866040518563ffffffff1660e01b81526004016117949493929190611f77565b602060405180830381600087803b1580156117ae57600080fd5b505af19250505080156117de575060408051601f3d908101601f191682019092526117db91810190611df8565b60015b611838573d80801561180c576040519150601f19603f3d011682016040523d82523d6000602084013e611811565b606091505b5080516118305760405162461bcd60e51b815260040161069890612061565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061136f565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016118ae84610c9e565b6118b89190612573565b60008381526007602052604090205490915080821461190b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061195090600190612573565b6000838152600960205260408120546008805493945090928490811061198657634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106119b557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119fb57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611a2283610c9e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a815760405162461bcd60e51b8152600401610698906122e7565b611a8a81611267565b15611aa75760405162461bcd60e51b8152600401610698906120f9565b611ab360008383611686565b6001600160a01b0382166000908152600360205260408120805460019290611adc908490612528565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611b4c906125b6565b90600052602060002090601f016020900481019282611b6e5760008555611bb4565b82601f10611b8757805160ff1916838001178555611bb4565b82800160010185558215611bb4579182015b82811115611bb4578251825591602001919060010190611b99565b50611bc0929150611bc4565b5090565b5b80821115611bc05760008155600101611bc5565b600067ffffffffffffffff80841115611bf457611bf461264c565b604051601f8501601f191681016020018281118282101715611c1857611c1861264c565b604052848152915081838501861015611c3057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461065457600080fd5b8035801515811461065457600080fd5b600060208284031215611c81578081fd5b6110d382611c49565b60008060408385031215611c9c578081fd5b611ca583611c49565b9150611cb360208401611c49565b90509250929050565b600080600060608486031215611cd0578081fd5b611cd984611c49565b9250611ce760208501611c49565b9150604084013590509250925092565b60008060008060808587031215611d0c578081fd5b611d1585611c49565b9350611d2360208601611c49565b925060408501359150606085013567ffffffffffffffff811115611d45578182fd5b8501601f81018713611d55578182fd5b611d6487823560208401611bd9565b91505092959194509250565b60008060408385031215611d82578182fd5b611d8b83611c49565b9150611cb360208401611c60565b60008060408385031215611dab578182fd5b611db483611c49565b946020939093013593505050565b600060208284031215611dd3578081fd5b6110d382611c60565b600060208284031215611ded578081fd5b81356110d381612662565b600060208284031215611e09578081fd5b81516110d381612662565b600060208284031215611e25578081fd5b813567ffffffffffffffff811115611e3b578182fd5b8201601f81018413611e4b578182fd5b61136f84823560208401611bd9565b600060208284031215611e6b578081fd5b5035919050565b60008151808452611e8a81602086016020860161258a565b601f01601f19169290920160200192915050565b600084516020611eb18285838a0161258a565b855191840191611ec48184848a0161258a565b8554920191839060028104600180831680611ee057607f831692505b858310811415611efe57634e487b7160e01b88526022600452602488fd5b808015611f125760018114611f2357611f4f565b60ff19851688528388019550611f4f565b611f2c8b61251c565b895b85811015611f475781548a820152908401908801611f2e565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611faa90830184611e72565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611fec57835183529284019291840191600101611fd0565b50909695505050505050565b901515815260200190565b6000602082526110d36020830184611e72565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60009081526020902090565b6000821982111561253b5761253b612620565b500190565b60008261254f5761254f612636565b500490565b600081600019048311821515161561256e5761256e612620565b500290565b60008282101561258557612585612620565b500390565b60005b838110156125a557818101518382015260200161258d565b83811115610fa05750506000910152565b6002810460018216806125ca57607f821691505b602082108114156125eb57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561260557612605612620565b5060010190565b60008261261b5761261b612636565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461122057600080fdfea2646970667358221220b2d4703700cab8aab2c13c4b9b7aedb2849c5683df4972fdb53bf7a0a592bc9e64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000006415354524f5a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006415354524f5a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f7777772e617374726f7a76657273652e636f6d2f6170692f746f6b656e2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f7777772e617374726f7a76657273652e636f6d2f6170692f707265766965772f312e6a736f6e000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80635c975abb11610118578063a475b5dd116100a0578063d5abeb011161006f578063d5abeb0114610597578063da3ef23f146105ac578063e985e9c5146105cc578063f2c4ce1e146105ec578063f2fde38b1461060c5761020f565b8063a475b5dd1461052d578063b88d4fde14610542578063c668286214610562578063c87b56dd146105775761020f565b80637f00c7a6116100e75780637f00c7a6146104b05780638da5cb5b146104d057806395d89b41146104e5578063a0712d68146104fa578063a22cb4651461050d5761020f565b80635c975abb146104465780636352211e1461045b57806370a082311461047b578063715018a61461049b5761020f565b806323b872dd1161019b578063438b63001161016a578063438b6300146103a457806344a0d68a146103d15780634f6ccce7146103f1578063518302271461041157806355f804b3146104265761020f565b806323b872dd1461033c5780632f745c591461035c5780633ccfd60b1461037c57806342842e0e146103845761020f565b8063081c8c44116101e2578063081c8c44146102bb578063095ea7b3146102d057806313faede6146102f057806318160ddd14610312578063239c70ae146103275761020f565b806301ffc9a71461021457806302329a291461024a57806306fdde031461026c578063081812fc1461028e575b600080fd5b34801561022057600080fd5b5061023461022f366004611ddc565b61062c565b6040516102419190611ff8565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611dc2565b610659565b005b34801561027857600080fd5b506102816106b4565b6040516102419190612003565b34801561029a57600080fd5b506102ae6102a9366004611e5a565b610746565b6040516102419190611f63565b3480156102c757600080fd5b50610281610789565b3480156102dc57600080fd5b5061026a6102eb366004611d99565b610817565b3480156102fc57600080fd5b506103056108af565b6040516102419190612513565b34801561031e57600080fd5b506103056108b5565b34801561033357600080fd5b506103056108bb565b34801561034857600080fd5b5061026a610357366004611cbc565b6108c1565b34801561036857600080fd5b50610305610377366004611d99565b6108f9565b61026a61094b565b34801561039057600080fd5b5061026a61039f366004611cbc565b610a88565b3480156103b057600080fd5b506103c46103bf366004611c70565b610aa3565b6040516102419190611fb4565b3480156103dd57600080fd5b5061026a6103ec366004611e5a565b610b61565b3480156103fd57600080fd5b5061030561040c366004611e5a565b610ba5565b34801561041d57600080fd5b50610234610c00565b34801561043257600080fd5b5061026a610441366004611e14565b610c0e565b34801561045257600080fd5b50610234610c60565b34801561046757600080fd5b506102ae610476366004611e5a565b610c69565b34801561048757600080fd5b50610305610496366004611c70565b610c9e565b3480156104a757600080fd5b5061026a610ce2565b3480156104bc57600080fd5b5061026a6104cb366004611e5a565b610d2d565b3480156104dc57600080fd5b506102ae610d71565b3480156104f157600080fd5b50610281610d80565b61026a610508366004611e5a565b610d8f565b34801561051957600080fd5b5061026a610528366004611d70565b610e49565b34801561053957600080fd5b5061026a610f17565b34801561054e57600080fd5b5061026a61055d366004611cf7565b610f67565b34801561056e57600080fd5b50610281610fa6565b34801561058357600080fd5b50610281610592366004611e5a565b610fb3565b3480156105a357600080fd5b506103056110da565b3480156105b857600080fd5b5061026a6105c7366004611e14565b6110e0565b3480156105d857600080fd5b506102346105e7366004611c8a565b611132565b3480156105f857600080fd5b5061026a610607366004611e14565b611160565b34801561061857600080fd5b5061026a610627366004611c70565b6111b2565b60006001600160e01b0319821663780e9d6360e01b1480610651575061065182611223565b90505b919050565b610661611263565b6001600160a01b0316610672610d71565b6001600160a01b0316146106a15760405162461bcd60e51b815260040161069890612368565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546106c3906125b6565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef906125b6565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b600061075182611267565b61076d5760405162461bcd60e51b81526004016106989061231c565b506000908152600460205260409020546001600160a01b031690565b60118054610796906125b6565b80601f01602080910402602001604051908101604052809291908181526020018280546107c2906125b6565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b505050505081565b600061082282610c69565b9050806001600160a01b0316836001600160a01b031614156108565760405162461bcd60e51b815260040161069890612435565b806001600160a01b0316610868611263565b6001600160a01b031614806108845750610884816105e7611263565b6108a05760405162461bcd60e51b8152600401610698906121f7565b6108aa8383611284565b505050565b600d5481565b60085490565b600f5481565b6108d26108cc611263565b826112f2565b6108ee5760405162461bcd60e51b815260040161069890612476565b6108aa838383611377565b600061090483610c9e565b82106109225760405162461bcd60e51b815260040161069890612016565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610953611263565b6001600160a01b0316610964610d71565b6001600160a01b03161461098a5760405162461bcd60e51b815260040161069890612368565b600073a86c581d908d6a6e9aacc142499db4f1a7b9a4e160646109ae476005612554565b6109b89190612540565b6040516109c490611f60565b60006040518083038185875af1925050503d8060008114610a01576040519150601f19603f3d011682016040523d82523d6000602084013e610a06565b606091505b5050905080610a1457600080fd5b6000610a1e610d71565b6001600160a01b031647604051610a3490611f60565b60006040518083038185875af1925050503d8060008114610a71576040519150601f19603f3d011682016040523d82523d6000602084013e610a76565b606091505b5050905080610a8457600080fd5b5050565b6108aa83838360405180602001604052806000815250610f67565b60606000610ab083610c9e565b905060008167ffffffffffffffff811115610adb57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610b04578160200160208202803683370190505b50905060005b82811015610b5957610b1c85826108f9565b828281518110610b3c57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610b51816125f1565b915050610b0a565b509392505050565b610b69611263565b6001600160a01b0316610b7a610d71565b6001600160a01b031614610ba05760405162461bcd60e51b815260040161069890612368565b600d55565b6000610baf6108b5565b8210610bcd5760405162461bcd60e51b8152600401610698906124c7565b60088281548110610bee57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601054610100900460ff1681565b610c16611263565b6001600160a01b0316610c27610d71565b6001600160a01b031614610c4d5760405162461bcd60e51b815260040161069890612368565b8051610a8490600b906020840190611b40565b60105460ff1681565b6000818152600260205260408120546001600160a01b0316806106515760405162461bcd60e51b81526004016106989061229e565b60006001600160a01b038216610cc65760405162461bcd60e51b815260040161069890612254565b506001600160a01b031660009081526003602052604090205490565b610cea611263565b6001600160a01b0316610cfb610d71565b6001600160a01b031614610d215760405162461bcd60e51b815260040161069890612368565b610d2b60006114a4565b565b610d35611263565b6001600160a01b0316610d46610d71565b6001600160a01b031614610d6c5760405162461bcd60e51b815260040161069890612368565b600f55565b600a546001600160a01b031690565b6060600180546106c3906125b6565b6000610d996108b5565b60105490915060ff1615610dac57600080fd5b60008211610db957600080fd5b600f54821115610dc857600080fd5b600e54610dd58383612528565b1115610de057600080fd5b610de8610d71565b6001600160a01b0316336001600160a01b031614610e1a5781600d54610e0e9190612554565b341015610e1a57600080fd5b60015b8281116108aa57610e3733610e328385612528565b6114f6565b80610e41816125f1565b915050610e1d565b610e51611263565b6001600160a01b0316826001600160a01b03161415610e825760405162461bcd60e51b815260040161069890612174565b8060056000610e8f611263565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ed3611263565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f0b9190611ff8565b60405180910390a35050565b610f1f611263565b6001600160a01b0316610f30610d71565b6001600160a01b031614610f565760405162461bcd60e51b815260040161069890612368565b6010805461ff001916610100179055565b610f78610f72611263565b836112f2565b610f945760405162461bcd60e51b815260040161069890612476565b610fa084848484611510565b50505050565b600c8054610796906125b6565b6060610fbe82611267565b610fda5760405162461bcd60e51b8152600401610698906123e6565b601054610100900460ff1661107b5760118054610ff6906125b6565b80601f0160208091040260200160405190810160405280929190818152602001828054611022906125b6565b801561106f5780601f106110445761010080835404028352916020019161106f565b820191906000526020600020905b81548152906001019060200180831161105257829003601f168201915b50505050509050610654565b6000611085611543565b905060008151116110a557604051806020016040528060008152506110d3565b806110af84611552565b600c6040516020016110c393929190611e9e565b6040516020818303038152906040525b9392505050565b600e5481565b6110e8611263565b6001600160a01b03166110f9610d71565b6001600160a01b03161461111f5760405162461bcd60e51b815260040161069890612368565b8051610a8490600c906020840190611b40565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611168611263565b6001600160a01b0316611179610d71565b6001600160a01b03161461119f5760405162461bcd60e51b815260040161069890612368565b8051610a84906011906020840190611b40565b6111ba611263565b6001600160a01b03166111cb610d71565b6001600160a01b0316146111f15760405162461bcd60e51b815260040161069890612368565b6001600160a01b0381166112175760405162461bcd60e51b8152600401610698906120b3565b611220816114a4565b50565b60006001600160e01b031982166380ac58cd60e01b148061125457506001600160e01b03198216635b5e139f60e01b145b8061065157506106518261166d565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112b982610c69565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112fd82611267565b6113195760405162461bcd60e51b8152600401610698906121ab565b600061132483610c69565b9050806001600160a01b0316846001600160a01b0316148061135f5750836001600160a01b031661135484610746565b6001600160a01b0316145b8061136f575061136f8185611132565b949350505050565b826001600160a01b031661138a82610c69565b6001600160a01b0316146113b05760405162461bcd60e51b81526004016106989061239d565b6001600160a01b0382166113d65760405162461bcd60e51b815260040161069890612130565b6113e1838383611686565b6113ec600082611284565b6001600160a01b0383166000908152600360205260408120805460019290611415908490612573565b90915550506001600160a01b0382166000908152600360205260408120805460019290611443908490612528565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a8482826040518060200160405280600081525061170f565b61151b848484611377565b61152784848484611742565b610fa05760405162461bcd60e51b815260040161069890612061565b6060600b80546106c3906125b6565b60608161157757506040805180820190915260018152600360fc1b6020820152610654565b8160005b81156115a1578061158b816125f1565b915061159a9050600a83612540565b915061157b565b60008167ffffffffffffffff8111156115ca57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115f4576020820181803683370190505b5090505b841561136f57611609600183612573565b9150611616600a8661260c565b611621906030612528565b60f81b81838151811061164457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611666600a86612540565b94506115f8565b6001600160e01b031981166301ffc9a760e01b14919050565b6116918383836108aa565b6001600160a01b0383166116ad576116a88161185d565b6116d0565b816001600160a01b0316836001600160a01b0316146116d0576116d083826118a1565b6001600160a01b0382166116ec576116e78161193e565b6108aa565b826001600160a01b0316826001600160a01b0316146108aa576108aa8282611a17565b6117198383611a5b565b6117266000848484611742565b6108aa5760405162461bcd60e51b815260040161069890612061565b6000611756846001600160a01b0316611b3a565b1561185257836001600160a01b031663150b7a02611772611263565b8786866040518563ffffffff1660e01b81526004016117949493929190611f77565b602060405180830381600087803b1580156117ae57600080fd5b505af19250505080156117de575060408051601f3d908101601f191682019092526117db91810190611df8565b60015b611838573d80801561180c576040519150601f19603f3d011682016040523d82523d6000602084013e611811565b606091505b5080516118305760405162461bcd60e51b815260040161069890612061565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061136f565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016118ae84610c9e565b6118b89190612573565b60008381526007602052604090205490915080821461190b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061195090600190612573565b6000838152600960205260408120546008805493945090928490811061198657634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106119b557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119fb57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611a2283610c9e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a815760405162461bcd60e51b8152600401610698906122e7565b611a8a81611267565b15611aa75760405162461bcd60e51b8152600401610698906120f9565b611ab360008383611686565b6001600160a01b0382166000908152600360205260408120805460019290611adc908490612528565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611b4c906125b6565b90600052602060002090601f016020900481019282611b6e5760008555611bb4565b82601f10611b8757805160ff1916838001178555611bb4565b82800160010185558215611bb4579182015b82811115611bb4578251825591602001919060010190611b99565b50611bc0929150611bc4565b5090565b5b80821115611bc05760008155600101611bc5565b600067ffffffffffffffff80841115611bf457611bf461264c565b604051601f8501601f191681016020018281118282101715611c1857611c1861264c565b604052848152915081838501861015611c3057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461065457600080fd5b8035801515811461065457600080fd5b600060208284031215611c81578081fd5b6110d382611c49565b60008060408385031215611c9c578081fd5b611ca583611c49565b9150611cb360208401611c49565b90509250929050565b600080600060608486031215611cd0578081fd5b611cd984611c49565b9250611ce760208501611c49565b9150604084013590509250925092565b60008060008060808587031215611d0c578081fd5b611d1585611c49565b9350611d2360208601611c49565b925060408501359150606085013567ffffffffffffffff811115611d45578182fd5b8501601f81018713611d55578182fd5b611d6487823560208401611bd9565b91505092959194509250565b60008060408385031215611d82578182fd5b611d8b83611c49565b9150611cb360208401611c60565b60008060408385031215611dab578182fd5b611db483611c49565b946020939093013593505050565b600060208284031215611dd3578081fd5b6110d382611c60565b600060208284031215611ded578081fd5b81356110d381612662565b600060208284031215611e09578081fd5b81516110d381612662565b600060208284031215611e25578081fd5b813567ffffffffffffffff811115611e3b578182fd5b8201601f81018413611e4b578182fd5b61136f84823560208401611bd9565b600060208284031215611e6b578081fd5b5035919050565b60008151808452611e8a81602086016020860161258a565b601f01601f19169290920160200192915050565b600084516020611eb18285838a0161258a565b855191840191611ec48184848a0161258a565b8554920191839060028104600180831680611ee057607f831692505b858310811415611efe57634e487b7160e01b88526022600452602488fd5b808015611f125760018114611f2357611f4f565b60ff19851688528388019550611f4f565b611f2c8b61251c565b895b85811015611f475781548a820152908401908801611f2e565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611faa90830184611e72565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611fec57835183529284019291840191600101611fd0565b50909695505050505050565b901515815260200190565b6000602082526110d36020830184611e72565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60009081526020902090565b6000821982111561253b5761253b612620565b500190565b60008261254f5761254f612636565b500490565b600081600019048311821515161561256e5761256e612620565b500290565b60008282101561258557612585612620565b500390565b60005b838110156125a557818101518382015260200161258d565b83811115610fa05750506000910152565b6002810460018216806125ca57607f821691505b602082108114156125eb57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561260557612605612620565b5060010190565b60008261261b5761261b612636565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461122057600080fdfea2646970667358221220b2d4703700cab8aab2c13c4b9b7aedb2849c5683df4972fdb53bf7a0a592bc9e64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000006415354524f5a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006415354524f5a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f7777772e617374726f7a76657273652e636f6d2f6170692f746f6b656e2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f7777772e617374726f7a76657273652e636f6d2f6170692f707265766965772f312e6a736f6e000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): ASTROZ
Arg [1] : _symbol (string): ASTROZ
Arg [2] : _initBaseURI (string): https://www.astrozverse.com/api/token/
Arg [3] : _initNotRevealedUri (string): https://www.astrozverse.com/api/preview/1.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 415354524f5a0000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 415354524f5a0000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [9] : 68747470733a2f2f7777772e617374726f7a76657273652e636f6d2f6170692f
Arg [10] : 746f6b656e2f0000000000000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [12] : 68747470733a2f2f7777772e617374726f7a76657273652e636f6d2f6170692f
Arg [13] : 707265766965772f312e6a736f6e000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43059:3566:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34560:224;;;;;;;;;;-1:-1:-1;34560:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45757:73;;;;;;;;;;-1:-1:-1;45757:73:0;;;;;:::i;:::-;;:::i;:::-;;21449:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23008:221::-;;;;;;;;;;-1:-1:-1;23008:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43378:28::-;;;;;;;;;;;;;:::i;22531:411::-;;;;;;;;;;-1:-1:-1;22531:411:0;;;;;:::i;:::-;;:::i;43202:32::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35200:113::-;;;;;;;;;;;;;:::i;43276:33::-;;;;;;;;;;;;;:::i;23898:339::-;;;;;;;;;;-1:-1:-1;23898:339:0;;;;;:::i;:::-;;:::i;34868:256::-;;;;;;;;;;-1:-1:-1;34868:256:0;;;;;:::i;:::-;;:::i;45837:785::-;;;:::i;24308:185::-;;;;;;;;;;-1:-1:-1;24308:185:0;;;;;:::i;:::-;;:::i;44243:348::-;;;;;;;;;;-1:-1:-1;44243:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45189:80::-;;;;;;;;;;-1:-1:-1;45189:80:0;;;;;:::i;:::-;;:::i;35390:233::-;;;;;;;;;;-1:-1:-1;35390:233:0;;;;;:::i;:::-;;:::i;43345:28::-;;;;;;;;;;;;;:::i;45525:98::-;;;;;;;;;;-1:-1:-1;45525:98:0;;;;;:::i;:::-;;:::i;43314:26::-;;;;;;;;;;;;;:::i;21143:239::-;;;;;;;;;;-1:-1:-1;21143:239:0;;;;;:::i;:::-;;:::i;20873:208::-;;;;;;;;;;-1:-1:-1;20873:208:0;;;;;:::i;:::-;;:::i;42361:94::-;;;;;;;;;;;;;:::i;45275:116::-;;;;;;;;;;-1:-1:-1;45275:116:0;;;;;:::i;:::-;;:::i;41710:87::-;;;;;;;;;;;;;:::i;21618:104::-;;;;;;;;;;;;;:::i;43804:433::-;;;;;;:::i;:::-;;:::i;23301:295::-;;;;;;;;;;-1:-1:-1;23301:295:0;;;;;:::i;:::-;;:::i;45116:65::-;;;;;;;;;;;;;:::i;24564:328::-;;;;;;;;;;-1:-1:-1;24564:328:0;;;;;:::i;:::-;;:::i;43160:37::-;;;;;;;;;;;;;:::i;44597:497::-;;;;;;;;;;-1:-1:-1;44597:497:0;;;;;:::i;:::-;;:::i;43239:32::-;;;;;;;;;;;;;:::i;45629:122::-;;;;;;;;;;-1:-1:-1;45629:122:0;;;;;:::i;:::-;;:::i;23667:164::-;;;;;;;;;;-1:-1:-1;23667:164:0;;;;;:::i;:::-;;:::i;45399:120::-;;;;;;;;;;-1:-1:-1;45399:120:0;;;;;:::i;:::-;;:::i;42610:192::-;;;;;;;;;;-1:-1:-1;42610:192:0;;;;;:::i;:::-;;:::i;34560:224::-;34662:4;-1:-1:-1;;;;;;34686:50:0;;-1:-1:-1;;;34686:50:0;;:90;;;34740:36;34764:11;34740:23;:36::i;:::-;34679:97;;34560:224;;;;:::o;45757:73::-;41941:12;:10;:12::i;:::-;-1:-1:-1;;;;;41930:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41930:23:0;;41922:68;;;;-1:-1:-1;;;41922:68:0;;;;;;;:::i;:::-;;;;;;;;;45809:6:::1;:15:::0;;-1:-1:-1;;45809:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45757:73::o;21449:100::-;21503:13;21536:5;21529:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21449:100;:::o;23008:221::-;23084:7;23112:16;23120:7;23112;:16::i;:::-;23104:73;;;;-1:-1:-1;;;23104:73:0;;;;;;;:::i;:::-;-1:-1:-1;23197:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23197:24:0;;23008:221::o;43378:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22531:411::-;22612:13;22628:23;22643:7;22628:14;:23::i;:::-;22612:39;;22676:5;-1:-1:-1;;;;;22670:11:0;:2;-1:-1:-1;;;;;22670:11:0;;;22662:57;;;;-1:-1:-1;;;22662:57:0;;;;;;;:::i;:::-;22770:5;-1:-1:-1;;;;;22754:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22754:21:0;;:62;;;;22779:37;22796:5;22803:12;:10;:12::i;22779:37::-;22732:168;;;;-1:-1:-1;;;22732:168:0;;;;;;;:::i;:::-;22913:21;22922:2;22926:7;22913:8;:21::i;:::-;22531:411;;;:::o;43202:32::-;;;;:::o;35200:113::-;35288:10;:17;35200:113;:::o;43276:33::-;;;;:::o;23898:339::-;24093:41;24112:12;:10;:12::i;:::-;24126:7;24093:18;:41::i;:::-;24085:103;;;;-1:-1:-1;;;24085:103:0;;;;;;;:::i;:::-;24201:28;24211:4;24217:2;24221:7;24201:9;:28::i;34868:256::-;34965:7;35001:23;35018:5;35001:16;:23::i;:::-;34993:5;:31;34985:87;;;;-1:-1:-1;;;34985:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35090:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34868:256::o;45837:785::-;41941:12;:10;:12::i;:::-;-1:-1:-1;;;;;41930:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41930:23:0;;41922:68;;;;-1:-1:-1;;;41922:68:0;;;;;;;:::i;:::-;45982:7:::1;46003:42;46087:3;46059:25;:21;46083:1;46059:25;:::i;:::-;:31;;;;:::i;:::-;45995:100;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45981:114;;;46110:2;46102:11;;;::::0;::::1;;46444:7;46465;:5;:7::i;:::-;-1:-1:-1::0;;;;;46457:21:0::1;46486;46457:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46443:69;;;46527:2;46519:11;;;::::0;::::1;;42001:1;;45837:785::o:0;24308:185::-;24446:39;24463:4;24469:2;24473:7;24446:39;;;;;;;;;;;;:16;:39::i;44243:348::-;44318:16;44346:23;44372:17;44382:6;44372:9;:17::i;:::-;44346:43;;44396:25;44438:15;44424:30;;;;;;-1:-1:-1;;;44424:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44424:30:0;;44396:58;;44466:9;44461:103;44481:15;44477:1;:19;44461:103;;;44526:30;44546:6;44554:1;44526:19;:30::i;:::-;44512:8;44521:1;44512:11;;;;;;-1:-1:-1;;;44512:11:0;;;;;;;;;;;;;;;;;;:44;44498:3;;;;:::i;:::-;;;;44461:103;;;-1:-1:-1;44577:8:0;44243:348;-1:-1:-1;;;44243:348:0:o;45189:80::-;41941:12;:10;:12::i;:::-;-1:-1:-1;;;;;41930:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41930:23:0;;41922:68;;;;-1:-1:-1;;;41922:68:0;;;;;;;:::i;:::-;45248:4:::1;:15:::0;45189:80::o;35390:233::-;35465:7;35501:30;:28;:30::i;:::-;35493:5;:38;35485:95;;;;-1:-1:-1;;;35485:95:0;;;;;;;:::i;:::-;35598:10;35609:5;35598:17;;;;;;-1:-1:-1;;;35598:17:0;;;;;;;;;;;;;;;;;35591:24;;35390:233;;;:::o;43345:28::-;;;;;;;;;:::o;45525:98::-;41941:12;:10;:12::i;:::-;-1:-1:-1;;;;;41930:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41930:23:0;;41922:68;;;;-1:-1:-1;;;41922:68:0;;;;;;;:::i;:::-;45596:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;43314:26::-:0;;;;;;:::o;21143:239::-;21215:7;21251:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21251:16:0;21286:19;21278:73;;;;-1:-1:-1;;;21278:73:0;;;;;;;:::i;20873:208::-;20945:7;-1:-1:-1;;;;;20973:19:0;;20965:74;;;;-1:-1:-1;;;20965:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21057:16:0;;;;;:9;:16;;;;;;;20873:208::o;42361:94::-;41941:12;:10;:12::i;:::-;-1:-1:-1;;;;;41930:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41930:23:0;;41922:68;;;;-1:-1:-1;;;41922:68:0;;;;;;;:::i;:::-;42426:21:::1;42444:1;42426:9;:21::i;:::-;42361:94::o:0;45275:116::-;41941:12;:10;:12::i;:::-;-1:-1:-1;;;;;41930:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41930:23:0;;41922:68;;;;-1:-1:-1;;;41922:68:0;;;;;;;:::i;:::-;45352:13:::1;:33:::0;45275:116::o;41710:87::-;41783:6;;-1:-1:-1;;;;;41783:6:0;41710:87;:::o;21618:104::-;21674:13;21707:7;21700:14;;;;;:::i;43804:433::-;43861:14;43878:13;:11;:13::i;:::-;43907:6;;43861:30;;-1:-1:-1;43907:6:0;;43906:7;43898:16;;;;;;43943:1;43929:11;:15;43921:24;;;;;;43975:13;;43960:11;:28;;43952:37;;;;;;44028:9;;44004:20;44013:11;44004:6;:20;:::i;:::-;:33;;43996:42;;;;;;44065:7;:5;:7::i;:::-;-1:-1:-1;;;;;44051:21:0;:10;-1:-1:-1;;;;;44051:21:0;;44047:84;;44111:11;44104:4;;:18;;;;:::i;:::-;44091:9;:31;;44083:40;;;;;;44156:1;44139:93;44164:11;44159:1;:16;44139:93;;44191:33;44201:10;44213;44222:1;44213:6;:10;:::i;:::-;44191:9;:33::i;:::-;44177:3;;;;:::i;:::-;;;;44139:93;;23301:295;23416:12;:10;:12::i;:::-;-1:-1:-1;;;;;23404:24:0;:8;-1:-1:-1;;;;;23404:24:0;;;23396:62;;;;-1:-1:-1;;;23396:62:0;;;;;;;:::i;:::-;23516:8;23471:18;:32;23490:12;:10;:12::i;:::-;-1:-1:-1;;;;;23471:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23471:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23471:53:0;;;;;;;;;;;23555:12;:10;:12::i;:::-;-1:-1:-1;;;;;23540:48:0;;23579:8;23540:48;;;;;;:::i;:::-;;;;;;;;23301:295;;:::o;45116:65::-;41941:12;:10;:12::i;:::-;-1:-1:-1;;;;;41930:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41930:23:0;;41922:68;;;;-1:-1:-1;;;41922:68:0;;;;;;;:::i;:::-;45160:8:::1;:15:::0;;-1:-1:-1;;45160:15:0::1;;;::::0;;45116:65::o;24564:328::-;24739:41;24758:12;:10;:12::i;:::-;24772:7;24739:18;:41::i;:::-;24731:103;;;;-1:-1:-1;;;24731:103:0;;;;;;;:::i;:::-;24845:39;24859:4;24865:2;24869:7;24878:5;24845:13;:39::i;:::-;24564:328;;;;:::o;43160:37::-;;;;;;;:::i;44597:497::-;44695:13;44736:16;44744:7;44736;:16::i;:::-;44720:97;;;;-1:-1:-1;;;44720:97:0;;;;;;;:::i;:::-;44833:8;;;;;;;44830:62;;44870:14;44863:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44830:62;44900:28;44931:10;:8;:10::i;:::-;44900:41;;44986:1;44961:14;44955:28;:32;:133;;;;;;;;;;;;;;;;;45023:14;45039:18;:7;:16;:18::i;:::-;45059:13;45006:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44955:133;44948:140;44597:497;-1:-1:-1;;;44597:497:0:o;43239:32::-;;;;:::o;45629:122::-;41941:12;:10;:12::i;:::-;-1:-1:-1;;;;;41930:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41930:23:0;;41922:68;;;;-1:-1:-1;;;41922:68:0;;;;;;;:::i;:::-;45712:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;23667:164::-:0;-1:-1:-1;;;;;23788:25:0;;;23764:4;23788:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23667:164::o;45399:120::-;41941:12;:10;:12::i;:::-;-1:-1:-1;;;;;41930:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41930:23:0;;41922:68;;;;-1:-1:-1;;;41922:68:0;;;;;;;:::i;:::-;45481:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42610:192::-:0;41941:12;:10;:12::i;:::-;-1:-1:-1;;;;;41930:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41930:23:0;;41922:68;;;;-1:-1:-1;;;41922:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42699:22:0;::::1;42691:73;;;;-1:-1:-1::0;;;42691:73:0::1;;;;;;;:::i;:::-;42775:19;42785:8;42775:9;:19::i;:::-;42610:192:::0;:::o;20504:305::-;20606:4;-1:-1:-1;;;;;;20643:40:0;;-1:-1:-1;;;20643:40:0;;:105;;-1:-1:-1;;;;;;;20700:48:0;;-1:-1:-1;;;20700:48:0;20643:105;:158;;;;20765:36;20789:11;20765:23;:36::i;15912:98::-;15992:10;15912:98;:::o;26402:127::-;26467:4;26491:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26491:16:0;:30;;;26402:127::o;30384:174::-;30459:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30459:29:0;-1:-1:-1;;;;;30459:29:0;;;;;;;;:24;;30513:23;30459:24;30513:14;:23::i;:::-;-1:-1:-1;;;;;30504:46:0;;;;;;;;;;;30384:174;;:::o;26696:348::-;26789:4;26814:16;26822:7;26814;:16::i;:::-;26806:73;;;;-1:-1:-1;;;26806:73:0;;;;;;;:::i;:::-;26890:13;26906:23;26921:7;26906:14;:23::i;:::-;26890:39;;26959:5;-1:-1:-1;;;;;26948:16:0;:7;-1:-1:-1;;;;;26948:16:0;;:51;;;;26992:7;-1:-1:-1;;;;;26968:31:0;:20;26980:7;26968:11;:20::i;:::-;-1:-1:-1;;;;;26968:31:0;;26948:51;:87;;;;27003:32;27020:5;27027:7;27003:16;:32::i;:::-;26940:96;26696:348;-1:-1:-1;;;;26696:348:0:o;29688:578::-;29847:4;-1:-1:-1;;;;;29820:31:0;:23;29835:7;29820:14;:23::i;:::-;-1:-1:-1;;;;;29820:31:0;;29812:85;;;;-1:-1:-1;;;29812:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29916:16:0;;29908:65;;;;-1:-1:-1;;;29908:65:0;;;;;;;:::i;:::-;29986:39;30007:4;30013:2;30017:7;29986:20;:39::i;:::-;30090:29;30107:1;30111:7;30090:8;:29::i;:::-;-1:-1:-1;;;;;30132:15:0;;;;;;:9;:15;;;;;:20;;30151:1;;30132:15;:20;;30151:1;;30132:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30163:13:0;;;;;;:9;:13;;;;;:18;;30180:1;;30163:13;:18;;30180:1;;30163:18;:::i;:::-;;;;-1:-1:-1;;30192:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30192:21:0;-1:-1:-1;;;;;30192:21:0;;;;;;;;;30231:27;;30192:16;;30231:27;;;;;;;29688:578;;;:::o;42810:173::-;42885:6;;;-1:-1:-1;;;;;42902:17:0;;;-1:-1:-1;;;;;;42902:17:0;;;;;;;42935:40;;42885:6;;;42902:17;42885:6;;42935:40;;42866:16;;42935:40;42810:173;;:::o;27386:110::-;27462:26;27472:2;27476:7;27462:26;;;;;;;;;;;;:9;:26::i;25774:315::-;25931:28;25941:4;25947:2;25951:7;25931:9;:28::i;:::-;25978:48;26001:4;26007:2;26011:7;26020:5;25978:22;:48::i;:::-;25970:111;;;;-1:-1:-1;;;25970:111:0;;;;;;;:::i;43683:102::-;43743:13;43772:7;43765:14;;;;;:::i;16443:723::-;16499:13;16720:10;16716:53;;-1:-1:-1;16747:10:0;;;;;;;;;;;;-1:-1:-1;;;16747:10:0;;;;;;16716:53;16794:5;16779:12;16835:78;16842:9;;16835:78;;16868:8;;;;:::i;:::-;;-1:-1:-1;16891:10:0;;-1:-1:-1;16899:2:0;16891:10;;:::i;:::-;;;16835:78;;;16923:19;16955:6;16945:17;;;;;;-1:-1:-1;;;16945:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16945:17:0;;16923:39;;16973:154;16980:10;;16973:154;;17007:11;17017:1;17007:11;;:::i;:::-;;-1:-1:-1;17076:10:0;17084:2;17076:5;:10;:::i;:::-;17063:24;;:2;:24;:::i;:::-;17050:39;;17033:6;17040;17033:14;;;;;;-1:-1:-1;;;17033:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17033:56:0;;;;;;;;-1:-1:-1;17104:11:0;17113:2;17104:11;;:::i;:::-;;;16973:154;;19004:157;-1:-1:-1;;;;;;19113:40:0;;-1:-1:-1;;;19113:40:0;19004:157;;;:::o;36236:589::-;36380:45;36407:4;36413:2;36417:7;36380:26;:45::i;:::-;-1:-1:-1;;;;;36442:18:0;;36438:187;;36477:40;36509:7;36477:31;:40::i;:::-;36438:187;;;36547:2;-1:-1:-1;;;;;36539:10:0;:4;-1:-1:-1;;;;;36539:10:0;;36535:90;;36566:47;36599:4;36605:7;36566:32;:47::i;:::-;-1:-1:-1;;;;;36639:16:0;;36635:183;;36672:45;36709:7;36672:36;:45::i;:::-;36635:183;;;36745:4;-1:-1:-1;;;;;36739:10:0;:2;-1:-1:-1;;;;;36739:10:0;;36735:83;;36766:40;36794:2;36798:7;36766:27;:40::i;27723:321::-;27853:18;27859:2;27863:7;27853:5;:18::i;:::-;27904:54;27935:1;27939:2;27943:7;27952:5;27904:22;:54::i;:::-;27882:154;;;;-1:-1:-1;;;27882:154:0;;;;;;;:::i;31123:803::-;31278:4;31299:15;:2;-1:-1:-1;;;;;31299:13:0;;:15::i;:::-;31295:624;;;31351:2;-1:-1:-1;;;;;31335:36:0;;31372:12;:10;:12::i;:::-;31386:4;31392:7;31401:5;31335:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31335:72:0;;;;;;;;-1:-1:-1;;31335:72:0;;;;;;;;;;;;:::i;:::-;;;31331:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31581:13:0;;31577:272;;31624:60;;-1:-1:-1;;;31624:60:0;;;;;;;:::i;31577:272::-;31799:6;31793:13;31784:6;31780:2;31776:15;31769:38;31331:533;-1:-1:-1;;;;;;31458:55:0;-1:-1:-1;;;31458:55:0;;-1:-1:-1;31451:62:0;;31295:624;-1:-1:-1;31903:4:0;31123:803;;;;;;:::o;37548:164::-;37652:10;:17;;37625:24;;;;:15;:24;;;;;:44;;;37680:24;;;;;;;;;;;;37548:164::o;38339:988::-;38605:22;38655:1;38630:22;38647:4;38630:16;:22::i;:::-;:26;;;;:::i;:::-;38667:18;38688:26;;;:17;:26;;;;;;38605:51;;-1:-1:-1;38821:28:0;;;38817:328;;-1:-1:-1;;;;;38888:18:0;;38866:19;38888:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38939:30;;;;;;:44;;;39056:30;;:17;:30;;;;;:43;;;38817:328;-1:-1:-1;39241:26:0;;;;:17;:26;;;;;;;;39234:33;;;-1:-1:-1;;;;;39285:18:0;;;;;:12;:18;;;;;:34;;;;;;;39278:41;38339:988::o;39622:1079::-;39900:10;:17;39875:22;;39900:21;;39920:1;;39900:21;:::i;:::-;39932:18;39953:24;;;:15;:24;;;;;;40326:10;:26;;39875:46;;-1:-1:-1;39953:24:0;;39875:46;;40326:26;;;;-1:-1:-1;;;40326:26:0;;;;;;;;;;;;;;;;;40304:48;;40390:11;40365:10;40376;40365:22;;;;;;-1:-1:-1;;;40365:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40470:28;;;:15;:28;;;;;;;:41;;;40642:24;;;;;40635:31;40677:10;:16;;;;;-1:-1:-1;;;40677:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39622:1079;;;;:::o;37126:221::-;37211:14;37228:20;37245:2;37228:16;:20::i;:::-;-1:-1:-1;;;;;37259:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37304:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37126:221:0:o;28380:382::-;-1:-1:-1;;;;;28460:16:0;;28452:61;;;;-1:-1:-1;;;28452:61:0;;;;;;;:::i;:::-;28533:16;28541:7;28533;:16::i;:::-;28532:17;28524:58;;;;-1:-1:-1;;;28524:58:0;;;;;;;:::i;:::-;28595:45;28624:1;28628:2;28632:7;28595:20;:45::i;:::-;-1:-1:-1;;;;;28653:13:0;;;;;;:9;:13;;;;;:18;;28670:1;;28653:13;:18;;28670:1;;28653:18;:::i;:::-;;;;-1:-1:-1;;28682:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28682:21:0;-1:-1:-1;;;;;28682:21:0;;;;;;;;28721:33;;28682:16;;;28721:33;;28682:16;;28721:33;28380:382;;:::o;8168:387::-;8491:20;8539:8;;;8168:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:1;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:1:o;4724:1532::-;;4986:6;4980:13;5012:4;5025:51;5069:6;5064:3;5059:2;5051:6;5047:15;5025:51;:::i;:::-;5139:13;;5098:16;;;;5161:55;5139:13;5098:16;5183:15;;;5161:55;:::i;:::-;5307:13;;5238:20;;;5278:3;;5384:1;5369:17;;5405:1;5441:18;;;;5468:2;;5546:4;5536:8;5532:19;5520:31;;5468:2;5609;5599:8;5596:16;5576:18;5573:40;5570:2;;;-1:-1:-1;;;5636:33:1;;5692:4;5689:1;5682:15;5722:4;5643:3;5710:17;5570:2;5753:18;5780:110;;;;5904:1;5899:332;;;;5746:485;;5780:110;-1:-1:-1;;5815:24:1;;5801:39;;5860:20;;;;-1:-1:-1;5780:110:1;;5899:332;5935:39;5967:6;5935:39;:::i;:::-;5996:3;6012:169;6026:8;6023:1;6020:15;6012:169;;;6108:14;;6093:13;;;6086:37;6151:16;;;;6043:10;;6012:169;;;6016:3;;6212:8;6205:5;6201:20;6194:27;;5746:485;-1:-1:-1;6247:3:1;;4956:1300;-1:-1:-1;;;;;;;;;;;4956:1300:1:o;6261:205::-;6461:3;6452:14::o;6471:203::-;-1:-1:-1;;;;;6635:32:1;;;;6617:51;;6605:2;6590:18;;6572:102::o;6679:490::-;-1:-1:-1;;;;;6948:15:1;;;6930:34;;7000:15;;6995:2;6980:18;;6973:43;7047:2;7032:18;;7025:34;;;7095:3;7090:2;7075:18;;7068:31;;;6679:490;;7116:47;;7143:19;;7135:6;7116:47;:::i;:::-;7108:55;6882:287;-1:-1:-1;;;;;;6882:287:1:o;7174:635::-;7345:2;7397:21;;;7467:13;;7370:18;;;7489:22;;;7174:635;;7345:2;7568:15;;;;7542:2;7527:18;;;7174:635;7614:169;7628:6;7625:1;7622:13;7614:169;;;7689:13;;7677:26;;7758:15;;;;7723:12;;;;7650:1;7643:9;7614:169;;;-1:-1:-1;7800:3:1;;7325:484;-1:-1:-1;;;;;;7325:484:1:o;7814:187::-;7979:14;;7972:22;7954:41;;7942:2;7927:18;;7909:92::o;8006:221::-;;8155:2;8144:9;8137:21;8175:46;8217:2;8206:9;8202:18;8194:6;8175:46;:::i;8232:407::-;8434:2;8416:21;;;8473:2;8453:18;;;8446:30;8512:34;8507:2;8492:18;;8485:62;-1:-1:-1;;;8578:2:1;8563:18;;8556:41;8629:3;8614:19;;8406:233::o;8644:414::-;8846:2;8828:21;;;8885:2;8865:18;;;8858:30;8924:34;8919:2;8904:18;;8897:62;-1:-1:-1;;;8990:2:1;8975:18;;8968:48;9048:3;9033:19;;8818:240::o;9063:402::-;9265:2;9247:21;;;9304:2;9284:18;;;9277:30;9343:34;9338:2;9323:18;;9316:62;-1:-1:-1;;;9409:2:1;9394:18;;9387:36;9455:3;9440:19;;9237:228::o;9470:352::-;9672:2;9654:21;;;9711:2;9691:18;;;9684:30;9750;9745:2;9730:18;;9723:58;9813:2;9798:18;;9644:178::o;9827:400::-;10029:2;10011:21;;;10068:2;10048:18;;;10041:30;10107:34;10102:2;10087:18;;10080:62;-1:-1:-1;;;10173:2:1;10158:18;;10151:34;10217:3;10202:19;;10001:226::o;10232:349::-;10434:2;10416:21;;;10473:2;10453:18;;;10446:30;10512:27;10507:2;10492:18;;10485:55;10572:2;10557:18;;10406:175::o;10586:408::-;10788:2;10770:21;;;10827:2;10807:18;;;10800:30;10866:34;10861:2;10846:18;;10839:62;-1:-1:-1;;;10932:2:1;10917:18;;10910:42;10984:3;10969:19;;10760:234::o;10999:420::-;11201:2;11183:21;;;11240:2;11220:18;;;11213:30;11279:34;11274:2;11259:18;;11252:62;11350:26;11345:2;11330:18;;11323:54;11409:3;11394:19;;11173:246::o;11424:406::-;11626:2;11608:21;;;11665:2;11645:18;;;11638:30;11704:34;11699:2;11684:18;;11677:62;-1:-1:-1;;;11770:2:1;11755:18;;11748:40;11820:3;11805:19;;11598:232::o;11835:405::-;12037:2;12019:21;;;12076:2;12056:18;;;12049:30;12115:34;12110:2;12095:18;;12088:62;-1:-1:-1;;;12181:2:1;12166:18;;12159:39;12230:3;12215:19;;12009:231::o;12245:356::-;12447:2;12429:21;;;12466:18;;;12459:30;12525:34;12520:2;12505:18;;12498:62;12592:2;12577:18;;12419:182::o;12606:408::-;12808:2;12790:21;;;12847:2;12827:18;;;12820:30;12886:34;12881:2;12866:18;;12859:62;-1:-1:-1;;;12952:2:1;12937:18;;12930:42;13004:3;12989:19;;12780:234::o;13019:356::-;13221:2;13203:21;;;13240:18;;;13233:30;13299:34;13294:2;13279:18;;13272:62;13366:2;13351:18;;13193:182::o;13380:405::-;13582:2;13564:21;;;13621:2;13601:18;;;13594:30;13660:34;13655:2;13640:18;;13633:62;-1:-1:-1;;;13726:2:1;13711:18;;13704:39;13775:3;13760:19;;13554:231::o;13790:411::-;13992:2;13974:21;;;14031:2;14011:18;;;14004:30;14070:34;14065:2;14050:18;;14043:62;-1:-1:-1;;;14136:2:1;14121:18;;14114:45;14191:3;14176:19;;13964:237::o;14206:397::-;14408:2;14390:21;;;14447:2;14427:18;;;14420:30;14486:34;14481:2;14466:18;;14459:62;-1:-1:-1;;;14552:2:1;14537:18;;14530:31;14593:3;14578:19;;14380:223::o;14608:413::-;14810:2;14792:21;;;14849:2;14829:18;;;14822:30;14888:34;14883:2;14868:18;;14861:62;-1:-1:-1;;;14954:2:1;14939:18;;14932:47;15011:3;14996:19;;14782:239::o;15026:408::-;15228:2;15210:21;;;15267:2;15247:18;;;15240:30;15306:34;15301:2;15286:18;;15279:62;-1:-1:-1;;;15372:2:1;15357:18;;15350:42;15424:3;15409:19;;15200:234::o;15439:177::-;15585:25;;;15573:2;15558:18;;15540:76::o;15621:129::-;;15689:17;;;15739:4;15723:21;;;15679:71::o;15755:128::-;;15826:1;15822:6;15819:1;15816:13;15813:2;;;15832:18;;:::i;:::-;-1:-1:-1;15868:9:1;;15803:80::o;15888:120::-;;15954:1;15944:2;;15959:18;;:::i;:::-;-1:-1:-1;15993:9:1;;15934:74::o;16013:168::-;;16119:1;16115;16111:6;16107:14;16104:1;16101:21;16096:1;16089:9;16082:17;16078:45;16075:2;;;16126:18;;:::i;:::-;-1:-1:-1;16166:9:1;;16065:116::o;16186:125::-;;16254:1;16251;16248:8;16245:2;;;16259:18;;:::i;:::-;-1:-1:-1;16296:9:1;;16235:76::o;16316:258::-;16388:1;16398:113;16412:6;16409:1;16406:13;16398:113;;;16488:11;;;16482:18;16469:11;;;16462:39;16434:2;16427:10;16398:113;;;16529:6;16526:1;16523:13;16520:2;;;-1:-1:-1;;16564:1:1;16546:16;;16539:27;16369:205::o;16579:380::-;16664:1;16654:12;;16711:1;16701:12;;;16722:2;;16776:4;16768:6;16764:17;16754:27;;16722:2;16829;16821:6;16818:14;16798:18;16795:38;16792:2;;;16875:10;16870:3;16866:20;16863:1;16856:31;16910:4;16907:1;16900:15;16938:4;16935:1;16928:15;16792:2;;16634:325;;;:::o;16964:135::-;;-1:-1:-1;;17024:17:1;;17021:2;;;17044:18;;:::i;:::-;-1:-1:-1;17091:1:1;17080:13;;17011:88::o;17104:112::-;;17162:1;17152:2;;17167:18;;:::i;:::-;-1:-1:-1;17201:9:1;;17142:74::o;17221:127::-;17282:10;17277:3;17273:20;17270:1;17263:31;17313:4;17310:1;17303:15;17337:4;17334:1;17327:15;17353:127;17414:10;17409:3;17405:20;17402:1;17395:31;17445:4;17442:1;17435:15;17469:4;17466:1;17459:15;17485:127;17546:10;17541:3;17537:20;17534:1;17527:31;17577:4;17574:1;17567:15;17601:4;17598:1;17591:15;17617:133;-1:-1:-1;;;;;;17693:32:1;;17683:43;;17673:2;;17740:1;17737;17730:12

Swarm Source

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