Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x9aa80c0a8c4a7022553881771db5b1f0bc2af5093c4afcd5703716f0dd2092c7 | 40603991 | 10 days 1 hr ago | 0x4e06fcdc5cce657c472932b019314910312f5a7f | 0xea67ac211725943eb169b18b6bba18c88042feba | 42.069 MATIC |
[ Download CSV Export ]
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xb8612767E0D8ec70dfC4A2e7E93a1676ba2e28bB
Contract Name:
ChinkiesPolygon
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require( leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof" ); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require( leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof" ); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: address zero is not a valid owner" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token owner nor approved" ); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/tokenomemenft_eth.sol pragma solidity ^0.8.9; /** * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/ContextMixin.sol */ abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = payable(msg.sender); } return sender; } } contract ChinkiesPolygon is ERC721, Ownable, ReentrancyGuard, ContextMixin { using Strings for uint256; using Counters for Counters.Counter; address proxyRegistryAddress; Counters.Counter private _tokenIds; string public baseURI; string public baseExtension = ".json"; //Merkle root of freemint list and presale whitelist bytes32 public rootFM; bytes32 public rootWL; uint256 public maxSupply = 6969; //Limit of a minting round uint256 public endOfMintRound = 6969; uint256 public _price = 126500000000000000000; //Link/description of the licence used for the nft collection string public licenceURI; //Flag modes bool public autoEndMode = true; bool public paused = false; bool public freemintMode = false; bool public whitelistMode = false; bool public publicMode = false; //Records of mintings claimed for FM and WL mapping(address => uint256) public _freemintClaimed; mapping(address => uint256) public _whitelistClaimed; constructor(string memory uri, address _proxyRegistryAddress) ERC721("Chinkies DeGenesis - Polygon", "Chinkies") ReentrancyGuard() // A modifier that can prevent reentrancy during certain functions { setBaseURI(uri); proxyRegistryAddress = _proxyRegistryAddress; rootFM = 0x0000000000000000000000000000000000000000000000000000000000000000; rootWL = 0x0000000000000000000000000000000000000000000000000000000000000000; } function setLicenceURI(string memory _newLicenceURI) public onlyOwner { licenceURI = _newLicenceURI; } function _licenceURI() internal view returns (string memory) { return licenceURI; } modifier onlyAccounts() { require(msg.sender == tx.origin, "onlyAccounts(): Not allowed origin"); _; } function setBaseURI(string memory _tokenBaseURI) public onlyOwner { baseURI = _tokenBaseURI; } function _baseURI() internal view override returns (string memory) { return baseURI; } function setMerkleRoot(string memory rootType, bytes32 merkleroot) public onlyOwner { require( keccak256(abi.encodePacked(rootType)) == keccak256(abi.encodePacked("FM")) || keccak256(abi.encodePacked(rootType)) == keccak256(abi.encodePacked("WL")), "Wrong root type: must be FM or WL" ); if ( keccak256(abi.encodePacked(rootType)) == keccak256(abi.encodePacked("FM")) ) { rootFM = merkleroot; } if ( keccak256(abi.encodePacked(rootType)) == keccak256(abi.encodePacked("WL")) ) { rootWL = merkleroot; } } function setMintRound(uint256 mintRoundAmount) public onlyOwner { endOfMintRound = _tokenIds.current() + mintRoundAmount; } modifier isValidMerkleProof(bytes32[] calldata _proof, bytes32 merkleroot) { require( MerkleProof.verify( _proof, merkleroot, keccak256(abi.encodePacked(msg.sender)) ) == true, "isValidMerkleProof(): Not allowed origin" ); _; } function freeMint( address account, uint256 _amount, uint256 _maxAuthorizedAmount, bytes32[] calldata _proof ) external payable isValidMerkleProof(_proof, rootFM) onlyAccounts { require(msg.sender == account, "Account not allowed"); require(freemintMode, "Freemint is OFF"); require(!paused, "Contract is paused"); require( _freemintClaimed[msg.sender] + _amount <= _maxAuthorizedAmount, "You can't mint so much tokens" ); uint256 current = _tokenIds.current(); require(current + _amount <= maxSupply, "Max supply exceeded"); require(_price * _amount <= msg.value, "Not enough ethers sent"); _freemintClaimed[msg.sender] += _amount; for (uint256 i = 0; i < _amount; i++) { mintInternal(); } } function whitelistMint( address account, uint256 _amount, uint256 _maxAuthorizedAmount, bytes32[] calldata _proof ) external payable isValidMerkleProof(_proof, rootWL) onlyAccounts { require(msg.sender == account, "Account not allowed"); require(whitelistMode, "Whitelist mode is OFF"); require(!paused, "Contract is paused"); require( _whitelistClaimed[msg.sender] + _amount <= _maxAuthorizedAmount, "You can't mint so much tokens" ); uint256 current = _tokenIds.current(); require(current + _amount <= maxSupply, "Max supply exceeded"); require(_price * _amount <= msg.value, "Not enough ethers sent"); _whitelistClaimed[msg.sender] += _amount; for (uint256 i = 0; i < _amount; i++) { mintInternal(); } } function publicSaleMint(uint256 _amount) external payable onlyAccounts { require(publicMode, "PublicSale is OFF"); require(!paused, "Contract is paused"); require(_amount > 0, "Zero amount of mint"); uint256 current = _tokenIds.current(); require( current + _amount <= endOfMintRound, "Max supply for this minting round exceeded" ); require(current + _amount <= maxSupply, "Max supply exceeded"); require(_price * _amount <= msg.value, "Not enough ethers sent"); for (uint256 i = 0; i < _amount; i++) { mintInternal(); } } function mintInternal() internal nonReentrant { _tokenIds.increment(); uint256 tokenId = _tokenIds.current(); _safeMint(msg.sender, tokenId); //sold out! if (autoEndMode) { if (tokenId == maxSupply || tokenId == endOfMintRound) { publicMode = false; } } } function togglePause() public onlyOwner { paused = !paused; } function togglePublicSale() public onlyOwner { publicMode = !publicMode; if (publicMode) { adjustMintPriceInWei(126500000000000000000); whitelistMode = false; freemintMode = false; } } function toggleWhitelist() public onlyOwner { whitelistMode = !whitelistMode; if (freemintMode) { adjustMintPriceInWei(76820000000000000000); publicMode = false; freemintMode = false; } } function toggleFreemint() public onlyOwner { freemintMode = !freemintMode; if (freemintMode) { adjustMintPriceInWei(0); whitelistMode = false; publicMode = false; } } function toggleAutoEndMode() public onlyOwner { autoEndMode = !autoEndMode; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function totalSupply() public view returns (uint256) { return _tokenIds.current(); } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function withdraw() public payable onlyOwner { payable(msg.sender).transfer(address(this).balance); } /// Adjust the mint price /// @dev modifies the state of the `mintPrice` variable /// @notice sets the price for minting a token /// @param newPrice_ The new price for minting function adjustMintPriceInWei(uint256 newPrice_) public onlyOwner { _price = newPrice_; } } /** @title An OpenSea delegate proxy contract which we include for whitelisting. @author OpenSea */ contract OwnableDelegateProxy { } /** @title An OpenSea proxy registry contract which we include for whitelisting. @author OpenSea */ contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_freemintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice_","type":"uint256"}],"name":"adjustMintPriceInWei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoEndMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endOfMintRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_maxAuthorizedAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freemintMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"licenceURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rootFM","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rootWL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newLicenceURI","type":"string"}],"name":"setLicenceURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"rootType","type":"string"},{"internalType":"bytes32","name":"merkleroot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintRoundAmount","type":"uint256"}],"name":"setMintRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAutoEndMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleFreemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_maxAuthorizedAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200005192919062000410565b50611b39600e55611b39600f556806db8a47c636ea00006010556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff0219169083151502179055506000601260036101000a81548160ff0219169083151502179055506000601260046101000a81548160ff021916908315150217905550348015620000ff57600080fd5b5060405162005903380380620059038339818101604052810190620001259190620006c2565b6040518060400160405280601c81526020017f4368696e6b69657320446547656e65736973202d20506f6c79676f6e000000008152506040518060400160405280600881526020017f4368696e6b6965730000000000000000000000000000000000000000000000008152508160009080519060200190620001a992919062000410565b508060019080519060200190620001c292919062000410565b505050620001e5620001d96200025b60201b60201c565b6200026360201b60201c565b6001600781905550620001fe826200032960201b60201c565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000801b600c819055506000801b600d81905550505062000810565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003396200035560201b60201c565b80600a90805190602001906200035192919062000410565b5050565b620003656200025b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200038b620003e660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003db9062000789565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200041e90620007da565b90600052602060002090601f0160209004810192826200044257600085556200048e565b82601f106200045d57805160ff19168380011785556200048e565b828001600101855582156200048e579182015b828111156200048d57825182559160200191906001019062000470565b5b5090506200049d9190620004a1565b5090565b5b80821115620004bc576000816000905550600101620004a2565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200052982620004de565b810181811067ffffffffffffffff821117156200054b576200054a620004ef565b5b80604052505050565b600062000560620004c0565b90506200056e82826200051e565b919050565b600067ffffffffffffffff821115620005915762000590620004ef565b5b6200059c82620004de565b9050602081019050919050565b60005b83811015620005c9578082015181840152602081019050620005ac565b83811115620005d9576000848401525b50505050565b6000620005f6620005f08462000573565b62000554565b905082815260208101848484011115620006155762000614620004d9565b5b62000622848285620005a9565b509392505050565b600082601f830112620006425762000641620004d4565b5b815162000654848260208601620005df565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200068a826200065d565b9050919050565b6200069c816200067d565b8114620006a857600080fd5b50565b600081519050620006bc8162000691565b92915050565b60008060408385031215620006dc57620006db620004ca565b5b600083015167ffffffffffffffff811115620006fd57620006fc620004cf565b5b6200070b858286016200062a565b92505060206200071e85828601620006ab565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200077160208362000728565b91506200077e8262000739565b602082019050919050565b60006020820190508181036000830152620007a48162000762565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007f357607f821691505b602082108114156200080a5762000809620007ab565b5b50919050565b6150e380620008206000396000f3fe6080604052600436106102885760003560e01c80637e15144b1161015a578063c6682862116100c1578063e222c7f91161007a578063e222c7f914610926578063e6d7329d1461093d578063e8fe3bf014610968578063e985e9c514610993578063ec6654b4146109d0578063f2fde38b146109fb57610288565b8063c66828621461082a578063c87b56dd14610855578063d1c6ca0114610892578063d5abeb01146108a9578063d929cfe0146108d4578063da3ef23f146108fd57610288565b8063b3ab66b011610113578063b3ab66b014610763578063b7aafa871461077f578063b88d4fde146107a8578063ba46ec8f146107d1578063bd3ff60c146107e8578063c4ae31681461081357610288565b80637e15144b14610667578063851a77081461067e5780638da5cb5b146106bb57806395d89b41146106e65780639a0ca21514610711578063a22cb4651461073a57610288565b806342842e0e116101fe57806365b24414116101b757806365b24414146105575780636c0360eb1461058057806370a08231146105ab57806370c757ec146105e8578063715018a6146106135780637a33bf291461062a57610288565b806342842e0e1461044757806351f9d4471461047057806355f804b31461049b5780635b1229e5146104c45780635c975abb146104ef5780636352211e1461051a57610288565b806318160ddd1161025057806318160ddd14610386578063235b6ea1146103b157806323b872dd146103dc5780632ad2cd8414610405578063311137f2146104215780633ccfd60b1461043d57610288565b806301ffc9a71461028d57806306183157146102ca57806306fdde03146102f5578063081812fc14610320578063095ea7b31461035d575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613502565b610a24565b6040516102c1919061354a565b60405180910390f35b3480156102d657600080fd5b506102df610b06565b6040516102ec919061357e565b60405180910390f35b34801561030157600080fd5b5061030a610b0c565b6040516103179190613632565b60405180910390f35b34801561032c57600080fd5b506103476004803603810190610342919061368a565b610b9e565b60405161035491906136f8565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f919061373f565b610be4565b005b34801561039257600080fd5b5061039b610cfc565b6040516103a8919061378e565b60405180910390f35b3480156103bd57600080fd5b506103c6610d0d565b6040516103d3919061378e565b60405180910390f35b3480156103e857600080fd5b5061040360048036038101906103fe91906137a9565b610d13565b005b61041f600480360381019061041a9190613861565b610d73565b005b61043b60048036038101906104369190613861565b61116e565b005b610445611569565b005b34801561045357600080fd5b5061046e600480360381019061046991906137a9565b6115ba565b005b34801561047c57600080fd5b506104856115da565b604051610492919061354a565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190613a19565b6115ed565b005b3480156104d057600080fd5b506104d961160f565b6040516104e6919061378e565b60405180910390f35b3480156104fb57600080fd5b50610504611615565b604051610511919061354a565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c919061368a565b611628565b60405161054e91906136f8565b60405180910390f35b34801561056357600080fd5b5061057e6004803603810190610579919061368a565b6116da565b005b34801561058c57600080fd5b50610595611700565b6040516105a29190613632565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190613a62565b61178e565b6040516105df919061378e565b60405180910390f35b3480156105f457600080fd5b506105fd611846565b60405161060a919061354a565b60405180910390f35b34801561061f57600080fd5b50610628611859565b005b34801561063657600080fd5b50610651600480360381019061064c9190613a62565b61186d565b60405161065e919061378e565b60405180910390f35b34801561067357600080fd5b5061067c611885565b005b34801561068a57600080fd5b506106a560048036038101906106a09190613a62565b611917565b6040516106b2919061378e565b60405180910390f35b3480156106c757600080fd5b506106d061192f565b6040516106dd91906136f8565b60405180910390f35b3480156106f257600080fd5b506106fb611959565b6040516107089190613632565b60405180910390f35b34801561071d57600080fd5b506107386004803603810190610733919061368a565b6119eb565b005b34801561074657600080fd5b50610761600480360381019061075c9190613abb565b6119fd565b005b61077d6004803603810190610778919061368a565b611a13565b005b34801561078b57600080fd5b506107a660048036038101906107a19190613b27565b611c8c565b005b3480156107b457600080fd5b506107cf60048036038101906107ca9190613c24565b611e2c565b005b3480156107dd57600080fd5b506107e6611e8e565b005b3480156107f457600080fd5b506107fd611ec2565b60405161080a9190613632565b60405180910390f35b34801561081f57600080fd5b50610828611f50565b005b34801561083657600080fd5b5061083f611f84565b60405161084c9190613632565b60405180910390f35b34801561086157600080fd5b5061087c6004803603810190610877919061368a565b612012565b6040516108899190613632565b60405180910390f35b34801561089e57600080fd5b506108a76120bc565b005b3480156108b557600080fd5b506108be612146565b6040516108cb919061378e565b60405180910390f35b3480156108e057600080fd5b506108fb60048036038101906108f69190613a19565b61214c565b005b34801561090957600080fd5b50610924600480360381019061091f9190613a19565b61216e565b005b34801561093257600080fd5b5061093b612190565b005b34801561094957600080fd5b50610952612222565b60405161095f919061354a565b60405180910390f35b34801561097457600080fd5b5061097d612235565b60405161098a919061354a565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b59190613ca7565b612248565b6040516109c7919061354a565b60405180910390f35b3480156109dc57600080fd5b506109e561234a565b6040516109f2919061357e565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613a62565b612350565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aff5750610afe826123d4565b5b9050919050565b600c5481565b606060008054610b1b90613d16565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4790613d16565b8015610b945780601f10610b6957610100808354040283529160200191610b94565b820191906000526020600020905b815481529060010190602001808311610b7757829003601f168201915b5050505050905090565b6000610ba98261243e565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bef82611628565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790613dba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7f612489565b73ffffffffffffffffffffffffffffffffffffffff161480610cae5750610cad81610ca8612489565b612248565b5b610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce490613e4c565b60405180910390fd5b610cf78383612491565b505050565b6000610d08600961254a565b905090565b60105481565b610d24610d1e612489565b82612558565b610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90613ede565b60405180910390fd5b610d6e8383836125ed565b505050565b8181600d5460011515610dee848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508333604051602001610dd39190613f46565b60405160208183030381529060405280519060200120612854565b151514610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790613fd3565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590614065565b60405180910390fd5b8773ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f03906140d1565b60405180910390fd5b601260039054906101000a900460ff16610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f529061413d565b60405180910390fd5b601260019054906101000a900460ff1615610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906141a9565b60405180910390fd5b8587601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ff791906141f8565b1115611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061429a565b60405180910390fd5b6000611044600961254a565b9050600e54888261105591906141f8565b1115611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90614306565b60405180910390fd5b34886010546110a59190614326565b11156110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd906143cc565b60405180910390fd5b87601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461113591906141f8565b9250508190555060005b888110156111625761114f61286b565b808061115a906143ec565b91505061113f565b50505050505050505050565b8181600c54600115156111e9848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505083336040516020016111ce9190613f46565b60405160208183030381529060405280519060200120612854565b15151461122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122290613fd3565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090614065565b60405180910390fd5b8773ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906140d1565b60405180910390fd5b601260029054906101000a900460ff16611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90614481565b60405180910390fd5b601260019054906101000a900460ff16156113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d906141a9565b60405180910390fd5b8587601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f291906141f8565b1115611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a9061429a565b60405180910390fd5b600061143f600961254a565b9050600e54888261145091906141f8565b1115611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890614306565b60405180910390fd5b34886010546114a09190614326565b11156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d8906143cc565b60405180910390fd5b87601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461153091906141f8565b9250508190555060005b8881101561155d5761154a61286b565b8080611555906143ec565b91505061153a565b50505050505050505050565b61157161292e565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156115b7573d6000803e3d6000fd5b50565b6115d583838360405180602001604052806000815250611e2c565b505050565b601260029054906101000a900460ff1681565b6115f561292e565b80600a908051906020019061160b9291906133f3565b5050565b600f5481565b601260019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c8906144ed565b60405180910390fd5b80915050919050565b6116e261292e565b806116ed600961254a565b6116f791906141f8565b600f8190555050565b600a805461170d90613d16565b80601f016020809104026020016040519081016040528092919081815260200182805461173990613d16565b80156117865780601f1061175b57610100808354040283529160200191611786565b820191906000526020600020905b81548152906001019060200180831161176957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f69061457f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601260039054906101000a900460ff1681565b61186161292e565b61186b60006129ac565b565b60136020528060005260406000206000915090505481565b61188d61292e565b601260039054906101000a900460ff1615601260036101000a81548160ff021916908315150217905550601260029054906101000a900460ff1615611915576118de68042a1776fd7d8200006119eb565b6000601260046101000a81548160ff0219169083151502179055506000601260026101000a81548160ff0219169083151502179055505b565b60146020528060005260406000206000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461196890613d16565b80601f016020809104026020016040519081016040528092919081815260200182805461199490613d16565b80156119e15780601f106119b6576101008083540402835291602001916119e1565b820191906000526020600020905b8154815290600101906020018083116119c457829003601f168201915b5050505050905090565b6119f361292e565b8060108190555050565b611a0f611a08612489565b8383612a72565b5050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890614065565b60405180910390fd5b601260049054906101000a900460ff16611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac7906145eb565b60405180910390fd5b601260019054906101000a900460ff1615611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b17906141a9565b60405180910390fd5b60008111611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a90614657565b60405180910390fd5b6000611b6f600961254a565b9050600f548282611b8091906141f8565b1115611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb8906146e9565b60405180910390fd5b600e548282611bd091906141f8565b1115611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890614306565b60405180910390fd5b3482601054611c209190614326565b1115611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c58906143cc565b60405180910390fd5b60005b82811015611c8757611c7461286b565b8080611c7f906143ec565b915050611c64565b505050565b611c9461292e565b604051602001611ca390614760565b6040516020818303038152906040528051906020012082604051602001611cca91906147a6565b604051602081830303815290604052805190602001201480611d355750604051602001611cf690614809565b6040516020818303038152906040528051906020012082604051602001611d1d91906147a6565b60405160208183030381529060405280519060200120145b611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90614890565b60405180910390fd5b604051602001611d8390614760565b6040516020818303038152906040528051906020012082604051602001611daa91906147a6565b604051602081830303815290604052805190602001201415611dce5780600c819055505b604051602001611ddd90614809565b6040516020818303038152906040528051906020012082604051602001611e0491906147a6565b604051602081830303815290604052805190602001201415611e285780600d819055505b5050565b611e3d611e37612489565b83612558565b611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7390613ede565b60405180910390fd5b611e8884848484612bdf565b50505050565b611e9661292e565b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b60118054611ecf90613d16565b80601f0160208091040260200160405190810160405280929190818152602001828054611efb90613d16565b8015611f485780601f10611f1d57610100808354040283529160200191611f48565b820191906000526020600020905b815481529060010190602001808311611f2b57829003601f168201915b505050505081565b611f5861292e565b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550565b600b8054611f9190613d16565b80601f0160208091040260200160405190810160405280929190818152602001828054611fbd90613d16565b801561200a5780601f10611fdf5761010080835404028352916020019161200a565b820191906000526020600020905b815481529060010190602001808311611fed57829003601f168201915b505050505081565b606061201d82612c3b565b61205c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205390614922565b60405180910390fd5b6000612066612ca7565b9050600081511161208657604051806020016040528060008152506120b4565b8061209084612d39565b600b6040516020016120a4939291906149d6565b6040516020818303038152906040525b915050919050565b6120c461292e565b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550601260029054906101000a900460ff16156121445761210d60006119eb565b6000601260036101000a81548160ff0219169083151502179055506000601260046101000a81548160ff0219169083151502179055505b565b600e5481565b61215461292e565b806011908051906020019061216a9291906133f3565b5050565b61217661292e565b80600b908051906020019061218c9291906133f3565b5050565b61219861292e565b601260049054906101000a900460ff1615601260046101000a81548160ff021916908315150217905550601260049054906101000a900460ff1615612220576121e96806db8a47c636ea00006119eb565b6000601260036101000a81548160ff0219169083151502179055506000601260026101000a81548160ff0219169083151502179055505b565b601260049054906101000a900460ff1681565b601260009054906101000a900460ff1681565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016122c091906136f8565b60206040518083038186803b1580156122d857600080fd5b505afa1580156122ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123109190614a45565b73ffffffffffffffffffffffffffffffffffffffff161415612336576001915050612344565b6123408484612e9a565b9150505b92915050565b600d5481565b61235861292e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bf90614ae4565b60405180910390fd5b6123d1816129ac565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61244781612c3b565b612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d906144ed565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661250483611628565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60008061256483611628565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125a657506125a58185612248565b5b806125e457508373ffffffffffffffffffffffffffffffffffffffff166125cc84610b9e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661260d82611628565b73ffffffffffffffffffffffffffffffffffffffff1614612663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265a90614b76565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca90614c08565b60405180910390fd5b6126de838383612f2e565b6126e9600082612491565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127399190614c28565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461279091906141f8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461284f838383612f33565b505050565b6000826128618584612f38565b1490509392505050565b600260075414156128b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a890614ca8565b60405180910390fd5b60026007819055506128c36009612f8e565b60006128cf600961254a565b90506128db3382612fa4565b601260009054906101000a900460ff161561292357600e548114806129015750600f5481145b15612922576000601260046101000a81548160ff0219169083151502179055505b5b506001600781905550565b612936612489565b73ffffffffffffffffffffffffffffffffffffffff1661295461192f565b73ffffffffffffffffffffffffffffffffffffffff16146129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a190614d14565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad890614d80565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612bd2919061354a565b60405180910390a3505050565b612bea8484846125ed565b612bf684848484612fc2565b612c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2c90614e12565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600a8054612cb690613d16565b80601f0160208091040260200160405190810160405280929190818152602001828054612ce290613d16565b8015612d2f5780601f10612d0457610100808354040283529160200191612d2f565b820191906000526020600020905b815481529060010190602001808311612d1257829003601f168201915b5050505050905090565b60606000821415612d81576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e95565b600082905060005b60008214612db3578080612d9c906143ec565b915050600a82612dac9190614e61565b9150612d89565b60008167ffffffffffffffff811115612dcf57612dce6138ee565b5b6040519080825280601f01601f191660200182016040528015612e015781602001600182028036833780820191505090505b5090505b60008514612e8e57600182612e1a9190614c28565b9150600a85612e299190614e92565b6030612e3591906141f8565b60f81b818381518110612e4b57612e4a614ec3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e879190614e61565b9450612e05565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b505050565b60008082905060005b8451811015612f8357612f6e82868381518110612f6157612f60614ec3565b5b6020026020010151613159565b91508080612f7b906143ec565b915050612f41565b508091505092915050565b6001816000016000828254019250508190555050565b612fbe828260405180602001604052806000815250613184565b5050565b6000612fe38473ffffffffffffffffffffffffffffffffffffffff166131df565b1561314c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261300c612489565b8786866040518563ffffffff1660e01b815260040161302e9493929190614f47565b602060405180830381600087803b15801561304857600080fd5b505af192505050801561307957506040513d601f19601f820116820180604052508101906130769190614fa8565b60015b6130fc573d80600081146130a9576040519150601f19603f3d011682016040523d82523d6000602084013e6130ae565b606091505b506000815114156130f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130eb90614e12565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613151565b600190505b949350505050565b60008183106131715761316c8284613202565b61317c565b61317b8383613202565b5b905092915050565b61318e8383613219565b61319b6000848484612fc2565b6131da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d190614e12565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328090615021565b60405180910390fd5b61329281612c3b565b156132d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c99061508d565b60405180910390fd5b6132de60008383612f2e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461332e91906141f8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133ef60008383612f33565b5050565b8280546133ff90613d16565b90600052602060002090601f0160209004810192826134215760008555613468565b82601f1061343a57805160ff1916838001178555613468565b82800160010185558215613468579182015b8281111561346757825182559160200191906001019061344c565b5b5090506134759190613479565b5090565b5b8082111561349257600081600090555060010161347a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134df816134aa565b81146134ea57600080fd5b50565b6000813590506134fc816134d6565b92915050565b600060208284031215613518576135176134a0565b5b6000613526848285016134ed565b91505092915050565b60008115159050919050565b6135448161352f565b82525050565b600060208201905061355f600083018461353b565b92915050565b6000819050919050565b61357881613565565b82525050565b6000602082019050613593600083018461356f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135d35780820151818401526020810190506135b8565b838111156135e2576000848401525b50505050565b6000601f19601f8301169050919050565b600061360482613599565b61360e81856135a4565b935061361e8185602086016135b5565b613627816135e8565b840191505092915050565b6000602082019050818103600083015261364c81846135f9565b905092915050565b6000819050919050565b61366781613654565b811461367257600080fd5b50565b6000813590506136848161365e565b92915050565b6000602082840312156136a05761369f6134a0565b5b60006136ae84828501613675565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136e2826136b7565b9050919050565b6136f2816136d7565b82525050565b600060208201905061370d60008301846136e9565b92915050565b61371c816136d7565b811461372757600080fd5b50565b60008135905061373981613713565b92915050565b60008060408385031215613756576137556134a0565b5b60006137648582860161372a565b925050602061377585828601613675565b9150509250929050565b61378881613654565b82525050565b60006020820190506137a3600083018461377f565b92915050565b6000806000606084860312156137c2576137c16134a0565b5b60006137d08682870161372a565b93505060206137e18682870161372a565b92505060406137f286828701613675565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112613821576138206137fc565b5b8235905067ffffffffffffffff81111561383e5761383d613801565b5b60208301915083602082028301111561385a57613859613806565b5b9250929050565b60008060008060006080868803121561387d5761387c6134a0565b5b600061388b8882890161372a565b955050602061389c88828901613675565b94505060406138ad88828901613675565b935050606086013567ffffffffffffffff8111156138ce576138cd6134a5565b5b6138da8882890161380b565b92509250509295509295909350565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613926826135e8565b810181811067ffffffffffffffff82111715613945576139446138ee565b5b80604052505050565b6000613958613496565b9050613964828261391d565b919050565b600067ffffffffffffffff821115613984576139836138ee565b5b61398d826135e8565b9050602081019050919050565b82818337600083830152505050565b60006139bc6139b784613969565b61394e565b9050828152602081018484840111156139d8576139d76138e9565b5b6139e384828561399a565b509392505050565b600082601f830112613a00576139ff6137fc565b5b8135613a108482602086016139a9565b91505092915050565b600060208284031215613a2f57613a2e6134a0565b5b600082013567ffffffffffffffff811115613a4d57613a4c6134a5565b5b613a59848285016139eb565b91505092915050565b600060208284031215613a7857613a776134a0565b5b6000613a868482850161372a565b91505092915050565b613a988161352f565b8114613aa357600080fd5b50565b600081359050613ab581613a8f565b92915050565b60008060408385031215613ad257613ad16134a0565b5b6000613ae08582860161372a565b9250506020613af185828601613aa6565b9150509250929050565b613b0481613565565b8114613b0f57600080fd5b50565b600081359050613b2181613afb565b92915050565b60008060408385031215613b3e57613b3d6134a0565b5b600083013567ffffffffffffffff811115613b5c57613b5b6134a5565b5b613b68858286016139eb565b9250506020613b7985828601613b12565b9150509250929050565b600067ffffffffffffffff821115613b9e57613b9d6138ee565b5b613ba7826135e8565b9050602081019050919050565b6000613bc7613bc284613b83565b61394e565b905082815260208101848484011115613be357613be26138e9565b5b613bee84828561399a565b509392505050565b600082601f830112613c0b57613c0a6137fc565b5b8135613c1b848260208601613bb4565b91505092915050565b60008060008060808587031215613c3e57613c3d6134a0565b5b6000613c4c8782880161372a565b9450506020613c5d8782880161372a565b9350506040613c6e87828801613675565b925050606085013567ffffffffffffffff811115613c8f57613c8e6134a5565b5b613c9b87828801613bf6565b91505092959194509250565b60008060408385031215613cbe57613cbd6134a0565b5b6000613ccc8582860161372a565b9250506020613cdd8582860161372a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d2e57607f821691505b60208210811415613d4257613d41613ce7565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613da46021836135a4565b9150613daf82613d48565b604082019050919050565b60006020820190508181036000830152613dd381613d97565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613e36603e836135a4565b9150613e4182613dda565b604082019050919050565b60006020820190508181036000830152613e6581613e29565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613ec8602e836135a4565b9150613ed382613e6c565b604082019050919050565b60006020820190508181036000830152613ef781613ebb565b9050919050565b60008160601b9050919050565b6000613f1682613efe565b9050919050565b6000613f2882613f0b565b9050919050565b613f40613f3b826136d7565b613f1d565b82525050565b6000613f528284613f2f565b60148201915081905092915050565b7f697356616c69644d65726b6c6550726f6f6628293a204e6f7420616c6c6f776560008201527f64206f726967696e000000000000000000000000000000000000000000000000602082015250565b6000613fbd6028836135a4565b9150613fc882613f61565b604082019050919050565b60006020820190508181036000830152613fec81613fb0565b9050919050565b7f6f6e6c794163636f756e747328293a204e6f7420616c6c6f776564206f72696760008201527f696e000000000000000000000000000000000000000000000000000000000000602082015250565b600061404f6022836135a4565b915061405a82613ff3565b604082019050919050565b6000602082019050818103600083015261407e81614042565b9050919050565b7f4163636f756e74206e6f7420616c6c6f77656400000000000000000000000000600082015250565b60006140bb6013836135a4565b91506140c682614085565b602082019050919050565b600060208201905081810360008301526140ea816140ae565b9050919050565b7f57686974656c697374206d6f6465206973204f46460000000000000000000000600082015250565b60006141276015836135a4565b9150614132826140f1565b602082019050919050565b600060208201905081810360008301526141568161411a565b9050919050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b60006141936012836135a4565b915061419e8261415d565b602082019050919050565b600060208201905081810360008301526141c281614186565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061420382613654565b915061420e83613654565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614243576142426141c9565b5b828201905092915050565b7f596f752063616e2774206d696e7420736f206d75636820746f6b656e73000000600082015250565b6000614284601d836135a4565b915061428f8261424e565b602082019050919050565b600060208201905081810360008301526142b381614277565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006142f06013836135a4565b91506142fb826142ba565b602082019050919050565b6000602082019050818103600083015261431f816142e3565b9050919050565b600061433182613654565b915061433c83613654565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614375576143746141c9565b5b828202905092915050565b7f4e6f7420656e6f756768206574686572732073656e7400000000000000000000600082015250565b60006143b66016836135a4565b91506143c182614380565b602082019050919050565b600060208201905081810360008301526143e5816143a9565b9050919050565b60006143f782613654565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561442a576144296141c9565b5b600182019050919050565b7f467265656d696e74206973204f46460000000000000000000000000000000000600082015250565b600061446b600f836135a4565b915061447682614435565b602082019050919050565b6000602082019050818103600083015261449a8161445e565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006144d76018836135a4565b91506144e2826144a1565b602082019050919050565b60006020820190508181036000830152614506816144ca565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006145696029836135a4565b91506145748261450d565b604082019050919050565b600060208201905081810360008301526145988161455c565b9050919050565b7f5075626c696353616c65206973204f4646000000000000000000000000000000600082015250565b60006145d56011836135a4565b91506145e08261459f565b602082019050919050565b60006020820190508181036000830152614604816145c8565b9050919050565b7f5a65726f20616d6f756e74206f66206d696e7400000000000000000000000000600082015250565b60006146416013836135a4565b915061464c8261460b565b602082019050919050565b6000602082019050818103600083015261467081614634565b9050919050565b7f4d617820737570706c7920666f722074686973206d696e74696e6720726f756e60008201527f6420657863656564656400000000000000000000000000000000000000000000602082015250565b60006146d3602a836135a4565b91506146de82614677565b604082019050919050565b60006020820190508181036000830152614702816146c6565b9050919050565b600081905092915050565b7f464d000000000000000000000000000000000000000000000000000000000000600082015250565b600061474a600283614709565b915061475582614714565b600282019050919050565b600061476b8261473d565b9150819050919050565b600061478082613599565b61478a8185614709565b935061479a8185602086016135b5565b80840191505092915050565b60006147b28284614775565b915081905092915050565b7f574c000000000000000000000000000000000000000000000000000000000000600082015250565b60006147f3600283614709565b91506147fe826147bd565b600282019050919050565b6000614814826147e6565b9150819050919050565b7f57726f6e6720726f6f7420747970653a206d75737420626520464d206f72205760008201527f4c00000000000000000000000000000000000000000000000000000000000000602082015250565b600061487a6021836135a4565b91506148858261481e565b604082019050919050565b600060208201905081810360008301526148a98161486d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061490c602f836135a4565b9150614917826148b0565b604082019050919050565b6000602082019050818103600083015261493b816148ff565b9050919050565b60008190508160005260206000209050919050565b6000815461496481613d16565b61496e8186614709565b94506001821660008114614989576001811461499a576149cd565b60ff198316865281860193506149cd565b6149a385614942565b60005b838110156149c5578154818901526001820191506020810190506149a6565b838801955050505b50505092915050565b60006149e28286614775565b91506149ee8285614775565b91506149fa8284614957565b9150819050949350505050565b6000614a12826136d7565b9050919050565b614a2281614a07565b8114614a2d57600080fd5b50565b600081519050614a3f81614a19565b92915050565b600060208284031215614a5b57614a5a6134a0565b5b6000614a6984828501614a30565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ace6026836135a4565b9150614ad982614a72565b604082019050919050565b60006020820190508181036000830152614afd81614ac1565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614b606025836135a4565b9150614b6b82614b04565b604082019050919050565b60006020820190508181036000830152614b8f81614b53565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614bf26024836135a4565b9150614bfd82614b96565b604082019050919050565b60006020820190508181036000830152614c2181614be5565b9050919050565b6000614c3382613654565b9150614c3e83613654565b925082821015614c5157614c506141c9565b5b828203905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614c92601f836135a4565b9150614c9d82614c5c565b602082019050919050565b60006020820190508181036000830152614cc181614c85565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614cfe6020836135a4565b9150614d0982614cc8565b602082019050919050565b60006020820190508181036000830152614d2d81614cf1565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614d6a6019836135a4565b9150614d7582614d34565b602082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614dfc6032836135a4565b9150614e0782614da0565b604082019050919050565b60006020820190508181036000830152614e2b81614def565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e6c82613654565b9150614e7783613654565b925082614e8757614e86614e32565b5b828204905092915050565b6000614e9d82613654565b9150614ea883613654565b925082614eb857614eb7614e32565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000614f1982614ef2565b614f238185614efd565b9350614f338185602086016135b5565b614f3c816135e8565b840191505092915050565b6000608082019050614f5c60008301876136e9565b614f6960208301866136e9565b614f76604083018561377f565b8181036060830152614f888184614f0e565b905095945050505050565b600081519050614fa2816134d6565b92915050565b600060208284031215614fbe57614fbd6134a0565b5b6000614fcc84828501614f93565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061500b6020836135a4565b915061501682614fd5565b602082019050919050565b6000602082019050818103600083015261503a81614ffe565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615077601c836135a4565b915061508282615041565b602082019050919050565b600060208201905081810360008301526150a68161506a565b905091905056fea264697066735822122062e58290394c537e3ec0af887175a2d849a4c9d4e5bd343609d6292c05bc588d64736f6c634300080900330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569617a70717a77337879753772786c6c697135676669686f74363679696b637674676234676872716a696e6675753276336169766d2f0000000000000000000000000000000000000000000000000000000000
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.