Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
76 FNKS
Holders
35
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FNKSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CryptoFunks
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-20 */ // SPDX-License-Identifier: MIT // Developer: jawadklair.eth 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 GSN 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 memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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.3._ */ 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.3._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { return _get(map, key, "EnumerableMap: nonexistent key"); } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint160(uint256(value)))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key))))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))); } } /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` 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); uint256 index = digits; temp = value; while (temp != 0) { buffer[--index] = bytes1(uint8(48 + uint256(temp % 10))); temp /= 10; } return string(buffer); } } /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // 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; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; // If there is no base URI, return the token URI. if (bytes(_baseURI).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(_baseURI, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(_baseURI, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (!to.isContract()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } function _approve(address to, uint256 tokenId) private { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } /** * @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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract CryptoFunks is ERC721Burnable, Ownable { string public PUNKS_PROVENANCE = ""; uint256 public constant MAX_PUNKS = 10000; uint256 public constant MINT_PRICE = 0.02 ether; //0.02 ETH uint256 public constant MAX_PER_TRANSACTION = 20; bool public mintIsActive = false; constructor() ERC721("Funks", "FNKS") { } function withdraw() external onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } /** * Set some NFTs aside */ function reservePunks(uint numPunks) public onlyOwner { uint supply = totalSupply(); uint i; for (i = 0; i < numPunks; i++) { _safeMint(msg.sender, supply + i); } } /* * Set provenance once it's calculated */ function setProvenanceHash(string memory provenanceHash) external onlyOwner { PUNKS_PROVENANCE = provenanceHash; } function setBaseURI(string memory baseURI) external onlyOwner { _setBaseURI(baseURI); } /* * Pause sale if active, make active if paused */ function flipMintState() external onlyOwner { mintIsActive = !mintIsActive; } /** * Mints Funks */ function mintFunk(uint256 noOfTokens) external payable { require(mintIsActive, "Funks sale is not active"); require(noOfTokens <= MAX_PER_TRANSACTION, "Cannot buy more then 20 nfts per transaction"); require(msg.value == (noOfTokens * MINT_PRICE)," Wrong eth value sent"); require(totalSupply()+noOfTokens <= MAX_PUNKS, "Purchase would exceed max supply of Funks"); for(uint256 i=0; i<noOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_PUNKS) { _safeMint(msg.sender, mintIndex); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUNKS","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":[],"name":"PUNKS_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"noOfTokens","type":"uint256"}],"name":"mintFunk","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIsActive","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numPunks","type":"uint256"}],"name":"reservePunks","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":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600b91620001af565b50600c805460ff191690553480156200003357600080fd5b50604080518082018252600581526446756e6b7360d81b60208083019190915282518084019093526004835263464e4b5360e01b90830152906200007e6301ffc9a760e01b6200012b565b815162000093906006906020850190620001af565b508051620000a9906007906020840190620001af565b50620000bc6380ac58cd60e01b6200012b565b620000ce635b5e139f60e01b6200012b565b620000e063780e9d6360e01b6200012b565b5050600a80546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000292565b6001600160e01b031980821614156200018a5760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b828054620001bd9062000255565b90600052602060002090601f016020900481019282620001e157600085556200022c565b82601f10620001fc57805160ff19168380011785556200022c565b828001600101855582156200022c579182015b828111156200022c5782518255916020019190600101906200020f565b506200023a9291506200023e565b5090565b5b808211156200023a57600081556001016200023f565b600181811c908216806200026a57607f821691505b602082108114156200028c57634e487b7160e01b600052602260045260246000fd5b50919050565b6126a580620002a26000396000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063b6c20fc611610095578063cb14eb8711610064578063cb14eb871461055a578063deb59b3b1461056f578063e985e9c514610585578063f2fde38b146105ce57600080fd5b8063b6c20fc6146104ea578063b88d4fde146104ff578063c002d23d1461051f578063c87b56dd1461053a57600080fd5b8063715018a6116100d1578063715018a6146104825780638da5cb5b1461049757806395d89b41146104b5578063a22cb465146104ca57600080fd5b80636352211e1461041a5780636559a6c21461043a5780636c0360eb1461044d57806370a082311461046257600080fd5b80632f745c591161017a578063471a429411610149578063471a4294146103ab5780634f6ccce7146103c557806355f804b3146103e557806359c74f291461040557600080fd5b80632f745c59146103365780633ccfd60b1461035657806342842e0e1461036b57806342966c681461038b57600080fd5b806310969523116101b657806310969523146102b357806313476b71146102d357806318160ddd146102f357806323b872dd1461031657600080fd5b806301ffc9a7146101e857806306fdde0314610237578063081812fc14610259578063095ea7b314610291575b600080fd5b3480156101f457600080fd5b506102226102033660046121b2565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561024357600080fd5b5061024c6105ee565b60405161022e9190612396565b34801561026557600080fd5b50610279610274366004612235565b610680565b6040516001600160a01b03909116815260200161022e565b34801561029d57600080fd5b506102b16102ac366004612188565b61070d565b005b3480156102bf57600080fd5b506102b16102ce3660046121ec565b610823565b3480156102df57600080fd5b506102b16102ee366004612235565b610864565b3480156102ff57600080fd5b506103086108ca565b60405190815260200161022e565b34801561032257600080fd5b506102b1610331366004612094565b6108db565b34801561034257600080fd5b50610308610351366004612188565b61090d565b34801561036257600080fd5b506102b1610938565b34801561037757600080fd5b506102b1610386366004612094565b610991565b34801561039757600080fd5b506102b16103a6366004612235565b6109ac565b3480156103b757600080fd5b50600c546102229060ff1681565b3480156103d157600080fd5b506103086103e0366004612235565b610a26565b3480156103f157600080fd5b506102b16104003660046121ec565b610a3c565b34801561041157600080fd5b506102b1610a6f565b34801561042657600080fd5b50610279610435366004612235565b610aad565b6102b1610448366004612235565b610ad5565b34801561045957600080fd5b5061024c610c9f565b34801561046e57600080fd5b5061030861047d366004612046565b610cae565b34801561048e57600080fd5b506102b1610d3a565b3480156104a357600080fd5b50600a546001600160a01b0316610279565b3480156104c157600080fd5b5061024c610dae565b3480156104d657600080fd5b506102b16104e536600461214c565b610dbd565b3480156104f657600080fd5b5061024c610e82565b34801561050b57600080fd5b506102b161051a3660046120d0565b610f10565b34801561052b57600080fd5b5061030866470de4df82000081565b34801561054657600080fd5b5061024c610555366004612235565b610f48565b34801561056657600080fd5b50610308601481565b34801561057b57600080fd5b5061030861271081565b34801561059157600080fd5b506102226105a0366004612061565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105da57600080fd5b506102b16105e9366004612046565b6110b9565b6060600680546105fd90612526565b80601f016020809104026020016040519081016040528092919081815260200182805461062990612526565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b5050505050905090565b600061068b826111a4565b6106f15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071882610aad565b9050806001600160a01b0316836001600160a01b031614156107865760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e8565b336001600160a01b03821614806107a257506107a281336105a0565b6108145760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e8565b61081e83836111b1565b505050565b600a546001600160a01b0316331461084d5760405162461bcd60e51b81526004016106e8906123fb565b805161086090600b906020840190611ee5565b5050565b600a546001600160a01b0316331461088e5760405162461bcd60e51b81526004016106e8906123fb565b60006108986108ca565b905060005b8281101561081e576108b8336108b38385612481565b61121f565b806108c281612561565b91505061089d565b60006108d66002611239565b905090565b6108e6335b82611243565b6109025760405162461bcd60e51b81526004016106e890612430565b61081e83838361132d565b6001600160a01b038216600090815260016020526040812061092f90836114ae565b90505b92915050565b600a546001600160a01b031633146109625760405162461bcd60e51b81526004016106e8906123fb565b6040514790339082156108fc029083906000818181858888f19350505050158015610860573d6000803e3d6000fd5b61081e83838360405180602001604052806000815250610f10565b6109b5336108e0565b610a1a5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016106e8565b610a23816114ba565b50565b600080610a34600284611574565b509392505050565b600a546001600160a01b03163314610a665760405162461bcd60e51b81526004016106e8906123fb565b610a2381611590565b600a546001600160a01b03163314610a995760405162461bcd60e51b81526004016106e8906123fb565b600c805460ff19811660ff90911615179055565b60006109328260405180606001604052806029815260200161264760299139600291906115a3565b600c5460ff16610b275760405162461bcd60e51b815260206004820152601860248201527f46756e6b732073616c65206973206e6f7420616374697665000000000000000060448201526064016106e8565b6014811115610b8d5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420627579206d6f7265207468656e203230206e6674732070657260448201526b103a3930b739b0b1ba34b7b760a11b60648201526084016106e8565b610b9e66470de4df820000826124ad565b3414610be45760405162461bcd60e51b81526020600482015260156024820152740815dc9bdb99c8195d1a081d985b1d59481cd95b9d605a1b60448201526064016106e8565b61271081610bf06108ca565b610bfa9190612481565b1115610c5a5760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015268206f662046756e6b7360b81b60648201526084016106e8565b60005b81811015610860576000610c6f6108ca565b9050612710610c7c6108ca565b1015610c8c57610c8c338261121f565b5080610c9781612561565b915050610c5d565b6060600980546105fd90612526565b60006001600160a01b038216610d195760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e8565b6001600160a01b038216600090815260016020526040902061093290611239565b600a546001600160a01b03163314610d645760405162461bcd60e51b81526004016106e8906123fb565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6060600780546105fd90612526565b6001600160a01b038216331415610e165760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610e8f90612526565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebb90612526565b8015610f085780601f10610edd57610100808354040283529160200191610f08565b820191906000526020600020905b815481529060010190602001808311610eeb57829003601f168201915b505050505081565b610f1a3383611243565b610f365760405162461bcd60e51b81526004016106e890612430565b610f42848484846115ba565b50505050565b6060610f53826111a4565b610fb75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e8565b60008281526008602052604081208054610fd090612526565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffc90612526565b80156110495780601f1061101e57610100808354040283529160200191611049565b820191906000526020600020905b81548152906001019060200180831161102c57829003601f168201915b505050505090506009805461105d90612526565b1515905061106b5792915050565b80511561109d576009816040516020016110869291906122b2565b604051602081830303815290604052915050919050565b60096110a8846115ed565b6040516020016110869291906122b2565b600a546001600160a01b031633146110e35760405162461bcd60e51b81526004016106e8906123fb565b6001600160a01b0381166111485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e8565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006109326002836116f6565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111e682610aad565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61086082826040518060200160405280600081525061170e565b6000610932825490565b600061124e826111a4565b6112af5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e8565b60006112ba83610aad565b9050806001600160a01b0316846001600160a01b031614806112f55750836001600160a01b03166112ea84610680565b6001600160a01b0316145b8061132557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661134082610aad565b6001600160a01b0316146113a85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e8565b6001600160a01b03821661140a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e8565b6114156000826111b1565b6001600160a01b03831660009081526001602052604090206114379082611741565b506001600160a01b038216600090815260016020526040902061145a908261174d565b5061146760028284611759565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061092f838361176f565b60006114c582610aad565b90506114d26000836111b1565b600082815260086020526040902080546114eb90612526565b15905061150957600082815260086020526040812061150991611f69565b6001600160a01b038116600090815260016020526040902061152b9083611741565b506115376002836117f5565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008080806115838686611801565b9097909650945050505050565b8051610860906009906020840190611ee5565b60006115b084848461189e565b90505b9392505050565b6115c584848461132d565b6115d184848484611907565b610f425760405162461bcd60e51b81526004016106e8906123a9565b6060816116115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561163b578061162581612561565b91506116349050600a83612499565b9150611615565b60008167ffffffffffffffff811115611656576116566125e8565b6040519080825280601f01601f191660200182016040528015611680576020820181803683370190505b508593509050815b83156116ed57611699600a8561257c565b6116a4906030612481565b60f81b826116b18361250f565b925082815181106116c4576116c46125d2565b60200101906001600160f81b031916908160001a9053506116e6600a85612499565b9350611688565b50949350505050565b6000818152600183016020526040812054151561092f565b61171883836119d8565b6117256000848484611907565b61081e5760405162461bcd60e51b81526004016106e8906123a9565b600061092f8383611af0565b600061092f8383611be3565b60006115b084846001600160a01b038516611c32565b815460009082106117cd5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106e8565b8260000182815481106117e2576117e26125d2565b9060005260206000200154905092915050565b600061092f8383611cd3565b8154600090819083106118615760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106e8565b6000846000018481548110611878576118786125d2565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816118ce5760405162461bcd60e51b81526004016106e89190612396565b50846118db6001836124cc565b815481106118eb576118eb6125d2565b9060005260206000209060020201600101549150509392505050565b60006001600160a01b0384163b61192057506001611325565b60006119a1630a85bd0160e11b338887876040516024016119449493929190612359565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612615603291396001600160a01b0388169190611dda565b90506000818060200190518101906119b991906121cf565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b038216611a2e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e8565b611a37816111a4565b15611a845760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e8565b6001600160a01b0382166000908152600160205260409020611aa6908261174d565b50611ab360028284611759565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008181526001830160205260408120548015611bd9576000611b146001836124cc565b8554909150600090611b28906001906124cc565b90506000866000018281548110611b4157611b416125d2565b9060005260206000200154905080876000018481548110611b6457611b646125d2565b600091825260209091200155611b7b836001612481565b60008281526001890160205260409020558654879080611b9d57611b9d6125bc565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610932565b6000915050610932565b6000818152600183016020526040812054611c2a57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610932565b506000610932565b600082815260018401602052604081205480611c975750506040805180820182528381526020808201848152865460018181018955600089815284812095516002909302909501918255915190820155865486845281880190925292909120556115b3565b8285611ca46001846124cc565b81548110611cb457611cb46125d2565b90600052602060002090600202016001018190555060009150506115b3565b60008181526001830160205260408120548015611bd9576000611cf76001836124cc565b8554909150600090611d0b906001906124cc565b90506000866000018281548110611d2457611d246125d2565b9060005260206000209060020201905080876000018481548110611d4a57611d4a6125d2565b60009182526020909120825460029092020190815560019182015490820155611d74908490612481565b815460009081526001890160205260409020558654879080611d9857611d986125bc565b60008281526020808220600260001990940193840201828155600190810183905592909355888152898201909252604082209190915594506109329350505050565b60606115b0848460008585843b611e335760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106e8565b600080866001600160a01b03168587604051611e4f9190612296565b60006040518083038185875af1925050503d8060008114611e8c576040519150601f19603f3d011682016040523d82523d6000602084013e611e91565b606091505b5091509150611ea1828286611eac565b979650505050505050565b60608315611ebb5750816115b3565b825115611ecb5782518084602001fd5b8160405162461bcd60e51b81526004016106e89190612396565b828054611ef190612526565b90600052602060002090601f016020900481019282611f135760008555611f59565b82601f10611f2c57805160ff1916838001178555611f59565b82800160010185558215611f59579182015b82811115611f59578251825591602001919060010190611f3e565b50611f65929150611f9f565b5090565b508054611f7590612526565b6000825580601f10611f85575050565b601f016020900490600052602060002090810190610a2391905b5b80821115611f655760008155600101611fa0565b600067ffffffffffffffff80841115611fcf57611fcf6125e8565b604051601f8501601f19908116603f01168101908282118183101715611ff757611ff76125e8565b8160405280935085815286868601111561201057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461204157600080fd5b919050565b60006020828403121561205857600080fd5b61092f8261202a565b6000806040838503121561207457600080fd5b61207d8361202a565b915061208b6020840161202a565b90509250929050565b6000806000606084860312156120a957600080fd5b6120b28461202a565b92506120c06020850161202a565b9150604084013590509250925092565b600080600080608085870312156120e657600080fd5b6120ef8561202a565b93506120fd6020860161202a565b925060408501359150606085013567ffffffffffffffff81111561212057600080fd5b8501601f8101871361213157600080fd5b61214087823560208401611fb4565b91505092959194509250565b6000806040838503121561215f57600080fd5b6121688361202a565b91506020830135801515811461217d57600080fd5b809150509250929050565b6000806040838503121561219b57600080fd5b6121a48361202a565b946020939093013593505050565b6000602082840312156121c457600080fd5b81356115b3816125fe565b6000602082840312156121e157600080fd5b81516115b3816125fe565b6000602082840312156121fe57600080fd5b813567ffffffffffffffff81111561221557600080fd5b8201601f8101841361222657600080fd5b61132584823560208401611fb4565b60006020828403121561224757600080fd5b5035919050565b600081518084526122668160208601602086016124e3565b601f01601f19169290920160200192915050565b6000815161228c8185602086016124e3565b9290920192915050565b600082516122a88184602087016124e3565b9190910192915050565b600080845481600182811c9150808316806122ce57607f831692505b60208084108214156122ee57634e487b7160e01b86526022600452602486fd5b818015612302576001811461231357612340565b60ff19861689528489019650612340565b60008b81526020902060005b868110156123385781548b82015290850190830161231f565b505084890196505b505050505050612350818561227a565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061238c9083018461224e565b9695505050505050565b60208152600061092f602083018461224e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561249457612494612590565b500190565b6000826124a8576124a86125a6565b500490565b60008160001904831182151516156124c7576124c7612590565b500290565b6000828210156124de576124de612590565b500390565b60005b838110156124fe5781810151838201526020016124e6565b83811115610f425750506000910152565b60008161251e5761251e612590565b506000190190565b600181811c9082168061253a57607f821691505b6020821081141561255b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561257557612575612590565b5060010190565b60008261258b5761258b6125a6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a2357600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e19e78eb4833bb18e574b8f224a9a6f1d1a9e357f6f17d4180b76a0e03c0e15564736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80636352211e11610102578063b6c20fc611610095578063cb14eb8711610064578063cb14eb871461055a578063deb59b3b1461056f578063e985e9c514610585578063f2fde38b146105ce57600080fd5b8063b6c20fc6146104ea578063b88d4fde146104ff578063c002d23d1461051f578063c87b56dd1461053a57600080fd5b8063715018a6116100d1578063715018a6146104825780638da5cb5b1461049757806395d89b41146104b5578063a22cb465146104ca57600080fd5b80636352211e1461041a5780636559a6c21461043a5780636c0360eb1461044d57806370a082311461046257600080fd5b80632f745c591161017a578063471a429411610149578063471a4294146103ab5780634f6ccce7146103c557806355f804b3146103e557806359c74f291461040557600080fd5b80632f745c59146103365780633ccfd60b1461035657806342842e0e1461036b57806342966c681461038b57600080fd5b806310969523116101b657806310969523146102b357806313476b71146102d357806318160ddd146102f357806323b872dd1461031657600080fd5b806301ffc9a7146101e857806306fdde0314610237578063081812fc14610259578063095ea7b314610291575b600080fd5b3480156101f457600080fd5b506102226102033660046121b2565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561024357600080fd5b5061024c6105ee565b60405161022e9190612396565b34801561026557600080fd5b50610279610274366004612235565b610680565b6040516001600160a01b03909116815260200161022e565b34801561029d57600080fd5b506102b16102ac366004612188565b61070d565b005b3480156102bf57600080fd5b506102b16102ce3660046121ec565b610823565b3480156102df57600080fd5b506102b16102ee366004612235565b610864565b3480156102ff57600080fd5b506103086108ca565b60405190815260200161022e565b34801561032257600080fd5b506102b1610331366004612094565b6108db565b34801561034257600080fd5b50610308610351366004612188565b61090d565b34801561036257600080fd5b506102b1610938565b34801561037757600080fd5b506102b1610386366004612094565b610991565b34801561039757600080fd5b506102b16103a6366004612235565b6109ac565b3480156103b757600080fd5b50600c546102229060ff1681565b3480156103d157600080fd5b506103086103e0366004612235565b610a26565b3480156103f157600080fd5b506102b16104003660046121ec565b610a3c565b34801561041157600080fd5b506102b1610a6f565b34801561042657600080fd5b50610279610435366004612235565b610aad565b6102b1610448366004612235565b610ad5565b34801561045957600080fd5b5061024c610c9f565b34801561046e57600080fd5b5061030861047d366004612046565b610cae565b34801561048e57600080fd5b506102b1610d3a565b3480156104a357600080fd5b50600a546001600160a01b0316610279565b3480156104c157600080fd5b5061024c610dae565b3480156104d657600080fd5b506102b16104e536600461214c565b610dbd565b3480156104f657600080fd5b5061024c610e82565b34801561050b57600080fd5b506102b161051a3660046120d0565b610f10565b34801561052b57600080fd5b5061030866470de4df82000081565b34801561054657600080fd5b5061024c610555366004612235565b610f48565b34801561056657600080fd5b50610308601481565b34801561057b57600080fd5b5061030861271081565b34801561059157600080fd5b506102226105a0366004612061565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105da57600080fd5b506102b16105e9366004612046565b6110b9565b6060600680546105fd90612526565b80601f016020809104026020016040519081016040528092919081815260200182805461062990612526565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b5050505050905090565b600061068b826111a4565b6106f15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071882610aad565b9050806001600160a01b0316836001600160a01b031614156107865760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e8565b336001600160a01b03821614806107a257506107a281336105a0565b6108145760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e8565b61081e83836111b1565b505050565b600a546001600160a01b0316331461084d5760405162461bcd60e51b81526004016106e8906123fb565b805161086090600b906020840190611ee5565b5050565b600a546001600160a01b0316331461088e5760405162461bcd60e51b81526004016106e8906123fb565b60006108986108ca565b905060005b8281101561081e576108b8336108b38385612481565b61121f565b806108c281612561565b91505061089d565b60006108d66002611239565b905090565b6108e6335b82611243565b6109025760405162461bcd60e51b81526004016106e890612430565b61081e83838361132d565b6001600160a01b038216600090815260016020526040812061092f90836114ae565b90505b92915050565b600a546001600160a01b031633146109625760405162461bcd60e51b81526004016106e8906123fb565b6040514790339082156108fc029083906000818181858888f19350505050158015610860573d6000803e3d6000fd5b61081e83838360405180602001604052806000815250610f10565b6109b5336108e0565b610a1a5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016106e8565b610a23816114ba565b50565b600080610a34600284611574565b509392505050565b600a546001600160a01b03163314610a665760405162461bcd60e51b81526004016106e8906123fb565b610a2381611590565b600a546001600160a01b03163314610a995760405162461bcd60e51b81526004016106e8906123fb565b600c805460ff19811660ff90911615179055565b60006109328260405180606001604052806029815260200161264760299139600291906115a3565b600c5460ff16610b275760405162461bcd60e51b815260206004820152601860248201527f46756e6b732073616c65206973206e6f7420616374697665000000000000000060448201526064016106e8565b6014811115610b8d5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420627579206d6f7265207468656e203230206e6674732070657260448201526b103a3930b739b0b1ba34b7b760a11b60648201526084016106e8565b610b9e66470de4df820000826124ad565b3414610be45760405162461bcd60e51b81526020600482015260156024820152740815dc9bdb99c8195d1a081d985b1d59481cd95b9d605a1b60448201526064016106e8565b61271081610bf06108ca565b610bfa9190612481565b1115610c5a5760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015268206f662046756e6b7360b81b60648201526084016106e8565b60005b81811015610860576000610c6f6108ca565b9050612710610c7c6108ca565b1015610c8c57610c8c338261121f565b5080610c9781612561565b915050610c5d565b6060600980546105fd90612526565b60006001600160a01b038216610d195760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e8565b6001600160a01b038216600090815260016020526040902061093290611239565b600a546001600160a01b03163314610d645760405162461bcd60e51b81526004016106e8906123fb565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6060600780546105fd90612526565b6001600160a01b038216331415610e165760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610e8f90612526565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebb90612526565b8015610f085780601f10610edd57610100808354040283529160200191610f08565b820191906000526020600020905b815481529060010190602001808311610eeb57829003601f168201915b505050505081565b610f1a3383611243565b610f365760405162461bcd60e51b81526004016106e890612430565b610f42848484846115ba565b50505050565b6060610f53826111a4565b610fb75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e8565b60008281526008602052604081208054610fd090612526565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffc90612526565b80156110495780601f1061101e57610100808354040283529160200191611049565b820191906000526020600020905b81548152906001019060200180831161102c57829003601f168201915b505050505090506009805461105d90612526565b1515905061106b5792915050565b80511561109d576009816040516020016110869291906122b2565b604051602081830303815290604052915050919050565b60096110a8846115ed565b6040516020016110869291906122b2565b600a546001600160a01b031633146110e35760405162461bcd60e51b81526004016106e8906123fb565b6001600160a01b0381166111485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e8565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006109326002836116f6565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111e682610aad565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61086082826040518060200160405280600081525061170e565b6000610932825490565b600061124e826111a4565b6112af5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e8565b60006112ba83610aad565b9050806001600160a01b0316846001600160a01b031614806112f55750836001600160a01b03166112ea84610680565b6001600160a01b0316145b8061132557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661134082610aad565b6001600160a01b0316146113a85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e8565b6001600160a01b03821661140a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e8565b6114156000826111b1565b6001600160a01b03831660009081526001602052604090206114379082611741565b506001600160a01b038216600090815260016020526040902061145a908261174d565b5061146760028284611759565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061092f838361176f565b60006114c582610aad565b90506114d26000836111b1565b600082815260086020526040902080546114eb90612526565b15905061150957600082815260086020526040812061150991611f69565b6001600160a01b038116600090815260016020526040902061152b9083611741565b506115376002836117f5565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008080806115838686611801565b9097909650945050505050565b8051610860906009906020840190611ee5565b60006115b084848461189e565b90505b9392505050565b6115c584848461132d565b6115d184848484611907565b610f425760405162461bcd60e51b81526004016106e8906123a9565b6060816116115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561163b578061162581612561565b91506116349050600a83612499565b9150611615565b60008167ffffffffffffffff811115611656576116566125e8565b6040519080825280601f01601f191660200182016040528015611680576020820181803683370190505b508593509050815b83156116ed57611699600a8561257c565b6116a4906030612481565b60f81b826116b18361250f565b925082815181106116c4576116c46125d2565b60200101906001600160f81b031916908160001a9053506116e6600a85612499565b9350611688565b50949350505050565b6000818152600183016020526040812054151561092f565b61171883836119d8565b6117256000848484611907565b61081e5760405162461bcd60e51b81526004016106e8906123a9565b600061092f8383611af0565b600061092f8383611be3565b60006115b084846001600160a01b038516611c32565b815460009082106117cd5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106e8565b8260000182815481106117e2576117e26125d2565b9060005260206000200154905092915050565b600061092f8383611cd3565b8154600090819083106118615760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106e8565b6000846000018481548110611878576118786125d2565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816118ce5760405162461bcd60e51b81526004016106e89190612396565b50846118db6001836124cc565b815481106118eb576118eb6125d2565b9060005260206000209060020201600101549150509392505050565b60006001600160a01b0384163b61192057506001611325565b60006119a1630a85bd0160e11b338887876040516024016119449493929190612359565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612615603291396001600160a01b0388169190611dda565b90506000818060200190518101906119b991906121cf565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b038216611a2e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e8565b611a37816111a4565b15611a845760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e8565b6001600160a01b0382166000908152600160205260409020611aa6908261174d565b50611ab360028284611759565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008181526001830160205260408120548015611bd9576000611b146001836124cc565b8554909150600090611b28906001906124cc565b90506000866000018281548110611b4157611b416125d2565b9060005260206000200154905080876000018481548110611b6457611b646125d2565b600091825260209091200155611b7b836001612481565b60008281526001890160205260409020558654879080611b9d57611b9d6125bc565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610932565b6000915050610932565b6000818152600183016020526040812054611c2a57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610932565b506000610932565b600082815260018401602052604081205480611c975750506040805180820182528381526020808201848152865460018181018955600089815284812095516002909302909501918255915190820155865486845281880190925292909120556115b3565b8285611ca46001846124cc565b81548110611cb457611cb46125d2565b90600052602060002090600202016001018190555060009150506115b3565b60008181526001830160205260408120548015611bd9576000611cf76001836124cc565b8554909150600090611d0b906001906124cc565b90506000866000018281548110611d2457611d246125d2565b9060005260206000209060020201905080876000018481548110611d4a57611d4a6125d2565b60009182526020909120825460029092020190815560019182015490820155611d74908490612481565b815460009081526001890160205260409020558654879080611d9857611d986125bc565b60008281526020808220600260001990940193840201828155600190810183905592909355888152898201909252604082209190915594506109329350505050565b60606115b0848460008585843b611e335760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106e8565b600080866001600160a01b03168587604051611e4f9190612296565b60006040518083038185875af1925050503d8060008114611e8c576040519150601f19603f3d011682016040523d82523d6000602084013e611e91565b606091505b5091509150611ea1828286611eac565b979650505050505050565b60608315611ebb5750816115b3565b825115611ecb5782518084602001fd5b8160405162461bcd60e51b81526004016106e89190612396565b828054611ef190612526565b90600052602060002090601f016020900481019282611f135760008555611f59565b82601f10611f2c57805160ff1916838001178555611f59565b82800160010185558215611f59579182015b82811115611f59578251825591602001919060010190611f3e565b50611f65929150611f9f565b5090565b508054611f7590612526565b6000825580601f10611f85575050565b601f016020900490600052602060002090810190610a2391905b5b80821115611f655760008155600101611fa0565b600067ffffffffffffffff80841115611fcf57611fcf6125e8565b604051601f8501601f19908116603f01168101908282118183101715611ff757611ff76125e8565b8160405280935085815286868601111561201057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461204157600080fd5b919050565b60006020828403121561205857600080fd5b61092f8261202a565b6000806040838503121561207457600080fd5b61207d8361202a565b915061208b6020840161202a565b90509250929050565b6000806000606084860312156120a957600080fd5b6120b28461202a565b92506120c06020850161202a565b9150604084013590509250925092565b600080600080608085870312156120e657600080fd5b6120ef8561202a565b93506120fd6020860161202a565b925060408501359150606085013567ffffffffffffffff81111561212057600080fd5b8501601f8101871361213157600080fd5b61214087823560208401611fb4565b91505092959194509250565b6000806040838503121561215f57600080fd5b6121688361202a565b91506020830135801515811461217d57600080fd5b809150509250929050565b6000806040838503121561219b57600080fd5b6121a48361202a565b946020939093013593505050565b6000602082840312156121c457600080fd5b81356115b3816125fe565b6000602082840312156121e157600080fd5b81516115b3816125fe565b6000602082840312156121fe57600080fd5b813567ffffffffffffffff81111561221557600080fd5b8201601f8101841361222657600080fd5b61132584823560208401611fb4565b60006020828403121561224757600080fd5b5035919050565b600081518084526122668160208601602086016124e3565b601f01601f19169290920160200192915050565b6000815161228c8185602086016124e3565b9290920192915050565b600082516122a88184602087016124e3565b9190910192915050565b600080845481600182811c9150808316806122ce57607f831692505b60208084108214156122ee57634e487b7160e01b86526022600452602486fd5b818015612302576001811461231357612340565b60ff19861689528489019650612340565b60008b81526020902060005b868110156123385781548b82015290850190830161231f565b505084890196505b505050505050612350818561227a565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061238c9083018461224e565b9695505050505050565b60208152600061092f602083018461224e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561249457612494612590565b500190565b6000826124a8576124a86125a6565b500490565b60008160001904831182151516156124c7576124c7612590565b500290565b6000828210156124de576124de612590565b500390565b60005b838110156124fe5781810151838201526020016124e6565b83811115610f425750506000910152565b60008161251e5761251e612590565b506000190190565b600181811c9082168061253a57607f821691505b6020821081141561255b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561257557612575612590565b5060010190565b60008261258b5761258b6125a6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a2357600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e19e78eb4833bb18e574b8f224a9a6f1d1a9e357f6f17d4180b76a0e03c0e15564736f6c63430008070033
Deployed Bytecode Sourcemap
56834:1956:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9549:142;;;;;;;;;;-1:-1:-1;9549:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;;9650:33:0;9626:4;9650:33;;;;;;;;;;;;;;9549:142;;;;6839:14:1;;6832:22;6814:41;;6802:2;6787:18;9549:142:0;;;;;;;;41426:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44113:213::-;;;;;;;;;;-1:-1:-1;44113:213:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6126:32:1;;;6108:51;;6096:2;6081:18;44113:213:0;5962:203:1;43657:390:0;;;;;;;;;;-1:-1:-1;43657:390:0;;;;;:::i;:::-;;:::i;:::-;;57698:128;;;;;;;;;;-1:-1:-1;57698:128:0;;;;;:::i;:::-;;:::i;57400:226::-;;;;;;;;;;-1:-1:-1;57400:226:0;;;;;:::i;:::-;;:::i;43151:203::-;;;;;;;;;;;;;:::i;:::-;;;16733:25:1;;;16721:2;16706:18;43151:203:0;16587:177:1;44987:305:0;;;;;;;;;;-1:-1:-1;44987:305:0;;;;;:::i;:::-;;:::i;42921:154::-;;;;;;;;;;-1:-1:-1;42921:154:0;;;;;:::i;:::-;;:::i;57204:142::-;;;;;;;;;;;;;:::i;45363:151::-;;;;;;;;;;-1:-1:-1;45363:151:0;;;;;:::i;:::-;;:::i;54378:245::-;;;;;;;;;;-1:-1:-1;54378:245:0;;;;;:::i;:::-;;:::i;57109:32::-;;;;;;;;;;-1:-1:-1;57109:32:0;;;;;;;;43431:164;;;;;;;;;;-1:-1:-1;43431:164:0;;;;;:::i;:::-;;:::i;57834:101::-;;;;;;;;;;-1:-1:-1;57834:101:0;;;;;:::i;:::-;;:::i;58010:91::-;;;;;;;;;;;;;:::i;41190:169::-;;;;;;;;;;-1:-1:-1;41190:169:0;;;;;:::i;:::-;;:::i;58145:642::-;;;;;;:::i;:::-;;:::i;42748:89::-;;;;;;;;;;;;;:::i;40913:215::-;;;;;;;;;;-1:-1:-1;40913:215:0;;;;;:::i;:::-;;:::i;56280:148::-;;;;;;;;;;;;;:::i;55638:79::-;;;;;;;;;;-1:-1:-1;55703:6:0;;-1:-1:-1;;;;;55703:6:0;55638:79;;41587:96;;;;;;;;;;;;;:::i;44398:295::-;;;;;;;;;;-1:-1:-1;44398:295:0;;;;;:::i;:::-;;:::i;56891:35::-;;;;;;;;;;;;;:::i;45585:285::-;;;;;;;;;;-1:-1:-1;45585:285:0;;;;;:::i;:::-;;:::i;56985:47::-;;;;;;;;;;;;57022:10;56985:47;;41754:755;;;;;;;;;;-1:-1:-1;41754:755:0;;;;;:::i;:::-;;:::i;57052:48::-;;;;;;;;;;;;57098:2;57052:48;;56935:41;;;;;;;;;;;;56971:5;56935:41;;44764:156;;;;;;;;;;-1:-1:-1;44764:156:0;;;;;:::i;:::-;-1:-1:-1;;;;;44877:25:0;;;44853:4;44877:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44764:156;56583:244;;;;;;;;;;-1:-1:-1;56583:244:0;;;;;:::i;:::-;;:::i;41426:92::-;41472:13;41505:5;41498:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41426:92;:::o;44113:213::-;44181:7;44209:16;44217:7;44209;:16::i;:::-;44201:73;;;;-1:-1:-1;;;44201:73:0;;13184:2:1;44201:73:0;;;13166:21:1;13223:2;13203:18;;;13196:30;13262:34;13242:18;;;13235:62;-1:-1:-1;;;13313:18:1;;;13306:42;13365:19;;44201:73:0;;;;;;;;;-1:-1:-1;44294:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44294:24:0;;44113:213::o;43657:390::-;43738:13;43754:16;43762:7;43754;:16::i;:::-;43738:32;;43795:5;-1:-1:-1;;;;;43789:11:0;:2;-1:-1:-1;;;;;43789:11:0;;;43781:57;;;;-1:-1:-1;;;43781:57:0;;14784:2:1;43781:57:0;;;14766:21:1;14823:2;14803:18;;;14796:30;14862:34;14842:18;;;14835:62;-1:-1:-1;;;14913:18:1;;;14906:31;14954:19;;43781:57:0;14582:397:1;43781:57:0;715:10;-1:-1:-1;;;;;43859:21:0;;;;:62;;-1:-1:-1;43884:37:0;43901:5;715:10;44764:156;:::i;43884:37::-;43851:154;;;;-1:-1:-1;;;43851:154:0;;11234:2:1;43851:154:0;;;11216:21:1;11273:2;11253:18;;;11246:30;11312:34;11292:18;;;11285:62;11383:26;11363:18;;;11356:54;11427:19;;43851:154:0;11032:420:1;43851:154:0;44018:21;44027:2;44031:7;44018:8;:21::i;:::-;43727:320;43657:390;;:::o;57698:128::-;55850:6;;-1:-1:-1;;;;;55850:6:0;715:10;55850:22;55842:67;;;;-1:-1:-1;;;55842:67:0;;;;;;;:::i;:::-;57785:33;;::::1;::::0;:16:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57698:128:::0;:::o;57400:226::-;55850:6;;-1:-1:-1;;;;;55850:6:0;715:10;55850:22;55842:67;;;;-1:-1:-1;;;55842:67:0;;;;;;;:::i;:::-;57473:11:::1;57487:13;:11;:13::i;:::-;57473:27;;57511:6;57528:91;57544:8;57540:1;:12;57528:91;;;57574:33;57584:10;57596;57605:1:::0;57596:6;:10:::1;:::i;:::-;57574:9;:33::i;:::-;57554:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57528:91;;43151:203:::0;43204:7;43325:21;:12;:19;:21::i;:::-;43318:28;;43151:203;:::o;44987:305::-;45148:41;715:10;45167:12;45181:7;45148:18;:41::i;:::-;45140:103;;;;-1:-1:-1;;;45140:103:0;;;;;;;:::i;:::-;45256:28;45266:4;45272:2;45276:7;45256:9;:28::i;42921:154::-;-1:-1:-1;;;;;43037:20:0;;43010:7;43037:20;;;:13;:20;;;;;:30;;43061:5;43037:23;:30::i;:::-;43030:37;;42921:154;;;;;:::o;57204:142::-;55850:6;;-1:-1:-1;;;;;55850:6:0;715:10;55850:22;55842:67;;;;-1:-1:-1;;;55842:67:0;;;;;;;:::i;:::-;57301:37:::1;::::0;57269:21:::1;::::0;57309:10:::1;::::0;57301:37;::::1;;;::::0;57269:21;;57254:12:::1;57301:37:::0;57254:12;57301:37;57269:21;57309:10;57301:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;45363:151:::0;45467:39;45484:4;45490:2;45494:7;45467:39;;;;;;;;;;;;:16;:39::i;54378:245::-;54496:41;715:10;54515:12;635:98;54496:41;54488:102;;;;-1:-1:-1;;;54488:102:0;;16372:2:1;54488:102:0;;;16354:21:1;16411:2;16391:18;;;16384:30;16450:34;16430:18;;;16423:62;-1:-1:-1;;;16501:18:1;;;16494:46;16557:19;;54488:102:0;16170:412:1;54488:102:0;54601:14;54607:7;54601:5;:14::i;:::-;54378:245;:::o;43431:164::-;43498:7;;43540:22;:12;43556:5;43540:15;:22::i;:::-;-1:-1:-1;43518:44:0;43431:164;-1:-1:-1;;;43431:164:0:o;57834:101::-;55850:6;;-1:-1:-1;;;;;55850:6:0;715:10;55850:22;55842:67;;;;-1:-1:-1;;;55842:67:0;;;;;;;:::i;:::-;57907:20:::1;57919:7;57907:11;:20::i;58010:91::-:0;55850:6;;-1:-1:-1;;;;;55850:6:0;715:10;55850:22;55842:67;;;;-1:-1:-1;;;55842:67:0;;;;;;;:::i;:::-;58081:12:::1;::::0;;-1:-1:-1;;58065:28:0;::::1;58081:12;::::0;;::::1;58080:13;58065:28;::::0;;58010:91::o;41190:169::-;41254:7;41281:70;41298:7;41281:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;58145:642::-;58219:12;;;;58211:49;;;;-1:-1:-1;;;58211:49:0;;10061:2:1;58211:49:0;;;10043:21:1;10100:2;10080:18;;;10073:30;10139:26;10119:18;;;10112:54;10183:18;;58211:49:0;9859:348:1;58211:49:0;57098:2;58279:10;:33;;58271:90;;;;-1:-1:-1;;;58271:90:0;;7706:2:1;58271:90:0;;;7688:21:1;7745:2;7725:18;;;7718:30;7784:34;7764:18;;;7757:62;-1:-1:-1;;;7835:18:1;;;7828:42;7887:19;;58271:90:0;7504:408:1;58271:90:0;58394:23;57022:10;58394;:23;:::i;:::-;58380:9;:38;58372:71;;;;-1:-1:-1;;;58372:71:0;;12070:2:1;58372:71:0;;;12052:21:1;12109:2;12089:18;;;12082:30;-1:-1:-1;;;12128:18:1;;;12121:51;12189:18;;58372:71:0;11868:345:1;58372:71:0;56971:5;58476:10;58462:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;58454:91;;;;-1:-1:-1;;;58454:91:0;;15186:2:1;58454:91:0;;;15168:21:1;15225:2;15205:18;;;15198:30;15264:34;15244:18;;;15237:62;-1:-1:-1;;;15315:18:1;;;15308:39;15364:19;;58454:91:0;14984:405:1;58454:91:0;58570:9;58566:214;58585:10;58583:1;:12;58566:214;;;58626:14;58643:13;:11;:13::i;:::-;58626:30;;56971:5;58675:13;:11;:13::i;:::-;:25;58671:98;;;58721:32;58731:10;58743:9;58721;:32::i;:::-;-1:-1:-1;58597:3:0;;;;:::i;:::-;;;;58566:214;;42748:89;42788:13;42821:8;42814:15;;;;;:::i;40913:215::-;40977:7;-1:-1:-1;;;;;41005:19:0;;40997:74;;;;-1:-1:-1;;;40997:74:0;;11659:2:1;40997:74:0;;;11641:21:1;11698:2;11678:18;;;11671:30;11737:34;11717:18;;;11710:62;-1:-1:-1;;;11788:18:1;;;11781:40;11838:19;;40997:74:0;11457:406:1;40997:74:0;-1:-1:-1;;;;;41091:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;56280:148::-;55850:6;;-1:-1:-1;;;;;55850:6:0;715:10;55850:22;55842:67;;;;-1:-1:-1;;;55842:67:0;;;;;;;:::i;:::-;56371:6:::1;::::0;56350:40:::1;::::0;56387:1:::1;::::0;-1:-1:-1;;;;;56371:6:0::1;::::0;56350:40:::1;::::0;56387:1;;56350:40:::1;56401:6;:19:::0;;-1:-1:-1;;;;;;56401:19:0::1;::::0;;56280:148::o;41587:96::-;41635:13;41668:7;41661:14;;;;;:::i;44398:295::-;-1:-1:-1;;;;;44501:24:0;;715:10;44501:24;;44493:62;;;;-1:-1:-1;;;44493:62:0;;9707:2:1;44493:62:0;;;9689:21:1;9746:2;9726:18;;;9719:30;9785:27;9765:18;;;9758:55;9830:18;;44493:62:0;9505:349:1;44493:62:0;715:10;44568:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44568:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44568:53:0;;;;;;;;;;44637:48;;6814:41:1;;;44568:42:0;;715:10;44637:48;;6787:18:1;44637:48:0;;;;;;;44398:295;;:::o;56891:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45585:285::-;45717:41;715:10;45750:7;45717:18;:41::i;:::-;45709:103;;;;-1:-1:-1;;;45709:103:0;;;;;;;:::i;:::-;45823:39;45837:4;45843:2;45847:7;45856:5;45823:13;:39::i;:::-;45585:285;;;;:::o;41754:755::-;41819:13;41853:16;41861:7;41853;:16::i;:::-;41845:76;;;;-1:-1:-1;;;41845:76:0;;14368:2:1;41845:76:0;;;14350:21:1;14407:2;14387:18;;;14380:30;14446:34;14426:18;;;14419:62;-1:-1:-1;;;14497:18:1;;;14490:45;14552:19;;41845:76:0;14166:411:1;41845:76:0;41934:23;41960:19;;;:10;:19;;;;;41934:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42061:8;42055:22;;;;;:::i;:::-;:27;42051:76;;-1:-1:-1;42051:76:0;;42106:9;41754:755;-1:-1:-1;;41754:755:0:o;42051:76::-;42231:23;;:27;42227:112;;42306:8;42316:9;42289:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42275:52;;;41754:755;;;:::o;42227:112::-;42471:8;42481:18;:7;:16;:18::i;:::-;42454:46;;;;;;;;;:::i;56583:244::-;55850:6;;-1:-1:-1;;;;;55850:6:0;715:10;55850:22;55842:67;;;;-1:-1:-1;;;55842:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56672:22:0;::::1;56664:73;;;::::0;-1:-1:-1;;;56664:73:0;;8538:2:1;56664:73:0::1;::::0;::::1;8520:21:1::0;8577:2;8557:18;;;8550:30;8616:34;8596:18;;;8589:62;-1:-1:-1;;;8667:18:1;;;8660:36;8713:19;;56664:73:0::1;8336:402:1::0;56664:73:0::1;56774:6;::::0;56753:38:::1;::::0;-1:-1:-1;;;;;56753:38:0;;::::1;::::0;56774:6:::1;::::0;56753:38:::1;::::0;56774:6:::1;::::0;56753:38:::1;56802:6;:17:::0;;-1:-1:-1;;;;;;56802:17:0::1;-1:-1:-1::0;;;;;56802:17:0;;;::::1;::::0;;;::::1;::::0;;56583:244::o;47337:119::-;47394:4;47418:30;:12;47440:7;47418:21;:30::i;53164:158::-;53230:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;53230:29:0;-1:-1:-1;;;;;53230:29:0;;;;;;;;:24;;53284:16;53230:24;53284:7;:16::i;:::-;-1:-1:-1;;;;;53275:39:0;;;;;;;;;;;53164:158;;:::o;48299:110::-;48375:26;48385:2;48389:7;48375:26;;;;;;;;;;;;:9;:26::i;35034:123::-;35103:7;35130:19;35138:3;32491:19;;32408:110;47623:333;47708:4;47733:16;47741:7;47733;:16::i;:::-;47725:73;;;;-1:-1:-1;;;47725:73:0;;10821:2:1;47725:73:0;;;10803:21:1;10860:2;10840:18;;;10833:30;10899:34;10879:18;;;10872:62;-1:-1:-1;;;10950:18:1;;;10943:42;11002:19;;47725:73:0;10619:408:1;47725:73:0;47809:13;47825:16;47833:7;47825;:16::i;:::-;47809:32;;47871:5;-1:-1:-1;;;;;47860:16:0;:7;-1:-1:-1;;;;;47860:16:0;;:51;;;;47904:7;-1:-1:-1;;;;;47880:31:0;:20;47892:7;47880:11;:20::i;:::-;-1:-1:-1;;;;;47880:31:0;;47860:51;:87;;;-1:-1:-1;;;;;;44877:25:0;;;44853:4;44877:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47915:32;47852:96;47623:333;-1:-1:-1;;;;47623:333:0:o;50712:574::-;50830:4;-1:-1:-1;;;;;50810:24:0;:16;50818:7;50810;:16::i;:::-;-1:-1:-1;;;;;50810:24:0;;50802:78;;;;-1:-1:-1;;;50802:78:0;;13958:2:1;50802:78:0;;;13940:21:1;13997:2;13977:18;;;13970:30;14036:34;14016:18;;;14009:62;-1:-1:-1;;;14087:18:1;;;14080:39;14136:19;;50802:78:0;13756:405:1;50802:78:0;-1:-1:-1;;;;;50899:16:0;;50891:65;;;;-1:-1:-1;;;50891:65:0;;9302:2:1;50891:65:0;;;9284:21:1;9341:2;9321:18;;;9314:30;9380:34;9360:18;;;9353:62;-1:-1:-1;;;9431:18:1;;;9424:34;9475:19;;50891:65:0;9100:400:1;50891:65:0;51073:29;51090:1;51094:7;51073:8;:29::i;:::-;-1:-1:-1;;;;;51115:19:0;;;;;;:13;:19;;;;;:35;;51142:7;51115:26;:35::i;:::-;-1:-1:-1;;;;;;51161:17:0;;;;;;:13;:17;;;;;:30;;51183:7;51161:21;:30::i;:::-;-1:-1:-1;51204:29:0;:12;51221:7;51230:2;51204:16;:29::i;:::-;;51270:7;51266:2;-1:-1:-1;;;;;51251:27:0;51260:4;-1:-1:-1;;;;;51251:27:0;;;;;;;;;;;50712:574;;;:::o;27719:137::-;27790:7;27825:22;27829:3;27841:5;27825:3;:22::i;49855:520::-;49915:13;49931:16;49939:7;49931;:16::i;:::-;49915:32;;50049:29;50066:1;50070:7;50049:8;:29::i;:::-;50137:19;;;;:10;:19;;;;;50131:33;;;;;:::i;:::-;:38;;-1:-1:-1;50127:97:0;;50193:19;;;;:10;:19;;;;;50186:26;;;:::i;:::-;-1:-1:-1;;;;;50236:20:0;;;;;;:13;:20;;;;;:36;;50264:7;50236:27;:36::i;:::-;-1:-1:-1;50285:28:0;:12;50305:7;50285:19;:28::i;:::-;-1:-1:-1;50331:36:0;;50359:7;;50355:1;;-1:-1:-1;;;;;50331:36:0;;;;;50355:1;;50331:36;49904:471;49855:520;:::o;35496:236::-;35576:7;;;;35636:22;35640:3;35652:5;35636:3;:22::i;:::-;35605:53;;;;-1:-1:-1;35496:236:0;-1:-1:-1;;;;;35496:236:0:o;51887:100::-;51960:19;;;;:8;;:19;;;;;:::i;36176:213::-;36283:7;36334:44;36339:3;36359;36365:12;36334:4;:44::i;:::-;36326:53;-1:-1:-1;36176:213:0;;;;;;:::o;46752:272::-;46866:28;46876:4;46882:2;46886:7;46866:9;:28::i;:::-;46913:48;46936:4;46942:2;46946:7;46955:5;46913:22;:48::i;:::-;46905:111;;;;-1:-1:-1;;;46905:111:0;;;;;;;:::i;36547:751::-;36603:13;36824:10;36820:53;;-1:-1:-1;;36851:10:0;;;;;;;;;;;;-1:-1:-1;;;36851:10:0;;;;;36547:751::o;36820:53::-;36898:5;36883:12;36939:78;36946:9;;36939:78;;36972:8;;;;:::i;:::-;;-1:-1:-1;36995:10:0;;-1:-1:-1;37003:2:0;36995:10;;:::i;:::-;;;36939:78;;;37027:19;37059:6;37049:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37049:17:0;-1:-1:-1;37117:5:0;;-1:-1:-1;37027:39:0;-1:-1:-1;37093:6:0;37133:126;37140:9;;37133:126;;37210:9;37217:2;37210:4;:9;:::i;:::-;37197:23;;:2;:23;:::i;:::-;37184:38;;37166:6;37173:7;;;:::i;:::-;;;;37166:15;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;37166:56:0;;;;;;;;-1:-1:-1;37237:10:0;37245:2;37237:10;;:::i;:::-;;;37133:126;;;-1:-1:-1;37283:6:0;36547:751;-1:-1:-1;;;;36547:751:0:o;34795:151::-;34879:4;32283:17;;;:12;;;:17;;;;;;:22;;34903:35;32188:125;48636:250;48732:18;48738:2;48742:7;48732:5;:18::i;:::-;48769:54;48800:1;48804:2;48808:7;48817:5;48769:22;:54::i;:::-;48761:117;;;;-1:-1:-1;;;48761:117:0;;;;;;;:::i;26806:137::-;26876:4;26900:35;26908:3;26928:5;26900:7;:35::i;26499:131::-;26566:4;26590:32;26595:3;26615:5;26590:4;:32::i;34218:185::-;34307:4;34331:64;34336:3;34356;-1:-1:-1;;;;;34370:23:0;;34331:4;:64::i;22757:204::-;22852:18;;22824:7;;22852:26;-1:-1:-1;22844:73:0;;;;-1:-1:-1;;;22844:73:0;;7303:2:1;22844:73:0;;;7285:21:1;7342:2;7322:18;;;7315:30;7381:34;7361:18;;;7354:62;-1:-1:-1;;;7432:18:1;;;7425:32;7474:19;;22844:73:0;7101:398:1;22844:73:0;22935:3;:11;;22947:5;22935:18;;;;;;;;:::i;:::-;;;;;;;;;22928:25;;22757:204;;;;:::o;34569:142::-;34646:4;34670:33;34678:3;34698;34670:7;:33::i;32873:279::-;32977:19;;32940:7;;;;32977:27;-1:-1:-1;32969:74:0;;;;-1:-1:-1;;;32969:74:0;;12420:2:1;32969:74:0;;;12402:21:1;12459:2;12439:18;;;12432:30;12498:34;12478:18;;;12471:62;-1:-1:-1;;;12549:18:1;;;12542:32;12591:19;;32969:74:0;12218:398:1;32969:74:0;33056:22;33081:3;:12;;33094:5;33081:19;;;;;;;;:::i;:::-;;;;;;;;;;;33056:44;;33119:5;:10;;;33131:5;:12;;;33111:33;;;;;32873:279;;;;;:::o;33575:319::-;33669:7;33708:17;;;:12;;;:17;;;;;;33759:12;33744:13;33736:36;;;;-1:-1:-1;;;33736:36:0;;;;;;;;:::i;:::-;-1:-1:-1;33826:3:0;33839:12;33850:1;33839:8;:12;:::i;:::-;33826:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;33819:40;;;33575:319;;;;;:::o;52552:604::-;52673:4;-1:-1:-1;;;;;52700:13:0;;11354:20;52695:60;;-1:-1:-1;52739:4:0;52732:11;;52695:60;52765:23;52791:252;-1:-1:-1;;;715:10:0;52931:4;52950:7;52972:5;52807:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;52807:181:0;;;;;;;-1:-1:-1;;;;;52807:181:0;;;;;;;;;;;52791:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52791:15:0;;;:252;:15;:252::i;:::-;52765:278;;53054:13;53081:10;53070:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;53121:26:0;-1:-1:-1;;;53121:26:0;;-1:-1:-1;;;52552:604:0;;;;;;:::o;49222:404::-;-1:-1:-1;;;;;49302:16:0;;49294:61;;;;-1:-1:-1;;;49294:61:0;;12823:2:1;49294:61:0;;;12805:21:1;;;12842:18;;;12835:30;12901:34;12881:18;;;12874:62;12953:18;;49294:61:0;12621:356:1;49294:61:0;49375:16;49383:7;49375;:16::i;:::-;49374:17;49366:58;;;;-1:-1:-1;;;49366:58:0;;8945:2:1;49366:58:0;;;8927:21:1;8984:2;8964:18;;;8957:30;9023;9003:18;;;8996:58;9071:18;;49366:58:0;8743:352:1;49366:58:0;-1:-1:-1;;;;;49495:17:0;;;;;;:13;:17;;;;;:30;;49517:7;49495:21;:30::i;:::-;-1:-1:-1;49538:29:0;:12;49555:7;49564:2;49538:16;:29::i;:::-;-1:-1:-1;49585:33:0;;49610:7;;-1:-1:-1;;;;;49585:33:0;;;49602:1;;49585:33;;49602:1;;49585:33;49222:404;;:::o;20459:1544::-;20525:4;20664:19;;;:12;;;:19;;;;;;20700:15;;20696:1300;;21062:21;21086:14;21099:1;21086:10;:14;:::i;:::-;21135:18;;21062:38;;-1:-1:-1;21115:17:0;;21135:22;;21156:1;;21135:22;:::i;:::-;21115:42;;21402:17;21422:3;:11;;21434:9;21422:22;;;;;;;;:::i;:::-;;;;;;;;;21402:42;;21568:9;21539:3;:11;;21551:13;21539:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;21671:17;:13;21687:1;21671:17;:::i;:::-;21645:23;;;;:12;;;:23;;;;;:43;21797:17;;21645:3;;21797:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21892:3;:12;;:19;21905:5;21892:19;;;;;;;;;;;21885:26;;;21935:4;21928:11;;;;;;;;20696:1300;21979:5;21972:12;;;;;19869:414;19932:4;32283:17;;;:12;;;:17;;;;;;19949:327;;-1:-1:-1;19992:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;20175:18;;20153:19;;;:12;;;:19;;;;;;:40;;;;20208:11;;19949:327;-1:-1:-1;20259:5:0;20252:12;;29688:692;29764:4;29899:17;;;:12;;;:17;;;;;;29933:13;29929:444;;-1:-1:-1;;30018:38:0;;;;;;;;;;;;;;;;;;30000:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;30215:19;;30195:17;;;:12;;;:17;;;;;;;:39;30249:11;;29929:444;30329:5;30293:3;30306:12;30317:1;30306:8;:12;:::i;:::-;30293:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;:41;;;;30356:5;30349:12;;;;;30555:1549;30619:4;30754:17;;;:12;;;:17;;;;;;30788:13;;30784:1313;;31149:21;31173:12;31184:1;31173:8;:12;:::i;:::-;31220:19;;31149:36;;-1:-1:-1;31200:17:0;;31220:23;;31242:1;;31220:23;:::i;:::-;31200:43;;31488:26;31517:3;:12;;31530:9;31517:23;;;;;;;;:::i;:::-;;;;;;;;;;;31488:52;;31665:9;31635:3;:12;;31648:13;31635:27;;;;;;;;:::i;:::-;;;;;;;;;:39;;:27;;;;;:39;;;;;;;;;;;;31773:17;;:13;;:17;:::i;:::-;31755:14;;31742:28;;;;:12;;;:28;;;;;:48;31899:18;;31742:3;;31899:18;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;31899:18:0;;;;;;;;;;;;;;;;;;;;;31995:17;;;:12;;;:17;;;;;;31988:24;;;;31899:18;-1:-1:-1;32029:11:0;;-1:-1:-1;;;;32029:11:0;13905:195;14008:12;14040:52;14062:6;14070:4;14076:1;14079:12;14008;11354:20;;15201:60;;;;-1:-1:-1;;;15201:60:0;;16014:2:1;15201:60:0;;;15996:21:1;16053:2;16033:18;;;16026:30;16092:31;16072:18;;;16065:59;16141:18;;15201:60:0;15812:353:1;15201:60:0;15335:12;15349:23;15376:6;-1:-1:-1;;;;;15376:11:0;15396:5;15404:4;15376:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15334:75;;;;15427:52;15445:7;15454:10;15466:12;15427:17;:52::i;:::-;15420:59;14957:530;-1:-1:-1;;;;;;;14957:530:0:o;17497:742::-;17612:12;17641:7;17637:595;;;-1:-1:-1;17672:10:0;17665:17;;17637:595;17786:17;;:21;17782:439;;18049:10;18043:17;18110:15;18097:10;18093:2;18089:19;18082:44;17782:439;18192:12;18185:20;;-1:-1:-1;;;18185:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::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;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:268::-;4095:3;4133:5;4127:12;4160:6;4155:3;4148:19;4176:63;4232:6;4225:4;4220:3;4216:14;4209:4;4202:5;4198:16;4176:63;:::i;:::-;4293:2;4272:15;-1:-1:-1;;4268:29:1;4259:39;;;;4300:4;4255:50;;4043:268;-1:-1:-1;;4043:268:1:o;4316:184::-;4357:3;4395:5;4389:12;4410:52;4455:6;4450:3;4443:4;4436:5;4432:16;4410:52;:::i;:::-;4478:16;;;;;4316:184;-1:-1:-1;;4316:184:1:o;4505:274::-;4634:3;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4757:16;;;;;4505:274;-1:-1:-1;;4505:274:1:o;4784:1173::-;4960:3;4989:1;5022:6;5016:13;5052:3;5074:1;5102:9;5098:2;5094:18;5084:28;;5162:2;5151:9;5147:18;5184;5174:61;;5228:4;5220:6;5216:17;5206:27;;5174:61;5254:2;5302;5294:6;5291:14;5271:18;5268:38;5265:165;;;-1:-1:-1;;;5329:33:1;;5385:4;5382:1;5375:15;5415:4;5336:3;5403:17;5265:165;5446:18;5473:104;;;;5591:1;5586:320;;;;5439:467;;5473:104;-1:-1:-1;;5506:24:1;;5494:37;;5551:16;;;;-1:-1:-1;5473:104:1;;5586:320;16842:1;16835:14;;;16879:4;16866:18;;5681:1;5695:165;5709:6;5706:1;5703:13;5695:165;;;5787:14;;5774:11;;;5767:35;5830:16;;;;5724:10;;5695:165;;;5699:3;;5889:6;5884:3;5880:16;5873:23;;5439:467;;;;;;;5922:29;5947:3;5939:6;5922:29;:::i;:::-;5915:36;4784:1173;-1:-1:-1;;;;;4784:1173:1:o;6170:499::-;-1:-1:-1;;;;;6439:15:1;;;6421:34;;6491:15;;6486:2;6471:18;;6464:43;6538:2;6523:18;;6516:34;;;6586:3;6581:2;6566:18;;6559:31;;;6364:4;;6607:56;;6643:19;;6635:6;6607:56;:::i;:::-;6599:64;6170:499;-1:-1:-1;;;;;;6170:499:1:o;6866:230::-;7015:2;7004:9;6997:21;6978:4;7035:55;7086:2;7075:9;7071:18;7063:6;7035:55;:::i;7917:414::-;8119:2;8101:21;;;8158:2;8138:18;;;8131:30;8197:34;8192:2;8177:18;;8170:62;-1:-1:-1;;;8263:2:1;8248:18;;8241:48;8321:3;8306:19;;7917:414::o;13395:356::-;13597:2;13579:21;;;13616:18;;;13609:30;13675:34;13670:2;13655:18;;13648:62;13742:2;13727:18;;13395:356::o;15394:413::-;15596:2;15578:21;;;15635:2;15615:18;;;15608:30;15674:34;15669:2;15654:18;;15647:62;-1:-1:-1;;;15740:2:1;15725:18;;15718:47;15797:3;15782:19;;15394:413::o;16895:128::-;16935:3;16966:1;16962:6;16959:1;16956:13;16953:39;;;16972:18;;:::i;:::-;-1:-1:-1;17008:9:1;;16895:128::o;17028:120::-;17068:1;17094;17084:35;;17099:18;;:::i;:::-;-1:-1:-1;17133:9:1;;17028:120::o;17153:168::-;17193:7;17259:1;17255;17251:6;17247:14;17244:1;17241:21;17236:1;17229:9;17222:17;17218:45;17215:71;;;17266:18;;:::i;:::-;-1:-1:-1;17306:9:1;;17153:168::o;17326:125::-;17366:4;17394:1;17391;17388:8;17385:34;;;17399:18;;:::i;:::-;-1:-1:-1;17436:9:1;;17326:125::o;17456:258::-;17528:1;17538:113;17552:6;17549:1;17546:13;17538:113;;;17628:11;;;17622:18;17609:11;;;17602:39;17574:2;17567:10;17538:113;;;17669:6;17666:1;17663:13;17660:48;;;-1:-1:-1;;17704:1:1;17686:16;;17679:27;17456:258::o;17719:136::-;17758:3;17786:5;17776:39;;17795:18;;:::i;:::-;-1:-1:-1;;;17831:18:1;;17719:136::o;17860:380::-;17939:1;17935:12;;;;17982;;;18003:61;;18057:4;18049:6;18045:17;18035:27;;18003:61;18110:2;18102:6;18099:14;18079:18;18076:38;18073:161;;;18156:10;18151:3;18147:20;18144:1;18137:31;18191:4;18188:1;18181:15;18219:4;18216:1;18209:15;18073:161;;17860:380;;;:::o;18245:135::-;18284:3;-1:-1:-1;;18305:17:1;;18302:43;;;18325:18;;:::i;:::-;-1:-1:-1;18372:1:1;18361:13;;18245:135::o;18385:112::-;18417:1;18443;18433:35;;18448:18;;:::i;:::-;-1:-1:-1;18482:9:1;;18385:112::o;18502:127::-;18563:10;18558:3;18554:20;18551:1;18544:31;18594:4;18591:1;18584:15;18618:4;18615:1;18608:15;18634:127;18695:10;18690:3;18686:20;18683:1;18676:31;18726:4;18723:1;18716:15;18750:4;18747:1;18740:15;18766:127;18827:10;18822:3;18818:20;18815:1;18808:31;18858:4;18855:1;18848:15;18882:4;18879:1;18872:15;18898:127;18959:10;18954:3;18950:20;18947:1;18940:31;18990:4;18987:1;18980:15;19014:4;19011:1;19004:15;19030:127;19091:10;19086:3;19082:20;19079:1;19072:31;19122:4;19119:1;19112:15;19146:4;19143:1;19136:15;19162:131;-1:-1:-1;;;;;;19236:32:1;;19226:43;;19216:71;;19283:1;19280;19273:12
Swarm Source
ipfs://e19e78eb4833bb18e574b8f224a9a6f1d1a9e357f6f17d4180b76a0e03c0e155
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.