ETH Price: $3,236.99 (-1.15%)
Gas: 4 Gwei

Token

Katsumi (K)
 

Overview

Max Total Supply

544 K

Holders

129

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 K
0x402e5e7582d317cac83c2c334d1cfc799cf51a79
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:
nft

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 2022-02-05
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;


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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

// File: Matt W - NFT.sol


// André Luque 
pragma solidity >=0.8.2;
// to enable certain compiler features

//import '@openzeppelin/contracts/token/ERC721/ERC721.sol';









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

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

contract nft is ERC721, Ownable {
    using Strings for uint256;

    //baseURI that is established
    string private _currentBaseURI;
    //unrevealed URI that is established
    string public unrevealedURI;

    //accumulate the number of tokens that have been minted
    uint256 public numberOfTokens;
    
    //limit the tokens that can be minted
    uint256 public maxTokens;
    
    //stores the amount of mints each address has had
    mapping(address => uint) private mintsPerAddress;    
    
    //price to pay for each nft
    uint256 private mintCost_ = 0.1 ether;

    //see time of reveal
    uint256 public revealTime;
    
    constructor() ERC721('Katsumi', 'K') {
        //this uri will only be used once revealed is on
        unrevealedURI = "ipfs://.../";
        //start off with zero tokens and max in total collection will be 10k
        numberOfTokens = 0;
        maxTokens = 720;
        
    }
    
    //this uri will only be used once revealed is on
    function setBaseURI(string memory baseURI) public onlyOwner {
        _currentBaseURI = baseURI;
    }

    //function to see the current baseURI
    function _baseURI() internal view override returns (string memory) {
        return _currentBaseURI;
    }
    
    //tokens are numbered from 1 to 10
    function tokenId() internal view returns(uint256) {
        return numberOfTokens + 1;
    }
    
    //minting a new NFT
    function mint(uint number) payable public {
        require(numberOfTokens + number <= maxTokens, 'Max Number of Tokens reached!');
        require(msg.value >= mintCost_ * number, 'Insufficient Funds, Price of each NFT is 0.1 ETH');
        
        for (uint256 i = 0; i < number; i++) {
            uint256 tid = tokenId();
            _safeMint(msg.sender, tid);
            mintsPerAddress[msg.sender] += 1;
            numberOfTokens += 1;
        }
    }
    
    //reserved NFTs for creator
    function reservedMint(uint256 number, address recipient) public onlyOwner {
        require(numberOfTokens + number <= maxTokens, 'No more NFTs to mint!');
        for (uint256 i = 0; i < number; i++) {
            _safeMint(recipient, tokenId());
            mintsPerAddress[recipient] += 1;
            numberOfTokens += 1;
        }
    }

    
    //sending mint fees to owner 
    function withdraw() public onlyOwner {
        address payable owner_ = payable(owner());
        (bool success, ) = owner_.call{value: address(this).balance}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    //total amount of NFTs that have been minted
    function totalSupply() public view returns(uint) {
        return numberOfTokens;
    }
    
    function mintCost() public view returns(uint256) {
        return mintCost_;
    }

    function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) {
        require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token");

        if (!revealed()) {
            return unrevealedURI;
        }
        else {
            string memory baseURI = _baseURI();
            return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId_.toString(), '.json')) : "";
        }
        
        
    }

    function reveal() public onlyOwner {
        require(!revealed(), "Collection has already been revealed!");
        revealTime = block.timestamp;
    }

    function revealed() public view returns(bool) {
        if (revealTime == 0) {
            return false;
        }
        else {
            return true;
        }
    }
    
    
   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267016345785d8a0000600c553480156200001d57600080fd5b5060408051808201825260078152664b617473756d6960c81b6020808301918252835180850190945260018452604b60f81b908401528151919291620000669160009162000135565b5080516200007c90600190602084019062000135565b5050506200009962000093620000df60201b60201c565b620000e3565b60408051808201909152600b8082526a697066733a2f2f2e2e2e2f60a81b6020909201918252620000cd9160089162000135565b5060006009556102d0600a5562000218565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014390620001db565b90600052602060002090601f016020900481019282620001675760008555620001b2565b82601f106200018257805160ff1916838001178555620001b2565b82800160010185558215620001b2579182015b82811115620001b257825182559160200191906001019062000195565b50620001c0929150620001c4565b5090565b5b80821115620001c05760008155600101620001c5565b600181811c90821680620001f057607f821691505b602082108114156200021257634e487b7160e01b600052602260045260246000fd5b50919050565b611ee380620002286000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063ba829d711161008a578063e831574211610064578063e831574214610486578063e985e9c51461049c578063f2fde38b146104e5578063f9f16ef21461050557600080fd5b8063ba829d711461043b578063bdb4b84814610451578063c87b56dd1461046657600080fd5b8063a0712d68116100c6578063a0712d68146103d3578063a22cb465146103e6578063a475b5dd14610406578063b88d4fde1461041b57600080fd5b8063715018a61461038b5780638da5cb5b146103a057806395d89b41146103be57600080fd5b80633ccfd60b1161015957806355f804b31161013357806355f804b3146103165780636352211e146103365780637035bf181461035657806370a082311461036b57600080fd5b80633ccfd60b146102cc57806342842e0e146102e1578063518302271461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806318df64031461028c57806323b872dd146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611af5565b61051b565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661056d565b6040516101e89190611c5c565b34801561021f57600080fd5b5061023361022e366004611b78565b6105ff565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611acb565b610699565b005b34801561027957600080fd5b506009545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611b91565b6107af565b3480156102b857600080fd5b5061026b6102c73660046119d7565b6108a7565b3480156102d857600080fd5b5061026b6108d8565b3480156102ed57600080fd5b5061026b6102fc3660046119d7565b6109e5565b34801561030d57600080fd5b506101dc610a00565b34801561032257600080fd5b5061026b610331366004611b2f565b610a19565b34801561034257600080fd5b50610233610351366004611b78565b610a56565b34801561036257600080fd5b50610206610acd565b34801561037757600080fd5b5061027e610386366004611989565b610b5b565b34801561039757600080fd5b5061026b610be2565b3480156103ac57600080fd5b506006546001600160a01b0316610233565b3480156103ca57600080fd5b50610206610c18565b61026b6103e1366004611b78565b610c27565b3480156103f257600080fd5b5061026b610401366004611a8f565b610d71565b34801561041257600080fd5b5061026b610e36565b34801561042757600080fd5b5061026b610436366004611a13565b610ec9565b34801561044757600080fd5b5061027e600d5481565b34801561045d57600080fd5b50600c5461027e565b34801561047257600080fd5b50610206610481366004611b78565b610f01565b34801561049257600080fd5b5061027e600a5481565b3480156104a857600080fd5b506101dc6104b73660046119a4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104f157600080fd5b5061026b610500366004611989565b61107f565b34801561051157600080fd5b5061027e60095481565b60006001600160e01b031982166380ac58cd60e01b148061054c57506001600160e01b03198216635b5e139f60e01b145b8061056757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461057c90611dd5565b80601f01602080910402602001604051908101604052809291908181526020018280546105a890611dd5565b80156105f55780601f106105ca576101008083540402835291602001916105f5565b820191906000526020600020905b8154815290600101906020018083116105d857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661067d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106a482610a56565b9050806001600160a01b0316836001600160a01b031614156107125760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610674565b336001600160a01b038216148061072e575061072e81336104b7565b6107a05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610674565b6107aa838361111a565b505050565b6006546001600160a01b031633146107d95760405162461bcd60e51b815260040161067490611cc1565b600a54826009546107ea9190611d47565b11156108305760405162461bcd60e51b81526020600482015260156024820152744e6f206d6f7265204e46547320746f206d696e742160581b6044820152606401610674565b60005b828110156107aa5761084c82610847611188565b61119e565b6001600160a01b0382166000908152600b60205260408120805460019290610875908490611d47565b9250508190555060016009600082825461088f9190611d47565b9091555081905061089f81611e10565b915050610833565b6108b133826111b8565b6108cd5760405162461bcd60e51b815260040161067490611cf6565b6107aa8383836112af565b6006546001600160a01b031633146109025760405162461bcd60e51b815260040161067490611cc1565b60006109166006546001600160a01b031690565b90506000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610965576040519150601f19603f3d011682016040523d82523d6000602084013e61096a565b606091505b50509050806109e15760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610674565b5050565b6107aa83838360405180602001604052806000815250610ec9565b6000600d5460001415610a135750600090565b50600190565b6006546001600160a01b03163314610a435760405162461bcd60e51b815260040161067490611cc1565b80516109e1906007906020840190611863565b6000818152600260205260408120546001600160a01b0316806105675760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610674565b60088054610ada90611dd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0690611dd5565b8015610b535780601f10610b2857610100808354040283529160200191610b53565b820191906000526020600020905b815481529060010190602001808311610b3657829003601f168201915b505050505081565b60006001600160a01b038216610bc65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610674565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161067490611cc1565b610c16600061144f565b565b60606001805461057c90611dd5565b600a5481600954610c389190611d47565b1115610c865760405162461bcd60e51b815260206004820152601d60248201527f4d6178204e756d626572206f6620546f6b656e732072656163686564210000006044820152606401610674565b80600c54610c949190611d73565b341015610cfc5760405162461bcd60e51b815260206004820152603060248201527f496e73756666696369656e742046756e64732c205072696365206f662065616360448201526f0d0409c8ca840d2e640605c62408aa8960831b6064820152608401610674565b60005b818110156109e1576000610d11611188565b9050610d1d338261119e565b336000908152600b60205260408120805460019290610d3d908490611d47565b92505081905550600160096000828254610d579190611d47565b90915550829150610d69905081611e10565b915050610cff565b6001600160a01b038216331415610dca5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610674565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314610e605760405162461bcd60e51b815260040161067490611cc1565b610e68610a00565b15610ec35760405162461bcd60e51b815260206004820152602560248201527f436f6c6c656374696f6e2068617320616c7265616479206265656e2072657665604482015264616c65642160d81b6064820152608401610674565b42600d55565b610ed333836111b8565b610eef5760405162461bcd60e51b815260040161067490611cf6565b610efb848484846114a1565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610674565b610f88610a00565b61101e5760088054610f9990611dd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc590611dd5565b80156110125780601f10610fe757610100808354040283529160200191611012565b820191906000526020600020905b815481529060010190602001808311610ff557829003601f168201915b50505050509050919050565b60006110286114d4565b905060008151116110485760405180602001604052806000815250611073565b80611052846114e3565b604051602001611063929190611be0565b6040516020818303038152906040525b9392505050565b919050565b6006546001600160a01b031633146110a95760405162461bcd60e51b815260040161067490611cc1565b6001600160a01b03811661110e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610674565b6111178161144f565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061114f82610a56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600060095460016111999190611d47565b905090565b6109e18282604051806020016040528060008152506115e1565b6000818152600260205260408120546001600160a01b03166112315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610674565b600061123c83610a56565b9050806001600160a01b0316846001600160a01b031614806112775750836001600160a01b031661126c846105ff565b6001600160a01b0316145b806112a757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112c282610a56565b6001600160a01b03161461132a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610674565b6001600160a01b03821661138c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610674565b61139760008261111a565b6001600160a01b03831660009081526003602052604081208054600192906113c0908490611d92565b90915550506001600160a01b03821660009081526003602052604081208054600192906113ee908490611d47565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114ac8484846112af565b6114b884848484611614565b610efb5760405162461bcd60e51b815260040161067490611c6f565b60606007805461057c90611dd5565b6060816115075750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611531578061151b81611e10565b915061152a9050600a83611d5f565b915061150b565b60008167ffffffffffffffff81111561154c5761154c611e81565b6040519080825280601f01601f191660200182016040528015611576576020820181803683370190505b5090505b84156112a75761158b600183611d92565b9150611598600a86611e2b565b6115a3906030611d47565b60f81b8183815181106115b8576115b8611e6b565b60200101906001600160f81b031916908160001a9053506115da600a86611d5f565b945061157a565b6115eb8383611721565b6115f86000848484611614565b6107aa5760405162461bcd60e51b815260040161067490611c6f565b60006001600160a01b0384163b1561171657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611658903390899088908890600401611c1f565b602060405180830381600087803b15801561167257600080fd5b505af19250505080156116a2575060408051601f3d908101601f1916820190925261169f91810190611b12565b60015b6116fc573d8080156116d0576040519150601f19603f3d011682016040523d82523d6000602084013e6116d5565b606091505b5080516116f45760405162461bcd60e51b815260040161067490611c6f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112a7565b506001949350505050565b6001600160a01b0382166117775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610674565b6000818152600260205260409020546001600160a01b0316156117dc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610674565b6001600160a01b0382166000908152600360205260408120805460019290611805908490611d47565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461186f90611dd5565b90600052602060002090601f01602090048101928261189157600085556118d7565b82601f106118aa57805160ff19168380011785556118d7565b828001600101855582156118d7579182015b828111156118d75782518255916020019190600101906118bc565b506118e39291506118e7565b5090565b5b808211156118e357600081556001016118e8565b600067ffffffffffffffff8084111561191757611917611e81565b604051601f8501601f19908116603f0116810190828211818310171561193f5761193f611e81565b8160405280935085815286868601111561195857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461107a57600080fd5b60006020828403121561199b57600080fd5b61107382611972565b600080604083850312156119b757600080fd5b6119c083611972565b91506119ce60208401611972565b90509250929050565b6000806000606084860312156119ec57600080fd5b6119f584611972565b9250611a0360208501611972565b9150604084013590509250925092565b60008060008060808587031215611a2957600080fd5b611a3285611972565b9350611a4060208601611972565b925060408501359150606085013567ffffffffffffffff811115611a6357600080fd5b8501601f81018713611a7457600080fd5b611a83878235602084016118fc565b91505092959194509250565b60008060408385031215611aa257600080fd5b611aab83611972565b915060208301358015158114611ac057600080fd5b809150509250929050565b60008060408385031215611ade57600080fd5b611ae783611972565b946020939093013593505050565b600060208284031215611b0757600080fd5b813561107381611e97565b600060208284031215611b2457600080fd5b815161107381611e97565b600060208284031215611b4157600080fd5b813567ffffffffffffffff811115611b5857600080fd5b8201601f81018413611b6957600080fd5b6112a7848235602084016118fc565b600060208284031215611b8a57600080fd5b5035919050565b60008060408385031215611ba457600080fd5b823591506119ce60208401611972565b60008151808452611bcc816020860160208601611da9565b601f01601f19169290920160200192915050565b60008351611bf2818460208801611da9565b835190830190611c06818360208801611da9565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c5290830184611bb4565b9695505050505050565b6020815260006110736020830184611bb4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611d5a57611d5a611e3f565b500190565b600082611d6e57611d6e611e55565b500490565b6000816000190483118215151615611d8d57611d8d611e3f565b500290565b600082821015611da457611da4611e3f565b500390565b60005b83811015611dc4578181015183820152602001611dac565b83811115610efb5750506000910152565b600181811c90821680611de957607f821691505b60208210811415611e0a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e2457611e24611e3f565b5060010190565b600082611e3a57611e3a611e55565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461111757600080fdfea26469706673582212205373a2b16a3b15daddb5fa8d154f55aa4c9cf298a18a9d68babbbdfa23bfabc464736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063ba829d711161008a578063e831574211610064578063e831574214610486578063e985e9c51461049c578063f2fde38b146104e5578063f9f16ef21461050557600080fd5b8063ba829d711461043b578063bdb4b84814610451578063c87b56dd1461046657600080fd5b8063a0712d68116100c6578063a0712d68146103d3578063a22cb465146103e6578063a475b5dd14610406578063b88d4fde1461041b57600080fd5b8063715018a61461038b5780638da5cb5b146103a057806395d89b41146103be57600080fd5b80633ccfd60b1161015957806355f804b31161013357806355f804b3146103165780636352211e146103365780637035bf181461035657806370a082311461036b57600080fd5b80633ccfd60b146102cc57806342842e0e146102e1578063518302271461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806318df64031461028c57806323b872dd146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611af5565b61051b565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661056d565b6040516101e89190611c5c565b34801561021f57600080fd5b5061023361022e366004611b78565b6105ff565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611acb565b610699565b005b34801561027957600080fd5b506009545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611b91565b6107af565b3480156102b857600080fd5b5061026b6102c73660046119d7565b6108a7565b3480156102d857600080fd5b5061026b6108d8565b3480156102ed57600080fd5b5061026b6102fc3660046119d7565b6109e5565b34801561030d57600080fd5b506101dc610a00565b34801561032257600080fd5b5061026b610331366004611b2f565b610a19565b34801561034257600080fd5b50610233610351366004611b78565b610a56565b34801561036257600080fd5b50610206610acd565b34801561037757600080fd5b5061027e610386366004611989565b610b5b565b34801561039757600080fd5b5061026b610be2565b3480156103ac57600080fd5b506006546001600160a01b0316610233565b3480156103ca57600080fd5b50610206610c18565b61026b6103e1366004611b78565b610c27565b3480156103f257600080fd5b5061026b610401366004611a8f565b610d71565b34801561041257600080fd5b5061026b610e36565b34801561042757600080fd5b5061026b610436366004611a13565b610ec9565b34801561044757600080fd5b5061027e600d5481565b34801561045d57600080fd5b50600c5461027e565b34801561047257600080fd5b50610206610481366004611b78565b610f01565b34801561049257600080fd5b5061027e600a5481565b3480156104a857600080fd5b506101dc6104b73660046119a4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104f157600080fd5b5061026b610500366004611989565b61107f565b34801561051157600080fd5b5061027e60095481565b60006001600160e01b031982166380ac58cd60e01b148061054c57506001600160e01b03198216635b5e139f60e01b145b8061056757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461057c90611dd5565b80601f01602080910402602001604051908101604052809291908181526020018280546105a890611dd5565b80156105f55780601f106105ca576101008083540402835291602001916105f5565b820191906000526020600020905b8154815290600101906020018083116105d857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661067d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106a482610a56565b9050806001600160a01b0316836001600160a01b031614156107125760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610674565b336001600160a01b038216148061072e575061072e81336104b7565b6107a05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610674565b6107aa838361111a565b505050565b6006546001600160a01b031633146107d95760405162461bcd60e51b815260040161067490611cc1565b600a54826009546107ea9190611d47565b11156108305760405162461bcd60e51b81526020600482015260156024820152744e6f206d6f7265204e46547320746f206d696e742160581b6044820152606401610674565b60005b828110156107aa5761084c82610847611188565b61119e565b6001600160a01b0382166000908152600b60205260408120805460019290610875908490611d47565b9250508190555060016009600082825461088f9190611d47565b9091555081905061089f81611e10565b915050610833565b6108b133826111b8565b6108cd5760405162461bcd60e51b815260040161067490611cf6565b6107aa8383836112af565b6006546001600160a01b031633146109025760405162461bcd60e51b815260040161067490611cc1565b60006109166006546001600160a01b031690565b90506000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610965576040519150601f19603f3d011682016040523d82523d6000602084013e61096a565b606091505b50509050806109e15760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610674565b5050565b6107aa83838360405180602001604052806000815250610ec9565b6000600d5460001415610a135750600090565b50600190565b6006546001600160a01b03163314610a435760405162461bcd60e51b815260040161067490611cc1565b80516109e1906007906020840190611863565b6000818152600260205260408120546001600160a01b0316806105675760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610674565b60088054610ada90611dd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0690611dd5565b8015610b535780601f10610b2857610100808354040283529160200191610b53565b820191906000526020600020905b815481529060010190602001808311610b3657829003601f168201915b505050505081565b60006001600160a01b038216610bc65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610674565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161067490611cc1565b610c16600061144f565b565b60606001805461057c90611dd5565b600a5481600954610c389190611d47565b1115610c865760405162461bcd60e51b815260206004820152601d60248201527f4d6178204e756d626572206f6620546f6b656e732072656163686564210000006044820152606401610674565b80600c54610c949190611d73565b341015610cfc5760405162461bcd60e51b815260206004820152603060248201527f496e73756666696369656e742046756e64732c205072696365206f662065616360448201526f0d0409c8ca840d2e640605c62408aa8960831b6064820152608401610674565b60005b818110156109e1576000610d11611188565b9050610d1d338261119e565b336000908152600b60205260408120805460019290610d3d908490611d47565b92505081905550600160096000828254610d579190611d47565b90915550829150610d69905081611e10565b915050610cff565b6001600160a01b038216331415610dca5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610674565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314610e605760405162461bcd60e51b815260040161067490611cc1565b610e68610a00565b15610ec35760405162461bcd60e51b815260206004820152602560248201527f436f6c6c656374696f6e2068617320616c7265616479206265656e2072657665604482015264616c65642160d81b6064820152608401610674565b42600d55565b610ed333836111b8565b610eef5760405162461bcd60e51b815260040161067490611cf6565b610efb848484846114a1565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610674565b610f88610a00565b61101e5760088054610f9990611dd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc590611dd5565b80156110125780601f10610fe757610100808354040283529160200191611012565b820191906000526020600020905b815481529060010190602001808311610ff557829003601f168201915b50505050509050919050565b60006110286114d4565b905060008151116110485760405180602001604052806000815250611073565b80611052846114e3565b604051602001611063929190611be0565b6040516020818303038152906040525b9392505050565b919050565b6006546001600160a01b031633146110a95760405162461bcd60e51b815260040161067490611cc1565b6001600160a01b03811661110e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610674565b6111178161144f565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061114f82610a56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600060095460016111999190611d47565b905090565b6109e18282604051806020016040528060008152506115e1565b6000818152600260205260408120546001600160a01b03166112315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610674565b600061123c83610a56565b9050806001600160a01b0316846001600160a01b031614806112775750836001600160a01b031661126c846105ff565b6001600160a01b0316145b806112a757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112c282610a56565b6001600160a01b03161461132a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610674565b6001600160a01b03821661138c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610674565b61139760008261111a565b6001600160a01b03831660009081526003602052604081208054600192906113c0908490611d92565b90915550506001600160a01b03821660009081526003602052604081208054600192906113ee908490611d47565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114ac8484846112af565b6114b884848484611614565b610efb5760405162461bcd60e51b815260040161067490611c6f565b60606007805461057c90611dd5565b6060816115075750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611531578061151b81611e10565b915061152a9050600a83611d5f565b915061150b565b60008167ffffffffffffffff81111561154c5761154c611e81565b6040519080825280601f01601f191660200182016040528015611576576020820181803683370190505b5090505b84156112a75761158b600183611d92565b9150611598600a86611e2b565b6115a3906030611d47565b60f81b8183815181106115b8576115b8611e6b565b60200101906001600160f81b031916908160001a9053506115da600a86611d5f565b945061157a565b6115eb8383611721565b6115f86000848484611614565b6107aa5760405162461bcd60e51b815260040161067490611c6f565b60006001600160a01b0384163b1561171657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611658903390899088908890600401611c1f565b602060405180830381600087803b15801561167257600080fd5b505af19250505080156116a2575060408051601f3d908101601f1916820190925261169f91810190611b12565b60015b6116fc573d8080156116d0576040519150601f19603f3d011682016040523d82523d6000602084013e6116d5565b606091505b5080516116f45760405162461bcd60e51b815260040161067490611c6f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112a7565b506001949350505050565b6001600160a01b0382166117775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610674565b6000818152600260205260409020546001600160a01b0316156117dc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610674565b6001600160a01b0382166000908152600360205260408120805460019290611805908490611d47565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461186f90611dd5565b90600052602060002090601f01602090048101928261189157600085556118d7565b82601f106118aa57805160ff19168380011785556118d7565b828001600101855582156118d7579182015b828111156118d75782518255916020019190600101906118bc565b506118e39291506118e7565b5090565b5b808211156118e357600081556001016118e8565b600067ffffffffffffffff8084111561191757611917611e81565b604051601f8501601f19908116603f0116810190828211818310171561193f5761193f611e81565b8160405280935085815286868601111561195857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461107a57600080fd5b60006020828403121561199b57600080fd5b61107382611972565b600080604083850312156119b757600080fd5b6119c083611972565b91506119ce60208401611972565b90509250929050565b6000806000606084860312156119ec57600080fd5b6119f584611972565b9250611a0360208501611972565b9150604084013590509250925092565b60008060008060808587031215611a2957600080fd5b611a3285611972565b9350611a4060208601611972565b925060408501359150606085013567ffffffffffffffff811115611a6357600080fd5b8501601f81018713611a7457600080fd5b611a83878235602084016118fc565b91505092959194509250565b60008060408385031215611aa257600080fd5b611aab83611972565b915060208301358015158114611ac057600080fd5b809150509250929050565b60008060408385031215611ade57600080fd5b611ae783611972565b946020939093013593505050565b600060208284031215611b0757600080fd5b813561107381611e97565b600060208284031215611b2457600080fd5b815161107381611e97565b600060208284031215611b4157600080fd5b813567ffffffffffffffff811115611b5857600080fd5b8201601f81018413611b6957600080fd5b6112a7848235602084016118fc565b600060208284031215611b8a57600080fd5b5035919050565b60008060408385031215611ba457600080fd5b823591506119ce60208401611972565b60008151808452611bcc816020860160208601611da9565b601f01601f19169290920160200192915050565b60008351611bf2818460208801611da9565b835190830190611c06818360208801611da9565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c5290830184611bb4565b9695505050505050565b6020815260006110736020830184611bb4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611d5a57611d5a611e3f565b500190565b600082611d6e57611d6e611e55565b500490565b6000816000190483118215151615611d8d57611d8d611e3f565b500290565b600082821015611da457611da4611e3f565b500390565b60005b83811015611dc4578181015183820152602001611dac565b83811115610efb5750506000910152565b600181811c90821680611de957607f821691505b60208210811415611e0a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e2457611e24611e3f565b5060010190565b600082611e3a57611e3a611e55565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461111757600080fdfea26469706673582212205373a2b16a3b15daddb5fa8d154f55aa4c9cf298a18a9d68babbbdfa23bfabc464736f6c63430008070033

Deployed Bytecode Sourcemap

34686:3734:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22807:305;;;;;;;;;;-1:-1:-1;22807:305:0;;;;;:::i;:::-;;:::i;:::-;;;6282:14:1;;6275:22;6257:41;;6245:2;6230:18;22807:305:0;;;;;;;;23752:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25067:221::-;;;;;;;;;;-1:-1:-1;25067:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5580:32:1;;;5562:51;;5550:2;5535:18;25067:221:0;5416:203:1;24590:411:0;;;;;;;;;;-1:-1:-1;24590:411:0;;;;;:::i;:::-;;:::i;:::-;;37385:89;;;;;;;;;;-1:-1:-1;37452:14:0;;37385:89;;;15019:25:1;;;15007:2;14992:18;37385:89:0;14873:177:1;36669:348:0;;;;;;;;;;-1:-1:-1;36669:348:0;;;;;:::i;:::-;;:::i;25957:339::-;;;;;;;;;;-1:-1:-1;25957:339:0;;;;;:::i;:::-;;:::i;37066:261::-;;;;;;;;;;;;;:::i;26367:185::-;;;;;;;;;;-1:-1:-1;26367:185:0;;;;;:::i;:::-;;:::i;38223:177::-;;;;;;;;;;;;;:::i;35707:104::-;;;;;;;;;;-1:-1:-1;35707:104:0;;;;;:::i;:::-;;:::i;23446:239::-;;;;;;;;;;-1:-1:-1;23446:239:0;;;;;:::i;:::-;;:::i;34873:27::-;;;;;;;;;;;;;:::i;23176:208::-;;;;;;;;;;-1:-1:-1;23176:208:0;;;;;:::i;:::-;;:::i;4593:94::-;;;;;;;;;;;;;:::i;3942:87::-;;;;;;;;;;-1:-1:-1;4015:6:0;;-1:-1:-1;;;;;4015:6:0;3942:87;;23921:104;;;;;;;;;;;;;:::i;36153:471::-;;;;;;:::i;:::-;;:::i;25360:295::-;;;;;;;;;;-1:-1:-1;25360:295:0;;;;;:::i;:::-;;:::i;38061:154::-;;;;;;;;;;;;;:::i;26623:328::-;;;;;;;;;;-1:-1:-1;26623:328:0;;;;;:::i;:::-;;:::i;35317:25::-;;;;;;;;;;;;;;;;37486:84;;;;;;;;;;-1:-1:-1;37553:9:0;;37486:84;;37578:475;;;;;;;;;;-1:-1:-1;37578:475:0;;;;;:::i;:::-;;:::i;35055:24::-;;;;;;;;;;;;;;;;25726:164;;;;;;;;;;-1:-1:-1;25726:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25847:25:0;;;25823:4;25847:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25726:164;4842:192;;;;;;;;;;-1:-1:-1;4842:192:0;;;;;:::i;:::-;;:::i;34970:29::-;;;;;;;;;;;;;;;;22807:305;22909:4;-1:-1:-1;;;;;;22946:40:0;;-1:-1:-1;;;22946:40:0;;:105;;-1:-1:-1;;;;;;;23003:48:0;;-1:-1:-1;;;23003:48:0;22946:105;:158;;;-1:-1:-1;;;;;;;;;;16037:40:0;;;23068:36;22926:178;22807:305;-1:-1:-1;;22807:305:0:o;23752:100::-;23806:13;23839:5;23832:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23752:100;:::o;25067:221::-;25143:7;28550:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28550:16:0;25163:73;;;;-1:-1:-1;;;25163:73:0;;11891:2:1;25163:73:0;;;11873:21:1;11930:2;11910:18;;;11903:30;11969:34;11949:18;;;11942:62;-1:-1:-1;;;12020:18:1;;;12013:42;12072:19;;25163:73:0;;;;;;;;;-1:-1:-1;25256:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25256:24:0;;25067:221::o;24590:411::-;24671:13;24687:23;24702:7;24687:14;:23::i;:::-;24671:39;;24735:5;-1:-1:-1;;;;;24729:11:0;:2;-1:-1:-1;;;;;24729:11:0;;;24721:57;;;;-1:-1:-1;;;24721:57:0;;13491:2:1;24721:57:0;;;13473:21:1;13530:2;13510:18;;;13503:30;13569:34;13549:18;;;13542:62;-1:-1:-1;;;13620:18:1;;;13613:31;13661:19;;24721:57:0;13289:397:1;24721:57:0;2810:10;-1:-1:-1;;;;;24813:21:0;;;;:62;;-1:-1:-1;24838:37:0;24855:5;2810:10;25726:164;:::i;24838:37::-;24791:168;;;;-1:-1:-1;;;24791:168:0;;10284:2:1;24791:168:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:34;10342:18;;;10335:62;10433:26;10413:18;;;10406:54;10477:19;;24791:168:0;10082:420:1;24791:168:0;24972:21;24981:2;24985:7;24972:8;:21::i;:::-;24660:341;24590:411;;:::o;36669:348::-;4015:6;;-1:-1:-1;;;;;4015:6:0;2810:10;4162:23;4154:68;;;;-1:-1:-1;;;4154:68:0;;;;;;;:::i;:::-;36789:9:::1;;36779:6;36762:14;;:23;;;;:::i;:::-;:36;;36754:70;;;::::0;-1:-1:-1;;;36754:70:0;;9934:2:1;36754:70:0::1;::::0;::::1;9916:21:1::0;9973:2;9953:18;;;9946:30;-1:-1:-1;;;9992:18:1;;;9985:51;10053:18;;36754:70:0::1;9732:345:1::0;36754:70:0::1;36840:9;36835:175;36859:6;36855:1;:10;36835:175;;;36887:31;36897:9;36908;:7;:9::i;:::-;36887;:31::i;:::-;-1:-1:-1::0;;;;;36933:26:0;::::1;;::::0;;;:15:::1;:26;::::0;;;;:31;;36963:1:::1;::::0;36933:26;:31:::1;::::0;36963:1;;36933:31:::1;:::i;:::-;;;;;;;;36997:1;36979:14;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;36867:3:0;;-1:-1:-1;36867:3:0::1;::::0;::::1;:::i;:::-;;;;36835:175;;25957:339:::0;26152:41;2810:10;26185:7;26152:18;:41::i;:::-;26144:103;;;;-1:-1:-1;;;26144:103:0;;;;;;;:::i;:::-;26260:28;26270:4;26276:2;26280:7;26260:9;:28::i;37066:261::-;4015:6;;-1:-1:-1;;;;;4015:6:0;2810:10;4162:23;4154:68;;;;-1:-1:-1;;;4154:68:0;;;;;;;:::i;:::-;37114:22:::1;37147:7;4015:6:::0;;-1:-1:-1;;;;;4015:6:0;;3942:87;37147:7:::1;37114:41;;37167:12;37185:6;-1:-1:-1::0;;;;;37185:11:0::1;37204:21;37185:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37166:64;;;37249:7;37241:78;;;::::0;-1:-1:-1;;;37241:78:0;;9094:2:1;37241:78:0::1;::::0;::::1;9076:21:1::0;9133:2;9113:18;;;9106:30;9172:34;9152:18;;;9145:62;9243:28;9223:18;;;9216:56;9289:19;;37241:78:0::1;8892:422:1::0;37241:78:0::1;37103:224;;37066:261::o:0;26367:185::-;26505:39;26522:4;26528:2;26532:7;26505:39;;;;;;;;;;;;:16;:39::i;38223:177::-;38263:4;38284:10;;38298:1;38284:15;38280:113;;;-1:-1:-1;38323:5:0;;38223:177::o;38280:113::-;-1:-1:-1;38377:4:0;;38223:177::o;35707:104::-;4015:6;;-1:-1:-1;;;;;4015:6:0;2810:10;4162:23;4154:68;;;;-1:-1:-1;;;4154:68:0;;;;;;;:::i;:::-;35778:25;;::::1;::::0;:15:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;23446:239::-:0;23518:7;23554:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23554:16:0;23589:19;23581:73;;;;-1:-1:-1;;;23581:73:0;;11120:2:1;23581:73:0;;;11102:21:1;11159:2;11139:18;;;11132:30;11198:34;11178:18;;;11171:62;-1:-1:-1;;;11249:18:1;;;11242:39;11298:19;;23581:73:0;10918:405:1;34873:27:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23176:208::-;23248:7;-1:-1:-1;;;;;23276:19:0;;23268:74;;;;-1:-1:-1;;;23268:74:0;;10709:2:1;23268:74:0;;;10691:21:1;10748:2;10728:18;;;10721:30;10787:34;10767:18;;;10760:62;-1:-1:-1;;;10838:18:1;;;10831:40;10888:19;;23268:74:0;10507:406:1;23268:74:0;-1:-1:-1;;;;;;23360:16:0;;;;;:9;:16;;;;;;;23176:208::o;4593:94::-;4015:6;;-1:-1:-1;;;;;4015:6:0;2810:10;4162:23;4154:68;;;;-1:-1:-1;;;4154:68:0;;;;;;;:::i;:::-;4658:21:::1;4676:1;4658:9;:21::i;:::-;4593:94::o:0;23921:104::-;23977:13;24010:7;24003:14;;;;;:::i;36153:471::-;36241:9;;36231:6;36214:14;;:23;;;;:::i;:::-;:36;;36206:78;;;;-1:-1:-1;;;36206:78:0;;14299:2:1;36206:78:0;;;14281:21:1;14338:2;14318:18;;;14311:30;14377:31;14357:18;;;14350:59;14426:18;;36206:78:0;14097:353:1;36206:78:0;36328:6;36316:9;;:18;;;;:::i;:::-;36303:9;:31;;36295:92;;;;-1:-1:-1;;;36295:92:0;;8677:2:1;36295:92:0;;;8659:21:1;8716:2;8696:18;;;8689:30;8755:34;8735:18;;;8728:62;-1:-1:-1;;;8806:18:1;;;8799:46;8862:19;;36295:92:0;8475:412:1;36295:92:0;36413:9;36408:209;36432:6;36428:1;:10;36408:209;;;36460:11;36474:9;:7;:9::i;:::-;36460:23;;36498:26;36508:10;36520:3;36498:9;:26::i;:::-;36555:10;36539:27;;;;:15;:27;;;;;:32;;36570:1;;36539:27;:32;;36570:1;;36539:32;:::i;:::-;;;;;;;;36604:1;36586:14;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;36440:3:0;;-1:-1:-1;36440:3:0;;-1:-1:-1;36440:3:0;;:::i;:::-;;;;36408:209;;25360:295;-1:-1:-1;;;;;25463:24:0;;2810:10;25463:24;;25455:62;;;;-1:-1:-1;;;25455:62:0;;8323:2:1;25455:62:0;;;8305:21:1;8362:2;8342:18;;;8335:30;8401:27;8381:18;;;8374:55;8446:18;;25455:62:0;8121:349:1;25455:62:0;2810:10;25530:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25530:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25530:53:0;;;;;;;;;;25599:48;;6257:41:1;;;25530:42:0;;2810:10;25599:48;;6230:18:1;25599:48:0;;;;;;;25360:295;;:::o;38061:154::-;4015:6;;-1:-1:-1;;;;;4015:6:0;2810:10;4162:23;4154:68;;;;-1:-1:-1;;;4154:68:0;;;;;;;:::i;:::-;38116:10:::1;:8;:10::i;:::-;38115:11;38107:61;;;::::0;-1:-1:-1;;;38107:61:0;;13893:2:1;38107:61:0::1;::::0;::::1;13875:21:1::0;13932:2;13912:18;;;13905:30;13971:34;13951:18;;;13944:62;-1:-1:-1;;;14022:18:1;;;14015:35;14067:19;;38107:61:0::1;13691:401:1::0;38107:61:0::1;38192:15;38179:10;:28:::0;38061:154::o;26623:328::-;26798:41;2810:10;26831:7;26798:18;:41::i;:::-;26790:103;;;;-1:-1:-1;;;26790:103:0;;;;;;;:::i;:::-;26904:39;26918:4;26924:2;26928:7;26937:5;26904:13;:39::i;:::-;26623:328;;;;:::o;37578:475::-;28526:4;28550:16;;;:7;:16;;;;;;37652:13;;-1:-1:-1;;;;;28550:16:0;37678:77;;;;-1:-1:-1;;;37678:77:0;;13075:2:1;37678:77:0;;;13057:21:1;13114:2;13094:18;;;13087:30;13153:34;13133:18;;;13126:62;-1:-1:-1;;;13204:18:1;;;13197:45;13259:19;;37678:77:0;12873:411:1;37678:77:0;37773:10;:8;:10::i;:::-;37768:258;;37807:13;37800:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37578:475;;;:::o;37768:258::-;37862:21;37886:10;:8;:10::i;:::-;37862:34;;37942:1;37924:7;37918:21;:25;:96;;;;;;;;;;;;;;;;;37970:7;37979:19;:8;:17;:19::i;:::-;37953:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37918:96;37911:103;37578:475;-1:-1:-1;;;37578:475:0:o;37768:258::-;37578:475;;;:::o;4842:192::-;4015:6;;-1:-1:-1;;;;;4015:6:0;2810:10;4162:23;4154:68;;;;-1:-1:-1;;;4154:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4931:22:0;::::1;4923:73;;;::::0;-1:-1:-1;;;4923:73:0;;7154:2:1;4923:73:0::1;::::0;::::1;7136:21:1::0;7193:2;7173:18;;;7166:30;7232:34;7212:18;;;7205:62;-1:-1:-1;;;7283:18:1;;;7276:36;7329:19;;4923:73:0::1;6952:402:1::0;4923:73:0::1;5007:19;5017:8;5007:9;:19::i;:::-;4842:192:::0;:::o;32443:174::-;32518:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32518:29:0;-1:-1:-1;;;;;32518:29:0;;;;;;;;:24;;32572:23;32518:24;32572:14;:23::i;:::-;-1:-1:-1;;;;;32563:46:0;;;;;;;;;;;32443:174;;:::o;36022:94::-;36063:7;36090:14;;36107:1;36090:18;;;;:::i;:::-;36083:25;;36022:94;:::o;29445:110::-;29521:26;29531:2;29535:7;29521:26;;;;;;;;;;;;:9;:26::i;28755:348::-;28848:4;28550:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28550:16:0;28865:73;;;;-1:-1:-1;;;28865:73:0;;9521:2:1;28865:73:0;;;9503:21:1;9560:2;9540:18;;;9533:30;9599:34;9579:18;;;9572:62;-1:-1:-1;;;9650:18:1;;;9643:42;9702:19;;28865:73:0;9319:408:1;28865:73:0;28949:13;28965:23;28980:7;28965:14;:23::i;:::-;28949:39;;29018:5;-1:-1:-1;;;;;29007:16:0;:7;-1:-1:-1;;;;;29007:16:0;;:51;;;;29051:7;-1:-1:-1;;;;;29027:31:0;:20;29039:7;29027:11;:20::i;:::-;-1:-1:-1;;;;;29027:31:0;;29007:51;:87;;;-1:-1:-1;;;;;;25847:25:0;;;25823:4;25847:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29062:32;28999:96;28755:348;-1:-1:-1;;;;28755:348:0:o;31747:578::-;31906:4;-1:-1:-1;;;;;31879:31:0;:23;31894:7;31879:14;:23::i;:::-;-1:-1:-1;;;;;31879:31:0;;31871:85;;;;-1:-1:-1;;;31871:85:0;;12665:2:1;31871:85:0;;;12647:21:1;12704:2;12684:18;;;12677:30;12743:34;12723:18;;;12716:62;-1:-1:-1;;;12794:18:1;;;12787:39;12843:19;;31871:85:0;12463:405:1;31871:85:0;-1:-1:-1;;;;;31975:16:0;;31967:65;;;;-1:-1:-1;;;31967:65:0;;7918:2:1;31967:65:0;;;7900:21:1;7957:2;7937:18;;;7930:30;7996:34;7976:18;;;7969:62;-1:-1:-1;;;8047:18:1;;;8040:34;8091:19;;31967:65:0;7716:400:1;31967:65:0;32149:29;32166:1;32170:7;32149:8;:29::i;:::-;-1:-1:-1;;;;;32191:15:0;;;;;;:9;:15;;;;;:20;;32210:1;;32191:15;:20;;32210:1;;32191:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32222:13:0;;;;;;:9;:13;;;;;:18;;32239:1;;32222:13;:18;;32239:1;;32222:18;:::i;:::-;;;;-1:-1:-1;;32251:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32251:21:0;-1:-1:-1;;;;;32251:21:0;;;;;;;;;32290:27;;32251:16;;32290:27;;;;;;;31747:578;;;:::o;5042:173::-;5117:6;;;-1:-1:-1;;;;;5134:17:0;;;-1:-1:-1;;;;;;5134:17:0;;;;;;;5167:40;;5117:6;;;5134:17;5117:6;;5167:40;;5098:16;;5167:40;5087:128;5042:173;:::o;27833:315::-;27990:28;28000:4;28006:2;28010:7;27990:9;:28::i;:::-;28037:48;28060:4;28066:2;28070:7;28079:5;28037:22;:48::i;:::-;28029:111;;;;-1:-1:-1;;;28029:111:0;;;;;;;:::i;35862:108::-;35914:13;35947:15;35940:22;;;;;:::i;346:723::-;402:13;623:10;619:53;;-1:-1:-1;;650:10:0;;;;;;;;;;;;-1:-1:-1;;;650:10:0;;;;;346:723::o;619:53::-;697:5;682:12;738:78;745:9;;738:78;;771:8;;;;:::i;:::-;;-1:-1:-1;794:10:0;;-1:-1:-1;802:2:0;794:10;;:::i;:::-;;;738:78;;;826:19;858:6;848:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;848:17:0;;826:39;;876:154;883:10;;876:154;;910:11;920:1;910:11;;:::i;:::-;;-1:-1:-1;979:10:0;987:2;979:5;:10;:::i;:::-;966:24;;:2;:24;:::i;:::-;953:39;;936:6;943;936:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;936:56:0;;;;;;;;-1:-1:-1;1007:11:0;1016:2;1007:11;;:::i;:::-;;;876:154;;29782:321;29912:18;29918:2;29922:7;29912:5;:18::i;:::-;29963:54;29994:1;29998:2;30002:7;30011:5;29963:22;:54::i;:::-;29941:154;;;;-1:-1:-1;;;29941:154:0;;;;;;;:::i;33182:799::-;33337:4;-1:-1:-1;;;;;33358:13:0;;6311:20;6359:8;33354:620;;33394:72;;-1:-1:-1;;;33394:72:0;;-1:-1:-1;;;;;33394:36:0;;;;;:72;;2810:10;;33445:4;;33451:7;;33460:5;;33394:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33394:72:0;;;;;;;;-1:-1:-1;;33394:72:0;;;;;;;;;;;;:::i;:::-;;;33390:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33636:13:0;;33632:272;;33679:60;;-1:-1:-1;;;33679:60:0;;;;;;;:::i;33632:272::-;33854:6;33848:13;33839:6;33835:2;33831:15;33824:38;33390:529;-1:-1:-1;;;;;;33517:51:0;-1:-1:-1;;;33517:51:0;;-1:-1:-1;33510:58:0;;33354:620;-1:-1:-1;33958:4:0;33182:799;;;;;;:::o;30439:382::-;-1:-1:-1;;;;;30519:16:0;;30511:61;;;;-1:-1:-1;;;30511:61:0;;11530:2:1;30511:61:0;;;11512:21:1;;;11549:18;;;11542:30;11608:34;11588:18;;;11581:62;11660:18;;30511:61:0;11328:356:1;30511:61:0;28526:4;28550:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28550:16:0;:30;30583:58;;;;-1:-1:-1;;;30583:58:0;;7561:2:1;30583:58:0;;;7543:21:1;7600:2;7580:18;;;7573:30;7639;7619:18;;;7612:58;7687:18;;30583:58:0;7359:352:1;30583:58:0;-1:-1:-1;;;;;30712:13:0;;;;;;:9;:13;;;;;:18;;30729:1;;30712:13;:18;;30729:1;;30712:18;:::i;:::-;;;;-1:-1:-1;;30741:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30741:21:0;-1:-1:-1;;;;;30741:21:0;;;;;;;;30780:33;;30741:16;;;30780:33;;30741:16;;30780:33;30439:382;;:::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;828:186;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:254::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4224:9;4211:23;4201:33;;4253:38;4287:2;4276:9;4272:18;4253:38;:::i;4302:257::-;4343:3;4381:5;4375:12;4408:6;4403:3;4396:19;4424:63;4480:6;4473:4;4468:3;4464:14;4457:4;4450:5;4446:16;4424:63;:::i;:::-;4541:2;4520:15;-1:-1:-1;;4516:29:1;4507:39;;;;4548:4;4503:50;;4302:257;-1:-1:-1;;4302:257:1:o;4564:637::-;4844:3;4882:6;4876:13;4898:53;4944:6;4939:3;4932:4;4924:6;4920:17;4898:53;:::i;:::-;5014:13;;4973:16;;;;5036:57;5014:13;4973:16;5070:4;5058:17;;5036:57;:::i;:::-;-1:-1:-1;;;5115:20:1;;5144:22;;;5193:1;5182:13;;4564:637;-1:-1:-1;;;;4564:637:1:o;5624:488::-;-1:-1:-1;;;;;5893:15:1;;;5875:34;;5945:15;;5940:2;5925:18;;5918:43;5992:2;5977:18;;5970:34;;;6040:3;6035:2;6020:18;;6013:31;;;5818:4;;6061:45;;6086:19;;6078:6;6061:45;:::i;:::-;6053:53;5624:488;-1:-1:-1;;;;;;5624:488:1:o;6309:219::-;6458:2;6447:9;6440:21;6421:4;6478:44;6518:2;6507:9;6503:18;6495:6;6478:44;:::i;6533:414::-;6735:2;6717:21;;;6774:2;6754:18;;;6747:30;6813:34;6808:2;6793:18;;6786:62;-1:-1:-1;;;6879:2:1;6864:18;;6857:48;6937:3;6922:19;;6533:414::o;12102:356::-;12304:2;12286:21;;;12323:18;;;12316:30;12382:34;12377:2;12362:18;;12355:62;12449:2;12434:18;;12102:356::o;14455:413::-;14657:2;14639:21;;;14696:2;14676:18;;;14669:30;14735:34;14730:2;14715:18;;14708:62;-1:-1:-1;;;14801:2:1;14786:18;;14779:47;14858:3;14843:19;;14455:413::o;15055:128::-;15095:3;15126:1;15122:6;15119:1;15116:13;15113:39;;;15132:18;;:::i;:::-;-1:-1:-1;15168:9:1;;15055:128::o;15188:120::-;15228:1;15254;15244:35;;15259:18;;:::i;:::-;-1:-1:-1;15293:9:1;;15188:120::o;15313:168::-;15353:7;15419:1;15415;15411:6;15407:14;15404:1;15401:21;15396:1;15389:9;15382:17;15378:45;15375:71;;;15426:18;;:::i;:::-;-1:-1:-1;15466:9:1;;15313:168::o;15486:125::-;15526:4;15554:1;15551;15548:8;15545:34;;;15559:18;;:::i;:::-;-1:-1:-1;15596:9:1;;15486:125::o;15616:258::-;15688:1;15698:113;15712:6;15709:1;15706:13;15698:113;;;15788:11;;;15782:18;15769:11;;;15762:39;15734:2;15727:10;15698:113;;;15829:6;15826:1;15823:13;15820:48;;;-1:-1:-1;;15864:1:1;15846:16;;15839:27;15616:258::o;15879:380::-;15958:1;15954:12;;;;16001;;;16022:61;;16076:4;16068:6;16064:17;16054:27;;16022:61;16129:2;16121:6;16118:14;16098:18;16095:38;16092:161;;;16175:10;16170:3;16166:20;16163:1;16156:31;16210:4;16207:1;16200:15;16238:4;16235:1;16228:15;16092:161;;15879:380;;;:::o;16264:135::-;16303:3;-1:-1:-1;;16324:17:1;;16321:43;;;16344:18;;:::i;:::-;-1:-1:-1;16391:1:1;16380:13;;16264:135::o;16404:112::-;16436:1;16462;16452:35;;16467:18;;:::i;:::-;-1:-1:-1;16501:9:1;;16404:112::o;16521:127::-;16582:10;16577:3;16573:20;16570:1;16563:31;16613:4;16610:1;16603:15;16637:4;16634:1;16627:15;16653:127;16714:10;16709:3;16705:20;16702:1;16695:31;16745:4;16742:1;16735:15;16769:4;16766:1;16759:15;16785:127;16846:10;16841:3;16837:20;16834:1;16827:31;16877:4;16874:1;16867:15;16901:4;16898:1;16891:15;16917:127;16978:10;16973:3;16969:20;16966:1;16959:31;17009:4;17006:1;16999:15;17033:4;17030:1;17023:15;17049:131;-1:-1:-1;;;;;;17123:32:1;;17113:43;;17103:71;;17170:1;17167;17160:12

Swarm Source

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