ETH Price: $3,363.64 (-1.55%)
Gas: 6 Gwei

Token

3NITY (3NITY)
 

Overview

Max Total Supply

2,984 3NITY

Holders

1,935

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
30 3NITY
0xa0FAF0ed5b8507D08Bf26290C8345Be8E202B909
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:
THREE_NITY

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-12
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-10
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-09
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-02
*/

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

// SPDX-License-Identifier:

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.1 ether;
  uint256 public maxSupply = 30000;
  uint256 public maxMintAmount = 100;
  address public adminWallet;
  bool public revealed = false;
  string public notRevealedUri;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initNotRevealedUri,
    address _adminWallet
  ) ERC721(_name, _symbol) {
    setNotRevealedURI(_initNotRevealedUri);
    adminWallet = _adminWallet;
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(_mintAmount > 0,"error : check token limit");
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (supply + _mintAmount > 10000) {
      cost = 0.5 ether;
    }

    if (supply + _mintAmount > 20000) {
      cost = 0.7 ether;
    }
    
    if (_msgSender() != owner()) {
      require(msg.value >= cost * _mintAmount);
    }

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

    // transfer all the ETH to admin wallet
    (bool os, ) = payable(adminWallet).call{value: msg.value}("");
    require(os);
  }

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

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

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

  //only owner
  function reveal(string memory _initBaseURI) public onlyOwner {
      revealed = true;
      setBaseURI(_initBaseURI);
  }
  
  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

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

  function withdraw() public {
    (bool os, ) = payable(adminWallet).call{value: address(this).balance}("");
    require(os);
  }
  
}

Contract Security Audit

Contract ABI

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

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001cb565b5067016345785d8a0000600d55617530600e556064600f556010805460ff60a01b191690553480156200005a57600080fd5b5060405162002a7738038062002a778339810160408190526200007d916200031c565b83518490849062000096906000906020850190620001cb565b508051620000ac906001906020840190620001cb565b505050620000c9620000c3620000fe60201b60201c565b62000102565b620000d48262000154565b601080546001600160a01b0319166001600160a01b03929092169190911790555062000452915050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200015e620000fe565b6001600160a01b031662000171620001bc565b6001600160a01b031614620001a35760405162461bcd60e51b81526004016200019a90620003ca565b60405180910390fd5b8051620001b8906011906020840190620001cb565b5050565b600a546001600160a01b031690565b828054620001d990620003ff565b90600052602060002090601f016020900481019282620001fd576000855562000248565b82601f106200021857805160ff191683800117855562000248565b8280016001018555821562000248579182015b82811115620002485782518255916020019190600101906200022b565b50620002569291506200025a565b5090565b5b808211156200025657600081556001016200025b565b600082601f83011262000282578081fd5b81516001600160401b03808211156200029f576200029f6200043c565b6040516020601f8401601f1916820181018381118382101715620002c757620002c76200043c565b6040528382528584018101871015620002de578485fd5b8492505b83831015620003015785830181015182840182015291820191620002e2565b838311156200031257848185840101525b5095945050505050565b6000806000806080858703121562000332578384fd5b84516001600160401b038082111562000349578586fd5b620003578883890162000271565b955060208701519150808211156200036d578485fd5b6200037b8883890162000271565b9450604087015191508082111562000391578384fd5b50620003a08782880162000271565b606087015190935090506001600160a01b0381168114620003bf578182fd5b939692955090935050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200041457607f821691505b602082108114156200043657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61261580620004626000396000f3fe6080604052600436106102045760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610579578063da3ef23f1461058e578063e985e9c5146105ae578063f2c4ce1e146105ce578063f2fde38b146105ee57610204565b8063a22cb46514610504578063b88d4fde14610524578063c668286214610544578063c87b56dd1461055957610204565b8063715018a6116100e7578063715018a6146104925780637f00c7a6146104a75780638da5cb5b146104c757806395d89b41146104dc578063a0712d68146104f157610204565b806355f804b31461041d5780636352211e1461043d5780636c0360eb1461045d57806370a082311461047257610204565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e1461037b578063438b63001461039b5780634c261247146103c85780634f6ccce7146103e8578063518302271461040857610204565b806323b872dd146103115780632f745c591461033157806336b19cd7146103515780633ccfd60b1461036657610204565b8063095ea7b3116101d7578063095ea7b3146102a357806313faede6146102c557806318160ddd146102e7578063239c70ae146102fc57610204565b806301ffc9a71461020957806306fdde031461023f578063081812fc14610261578063081c8c441461028e575b600080fd5b34801561021557600080fd5b50610229610224366004611d0c565b61060e565b6040516102369190611f28565b60405180910390f35b34801561024b57600080fd5b5061025461063b565b6040516102369190611f33565b34801561026d57600080fd5b5061028161027c366004611d8a565b6106cd565b6040516102369190611e93565b34801561029a57600080fd5b50610254610719565b3480156102af57600080fd5b506102c36102be366004611ce3565b6107a7565b005b3480156102d157600080fd5b506102da61083f565b604051610236919061247a565b3480156102f357600080fd5b506102da610845565b34801561030857600080fd5b506102da61084b565b34801561031d57600080fd5b506102c361032c366004611bf5565b610851565b34801561033d57600080fd5b506102da61034c366004611ce3565b610889565b34801561035d57600080fd5b506102816108db565b34801561037257600080fd5b506102c36108ea565b34801561038757600080fd5b506102c3610396366004611bf5565b61095b565b3480156103a757600080fd5b506103bb6103b6366004611ba9565b610976565b6040516102369190611ee4565b3480156103d457600080fd5b506102c36103e3366004611d44565b610a34565b3480156103f457600080fd5b506102da610403366004611d8a565b610a8f565b34801561041457600080fd5b50610229610aea565b34801561042957600080fd5b506102c3610438366004611d44565b610afa565b34801561044957600080fd5b50610281610458366004611d8a565b610b50565b34801561046957600080fd5b50610254610b85565b34801561047e57600080fd5b506102da61048d366004611ba9565b610b92565b34801561049e57600080fd5b506102c3610bd6565b3480156104b357600080fd5b506102c36104c2366004611d8a565b610c21565b3480156104d357600080fd5b50610281610c65565b3480156104e857600080fd5b50610254610c74565b6102c36104ff366004611d8a565b610c83565b34801561051057600080fd5b506102c361051f366004611ca9565b610dfc565b34801561053057600080fd5b506102c361053f366004611c30565b610e0e565b34801561055057600080fd5b50610254610e4d565b34801561056557600080fd5b50610254610574366004611d8a565b610e5a565b34801561058557600080fd5b506102da610f83565b34801561059a57600080fd5b506102c36105a9366004611d44565b610f89565b3480156105ba57600080fd5b506102296105c9366004611bc3565b610fdb565b3480156105da57600080fd5b506102c36105e9366004611d44565b611009565b3480156105fa57600080fd5b506102c3610609366004611ba9565b61105b565b60006001600160e01b0319821663780e9d6360e01b14806106335750610633826110c9565b90505b919050565b60606000805461064a9061251d565b80601f01602080910402602001604051908101604052809291908181526020018280546106769061251d565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b60006106d882611109565b6106fd5760405162461bcd60e51b81526004016106f49061224c565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b601180546107269061251d565b80601f01602080910402602001604051908101604052809291908181526020018280546107529061251d565b801561079f5780601f106107745761010080835404028352916020019161079f565b820191906000526020600020905b81548152906001019060200180831161078257829003601f168201915b505050505081565b60006107b282610b50565b9050806001600160a01b0316836001600160a01b031614156107e65760405162461bcd60e51b81526004016106f490612365565b806001600160a01b03166107f8611126565b6001600160a01b031614806108145750610814816105c9611126565b6108305760405162461bcd60e51b81526004016106f490612127565b61083a838361112a565b505050565b600d5481565b60085490565b600f5481565b61086261085c611126565b82611198565b61087e5760405162461bcd60e51b81526004016106f4906123a6565b61083a83838361121d565b600061089483610b92565b82106108b25760405162461bcd60e51b81526004016106f490611f46565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6010546001600160a01b031681565b6010546040516000916001600160a01b031690479061090890611e90565b60006040518083038185875af1925050503d8060008114610945576040519150601f19603f3d011682016040523d82523d6000602084013e61094a565b606091505b505090508061095857600080fd5b50565b61083a83838360405180602001604052806000815250610e0e565b6060600061098383610b92565b905060008167ffffffffffffffff8111156109ae57634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109d7578160200160208202803683370190505b50905060005b82811015610a2c576109ef8582610889565b828281518110610a0f57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a2481612558565b9150506109dd565b509392505050565b610a3c611126565b6001600160a01b0316610a4d610c65565b6001600160a01b031614610a735760405162461bcd60e51b81526004016106f490612298565b6010805460ff60a01b1916600160a01b17905561095881610afa565b6000610a99610845565b8210610ab75760405162461bcd60e51b81526004016106f4906123f7565b60088281548110610ad857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601054600160a01b900460ff1681565b610b02611126565b6001600160a01b0316610b13610c65565b6001600160a01b031614610b395760405162461bcd60e51b81526004016106f490612298565b8051610b4c90600b906020840190611a89565b5050565b6000818152600260205260408120546001600160a01b0316806106335760405162461bcd60e51b81526004016106f4906121ce565b600b80546107269061251d565b60006001600160a01b038216610bba5760405162461bcd60e51b81526004016106f490612184565b506001600160a01b031660009081526003602052604090205490565b610bde611126565b6001600160a01b0316610bef610c65565b6001600160a01b031614610c155760405162461bcd60e51b81526004016106f490612298565b610c1f600061134a565b565b610c29611126565b6001600160a01b0316610c3a610c65565b6001600160a01b031614610c605760405162461bcd60e51b81526004016106f490612298565b600f55565b600a546001600160a01b031690565b60606001805461064a9061251d565b6000610c8d610845565b905060008211610caf5760405162461bcd60e51b81526004016106f490612443565b600f54821115610cbe57600080fd5b600e54610ccb838361248f565b1115610cd657600080fd5b612710610ce3838361248f565b1115610cf6576706f05b59d3b20000600d555b614e20610d03838361248f565b1115610d16576709b6e64a8ec60000600d555b610d1e610c65565b6001600160a01b0316610d2f611126565b6001600160a01b031614610d575781600d54610d4b91906124bb565b341015610d5757600080fd5b60015b828111610d8d57610d7b610d6c611126565b610d76838561248f565b61139c565b80610d8581612558565b915050610d5a565b506010546040516000916001600160a01b0316903490610dac90611e90565b60006040518083038185875af1925050503d8060008114610de9576040519150601f19603f3d011682016040523d82523d6000602084013e610dee565b606091505b505090508061083a57600080fd5b610b4c610e07611126565b83836113b6565b610e1f610e19611126565b83611198565b610e3b5760405162461bcd60e51b81526004016106f4906123a6565b610e4784848484611459565b50505050565b600c80546107269061251d565b6060610e6582611109565b610e815760405162461bcd60e51b81526004016106f490612316565b601054600160a01b900460ff16610f245760118054610e9f9061251d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ecb9061251d565b8015610f185780601f10610eed57610100808354040283529160200191610f18565b820191906000526020600020905b815481529060010190602001808311610efb57829003601f168201915b50505050509050610636565b6000610f2e61148c565b90506000815111610f4e5760405180602001604052806000815250610f7c565b80610f588461149b565b600c604051602001610f6c93929190611dce565b6040516020818303038152906040525b9392505050565b600e5481565b610f91611126565b6001600160a01b0316610fa2610c65565b6001600160a01b031614610fc85760405162461bcd60e51b81526004016106f490612298565b8051610b4c90600c906020840190611a89565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611011611126565b6001600160a01b0316611022610c65565b6001600160a01b0316146110485760405162461bcd60e51b81526004016106f490612298565b8051610b4c906011906020840190611a89565b611063611126565b6001600160a01b0316611074610c65565b6001600160a01b03161461109a5760405162461bcd60e51b81526004016106f490612298565b6001600160a01b0381166110c05760405162461bcd60e51b81526004016106f490611fe3565b6109588161134a565b60006001600160e01b031982166380ac58cd60e01b14806110fa57506001600160e01b03198216635b5e139f60e01b145b806106335750610633826115b6565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061115f82610b50565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111a382611109565b6111bf5760405162461bcd60e51b81526004016106f4906120db565b60006111ca83610b50565b9050806001600160a01b0316846001600160a01b031614806112055750836001600160a01b03166111fa846106cd565b6001600160a01b0316145b8061121557506112158185610fdb565b949350505050565b826001600160a01b031661123082610b50565b6001600160a01b0316146112565760405162461bcd60e51b81526004016106f4906122cd565b6001600160a01b03821661127c5760405162461bcd60e51b81526004016106f490612060565b6112878383836115cf565b61129260008261112a565b6001600160a01b03831660009081526003602052604081208054600192906112bb9084906124da565b90915550506001600160a01b03821660009081526003602052604081208054600192906112e990849061248f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b4c828260405180602001604052806000815250611658565b816001600160a01b0316836001600160a01b031614156113e85760405162461bcd60e51b81526004016106f4906120a4565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061144c908590611f28565b60405180910390a3505050565b61146484848461121d565b6114708484848461168b565b610e475760405162461bcd60e51b81526004016106f490611f91565b6060600b805461064a9061251d565b6060816114c057506040805180820190915260018152600360fc1b6020820152610636565b8160005b81156114ea57806114d481612558565b91506114e39050600a836124a7565b91506114c4565b60008167ffffffffffffffff81111561151357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561153d576020820181803683370190505b5090505b8415611215576115526001836124da565b915061155f600a86612573565b61156a90603061248f565b60f81b81838151811061158d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115af600a866124a7565b9450611541565b6001600160e01b031981166301ffc9a760e01b14919050565b6115da83838361083a565b6001600160a01b0383166115f6576115f1816117a6565b611619565b816001600160a01b0316836001600160a01b0316146116195761161983826117ea565b6001600160a01b0382166116355761163081611887565b61083a565b826001600160a01b0316826001600160a01b03161461083a5761083a8282611960565b61166283836119a4565b61166f600084848461168b565b61083a5760405162461bcd60e51b81526004016106f490611f91565b600061169f846001600160a01b0316611a83565b1561179b57836001600160a01b031663150b7a026116bb611126565b8786866040518563ffffffff1660e01b81526004016116dd9493929190611ea7565b602060405180830381600087803b1580156116f757600080fd5b505af1925050508015611727575060408051601f3d908101601f1916820190925261172491810190611d28565b60015b611781573d808015611755576040519150601f19603f3d011682016040523d82523d6000602084013e61175a565b606091505b5080516117795760405162461bcd60e51b81526004016106f490611f91565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611215565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016117f784610b92565b61180191906124da565b600083815260076020526040902054909150808214611854576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611899906001906124da565b600083815260096020526040812054600880549394509092849081106118cf57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106118fe57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061194457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061196b83610b92565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166119ca5760405162461bcd60e51b81526004016106f490612217565b6119d381611109565b156119f05760405162461bcd60e51b81526004016106f490612029565b6119fc600083836115cf565b6001600160a01b0382166000908152600360205260408120805460019290611a2590849061248f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611a959061251d565b90600052602060002090601f016020900481019282611ab75760008555611afd565b82601f10611ad057805160ff1916838001178555611afd565b82800160010185558215611afd579182015b82811115611afd578251825591602001919060010190611ae2565b50611b09929150611b0d565b5090565b5b80821115611b095760008155600101611b0e565b600067ffffffffffffffff80841115611b3d57611b3d6125b3565b604051601f8501601f191681016020018281118282101715611b6157611b616125b3565b604052848152915081838501861015611b7957600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461063657600080fd5b600060208284031215611bba578081fd5b610f7c82611b92565b60008060408385031215611bd5578081fd5b611bde83611b92565b9150611bec60208401611b92565b90509250929050565b600080600060608486031215611c09578081fd5b611c1284611b92565b9250611c2060208501611b92565b9150604084013590509250925092565b60008060008060808587031215611c45578081fd5b611c4e85611b92565b9350611c5c60208601611b92565b925060408501359150606085013567ffffffffffffffff811115611c7e578182fd5b8501601f81018713611c8e578182fd5b611c9d87823560208401611b22565b91505092959194509250565b60008060408385031215611cbb578182fd5b611cc483611b92565b915060208301358015158114611cd8578182fd5b809150509250929050565b60008060408385031215611cf5578182fd5b611cfe83611b92565b946020939093013593505050565b600060208284031215611d1d578081fd5b8135610f7c816125c9565b600060208284031215611d39578081fd5b8151610f7c816125c9565b600060208284031215611d55578081fd5b813567ffffffffffffffff811115611d6b578182fd5b8201601f81018413611d7b578182fd5b61121584823560208401611b22565b600060208284031215611d9b578081fd5b5035919050565b60008151808452611dba8160208601602086016124f1565b601f01601f19169290920160200192915050565b600084516020611de18285838a016124f1565b855191840191611df48184848a016124f1565b8554920191839060028104600180831680611e1057607f831692505b858310811415611e2e57634e487b7160e01b88526022600452602488fd5b808015611e425760018114611e5357611e7f565b60ff19851688528388019550611e7f565b611e5c8b612483565b895b85811015611e775781548a820152908401908801611e5e565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eda90830184611da2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f1c57835183529284019291840191600101611f00565b50909695505050505050565b901515815260200190565b600060208252610f7c6020830184611da2565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526019908201527f6572726f72203a20636865636b20746f6b656e206c696d697400000000000000604082015260600190565b90815260200190565b60009081526020902090565b600082198211156124a2576124a2612587565b500190565b6000826124b6576124b661259d565b500490565b60008160001904831182151516156124d5576124d5612587565b500290565b6000828210156124ec576124ec612587565b500390565b60005b8381101561250c5781810151838201526020016124f4565b83811115610e475750506000910152565b60028104600182168061253157607f821691505b6020821081141561255257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561256c5761256c612587565b5060010190565b6000826125825761258261259d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461095857600080fdfea264697066735822122099aeb571dd82dd5a0827e2bbe2fb19528b670696eb9ab868d87555381d348c0664736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000779b52d81a1dec25fdc5b4effad18634391bcace0000000000000000000000000000000000000000000000000000000000000005334e4954590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005334e495459000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004b68747470733a2f2f336e6974792d636f6c6c656374696f6e2e73332e61702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f336e6974792d64656661756c742e6a736f6e000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610579578063da3ef23f1461058e578063e985e9c5146105ae578063f2c4ce1e146105ce578063f2fde38b146105ee57610204565b8063a22cb46514610504578063b88d4fde14610524578063c668286214610544578063c87b56dd1461055957610204565b8063715018a6116100e7578063715018a6146104925780637f00c7a6146104a75780638da5cb5b146104c757806395d89b41146104dc578063a0712d68146104f157610204565b806355f804b31461041d5780636352211e1461043d5780636c0360eb1461045d57806370a082311461047257610204565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e1461037b578063438b63001461039b5780634c261247146103c85780634f6ccce7146103e8578063518302271461040857610204565b806323b872dd146103115780632f745c591461033157806336b19cd7146103515780633ccfd60b1461036657610204565b8063095ea7b3116101d7578063095ea7b3146102a357806313faede6146102c557806318160ddd146102e7578063239c70ae146102fc57610204565b806301ffc9a71461020957806306fdde031461023f578063081812fc14610261578063081c8c441461028e575b600080fd5b34801561021557600080fd5b50610229610224366004611d0c565b61060e565b6040516102369190611f28565b60405180910390f35b34801561024b57600080fd5b5061025461063b565b6040516102369190611f33565b34801561026d57600080fd5b5061028161027c366004611d8a565b6106cd565b6040516102369190611e93565b34801561029a57600080fd5b50610254610719565b3480156102af57600080fd5b506102c36102be366004611ce3565b6107a7565b005b3480156102d157600080fd5b506102da61083f565b604051610236919061247a565b3480156102f357600080fd5b506102da610845565b34801561030857600080fd5b506102da61084b565b34801561031d57600080fd5b506102c361032c366004611bf5565b610851565b34801561033d57600080fd5b506102da61034c366004611ce3565b610889565b34801561035d57600080fd5b506102816108db565b34801561037257600080fd5b506102c36108ea565b34801561038757600080fd5b506102c3610396366004611bf5565b61095b565b3480156103a757600080fd5b506103bb6103b6366004611ba9565b610976565b6040516102369190611ee4565b3480156103d457600080fd5b506102c36103e3366004611d44565b610a34565b3480156103f457600080fd5b506102da610403366004611d8a565b610a8f565b34801561041457600080fd5b50610229610aea565b34801561042957600080fd5b506102c3610438366004611d44565b610afa565b34801561044957600080fd5b50610281610458366004611d8a565b610b50565b34801561046957600080fd5b50610254610b85565b34801561047e57600080fd5b506102da61048d366004611ba9565b610b92565b34801561049e57600080fd5b506102c3610bd6565b3480156104b357600080fd5b506102c36104c2366004611d8a565b610c21565b3480156104d357600080fd5b50610281610c65565b3480156104e857600080fd5b50610254610c74565b6102c36104ff366004611d8a565b610c83565b34801561051057600080fd5b506102c361051f366004611ca9565b610dfc565b34801561053057600080fd5b506102c361053f366004611c30565b610e0e565b34801561055057600080fd5b50610254610e4d565b34801561056557600080fd5b50610254610574366004611d8a565b610e5a565b34801561058557600080fd5b506102da610f83565b34801561059a57600080fd5b506102c36105a9366004611d44565b610f89565b3480156105ba57600080fd5b506102296105c9366004611bc3565b610fdb565b3480156105da57600080fd5b506102c36105e9366004611d44565b611009565b3480156105fa57600080fd5b506102c3610609366004611ba9565b61105b565b60006001600160e01b0319821663780e9d6360e01b14806106335750610633826110c9565b90505b919050565b60606000805461064a9061251d565b80601f01602080910402602001604051908101604052809291908181526020018280546106769061251d565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b60006106d882611109565b6106fd5760405162461bcd60e51b81526004016106f49061224c565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b601180546107269061251d565b80601f01602080910402602001604051908101604052809291908181526020018280546107529061251d565b801561079f5780601f106107745761010080835404028352916020019161079f565b820191906000526020600020905b81548152906001019060200180831161078257829003601f168201915b505050505081565b60006107b282610b50565b9050806001600160a01b0316836001600160a01b031614156107e65760405162461bcd60e51b81526004016106f490612365565b806001600160a01b03166107f8611126565b6001600160a01b031614806108145750610814816105c9611126565b6108305760405162461bcd60e51b81526004016106f490612127565b61083a838361112a565b505050565b600d5481565b60085490565b600f5481565b61086261085c611126565b82611198565b61087e5760405162461bcd60e51b81526004016106f4906123a6565b61083a83838361121d565b600061089483610b92565b82106108b25760405162461bcd60e51b81526004016106f490611f46565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6010546001600160a01b031681565b6010546040516000916001600160a01b031690479061090890611e90565b60006040518083038185875af1925050503d8060008114610945576040519150601f19603f3d011682016040523d82523d6000602084013e61094a565b606091505b505090508061095857600080fd5b50565b61083a83838360405180602001604052806000815250610e0e565b6060600061098383610b92565b905060008167ffffffffffffffff8111156109ae57634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109d7578160200160208202803683370190505b50905060005b82811015610a2c576109ef8582610889565b828281518110610a0f57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a2481612558565b9150506109dd565b509392505050565b610a3c611126565b6001600160a01b0316610a4d610c65565b6001600160a01b031614610a735760405162461bcd60e51b81526004016106f490612298565b6010805460ff60a01b1916600160a01b17905561095881610afa565b6000610a99610845565b8210610ab75760405162461bcd60e51b81526004016106f4906123f7565b60088281548110610ad857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601054600160a01b900460ff1681565b610b02611126565b6001600160a01b0316610b13610c65565b6001600160a01b031614610b395760405162461bcd60e51b81526004016106f490612298565b8051610b4c90600b906020840190611a89565b5050565b6000818152600260205260408120546001600160a01b0316806106335760405162461bcd60e51b81526004016106f4906121ce565b600b80546107269061251d565b60006001600160a01b038216610bba5760405162461bcd60e51b81526004016106f490612184565b506001600160a01b031660009081526003602052604090205490565b610bde611126565b6001600160a01b0316610bef610c65565b6001600160a01b031614610c155760405162461bcd60e51b81526004016106f490612298565b610c1f600061134a565b565b610c29611126565b6001600160a01b0316610c3a610c65565b6001600160a01b031614610c605760405162461bcd60e51b81526004016106f490612298565b600f55565b600a546001600160a01b031690565b60606001805461064a9061251d565b6000610c8d610845565b905060008211610caf5760405162461bcd60e51b81526004016106f490612443565b600f54821115610cbe57600080fd5b600e54610ccb838361248f565b1115610cd657600080fd5b612710610ce3838361248f565b1115610cf6576706f05b59d3b20000600d555b614e20610d03838361248f565b1115610d16576709b6e64a8ec60000600d555b610d1e610c65565b6001600160a01b0316610d2f611126565b6001600160a01b031614610d575781600d54610d4b91906124bb565b341015610d5757600080fd5b60015b828111610d8d57610d7b610d6c611126565b610d76838561248f565b61139c565b80610d8581612558565b915050610d5a565b506010546040516000916001600160a01b0316903490610dac90611e90565b60006040518083038185875af1925050503d8060008114610de9576040519150601f19603f3d011682016040523d82523d6000602084013e610dee565b606091505b505090508061083a57600080fd5b610b4c610e07611126565b83836113b6565b610e1f610e19611126565b83611198565b610e3b5760405162461bcd60e51b81526004016106f4906123a6565b610e4784848484611459565b50505050565b600c80546107269061251d565b6060610e6582611109565b610e815760405162461bcd60e51b81526004016106f490612316565b601054600160a01b900460ff16610f245760118054610e9f9061251d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ecb9061251d565b8015610f185780601f10610eed57610100808354040283529160200191610f18565b820191906000526020600020905b815481529060010190602001808311610efb57829003601f168201915b50505050509050610636565b6000610f2e61148c565b90506000815111610f4e5760405180602001604052806000815250610f7c565b80610f588461149b565b600c604051602001610f6c93929190611dce565b6040516020818303038152906040525b9392505050565b600e5481565b610f91611126565b6001600160a01b0316610fa2610c65565b6001600160a01b031614610fc85760405162461bcd60e51b81526004016106f490612298565b8051610b4c90600c906020840190611a89565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611011611126565b6001600160a01b0316611022610c65565b6001600160a01b0316146110485760405162461bcd60e51b81526004016106f490612298565b8051610b4c906011906020840190611a89565b611063611126565b6001600160a01b0316611074610c65565b6001600160a01b03161461109a5760405162461bcd60e51b81526004016106f490612298565b6001600160a01b0381166110c05760405162461bcd60e51b81526004016106f490611fe3565b6109588161134a565b60006001600160e01b031982166380ac58cd60e01b14806110fa57506001600160e01b03198216635b5e139f60e01b145b806106335750610633826115b6565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061115f82610b50565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111a382611109565b6111bf5760405162461bcd60e51b81526004016106f4906120db565b60006111ca83610b50565b9050806001600160a01b0316846001600160a01b031614806112055750836001600160a01b03166111fa846106cd565b6001600160a01b0316145b8061121557506112158185610fdb565b949350505050565b826001600160a01b031661123082610b50565b6001600160a01b0316146112565760405162461bcd60e51b81526004016106f4906122cd565b6001600160a01b03821661127c5760405162461bcd60e51b81526004016106f490612060565b6112878383836115cf565b61129260008261112a565b6001600160a01b03831660009081526003602052604081208054600192906112bb9084906124da565b90915550506001600160a01b03821660009081526003602052604081208054600192906112e990849061248f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b4c828260405180602001604052806000815250611658565b816001600160a01b0316836001600160a01b031614156113e85760405162461bcd60e51b81526004016106f4906120a4565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061144c908590611f28565b60405180910390a3505050565b61146484848461121d565b6114708484848461168b565b610e475760405162461bcd60e51b81526004016106f490611f91565b6060600b805461064a9061251d565b6060816114c057506040805180820190915260018152600360fc1b6020820152610636565b8160005b81156114ea57806114d481612558565b91506114e39050600a836124a7565b91506114c4565b60008167ffffffffffffffff81111561151357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561153d576020820181803683370190505b5090505b8415611215576115526001836124da565b915061155f600a86612573565b61156a90603061248f565b60f81b81838151811061158d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115af600a866124a7565b9450611541565b6001600160e01b031981166301ffc9a760e01b14919050565b6115da83838361083a565b6001600160a01b0383166115f6576115f1816117a6565b611619565b816001600160a01b0316836001600160a01b0316146116195761161983826117ea565b6001600160a01b0382166116355761163081611887565b61083a565b826001600160a01b0316826001600160a01b03161461083a5761083a8282611960565b61166283836119a4565b61166f600084848461168b565b61083a5760405162461bcd60e51b81526004016106f490611f91565b600061169f846001600160a01b0316611a83565b1561179b57836001600160a01b031663150b7a026116bb611126565b8786866040518563ffffffff1660e01b81526004016116dd9493929190611ea7565b602060405180830381600087803b1580156116f757600080fd5b505af1925050508015611727575060408051601f3d908101601f1916820190925261172491810190611d28565b60015b611781573d808015611755576040519150601f19603f3d011682016040523d82523d6000602084013e61175a565b606091505b5080516117795760405162461bcd60e51b81526004016106f490611f91565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611215565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016117f784610b92565b61180191906124da565b600083815260076020526040902054909150808214611854576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611899906001906124da565b600083815260096020526040812054600880549394509092849081106118cf57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106118fe57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061194457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061196b83610b92565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166119ca5760405162461bcd60e51b81526004016106f490612217565b6119d381611109565b156119f05760405162461bcd60e51b81526004016106f490612029565b6119fc600083836115cf565b6001600160a01b0382166000908152600360205260408120805460019290611a2590849061248f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611a959061251d565b90600052602060002090601f016020900481019282611ab75760008555611afd565b82601f10611ad057805160ff1916838001178555611afd565b82800160010185558215611afd579182015b82811115611afd578251825591602001919060010190611ae2565b50611b09929150611b0d565b5090565b5b80821115611b095760008155600101611b0e565b600067ffffffffffffffff80841115611b3d57611b3d6125b3565b604051601f8501601f191681016020018281118282101715611b6157611b616125b3565b604052848152915081838501861015611b7957600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461063657600080fd5b600060208284031215611bba578081fd5b610f7c82611b92565b60008060408385031215611bd5578081fd5b611bde83611b92565b9150611bec60208401611b92565b90509250929050565b600080600060608486031215611c09578081fd5b611c1284611b92565b9250611c2060208501611b92565b9150604084013590509250925092565b60008060008060808587031215611c45578081fd5b611c4e85611b92565b9350611c5c60208601611b92565b925060408501359150606085013567ffffffffffffffff811115611c7e578182fd5b8501601f81018713611c8e578182fd5b611c9d87823560208401611b22565b91505092959194509250565b60008060408385031215611cbb578182fd5b611cc483611b92565b915060208301358015158114611cd8578182fd5b809150509250929050565b60008060408385031215611cf5578182fd5b611cfe83611b92565b946020939093013593505050565b600060208284031215611d1d578081fd5b8135610f7c816125c9565b600060208284031215611d39578081fd5b8151610f7c816125c9565b600060208284031215611d55578081fd5b813567ffffffffffffffff811115611d6b578182fd5b8201601f81018413611d7b578182fd5b61121584823560208401611b22565b600060208284031215611d9b578081fd5b5035919050565b60008151808452611dba8160208601602086016124f1565b601f01601f19169290920160200192915050565b600084516020611de18285838a016124f1565b855191840191611df48184848a016124f1565b8554920191839060028104600180831680611e1057607f831692505b858310811415611e2e57634e487b7160e01b88526022600452602488fd5b808015611e425760018114611e5357611e7f565b60ff19851688528388019550611e7f565b611e5c8b612483565b895b85811015611e775781548a820152908401908801611e5e565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eda90830184611da2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f1c57835183529284019291840191600101611f00565b50909695505050505050565b901515815260200190565b600060208252610f7c6020830184611da2565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526019908201527f6572726f72203a20636865636b20746f6b656e206c696d697400000000000000604082015260600190565b90815260200190565b60009081526020902090565b600082198211156124a2576124a2612587565b500190565b6000826124b6576124b661259d565b500490565b60008160001904831182151516156124d5576124d5612587565b500290565b6000828210156124ec576124ec612587565b500390565b60005b8381101561250c5781810151838201526020016124f4565b83811115610e475750506000910152565b60028104600182168061253157607f821691505b6020821081141561255257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561256c5761256c612587565b5060010190565b6000826125825761258261259d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461095857600080fdfea264697066735822122099aeb571dd82dd5a0827e2bbe2fb19528b670696eb9ab868d87555381d348c0664736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000779b52d81a1dec25fdc5b4effad18634391bcace0000000000000000000000000000000000000000000000000000000000000005334e4954590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005334e495459000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004b68747470733a2f2f336e6974792d636f6c6c656374696f6e2e73332e61702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f336e6974792d64656661756c742e6a736f6e000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): 3NITY
Arg [1] : _symbol (string): 3NITY
Arg [2] : _initNotRevealedUri (string): https://3nity-collection.s3.ap-southeast-1.amazonaws.com/3nity-default.json
Arg [3] : _adminWallet (address): 0x779B52d81A1deC25FDc5B4EFFad18634391bcace

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000779b52d81a1dec25fdc5b4effad18634391bcace
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 334e495459000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 334e495459000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000004b
Arg [9] : 68747470733a2f2f336e6974792d636f6c6c656374696f6e2e73332e61702d73
Arg [10] : 6f757468656173742d312e616d617a6f6e6177732e636f6d2f336e6974792d64
Arg [11] : 656661756c742e6a736f6e000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42786:3112:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34251:224;;;;;;;;;;-1:-1:-1;34251:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21066:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22625:221::-;;;;;;;;;;-1:-1:-1;22625:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43116:28::-;;;;;;;;;;;;;:::i;22148:411::-;;;;;;;;;;-1:-1:-1;22148:411:0;;;;;:::i;:::-;;:::i;:::-;;42940:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34891:113::-;;;;;;;;;;;;;:::i;43013:34::-;;;;;;;;;;;;;:::i;23375:339::-;;;;;;;;;;-1:-1:-1;23375:339:0;;;;;:::i;:::-;;:::i;34559:256::-;;;;;;;;;;-1:-1:-1;34559:256:0;;;;;:::i;:::-;;:::i;43052:26::-;;;;;;;;;;;;;:::i;45760:131::-;;;;;;;;;;;;;:::i;23785:185::-;;;;;;;;;;-1:-1:-1;23785:185:0;;;;;:::i;:::-;;:::i;44273:348::-;;;;;;;;;;-1:-1:-1;44273:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45146:124::-;;;;;;;;;;-1:-1:-1;45146:124:0;;;;;:::i;:::-;;:::i;35081:233::-;;;;;;;;;;-1:-1:-1;35081:233:0;;;;;:::i;:::-;;:::i;43083:28::-;;;;;;;;;;;;;:::i;45528:98::-;;;;;;;;;;-1:-1:-1;45528:98:0;;;;;:::i;:::-;;:::i;20760:239::-;;;;;;;;;;-1:-1:-1;20760:239:0;;;;;:::i;:::-;;:::i;42872:21::-;;;;;;;;;;;;;:::i;20490:208::-;;;;;;;;;;-1:-1:-1;20490:208:0;;;;;:::i;:::-;;:::i;41969:103::-;;;;;;;;;;;;;:::i;45278:116::-;;;;;;;;;;-1:-1:-1;45278:116:0;;;;;:::i;:::-;;:::i;41318:87::-;;;;;;;;;;;;;:::i;21235:104::-;;;;;;;;;;;;;:::i;43538:729::-;;;;;;:::i;:::-;;:::i;22918:155::-;;;;;;;;;;-1:-1:-1;22918:155:0;;;;;:::i;:::-;;:::i;24041:328::-;;;;;;;;;;-1:-1:-1;24041:328:0;;;;;:::i;:::-;;:::i;42898:37::-;;;;;;;;;;;;;:::i;44627:497::-;;;;;;;;;;-1:-1:-1;44627:497:0;;;;;:::i;:::-;;:::i;42976:32::-;;;;;;;;;;;;;:::i;45632:122::-;;;;;;;;;;-1:-1:-1;45632:122:0;;;;;:::i;:::-;;:::i;23144:164::-;;;;;;;;;;-1:-1:-1;23144:164:0;;;;;:::i;:::-;;:::i;45402:120::-;;;;;;;;;;-1:-1:-1;45402:120:0;;;;;:::i;:::-;;:::i;42227:201::-;;;;;;;;;;-1:-1:-1;42227:201:0;;;;;:::i;:::-;;:::i;34251:224::-;34353:4;-1:-1:-1;;;;;;34377:50:0;;-1:-1:-1;;;34377:50:0;;:90;;;34431:36;34455:11;34431:23;:36::i;:::-;34370:97;;34251:224;;;;:::o;21066:100::-;21120:13;21153:5;21146:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21066:100;:::o;22625:221::-;22701:7;22729:16;22737:7;22729;:16::i;:::-;22721:73;;;;-1:-1:-1;;;22721:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;22814:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22814:24:0;;22625:221::o;43116:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22148:411::-;22229:13;22245:23;22260:7;22245:14;:23::i;:::-;22229:39;;22293:5;-1:-1:-1;;;;;22287:11:0;:2;-1:-1:-1;;;;;22287:11:0;;;22279:57;;;;-1:-1:-1;;;22279:57:0;;;;;;;:::i;:::-;22387:5;-1:-1:-1;;;;;22371:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22371:21:0;;:62;;;;22396:37;22413:5;22420:12;:10;:12::i;22396:37::-;22349:168;;;;-1:-1:-1;;;22349:168:0;;;;;;;:::i;:::-;22530:21;22539:2;22543:7;22530:8;:21::i;:::-;22148:411;;;:::o;42940:31::-;;;;:::o;34891:113::-;34979:10;:17;34891:113;:::o;43013:34::-;;;;:::o;23375:339::-;23570:41;23589:12;:10;:12::i;:::-;23603:7;23570:18;:41::i;:::-;23562:103;;;;-1:-1:-1;;;23562:103:0;;;;;;;:::i;:::-;23678:28;23688:4;23694:2;23698:7;23678:9;:28::i;34559:256::-;34656:7;34692:23;34709:5;34692:16;:23::i;:::-;34684:5;:31;34676:87;;;;-1:-1:-1;;;34676:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;34781:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34559:256::o;43052:26::-;;;-1:-1:-1;;;;;43052:26:0;;:::o;45760:131::-;45816:11;;45808:59;;45795:7;;-1:-1:-1;;;;;45816:11:0;;45841:21;;45808:59;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45794:73;;;45882:2;45874:11;;;;;;45760:131;:::o;23785:185::-;23923:39;23940:4;23946:2;23950:7;23923:39;;;;;;;;;;;;:16;:39::i;44273:348::-;44348:16;44376:23;44402:17;44412:6;44402:9;:17::i;:::-;44376:43;;44426:25;44468:15;44454:30;;;;;;-1:-1:-1;;;44454:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44454:30:0;;44426:58;;44496:9;44491:103;44511:15;44507:1;:19;44491:103;;;44556:30;44576:6;44584:1;44556:19;:30::i;:::-;44542:8;44551:1;44542:11;;;;;;-1:-1:-1;;;44542:11:0;;;;;;;;;;;;;;;;;;:44;44528:3;;;;:::i;:::-;;;;44491:103;;;-1:-1:-1;44607:8:0;44273:348;-1:-1:-1;;;44273:348:0:o;45146:124::-;41549:12;:10;:12::i;:::-;-1:-1:-1;;;;;41538:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41538:23:0;;41530:68;;;;-1:-1:-1;;;41530:68:0;;;;;;;:::i;:::-;45216:8:::1;:15:::0;;-1:-1:-1;;;;45216:15:0::1;-1:-1:-1::0;;;45216:15:0::1;::::0;;45240:24:::1;45251:12:::0;45240:10:::1;:24::i;35081:233::-:0;35156:7;35192:30;:28;:30::i;:::-;35184:5;:38;35176:95;;;;-1:-1:-1;;;35176:95:0;;;;;;;:::i;:::-;35289:10;35300:5;35289:17;;;;;;-1:-1:-1;;;35289:17:0;;;;;;;;;;;;;;;;;35282:24;;35081:233;;;:::o;43083:28::-;;;-1:-1:-1;;;43083:28:0;;;;;:::o;45528:98::-;41549:12;:10;:12::i;:::-;-1:-1:-1;;;;;41538:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41538:23:0;;41530:68;;;;-1:-1:-1;;;41530:68:0;;;;;;;:::i;:::-;45599:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45528:98:::0;:::o;20760:239::-;20832:7;20868:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20868:16:0;20903:19;20895:73;;;;-1:-1:-1;;;20895:73:0;;;;;;;:::i;42872:21::-;;;;;;;:::i;20490:208::-;20562:7;-1:-1:-1;;;;;20590:19:0;;20582:74;;;;-1:-1:-1;;;20582:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;20674:16:0;;;;;:9;:16;;;;;;;20490:208::o;41969:103::-;41549:12;:10;:12::i;:::-;-1:-1:-1;;;;;41538:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41538:23:0;;41530:68;;;;-1:-1:-1;;;41530:68:0;;;;;;;:::i;:::-;42034:30:::1;42061:1;42034:18;:30::i;:::-;41969:103::o:0;45278:116::-;41549:12;:10;:12::i;:::-;-1:-1:-1;;;;;41538:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41538:23:0;;41530:68;;;;-1:-1:-1;;;41530:68:0;;;;;;;:::i;:::-;45355:13:::1;:33:::0;45278:116::o;41318:87::-;41391:6;;-1:-1:-1;;;;;41391:6:0;41318:87;:::o;21235:104::-;21291:13;21324:7;21317:14;;;;;:::i;43538:729::-;43595:14;43612:13;:11;:13::i;:::-;43595:30;;43654:1;43640:11;:15;43632:52;;;;-1:-1:-1;;;43632:52:0;;;;;;;:::i;:::-;43714:13;;43699:11;:28;;43691:37;;;;;;43767:9;;43743:20;43752:11;43743:6;:20;:::i;:::-;:33;;43735:42;;;;;;43813:5;43790:20;43799:11;43790:6;:20;:::i;:::-;:28;43786:67;;;43836:9;43829:4;:16;43786:67;43888:5;43865:20;43874:11;43865:6;:20;:::i;:::-;:28;43861:67;;;43911:9;43904:4;:16;43861:67;43960:7;:5;:7::i;:::-;-1:-1:-1;;;;;43944:23:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;43944:23:0;;43940:86;;44006:11;43999:4;;:18;;;;:::i;:::-;43986:9;:31;;43978:40;;;;;;44051:1;44034:95;44059:11;44054:1;:16;44034:95;;44086:35;44096:12;:10;:12::i;:::-;44110:10;44119:1;44110:6;:10;:::i;:::-;44086:9;:35::i;:::-;44072:3;;;;:::i;:::-;;;;44034:95;;;-1:-1:-1;44204:11:0;;44196:47;;44183:7;;-1:-1:-1;;;;;44204:11:0;;44229:9;;44196:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44182:61;;;44258:2;44250:11;;;;;22918:155;23013:52;23032:12;:10;:12::i;:::-;23046:8;23056;23013:18;:52::i;24041:328::-;24216:41;24235:12;:10;:12::i;:::-;24249:7;24216:18;:41::i;:::-;24208:103;;;;-1:-1:-1;;;24208:103:0;;;;;;;:::i;:::-;24322:39;24336:4;24342:2;24346:7;24355:5;24322:13;:39::i;:::-;24041:328;;;;:::o;42898:37::-;;;;;;;:::i;44627:497::-;44725:13;44766:16;44774:7;44766;:16::i;:::-;44750:97;;;;-1:-1:-1;;;44750:97:0;;;;;;;:::i;:::-;44863:8;;-1:-1:-1;;;44863:8:0;;;;44860:62;;44900:14;44893:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44860:62;44930:28;44961:10;:8;:10::i;:::-;44930:41;;45016:1;44991:14;44985:28;:32;:133;;;;;;;;;;;;;;;;;45053:14;45069:18;:7;:16;:18::i;:::-;45089:13;45036:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44985:133;44978:140;44627:497;-1:-1:-1;;;44627:497:0:o;42976:32::-;;;;:::o;45632:122::-;41549:12;:10;:12::i;:::-;-1:-1:-1;;;;;41538:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41538:23:0;;41530:68;;;;-1:-1:-1;;;41530:68:0;;;;;;;:::i;:::-;45715:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;23144:164::-:0;-1:-1:-1;;;;;23265:25:0;;;23241:4;23265:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23144:164::o;45402:120::-;41549:12;:10;:12::i;:::-;-1:-1:-1;;;;;41538:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41538:23:0;;41530:68;;;;-1:-1:-1;;;41530:68:0;;;;;;;:::i;:::-;45484:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42227:201::-:0;41549:12;:10;:12::i;:::-;-1:-1:-1;;;;;41538:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41538:23:0;;41530:68;;;;-1:-1:-1;;;41530:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42316:22:0;::::1;42308:73;;;;-1:-1:-1::0;;;42308:73:0::1;;;;;;;:::i;:::-;42392:28;42411:8;42392:18;:28::i;20121:305::-:0;20223:4;-1:-1:-1;;;;;;20260:40:0;;-1:-1:-1;;;20260:40:0;;:105;;-1:-1:-1;;;;;;;20317:48:0;;-1:-1:-1;;;20317:48:0;20260:105;:158;;;;20382:36;20406:11;20382:23;:36::i;25879:127::-;25944:4;25968:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25968:16:0;:30;;;25879:127::o;8894:98::-;8974:10;8894:98;:::o;29861:174::-;29936:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29936:29:0;-1:-1:-1;;;;;29936:29:0;;;;;;;;:24;;29990:23;29936:24;29990:14;:23::i;:::-;-1:-1:-1;;;;;29981:46:0;;;;;;;;;;;29861:174;;:::o;26173:348::-;26266:4;26291:16;26299:7;26291;:16::i;:::-;26283:73;;;;-1:-1:-1;;;26283:73:0;;;;;;;:::i;:::-;26367:13;26383:23;26398:7;26383:14;:23::i;:::-;26367:39;;26436:5;-1:-1:-1;;;;;26425:16:0;:7;-1:-1:-1;;;;;26425:16:0;;:51;;;;26469:7;-1:-1:-1;;;;;26445:31:0;:20;26457:7;26445:11;:20::i;:::-;-1:-1:-1;;;;;26445:31:0;;26425:51;:87;;;;26480:32;26497:5;26504:7;26480:16;:32::i;:::-;26417:96;26173:348;-1:-1:-1;;;;26173:348:0:o;29165:578::-;29324:4;-1:-1:-1;;;;;29297:31:0;:23;29312:7;29297:14;:23::i;:::-;-1:-1:-1;;;;;29297:31:0;;29289:85;;;;-1:-1:-1;;;29289:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29393:16:0;;29385:65;;;;-1:-1:-1;;;29385:65:0;;;;;;;:::i;:::-;29463:39;29484:4;29490:2;29494:7;29463:20;:39::i;:::-;29567:29;29584:1;29588:7;29567:8;:29::i;:::-;-1:-1:-1;;;;;29609:15:0;;;;;;:9;:15;;;;;:20;;29628:1;;29609:15;:20;;29628:1;;29609:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29640:13:0;;;;;;:9;:13;;;;;:18;;29657:1;;29640:13;:18;;29657:1;;29640:18;:::i;:::-;;;;-1:-1:-1;;29669:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29669:21:0;-1:-1:-1;;;;;29669:21:0;;;;;;;;;29708:27;;29669:16;;29708:27;;;;;;;29165:578;;;:::o;42588:191::-;42681:6;;;-1:-1:-1;;;;;42698:17:0;;;-1:-1:-1;;;;;;42698:17:0;;;;;;;42731:40;;42681:6;;;42698:17;42681:6;;42731:40;;42662:16;;42731:40;42588:191;;:::o;26863:110::-;26939:26;26949:2;26953:7;26939:26;;;;;;;;;;;;:9;:26::i;30177:315::-;30332:8;-1:-1:-1;;;;;30323:17:0;:5;-1:-1:-1;;;;;30323:17:0;;;30315:55;;;;-1:-1:-1;;;30315:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30381:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;30381:46:0;;;;;;;30443:41;;;;;30381:46;;30443:41;:::i;:::-;;;;;;;;30177:315;;;:::o;25251:::-;25408:28;25418:4;25424:2;25428:7;25408:9;:28::i;:::-;25455:48;25478:4;25484:2;25488:7;25497:5;25455:22;:48::i;:::-;25447:111;;;;-1:-1:-1;;;25447:111:0;;;;;;;:::i;43417:102::-;43477:13;43506:7;43499:14;;;;;:::i;9334:723::-;9390:13;9611:10;9607:53;;-1:-1:-1;9638:10:0;;;;;;;;;;;;-1:-1:-1;;;9638:10:0;;;;;;9607:53;9685:5;9670:12;9726:78;9733:9;;9726:78;;9759:8;;;;:::i;:::-;;-1:-1:-1;9782:10:0;;-1:-1:-1;9790:2:0;9782:10;;:::i;:::-;;;9726:78;;;9814:19;9846:6;9836:17;;;;;;-1:-1:-1;;;9836:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9836:17:0;;9814:39;;9864:154;9871:10;;9864:154;;9898:11;9908:1;9898:11;;:::i;:::-;;-1:-1:-1;9967:10:0;9975:2;9967:5;:10;:::i;:::-;9954:24;;:2;:24;:::i;:::-;9941:39;;9924:6;9931;9924:14;;;;;;-1:-1:-1;;;9924:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;9924:56:0;;;;;;;;-1:-1:-1;9995:11:0;10004:2;9995:11;;:::i;:::-;;;9864:154;;13403:157;-1:-1:-1;;;;;;13512:40:0;;-1:-1:-1;;;13512:40:0;13403:157;;;:::o;35927:589::-;36071:45;36098:4;36104:2;36108:7;36071:26;:45::i;:::-;-1:-1:-1;;;;;36133:18:0;;36129:187;;36168:40;36200:7;36168:31;:40::i;:::-;36129:187;;;36238:2;-1:-1:-1;;;;;36230:10:0;:4;-1:-1:-1;;;;;36230:10:0;;36226:90;;36257:47;36290:4;36296:7;36257:32;:47::i;:::-;-1:-1:-1;;;;;36330:16:0;;36326:183;;36363:45;36400:7;36363:36;:45::i;:::-;36326:183;;;36436:4;-1:-1:-1;;;;;36430:10:0;:2;-1:-1:-1;;;;;36430:10:0;;36426:83;;36457:40;36485:2;36489:7;36457:27;:40::i;27200:321::-;27330:18;27336:2;27340:7;27330:5;:18::i;:::-;27381:54;27412:1;27416:2;27420:7;27429:5;27381:22;:54::i;:::-;27359:154;;;;-1:-1:-1;;;27359:154:0;;;;;;;:::i;31057:799::-;31212:4;31233:15;:2;-1:-1:-1;;;;;31233:13:0;;:15::i;:::-;31229:620;;;31285:2;-1:-1:-1;;;;;31269:36:0;;31306:12;:10;:12::i;:::-;31320:4;31326:7;31335:5;31269:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31269:72:0;;;;;;;;-1:-1:-1;;31269:72:0;;;;;;;;;;;;:::i;:::-;;;31265:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31511:13:0;;31507:272;;31554:60;;-1:-1:-1;;;31554:60:0;;;;;;;:::i;31507:272::-;31729:6;31723:13;31714:6;31710:2;31706:15;31699:38;31265:529;-1:-1:-1;;;;;;31392:51:0;-1:-1:-1;;;31392:51:0;;-1:-1:-1;31385:58:0;;31229:620;-1:-1:-1;31833:4:0;31057:799;;;;;;:::o;37239:164::-;37343:10;:17;;37316:24;;;;:15;:24;;;;;:44;;;37371:24;;;;;;;;;;;;37239:164::o;38030:988::-;38296:22;38346:1;38321:22;38338:4;38321:16;:22::i;:::-;:26;;;;:::i;:::-;38358:18;38379:26;;;:17;:26;;;;;;38296:51;;-1:-1:-1;38512:28:0;;;38508:328;;-1:-1:-1;;;;;38579:18:0;;38557:19;38579:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38630:30;;;;;;:44;;;38747:30;;:17;:30;;;;;:43;;;38508:328;-1:-1:-1;38932:26:0;;;;:17;:26;;;;;;;;38925:33;;;-1:-1:-1;;;;;38976:18:0;;;;;:12;:18;;;;;:34;;;;;;;38969:41;38030:988::o;39313:1079::-;39591:10;:17;39566:22;;39591:21;;39611:1;;39591:21;:::i;:::-;39623:18;39644:24;;;:15;:24;;;;;;40017:10;:26;;39566:46;;-1:-1:-1;39644:24:0;;39566:46;;40017:26;;;;-1:-1:-1;;;40017:26:0;;;;;;;;;;;;;;;;;39995:48;;40081:11;40056:10;40067;40056:22;;;;;;-1:-1:-1;;;40056:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40161:28;;;:15;:28;;;;;;;:41;;;40333:24;;;;;40326:31;40368:10;:16;;;;;-1:-1:-1;;;40368:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39313:1079;;;;:::o;36817:221::-;36902:14;36919:20;36936:2;36919:16;:20::i;:::-;-1:-1:-1;;;;;36950:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36995:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36817:221:0:o;27857:382::-;-1:-1:-1;;;;;27937:16:0;;27929:61;;;;-1:-1:-1;;;27929:61:0;;;;;;;:::i;:::-;28010:16;28018:7;28010;:16::i;:::-;28009:17;28001:58;;;;-1:-1:-1;;;28001:58:0;;;;;;;:::i;:::-;28072:45;28101:1;28105:2;28109:7;28072:20;:45::i;:::-;-1:-1:-1;;;;;28130:13:0;;;;;;:9;:13;;;;;:18;;28147:1;;28130:13;:18;;28147:1;;28130:18;:::i;:::-;;;;-1:-1:-1;;28159:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28159:21:0;-1:-1:-1;;;;;28159:21:0;;;;;;;;28198:33;;28159:16;;;28198:33;;28159:16;;28198:33;27857:382;;:::o;1023:387::-;1346:20;1394:8;;;1023:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:259::-;;4278:5;4272:12;4305:6;4300:3;4293:19;4321:63;4377:6;4370:4;4365:3;4361:14;4354:4;4347:5;4343:16;4321:63;:::i;:::-;4438:2;4417:15;-1:-1:-1;;4413:29:1;4404:39;;;;4445:4;4400:50;;4248:208;-1:-1:-1;;4248:208:1:o;4461:1532::-;;4723:6;4717:13;4749:4;4762:51;4806:6;4801:3;4796:2;4788:6;4784:15;4762:51;:::i;:::-;4876:13;;4835:16;;;;4898:55;4876:13;4835:16;4920:15;;;4898:55;:::i;:::-;5044:13;;4975:20;;;5015:3;;5121:1;5106:17;;5142:1;5178:18;;;;5205:2;;5283:4;5273:8;5269:19;5257:31;;5205:2;5346;5336:8;5333:16;5313:18;5310:40;5307:2;;;-1:-1:-1;;;5373:33:1;;5429:4;5426:1;5419:15;5459:4;5380:3;5447:17;5307:2;5490:18;5517:110;;;;5641:1;5636:332;;;;5483:485;;5517:110;-1:-1:-1;;5552:24:1;;5538:39;;5597:20;;;;-1:-1:-1;5517:110:1;;5636:332;5672:39;5704:6;5672:39;:::i;:::-;5733:3;5749:169;5763:8;5760:1;5757:15;5749:169;;;5845:14;;5830:13;;;5823:37;5888:16;;;;5780:10;;5749:169;;;5753:3;;5949:8;5942:5;5938:20;5931:27;;5483:485;-1:-1:-1;5984:3:1;;4693:1300;-1:-1:-1;;;;;;;;;;;4693:1300:1:o;5998:205::-;6198:3;6189:14::o;6208:203::-;-1:-1:-1;;;;;6372:32:1;;;;6354:51;;6342:2;6327:18;;6309:102::o;6416:490::-;-1:-1:-1;;;;;6685:15:1;;;6667:34;;6737:15;;6732:2;6717:18;;6710:43;6784:2;6769:18;;6762:34;;;6832:3;6827:2;6812:18;;6805:31;;;6416:490;;6853:47;;6880:19;;6872:6;6853:47;:::i;:::-;6845:55;6619:287;-1:-1:-1;;;;;;6619:287:1:o;6911:635::-;7082:2;7134:21;;;7204:13;;7107:18;;;7226:22;;;6911:635;;7082:2;7305:15;;;;7279:2;7264:18;;;6911:635;7351:169;7365:6;7362:1;7359:13;7351:169;;;7426:13;;7414:26;;7495:15;;;;7460:12;;;;7387:1;7380:9;7351:169;;;-1:-1:-1;7537:3:1;;7062:484;-1:-1:-1;;;;;;7062:484:1:o;7551:187::-;7716:14;;7709:22;7691:41;;7679:2;7664:18;;7646:92::o;7743:221::-;;7892:2;7881:9;7874:21;7912:46;7954:2;7943:9;7939:18;7931:6;7912:46;:::i;7969:407::-;8171:2;8153:21;;;8210:2;8190:18;;;8183:30;8249:34;8244:2;8229:18;;8222:62;-1:-1:-1;;;8315:2:1;8300:18;;8293:41;8366:3;8351:19;;8143:233::o;8381:414::-;8583:2;8565:21;;;8622:2;8602:18;;;8595:30;8661:34;8656:2;8641:18;;8634:62;-1:-1:-1;;;8727:2:1;8712:18;;8705:48;8785:3;8770:19;;8555:240::o;8800:402::-;9002:2;8984:21;;;9041:2;9021:18;;;9014:30;9080:34;9075:2;9060:18;;9053:62;-1:-1:-1;;;9146:2:1;9131:18;;9124:36;9192:3;9177:19;;8974:228::o;9207:352::-;9409:2;9391:21;;;9448:2;9428:18;;;9421:30;9487;9482:2;9467:18;;9460:58;9550:2;9535:18;;9381:178::o;9564:400::-;9766:2;9748:21;;;9805:2;9785:18;;;9778:30;9844:34;9839:2;9824:18;;9817:62;-1:-1:-1;;;9910:2:1;9895:18;;9888:34;9954:3;9939:19;;9738:226::o;9969:349::-;10171:2;10153:21;;;10210:2;10190:18;;;10183:30;10249:27;10244:2;10229:18;;10222:55;10309:2;10294:18;;10143:175::o;10323:408::-;10525:2;10507:21;;;10564:2;10544:18;;;10537:30;10603:34;10598:2;10583:18;;10576:62;-1:-1:-1;;;10669:2:1;10654:18;;10647:42;10721:3;10706:19;;10497:234::o;10736:420::-;10938:2;10920:21;;;10977:2;10957:18;;;10950:30;11016:34;11011:2;10996:18;;10989:62;11087:26;11082:2;11067:18;;11060:54;11146:3;11131:19;;10910:246::o;11161:406::-;11363:2;11345:21;;;11402:2;11382:18;;;11375:30;11441:34;11436:2;11421:18;;11414:62;-1:-1:-1;;;11507:2:1;11492:18;;11485:40;11557:3;11542:19;;11335:232::o;11572:405::-;11774:2;11756:21;;;11813:2;11793:18;;;11786:30;11852:34;11847:2;11832:18;;11825:62;-1:-1:-1;;;11918:2:1;11903:18;;11896:39;11967:3;11952:19;;11746:231::o;11982:356::-;12184:2;12166:21;;;12203:18;;;12196:30;12262:34;12257:2;12242:18;;12235:62;12329:2;12314:18;;12156:182::o;12343:408::-;12545:2;12527:21;;;12584:2;12564:18;;;12557:30;12623:34;12618:2;12603:18;;12596:62;-1:-1:-1;;;12689:2:1;12674:18;;12667:42;12741:3;12726:19;;12517:234::o;12756:356::-;12958:2;12940:21;;;12977:18;;;12970:30;13036:34;13031:2;13016:18;;13009:62;13103:2;13088:18;;12930:182::o;13117:405::-;13319:2;13301:21;;;13358:2;13338:18;;;13331:30;13397:34;13392:2;13377:18;;13370:62;-1:-1:-1;;;13463:2:1;13448:18;;13441:39;13512:3;13497:19;;13291:231::o;13527:411::-;13729:2;13711:21;;;13768:2;13748:18;;;13741:30;13807:34;13802:2;13787:18;;13780:62;-1:-1:-1;;;13873:2:1;13858:18;;13851:45;13928:3;13913:19;;13701:237::o;13943:397::-;14145:2;14127:21;;;14184:2;14164:18;;;14157:30;14223:34;14218:2;14203:18;;14196:62;-1:-1:-1;;;14289:2:1;14274:18;;14267:31;14330:3;14315:19;;14117:223::o;14345:413::-;14547:2;14529:21;;;14586:2;14566:18;;;14559:30;14625:34;14620:2;14605:18;;14598:62;-1:-1:-1;;;14691:2:1;14676:18;;14669:47;14748:3;14733:19;;14519:239::o;14763:408::-;14965:2;14947:21;;;15004:2;14984:18;;;14977:30;15043:34;15038:2;15023:18;;15016:62;-1:-1:-1;;;15109:2:1;15094:18;;15087:42;15161:3;15146:19;;14937:234::o;15176:349::-;15378:2;15360:21;;;15417:2;15397:18;;;15390:30;15456:27;15451:2;15436:18;;15429:55;15516:2;15501:18;;15350:175::o;15530:177::-;15676:25;;;15664:2;15649:18;;15631:76::o;15712:129::-;;15780:17;;;15830:4;15814:21;;;15770:71::o;15846:128::-;;15917:1;15913:6;15910:1;15907:13;15904:2;;;15923:18;;:::i;:::-;-1:-1:-1;15959:9:1;;15894:80::o;15979:120::-;;16045:1;16035:2;;16050:18;;:::i;:::-;-1:-1:-1;16084:9:1;;16025:74::o;16104:168::-;;16210:1;16206;16202:6;16198:14;16195:1;16192:21;16187:1;16180:9;16173:17;16169:45;16166:2;;;16217:18;;:::i;:::-;-1:-1:-1;16257:9:1;;16156:116::o;16277:125::-;;16345:1;16342;16339:8;16336:2;;;16350:18;;:::i;:::-;-1:-1:-1;16387:9:1;;16326:76::o;16407:258::-;16479:1;16489:113;16503:6;16500:1;16497:13;16489:113;;;16579:11;;;16573:18;16560:11;;;16553:39;16525:2;16518:10;16489:113;;;16620:6;16617:1;16614:13;16611:2;;;-1:-1:-1;;16655:1:1;16637:16;;16630:27;16460:205::o;16670:380::-;16755:1;16745:12;;16802:1;16792:12;;;16813:2;;16867:4;16859:6;16855:17;16845:27;;16813:2;16920;16912:6;16909:14;16889:18;16886:38;16883:2;;;16966:10;16961:3;16957:20;16954:1;16947:31;17001:4;16998:1;16991:15;17029:4;17026:1;17019:15;16883:2;;16725:325;;;:::o;17055:135::-;;-1:-1:-1;;17115:17:1;;17112:2;;;17135:18;;:::i;:::-;-1:-1:-1;17182:1:1;17171:13;;17102:88::o;17195:112::-;;17253:1;17243:2;;17258:18;;:::i;:::-;-1:-1:-1;17292:9:1;;17233:74::o;17312:127::-;17373:10;17368:3;17364:20;17361:1;17354:31;17404:4;17401:1;17394:15;17428:4;17425:1;17418:15;17444:127;17505:10;17500:3;17496:20;17493:1;17486:31;17536:4;17533:1;17526:15;17560:4;17557:1;17550:15;17576:127;17637:10;17632:3;17628:20;17625:1;17618:31;17668:4;17665:1;17658:15;17692:4;17689:1;17682:15;17708:133;-1:-1:-1;;;;;;17784:32:1;;17774:43;;17764:2;;17831:1;17828;17821:12

Swarm Source

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