ETH Price: $2,526.51 (+0.31%)

Token

GlassGalaxy (GGXY)
 

Overview

Max Total Supply

112 GGXY

Holders

65

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GGXY
0x2a2cef2a736bf75e43b465a5f4efd7fca4347f00
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:
GlassGalaxy

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-20
*/

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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



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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

// File: node_modules\@openzeppelin\contracts\token\ERC721\ERC721.sol



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;
    
    string private _baseURI;

    // 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_, string memory baseURI_) {
        _name = name_;
        _symbol = symbol_;
        _baseURI = baseURI_;
    }

    /**
     * @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}.
     */
    /**
     * @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 = _getBaseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : "";
    }

    function _getBaseURI() internal view virtual returns (string memory) {
        return _baseURI;
    }
    /**
     * @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 _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }
    /**
     * @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.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: node_modules\@openzeppelin\contracts\token\ERC721\extensions\IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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\ERC721Enumerable.sol



pragma solidity ^0.8.0;



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

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

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

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


    /**
     * @dev See {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 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) internal{
        _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\Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

pragma solidity 0.8.6;

contract GlassGalaxy is ERC721Enumerable, Ownable {
    uint256 public constant Max_GlassPlanets_Purchase = 20;

    // Max supply of planets
    uint256 public constant Max_Planets = 10000;
    uint256 public Current_PlanetId = 30;
    uint256 public Current_Giveaway_Id = 0;

    // Public sale price - 0.03 ETH
    uint256 public GlassPlanetPrice = 0.03 ether;

    bool public saleIsActive = false;

    constructor() ERC721("GlassGalaxy", "GGXY", "ipfs://QmapapkZkMKvp32GfybkaxAdPGExGNYq8G8G8WZShWhwcJ/") {}

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(owner()), balance);
    }


function setPrice(uint256 price) external onlyOwner{
    GlassPlanetPrice = price;
}
function mintForGiveaways(uint8 mintCount) external onlyOwner
    {
        require(
            Current_Giveaway_Id < 30,
            "Minting would exceed max supply"
        );
        require(
            mintCount > 0,
            "Please choose a number greater than 0"
        );


        for (uint256 i = 0; i < mintCount; i++) {
            if (Current_Giveaway_Id < 30) {
                Current_Giveaway_Id++;
                _safeMint(msg.sender, Current_Giveaway_Id);
                _addTokenToAllTokensEnumeration(Current_Giveaway_Id);
            }

        }

    }
    function mintPlanet(uint8 mintCount)
        external
        payable
    {
        require(
            Current_PlanetId + mintCount <= Max_Planets,
            "Minting would exceed max supply"
        );
        require(
            mintCount > 0,
            "Please choose a number greater than 0"
        );
        require(saleIsActive==true);
        require(
            mintCount <= Max_GlassPlanets_Purchase,
            "Requested number exceeds maximum"
        );

        require(GlassPlanetPrice*mintCount <= msg.value,
        "Ether value sent is not correct"
        );

        for (uint256 i = 0; i < mintCount; i++) {
            if (Current_PlanetId < Max_Planets) {
                Current_PlanetId++;
                _safeMint(msg.sender, Current_PlanetId);
                _addTokenToAllTokensEnumeration(Current_PlanetId);
            }

        }

        if (msg.value > GlassPlanetPrice*mintCount) {
            Address.sendValue(payable(msg.sender), msg.value - (GlassPlanetPrice*mintCount));
        }
    }
    function flipSaleState() external onlyOwner {
        saleIsActive = !saleIsActive;
    }
    function setBaseURI(string memory baseURI) external onlyOwner {
        _setBaseURI(baseURI);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Current_Giveaway_Id","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Current_PlanetId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GlassPlanetPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Max_GlassPlanets_Purchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Max_Planets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintCount","type":"uint8"}],"name":"mintForGiveaways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintCount","type":"uint8"}],"name":"mintPlanet","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052601e600c556000600d55666a94d74f430000600e55600f805460ff191690553480156200003057600080fd5b506040518060400160405280600b81526020016a476c61737347616c61787960a81b815250604051806040016040528060048152602001634747585960e01b815250604051806060016040528060368152602001620022ca603691398251620000a190600090602086019062000147565b508151620000b790600190602085019062000147565b508051620000cd90600290602084019062000147565b50505050620000eb620000e5620000f160201b60201c565b620000f5565b6200022a565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015590620001ed565b90600052602060002090601f016020900481019282620001795760008555620001c4565b82601f106200019457805160ff1916838001178555620001c4565b82800160010185558215620001c4579182015b82811115620001c4578251825591602001919060010190620001a7565b50620001d2929150620001d6565b5090565b5b80821115620001d25760008155600101620001d7565b600181811c908216806200020257607f821691505b602082108114156200022457634e487b7160e01b600052602260045260246000fd5b50919050565b612090806200023a6000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063b3037d5111610095578063eb8d244411610064578063eb8d24441461053c578063ebd48ec214610556578063f0cb656a1461056c578063f2fde38b1461058257600080fd5b8063b3037d511461049d578063b88d4fde146104b3578063c87b56dd146104d3578063e985e9c5146104f357600080fd5b806391b7f5ed116100d157806391b7f5ed1461043357806395d89b411461045357806399a7d6b014610468578063a22cb4651461047d57600080fd5b806370a08231146103cd578063715018a6146103ed5780638da5cb5b146104025780638e9253f91461042057600080fd5b80632f745c591161017a5780634f6ccce7116101495780634f6ccce71461034d57806355f804b31461036d5780636352211e1461038d5780636e62cfd4146103ad57600080fd5b80632f745c59146102e357806334918dfd146103035780633ccfd60b1461031857806342842e0e1461032d57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102ad5780632a10dbed146102cd57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611c5d565b6105a2565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105f4565b6040516102099190611dc4565b34801561024057600080fd5b5061025461024f366004611ce0565b610686565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611c33565b610720565b005b34801561029a57600080fd5b506009545b604051908152602001610209565b3480156102b957600080fd5b5061028c6102c8366004611b3f565b610836565b3480156102d957600080fd5b5061029f600d5481565b3480156102ef57600080fd5b5061029f6102fe366004611c33565b610867565b34801561030f57600080fd5b5061028c6108fd565b34801561032457600080fd5b5061028c61093b565b34801561033957600080fd5b5061028c610348366004611b3f565b610984565b34801561035957600080fd5b5061029f610368366004611ce0565b61099f565b34801561037957600080fd5b5061028c610388366004611c97565b610a32565b34801561039957600080fd5b506102546103a8366004611ce0565b610a65565b3480156103b957600080fd5b5061028c6103c8366004611cf9565b610adc565b3480156103d957600080fd5b5061029f6103e8366004611af1565b610bd6565b3480156103f957600080fd5b5061028c610c5d565b34801561040e57600080fd5b50600b546001600160a01b0316610254565b61028c61042e366004611cf9565b610c93565b34801561043f57600080fd5b5061028c61044e366004611ce0565b610e75565b34801561045f57600080fd5b50610227610ea4565b34801561047457600080fd5b5061029f601481565b34801561048957600080fd5b5061028c610498366004611bf7565b610eb3565b3480156104a957600080fd5b5061029f61271081565b3480156104bf57600080fd5b5061028c6104ce366004611b7b565b610f78565b3480156104df57600080fd5b506102276104ee366004611ce0565b610fb0565b3480156104ff57600080fd5b506101fd61050e366004611b0c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561054857600080fd5b50600f546101fd9060ff1681565b34801561056257600080fd5b5061029f600c5481565b34801561057857600080fd5b5061029f600e5481565b34801561058e57600080fd5b5061028c61059d366004611af1565b61108b565b60006001600160e01b031982166380ac58cd60e01b14806105d357506001600160e01b03198216635b5e139f60e01b145b806105ee57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461060390611f82565b80601f016020809104026020016040519081016040528092919081815260200182805461062f90611f82565b801561067c5780601f106106515761010080835404028352916020019161067c565b820191906000526020600020905b81548152906001019060200180831161065f57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061072b82610a65565b9050806001600160a01b0316836001600160a01b031614156107995760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106fb565b336001600160a01b03821614806107b557506107b5813361050e565b6108275760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106fb565b6108318383611123565b505050565b6108403382611191565b61085c5760405162461bcd60e51b81526004016106fb90611ea3565b610831838383611288565b600061087283610bd6565b82106108d45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106fb565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b031633146109275760405162461bcd60e51b81526004016106fb90611e6e565b600f805460ff19811660ff90911615179055565b600b546001600160a01b031633146109655760405162461bcd60e51b81526004016106fb90611e6e565b4761098161097b600b546001600160a01b031690565b82611428565b50565b61083183838360405180602001604052806000815250610f78565b60006109aa60095490565b8210610a0d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106fb565b60098281548110610a2057610a20612018565b90600052602060002001549050919050565b600b546001600160a01b03163314610a5c5760405162461bcd60e51b81526004016106fb90611e6e565b61098181611541565b6000818152600360205260408120546001600160a01b0316806105ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106fb565b600b546001600160a01b03163314610b065760405162461bcd60e51b81526004016106fb90611e6e565b601e600d5410610b585760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c790060448201526064016106fb565b60008160ff1611610b7b5760405162461bcd60e51b81526004016106fb90611dd7565b60005b8160ff16811015610bd257601e600d541015610bc057600d8054906000610ba483611fbd565b9190505550610bb533600d54611554565b610bc0600d5461156e565b80610bca81611fbd565b915050610b7e565b5050565b60006001600160a01b038216610c415760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106fb565b506001600160a01b031660009081526004602052604090205490565b600b546001600160a01b03163314610c875760405162461bcd60e51b81526004016106fb90611e6e565b610c9160006115b2565b565b6127108160ff16600c54610ca79190611ef4565b1115610cf55760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c790060448201526064016106fb565b60008160ff1611610d185760405162461bcd60e51b81526004016106fb90611dd7565b600f5460ff161515600114610d2c57600080fd5b60148160ff161115610d805760405162461bcd60e51b815260206004820181905260248201527f526571756573746564206e756d6265722065786365656473206d6178696d756d60448201526064016106fb565b348160ff16600e54610d929190611f20565b1115610de05760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016106fb565b60005b8160ff16811015610e3857612710600c541015610e2657600c8054906000610e0a83611fbd565b9190505550610e1b33600c54611554565b610e26600c5461156e565b80610e3081611fbd565b915050610de3565b508060ff16600e54610e4a9190611f20565b34111561098157610981338260ff16600e54610e669190611f20565b610e709034611f3f565b611428565b600b546001600160a01b03163314610e9f5760405162461bcd60e51b81526004016106fb90611e6e565b600e55565b60606001805461060390611f82565b6001600160a01b038216331415610f0c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106fb565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f823383611191565b610f9e5760405162461bcd60e51b81526004016106fb90611ea3565b610faa84848484611604565b50505050565b6000818152600360205260409020546060906001600160a01b031661102f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106fb565b6000611039611637565b905060008151116110595760405180602001604052806000815250611084565b8061106384611646565b604051602001611074929190611d48565b6040516020818303038152906040525b9392505050565b600b546001600160a01b031633146110b55760405162461bcd60e51b81526004016106fb90611e6e565b6001600160a01b03811661111a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106fb565b610981816115b2565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061115882610a65565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b031661120a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fb565b600061121583610a65565b9050806001600160a01b0316846001600160a01b031614806112505750836001600160a01b031661124584610686565b6001600160a01b0316145b8061128057506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661129b82610a65565b6001600160a01b0316146113035760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106fb565b6001600160a01b0382166113655760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106fb565b611370600082611123565b6001600160a01b0383166000908152600460205260408120805460019290611399908490611f3f565b90915550506001600160a01b03821660009081526004602052604081208054600192906113c7908490611ef4565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156114785760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106fb565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114c5576040519150601f19603f3d011682016040523d82523d6000602084013e6114ca565b606091505b50509050806108315760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106fb565b8051610bd29060029060208401906119c6565b610bd2828260405180602001604052806000815250611744565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61160f848484611288565b61161b84848484611777565b610faa5760405162461bcd60e51b81526004016106fb90611e1c565b60606002805461060390611f82565b60608161166a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611694578061167e81611fbd565b915061168d9050600a83611f0c565b915061166e565b60008167ffffffffffffffff8111156116af576116af61202e565b6040519080825280601f01601f1916602001820160405280156116d9576020820181803683370190505b5090505b8415611280576116ee600183611f3f565b91506116fb600a86611fd8565b611706906030611ef4565b60f81b81838151811061171b5761171b612018565b60200101906001600160f81b031916908160001a90535061173d600a86611f0c565b94506116dd565b61174e8383611884565b61175b6000848484611777565b6108315760405162461bcd60e51b81526004016106fb90611e1c565b60006001600160a01b0384163b1561187957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117bb903390899088908890600401611d87565b602060405180830381600087803b1580156117d557600080fd5b505af1925050508015611805575060408051601f3d908101601f1916820190925261180291810190611c7a565b60015b61185f573d808015611833576040519150601f19603f3d011682016040523d82523d6000602084013e611838565b606091505b5080516118575760405162461bcd60e51b81526004016106fb90611e1c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611280565b506001949350505050565b6001600160a01b0382166118da5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106fb565b6000818152600360205260409020546001600160a01b03161561193f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106fb565b6001600160a01b0382166000908152600460205260408120805460019290611968908490611ef4565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546119d290611f82565b90600052602060002090601f0160209004810192826119f45760008555611a3a565b82601f10611a0d57805160ff1916838001178555611a3a565b82800160010185558215611a3a579182015b82811115611a3a578251825591602001919060010190611a1f565b50611a46929150611a4a565b5090565b5b80821115611a465760008155600101611a4b565b600067ffffffffffffffff80841115611a7a57611a7a61202e565b604051601f8501601f19908116603f01168101908282118183101715611aa257611aa261202e565b81604052809350858152868686011115611abb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611aec57600080fd5b919050565b600060208284031215611b0357600080fd5b61108482611ad5565b60008060408385031215611b1f57600080fd5b611b2883611ad5565b9150611b3660208401611ad5565b90509250929050565b600080600060608486031215611b5457600080fd5b611b5d84611ad5565b9250611b6b60208501611ad5565b9150604084013590509250925092565b60008060008060808587031215611b9157600080fd5b611b9a85611ad5565b9350611ba860208601611ad5565b925060408501359150606085013567ffffffffffffffff811115611bcb57600080fd5b8501601f81018713611bdc57600080fd5b611beb87823560208401611a5f565b91505092959194509250565b60008060408385031215611c0a57600080fd5b611c1383611ad5565b915060208301358015158114611c2857600080fd5b809150509250929050565b60008060408385031215611c4657600080fd5b611c4f83611ad5565b946020939093013593505050565b600060208284031215611c6f57600080fd5b813561108481612044565b600060208284031215611c8c57600080fd5b815161108481612044565b600060208284031215611ca957600080fd5b813567ffffffffffffffff811115611cc057600080fd5b8201601f81018413611cd157600080fd5b61128084823560208401611a5f565b600060208284031215611cf257600080fd5b5035919050565b600060208284031215611d0b57600080fd5b813560ff8116811461108457600080fd5b60008151808452611d34816020860160208601611f56565b601f01601f19169290920160200192915050565b60008351611d5a818460208801611f56565b835190830190611d6e818360208801611f56565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dba90830184611d1c565b9695505050505050565b6020815260006110846020830184611d1c565b60208082526025908201527f506c656173652063686f6f73652061206e756d62657220677265617465722074604082015264068616e20360dc1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f0757611f07611fec565b500190565b600082611f1b57611f1b612002565b500490565b6000816000190483118215151615611f3a57611f3a611fec565b500290565b600082821015611f5157611f51611fec565b500390565b60005b83811015611f71578181015183820152602001611f59565b83811115610faa5750506000910152565b600181811c90821680611f9657607f821691505b60208210811415611fb757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fd157611fd1611fec565b5060010190565b600082611fe757611fe7612002565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461098157600080fdfea26469706673582212201a5b5a531db46725092d652a09d65ec470b35e5121ce4b69b25a0861cb6e8edf64736f6c63430008060033697066733a2f2f516d617061706b5a6b4d4b76703332476679626b6178416450474578474e59713847384738575a5368576877634a2f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063b3037d5111610095578063eb8d244411610064578063eb8d24441461053c578063ebd48ec214610556578063f0cb656a1461056c578063f2fde38b1461058257600080fd5b8063b3037d511461049d578063b88d4fde146104b3578063c87b56dd146104d3578063e985e9c5146104f357600080fd5b806391b7f5ed116100d157806391b7f5ed1461043357806395d89b411461045357806399a7d6b014610468578063a22cb4651461047d57600080fd5b806370a08231146103cd578063715018a6146103ed5780638da5cb5b146104025780638e9253f91461042057600080fd5b80632f745c591161017a5780634f6ccce7116101495780634f6ccce71461034d57806355f804b31461036d5780636352211e1461038d5780636e62cfd4146103ad57600080fd5b80632f745c59146102e357806334918dfd146103035780633ccfd60b1461031857806342842e0e1461032d57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102ad5780632a10dbed146102cd57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611c5d565b6105a2565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105f4565b6040516102099190611dc4565b34801561024057600080fd5b5061025461024f366004611ce0565b610686565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611c33565b610720565b005b34801561029a57600080fd5b506009545b604051908152602001610209565b3480156102b957600080fd5b5061028c6102c8366004611b3f565b610836565b3480156102d957600080fd5b5061029f600d5481565b3480156102ef57600080fd5b5061029f6102fe366004611c33565b610867565b34801561030f57600080fd5b5061028c6108fd565b34801561032457600080fd5b5061028c61093b565b34801561033957600080fd5b5061028c610348366004611b3f565b610984565b34801561035957600080fd5b5061029f610368366004611ce0565b61099f565b34801561037957600080fd5b5061028c610388366004611c97565b610a32565b34801561039957600080fd5b506102546103a8366004611ce0565b610a65565b3480156103b957600080fd5b5061028c6103c8366004611cf9565b610adc565b3480156103d957600080fd5b5061029f6103e8366004611af1565b610bd6565b3480156103f957600080fd5b5061028c610c5d565b34801561040e57600080fd5b50600b546001600160a01b0316610254565b61028c61042e366004611cf9565b610c93565b34801561043f57600080fd5b5061028c61044e366004611ce0565b610e75565b34801561045f57600080fd5b50610227610ea4565b34801561047457600080fd5b5061029f601481565b34801561048957600080fd5b5061028c610498366004611bf7565b610eb3565b3480156104a957600080fd5b5061029f61271081565b3480156104bf57600080fd5b5061028c6104ce366004611b7b565b610f78565b3480156104df57600080fd5b506102276104ee366004611ce0565b610fb0565b3480156104ff57600080fd5b506101fd61050e366004611b0c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561054857600080fd5b50600f546101fd9060ff1681565b34801561056257600080fd5b5061029f600c5481565b34801561057857600080fd5b5061029f600e5481565b34801561058e57600080fd5b5061028c61059d366004611af1565b61108b565b60006001600160e01b031982166380ac58cd60e01b14806105d357506001600160e01b03198216635b5e139f60e01b145b806105ee57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461060390611f82565b80601f016020809104026020016040519081016040528092919081815260200182805461062f90611f82565b801561067c5780601f106106515761010080835404028352916020019161067c565b820191906000526020600020905b81548152906001019060200180831161065f57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061072b82610a65565b9050806001600160a01b0316836001600160a01b031614156107995760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106fb565b336001600160a01b03821614806107b557506107b5813361050e565b6108275760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106fb565b6108318383611123565b505050565b6108403382611191565b61085c5760405162461bcd60e51b81526004016106fb90611ea3565b610831838383611288565b600061087283610bd6565b82106108d45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106fb565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b031633146109275760405162461bcd60e51b81526004016106fb90611e6e565b600f805460ff19811660ff90911615179055565b600b546001600160a01b031633146109655760405162461bcd60e51b81526004016106fb90611e6e565b4761098161097b600b546001600160a01b031690565b82611428565b50565b61083183838360405180602001604052806000815250610f78565b60006109aa60095490565b8210610a0d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106fb565b60098281548110610a2057610a20612018565b90600052602060002001549050919050565b600b546001600160a01b03163314610a5c5760405162461bcd60e51b81526004016106fb90611e6e565b61098181611541565b6000818152600360205260408120546001600160a01b0316806105ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106fb565b600b546001600160a01b03163314610b065760405162461bcd60e51b81526004016106fb90611e6e565b601e600d5410610b585760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c790060448201526064016106fb565b60008160ff1611610b7b5760405162461bcd60e51b81526004016106fb90611dd7565b60005b8160ff16811015610bd257601e600d541015610bc057600d8054906000610ba483611fbd565b9190505550610bb533600d54611554565b610bc0600d5461156e565b80610bca81611fbd565b915050610b7e565b5050565b60006001600160a01b038216610c415760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106fb565b506001600160a01b031660009081526004602052604090205490565b600b546001600160a01b03163314610c875760405162461bcd60e51b81526004016106fb90611e6e565b610c9160006115b2565b565b6127108160ff16600c54610ca79190611ef4565b1115610cf55760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c790060448201526064016106fb565b60008160ff1611610d185760405162461bcd60e51b81526004016106fb90611dd7565b600f5460ff161515600114610d2c57600080fd5b60148160ff161115610d805760405162461bcd60e51b815260206004820181905260248201527f526571756573746564206e756d6265722065786365656473206d6178696d756d60448201526064016106fb565b348160ff16600e54610d929190611f20565b1115610de05760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016106fb565b60005b8160ff16811015610e3857612710600c541015610e2657600c8054906000610e0a83611fbd565b9190505550610e1b33600c54611554565b610e26600c5461156e565b80610e3081611fbd565b915050610de3565b508060ff16600e54610e4a9190611f20565b34111561098157610981338260ff16600e54610e669190611f20565b610e709034611f3f565b611428565b600b546001600160a01b03163314610e9f5760405162461bcd60e51b81526004016106fb90611e6e565b600e55565b60606001805461060390611f82565b6001600160a01b038216331415610f0c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106fb565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f823383611191565b610f9e5760405162461bcd60e51b81526004016106fb90611ea3565b610faa84848484611604565b50505050565b6000818152600360205260409020546060906001600160a01b031661102f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106fb565b6000611039611637565b905060008151116110595760405180602001604052806000815250611084565b8061106384611646565b604051602001611074929190611d48565b6040516020818303038152906040525b9392505050565b600b546001600160a01b031633146110b55760405162461bcd60e51b81526004016106fb90611e6e565b6001600160a01b03811661111a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106fb565b610981816115b2565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061115882610a65565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b031661120a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fb565b600061121583610a65565b9050806001600160a01b0316846001600160a01b031614806112505750836001600160a01b031661124584610686565b6001600160a01b0316145b8061128057506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661129b82610a65565b6001600160a01b0316146113035760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106fb565b6001600160a01b0382166113655760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106fb565b611370600082611123565b6001600160a01b0383166000908152600460205260408120805460019290611399908490611f3f565b90915550506001600160a01b03821660009081526004602052604081208054600192906113c7908490611ef4565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156114785760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106fb565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114c5576040519150601f19603f3d011682016040523d82523d6000602084013e6114ca565b606091505b50509050806108315760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106fb565b8051610bd29060029060208401906119c6565b610bd2828260405180602001604052806000815250611744565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61160f848484611288565b61161b84848484611777565b610faa5760405162461bcd60e51b81526004016106fb90611e1c565b60606002805461060390611f82565b60608161166a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611694578061167e81611fbd565b915061168d9050600a83611f0c565b915061166e565b60008167ffffffffffffffff8111156116af576116af61202e565b6040519080825280601f01601f1916602001820160405280156116d9576020820181803683370190505b5090505b8415611280576116ee600183611f3f565b91506116fb600a86611fd8565b611706906030611ef4565b60f81b81838151811061171b5761171b612018565b60200101906001600160f81b031916908160001a90535061173d600a86611f0c565b94506116dd565b61174e8383611884565b61175b6000848484611777565b6108315760405162461bcd60e51b81526004016106fb90611e1c565b60006001600160a01b0384163b1561187957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117bb903390899088908890600401611d87565b602060405180830381600087803b1580156117d557600080fd5b505af1925050508015611805575060408051601f3d908101601f1916820190925261180291810190611c7a565b60015b61185f573d808015611833576040519150601f19603f3d011682016040523d82523d6000602084013e611838565b606091505b5080516118575760405162461bcd60e51b81526004016106fb90611e1c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611280565b506001949350505050565b6001600160a01b0382166118da5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106fb565b6000818152600360205260409020546001600160a01b03161561193f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106fb565b6001600160a01b0382166000908152600460205260408120805460019290611968908490611ef4565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546119d290611f82565b90600052602060002090601f0160209004810192826119f45760008555611a3a565b82601f10611a0d57805160ff1916838001178555611a3a565b82800160010185558215611a3a579182015b82811115611a3a578251825591602001919060010190611a1f565b50611a46929150611a4a565b5090565b5b80821115611a465760008155600101611a4b565b600067ffffffffffffffff80841115611a7a57611a7a61202e565b604051601f8501601f19908116603f01168101908282118183101715611aa257611aa261202e565b81604052809350858152868686011115611abb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611aec57600080fd5b919050565b600060208284031215611b0357600080fd5b61108482611ad5565b60008060408385031215611b1f57600080fd5b611b2883611ad5565b9150611b3660208401611ad5565b90509250929050565b600080600060608486031215611b5457600080fd5b611b5d84611ad5565b9250611b6b60208501611ad5565b9150604084013590509250925092565b60008060008060808587031215611b9157600080fd5b611b9a85611ad5565b9350611ba860208601611ad5565b925060408501359150606085013567ffffffffffffffff811115611bcb57600080fd5b8501601f81018713611bdc57600080fd5b611beb87823560208401611a5f565b91505092959194509250565b60008060408385031215611c0a57600080fd5b611c1383611ad5565b915060208301358015158114611c2857600080fd5b809150509250929050565b60008060408385031215611c4657600080fd5b611c4f83611ad5565b946020939093013593505050565b600060208284031215611c6f57600080fd5b813561108481612044565b600060208284031215611c8c57600080fd5b815161108481612044565b600060208284031215611ca957600080fd5b813567ffffffffffffffff811115611cc057600080fd5b8201601f81018413611cd157600080fd5b61128084823560208401611a5f565b600060208284031215611cf257600080fd5b5035919050565b600060208284031215611d0b57600080fd5b813560ff8116811461108457600080fd5b60008151808452611d34816020860160208601611f56565b601f01601f19169290920160200192915050565b60008351611d5a818460208801611f56565b835190830190611d6e818360208801611f56565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dba90830184611d1c565b9695505050505050565b6020815260006110846020830184611d1c565b60208082526025908201527f506c656173652063686f6f73652061206e756d62657220677265617465722074604082015264068616e20360dc1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f0757611f07611fec565b500190565b600082611f1b57611f1b612002565b500490565b6000816000190483118215151615611f3a57611f3a611fec565b500290565b600082821015611f5157611f51611fec565b500390565b60005b83811015611f71578181015183820152602001611f59565b83811115610faa5750506000910152565b600181811c90821680611f9657607f821691505b60208210811415611fb757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fd157611fd1611fec565b5060010190565b600082611fe757611fe7612002565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461098157600080fdfea26469706673582212201a5b5a531db46725092d652a09d65ec470b35e5121ce4b69b25a0861cb6e8edf64736f6c63430008060033

Deployed Bytecode Sourcemap

42087:2669:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20882:305;;;;;;;;;;-1:-1:-1;20882:305:0;;;;;:::i;:::-;;:::i;:::-;;;6297:14:1;;6290:22;6272:41;;6260:2;6245:18;20882:305:0;;;;;;;;21827:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23576:221::-;;;;;;;;;;-1:-1:-1;23576:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5595:32:1;;;5577:51;;5565:2;5550:18;23576:221:0;5532:102:1;23099:411:0;;;;;;;;;;-1:-1:-1;23099:411:0;;;;;:::i;:::-;;:::i;:::-;;35475:113;;;;;;;;;;-1:-1:-1;35563:10:0;:17;35475:113;;;16173:25:1;;;16161:2;16146:18;35475:113:0;16128:76:1;24466:339:0;;;;;;;;;;-1:-1:-1;24466:339:0;;;;;:::i;:::-;;:::i;42330:38::-;;;;;;;;;;;;;;;;35143:256;;;;;;;;;;-1:-1:-1;35143:256:0;;;;;:::i;:::-;;:::i;44555:91::-;;;;;;;;;;;;;:::i;42620:152::-;;;;;;;;;;;;;:::i;24876:185::-;;;;;;;;;;-1:-1:-1;24876:185:0;;;;;:::i;:::-;;:::i;35665:233::-;;;;;;;;;;-1:-1:-1;35665:233:0;;;;;:::i;:::-;;:::i;44652:101::-;;;;;;;;;;-1:-1:-1;44652:101:0;;;;;:::i;:::-;;:::i;21521:239::-;;;;;;;;;;-1:-1:-1;21521:239:0;;;;;:::i;:::-;;:::i;42866:604::-;;;;;;;;;;-1:-1:-1;42866:604:0;;;;;:::i;:::-;;:::i;21251:208::-;;;;;;;;;;-1:-1:-1;21251:208:0;;;;;:::i;:::-;;:::i;41432:94::-;;;;;;;;;;;;;:::i;40781:87::-;;;;;;;;;;-1:-1:-1;40854:6:0;;-1:-1:-1;;;;;40854:6:0;40781:87;;43476:1073;;;;;;:::i;:::-;;:::i;42778:86::-;;;;;;;;;;-1:-1:-1;42778:86:0;;;;;:::i;:::-;;:::i;21996:104::-;;;;;;;;;;;;;:::i;42144:54::-;;;;;;;;;;;;42196:2;42144:54;;23869:295;;;;;;;;;;-1:-1:-1;23869:295:0;;;;;:::i;:::-;;:::i;42237:43::-;;;;;;;;;;;;42275:5;42237:43;;25132:328;;;;;;;;;;-1:-1:-1;25132:328:0;;;;;:::i;:::-;;:::i;22234:346::-;;;;;;;;;;-1:-1:-1;22234:346:0;;;;;:::i;:::-;;:::i;24235:164::-;;;;;;;;;;-1:-1:-1;24235:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24356:25:0;;;24332:4;24356:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24235:164;42467:32;;;;;;;;;;-1:-1:-1;42467:32:0;;;;;;;;42287:36;;;;;;;;;;;;;;;;42414:44;;;;;;;;;;;;;;;;41681:192;;;;;;;;;;-1:-1:-1;41681:192:0;;;;;:::i;:::-;;:::i;20882:305::-;20984:4;-1:-1:-1;;;;;;21021:40:0;;-1:-1:-1;;;21021:40:0;;:105;;-1:-1:-1;;;;;;;21078:48:0;;-1:-1:-1;;;21078:48:0;21021:105;:158;;;-1:-1:-1;;;;;;;;;;19392:40:0;;;21143:36;21001:178;20882:305;-1:-1:-1;;20882:305:0:o;21827:100::-;21881:13;21914:5;21907:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21827:100;:::o;23576:221::-;23652:7;27059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27059:16:0;23672:73;;;;-1:-1:-1;;;23672:73:0;;13396:2:1;23672:73:0;;;13378:21:1;13435:2;13415:18;;;13408:30;13474:34;13454:18;;;13447:62;-1:-1:-1;;;13525:18:1;;;13518:42;13577:19;;23672:73:0;;;;;;;;;-1:-1:-1;23765:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23765:24:0;;23576:221::o;23099:411::-;23180:13;23196:23;23211:7;23196:14;:23::i;:::-;23180:39;;23244:5;-1:-1:-1;;;;;23238:11:0;:2;-1:-1:-1;;;;;23238:11:0;;;23230:57;;;;-1:-1:-1;;;23230:57:0;;14996:2:1;23230:57:0;;;14978:21:1;15035:2;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;-1:-1:-1;;;15125:18:1;;;15118:31;15166:19;;23230:57:0;14968:223:1;23230:57:0;16255:10;-1:-1:-1;;;;;23322:21:0;;;;:62;;-1:-1:-1;23347:37:0;23364:5;16255:10;24235:164;:::i;23347:37::-;23300:168;;;;-1:-1:-1;;;23300:168:0;;11068:2:1;23300:168:0;;;11050:21:1;11107:2;11087:18;;;11080:30;11146:34;11126:18;;;11119:62;11217:26;11197:18;;;11190:54;11261:19;;23300:168:0;11040:246:1;23300:168:0;23481:21;23490:2;23494:7;23481:8;:21::i;:::-;23169:341;23099:411;;:::o;24466:339::-;24661:41;16255:10;24694:7;24661:18;:41::i;:::-;24653:103;;;;-1:-1:-1;;;24653:103:0;;;;;;;:::i;:::-;24769:28;24779:4;24785:2;24789:7;24769:9;:28::i;35143:256::-;35240:7;35276:23;35293:5;35276:16;:23::i;:::-;35268:5;:31;35260:87;;;;-1:-1:-1;;;35260:87:0;;7156:2:1;35260:87:0;;;7138:21:1;7195:2;7175:18;;;7168:30;7234:34;7214:18;;;7207:62;-1:-1:-1;;;7285:18:1;;;7278:41;7336:19;;35260:87:0;7128:233:1;35260:87:0;-1:-1:-1;;;;;;35365:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35143:256::o;44555:91::-;40854:6;;-1:-1:-1;;;;;40854:6:0;16255:10;41001:23;40993:68;;;;-1:-1:-1;;;40993:68:0;;;;;;;:::i;:::-;44626:12:::1;::::0;;-1:-1:-1;;44610:28:0;::::1;44626:12;::::0;;::::1;44625:13;44610:28;::::0;;44555:91::o;42620:152::-;40854:6;;-1:-1:-1;;;;;40854:6:0;16255:10;41001:23;40993:68;;;;-1:-1:-1;;;40993:68:0;;;;;;;:::i;:::-;42688:21:::1;42720:44;42746:7;40854:6:::0;;-1:-1:-1;;;;;40854:6:0;;40781:87;42746:7:::1;42756;42720:17;:44::i;:::-;42659:113;42620:152::o:0;24876:185::-;25014:39;25031:4;25037:2;25041:7;25014:39;;;;;;;;;;;;:16;:39::i;35665:233::-;35740:7;35776:30;35563:10;:17;;35475:113;35776:30;35768:5;:38;35760:95;;;;-1:-1:-1;;;35760:95:0;;15816:2:1;35760:95:0;;;15798:21:1;15855:2;15835:18;;;15828:30;15894:34;15874:18;;;15867:62;-1:-1:-1;;;15945:18:1;;;15938:42;15997:19;;35760:95:0;15788:234:1;35760:95:0;35873:10;35884:5;35873:17;;;;;;;;:::i;:::-;;;;;;;;;35866:24;;35665:233;;;:::o;44652:101::-;40854:6;;-1:-1:-1;;;;;40854:6:0;16255:10;41001:23;40993:68;;;;-1:-1:-1;;;40993:68:0;;;;;;;:::i;:::-;44725:20:::1;44737:7;44725:11;:20::i;21521:239::-:0;21593:7;21629:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21629:16:0;21664:19;21656:73;;;;-1:-1:-1;;;21656:73:0;;11904:2:1;21656:73:0;;;11886:21:1;11943:2;11923:18;;;11916:30;11982:34;11962:18;;;11955:62;-1:-1:-1;;;12033:18:1;;;12026:39;12082:19;;21656:73:0;11876:231:1;42866:604:0;40854:6;;-1:-1:-1;;;;;40854:6:0;16255:10;41001:23;40993:68;;;;-1:-1:-1;;;40993:68:0;;;;;;;:::i;:::-;42988:2:::1;42966:19;;:24;42944:105;;;::::0;-1:-1:-1;;;42944:105:0;;12314:2:1;42944:105:0::1;::::0;::::1;12296:21:1::0;12353:2;12333:18;;;12326:30;12392:33;12372:18;;;12365:61;12443:18;;42944:105:0::1;12286:181:1::0;42944:105:0::1;43094:1;43082:9;:13;;;43060:100;;;;-1:-1:-1::0;;;43060:100:0::1;;;;;;;:::i;:::-;43180:9;43175:286;43199:9;43195:13;;:1;:13;43175:286;;;43256:2;43234:19;;:24;43230:218;;;43279:19;:21:::0;;;:19:::1;:21;::::0;::::1;:::i;:::-;;;;;;43319:42;43329:10;43341:19;;43319:9;:42::i;:::-;43380:52;43412:19;;43380:31;:52::i;:::-;43210:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43175:286;;;;42866:604:::0;:::o;21251:208::-;21323:7;-1:-1:-1;;;;;21351:19:0;;21343:74;;;;-1:-1:-1;;;21343:74:0;;11493:2:1;21343:74:0;;;11475:21:1;11532:2;11512:18;;;11505:30;11571:34;11551:18;;;11544:62;-1:-1:-1;;;11622:18:1;;;11615:40;11672:19;;21343:74:0;11465:232:1;21343:74:0;-1:-1:-1;;;;;;21435:16:0;;;;;:9;:16;;;;;;;21251:208::o;41432:94::-;40854:6;;-1:-1:-1;;;;;40854:6:0;16255:10;41001:23;40993:68;;;;-1:-1:-1;;;40993:68:0;;;;;;;:::i;:::-;41497:21:::1;41515:1;41497:9;:21::i;:::-;41432:94::o:0;43476:1073::-;42275:5;43605:9;43586:28;;:16;;:28;;;;:::i;:::-;:43;;43564:124;;;;-1:-1:-1;;;43564:124:0;;12314:2:1;43564:124:0;;;12296:21:1;12353:2;12333:18;;;12326:30;12392:33;12372:18;;;12365:61;12443:18;;43564:124:0;12286:181:1;43564:124:0;43733:1;43721:9;:13;;;43699:100;;;;-1:-1:-1;;;43699:100:0;;;;;;;:::i;:::-;43818:12;;;;:18;;:12;:18;43810:27;;;;;;42196:2;43870:9;:38;;;;43848:120;;;;-1:-1:-1;;;43848:120:0;;12674:2:1;43848:120:0;;;12656:21:1;;;12693:18;;;12686:30;12752:34;12732:18;;;12725:62;12804:18;;43848:120:0;12646:182:1;43848:120:0;44019:9;44006;43989:26;;:16;;:26;;;;:::i;:::-;:39;;43981:102;;;;-1:-1:-1;;;43981:102:0;;9510:2:1;43981:102:0;;;9492:21:1;9549:2;9529:18;;;9522:30;9588:33;9568:18;;;9561:61;9639:18;;43981:102:0;9482:181:1;43981:102:0;44101:9;44096:283;44120:9;44116:13;;:1;:13;44096:283;;;42275:5;44155:16;;:30;44151:215;;;44206:16;:18;;;:16;:18;;;:::i;:::-;;;;;;44243:39;44253:10;44265:16;;44243:9;:39::i;:::-;44301:49;44333:16;;44301:31;:49::i;:::-;44131:3;;;;:::i;:::-;;;;44096:283;;;;44424:9;44407:26;;:16;;:26;;;;:::i;:::-;44395:9;:38;44391:151;;;44450:80;44476:10;44519:9;44502:26;;:16;;:26;;;;:::i;:::-;44489:40;;:9;:40;:::i;:::-;44450:17;:80::i;42778:86::-;40854:6;;-1:-1:-1;;;;;40854:6:0;16255:10;41001:23;40993:68;;;;-1:-1:-1;;;40993:68:0;;;;;;;:::i;:::-;42836:16:::1;:24:::0;42778:86::o;21996:104::-;22052:13;22085:7;22078:14;;;;;:::i;23869:295::-;-1:-1:-1;;;;;23972:24:0;;16255:10;23972:24;;23964:62;;;;-1:-1:-1;;;23964:62:0;;9156:2:1;23964:62:0;;;9138:21:1;9195:2;9175:18;;;9168:30;9234:27;9214:18;;;9207:55;9279:18;;23964:62:0;9128:175:1;23964:62:0;16255:10;24039:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24039:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24039:53:0;;;;;;;;;;24108:48;;6272:41:1;;;24039:42:0;;16255:10;24108:48;;6245:18:1;24108:48:0;;;;;;;23869:295;;:::o;25132:328::-;25307:41;16255:10;25340:7;25307:18;:41::i;:::-;25299:103;;;;-1:-1:-1;;;25299:103:0;;;;;;;:::i;:::-;25413:39;25427:4;25433:2;25437:7;25446:5;25413:13;:39::i;:::-;25132:328;;;;:::o;22234:346::-;27035:4;27059:16;;;:7;:16;;;;;;22307:13;;-1:-1:-1;;;;;27059:16:0;22333:76;;;;-1:-1:-1;;;22333:76:0;;14580:2:1;22333:76:0;;;14562:21:1;14619:2;14599:18;;;14592:30;14658:34;14638:18;;;14631:62;-1:-1:-1;;;14709:18:1;;;14702:45;14764:19;;22333:76:0;14552:237:1;22333:76:0;22422:21;22446:13;:11;:13::i;:::-;22422:37;;22501:1;22483:7;22477:21;:25;:95;;;;;;;;;;;;;;;;;22529:7;22538:18;:7;:16;:18::i;:::-;22512:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22477:95;22470:102;22234:346;-1:-1:-1;;;22234:346:0:o;41681:192::-;40854:6;;-1:-1:-1;;;;;40854:6:0;16255:10;41001:23;40993:68;;;;-1:-1:-1;;;40993:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41770:22:0;::::1;41762:73;;;::::0;-1:-1:-1;;;41762:73:0;;7987:2:1;41762:73:0::1;::::0;::::1;7969:21:1::0;8026:2;8006:18;;;7999:30;8065:34;8045:18;;;8038:62;-1:-1:-1;;;8116:18:1;;;8109:36;8162:19;;41762:73:0::1;7959:228:1::0;41762:73:0::1;41846:19;41856:8;41846:9;:19::i;30952:174::-:0;31027:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31027:29:0;-1:-1:-1;;;;;31027:29:0;;;;;;;;:24;;31081:23;31027:24;31081:14;:23::i;:::-;-1:-1:-1;;;;;31072:46:0;;;;;;;;;;;30952:174;;:::o;27264:348::-;27357:4;27059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27059:16:0;27374:73;;;;-1:-1:-1;;;27374:73:0;;10655:2:1;27374:73:0;;;10637:21:1;10694:2;10674:18;;;10667:30;10733:34;10713:18;;;10706:62;-1:-1:-1;;;10784:18:1;;;10777:42;10836:19;;27374:73:0;10627:234:1;27374:73:0;27458:13;27474:23;27489:7;27474:14;:23::i;:::-;27458:39;;27527:5;-1:-1:-1;;;;;27516:16:0;:7;-1:-1:-1;;;;;27516:16:0;;:51;;;;27560:7;-1:-1:-1;;;;;27536:31:0;:20;27548:7;27536:11;:20::i;:::-;-1:-1:-1;;;;;27536:31:0;;27516:51;:87;;;-1:-1:-1;;;;;;24356:25:0;;;24332:4;24356:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27571:32;27508:96;27264:348;-1:-1:-1;;;;27264:348:0:o;30256:578::-;30415:4;-1:-1:-1;;;;;30388:31:0;:23;30403:7;30388:14;:23::i;:::-;-1:-1:-1;;;;;30388:31:0;;30380:85;;;;-1:-1:-1;;;30380:85:0;;14170:2:1;30380:85:0;;;14152:21:1;14209:2;14189:18;;;14182:30;14248:34;14228:18;;;14221:62;-1:-1:-1;;;14299:18:1;;;14292:39;14348:19;;30380:85:0;14142:231:1;30380:85:0;-1:-1:-1;;;;;30484:16:0;;30476:65;;;;-1:-1:-1;;;30476:65:0;;8751:2:1;30476:65:0;;;8733:21:1;8790:2;8770:18;;;8763:30;8829:34;8809:18;;;8802:62;-1:-1:-1;;;8880:18:1;;;8873:34;8924:19;;30476:65:0;8723:226:1;30476:65:0;30658:29;30675:1;30679:7;30658:8;:29::i;:::-;-1:-1:-1;;;;;30700:15:0;;;;;;:9;:15;;;;;:20;;30719:1;;30700:15;:20;;30719:1;;30700:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30731:13:0;;;;;;:9;:13;;;;;:18;;30748:1;;30731:13;:18;;30748:1;;30731:18;:::i;:::-;;;;-1:-1:-1;;30760:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30760:21:0;-1:-1:-1;;;;;30760:21:0;;;;;;;;;30799:27;;30760:16;;30799:27;;;;;;;30256:578;;;:::o;9529:317::-;9644:6;9619:21;:31;;9611:73;;;;-1:-1:-1;;;9611:73:0;;10297:2:1;9611:73:0;;;10279:21:1;10336:2;10316:18;;;10309:30;10375:31;10355:18;;;10348:59;10424:18;;9611:73:0;10269:179:1;9611:73:0;9698:12;9716:9;-1:-1:-1;;;;;9716:14:0;9738:6;9716:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9697:52;;;9768:7;9760:78;;;;-1:-1:-1;;;9760:78:0;;9870:2:1;9760:78:0;;;9852:21:1;9909:2;9889:18;;;9882:30;9948:34;9928:18;;;9921:62;10019:28;9999:18;;;9992:56;10065:19;;9760:78:0;9842:248:1;22939:100:0;23012:19;;;;:8;;:19;;;;;:::i;27954:112::-;28032:26;28042:2;28046:7;28032:26;;;;;;;;;;;;:9;:26::i;36623:164::-;36727:10;:17;;36700:24;;;;:15;:24;;;;;:44;;;36755:24;;;;;;;;;;;;36623:164::o;41881:173::-;41956:6;;;-1:-1:-1;;;;;41973:17:0;;;-1:-1:-1;;;;;;41973:17:0;;;;;;;42006:40;;41956:6;;;41973:17;41956:6;;42006:40;;41937:16;;42006:40;41926:128;41881:173;:::o;26342:315::-;26499:28;26509:4;26515:2;26519:7;26499:9;:28::i;:::-;26546:48;26569:4;26575:2;26579:7;26588:5;26546:22;:48::i;:::-;26538:111;;;;-1:-1:-1;;;26538:111:0;;;;;;;:::i;22588:103::-;22642:13;22675:8;22668:15;;;;;:::i;16713:723::-;16769:13;16990:10;16986:53;;-1:-1:-1;;17017:10:0;;;;;;;;;;;;-1:-1:-1;;;17017:10:0;;;;;16713:723::o;16986:53::-;17064:5;17049:12;17105:78;17112:9;;17105:78;;17138:8;;;;:::i;:::-;;-1:-1:-1;17161:10:0;;-1:-1:-1;17169:2:0;17161:10;;:::i;:::-;;;17105:78;;;17193:19;17225:6;17215:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17215:17:0;;17193:39;;17243:154;17250:10;;17243:154;;17277:11;17287:1;17277:11;;:::i;:::-;;-1:-1:-1;17346:10:0;17354:2;17346:5;:10;:::i;:::-;17333:24;;:2;:24;:::i;:::-;17320:39;;17303:6;17310;17303:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17303:56:0;;;;;;;;-1:-1:-1;17374:11:0;17383:2;17374:11;;:::i;:::-;;;17243:154;;28293:321;28423:18;28429:2;28433:7;28423:5;:18::i;:::-;28474:54;28505:1;28509:2;28513:7;28522:5;28474:22;:54::i;:::-;28452:154;;;;-1:-1:-1;;;28452:154:0;;;;;;;:::i;31691:799::-;31846:4;-1:-1:-1;;;;;31867:13:0;;8530:20;8578:8;31863:620;;31903:72;;-1:-1:-1;;;31903:72:0;;-1:-1:-1;;;;;31903:36:0;;;;;:72;;16255:10;;31954:4;;31960:7;;31969:5;;31903:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31903:72:0;;;;;;;;-1:-1:-1;;31903:72:0;;;;;;;;;;;;:::i;:::-;;;31899:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32145:13:0;;32141:272;;32188:60;;-1:-1:-1;;;32188:60:0;;;;;;;:::i;32141:272::-;32363:6;32357:13;32348:6;32344:2;32340:15;32333:38;31899:529;-1:-1:-1;;;;;;32026:51:0;-1:-1:-1;;;32026:51:0;;-1:-1:-1;32019:58:0;;31863:620;-1:-1:-1;32467:4:0;31691:799;;;;;;:::o;28950:380::-;-1:-1:-1;;;;;29030:16:0;;29022:61;;;;-1:-1:-1;;;29022:61:0;;13035:2:1;29022:61:0;;;13017:21:1;;;13054:18;;;13047:30;13113:34;13093:18;;;13086:62;13165:18;;29022:61:0;13007:182:1;29022:61:0;27035:4;27059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27059:16:0;:30;29094:58;;;;-1:-1:-1;;;29094:58:0;;8394:2:1;29094:58:0;;;8376:21:1;8433:2;8413:18;;;8406:30;8472;8452:18;;;8445:58;8520:18;;29094:58:0;8366:178:1;29094:58:0;-1:-1:-1;;;;;29221:13:0;;;;;;:9;:13;;;;;:18;;29238:1;;29221:13;:18;;29238:1;;29221:18;:::i;:::-;;;;-1:-1:-1;;29250:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29250:21:0;-1:-1:-1;;;;;29250:21:0;;;;;;;;29289:33;;29250:16;;;29289:33;;29250:16;;29289:33;28950:380;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;956:1;953;946:12;908:2;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1164:1;1161;1154:12;1116:2;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1106:173;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1446:1;1443;1436:12;1398:2;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1388:224;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:2;;;1806:1;1803;1796:12;1757:2;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:2;;;2076:1;2073;2066:12;2030:2;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:2:1;;2181:1;2178;2171:12;2130:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1747:536;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2430:1;2427;2420:12;2382:2;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:2;;2601:1;2598;2591:12;2545:2;2624:5;2614:15;;;2372:263;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:2;;;2785:1;2782;2775:12;2737:2;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2727:167:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:2;;;3026:1;3023;3016:12;2978:2;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:2;;;3287:1;3284;3277:12;3239:2;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:2;;;3541:1;3538;3531:12;3493:2;3581:9;3568:23;3614:18;3606:6;3603:30;3600:2;;;3646:1;3643;3636:12;3600:2;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:2:1;;3751:1;3748;3741:12;3700:2;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:2;;;3986:1;3983;3976:12;3938:2;-1:-1:-1;4009:23:1;;3928:110;-1:-1:-1;3928:110:1:o;4043:269::-;4100:6;4153:2;4141:9;4132:7;4128:23;4124:32;4121:2;;;4169:1;4166;4159:12;4121:2;4208:9;4195:23;4258:4;4251:5;4247:16;4240:5;4237:27;4227:2;;4278:1;4275;4268:12;4317:257;4358:3;4396:5;4390:12;4423:6;4418:3;4411:19;4439:63;4495:6;4488:4;4483:3;4479:14;4472:4;4465:5;4461:16;4439:63;:::i;:::-;4556:2;4535:15;-1:-1:-1;;4531:29:1;4522:39;;;;4563:4;4518:50;;4366:208;-1:-1:-1;;4366:208:1:o;4579:637::-;4859:3;4897:6;4891:13;4913:53;4959:6;4954:3;4947:4;4939:6;4935:17;4913:53;:::i;:::-;5029:13;;4988:16;;;;5051:57;5029:13;4988:16;5085:4;5073:17;;5051:57;:::i;:::-;-1:-1:-1;;;5130:20:1;;5159:22;;;5208:1;5197:13;;4867:349;-1:-1:-1;;;;4867:349:1:o;5639:488::-;-1:-1:-1;;;;;5908:15:1;;;5890:34;;5960:15;;5955:2;5940:18;;5933:43;6007:2;5992:18;;5985:34;;;6055:3;6050:2;6035:18;;6028:31;;;5833:4;;6076:45;;6101:19;;6093:6;6076:45;:::i;:::-;6068:53;5842:285;-1:-1:-1;;;;;;5842:285:1:o;6324:219::-;6473:2;6462:9;6455:21;6436:4;6493:44;6533:2;6522:9;6518:18;6510:6;6493:44;:::i;6548:401::-;6750:2;6732:21;;;6789:2;6769:18;;;6762:30;6828:34;6823:2;6808:18;;6801:62;-1:-1:-1;;;6894:2:1;6879:18;;6872:35;6939:3;6924:19;;6722:227::o;7366:414::-;7568:2;7550:21;;;7607:2;7587:18;;;7580:30;7646:34;7641:2;7626:18;;7619:62;-1:-1:-1;;;7712:2:1;7697:18;;7690:48;7770:3;7755:19;;7540:240::o;13607:356::-;13809:2;13791:21;;;13828:18;;;13821:30;13887:34;13882:2;13867:18;;13860:62;13954:2;13939:18;;13781:182::o;15196:413::-;15398:2;15380:21;;;15437:2;15417:18;;;15410:30;15476:34;15471:2;15456:18;;15449:62;-1:-1:-1;;;15542:2:1;15527:18;;15520:47;15599:3;15584:19;;15370:239::o;16209:128::-;16249:3;16280:1;16276:6;16273:1;16270:13;16267:2;;;16286:18;;:::i;:::-;-1:-1:-1;16322:9:1;;16257:80::o;16342:120::-;16382:1;16408;16398:2;;16413:18;;:::i;:::-;-1:-1:-1;16447:9:1;;16388:74::o;16467:168::-;16507:7;16573:1;16569;16565:6;16561:14;16558:1;16555:21;16550:1;16543:9;16536:17;16532:45;16529:2;;;16580:18;;:::i;:::-;-1:-1:-1;16620:9:1;;16519:116::o;16640:125::-;16680:4;16708:1;16705;16702:8;16699:2;;;16713:18;;:::i;:::-;-1:-1:-1;16750:9:1;;16689:76::o;16770:258::-;16842:1;16852:113;16866:6;16863:1;16860:13;16852:113;;;16942:11;;;16936:18;16923:11;;;16916:39;16888:2;16881:10;16852:113;;;16983:6;16980:1;16977:13;16974:2;;;-1:-1:-1;;17018:1:1;17000:16;;16993:27;16823:205::o;17033:380::-;17112:1;17108:12;;;;17155;;;17176:2;;17230:4;17222:6;17218:17;17208:27;;17176:2;17283;17275:6;17272:14;17252:18;17249:38;17246:2;;;17329:10;17324:3;17320:20;17317:1;17310:31;17364:4;17361:1;17354:15;17392:4;17389:1;17382:15;17246:2;;17088:325;;;:::o;17418:135::-;17457:3;-1:-1:-1;;17478:17:1;;17475:2;;;17498:18;;:::i;:::-;-1:-1:-1;17545:1:1;17534:13;;17465:88::o;17558:112::-;17590:1;17616;17606:2;;17621:18;;:::i;:::-;-1:-1:-1;17655:9:1;;17596:74::o;17675:127::-;17736:10;17731:3;17727:20;17724:1;17717:31;17767:4;17764:1;17757:15;17791:4;17788:1;17781:15;17807:127;17868:10;17863:3;17859:20;17856:1;17849:31;17899:4;17896:1;17889:15;17923:4;17920:1;17913:15;17939:127;18000:10;17995:3;17991:20;17988:1;17981:31;18031:4;18028:1;18021:15;18055:4;18052:1;18045:15;18071:127;18132:10;18127:3;18123:20;18120:1;18113:31;18163:4;18160:1;18153:15;18187:4;18184:1;18177:15;18203:131;-1:-1:-1;;;;;;18277:32:1;;18267:43;;18257:2;;18324:1;18321;18314:12

Swarm Source

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