ETH Price: $2,632.75 (+0.15%)
Gas: 2 Gwei

Token

KYC (KYC)
 

Overview

Max Total Supply

2,222 KYC

Holders

332

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zeeztewo.eth
Balance
1 KYC
0xfe77ae23291f3015b40735ec2891c401780e55b0
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:
KYC

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-10-04
*/

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

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


// OpenZeppelin Contracts v4.4.1 (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/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.7;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement 
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex != end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

// File: franks.sol



pragma solidity ^0.8.7;



contract KYC is ERC721A, Ownable {

    string public baseURI = "ipfs://QmWJ1e56BPqnZkbswsFp6EhRaqHgkG8HkAobTHmKYSSh8r/";
    uint256 public constant MAX_SUPPLY = 2222;
    uint256 public MINT_PRICE = 0.0029 ether;
    uint256 public constant MAX_PER_TX_FREE = 3;
    uint256 public constant MAX_PER_TX_PAID = 10;
    uint256 public constant FREE_AMOUNT = 500;

    constructor() ERC721A("KYC", "KYC") {
    }

  function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(baseURI, Strings.toString(_tokenId), ".json"));
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setMintPrice(uint256 _price) external onlyOwner {
        MINT_PRICE = _price;
    }

    function publicMint(uint256 count) external payable {
        require(totalSupply() + count <= MAX_SUPPLY, "Excedes max supply.");
        require(totalSupply() + count > FREE_AMOUNT ? count <= MAX_PER_TX_PAID : count <= MAX_PER_TX_FREE, "Exceeds max per transaction.");
        if (msg.sender != owner() && (totalSupply() > FREE_AMOUNT)) {
            require(msg.value >= count * MINT_PRICE, "Amount sent less than the cost of minting NFT(s)");
        }
        _safeMint(_msgSender(), count);
    }

    function withdrawMoney() external onlyOwner {
        (bool success, ) = _msgSender().call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_PAID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603660808181529062001cc460a0398051620000299160099160209091019062000101565b50660a4d88ddd94000600a553480156200004257600080fd5b506040805180820182526003808252624b594360e81b602080840182815285518087019096529285528401528151919291620000819160029162000101565b5080516200009790600390602084019062000101565b50506000805550620000a933620000af565b620001e4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010f90620001a7565b90600052602060002090601f0160209004810192826200013357600085556200017e565b82601f106200014e57805160ff19168380011785556200017e565b828001600101855582156200017e579182015b828111156200017e57825182559160200191906001019062000161565b506200018c92915062000190565b5090565b5b808211156200018c576000815560010162000191565b600181811c90821680620001bc57607f821691505b60208210811415620001de57634e487b7160e01b600052602260045260246000fd5b50919050565b611ad080620001f46000396000f3fe60806040526004361061019c5760003560e01c80636c0360eb116100ec578063ac4460021161008a578063c87b56dd11610064578063c87b56dd1461044a578063e985e9c51461046a578063f2fde38b146104b3578063f4a0a528146104d357600080fd5b8063ac446002146103ff578063b88d4fde14610414578063c002d23d1461043457600080fd5b80638da5cb5b116100c65780638da5cb5b14610397578063958d4bda146103b557806395d89b41146103ca578063a22cb465146103df57600080fd5b80636c0360eb1461034d57806370a0823114610362578063715018a61461038257600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102d8578063463fff79146102f857806355f804b31461030d5780636352211e1461032d57600080fd5b806323b872dd1461028f5780632db11544146102af57806332cb6b0c146102c257600080fd5b8063017184d9146101a157806301ffc9a7146101ca57806306fdde03146101fa578063081812fc1461021c578063095ea7b31461025457806318160ddd14610276575b600080fd5b3480156101ad57600080fd5b506101b76101f481565b6040519081526020015b60405180910390f35b3480156101d657600080fd5b506101ea6101e5366004611710565b6104f3565b60405190151581526020016101c1565b34801561020657600080fd5b5061020f610545565b6040516101c191906118ec565b34801561022857600080fd5b5061023c610237366004611793565b6105d7565b6040516001600160a01b0390911681526020016101c1565b34801561026057600080fd5b5061027461026f3660046116e6565b61061b565b005b34801561028257600080fd5b50600154600054036101b7565b34801561029b57600080fd5b506102746102aa3660046115f2565b6106a9565b6102746102bd366004611793565b6106b4565b3480156102ce57600080fd5b506101b76108ae81565b3480156102e457600080fd5b506102746102f33660046115f2565b610843565b34801561030457600080fd5b506101b7600381565b34801561031957600080fd5b5061027461032836600461174a565b61085e565b34801561033957600080fd5b5061023c610348366004611793565b61089f565b34801561035957600080fd5b5061020f6108b1565b34801561036e57600080fd5b506101b761037d36600461159d565b61093f565b34801561038e57600080fd5b5061027461098e565b3480156103a357600080fd5b506008546001600160a01b031661023c565b3480156103c157600080fd5b506101b7600a81565b3480156103d657600080fd5b5061020f6109c4565b3480156103eb57600080fd5b506102746103fa3660046116aa565b6109d3565b34801561040b57600080fd5b50610274610a69565b34801561042057600080fd5b5061027461042f36600461162e565b610b1e565b34801561044057600080fd5b506101b7600a5481565b34801561045657600080fd5b5061020f610465366004611793565b610b6f565b34801561047657600080fd5b506101ea6104853660046115bf565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104bf57600080fd5b506102746104ce36600461159d565b610bf0565b3480156104df57600080fd5b506102746104ee366004611793565b610c88565b60006001600160e01b031982166380ac58cd60e01b148061052457506001600160e01b03198216635b5e139f60e01b145b8061053f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610554906119c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610580906119c2565b80156105cd5780601f106105a2576101008083540402835291602001916105cd565b820191906000526020600020905b8154815290600101906020018083116105b057829003601f168201915b5050505050905090565b60006105e282610cb7565b6105ff576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106268261089f565b9050806001600160a01b0316836001600160a01b0316141561065b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061067b57506106798133610485565b155b15610699576040516367d9dca160e11b815260040160405180910390fd5b6106a4838383610ce2565b505050565b6106a4838383610d3e565b6108ae816106c56001546000540390565b6106cf9190611934565b11156107185760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064015b60405180910390fd5b6101f4816107296001546000540390565b6107339190611934565b11610742576003811115610748565b600a8111155b6107945760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e00000000604482015260640161070f565b6008546001600160a01b031633148015906107bc57506101f46107ba6001546000540390565b115b1561083657600a546107ce9082611960565b3410156108365760405162461bcd60e51b815260206004820152603060248201527f416d6f756e742073656e74206c657373207468616e2074686520636f7374206f60448201526f66206d696e74696e67204e465428732960801b606482015260840161070f565b6108403382610f2d565b50565b6106a483838360405180602001604052806000815250610b1e565b6008546001600160a01b031633146108885760405162461bcd60e51b815260040161070f906118ff565b805161089b906009906020840190611472565b5050565b60006108aa82610f47565b5192915050565b600980546108be906119c2565b80601f01602080910402602001604051908101604052809291908181526020018280546108ea906119c2565b80156109375780601f1061090c57610100808354040283529160200191610937565b820191906000526020600020905b81548152906001019060200180831161091a57829003601f168201915b505050505081565b60006001600160a01b038216610968576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109b85760405162461bcd60e51b815260040161070f906118ff565b6109c26000611063565b565b606060038054610554906119c2565b6001600160a01b0382163314156109fd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610a935760405162461bcd60e51b815260040161070f906118ff565b604051600090339047908381818185875af1925050503d8060008114610ad5576040519150601f19603f3d011682016040523d82523d6000602084013e610ada565b606091505b50509050806108405760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161070f565b610b29848484610d3e565b6001600160a01b0383163b15158015610b4b5750610b49848484846110b5565b155b15610b69576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b7a82610cb7565b610bbe5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161070f565b6009610bc9836111ad565b604051602001610bda9291906117f4565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161070f906118ff565b6001600160a01b038116610c7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070f565b61084081611063565b6008546001600160a01b03163314610cb25760405162461bcd60e51b815260040161070f906118ff565b600a55565b600080548210801561053f575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d4982610f47565b9050836001600160a01b031681600001516001600160a01b031614610d805760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d9e5750610d9e8533610485565b80610db9575033610dae846105d7565b6001600160a01b0316145b905080610dd957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610e0057604051633a954ecd60e21b815260040160405180910390fd5b610e0c60008487610ce2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610ee2576000548214610ee2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b61089b8282604051806020016040528060008152506112ab565b60408051606081018252600080825260208201819052918101919091528160005481101561104a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110485780516001600160a01b031615610fde579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611043579392505050565b610fde565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110ea9033908990889088906004016118af565b602060405180830381600087803b15801561110457600080fd5b505af1925050508015611134575060408051601f3d908101601f191682019092526111319181019061172d565b60015b61118f573d808015611162576040519150601f19603f3d011682016040523d82523d6000602084013e611167565b606091505b508051611187576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816111d15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111fb57806111e5816119fd565b91506111f49050600a8361194c565b91506111d5565b60008167ffffffffffffffff81111561121657611216611a6e565b6040519080825280601f01601f191660200182016040528015611240576020820181803683370190505b5090505b84156111a55761125560018361197f565b9150611262600a86611a18565b61126d906030611934565b60f81b81838151811061128257611282611a58565b60200101906001600160f81b031916908160001a9053506112a4600a8661194c565b9450611244565b6000546001600160a01b0384166112d457604051622e076360e81b815260040160405180910390fd5b826112f25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b1561141c575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46113e460008784806001019550876110b5565b611401576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561139957826000541461141757600080fd5b611462565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561141d575b506000908155610b699085838684565b82805461147e906119c2565b90600052602060002090601f0160209004810192826114a057600085556114e6565b82601f106114b957805160ff19168380011785556114e6565b828001600101855582156114e6579182015b828111156114e65782518255916020019190600101906114cb565b506114f29291506114f6565b5090565b5b808211156114f257600081556001016114f7565b600067ffffffffffffffff8084111561152657611526611a6e565b604051601f8501601f19908116603f0116810190828211818310171561154e5761154e611a6e565b8160405280935085815286868601111561156757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461159857600080fd5b919050565b6000602082840312156115af57600080fd5b6115b882611581565b9392505050565b600080604083850312156115d257600080fd5b6115db83611581565b91506115e960208401611581565b90509250929050565b60008060006060848603121561160757600080fd5b61161084611581565b925061161e60208501611581565b9150604084013590509250925092565b6000806000806080858703121561164457600080fd5b61164d85611581565b935061165b60208601611581565b925060408501359150606085013567ffffffffffffffff81111561167e57600080fd5b8501601f8101871361168f57600080fd5b61169e8782356020840161150b565b91505092959194509250565b600080604083850312156116bd57600080fd5b6116c683611581565b9150602083013580151581146116db57600080fd5b809150509250929050565b600080604083850312156116f957600080fd5b61170283611581565b946020939093013593505050565b60006020828403121561172257600080fd5b81356115b881611a84565b60006020828403121561173f57600080fd5b81516115b881611a84565b60006020828403121561175c57600080fd5b813567ffffffffffffffff81111561177357600080fd5b8201601f8101841361178457600080fd5b6111a58482356020840161150b565b6000602082840312156117a557600080fd5b5035919050565b600081518084526117c4816020860160208601611996565b601f01601f19169290920160200192915050565b600081516117ea818560208601611996565b9290920192915050565b600080845481600182811c91508083168061181057607f831692505b602080841082141561183057634e487b7160e01b86526022600452602486fd5b818015611844576001811461185557611882565b60ff19861689528489019650611882565b60008b81526020902060005b8681101561187a5781548b820152908501908301611861565b505084890196505b5050505050506118a661189582866117d8565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118e2908301846117ac565b9695505050505050565b6020815260006115b860208301846117ac565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561194757611947611a2c565b500190565b60008261195b5761195b611a42565b500490565b600081600019048311821515161561197a5761197a611a2c565b500290565b60008282101561199157611991611a2c565b500390565b60005b838110156119b1578181015183820152602001611999565b83811115610b695750506000910152565b600181811c908216806119d657607f821691505b602082108114156119f757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a1157611a11611a2c565b5060010190565b600082611a2757611a27611a42565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461084057600080fdfea2646970667358221220c5ac88c30cfb232e69b112a5c81c4e9807a7a85fddbf0e97e23e727ffc21c43d64736f6c63430008070033697066733a2f2f516d574a316535364250716e5a6b62737773467036456852617148676b4738486b416f6254486d4b5953536838722f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636c0360eb116100ec578063ac4460021161008a578063c87b56dd11610064578063c87b56dd1461044a578063e985e9c51461046a578063f2fde38b146104b3578063f4a0a528146104d357600080fd5b8063ac446002146103ff578063b88d4fde14610414578063c002d23d1461043457600080fd5b80638da5cb5b116100c65780638da5cb5b14610397578063958d4bda146103b557806395d89b41146103ca578063a22cb465146103df57600080fd5b80636c0360eb1461034d57806370a0823114610362578063715018a61461038257600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102d8578063463fff79146102f857806355f804b31461030d5780636352211e1461032d57600080fd5b806323b872dd1461028f5780632db11544146102af57806332cb6b0c146102c257600080fd5b8063017184d9146101a157806301ffc9a7146101ca57806306fdde03146101fa578063081812fc1461021c578063095ea7b31461025457806318160ddd14610276575b600080fd5b3480156101ad57600080fd5b506101b76101f481565b6040519081526020015b60405180910390f35b3480156101d657600080fd5b506101ea6101e5366004611710565b6104f3565b60405190151581526020016101c1565b34801561020657600080fd5b5061020f610545565b6040516101c191906118ec565b34801561022857600080fd5b5061023c610237366004611793565b6105d7565b6040516001600160a01b0390911681526020016101c1565b34801561026057600080fd5b5061027461026f3660046116e6565b61061b565b005b34801561028257600080fd5b50600154600054036101b7565b34801561029b57600080fd5b506102746102aa3660046115f2565b6106a9565b6102746102bd366004611793565b6106b4565b3480156102ce57600080fd5b506101b76108ae81565b3480156102e457600080fd5b506102746102f33660046115f2565b610843565b34801561030457600080fd5b506101b7600381565b34801561031957600080fd5b5061027461032836600461174a565b61085e565b34801561033957600080fd5b5061023c610348366004611793565b61089f565b34801561035957600080fd5b5061020f6108b1565b34801561036e57600080fd5b506101b761037d36600461159d565b61093f565b34801561038e57600080fd5b5061027461098e565b3480156103a357600080fd5b506008546001600160a01b031661023c565b3480156103c157600080fd5b506101b7600a81565b3480156103d657600080fd5b5061020f6109c4565b3480156103eb57600080fd5b506102746103fa3660046116aa565b6109d3565b34801561040b57600080fd5b50610274610a69565b34801561042057600080fd5b5061027461042f36600461162e565b610b1e565b34801561044057600080fd5b506101b7600a5481565b34801561045657600080fd5b5061020f610465366004611793565b610b6f565b34801561047657600080fd5b506101ea6104853660046115bf565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104bf57600080fd5b506102746104ce36600461159d565b610bf0565b3480156104df57600080fd5b506102746104ee366004611793565b610c88565b60006001600160e01b031982166380ac58cd60e01b148061052457506001600160e01b03198216635b5e139f60e01b145b8061053f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610554906119c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610580906119c2565b80156105cd5780601f106105a2576101008083540402835291602001916105cd565b820191906000526020600020905b8154815290600101906020018083116105b057829003601f168201915b5050505050905090565b60006105e282610cb7565b6105ff576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106268261089f565b9050806001600160a01b0316836001600160a01b0316141561065b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061067b57506106798133610485565b155b15610699576040516367d9dca160e11b815260040160405180910390fd5b6106a4838383610ce2565b505050565b6106a4838383610d3e565b6108ae816106c56001546000540390565b6106cf9190611934565b11156107185760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064015b60405180910390fd5b6101f4816107296001546000540390565b6107339190611934565b11610742576003811115610748565b600a8111155b6107945760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e00000000604482015260640161070f565b6008546001600160a01b031633148015906107bc57506101f46107ba6001546000540390565b115b1561083657600a546107ce9082611960565b3410156108365760405162461bcd60e51b815260206004820152603060248201527f416d6f756e742073656e74206c657373207468616e2074686520636f7374206f60448201526f66206d696e74696e67204e465428732960801b606482015260840161070f565b6108403382610f2d565b50565b6106a483838360405180602001604052806000815250610b1e565b6008546001600160a01b031633146108885760405162461bcd60e51b815260040161070f906118ff565b805161089b906009906020840190611472565b5050565b60006108aa82610f47565b5192915050565b600980546108be906119c2565b80601f01602080910402602001604051908101604052809291908181526020018280546108ea906119c2565b80156109375780601f1061090c57610100808354040283529160200191610937565b820191906000526020600020905b81548152906001019060200180831161091a57829003601f168201915b505050505081565b60006001600160a01b038216610968576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109b85760405162461bcd60e51b815260040161070f906118ff565b6109c26000611063565b565b606060038054610554906119c2565b6001600160a01b0382163314156109fd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610a935760405162461bcd60e51b815260040161070f906118ff565b604051600090339047908381818185875af1925050503d8060008114610ad5576040519150601f19603f3d011682016040523d82523d6000602084013e610ada565b606091505b50509050806108405760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161070f565b610b29848484610d3e565b6001600160a01b0383163b15158015610b4b5750610b49848484846110b5565b155b15610b69576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b7a82610cb7565b610bbe5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161070f565b6009610bc9836111ad565b604051602001610bda9291906117f4565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161070f906118ff565b6001600160a01b038116610c7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070f565b61084081611063565b6008546001600160a01b03163314610cb25760405162461bcd60e51b815260040161070f906118ff565b600a55565b600080548210801561053f575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d4982610f47565b9050836001600160a01b031681600001516001600160a01b031614610d805760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d9e5750610d9e8533610485565b80610db9575033610dae846105d7565b6001600160a01b0316145b905080610dd957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610e0057604051633a954ecd60e21b815260040160405180910390fd5b610e0c60008487610ce2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610ee2576000548214610ee2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b61089b8282604051806020016040528060008152506112ab565b60408051606081018252600080825260208201819052918101919091528160005481101561104a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110485780516001600160a01b031615610fde579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611043579392505050565b610fde565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110ea9033908990889088906004016118af565b602060405180830381600087803b15801561110457600080fd5b505af1925050508015611134575060408051601f3d908101601f191682019092526111319181019061172d565b60015b61118f573d808015611162576040519150601f19603f3d011682016040523d82523d6000602084013e611167565b606091505b508051611187576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816111d15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111fb57806111e5816119fd565b91506111f49050600a8361194c565b91506111d5565b60008167ffffffffffffffff81111561121657611216611a6e565b6040519080825280601f01601f191660200182016040528015611240576020820181803683370190505b5090505b84156111a55761125560018361197f565b9150611262600a86611a18565b61126d906030611934565b60f81b81838151811061128257611282611a58565b60200101906001600160f81b031916908160001a9053506112a4600a8661194c565b9450611244565b6000546001600160a01b0384166112d457604051622e076360e81b815260040160405180910390fd5b826112f25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b1561141c575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46113e460008784806001019550876110b5565b611401576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561139957826000541461141757600080fd5b611462565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561141d575b506000908155610b699085838684565b82805461147e906119c2565b90600052602060002090601f0160209004810192826114a057600085556114e6565b82601f106114b957805160ff19168380011785556114e6565b828001600101855582156114e6579182015b828111156114e65782518255916020019190600101906114cb565b506114f29291506114f6565b5090565b5b808211156114f257600081556001016114f7565b600067ffffffffffffffff8084111561152657611526611a6e565b604051601f8501601f19908116603f0116810190828211818310171561154e5761154e611a6e565b8160405280935085815286868601111561156757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461159857600080fd5b919050565b6000602082840312156115af57600080fd5b6115b882611581565b9392505050565b600080604083850312156115d257600080fd5b6115db83611581565b91506115e960208401611581565b90509250929050565b60008060006060848603121561160757600080fd5b61161084611581565b925061161e60208501611581565b9150604084013590509250925092565b6000806000806080858703121561164457600080fd5b61164d85611581565b935061165b60208601611581565b925060408501359150606085013567ffffffffffffffff81111561167e57600080fd5b8501601f8101871361168f57600080fd5b61169e8782356020840161150b565b91505092959194509250565b600080604083850312156116bd57600080fd5b6116c683611581565b9150602083013580151581146116db57600080fd5b809150509250929050565b600080604083850312156116f957600080fd5b61170283611581565b946020939093013593505050565b60006020828403121561172257600080fd5b81356115b881611a84565b60006020828403121561173f57600080fd5b81516115b881611a84565b60006020828403121561175c57600080fd5b813567ffffffffffffffff81111561177357600080fd5b8201601f8101841361178457600080fd5b6111a58482356020840161150b565b6000602082840312156117a557600080fd5b5035919050565b600081518084526117c4816020860160208601611996565b601f01601f19169290920160200192915050565b600081516117ea818560208601611996565b9290920192915050565b600080845481600182811c91508083168061181057607f831692505b602080841082141561183057634e487b7160e01b86526022600452602486fd5b818015611844576001811461185557611882565b60ff19861689528489019650611882565b60008b81526020902060005b8681101561187a5781548b820152908501908301611861565b505084890196505b5050505050506118a661189582866117d8565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118e2908301846117ac565b9695505050505050565b6020815260006115b860208301846117ac565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561194757611947611a2c565b500190565b60008261195b5761195b611a42565b500490565b600081600019048311821515161561197a5761197a611a2c565b500290565b60008282101561199157611991611a2c565b500390565b60005b838110156119b1578181015183820152602001611999565b83811115610b695750506000910152565b600181811c908216806119d657607f821691505b602082108114156119f757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a1157611a11611a2c565b5060010190565b600082611a2757611a27611a42565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461084057600080fdfea2646970667358221220c5ac88c30cfb232e69b112a5c81c4e9807a7a85fddbf0e97e23e727ffc21c43d64736f6c63430008070033

Deployed Bytecode Sourcemap

45919:1583:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46244:41;;;;;;;;;;;;46282:3;46244:41;;;;;9977:25:1;;;9965:2;9950:18;46244:41:0;;;;;;;;24519:305;;;;;;;;;;-1:-1:-1;24519:305:0;;;;;:::i;:::-;;:::i;:::-;;;6995:14:1;;6988:22;6970:41;;6958:2;6943:18;24519:305:0;6830:187:1;27632:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29135:204::-;;;;;;;;;;-1:-1:-1;29135:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6293:32:1;;;6275:51;;6263:2;6248:18;29135:204:0;6129:203:1;28698:371:0;;;;;;;;;;-1:-1:-1;28698:371:0;;;;;:::i;:::-;;:::i;:::-;;23768:303;;;;;;;;;;-1:-1:-1;24022:12:0;;23812:7;24006:13;:28;23768:303;;30000:170;;;;;;;;;;-1:-1:-1;30000:170:0;;;;;:::i;:::-;;:::i;46802:509::-;;;;;;:::i;:::-;;:::i;46048:41::-;;;;;;;;;;;;46085:4;46048:41;;30241:185;;;;;;;;;;-1:-1:-1;30241:185:0;;;;;:::i;:::-;;:::i;46143:43::-;;;;;;;;;;;;46185:1;46143:43;;46591:100;;;;;;;;;;-1:-1:-1;46591:100:0;;;;;:::i;:::-;;:::i;27440:125::-;;;;;;;;;;-1:-1:-1;27440:125:0;;;;;:::i;:::-;;:::i;45961:80::-;;;;;;;;;;;;;:::i;24888:206::-;;;;;;;;;;-1:-1:-1;24888:206:0;;;;;:::i;:::-;;:::i;45044:103::-;;;;;;;;;;;;;:::i;44393:87::-;;;;;;;;;;-1:-1:-1;44466:6:0;;-1:-1:-1;;;;;44466:6:0;44393:87;;46193:44;;;;;;;;;;;;46235:2;46193:44;;27801:104;;;;;;;;;;;;;:::i;29411:287::-;;;;;;;;;;-1:-1:-1;29411:287:0;;;;;:::i;:::-;;:::i;47319:180::-;;;;;;;;;;;;;:::i;30497:369::-;;;;;;;;;;-1:-1:-1;30497:369:0;;;;;:::i;:::-;;:::i;46096:40::-;;;;;;;;;;;;;;;;46344:239;;;;;;;;;;-1:-1:-1;46344:239:0;;;;;:::i;:::-;;:::i;29769:164::-;;;;;;;;;;-1:-1:-1;29769:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29890:25:0;;;29866:4;29890:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29769:164;45302:201;;;;;;;;;;-1:-1:-1;45302:201:0;;;;;:::i;:::-;;:::i;46699:95::-;;;;;;;;;;-1:-1:-1;46699:95:0;;;;;:::i;:::-;;:::i;24519:305::-;24621:4;-1:-1:-1;;;;;;24658:40:0;;-1:-1:-1;;;24658:40:0;;:105;;-1:-1:-1;;;;;;;24715:48:0;;-1:-1:-1;;;24715:48:0;24658:105;:158;;;-1:-1:-1;;;;;;;;;;13643:40:0;;;24780:36;24638:178;24519:305;-1:-1:-1;;24519:305:0:o;27632:100::-;27686:13;27719:5;27712:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27632:100;:::o;29135:204::-;29203:7;29228:16;29236:7;29228;:16::i;:::-;29223:64;;29253:34;;-1:-1:-1;;;29253:34:0;;;;;;;;;;;29223:64;-1:-1:-1;29307:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29307:24:0;;29135:204::o;28698:371::-;28771:13;28787:24;28803:7;28787:15;:24::i;:::-;28771:40;;28832:5;-1:-1:-1;;;;;28826:11:0;:2;-1:-1:-1;;;;;28826:11:0;;28822:48;;;28846:24;;-1:-1:-1;;;28846:24:0;;;;;;;;;;;28822:48;20147:10;-1:-1:-1;;;;;28887:21:0;;;;;;:63;;-1:-1:-1;28913:37:0;28930:5;20147:10;29769:164;:::i;28913:37::-;28912:38;28887:63;28883:138;;;28974:35;;-1:-1:-1;;;28974:35:0;;;;;;;;;;;28883:138;29033:28;29042:2;29046:7;29055:5;29033:8;:28::i;:::-;28760:309;28698:371;;:::o;30000:170::-;30134:28;30144:4;30150:2;30154:7;30134:9;:28::i;46802:509::-;46085:4;46889:5;46873:13;24022:12;;23812:7;24006:13;:28;;23768:303;46873:13;:21;;;;:::i;:::-;:35;;46865:67;;;;-1:-1:-1;;;46865:67:0;;7448:2:1;46865:67:0;;;7430:21:1;7487:2;7467:18;;;7460:30;-1:-1:-1;;;7506:18:1;;;7499:49;7565:18;;46865:67:0;;;;;;;;;46282:3;46967:5;46951:13;24022:12;;23812:7;24006:13;:28;;23768:303;46951:13;:21;;;;:::i;:::-;:35;:89;;46185:1;47016:5;:24;;46951:89;;;46235:2;46989:5;:24;;46951:89;46943:130;;;;-1:-1:-1;;;46943:130:0;;9676:2:1;46943:130:0;;;9658:21:1;9715:2;9695:18;;;9688:30;9754;9734:18;;;9727:58;9802:18;;46943:130:0;9474:352:1;46943:130:0;44466:6;;-1:-1:-1;;;;;44466:6:0;47088:10;:21;;;;:54;;;46282:3;47114:13;24022:12;;23812:7;24006:13;:28;;23768:303;47114:13;:27;47088:54;47084:179;;;47188:10;;47180:18;;:5;:18;:::i;:::-;47167:9;:31;;47159:92;;;;-1:-1:-1;;;47159:92:0;;8203:2:1;47159:92:0;;;8185:21:1;8242:2;8222:18;;;8215:30;8281:34;8261:18;;;8254:62;-1:-1:-1;;;8332:18:1;;;8325:46;8388:19;;47159:92:0;8001:412:1;47159:92:0;47273:30;20147:10;47297:5;47273:9;:30::i;:::-;46802:509;:::o;30241:185::-;30379:39;30396:4;30402:2;30406:7;30379:39;;;;;;;;;;;;:16;:39::i;46591:100::-;44466:6;;-1:-1:-1;;;;;44466:6:0;20147:10;44613:23;44605:68;;;;-1:-1:-1;;;44605:68:0;;;;;;;:::i;:::-;46665:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46591:100:::0;:::o;27440:125::-;27504:7;27531:21;27544:7;27531:12;:21::i;:::-;:26;;27440:125;-1:-1:-1;;27440:125:0:o;45961:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24888:206::-;24952:7;-1:-1:-1;;;;;24976:19:0;;24972:60;;25004:28;;-1:-1:-1;;;25004:28:0;;;;;;;;;;;24972:60;-1:-1:-1;;;;;;25058:19:0;;;;;:12;:19;;;;;:27;;;;24888:206::o;45044:103::-;44466:6;;-1:-1:-1;;;;;44466:6:0;20147:10;44613:23;44605:68;;;;-1:-1:-1;;;44605:68:0;;;;;;;:::i;:::-;45109:30:::1;45136:1;45109:18;:30::i;:::-;45044:103::o:0;27801:104::-;27857:13;27890:7;27883:14;;;;;:::i;29411:287::-;-1:-1:-1;;;;;29510:24:0;;20147:10;29510:24;29506:54;;;29543:17;;-1:-1:-1;;;29543:17:0;;;;;;;;;;;29506:54;20147:10;29573:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29573:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29573:53:0;;;;;;;;;;29642:48;;6970:41:1;;;29573:42:0;;20147:10;29642:48;;6943:18:1;29642:48:0;;;;;;;29411:287;;:::o;47319:180::-;44466:6;;-1:-1:-1;;;;;44466:6:0;20147:10;44613:23;44605:68;;;;-1:-1:-1;;;44605:68:0;;;;;;;:::i;:::-;47393:51:::1;::::0;47375:12:::1;::::0;20147:10;;47418:21:::1;::::0;47375:12;47393:51;47375:12;47393:51;47418:21;20147:10;47393:51:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47374:70;;;47463:7;47455:36;;;::::0;-1:-1:-1;;;47455:36:0;;9331:2:1;47455:36:0::1;::::0;::::1;9313:21:1::0;9370:2;9350:18;;;9343:30;-1:-1:-1;;;9389:18:1;;;9382:46;9445:18;;47455:36:0::1;9129:340:1::0;30497:369:0;30664:28;30674:4;30680:2;30684:7;30664:9;:28::i;:::-;-1:-1:-1;;;;;30707:13:0;;3723:19;:23;;30707:76;;;;;30727:56;30758:4;30764:2;30768:7;30777:5;30727:30;:56::i;:::-;30726:57;30707:76;30703:156;;;30807:40;;-1:-1:-1;;;30807:40:0;;;;;;;;;;;30703:156;30497:369;;;;:::o;46344:239::-;46410:13;46444:17;46452:8;46444:7;:17::i;:::-;46436:51;;;;-1:-1:-1;;;46436:51:0;;8620:2:1;46436:51:0;;;8602:21:1;8659:2;8639:18;;;8632:30;-1:-1:-1;;;8678:18:1;;;8671:51;8739:18;;46436:51:0;8418:345:1;46436:51:0;46529:7;46538:26;46555:8;46538:16;:26::i;:::-;46512:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46498:77;;46344:239;;;:::o;45302:201::-;44466:6;;-1:-1:-1;;;;;44466:6:0;20147:10;44613:23;44605:68;;;;-1:-1:-1;;;44605:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45391:22:0;::::1;45383:73;;;::::0;-1:-1:-1;;;45383:73:0;;7796:2:1;45383:73:0::1;::::0;::::1;7778:21:1::0;7835:2;7815:18;;;7808:30;7874:34;7854:18;;;7847:62;-1:-1:-1;;;7925:18:1;;;7918:36;7971:19;;45383:73:0::1;7594:402:1::0;45383:73:0::1;45467:28;45486:8;45467:18;:28::i;46699:95::-:0;44466:6;;-1:-1:-1;;;;;44466:6:0;20147:10;44613:23;44605:68;;;;-1:-1:-1;;;44605:68:0;;;;;;;:::i;:::-;46767:10:::1;:19:::0;46699:95::o;31121:174::-;31178:4;31242:13;;31232:7;:23;31202:85;;;;-1:-1:-1;;31260:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31260:27:0;;;;31259:28;;31121:174::o;40347:196::-;40462:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40462:29:0;-1:-1:-1;;;;;40462:29:0;;;;;;;;;40507:28;;40462:24;;40507:28;;;;;;;40347:196;;;:::o;35295:2130::-;35410:35;35448:21;35461:7;35448:12;:21::i;:::-;35410:59;;35508:4;-1:-1:-1;;;;;35486:26:0;:13;:18;;;-1:-1:-1;;;;;35486:26:0;;35482:67;;35521:28;;-1:-1:-1;;;35521:28:0;;;;;;;;;;;35482:67;35562:22;20147:10;-1:-1:-1;;;;;35588:20:0;;;;:73;;-1:-1:-1;35625:36:0;35642:4;20147:10;29769:164;:::i;35625:36::-;35588:126;;;-1:-1:-1;20147:10:0;35678:20;35690:7;35678:11;:20::i;:::-;-1:-1:-1;;;;;35678:36:0;;35588:126;35562:153;;35733:17;35728:66;;35759:35;;-1:-1:-1;;;35759:35:0;;;;;;;;;;;35728:66;-1:-1:-1;;;;;35809:16:0;;35805:52;;35834:23;;-1:-1:-1;;;35834:23:0;;;;;;;;;;;35805:52;35978:35;35995:1;35999:7;36008:4;35978:8;:35::i;:::-;-1:-1:-1;;;;;36309:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36309:31:0;;;;;;;-1:-1:-1;;36309:31:0;;;;;;;36355:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36355:29:0;;;;;;;;;;;36435:20;;;:11;:20;;;;;;36470:18;;-1:-1:-1;;;;;;36503:49:0;;;;-1:-1:-1;;;36536:15:0;36503:49;;;;;;;;;;36826:11;;36886:24;;;;;36929:13;;36435:20;;36886:24;;36929:13;36925:384;;37139:13;;37124:11;:28;37120:174;;37177:20;;37246:28;;;;37220:54;;-1:-1:-1;;;37220:54:0;-1:-1:-1;;;;;;37220:54:0;;;-1:-1:-1;;;;;37177:20:0;;37220:54;;;;37120:174;36284:1036;;;37356:7;37352:2;-1:-1:-1;;;;;37337:27:0;37346:4;-1:-1:-1;;;;;37337:27:0;;;;;;;;;;;35399:2026;;35295:2130;;;:::o;31379:104::-;31448:27;31458:2;31462:8;31448:27;;;;;;;;;;;;:9;:27::i;26269:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26380:7:0;26463:13;;26456:4;:20;26425:886;;;26497:31;26531:17;;;:11;:17;;;;;;;;;26497:51;;;;;;;;;-1:-1:-1;;;;;26497:51:0;;;;-1:-1:-1;;;26497:51:0;;;;;;;;;;;-1:-1:-1;;;26497:51:0;;;;;;;;;;;;;;26567:729;;26617:14;;-1:-1:-1;;;;;26617:28:0;;26613:101;;26681:9;26269:1109;-1:-1:-1;;;26269:1109:0:o;26613:101::-;-1:-1:-1;;;27056:6:0;27101:17;;;;:11;:17;;;;;;;;;27089:29;;;;;;;;;-1:-1:-1;;;;;27089:29:0;;;;;-1:-1:-1;;;27089:29:0;;;;;;;;;;;-1:-1:-1;;;27089:29:0;;;;;;;;;;;;;27149:28;27145:109;;27217:9;26269:1109;-1:-1:-1;;;26269:1109:0:o;27145:109::-;27016:261;;;26478:833;26425:886;27339:31;;-1:-1:-1;;;27339:31:0;;;;;;;;;;;45663:191;45756:6;;;-1:-1:-1;;;;;45773:17:0;;;-1:-1:-1;;;;;;45773:17:0;;;;;;;45806:40;;45756:6;;;45773:17;45756:6;;45806:40;;45737:16;;45806:40;45726:128;45663:191;:::o;41035:667::-;41219:72;;-1:-1:-1;;;41219:72:0;;41198:4;;-1:-1:-1;;;;;41219:36:0;;;;;:72;;20147:10;;41270:4;;41276:7;;41285:5;;41219:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41219:72:0;;;;;;;;-1:-1:-1;;41219:72:0;;;;;;;;;;;;:::i;:::-;;;41215:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41453:13:0;;41449:235;;41499:40;;-1:-1:-1;;;41499:40:0;;;;;;;;;;;41449:235;41642:6;41636:13;41627:6;41623:2;41619:15;41612:38;41215:480;-1:-1:-1;;;;;;41338:55:0;-1:-1:-1;;;41338:55:0;;-1:-1:-1;41215:480:0;41035:667;;;;;;:::o;436:723::-;492:13;713:10;709:53;;-1:-1:-1;;740:10:0;;;;;;;;;;;;-1:-1:-1;;;740:10:0;;;;;436:723::o;709:53::-;787:5;772:12;828:78;835:9;;828:78;;861:8;;;;:::i;:::-;;-1:-1:-1;884:10:0;;-1:-1:-1;892:2:0;884:10;;:::i;:::-;;;828:78;;;916:19;948:6;938:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;938:17:0;;916:39;;966:154;973:10;;966:154;;1000:11;1010:1;1000:11;;:::i;:::-;;-1:-1:-1;1069:10:0;1077:2;1069:5;:10;:::i;:::-;1056:24;;:2;:24;:::i;:::-;1043:39;;1026:6;1033;1026:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1026:56:0;;;;;;;;-1:-1:-1;1097:11:0;1106:2;1097:11;;:::i;:::-;;;966:154;;31857:1751;31980:20;32003:13;-1:-1:-1;;;;;32031:16:0;;32027:48;;32056:19;;-1:-1:-1;;;32056:19:0;;;;;;;;;;;32027:48;32090:13;32086:44;;32112:18;;-1:-1:-1;;;32112:18:0;;;;;;;;;;;32086:44;-1:-1:-1;;;;;32481:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32540:49:0;;32481:44;;;;;;;;32540:49;;;;-1:-1:-1;;32481:44:0;;;;;;32540:49;;;;;;;;;;;;;;;;32606:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32656:66:0;;;-1:-1:-1;;;32706:15:0;32656:66;;;;;;;;;;;;;32606:25;;32803:23;;;;3723:19;:23;32843:633;;32883:314;32914:38;;32939:12;;-1:-1:-1;;;;;32914:38:0;;;32931:1;;32914:38;;32931:1;;32914:38;32980:69;33019:1;33023:2;33027:14;;;;;;33043:5;32980:30;:69::i;:::-;32975:174;;33085:40;;-1:-1:-1;;;33085:40:0;;;;;;;;;;;32975:174;33192:3;33176:12;:19;;32883:314;;33278:12;33261:13;;:29;33257:43;;33292:8;;;33257:43;32843:633;;;33341:120;33372:40;;33397:14;;;;;-1:-1:-1;;;;;33372:40:0;;;33389:1;;33372:40;;33389:1;;33372:40;33456:3;33440:12;:19;;33341:120;;32843:633;-1:-1:-1;33490:13:0;:28;;;33540:60;;33573:2;33577:12;33591:8;33540:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828: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;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;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:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4613:1301::-;4890:3;4919:1;4952:6;4946:13;4982:3;5004:1;5032:9;5028:2;5024:18;5014:28;;5092:2;5081:9;5077:18;5114;5104:61;;5158:4;5150:6;5146:17;5136:27;;5104:61;5184:2;5232;5224:6;5221:14;5201:18;5198:38;5195:165;;;-1:-1:-1;;;5259:33:1;;5315:4;5312:1;5305:15;5345:4;5266:3;5333:17;5195:165;5376:18;5403:104;;;;5521:1;5516:320;;;;5369:467;;5403:104;-1:-1:-1;;5436:24:1;;5424:37;;5481:16;;;;-1:-1:-1;5403:104:1;;5516:320;10086:1;10079:14;;;10123:4;10110:18;;5611:1;5625:165;5639:6;5636:1;5633:13;5625:165;;;5717:14;;5704:11;;;5697:35;5760:16;;;;5654:10;;5625:165;;;5629:3;;5819:6;5814:3;5810:16;5803:23;;5369:467;;;;;;;5852:56;5877:30;5903:3;5895:6;5877:30;:::i;:::-;-1:-1:-1;;;4555:20:1;;4600:1;4591:11;;4495:113;5852:56;5845:63;4613:1301;-1:-1:-1;;;;;4613:1301:1:o;6337:488::-;-1:-1:-1;;;;;6606:15:1;;;6588:34;;6658:15;;6653:2;6638:18;;6631:43;6705:2;6690:18;;6683:34;;;6753:3;6748:2;6733:18;;6726:31;;;6531:4;;6774:45;;6799:19;;6791:6;6774:45;:::i;:::-;6766:53;6337:488;-1:-1:-1;;;;;;6337:488:1:o;7022:219::-;7171:2;7160:9;7153:21;7134:4;7191:44;7231:2;7220:9;7216:18;7208:6;7191:44;:::i;8768:356::-;8970:2;8952:21;;;8989:18;;;8982:30;9048:34;9043:2;9028:18;;9021:62;9115:2;9100:18;;8768:356::o;10139:128::-;10179:3;10210:1;10206:6;10203:1;10200:13;10197:39;;;10216:18;;:::i;:::-;-1:-1:-1;10252:9:1;;10139:128::o;10272:120::-;10312:1;10338;10328:35;;10343:18;;:::i;:::-;-1:-1:-1;10377:9:1;;10272:120::o;10397:168::-;10437:7;10503:1;10499;10495:6;10491:14;10488:1;10485:21;10480:1;10473:9;10466:17;10462:45;10459:71;;;10510:18;;:::i;:::-;-1:-1:-1;10550:9:1;;10397:168::o;10570:125::-;10610:4;10638:1;10635;10632:8;10629:34;;;10643:18;;:::i;:::-;-1:-1:-1;10680:9:1;;10570:125::o;10700:258::-;10772:1;10782:113;10796:6;10793:1;10790:13;10782:113;;;10872:11;;;10866:18;10853:11;;;10846:39;10818:2;10811:10;10782:113;;;10913:6;10910:1;10907:13;10904:48;;;-1:-1:-1;;10948:1:1;10930:16;;10923:27;10700:258::o;10963:380::-;11042:1;11038:12;;;;11085;;;11106:61;;11160:4;11152:6;11148:17;11138:27;;11106:61;11213:2;11205:6;11202:14;11182:18;11179:38;11176:161;;;11259:10;11254:3;11250:20;11247:1;11240:31;11294:4;11291:1;11284:15;11322:4;11319:1;11312:15;11176:161;;10963:380;;;:::o;11348:135::-;11387:3;-1:-1:-1;;11408:17:1;;11405:43;;;11428:18;;:::i;:::-;-1:-1:-1;11475:1:1;11464:13;;11348:135::o;11488:112::-;11520:1;11546;11536:35;;11551:18;;:::i;:::-;-1:-1:-1;11585:9:1;;11488:112::o;11605:127::-;11666:10;11661:3;11657:20;11654:1;11647:31;11697:4;11694:1;11687:15;11721:4;11718:1;11711:15;11737:127;11798:10;11793:3;11789:20;11786:1;11779:31;11829:4;11826:1;11819:15;11853:4;11850:1;11843:15;11869:127;11930:10;11925:3;11921:20;11918:1;11911:31;11961:4;11958:1;11951:15;11985:4;11982:1;11975:15;12001:127;12062:10;12057:3;12053:20;12050:1;12043:31;12093:4;12090:1;12083:15;12117:4;12114:1;12107:15;12133:131;-1:-1:-1;;;;;;12207:32:1;;12197:43;;12187:71;;12254:1;12251;12244:12

Swarm Source

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