ETH Price: $3,091.78 (+1.01%)
Gas: 4 Gwei

Token

Cryptorontonians (C14S)
 

Overview

Max Total Supply

150 C14S

Holders

87

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 C14S
0x1d718029a64ad29f8b6a5ba6d3cf4458d23ff095
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:
Cryptorontonians

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-12
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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




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













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







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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





// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}







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

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

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

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

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

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

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

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


contract Cryptorontonians is ERC721, ERC721Enumerable, Ownable {
    using SafeMath for uint256;

    uint256 public constant maxSupply = 6555;
    uint256 private _unitPrice = 0.08 ether;
    uint256 private _reserved = 220;
    string  private _name;
    string private _symbol;
    bool private _saleStarted = false;

    string public PROVENANCE_HASH = "";
    string public baseURI;

    address constant teamWallet = 0x1033733EA5db8F5404DB8eCd02A1bAF3e018095B;
    address daoWallet = 0x0FEb247A31e41A6FB33E0ae222Ec9A765244bDF8;

    constructor(string memory name_, string memory symbol_) ERC721(_name, _symbol) {
        setName(name_, symbol_);
    }

    function setName(string memory name_, string memory symbol_) public onlyOwner {
        require(bytes(name_).length != 0, "name_ must not be empty ");
        require(bytes(symbol_).length != 0, "symbol_ must not be empty ");
        _name = name_;
        _symbol = symbol_;
    }

    function name() public view override returns (string memory) {
        return _name;
    }

    function symbol() public view override returns (string memory) {
        return _symbol;
    }

    function toggleSaleStarted() external onlyOwner {
        require(bytes(baseURI).length != 0, "baseURI must not be empty before start selling");
        _saleStarted = !_saleStarted;
    }

    function mint(uint256 _numOfTokens) external payable {
        uint256 supply = totalSupply();

        require(_saleStarted, "Sale not started.");
        require(_numOfTokens < 21, "You cannot mint more than 20 Tokens at once.");
        require(supply + _numOfTokens <= maxSupply - _reserved, "Not enough Tokens left.");
        require(_numOfTokens * _unitPrice <= msg.value, "Ether value sent is not enough.");

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

    function setBaseURI(string memory baseURI_) public onlyOwner {
        require(bytes(baseURI_).length != 0, "baseURI_ must not empty");
        baseURI = baseURI_;
    }

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

    function setUnitPrice(uint256 unitPrice_) external onlyOwner {
        _unitPrice = unitPrice_;
    }

    function getUnitPrice() public view returns (uint256){
        return _unitPrice;
    }

    function getReservedLeft() public view returns (uint256) {
        return _reserved;
    }

    function walletOfOwner(address owner_) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(owner_);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(owner_, i);
        }
        return tokensId;
    }

    function reserve(uint256 numOfToken_, address receiverAddress_) external onlyOwner {
        require(numOfToken_ <= _reserved, "Exceeded tokens.");
        require(receiverAddress_ != address(0), "receiverAddress_ must not be empty");

        uint256 _tokenId = totalSupply();
        for (uint256 i; i < numOfToken_; i++) {
            _safeMint(receiverAddress_, _tokenId + i);
        }

        _reserved = _reserved - numOfToken_;
    }

    function  setDAOWallet(address daoWallet_) external onlyOwner {
        require(daoWallet_ != address(0), "daoWallet_ must not be empty");
        daoWallet = daoWallet_;
    }

    function withdraw() public onlyOwner {
        uint256 _balance = address(this).balance;
        uint256 _split = _balance.mul(75).div(100);

        require(payable(teamWallet).send(_split));
        require(payable(daoWallet).send(_balance.sub(_split)));
    }

    function _beforeTokenTransfer(address from_, address to_, uint256 tokenId_)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from_, to_, tokenId_);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        PROVENANCE_HASH = provenanceHash;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReservedLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUnitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfToken_","type":"uint256"},{"internalType":"address","name":"receiverAddress_","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"daoWallet_","type":"address"}],"name":"setDAOWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"unitPrice_","type":"uint256"}],"name":"setUnitPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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"}]

67011c37937e080000600b5560dc600c55600f805460ff1916905560a0604081905260006080819052620000369160109162000395565b50601280546001600160a01b031916730feb247a31e41a6fb33e0ae222ec9a765244bdf81790553480156200006a57600080fd5b5060405162002ce638038062002ce68339810160408190526200008d91620004f2565b600d80546200009c906200055c565b80601f0160208091040260200160405190810160405280929190818152602001828054620000ca906200055c565b80156200011b5780601f10620000ef576101008083540402835291602001916200011b565b820191906000526020600020905b815481529060010190602001808311620000fd57829003601f168201915b5050505050600e80546200012f906200055c565b80601f01602080910402602001604051908101604052809291908181526020018280546200015d906200055c565b8015620001ae5780601f106200018257610100808354040283529160200191620001ae565b820191906000526020600020905b8154815290600101906020018083116200019057829003601f168201915b50508451620001c893506000925060208601915062000395565b508051620001de90600190602084019062000395565b505050620001fb620001f56200020f60201b60201c565b62000213565b62000207828262000265565b5050620005af565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8151620003155760405162461bcd60e51b815260206004820152601860248201527f6e616d655f206d757374206e6f7420626520656d7074792000000000000000006044820152606401620002bc565b8051620003655760405162461bcd60e51b815260206004820152601a60248201527f73796d626f6c5f206d757374206e6f7420626520656d707479200000000000006044820152606401620002bc565b81516200037a90600d90602085019062000395565b5080516200039090600e90602084019062000395565b505050565b828054620003a3906200055c565b90600052602060002090601f016020900481019282620003c7576000855562000412565b82601f10620003e257805160ff191683800117855562000412565b8280016001018555821562000412579182015b8281111562000412578251825591602001919060010190620003f5565b506200042092915062000424565b5090565b5b8082111562000420576000815560010162000425565b600082601f8301126200044d57600080fd5b81516001600160401b03808211156200046a576200046a62000599565b604051601f8301601f19908116603f0116810190828211818310171562000495576200049562000599565b81604052838152602092508683858801011115620004b257600080fd5b600091505b83821015620004d65785820183015181830184015290820190620004b7565b83821115620004e85760008385830101525b9695505050505050565b600080604083850312156200050657600080fd5b82516001600160401b03808211156200051e57600080fd5b6200052c868387016200043b565b935060208501519150808211156200054357600080fd5b5062000552858286016200043b565b9150509250929050565b600181811c908216806200057157607f821691505b602082108114156200059357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61272780620005bf6000396000f3fe6080604052600436106101f95760003560e01c80636c0360eb1161010d578063bc6d2635116100a0578063daa023aa1161006f578063daa023aa14610580578063dc1b732814610595578063e985e9c5146105b5578063f2fde38b146105fe578063ff1b65561461061e57600080fd5b8063bc6d263514610515578063c87b56dd1461052a578063d06c8b601461054a578063d5abeb011461056a57600080fd5b806395d89b41116100dc57806395d89b41146104ad578063a0712d68146104c2578063a22cb465146104d5578063b88d4fde146104f557600080fd5b80636c0360eb1461044557806370a082311461045a578063715018a61461047a5780638da5cb5b1461048f57600080fd5b806323b872dd11610190578063438b63001161015f578063438b6300146103985780634f6ccce7146103c557806355f804b3146103e55780635c707f07146104055780636352211e1461042557600080fd5b806323b872dd146103235780632f745c59146103435780633ccfd60b1461036357806342842e0e1461037857600080fd5b8063081812fc116101cc578063081812fc14610296578063095ea7b3146102ce57806310969523146102ee57806318160ddd1461030e57600080fd5b8063012a33aa146101fe57806301ffc9a71461022257806303339bcb1461025257806306fdde0314610274575b600080fd5b34801561020a57600080fd5b50600b545b6040519081526020015b60405180910390f35b34801561022e57600080fd5b5061024261023d36600461229f565b610633565b6040519015158152602001610219565b34801561025e57600080fd5b5061027261026d36600461238b565b610644565b005b34801561028057600080fd5b50610289610771565b604051610219919061248a565b3480156102a257600080fd5b506102b66102b1366004612372565b610803565b6040516001600160a01b039091168152602001610219565b3480156102da57600080fd5b506102726102e9366004612275565b610898565b3480156102fa57600080fd5b506102726103093660046122d9565b6109ae565b34801561031a57600080fd5b5060085461020f565b34801561032f57600080fd5b5061027261033e366004612181565b6109ef565b34801561034f57600080fd5b5061020f61035e366004612275565b610a20565b34801561036f57600080fd5b50610272610ab6565b34801561038457600080fd5b50610272610393366004612181565b610b6e565b3480156103a457600080fd5b506103b86103b3366004612133565b610b89565b6040516102199190612446565b3480156103d157600080fd5b5061020f6103e0366004612372565b610c2b565b3480156103f157600080fd5b506102726104003660046122d9565b610cbe565b34801561041157600080fd5b5061027261042036600461230e565b610d49565b34801561043157600080fd5b506102b6610440366004612372565b610e36565b34801561045157600080fd5b50610289610ead565b34801561046657600080fd5b5061020f610475366004612133565b610f3b565b34801561048657600080fd5b50610272610fc2565b34801561049b57600080fd5b50600a546001600160a01b03166102b6565b3480156104b957600080fd5b50610289610ff8565b6102726104d0366004612372565b611007565b3480156104e157600080fd5b506102726104f0366004612239565b6111af565b34801561050157600080fd5b506102726105103660046121bd565b611274565b34801561052157600080fd5b506102726112ac565b34801561053657600080fd5b50610289610545366004612372565b61135e565b34801561055657600080fd5b50610272610565366004612133565b611439565b34801561057657600080fd5b5061020f61199b81565b34801561058c57600080fd5b50600c5461020f565b3480156105a157600080fd5b506102726105b0366004612372565b6114db565b3480156105c157600080fd5b506102426105d036600461214e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060a57600080fd5b50610272610619366004612133565b61150a565b34801561062a57600080fd5b506102896115a5565b600061063e826115b2565b92915050565b600a546001600160a01b031633146106775760405162461bcd60e51b815260040161066e906124ef565b60405180910390fd5b600c548211156106bc5760405162461bcd60e51b815260206004820152601060248201526f22bc31b2b2b232b2103a37b5b2b7399760811b604482015260640161066e565b6001600160a01b03811661071d5760405162461bcd60e51b815260206004820152602260248201527f7265636569766572416464726573735f206d757374206e6f7420626520656d70604482015261747960f01b606482015260840161066e565b600061072860085490565b905060005b8381101561075a57610748836107438385612575565b6115d7565b806107528161263e565b91505061072d565b5082600c5461076991906125c0565b600c55505050565b6060600d805461078090612603565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90612603565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661087c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161066e565b506000908152600460205260409020546001600160a01b031690565b60006108a382610e36565b9050806001600160a01b0316836001600160a01b031614156109115760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161066e565b336001600160a01b038216148061092d575061092d81336105d0565b61099f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161066e565b6109a983836115f1565b505050565b600a546001600160a01b031633146109d85760405162461bcd60e51b815260040161066e906124ef565b80516109eb906010906020840190611fe8565b5050565b6109f9338261165f565b610a155760405162461bcd60e51b815260040161066e90612524565b6109a9838383611756565b6000610a2b83610f3b565b8210610a8d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161066e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ae05760405162461bcd60e51b815260040161066e906124ef565b476000610af96064610af384604b611901565b9061190d565b604051909150731033733ea5db8f5404db8ecd02a1baf3e018095b9082156108fc029083906000818181858888f19350505050610b3557600080fd5b6012546001600160a01b03166108fc610b4e8484611919565b6040518115909202916000818181858888f193505050506109eb57600080fd5b6109a983838360405180602001604052806000815250611274565b60606000610b9683610f3b565b905060008167ffffffffffffffff811115610bb357610bb36126c5565b604051908082528060200260200182016040528015610bdc578160200160208202803683370190505b50905060005b82811015610c2357610bf48582610a20565b828281518110610c0657610c066126af565b602090810291909101015280610c1b8161263e565b915050610be2565b509392505050565b6000610c3660085490565b8210610c995760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161066e565b60088281548110610cac57610cac6126af565b90600052602060002001549050919050565b600a546001600160a01b03163314610ce85760405162461bcd60e51b815260040161066e906124ef565b8051610d365760405162461bcd60e51b815260206004820152601760248201527f626173655552495f206d757374206e6f7420656d707479000000000000000000604482015260640161066e565b80516109eb906011906020840190611fe8565b600a546001600160a01b03163314610d735760405162461bcd60e51b815260040161066e906124ef565b8151610dc15760405162461bcd60e51b815260206004820152601860248201527f6e616d655f206d757374206e6f7420626520656d707479200000000000000000604482015260640161066e565b8051610e0f5760405162461bcd60e51b815260206004820152601a60248201527f73796d626f6c5f206d757374206e6f7420626520656d70747920000000000000604482015260640161066e565b8151610e2290600d906020850190611fe8565b5080516109a990600e906020840190611fe8565b6000818152600260205260408120546001600160a01b03168061063e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161066e565b60118054610eba90612603565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee690612603565b8015610f335780601f10610f0857610100808354040283529160200191610f33565b820191906000526020600020905b815481529060010190602001808311610f1657829003601f168201915b505050505081565b60006001600160a01b038216610fa65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161066e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fec5760405162461bcd60e51b815260040161066e906124ef565b610ff66000611925565b565b6060600e805461078090612603565b600061101260085490565b600f5490915060ff1661105b5760405162461bcd60e51b815260206004820152601160248201527029b0b632903737ba1039ba30b93a32b21760791b604482015260640161066e565b601582106110c05760405162461bcd60e51b815260206004820152602c60248201527f596f752063616e6e6f74206d696e74206d6f7265207468616e20323020546f6b60448201526b32b7399030ba1037b731b29760a11b606482015260840161066e565b600c546110cf9061199b6125c0565b6110d98383612575565b11156111275760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f75676820546f6b656e73206c6566742e000000000000000000604482015260640161066e565b34600b548361113691906125a1565b11156111845760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420656e6f7567682e00604482015260640161066e565b60005b828110156109a95761119d336107438385612575565b806111a78161263e565b915050611187565b6001600160a01b0382163314156112085760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161066e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61127e338361165f565b61129a5760405162461bcd60e51b815260040161066e90612524565b6112a684848484611977565b50505050565b600a546001600160a01b031633146112d65760405162461bcd60e51b815260040161066e906124ef565b601180546112e390612603565b1515905061134a5760405162461bcd60e51b815260206004820152602e60248201527f62617365555249206d757374206e6f7420626520656d707479206265666f726560448201526d2073746172742073656c6c696e6760901b606482015260840161066e565b600f805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b03166113dd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161066e565b60006113e76119aa565b905060008151116114075760405180602001604052806000815250611432565b80611411846119b9565b6040516020016114229291906123da565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114635760405162461bcd60e51b815260040161066e906124ef565b6001600160a01b0381166114b95760405162461bcd60e51b815260206004820152601c60248201527f64616f57616c6c65745f206d757374206e6f7420626520656d70747900000000604482015260640161066e565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146115055760405162461bcd60e51b815260040161066e906124ef565b600b55565b600a546001600160a01b031633146115345760405162461bcd60e51b815260040161066e906124ef565b6001600160a01b0381166115995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066e565b6115a281611925565b50565b60108054610eba90612603565b60006001600160e01b0319821663780e9d6360e01b148061063e575061063e82611ab7565b6109eb828260405180602001604052806000815250611b07565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061162682610e36565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161066e565b60006116e383610e36565b9050806001600160a01b0316846001600160a01b0316148061171e5750836001600160a01b031661171384610803565b6001600160a01b0316145b8061174e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661176982610e36565b6001600160a01b0316146117d15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161066e565b6001600160a01b0382166118335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161066e565b61183e838383611b3a565b6118496000826115f1565b6001600160a01b03831660009081526003602052604081208054600192906118729084906125c0565b90915550506001600160a01b03821660009081526003602052604081208054600192906118a0908490612575565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061143282846125a1565b6000611432828461258d565b600061143282846125c0565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611982848484611756565b61198e84848484611b45565b6112a65760405162461bcd60e51b815260040161066e9061249d565b60606011805461078090612603565b6060816119dd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0757806119f18161263e565b9150611a009050600a8361258d565b91506119e1565b60008167ffffffffffffffff811115611a2257611a226126c5565b6040519080825280601f01601f191660200182016040528015611a4c576020820181803683370190505b5090505b841561174e57611a616001836125c0565b9150611a6e600a86612659565b611a79906030612575565b60f81b818381518110611a8e57611a8e6126af565b60200101906001600160f81b031916908160001a905350611ab0600a8661258d565b9450611a50565b60006001600160e01b031982166380ac58cd60e01b1480611ae857506001600160e01b03198216635b5e139f60e01b145b8061063e57506301ffc9a760e01b6001600160e01b031983161461063e565b611b118383611c52565b611b1e6000848484611b45565b6109a95760405162461bcd60e51b815260040161066e9061249d565b6109a9838383611da0565b60006001600160a01b0384163b15611c4757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b89903390899088908890600401612409565b602060405180830381600087803b158015611ba357600080fd5b505af1925050508015611bd3575060408051601f3d908101601f19168201909252611bd0918101906122bc565b60015b611c2d573d808015611c01576040519150601f19603f3d011682016040523d82523d6000602084013e611c06565b606091505b508051611c255760405162461bcd60e51b815260040161066e9061249d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061174e565b506001949350505050565b6001600160a01b038216611ca85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161066e565b6000818152600260205260409020546001600160a01b031615611d0d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161066e565b611d1960008383611b3a565b6001600160a01b0382166000908152600360205260408120805460019290611d42908490612575565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316611dfb57611df681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e1e565b816001600160a01b0316836001600160a01b031614611e1e57611e1e8382611e58565b6001600160a01b038216611e35576109a981611ef5565b826001600160a01b0316826001600160a01b0316146109a9576109a98282611fa4565b60006001611e6584610f3b565b611e6f91906125c0565b600083815260076020526040902054909150808214611ec2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f07906001906125c0565b60008381526009602052604081205460088054939450909284908110611f2f57611f2f6126af565b906000526020600020015490508060088381548110611f5057611f506126af565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f8857611f88612699565b6001900381819060005260206000200160009055905550505050565b6000611faf83610f3b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611ff490612603565b90600052602060002090601f016020900481019282612016576000855561205c565b82601f1061202f57805160ff191683800117855561205c565b8280016001018555821561205c579182015b8281111561205c578251825591602001919060010190612041565b5061206892915061206c565b5090565b5b80821115612068576000815560010161206d565b600067ffffffffffffffff8084111561209c5761209c6126c5565b604051601f8501601f19908116603f011681019082821181831017156120c4576120c46126c5565b816040528093508581528686860111156120dd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461210e57600080fd5b919050565b600082601f83011261212457600080fd5b61143283833560208501612081565b60006020828403121561214557600080fd5b611432826120f7565b6000806040838503121561216157600080fd5b61216a836120f7565b9150612178602084016120f7565b90509250929050565b60008060006060848603121561219657600080fd5b61219f846120f7565b92506121ad602085016120f7565b9150604084013590509250925092565b600080600080608085870312156121d357600080fd5b6121dc856120f7565b93506121ea602086016120f7565b925060408501359150606085013567ffffffffffffffff81111561220d57600080fd5b8501601f8101871361221e57600080fd5b61222d87823560208401612081565b91505092959194509250565b6000806040838503121561224c57600080fd5b612255836120f7565b91506020830135801515811461226a57600080fd5b809150509250929050565b6000806040838503121561228857600080fd5b612291836120f7565b946020939093013593505050565b6000602082840312156122b157600080fd5b8135611432816126db565b6000602082840312156122ce57600080fd5b8151611432816126db565b6000602082840312156122eb57600080fd5b813567ffffffffffffffff81111561230257600080fd5b61174e84828501612113565b6000806040838503121561232157600080fd5b823567ffffffffffffffff8082111561233957600080fd5b61234586838701612113565b9350602085013591508082111561235b57600080fd5b5061236885828601612113565b9150509250929050565b60006020828403121561238457600080fd5b5035919050565b6000806040838503121561239e57600080fd5b82359150612178602084016120f7565b600081518084526123c68160208601602086016125d7565b601f01601f19169290920160200192915050565b600083516123ec8184602088016125d7565b8351908301906124008183602088016125d7565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061243c908301846123ae565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561247e57835183529284019291840191600101612462565b50909695505050505050565b60208152600061143260208301846123ae565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125885761258861266d565b500190565b60008261259c5761259c612683565b500490565b60008160001904831182151516156125bb576125bb61266d565b500290565b6000828210156125d2576125d261266d565b500390565b60005b838110156125f25781810151838201526020016125da565b838111156112a65750506000910152565b600181811c9082168061261757607f821691505b6020821081141561263857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126525761265261266d565b5060010190565b60008261266857612668612683565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115a257600080fdfea2646970667358221220e116f055083edf25246878e318bf13ce7394e2bcb4b83e3a6b68b4930fdfa41364736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001043727970746f726f6e746f6e69616e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044331345300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636c0360eb1161010d578063bc6d2635116100a0578063daa023aa1161006f578063daa023aa14610580578063dc1b732814610595578063e985e9c5146105b5578063f2fde38b146105fe578063ff1b65561461061e57600080fd5b8063bc6d263514610515578063c87b56dd1461052a578063d06c8b601461054a578063d5abeb011461056a57600080fd5b806395d89b41116100dc57806395d89b41146104ad578063a0712d68146104c2578063a22cb465146104d5578063b88d4fde146104f557600080fd5b80636c0360eb1461044557806370a082311461045a578063715018a61461047a5780638da5cb5b1461048f57600080fd5b806323b872dd11610190578063438b63001161015f578063438b6300146103985780634f6ccce7146103c557806355f804b3146103e55780635c707f07146104055780636352211e1461042557600080fd5b806323b872dd146103235780632f745c59146103435780633ccfd60b1461036357806342842e0e1461037857600080fd5b8063081812fc116101cc578063081812fc14610296578063095ea7b3146102ce57806310969523146102ee57806318160ddd1461030e57600080fd5b8063012a33aa146101fe57806301ffc9a71461022257806303339bcb1461025257806306fdde0314610274575b600080fd5b34801561020a57600080fd5b50600b545b6040519081526020015b60405180910390f35b34801561022e57600080fd5b5061024261023d36600461229f565b610633565b6040519015158152602001610219565b34801561025e57600080fd5b5061027261026d36600461238b565b610644565b005b34801561028057600080fd5b50610289610771565b604051610219919061248a565b3480156102a257600080fd5b506102b66102b1366004612372565b610803565b6040516001600160a01b039091168152602001610219565b3480156102da57600080fd5b506102726102e9366004612275565b610898565b3480156102fa57600080fd5b506102726103093660046122d9565b6109ae565b34801561031a57600080fd5b5060085461020f565b34801561032f57600080fd5b5061027261033e366004612181565b6109ef565b34801561034f57600080fd5b5061020f61035e366004612275565b610a20565b34801561036f57600080fd5b50610272610ab6565b34801561038457600080fd5b50610272610393366004612181565b610b6e565b3480156103a457600080fd5b506103b86103b3366004612133565b610b89565b6040516102199190612446565b3480156103d157600080fd5b5061020f6103e0366004612372565b610c2b565b3480156103f157600080fd5b506102726104003660046122d9565b610cbe565b34801561041157600080fd5b5061027261042036600461230e565b610d49565b34801561043157600080fd5b506102b6610440366004612372565b610e36565b34801561045157600080fd5b50610289610ead565b34801561046657600080fd5b5061020f610475366004612133565b610f3b565b34801561048657600080fd5b50610272610fc2565b34801561049b57600080fd5b50600a546001600160a01b03166102b6565b3480156104b957600080fd5b50610289610ff8565b6102726104d0366004612372565b611007565b3480156104e157600080fd5b506102726104f0366004612239565b6111af565b34801561050157600080fd5b506102726105103660046121bd565b611274565b34801561052157600080fd5b506102726112ac565b34801561053657600080fd5b50610289610545366004612372565b61135e565b34801561055657600080fd5b50610272610565366004612133565b611439565b34801561057657600080fd5b5061020f61199b81565b34801561058c57600080fd5b50600c5461020f565b3480156105a157600080fd5b506102726105b0366004612372565b6114db565b3480156105c157600080fd5b506102426105d036600461214e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060a57600080fd5b50610272610619366004612133565b61150a565b34801561062a57600080fd5b506102896115a5565b600061063e826115b2565b92915050565b600a546001600160a01b031633146106775760405162461bcd60e51b815260040161066e906124ef565b60405180910390fd5b600c548211156106bc5760405162461bcd60e51b815260206004820152601060248201526f22bc31b2b2b232b2103a37b5b2b7399760811b604482015260640161066e565b6001600160a01b03811661071d5760405162461bcd60e51b815260206004820152602260248201527f7265636569766572416464726573735f206d757374206e6f7420626520656d70604482015261747960f01b606482015260840161066e565b600061072860085490565b905060005b8381101561075a57610748836107438385612575565b6115d7565b806107528161263e565b91505061072d565b5082600c5461076991906125c0565b600c55505050565b6060600d805461078090612603565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90612603565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661087c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161066e565b506000908152600460205260409020546001600160a01b031690565b60006108a382610e36565b9050806001600160a01b0316836001600160a01b031614156109115760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161066e565b336001600160a01b038216148061092d575061092d81336105d0565b61099f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161066e565b6109a983836115f1565b505050565b600a546001600160a01b031633146109d85760405162461bcd60e51b815260040161066e906124ef565b80516109eb906010906020840190611fe8565b5050565b6109f9338261165f565b610a155760405162461bcd60e51b815260040161066e90612524565b6109a9838383611756565b6000610a2b83610f3b565b8210610a8d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161066e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ae05760405162461bcd60e51b815260040161066e906124ef565b476000610af96064610af384604b611901565b9061190d565b604051909150731033733ea5db8f5404db8ecd02a1baf3e018095b9082156108fc029083906000818181858888f19350505050610b3557600080fd5b6012546001600160a01b03166108fc610b4e8484611919565b6040518115909202916000818181858888f193505050506109eb57600080fd5b6109a983838360405180602001604052806000815250611274565b60606000610b9683610f3b565b905060008167ffffffffffffffff811115610bb357610bb36126c5565b604051908082528060200260200182016040528015610bdc578160200160208202803683370190505b50905060005b82811015610c2357610bf48582610a20565b828281518110610c0657610c066126af565b602090810291909101015280610c1b8161263e565b915050610be2565b509392505050565b6000610c3660085490565b8210610c995760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161066e565b60088281548110610cac57610cac6126af565b90600052602060002001549050919050565b600a546001600160a01b03163314610ce85760405162461bcd60e51b815260040161066e906124ef565b8051610d365760405162461bcd60e51b815260206004820152601760248201527f626173655552495f206d757374206e6f7420656d707479000000000000000000604482015260640161066e565b80516109eb906011906020840190611fe8565b600a546001600160a01b03163314610d735760405162461bcd60e51b815260040161066e906124ef565b8151610dc15760405162461bcd60e51b815260206004820152601860248201527f6e616d655f206d757374206e6f7420626520656d707479200000000000000000604482015260640161066e565b8051610e0f5760405162461bcd60e51b815260206004820152601a60248201527f73796d626f6c5f206d757374206e6f7420626520656d70747920000000000000604482015260640161066e565b8151610e2290600d906020850190611fe8565b5080516109a990600e906020840190611fe8565b6000818152600260205260408120546001600160a01b03168061063e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161066e565b60118054610eba90612603565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee690612603565b8015610f335780601f10610f0857610100808354040283529160200191610f33565b820191906000526020600020905b815481529060010190602001808311610f1657829003601f168201915b505050505081565b60006001600160a01b038216610fa65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161066e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fec5760405162461bcd60e51b815260040161066e906124ef565b610ff66000611925565b565b6060600e805461078090612603565b600061101260085490565b600f5490915060ff1661105b5760405162461bcd60e51b815260206004820152601160248201527029b0b632903737ba1039ba30b93a32b21760791b604482015260640161066e565b601582106110c05760405162461bcd60e51b815260206004820152602c60248201527f596f752063616e6e6f74206d696e74206d6f7265207468616e20323020546f6b60448201526b32b7399030ba1037b731b29760a11b606482015260840161066e565b600c546110cf9061199b6125c0565b6110d98383612575565b11156111275760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f75676820546f6b656e73206c6566742e000000000000000000604482015260640161066e565b34600b548361113691906125a1565b11156111845760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420656e6f7567682e00604482015260640161066e565b60005b828110156109a95761119d336107438385612575565b806111a78161263e565b915050611187565b6001600160a01b0382163314156112085760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161066e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61127e338361165f565b61129a5760405162461bcd60e51b815260040161066e90612524565b6112a684848484611977565b50505050565b600a546001600160a01b031633146112d65760405162461bcd60e51b815260040161066e906124ef565b601180546112e390612603565b1515905061134a5760405162461bcd60e51b815260206004820152602e60248201527f62617365555249206d757374206e6f7420626520656d707479206265666f726560448201526d2073746172742073656c6c696e6760901b606482015260840161066e565b600f805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b03166113dd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161066e565b60006113e76119aa565b905060008151116114075760405180602001604052806000815250611432565b80611411846119b9565b6040516020016114229291906123da565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114635760405162461bcd60e51b815260040161066e906124ef565b6001600160a01b0381166114b95760405162461bcd60e51b815260206004820152601c60248201527f64616f57616c6c65745f206d757374206e6f7420626520656d70747900000000604482015260640161066e565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146115055760405162461bcd60e51b815260040161066e906124ef565b600b55565b600a546001600160a01b031633146115345760405162461bcd60e51b815260040161066e906124ef565b6001600160a01b0381166115995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066e565b6115a281611925565b50565b60108054610eba90612603565b60006001600160e01b0319821663780e9d6360e01b148061063e575061063e82611ab7565b6109eb828260405180602001604052806000815250611b07565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061162682610e36565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161066e565b60006116e383610e36565b9050806001600160a01b0316846001600160a01b0316148061171e5750836001600160a01b031661171384610803565b6001600160a01b0316145b8061174e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661176982610e36565b6001600160a01b0316146117d15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161066e565b6001600160a01b0382166118335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161066e565b61183e838383611b3a565b6118496000826115f1565b6001600160a01b03831660009081526003602052604081208054600192906118729084906125c0565b90915550506001600160a01b03821660009081526003602052604081208054600192906118a0908490612575565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061143282846125a1565b6000611432828461258d565b600061143282846125c0565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611982848484611756565b61198e84848484611b45565b6112a65760405162461bcd60e51b815260040161066e9061249d565b60606011805461078090612603565b6060816119dd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0757806119f18161263e565b9150611a009050600a8361258d565b91506119e1565b60008167ffffffffffffffff811115611a2257611a226126c5565b6040519080825280601f01601f191660200182016040528015611a4c576020820181803683370190505b5090505b841561174e57611a616001836125c0565b9150611a6e600a86612659565b611a79906030612575565b60f81b818381518110611a8e57611a8e6126af565b60200101906001600160f81b031916908160001a905350611ab0600a8661258d565b9450611a50565b60006001600160e01b031982166380ac58cd60e01b1480611ae857506001600160e01b03198216635b5e139f60e01b145b8061063e57506301ffc9a760e01b6001600160e01b031983161461063e565b611b118383611c52565b611b1e6000848484611b45565b6109a95760405162461bcd60e51b815260040161066e9061249d565b6109a9838383611da0565b60006001600160a01b0384163b15611c4757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b89903390899088908890600401612409565b602060405180830381600087803b158015611ba357600080fd5b505af1925050508015611bd3575060408051601f3d908101601f19168201909252611bd0918101906122bc565b60015b611c2d573d808015611c01576040519150601f19603f3d011682016040523d82523d6000602084013e611c06565b606091505b508051611c255760405162461bcd60e51b815260040161066e9061249d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061174e565b506001949350505050565b6001600160a01b038216611ca85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161066e565b6000818152600260205260409020546001600160a01b031615611d0d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161066e565b611d1960008383611b3a565b6001600160a01b0382166000908152600360205260408120805460019290611d42908490612575565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316611dfb57611df681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e1e565b816001600160a01b0316836001600160a01b031614611e1e57611e1e8382611e58565b6001600160a01b038216611e35576109a981611ef5565b826001600160a01b0316826001600160a01b0316146109a9576109a98282611fa4565b60006001611e6584610f3b565b611e6f91906125c0565b600083815260076020526040902054909150808214611ec2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f07906001906125c0565b60008381526009602052604081205460088054939450909284908110611f2f57611f2f6126af565b906000526020600020015490508060088381548110611f5057611f506126af565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f8857611f88612699565b6001900381819060005260206000200160009055905550505050565b6000611faf83610f3b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611ff490612603565b90600052602060002090601f016020900481019282612016576000855561205c565b82601f1061202f57805160ff191683800117855561205c565b8280016001018555821561205c579182015b8281111561205c578251825591602001919060010190612041565b5061206892915061206c565b5090565b5b80821115612068576000815560010161206d565b600067ffffffffffffffff8084111561209c5761209c6126c5565b604051601f8501601f19908116603f011681019082821181831017156120c4576120c46126c5565b816040528093508581528686860111156120dd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461210e57600080fd5b919050565b600082601f83011261212457600080fd5b61143283833560208501612081565b60006020828403121561214557600080fd5b611432826120f7565b6000806040838503121561216157600080fd5b61216a836120f7565b9150612178602084016120f7565b90509250929050565b60008060006060848603121561219657600080fd5b61219f846120f7565b92506121ad602085016120f7565b9150604084013590509250925092565b600080600080608085870312156121d357600080fd5b6121dc856120f7565b93506121ea602086016120f7565b925060408501359150606085013567ffffffffffffffff81111561220d57600080fd5b8501601f8101871361221e57600080fd5b61222d87823560208401612081565b91505092959194509250565b6000806040838503121561224c57600080fd5b612255836120f7565b91506020830135801515811461226a57600080fd5b809150509250929050565b6000806040838503121561228857600080fd5b612291836120f7565b946020939093013593505050565b6000602082840312156122b157600080fd5b8135611432816126db565b6000602082840312156122ce57600080fd5b8151611432816126db565b6000602082840312156122eb57600080fd5b813567ffffffffffffffff81111561230257600080fd5b61174e84828501612113565b6000806040838503121561232157600080fd5b823567ffffffffffffffff8082111561233957600080fd5b61234586838701612113565b9350602085013591508082111561235b57600080fd5b5061236885828601612113565b9150509250929050565b60006020828403121561238457600080fd5b5035919050565b6000806040838503121561239e57600080fd5b82359150612178602084016120f7565b600081518084526123c68160208601602086016125d7565b601f01601f19169290920160200192915050565b600083516123ec8184602088016125d7565b8351908301906124008183602088016125d7565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061243c908301846123ae565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561247e57835183529284019291840191600101612462565b50909695505050505050565b60208152600061143260208301846123ae565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125885761258861266d565b500190565b60008261259c5761259c612683565b500490565b60008160001904831182151516156125bb576125bb61266d565b500290565b6000828210156125d2576125d261266d565b500390565b60005b838110156125f25781810151838201526020016125da565b838111156112a65750506000910152565b600181811c9082168061261757607f821691505b6020821081141561263857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126525761265261266d565b5060010190565b60008261266857612668612683565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115a257600080fdfea2646970667358221220e116f055083edf25246878e318bf13ce7394e2bcb4b83e3a6b68b4930fdfa41364736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001043727970746f726f6e746f6e69616e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044331345300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Cryptorontonians
Arg [1] : symbol_ (string): C14S

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [3] : 43727970746f726f6e746f6e69616e7300000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4331345300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48986:4371:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51321:89;;;;;;;;;;-1:-1:-1;51392:10:0;;51321:89;;;18843:25:1;;;18831:2;18816:18;51321:89:0;;;;;;;;53009:212;;;;;;;;;;-1:-1:-1;53009:212:0;;;;;:::i;:::-;;:::i;:::-;;;7188:14:1;;7181:22;7163:41;;7151:2;7136:18;53009:212:0;7023:187:1;51868:452:0;;;;;;;;;;-1:-1:-1;51868:452:0;;;;;:::i;:::-;;:::i;:::-;;49965:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22427:221::-;;;;;;;;;;-1:-1:-1;22427:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5849:32:1;;;5831:51;;5819:2;5804:18;22427:221:0;5685:203:1;21950:411:0;;;;;;;;;;-1:-1:-1;21950:411:0;;;;;:::i;:::-;;:::i;53229:125::-;;;;;;;;;;-1:-1:-1;53229:125:0;;;;;:::i;:::-;;:::i;34400:113::-;;;;;;;;;;-1:-1:-1;34488:10:0;:17;34400:113;;23317:339;;;;;;;;;;-1:-1:-1;23317:339:0;;;;;:::i;:::-;;:::i;34068:256::-;;;;;;;;;;-1:-1:-1;34068:256:0;;;;;:::i;:::-;;:::i;52515:268::-;;;;;;;;;;;;;:::i;23727:185::-;;;;;;;;;;-1:-1:-1;23727:185:0;;;;;:::i;:::-;;:::i;51518:342::-;;;;;;;;;;-1:-1:-1;51518:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34590:233::-;;;;;;;;;;-1:-1:-1;34590:233:0;;;;;:::i;:::-;;:::i;50915:172::-;;;;;;;;;;-1:-1:-1;50915:172:0;;;;;:::i;:::-;;:::i;49671:286::-;;;;;;;;;;-1:-1:-1;49671:286:0;;;;;:::i;:::-;;:::i;20562:239::-;;;;;;;;;;-1:-1:-1;20562:239:0;;;;;:::i;:::-;;:::i;49362:21::-;;;;;;;;;;;;;:::i;20292:208::-;;;;;;;;;;-1:-1:-1;20292:208:0;;;;;:::i;:::-;;:::i;48355:94::-;;;;;;;;;;;;;:::i;47704:87::-;;;;;;;;;;-1:-1:-1;47777:6:0;;-1:-1:-1;;;;;47777:6:0;47704:87;;50065:96;;;;;;;;;;;;;:::i;50368:539::-;;;;;;:::i;:::-;;:::i;22720:295::-;;;;;;;;;;-1:-1:-1;22720:295:0;;;;;:::i;:::-;;:::i;23983:328::-;;;;;;;;;;-1:-1:-1;23983:328:0;;;;;:::i;:::-;;:::i;50169:191::-;;;;;;;;;;;;;:::i;21212:334::-;;;;;;;;;;-1:-1:-1;21212:334:0;;;;;:::i;:::-;;:::i;52328:179::-;;;;;;;;;;-1:-1:-1;52328:179:0;;;;;:::i;:::-;;:::i;49091:40::-;;;;;;;;;;;;49127:4;49091:40;;51418:92;;;;;;;;;;-1:-1:-1;51493:9:0;;51418:92;;51210:103;;;;;;;;;;-1:-1:-1;51210:103:0;;;;;:::i;:::-;;:::i;23086:164::-;;;;;;;;;;-1:-1:-1;23086:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23207:25:0;;;23183:4;23207:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23086:164;48604:192;;;;;;;;;;-1:-1:-1;48604:192:0;;;;;:::i;:::-;;:::i;49321:34::-;;;;;;;;;;;;;:::i;53009:212::-;53148:4;53177:36;53201:11;53177:23;:36::i;:::-;53170:43;53009:212;-1:-1:-1;;53009:212:0:o;51868:452::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;;;;;;;;;51985:9:::1;;51970:11;:24;;51962:53;;;::::0;-1:-1:-1;;;51962:53:0;;10696:2:1;51962:53:0::1;::::0;::::1;10678:21:1::0;10735:2;10715:18;;;10708:30;-1:-1:-1;;;10754:18:1;;;10747:46;10810:18;;51962:53:0::1;10494:340:1::0;51962:53:0::1;-1:-1:-1::0;;;;;52034:30:0;::::1;52026:77;;;::::0;-1:-1:-1;;;52026:77:0;;12282:2:1;52026:77:0::1;::::0;::::1;12264:21:1::0;12321:2;12301:18;;;12294:30;12360:34;12340:18;;;12333:62;-1:-1:-1;;;12411:18:1;;;12404:32;12453:19;;52026:77:0::1;12080:398:1::0;52026:77:0::1;52116:16;52135:13;34488:10:::0;:17;;34400:113;52135:13:::1;52116:32;;52164:9;52159:106;52179:11;52175:1;:15;52159:106;;;52212:41;52222:16:::0;52240:12:::1;52251:1:::0;52240:8;:12:::1;:::i;:::-;52212:9;:41::i;:::-;52192:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52159:106;;;;52301:11;52289:9;;:23;;;;:::i;:::-;52277:9;:35:::0;-1:-1:-1;;;51868:452:0:o;49965:92::-;50011:13;50044:5;50037:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49965:92;:::o;22427:221::-;22503:7;25910:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25910:16:0;22523:73;;;;-1:-1:-1;;;22523:73:0;;15009:2:1;22523:73:0;;;14991:21:1;15048:2;15028:18;;;15021:30;15087:34;15067:18;;;15060:62;-1:-1:-1;;;15138:18:1;;;15131:42;15190:19;;22523:73:0;14807:408:1;22523:73:0;-1:-1:-1;22616:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22616:24:0;;22427:221::o;21950:411::-;22031:13;22047:23;22062:7;22047:14;:23::i;:::-;22031:39;;22095:5;-1:-1:-1;;;;;22089:11:0;:2;-1:-1:-1;;;;;22089:11:0;;;22081:57;;;;-1:-1:-1;;;22081:57:0;;17666:2:1;22081:57:0;;;17648:21:1;17705:2;17685:18;;;17678:30;17744:34;17724:18;;;17717:62;-1:-1:-1;;;17795:18:1;;;17788:31;17836:19;;22081:57:0;17464:397:1;22081:57:0;1438:10;-1:-1:-1;;;;;22173:21:0;;;;:62;;-1:-1:-1;22198:37:0;22215:5;1438:10;23086:164;:::i;22198:37::-;22151:168;;;;-1:-1:-1;;;22151:168:0;;12685:2:1;22151:168:0;;;12667:21:1;12724:2;12704:18;;;12697:30;12763:34;12743:18;;;12736:62;12834:26;12814:18;;;12807:54;12878:19;;22151:168:0;12483:420:1;22151:168:0;22332:21;22341:2;22345:7;22332:8;:21::i;:::-;22020:341;21950:411;;:::o;53229:125::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;53314:32;;::::1;::::0;:15:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53229:125:::0;:::o;23317:339::-;23512:41;1438:10;23545:7;23512:18;:41::i;:::-;23504:103;;;;-1:-1:-1;;;23504:103:0;;;;;;;:::i;:::-;23620:28;23630:4;23636:2;23640:7;23620:9;:28::i;34068:256::-;34165:7;34201:23;34218:5;34201:16;:23::i;:::-;34193:5;:31;34185:87;;;;-1:-1:-1;;;34185:87:0;;7641:2:1;34185:87:0;;;7623:21:1;7680:2;7660:18;;;7653:30;7719:34;7699:18;;;7692:62;-1:-1:-1;;;7770:18:1;;;7763:41;7821:19;;34185:87:0;7439:407:1;34185:87:0;-1:-1:-1;;;;;;34290:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34068:256::o;52515:268::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;52582:21:::1;52563:16;52631:25;52652:3;52631:16;52582:21:::0;52644:2:::1;52631:12;:16::i;:::-;:20:::0;::::1;:25::i;:::-;52677:32;::::0;52614:42;;-1:-1:-1;49422:42:0::1;::::0;52677:32;::::1;;;::::0;52614:42;;52677:32:::1;::::0;;;52614:42;49422;52677:32;::::1;;;;;;52669:41;;;::::0;::::1;;52737:9;::::0;-1:-1:-1;;;;;52737:9:0::1;52729:45;52753:20;:8:::0;52766:6;52753:12:::1;:20::i;:::-;52729:45;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;52721:54;;;::::0;::::1;23727:185:::0;23865:39;23882:4;23888:2;23892:7;23865:39;;;;;;;;;;;;:16;:39::i;51518:342::-;51577:16;51606:18;51627:17;51637:6;51627:9;:17::i;:::-;51606:38;;51657:25;51699:10;51685:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51685:25:0;;51657:53;;51725:9;51721:106;51740:10;51736:1;:14;51721:106;;;51785:30;51805:6;51813:1;51785:19;:30::i;:::-;51771:8;51780:1;51771:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;51752:3;;;;:::i;:::-;;;;51721:106;;;-1:-1:-1;51844:8:0;51518:342;-1:-1:-1;;;51518:342:0:o;34590:233::-;34665:7;34701:30;34488:10;:17;;34400:113;34701:30;34693:5;:38;34685:95;;;;-1:-1:-1;;;34685:95:0;;18486:2:1;34685:95:0;;;18468:21:1;18525:2;18505:18;;;18498:30;18564:34;18544:18;;;18537:62;-1:-1:-1;;;18615:18:1;;;18608:42;18667:19;;34685:95:0;18284:408:1;34685:95:0;34798:10;34809:5;34798:17;;;;;;;;:::i;:::-;;;;;;;;;34791:24;;34590:233;;;:::o;50915:172::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;50995:22;;50987:63:::1;;;::::0;-1:-1:-1;;;50987:63:0;;15422:2:1;50987:63:0::1;::::0;::::1;15404:21:1::0;15461:2;15441:18;;;15434:30;15500:25;15480:18;;;15473:53;15543:18;;50987:63:0::1;15220:347:1::0;50987:63:0::1;51061:18:::0;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;49671:286::-:0;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;49768:19;;49760:61:::1;;;::::0;-1:-1:-1;;;49760:61:0;;15774:2:1;49760:61:0::1;::::0;::::1;15756:21:1::0;15813:2;15793:18;;;15786:30;15852:26;15832:18;;;15825:54;15896:18;;49760:61:0::1;15572:348:1::0;49760:61:0::1;49840:21:::0;;49832:65:::1;;;::::0;-1:-1:-1;;;49832:65:0;;10341:2:1;49832:65:0::1;::::0;::::1;10323:21:1::0;10380:2;10360:18;;;10353:30;10419:28;10399:18;;;10392:56;10465:18;;49832:65:0::1;10139:350:1::0;49832:65:0::1;49908:13:::0;;::::1;::::0;:5:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;49932:17:0;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;20562:239::-:0;20634:7;20670:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20670:16:0;20705:19;20697:73;;;;-1:-1:-1;;;20697:73:0;;13881:2:1;20697:73:0;;;13863:21:1;13920:2;13900:18;;;13893:30;13959:34;13939:18;;;13932:62;-1:-1:-1;;;14010:18:1;;;14003:39;14059:19;;20697:73:0;13679:405:1;49362:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20292:208::-;20364:7;-1:-1:-1;;;;;20392:19:0;;20384:74;;;;-1:-1:-1;;;20384:74:0;;13470:2:1;20384:74:0;;;13452:21:1;13509:2;13489:18;;;13482:30;13548:34;13528:18;;;13521:62;-1:-1:-1;;;13599:18:1;;;13592:40;13649:19;;20384:74:0;13268:406:1;20384:74:0;-1:-1:-1;;;;;;20476:16:0;;;;;:9;:16;;;;;;;20292:208::o;48355:94::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;48420:21:::1;48438:1;48420:9;:21::i;:::-;48355:94::o:0;50065:96::-;50113:13;50146:7;50139:14;;;;;:::i;50368:539::-;50432:14;50449:13;34488:10;:17;;34400:113;50449:13;50483:12;;50432:30;;-1:-1:-1;50483:12:0;;50475:42;;;;-1:-1:-1;;;50475:42:0;;8879:2:1;50475:42:0;;;8861:21:1;8918:2;8898:18;;;8891:30;-1:-1:-1;;;8937:18:1;;;8930:47;8994:18;;50475:42:0;8677:341:1;50475:42:0;50551:2;50536:12;:17;50528:74;;;;-1:-1:-1;;;50528:74:0;;11454:2:1;50528:74:0;;;11436:21:1;11493:2;11473:18;;;11466:30;11532:34;11512:18;;;11505:62;-1:-1:-1;;;11583:18:1;;;11576:42;11635:19;;50528:74:0;11252:408:1;50528:74:0;50658:9;;50646:21;;49127:4;50646:21;:::i;:::-;50621;50630:12;50621:6;:21;:::i;:::-;:46;;50613:82;;;;-1:-1:-1;;;50613:82:0;;16488:2:1;50613:82:0;;;16470:21:1;16527:2;16507:18;;;16500:30;16566:25;16546:18;;;16539:53;16609:18;;50613:82:0;16286:347:1;50613:82:0;50743:9;50729:10;;50714:12;:25;;;;:::i;:::-;:38;;50706:82;;;;-1:-1:-1;;;50706:82:0;;13110:2:1;50706:82:0;;;13092:21:1;13149:2;13129:18;;;13122:30;13188:33;13168:18;;;13161:61;13239:18;;50706:82:0;12908:355:1;50706:82:0;50806:9;50801:99;50821:12;50817:1;:16;50801:99;;;50855:33;50865:10;50877;50886:1;50877:6;:10;:::i;50855:33::-;50835:3;;;;:::i;:::-;;;;50801:99;;22720:295;-1:-1:-1;;;;;22823:24:0;;1438:10;22823:24;;22815:62;;;;-1:-1:-1;;;22815:62:0;;9987:2:1;22815:62:0;;;9969:21:1;10026:2;10006:18;;;9999:30;10065:27;10045:18;;;10038:55;10110:18;;22815:62:0;9785:349:1;22815:62:0;1438:10;22890:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22890:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;22890:53:0;;;;;;;;;;22959:48;;7163:41:1;;;22890:42:0;;1438:10;22959:48;;7136:18:1;22959:48:0;;;;;;;22720:295;;:::o;23983:328::-;24158:41;1438:10;24191:7;24158:18;:41::i;:::-;24150:103;;;;-1:-1:-1;;;24150:103:0;;;;;;;:::i;:::-;24264:39;24278:4;24284:2;24288:7;24297:5;24264:13;:39::i;:::-;23983:328;;;;:::o;50169:191::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;50242:7:::1;50236:21;;;;;:::i;:::-;:26:::0;::::1;::::0;-1:-1:-1;50228:85:0::1;;;::::0;-1:-1:-1;;;50228:85:0;;11867:2:1;50228:85:0::1;::::0;::::1;11849:21:1::0;11906:2;11886:18;;;11879:30;11945:34;11925:18;;;11918:62;-1:-1:-1;;;11996:18:1;;;11989:44;12050:19;;50228:85:0::1;11665:410:1::0;50228:85:0::1;50340:12;::::0;;-1:-1:-1;;50324:28:0;::::1;50340:12;::::0;;::::1;50339:13;50324:28;::::0;;50169:191::o;21212:334::-;25886:4;25910:16;;;:7;:16;;;;;;21285:13;;-1:-1:-1;;;;;25910:16:0;21311:76;;;;-1:-1:-1;;;21311:76:0;;17250:2:1;21311:76:0;;;17232:21:1;17289:2;17269:18;;;17262:30;17328:34;17308:18;;;17301:62;-1:-1:-1;;;17379:18:1;;;17372:45;17434:19;;21311:76:0;17048:411:1;21311:76:0;21400:21;21424:10;:8;:10::i;:::-;21400:34;;21476:1;21458:7;21452:21;:25;:86;;;;;;;;;;;;;;;;;21504:7;21513:18;:7;:16;:18::i;:::-;21487:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21452:86;21445:93;21212:334;-1:-1:-1;;;21212:334:0:o;52328:179::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52409:24:0;::::1;52401:65;;;::::0;-1:-1:-1;;;52401:65:0;;14652:2:1;52401:65:0::1;::::0;::::1;14634:21:1::0;14691:2;14671:18;;;14664:30;14730;14710:18;;;14703:58;14778:18;;52401:65:0::1;14450:352:1::0;52401:65:0::1;52477:9;:22:::0;;-1:-1:-1;;;;;;52477:22:0::1;-1:-1:-1::0;;;;;52477:22:0;;;::::1;::::0;;;::::1;::::0;;52328:179::o;51210:103::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;51282:10:::1;:23:::0;51210:103::o;48604:192::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48693:22:0;::::1;48685:73;;;::::0;-1:-1:-1;;;48685:73:0;;8472:2:1;48685:73:0::1;::::0;::::1;8454:21:1::0;8511:2;8491:18;;;8484:30;8550:34;8530:18;;;8523:62;-1:-1:-1;;;8601:18:1;;;8594:36;8647:19;;48685:73:0::1;8270:402:1::0;48685:73:0::1;48769:19;48779:8;48769:9;:19::i;:::-;48604:192:::0;:::o;49321:34::-;;;;;;;:::i;33760:224::-;33862:4;-1:-1:-1;;;;;;33886:50:0;;-1:-1:-1;;;33886:50:0;;:90;;;33940:36;33964:11;33940:23;:36::i;26805:110::-;26881:26;26891:2;26895:7;26881:26;;;;;;;;;;;;:9;:26::i;29803:174::-;29878:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29878:29:0;-1:-1:-1;;;;;29878:29:0;;;;;;;;:24;;29932:23;29878:24;29932:14;:23::i;:::-;-1:-1:-1;;;;;29923:46:0;;;;;;;;;;;29803:174;;:::o;26115:348::-;26208:4;25910:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25910:16:0;26225:73;;;;-1:-1:-1;;;26225:73:0;;11041:2:1;26225:73:0;;;11023:21:1;11080:2;11060:18;;;11053:30;11119:34;11099:18;;;11092:62;-1:-1:-1;;;11170:18:1;;;11163:42;11222:19;;26225:73:0;10839:408:1;26225:73:0;26309:13;26325:23;26340:7;26325:14;:23::i;:::-;26309:39;;26378:5;-1:-1:-1;;;;;26367:16:0;:7;-1:-1:-1;;;;;26367:16:0;;:51;;;;26411:7;-1:-1:-1;;;;;26387:31:0;:20;26399:7;26387:11;:20::i;:::-;-1:-1:-1;;;;;26387:31:0;;26367:51;:87;;;-1:-1:-1;;;;;;23207:25:0;;;23183:4;23207:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26422:32;26359:96;26115:348;-1:-1:-1;;;;26115:348:0:o;29107:578::-;29266:4;-1:-1:-1;;;;;29239:31:0;:23;29254:7;29239:14;:23::i;:::-;-1:-1:-1;;;;;29239:31:0;;29231:85;;;;-1:-1:-1;;;29231:85:0;;16840:2:1;29231:85:0;;;16822:21:1;16879:2;16859:18;;;16852:30;16918:34;16898:18;;;16891:62;-1:-1:-1;;;16969:18:1;;;16962:39;17018:19;;29231:85:0;16638:405:1;29231:85:0;-1:-1:-1;;;;;29335:16:0;;29327:65;;;;-1:-1:-1;;;29327:65:0;;9582:2:1;29327:65:0;;;9564:21:1;9621:2;9601:18;;;9594:30;9660:34;9640:18;;;9633:62;-1:-1:-1;;;9711:18:1;;;9704:34;9755:19;;29327:65:0;9380:400:1;29327:65:0;29405:39;29426:4;29432:2;29436:7;29405:20;:39::i;:::-;29509:29;29526:1;29530:7;29509:8;:29::i;:::-;-1:-1:-1;;;;;29551:15:0;;;;;;:9;:15;;;;;:20;;29570:1;;29551:15;:20;;29570:1;;29551:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29582:13:0;;;;;;:9;:13;;;;;:18;;29599:1;;29582:13;:18;;29599:1;;29582:18;:::i;:::-;;;;-1:-1:-1;;29611:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29611:21:0;-1:-1:-1;;;;;29611:21:0;;;;;;;;;29650:27;;29611:16;;29650:27;;;;;;;29107:578;;;:::o;43355:98::-;43413:7;43440:5;43444:1;43440;:5;:::i;43754:98::-;43812:7;43839:5;43843:1;43839;:5;:::i;42998:98::-;43056:7;43083:5;43087:1;43083;:5;:::i;48804:173::-;48879:6;;;-1:-1:-1;;;;;48896:17:0;;;-1:-1:-1;;;;;;48896:17:0;;;;;;;48929:40;;48879:6;;;48896:17;48879:6;;48929:40;;48860:16;;48929:40;48849:128;48804:173;:::o;25193:315::-;25350:28;25360:4;25366:2;25370:7;25350:9;:28::i;:::-;25397:48;25420:4;25426:2;25430:7;25439:5;25397:22;:48::i;:::-;25389:111;;;;-1:-1:-1;;;25389:111:0;;;;;;;:::i;51095:107::-;51154:13;51187:7;51180:14;;;;;:::i;1804:723::-;1860:13;2081:10;2077:53;;-1:-1:-1;;2108:10:0;;;;;;;;;;;;-1:-1:-1;;;2108:10:0;;;;;1804:723::o;2077:53::-;2155:5;2140:12;2196:78;2203:9;;2196:78;;2229:8;;;;:::i;:::-;;-1:-1:-1;2252:10:0;;-1:-1:-1;2260:2:0;2252:10;;:::i;:::-;;;2196:78;;;2284:19;2316:6;2306:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2306:17:0;;2284:39;;2334:154;2341:10;;2334:154;;2368:11;2378:1;2368:11;;:::i;:::-;;-1:-1:-1;2437:10:0;2445:2;2437:5;:10;:::i;:::-;2424:24;;:2;:24;:::i;:::-;2411:39;;2394:6;2401;2394:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2394:56:0;;;;;;;;-1:-1:-1;2465:11:0;2474:2;2465:11;;:::i;:::-;;;2334:154;;19923:305;20025:4;-1:-1:-1;;;;;;20062:40:0;;-1:-1:-1;;;20062:40:0;;:105;;-1:-1:-1;;;;;;;20119:48:0;;-1:-1:-1;;;20119:48:0;20062:105;:158;;;-1:-1:-1;;;;;;;;;;18639:40:0;;;20184:36;18530:157;27142:321;27272:18;27278:2;27282:7;27272:5;:18::i;:::-;27323:54;27354:1;27358:2;27362:7;27371:5;27323:22;:54::i;:::-;27301:154;;;;-1:-1:-1;;;27301:154:0;;;;;;;:::i;52791:210::-;52945:48;52972:5;52979:3;52984:8;52945:26;:48::i;30542:799::-;30697:4;-1:-1:-1;;;;;30718:13:0;;10808:20;10856:8;30714:620;;30754:72;;-1:-1:-1;;;30754:72:0;;-1:-1:-1;;;;;30754:36:0;;;;;:72;;1438:10;;30805:4;;30811:7;;30820:5;;30754:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30754:72:0;;;;;;;;-1:-1:-1;;30754:72:0;;;;;;;;;;;;:::i;:::-;;;30750:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30996:13:0;;30992:272;;31039:60;;-1:-1:-1;;;31039:60:0;;;;;;;:::i;30992:272::-;31214:6;31208:13;31199:6;31195:2;31191:15;31184:38;30750:529;-1:-1:-1;;;;;;30877:51:0;-1:-1:-1;;;30877:51:0;;-1:-1:-1;30870:58:0;;30714:620;-1:-1:-1;31318:4:0;30542:799;;;;;;:::o;27799:382::-;-1:-1:-1;;;;;27879:16:0;;27871:61;;;;-1:-1:-1;;;27871:61:0;;14291:2:1;27871:61:0;;;14273:21:1;;;14310:18;;;14303:30;14369:34;14349:18;;;14342:62;14421:18;;27871:61:0;14089:356:1;27871:61:0;25886:4;25910:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25910:16:0;:30;27943:58;;;;-1:-1:-1;;;27943:58:0;;9225:2:1;27943:58:0;;;9207:21:1;9264:2;9244:18;;;9237:30;9303;9283:18;;;9276:58;9351:18;;27943:58:0;9023:352:1;27943:58:0;28014:45;28043:1;28047:2;28051:7;28014:20;:45::i;:::-;-1:-1:-1;;;;;28072:13:0;;;;;;:9;:13;;;;;:18;;28089:1;;28072:13;:18;;28089:1;;28072:18;:::i;:::-;;;;-1:-1:-1;;28101:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28101:21:0;-1:-1:-1;;;;;28101:21:0;;;;;;;;28140:33;;28101:16;;;28140:33;;28101:16;;28140:33;27799:382;;:::o;35436:589::-;-1:-1:-1;;;;;35642:18:0;;35638:187;;35677:40;35709:7;36852:10;:17;;36825:24;;;;:15;:24;;;;;:44;;;36880:24;;;;;;;;;;;;36748:164;35677:40;35638:187;;;35747:2;-1:-1:-1;;;;;35739:10:0;:4;-1:-1:-1;;;;;35739:10:0;;35735:90;;35766:47;35799:4;35805:7;35766:32;:47::i;:::-;-1:-1:-1;;;;;35839:16:0;;35835:183;;35872:45;35909:7;35872:36;:45::i;35835:183::-;35945:4;-1:-1:-1;;;;;35939:10:0;:2;-1:-1:-1;;;;;35939:10:0;;35935:83;;35966:40;35994:2;35998:7;35966:27;:40::i;37539:988::-;37805:22;37855:1;37830:22;37847:4;37830:16;:22::i;:::-;:26;;;;:::i;:::-;37867:18;37888:26;;;:17;:26;;;;;;37805:51;;-1:-1:-1;38021:28:0;;;38017:328;;-1:-1:-1;;;;;38088:18:0;;38066:19;38088:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38139:30;;;;;;:44;;;38256:30;;:17;:30;;;;;:43;;;38017:328;-1:-1:-1;38441:26:0;;;;:17;:26;;;;;;;;38434:33;;;-1:-1:-1;;;;;38485:18:0;;;;;:12;:18;;;;;:34;;;;;;;38478:41;37539:988::o;38822:1079::-;39100:10;:17;39075:22;;39100:21;;39120:1;;39100:21;:::i;:::-;39132:18;39153:24;;;:15;:24;;;;;;39526:10;:26;;39075:46;;-1:-1:-1;39153:24:0;;39075:46;;39526:26;;;;;;:::i;:::-;;;;;;;;;39504:48;;39590:11;39565:10;39576;39565:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;39670:28;;;:15;:28;;;;;;;:41;;;39842:24;;;;;39835:31;39877:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38893:1008;;;38822:1079;:::o;36326:221::-;36411:14;36428:20;36445:2;36428:16;:20::i;:::-;-1:-1:-1;;;;;36459:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36504:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36326:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:221::-;871:5;924:3;917:4;909:6;905:17;901:27;891:55;;942:1;939;932:12;891:55;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;1054:186::-;1113:6;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;1245:260::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:52;;;1390:1;1387;1380:12;1342:52;1413:29;1432:9;1413:29;:::i;:::-;1403:39;;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1245:260;;;;;:::o;1510:328::-;1587:6;1595;1603;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;1695:29;1714:9;1695:29;:::i;:::-;1685:39;;1743:38;1777:2;1766:9;1762:18;1743:38;:::i;:::-;1733:48;;1828:2;1817:9;1813:18;1800:32;1790:42;;1510:328;;;;;:::o;1843:666::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:53;;;2032:1;2029;2022:12;1983:53;2055:29;2074:9;2055:29;:::i;:::-;2045:39;;2103:38;2137:2;2126:9;2122:18;2103:38;:::i;:::-;2093:48;;2188:2;2177:9;2173:18;2160:32;2150:42;;2243:2;2232:9;2228:18;2215:32;2270:18;2262:6;2259:30;2256:50;;;2302:1;2299;2292:12;2256:50;2325:22;;2378:4;2370:13;;2366:27;-1:-1:-1;2356:55:1;;2407:1;2404;2397:12;2356:55;2430:73;2495:7;2490:2;2477:16;2472:2;2468;2464:11;2430:73;:::i;:::-;2420:83;;;1843:666;;;;;;;:::o;2514:347::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;:::-;2669:39;;2758:2;2747:9;2743:18;2730:32;2805:5;2798:13;2791:21;2784:5;2781:32;2771:60;;2827:1;2824;2817:12;2771:60;2850:5;2840:15;;;2514:347;;;;;:::o;2866:254::-;2934:6;2942;2995:2;2983:9;2974:7;2970:23;2966:32;2963:52;;;3011:1;3008;3001:12;2963:52;3034:29;3053:9;3034:29;:::i;:::-;3024:39;3110:2;3095:18;;;;3082:32;;-1:-1:-1;;;2866:254:1:o;3125:245::-;3183:6;3236:2;3224:9;3215:7;3211:23;3207:32;3204:52;;;3252:1;3249;3242:12;3204:52;3291:9;3278:23;3310:30;3334:5;3310:30;:::i;3375:249::-;3444:6;3497:2;3485:9;3476:7;3472:23;3468:32;3465:52;;;3513:1;3510;3503:12;3465:52;3545:9;3539:16;3564:30;3588:5;3564:30;:::i;3629:322::-;3698:6;3751:2;3739:9;3730:7;3726:23;3722:32;3719:52;;;3767:1;3764;3757:12;3719:52;3807:9;3794:23;3840:18;3832:6;3829:30;3826:50;;;3872:1;3869;3862:12;3826:50;3895;3937:7;3928:6;3917:9;3913:22;3895:50;:::i;3956:543::-;4044:6;4052;4105:2;4093:9;4084:7;4080:23;4076:32;4073:52;;;4121:1;4118;4111:12;4073:52;4161:9;4148:23;4190:18;4231:2;4223:6;4220:14;4217:34;;;4247:1;4244;4237:12;4217:34;4270:50;4312:7;4303:6;4292:9;4288:22;4270:50;:::i;:::-;4260:60;;4373:2;4362:9;4358:18;4345:32;4329:48;;4402:2;4392:8;4389:16;4386:36;;;4418:1;4415;4408:12;4386:36;;4441:52;4485:7;4474:8;4463:9;4459:24;4441:52;:::i;:::-;4431:62;;;3956:543;;;;;:::o;4504:180::-;4563:6;4616:2;4604:9;4595:7;4591:23;4587:32;4584:52;;;4632:1;4629;4622:12;4584:52;-1:-1:-1;4655:23:1;;4504:180;-1:-1:-1;4504:180:1:o;4689:254::-;4757:6;4765;4818:2;4806:9;4797:7;4793:23;4789:32;4786:52;;;4834:1;4831;4824:12;4786:52;4870:9;4857:23;4847:33;;4899:38;4933:2;4922:9;4918:18;4899:38;:::i;4948:257::-;4989:3;5027:5;5021:12;5054:6;5049:3;5042:19;5070:63;5126:6;5119:4;5114:3;5110:14;5103:4;5096:5;5092:16;5070:63;:::i;:::-;5187:2;5166:15;-1:-1:-1;;5162:29:1;5153:39;;;;5194:4;5149:50;;4948:257;-1:-1:-1;;4948:257:1:o;5210:470::-;5389:3;5427:6;5421:13;5443:53;5489:6;5484:3;5477:4;5469:6;5465:17;5443:53;:::i;:::-;5559:13;;5518:16;;;;5581:57;5559:13;5518:16;5615:4;5603:17;;5581:57;:::i;:::-;5654:20;;5210:470;-1:-1:-1;;;;5210:470:1:o;5893:488::-;-1:-1:-1;;;;;6162:15:1;;;6144:34;;6214:15;;6209:2;6194:18;;6187:43;6261:2;6246:18;;6239:34;;;6309:3;6304:2;6289:18;;6282:31;;;6087:4;;6330:45;;6355:19;;6347:6;6330:45;:::i;:::-;6322:53;5893:488;-1:-1:-1;;;;;;5893:488:1:o;6386:632::-;6557:2;6609:21;;;6679:13;;6582:18;;;6701:22;;;6528:4;;6557:2;6780:15;;;;6754:2;6739:18;;;6528:4;6823:169;6837:6;6834:1;6831:13;6823:169;;;6898:13;;6886:26;;6967:15;;;;6932:12;;;;6859:1;6852:9;6823:169;;;-1:-1:-1;7009:3:1;;6386:632;-1:-1:-1;;;;;;6386:632:1:o;7215:219::-;7364:2;7353:9;7346:21;7327:4;7384:44;7424:2;7413:9;7409:18;7401:6;7384:44;:::i;7851:414::-;8053:2;8035:21;;;8092:2;8072:18;;;8065:30;8131:34;8126:2;8111:18;;8104:62;-1:-1:-1;;;8197:2:1;8182:18;;8175:48;8255:3;8240:19;;7851:414::o;15925:356::-;16127:2;16109:21;;;16146:18;;;16139:30;16205:34;16200:2;16185:18;;16178:62;16272:2;16257:18;;15925:356::o;17866:413::-;18068:2;18050:21;;;18107:2;18087:18;;;18080:30;18146:34;18141:2;18126:18;;18119:62;-1:-1:-1;;;18212:2:1;18197:18;;18190:47;18269:3;18254:19;;17866:413::o;18879:128::-;18919:3;18950:1;18946:6;18943:1;18940:13;18937:39;;;18956:18;;:::i;:::-;-1:-1:-1;18992:9:1;;18879:128::o;19012:120::-;19052:1;19078;19068:35;;19083:18;;:::i;:::-;-1:-1:-1;19117:9:1;;19012:120::o;19137:168::-;19177:7;19243:1;19239;19235:6;19231:14;19228:1;19225:21;19220:1;19213:9;19206:17;19202:45;19199:71;;;19250:18;;:::i;:::-;-1:-1:-1;19290:9:1;;19137:168::o;19310:125::-;19350:4;19378:1;19375;19372:8;19369:34;;;19383:18;;:::i;:::-;-1:-1:-1;19420:9:1;;19310:125::o;19440:258::-;19512:1;19522:113;19536:6;19533:1;19530:13;19522:113;;;19612:11;;;19606:18;19593:11;;;19586:39;19558:2;19551:10;19522:113;;;19653:6;19650:1;19647:13;19644:48;;;-1:-1:-1;;19688:1:1;19670:16;;19663:27;19440:258::o;19703:380::-;19782:1;19778:12;;;;19825;;;19846:61;;19900:4;19892:6;19888:17;19878:27;;19846:61;19953:2;19945:6;19942:14;19922:18;19919:38;19916:161;;;19999:10;19994:3;19990:20;19987:1;19980:31;20034:4;20031:1;20024:15;20062:4;20059:1;20052:15;19916:161;;19703:380;;;:::o;20088:135::-;20127:3;-1:-1:-1;;20148:17:1;;20145:43;;;20168:18;;:::i;:::-;-1:-1:-1;20215:1:1;20204:13;;20088:135::o;20228:112::-;20260:1;20286;20276:35;;20291:18;;:::i;:::-;-1:-1:-1;20325:9:1;;20228:112::o;20345:127::-;20406:10;20401:3;20397:20;20394:1;20387:31;20437:4;20434:1;20427:15;20461:4;20458:1;20451:15;20477:127;20538:10;20533:3;20529:20;20526:1;20519:31;20569:4;20566:1;20559:15;20593:4;20590:1;20583:15;20609:127;20670:10;20665:3;20661:20;20658:1;20651:31;20701:4;20698:1;20691:15;20725:4;20722:1;20715:15;20741:127;20802:10;20797:3;20793:20;20790:1;20783:31;20833:4;20830:1;20823:15;20857:4;20854:1;20847:15;20873:127;20934:10;20929:3;20925:20;20922:1;20915:31;20965:4;20962:1;20955:15;20989:4;20986:1;20979:15;21005:131;-1:-1:-1;;;;;;21079:32:1;;21069:43;;21059:71;;21126:1;21123;21116:12

Swarm Source

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