ERC-721
Overview
Max Total Supply
81 TopDJ NFT Remix
Holders
78
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TopDJ NFT RemixLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TDJSyntheticNft
Compiler Version
v0.8.2+commit.661d1103
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-21 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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); } 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; } } pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return recover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return recover(hash, r, vs); } else { revert("ECDSA: invalid signature length"); } } /** * @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return recover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. require( uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value" ); require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value"); // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } 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; } } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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; } } pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } 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); } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } 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: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev Edit for rawOwnerOf token */ function rawOwnerOf(uint256 tokenId) public view returns (address) { return _owners[tokenId]; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); address to = address(0); _beforeTokenTransfer(owner, to, tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, to, tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } pragma solidity ^0.8.0; interface IinviteContract{ function addInviteAddress(address child, address invite) external returns (bool); function addInviteReward(address from, address invite, uint256 reward) external returns (bool); function getInviteAddress(address child) external view returns (address inviteAddress); } pragma solidity ^0.8.0; contract TDJSyntheticNft is ERC721Enumerable, Ownable { using SafeMath for uint256; using Counters for Counters.Counter; using Address for address; uint256 public _lastTokenID = 0; uint256 public constant START_AT = 1; mapping(uint256 => bool) private _codeMap; bool private PAUSE = false; string public baseTokenURI; address public executorAddress; mapping(address => bool) public onceFreeMap; uint256 public nftPrice; uint256 public constant MAX_SUPPLY = 8888; Counters.Counter private _tokenIdTracker; event CreateNft(address indexed owner, uint256 indexed id); event SetExecutorAddressEvent(address indexed executorAddress); event SetNewPriceEvent(uint256 price); event PauseEvent(bool pause); constructor(address _executorAddress, uint256 _price) ERC721("TopDJ NFT Remix", "TopDJ NFT Remix"){ executorAddress = _executorAddress; nftPrice = _price; } modifier nftIsOpen { require(!PAUSE, "Sales not open"); _; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function totalToken() public view returns (uint256) { return _tokenIdTracker.current(); } function getNextTokenID() private returns (uint256) { _lastTokenID = _lastTokenID.add(1); return _lastTokenID; } function setExecutorAddress(address _executorAddress) public onlyOwner { executorAddress = _executorAddress; emit SetExecutorAddressEvent(_executorAddress); } function setPrice(uint256 _price) public onlyOwner { nftPrice = _price; emit SetNewPriceEvent(_price); } function mintToAdmin() public onlyOwner { uint256 _tokensId = getNextTokenID(); require(totalSupply() + 1 <= MAX_SUPPLY, "Max supply reached"); require(rawOwnerOf(_tokensId) == address(0) && _tokensId > 0, "Token already minted"); _mintAnNFT(msg.sender, _tokensId); } function mintByWhitelist(address to, uint256 _timestamp, uint256 code, bytes memory _signature) public nftIsOpen{ uint256 _tokensId = getNextTokenID(); address signerOwner = signatureWallet(to, code,_timestamp,_signature); require(totalSupply() + 1 <= MAX_SUPPLY, "Max supply reached"); require(signerOwner == executorAddress, "Not authorized to mint"); require(rawOwnerOf(_tokensId) == address(0) && _tokensId > 0, "Token already minted"); require(_codeMap[code] == false, "code already exists"); require(onceFreeMap[to] == false, "You have already mint a free NFT"); _codeMap[code] = true; onceFreeMap[to] = true; _mintAnNFT(to, _tokensId); } function mint() payable public nftIsOpen{ uint256 _tokensId = getNextTokenID(); require(totalSupply() + 1 <= MAX_SUPPLY, "Max supply reached"); require(nftPrice == msg.value, "value error"); require(rawOwnerOf(_tokensId) == address(0) && _tokensId > 0, "Token already minted"); _mintAnNFT(msg.sender, _tokensId); } function _mintAnNFT(address _to, uint256 _tokenId) private { _tokenIdTracker.increment(); _mint(_to, _tokenId); emit CreateNft(_to, _tokenId); } function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function signatureWallet(address to, uint256 code, uint256 _timestamp, bytes memory _signature) public pure returns (address){ return ECDSA.recover(keccak256(abi.encode(to, code, _timestamp)), _signature); } function setPause(bool _pause) public onlyOwner{ PAUSE = _pause; emit PauseEvent(PAUSE); } function withDrawAll(address payable to) public onlyOwner{ (bool success, ) = to.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_executorAddress","type":"address"},{"internalType":"uint256","name":"_price","type":"uint256"}],"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":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateNft","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":false,"internalType":"bool","name":"pause","type":"bool"}],"name":"PauseEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"executorAddress","type":"address"}],"name":"SetExecutorAddressEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"SetNewPriceEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START_AT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lastTokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"executorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"internalType":"uint256","name":"code","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mintByWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintToAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"onceFreeMap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"rawOwnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_executorAddress","type":"address"}],"name":"setExecutorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"code","type":"uint256"},{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"signatureWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"withDrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600b55600d805460ff191690553480156200002057600080fd5b5060405162002cd838038062002cd88339810160408190526200004391620001e6565b604080518082018252600f8082526e0a8dee08894409c8ca840a4cadad2f608b1b6020808401828152855180870190965292855284015281519192916200008d9160009162000140565b508051620000a390600190602084019062000140565b505050620000c0620000ba620000ea60201b60201c565b620000ee565b600f80546001600160a01b0319166001600160a01b0393909316929092179091556011556200025d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014e9062000220565b90600052602060002090601f016020900481019282620001725760008555620001bd565b82601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b60008060408385031215620001f9578182fd5b82516001600160a01b038116811462000210578283fd5b6020939093015192949293505050565b6002810460018216806200023557607f821691505b602082108114156200025757634e487b7160e01b600052602260045260246000fd5b50919050565b612a6b806200026d6000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063b88d4fde116100ab578063d547cfb71161006f578063d547cfb71461064c578063e939427c14610661578063e985e9c514610677578063f2320568146106c0578063f2fde38b146106e057610225565b8063b88d4fde146105b7578063bedb86fb146105d7578063bf7b766d146105f7578063c2513f111461060c578063c87b56dd1461062c57610225565b80638da5cb5b116100f25780638da5cb5b1461052457806391b7f5ed1461054257806395d89b4114610562578063a22cb46514610577578063a8e9a5391461059757610225565b806370a08231146104a4578063715018a6146104c45780637f81be69146104d95780638a9cd3a11461050f57610225565b806328f7702b116101b15780634c0ee1c6116101755780634c0ee1c61461040f5780634f6ccce71461042f57806355f804b31461044f578063626be5671461046f5780636352211e1461048457610225565b806328f7702b1461035c5780632f745c591461038c57806332cb6b0c146103ac57806342842e0e146103c2578063438b6300146103e257610225565b806309f21f6a116101f857806309f21f6a146102db5780630d39fc81146102fb5780631249c58b1461031f57806318160ddd1461032757806323b872dd1461033c57610225565b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004612670565b610700565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461072d565b60405161025691906127d8565b34801561028d57600080fd5b506102a161029c3660046126ee565b6107bf565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046125e2565b610859565b005b3480156102e757600080fd5b506102d96102f63660046124b0565b61096f565b34801561030757600080fd5b5061031160115481565b604051908152602001610256565b6102d9610a33565b34801561033357600080fd5b50600854610311565b34801561034857600080fd5b506102d9610357366004612504565b610b6c565b34801561036857600080fd5b5061024a6103773660046124b0565b60106020526000908152604090205460ff1681565b34801561039857600080fd5b506103116103a73660046125e2565b610b9d565b3480156103b857600080fd5b506103116122b881565b3480156103ce57600080fd5b506102d96103dd366004612504565b610c36565b3480156103ee57600080fd5b506104026103fd3660046124b0565b610c51565b6040516102569190612794565b34801561041b57600080fd5b506102d961042a36600461260d565b610d0f565b34801561043b57600080fd5b5061031161044a3660046126ee565b610f6f565b34801561045b57600080fd5b506102d961046a3660046126a8565b611010565b34801561047b57600080fd5b5061031161104d565b34801561049057600080fd5b506102a161049f3660046126ee565b61105d565b3480156104b057600080fd5b506103116104bf3660046124b0565b6110d4565b3480156104d057600080fd5b506102d961115b565b3480156104e557600080fd5b506102a16104f43660046126ee565b6000908152600260205260409020546001600160a01b031690565b34801561051b57600080fd5b506102d9611191565b34801561053057600080fd5b50600a546001600160a01b03166102a1565b34801561054e57600080fd5b506102d961055d3660046126ee565b6111fc565b34801561056e57600080fd5b50610274611262565b34801561058357600080fd5b506102d96105923660046125ae565b611271565b3480156105a357600080fd5b50600f546102a1906001600160a01b031681565b3480156105c357600080fd5b506102d96105d2366004612544565b611343565b3480156105e357600080fd5b506102d96105f2366004612656565b61137b565b34801561060357600080fd5b50610311600181565b34801561061857600080fd5b506102d96106273660046124b0565b6113eb565b34801561063857600080fd5b506102746106473660046126ee565b61145f565b34801561065857600080fd5b5061027461153a565b34801561066d57600080fd5b50610311600b5481565b34801561068357600080fd5b5061024a6106923660046124cc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106cc57600080fd5b506102a16106db36600461260d565b6115c8565b3480156106ec57600080fd5b506102d96106fb3660046124b0565b611619565b60006001600160e01b0319821663780e9d6360e01b14806107255750610725826116b1565b90505b919050565b60606000805461073c9061295e565b80601f01602080910402602001604051908101604052809291908181526020018280546107689061295e565b80156107b55780601f1061078a576101008083540402835291602001916107b5565b820191906000526020600020905b81548152906001019060200180831161079857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661083d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108648261105d565b9050806001600160a01b0316836001600160a01b031614156108d25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610834565b336001600160a01b03821614806108ee57506108ee8133610692565b6109605760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610834565b61096a8383611701565b505050565b600a546001600160a01b031633146109995760405162461bcd60e51b81526004016108349061283d565b6000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146109e6576040519150601f19603f3d011682016040523d82523d6000602084013e6109eb565b606091505b5050905080610a2f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610834565b5050565b600d5460ff1615610a775760405162461bcd60e51b815260206004820152600e60248201526d29b0b632b9903737ba1037b832b760911b6044820152606401610834565b6000610a8161176f565b90506122b8610a8f60085490565b610a9a9060016128ef565b1115610ab85760405162461bcd60e51b8152600401610834906128c3565b3460115414610af75760405162461bcd60e51b815260206004820152600b60248201526a3b30b63ab29032b93937b960a91b6044820152606401610834565b6000818152600260205260409020546001600160a01b0316158015610b1c5750600081115b610b5f5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88185b1c9958591e481b5a5b9d195960621b6044820152606401610834565b610b69338261178a565b50565b610b7633826117dc565b610b925760405162461bcd60e51b815260040161083490612872565b61096a8383836118cf565b6000610ba8836110d4565b8210610c0a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610834565b506001600160a01b03821660009081526006602090815260408083208484529091529020545b92915050565b61096a83838360405180602001604052806000815250611343565b60606000610c5e836110d4565b905060008167ffffffffffffffff811115610c8957634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cb2578160200160208202803683370190505b50905060005b82811015610d0757610cca8582610b9d565b828281518110610cea57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610cff81612999565b915050610cb8565b509392505050565b600d5460ff1615610d535760405162461bcd60e51b815260206004820152600e60248201526d29b0b632b9903737ba1037b832b760911b6044820152606401610834565b6000610d5d61176f565b90506000610d6d868587866115c8565b90506122b8610d7b60085490565b610d869060016128ef565b1115610da45760405162461bcd60e51b8152600401610834906128c3565b600f546001600160a01b03828116911614610dfa5760405162461bcd60e51b8152602060048201526016602482015275139bdd08185d5d1a1bdc9a5e9959081d1bc81b5a5b9d60521b6044820152606401610834565b6000828152600260205260409020546001600160a01b0316158015610e1f5750600082115b610e625760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88185b1c9958591e481b5a5b9d195960621b6044820152606401610834565b6000848152600c602052604090205460ff1615610eb75760405162461bcd60e51b8152602060048201526013602482015272636f646520616c72656164792065786973747360681b6044820152606401610834565b6001600160a01b03861660009081526010602052604090205460ff1615610f205760405162461bcd60e51b815260206004820181905260248201527f596f75206861766520616c7265616479206d696e7420612066726565204e46546044820152606401610834565b6000848152600c602090815260408083208054600160ff1991821681179092556001600160a01b038b1685526010909352922080549091169091179055610f67868361178a565b505050505050565b6000610f7a60085490565b8210610fdd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610834565b60088281548110610ffe57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b0316331461103a5760405162461bcd60e51b81526004016108349061283d565b8051610a2f90600e906020840190612372565b600061105860125490565b905090565b6000818152600260205260408120546001600160a01b0316806107255760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610834565b60006001600160a01b03821661113f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610834565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111855760405162461bcd60e51b81526004016108349061283d565b61118f6000611a7a565b565b600a546001600160a01b031633146111bb5760405162461bcd60e51b81526004016108349061283d565b60006111c561176f565b90506122b86111d360085490565b6111de9060016128ef565b1115610af75760405162461bcd60e51b8152600401610834906128c3565b600a546001600160a01b031633146112265760405162461bcd60e51b81526004016108349061283d565b60118190556040518181527f613ef1790985f92fcbf3d3385ea3573b262f936f2b73567c31f8b50c6e509ea0906020015b60405180910390a150565b60606001805461073c9061295e565b6001600160a01b0382163314156112ca5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610834565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611337911515815260200190565b60405180910390a35050565b61134d33836117dc565b6113695760405162461bcd60e51b815260040161083490612872565b61137584848484611acc565b50505050565b600a546001600160a01b031633146113a55760405162461bcd60e51b81526004016108349061283d565b600d805460ff1916821515179081905560405160ff909116151581527f10e1c3fcaff06b68391033547e8f9bb8067d7c4a2e32659b0629153814d242d390602001611257565b600a546001600160a01b031633146114155760405162461bcd60e51b81526004016108349061283d565b600f80546001600160a01b0319166001600160a01b0383169081179091556040517f4b83c5eaae88eb40c4070b37064590e9a2cbe29a12752e9e42c4a51541723bfd90600090a250565b6000818152600260205260409020546060906001600160a01b03166114de5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610834565b60006114e8611aff565b905060008151116115085760405180602001604052806000815250611533565b8061151284611b0e565b604051602001611523929190612732565b6040516020818303038152906040525b9392505050565b600e80546115479061295e565b80601f01602080910402602001604051908101604052809291908181526020018280546115739061295e565b80156115c05780601f10611595576101008083540402835291602001916115c0565b820191906000526020600020905b8154815290600101906020018083116115a357829003601f168201915b505050505081565b604080516001600160a01b03861660208201529081018490526060810183905260009061160e906080016040516020818303038152906040528051906020012083611c29565b90505b949350505050565b600a546001600160a01b031633146116435760405162461bcd60e51b81526004016108349061283d565b6001600160a01b0381166116a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610834565b610b6981611a7a565b60006001600160e01b031982166380ac58cd60e01b14806116e257506001600160e01b03198216635b5e139f60e01b145b8061072557506301ffc9a760e01b6001600160e01b0319831614610725565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117368261105d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b54600090611780906001611ccd565b600b819055905090565b611798601280546001019055565b6117a28282611cd9565b60405181906001600160a01b038416907ffc84d0b7f87ad29178c646be08964a55be6fc6e67721bc36e7a41abdb7a9388790600090a35050565b6000818152600260205260408120546001600160a01b03166118555760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610834565b60006118608361105d565b9050806001600160a01b0316846001600160a01b0316148061189b5750836001600160a01b0316611890846107bf565b6001600160a01b0316145b8061161157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611611565b826001600160a01b03166118e28261105d565b6001600160a01b03161461194a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610834565b6001600160a01b0382166119ac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610834565b6119b7838383611e27565b6119c2600082611701565b6001600160a01b03831660009081526003602052604081208054600192906119eb90849061291b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a199084906128ef565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ad78484846118cf565b611ae384848484611ee4565b6113755760405162461bcd60e51b8152600401610834906127eb565b6060600e805461073c9061295e565b606081611b3357506040805180820190915260018152600360fc1b6020820152610728565b8160005b8115611b5d5780611b4781612999565b9150611b569050600a83612907565b9150611b37565b60008167ffffffffffffffff811115611b8657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bb0576020820181803683370190505b5090505b841561161157611bc560018361291b565b9150611bd2600a866129b4565b611bdd9060306128ef565b60f81b818381518110611c0057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c22600a86612907565b9450611bb4565b6000815160411415611c5d5760208201516040830151606084015160001a611c5386828585611fee565b9350505050610c30565b815160401415611c855760208201516040830151611c7c85838361218e565b92505050610c30565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610834565b600061153382846128ef565b6001600160a01b038216611d2f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610834565b6000818152600260205260409020546001600160a01b031615611d945760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610834565b611da060008383611e27565b6001600160a01b0382166000908152600360205260408120805460019290611dc99084906128ef565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316611e8257611e7d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ea5565b816001600160a01b0316836001600160a01b031614611ea557611ea583826121b8565b6001600160a01b038216611ec157611ebc81612255565b61096a565b826001600160a01b0316826001600160a01b03161461096a5761096a828261232e565b60006001600160a01b0384163b15611fe657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f28903390899088908890600401612761565b602060405180830381600087803b158015611f4257600080fd5b505af1925050508015611f72575060408051601f3d908101601f19168201909252611f6f9181019061268c565b60015b611fcc573d808015611fa0576040519150601f19603f3d011682016040523d82523d6000602084013e611fa5565b606091505b508051611fc45760405162461bcd60e51b8152600401610834906127eb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611611565b506001611611565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561206b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610834565b8360ff16601b148061208057508360ff16601c145b6120d75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610834565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa15801561212b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661160e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610834565b60006001600160ff1b03821660ff83901c601b016121ae86828785611fee565b9695505050505050565b600060016121c5846110d4565b6121cf919061291b565b600083815260076020526040902054909150808214612222576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122679060019061291b565b6000838152600960205260408120546008805493945090928490811061229d57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106122cc57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061231257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612339836110d4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461237e9061295e565b90600052602060002090601f0160209004810192826123a057600085556123e6565b82601f106123b957805160ff19168380011785556123e6565b828001600101855582156123e6579182015b828111156123e65782518255916020019190600101906123cb565b506123f29291506123f6565b5090565b5b808211156123f257600081556001016123f7565b600067ffffffffffffffff80841115612426576124266129f4565b604051601f8501601f19908116603f0116810190828211818310171561244e5761244e6129f4565b8160405280935085815286868601111561246757600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461072857600080fd5b600082601f8301126124a1578081fd5b6115338383356020850161240b565b6000602082840312156124c1578081fd5b813561153381612a0a565b600080604083850312156124de578081fd5b82356124e981612a0a565b915060208301356124f981612a0a565b809150509250929050565b600080600060608486031215612518578081fd5b833561252381612a0a565b9250602084013561253381612a0a565b929592945050506040919091013590565b60008060008060808587031215612559578081fd5b843561256481612a0a565b9350602085013561257481612a0a565b925060408501359150606085013567ffffffffffffffff811115612596578182fd5b6125a287828801612491565b91505092959194509250565b600080604083850312156125c0578182fd5b82356125cb81612a0a565b91506125d960208401612481565b90509250929050565b600080604083850312156125f4578182fd5b82356125ff81612a0a565b946020939093013593505050565b60008060008060808587031215612622578384fd5b843561262d81612a0a565b93506020850135925060408501359150606085013567ffffffffffffffff811115612596578182fd5b600060208284031215612667578081fd5b61153382612481565b600060208284031215612681578081fd5b813561153381612a1f565b60006020828403121561269d578081fd5b815161153381612a1f565b6000602082840312156126b9578081fd5b813567ffffffffffffffff8111156126cf578182fd5b8201601f810184136126df578182fd5b6116118482356020840161240b565b6000602082840312156126ff578081fd5b5035919050565b6000815180845261271e816020860160208601612932565b601f01601f19169290920160200192915050565b60008351612744818460208801612932565b835190830190612758818360208801612932565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121ae90830184612706565b6020808252825182820181905260009190848201906040850190845b818110156127cc578351835292840192918401916001016127b0565b50909695505050505050565b6000602082526115336020830184612706565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526012908201527113585e081cdd5c1c1b1e481c995858da195960721b604082015260600190565b60008219821115612902576129026129c8565b500190565b600082612916576129166129de565b500490565b60008282101561292d5761292d6129c8565b500390565b60005b8381101561294d578181015183820152602001612935565b838111156113755750506000910152565b60028104600182168061297257607f821691505b6020821081141561299357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129ad576129ad6129c8565b5060010190565b6000826129c3576129c36129de565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b6957600080fd5b6001600160e01b031981168114610b6957600080fdfea264697066735822122012cccca21a61f1baedfd1e1c94441e1847b3b1601e48461c4dd3588c110e95ee64736f6c63430008020033000000000000000000000000375ab956c847b7b79bad08b349e59121f3d709c000000000000000000000000000000000000000000000000000b1a2bc2ec50000
Deployed Bytecode
0x6080604052600436106102255760003560e01c806370a0823111610123578063b88d4fde116100ab578063d547cfb71161006f578063d547cfb71461064c578063e939427c14610661578063e985e9c514610677578063f2320568146106c0578063f2fde38b146106e057610225565b8063b88d4fde146105b7578063bedb86fb146105d7578063bf7b766d146105f7578063c2513f111461060c578063c87b56dd1461062c57610225565b80638da5cb5b116100f25780638da5cb5b1461052457806391b7f5ed1461054257806395d89b4114610562578063a22cb46514610577578063a8e9a5391461059757610225565b806370a08231146104a4578063715018a6146104c45780637f81be69146104d95780638a9cd3a11461050f57610225565b806328f7702b116101b15780634c0ee1c6116101755780634c0ee1c61461040f5780634f6ccce71461042f57806355f804b31461044f578063626be5671461046f5780636352211e1461048457610225565b806328f7702b1461035c5780632f745c591461038c57806332cb6b0c146103ac57806342842e0e146103c2578063438b6300146103e257610225565b806309f21f6a116101f857806309f21f6a146102db5780630d39fc81146102fb5780631249c58b1461031f57806318160ddd1461032757806323b872dd1461033c57610225565b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004612670565b610700565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461072d565b60405161025691906127d8565b34801561028d57600080fd5b506102a161029c3660046126ee565b6107bf565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046125e2565b610859565b005b3480156102e757600080fd5b506102d96102f63660046124b0565b61096f565b34801561030757600080fd5b5061031160115481565b604051908152602001610256565b6102d9610a33565b34801561033357600080fd5b50600854610311565b34801561034857600080fd5b506102d9610357366004612504565b610b6c565b34801561036857600080fd5b5061024a6103773660046124b0565b60106020526000908152604090205460ff1681565b34801561039857600080fd5b506103116103a73660046125e2565b610b9d565b3480156103b857600080fd5b506103116122b881565b3480156103ce57600080fd5b506102d96103dd366004612504565b610c36565b3480156103ee57600080fd5b506104026103fd3660046124b0565b610c51565b6040516102569190612794565b34801561041b57600080fd5b506102d961042a36600461260d565b610d0f565b34801561043b57600080fd5b5061031161044a3660046126ee565b610f6f565b34801561045b57600080fd5b506102d961046a3660046126a8565b611010565b34801561047b57600080fd5b5061031161104d565b34801561049057600080fd5b506102a161049f3660046126ee565b61105d565b3480156104b057600080fd5b506103116104bf3660046124b0565b6110d4565b3480156104d057600080fd5b506102d961115b565b3480156104e557600080fd5b506102a16104f43660046126ee565b6000908152600260205260409020546001600160a01b031690565b34801561051b57600080fd5b506102d9611191565b34801561053057600080fd5b50600a546001600160a01b03166102a1565b34801561054e57600080fd5b506102d961055d3660046126ee565b6111fc565b34801561056e57600080fd5b50610274611262565b34801561058357600080fd5b506102d96105923660046125ae565b611271565b3480156105a357600080fd5b50600f546102a1906001600160a01b031681565b3480156105c357600080fd5b506102d96105d2366004612544565b611343565b3480156105e357600080fd5b506102d96105f2366004612656565b61137b565b34801561060357600080fd5b50610311600181565b34801561061857600080fd5b506102d96106273660046124b0565b6113eb565b34801561063857600080fd5b506102746106473660046126ee565b61145f565b34801561065857600080fd5b5061027461153a565b34801561066d57600080fd5b50610311600b5481565b34801561068357600080fd5b5061024a6106923660046124cc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106cc57600080fd5b506102a16106db36600461260d565b6115c8565b3480156106ec57600080fd5b506102d96106fb3660046124b0565b611619565b60006001600160e01b0319821663780e9d6360e01b14806107255750610725826116b1565b90505b919050565b60606000805461073c9061295e565b80601f01602080910402602001604051908101604052809291908181526020018280546107689061295e565b80156107b55780601f1061078a576101008083540402835291602001916107b5565b820191906000526020600020905b81548152906001019060200180831161079857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661083d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108648261105d565b9050806001600160a01b0316836001600160a01b031614156108d25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610834565b336001600160a01b03821614806108ee57506108ee8133610692565b6109605760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610834565b61096a8383611701565b505050565b600a546001600160a01b031633146109995760405162461bcd60e51b81526004016108349061283d565b6000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146109e6576040519150601f19603f3d011682016040523d82523d6000602084013e6109eb565b606091505b5050905080610a2f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610834565b5050565b600d5460ff1615610a775760405162461bcd60e51b815260206004820152600e60248201526d29b0b632b9903737ba1037b832b760911b6044820152606401610834565b6000610a8161176f565b90506122b8610a8f60085490565b610a9a9060016128ef565b1115610ab85760405162461bcd60e51b8152600401610834906128c3565b3460115414610af75760405162461bcd60e51b815260206004820152600b60248201526a3b30b63ab29032b93937b960a91b6044820152606401610834565b6000818152600260205260409020546001600160a01b0316158015610b1c5750600081115b610b5f5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88185b1c9958591e481b5a5b9d195960621b6044820152606401610834565b610b69338261178a565b50565b610b7633826117dc565b610b925760405162461bcd60e51b815260040161083490612872565b61096a8383836118cf565b6000610ba8836110d4565b8210610c0a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610834565b506001600160a01b03821660009081526006602090815260408083208484529091529020545b92915050565b61096a83838360405180602001604052806000815250611343565b60606000610c5e836110d4565b905060008167ffffffffffffffff811115610c8957634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cb2578160200160208202803683370190505b50905060005b82811015610d0757610cca8582610b9d565b828281518110610cea57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610cff81612999565b915050610cb8565b509392505050565b600d5460ff1615610d535760405162461bcd60e51b815260206004820152600e60248201526d29b0b632b9903737ba1037b832b760911b6044820152606401610834565b6000610d5d61176f565b90506000610d6d868587866115c8565b90506122b8610d7b60085490565b610d869060016128ef565b1115610da45760405162461bcd60e51b8152600401610834906128c3565b600f546001600160a01b03828116911614610dfa5760405162461bcd60e51b8152602060048201526016602482015275139bdd08185d5d1a1bdc9a5e9959081d1bc81b5a5b9d60521b6044820152606401610834565b6000828152600260205260409020546001600160a01b0316158015610e1f5750600082115b610e625760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88185b1c9958591e481b5a5b9d195960621b6044820152606401610834565b6000848152600c602052604090205460ff1615610eb75760405162461bcd60e51b8152602060048201526013602482015272636f646520616c72656164792065786973747360681b6044820152606401610834565b6001600160a01b03861660009081526010602052604090205460ff1615610f205760405162461bcd60e51b815260206004820181905260248201527f596f75206861766520616c7265616479206d696e7420612066726565204e46546044820152606401610834565b6000848152600c602090815260408083208054600160ff1991821681179092556001600160a01b038b1685526010909352922080549091169091179055610f67868361178a565b505050505050565b6000610f7a60085490565b8210610fdd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610834565b60088281548110610ffe57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b0316331461103a5760405162461bcd60e51b81526004016108349061283d565b8051610a2f90600e906020840190612372565b600061105860125490565b905090565b6000818152600260205260408120546001600160a01b0316806107255760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610834565b60006001600160a01b03821661113f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610834565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111855760405162461bcd60e51b81526004016108349061283d565b61118f6000611a7a565b565b600a546001600160a01b031633146111bb5760405162461bcd60e51b81526004016108349061283d565b60006111c561176f565b90506122b86111d360085490565b6111de9060016128ef565b1115610af75760405162461bcd60e51b8152600401610834906128c3565b600a546001600160a01b031633146112265760405162461bcd60e51b81526004016108349061283d565b60118190556040518181527f613ef1790985f92fcbf3d3385ea3573b262f936f2b73567c31f8b50c6e509ea0906020015b60405180910390a150565b60606001805461073c9061295e565b6001600160a01b0382163314156112ca5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610834565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611337911515815260200190565b60405180910390a35050565b61134d33836117dc565b6113695760405162461bcd60e51b815260040161083490612872565b61137584848484611acc565b50505050565b600a546001600160a01b031633146113a55760405162461bcd60e51b81526004016108349061283d565b600d805460ff1916821515179081905560405160ff909116151581527f10e1c3fcaff06b68391033547e8f9bb8067d7c4a2e32659b0629153814d242d390602001611257565b600a546001600160a01b031633146114155760405162461bcd60e51b81526004016108349061283d565b600f80546001600160a01b0319166001600160a01b0383169081179091556040517f4b83c5eaae88eb40c4070b37064590e9a2cbe29a12752e9e42c4a51541723bfd90600090a250565b6000818152600260205260409020546060906001600160a01b03166114de5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610834565b60006114e8611aff565b905060008151116115085760405180602001604052806000815250611533565b8061151284611b0e565b604051602001611523929190612732565b6040516020818303038152906040525b9392505050565b600e80546115479061295e565b80601f01602080910402602001604051908101604052809291908181526020018280546115739061295e565b80156115c05780601f10611595576101008083540402835291602001916115c0565b820191906000526020600020905b8154815290600101906020018083116115a357829003601f168201915b505050505081565b604080516001600160a01b03861660208201529081018490526060810183905260009061160e906080016040516020818303038152906040528051906020012083611c29565b90505b949350505050565b600a546001600160a01b031633146116435760405162461bcd60e51b81526004016108349061283d565b6001600160a01b0381166116a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610834565b610b6981611a7a565b60006001600160e01b031982166380ac58cd60e01b14806116e257506001600160e01b03198216635b5e139f60e01b145b8061072557506301ffc9a760e01b6001600160e01b0319831614610725565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117368261105d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b54600090611780906001611ccd565b600b819055905090565b611798601280546001019055565b6117a28282611cd9565b60405181906001600160a01b038416907ffc84d0b7f87ad29178c646be08964a55be6fc6e67721bc36e7a41abdb7a9388790600090a35050565b6000818152600260205260408120546001600160a01b03166118555760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610834565b60006118608361105d565b9050806001600160a01b0316846001600160a01b0316148061189b5750836001600160a01b0316611890846107bf565b6001600160a01b0316145b8061161157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611611565b826001600160a01b03166118e28261105d565b6001600160a01b03161461194a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610834565b6001600160a01b0382166119ac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610834565b6119b7838383611e27565b6119c2600082611701565b6001600160a01b03831660009081526003602052604081208054600192906119eb90849061291b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a199084906128ef565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ad78484846118cf565b611ae384848484611ee4565b6113755760405162461bcd60e51b8152600401610834906127eb565b6060600e805461073c9061295e565b606081611b3357506040805180820190915260018152600360fc1b6020820152610728565b8160005b8115611b5d5780611b4781612999565b9150611b569050600a83612907565b9150611b37565b60008167ffffffffffffffff811115611b8657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bb0576020820181803683370190505b5090505b841561161157611bc560018361291b565b9150611bd2600a866129b4565b611bdd9060306128ef565b60f81b818381518110611c0057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c22600a86612907565b9450611bb4565b6000815160411415611c5d5760208201516040830151606084015160001a611c5386828585611fee565b9350505050610c30565b815160401415611c855760208201516040830151611c7c85838361218e565b92505050610c30565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610834565b600061153382846128ef565b6001600160a01b038216611d2f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610834565b6000818152600260205260409020546001600160a01b031615611d945760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610834565b611da060008383611e27565b6001600160a01b0382166000908152600360205260408120805460019290611dc99084906128ef565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316611e8257611e7d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ea5565b816001600160a01b0316836001600160a01b031614611ea557611ea583826121b8565b6001600160a01b038216611ec157611ebc81612255565b61096a565b826001600160a01b0316826001600160a01b03161461096a5761096a828261232e565b60006001600160a01b0384163b15611fe657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f28903390899088908890600401612761565b602060405180830381600087803b158015611f4257600080fd5b505af1925050508015611f72575060408051601f3d908101601f19168201909252611f6f9181019061268c565b60015b611fcc573d808015611fa0576040519150601f19603f3d011682016040523d82523d6000602084013e611fa5565b606091505b508051611fc45760405162461bcd60e51b8152600401610834906127eb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611611565b506001611611565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561206b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610834565b8360ff16601b148061208057508360ff16601c145b6120d75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610834565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa15801561212b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661160e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610834565b60006001600160ff1b03821660ff83901c601b016121ae86828785611fee565b9695505050505050565b600060016121c5846110d4565b6121cf919061291b565b600083815260076020526040902054909150808214612222576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122679060019061291b565b6000838152600960205260408120546008805493945090928490811061229d57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106122cc57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061231257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612339836110d4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461237e9061295e565b90600052602060002090601f0160209004810192826123a057600085556123e6565b82601f106123b957805160ff19168380011785556123e6565b828001600101855582156123e6579182015b828111156123e65782518255916020019190600101906123cb565b506123f29291506123f6565b5090565b5b808211156123f257600081556001016123f7565b600067ffffffffffffffff80841115612426576124266129f4565b604051601f8501601f19908116603f0116810190828211818310171561244e5761244e6129f4565b8160405280935085815286868601111561246757600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461072857600080fd5b600082601f8301126124a1578081fd5b6115338383356020850161240b565b6000602082840312156124c1578081fd5b813561153381612a0a565b600080604083850312156124de578081fd5b82356124e981612a0a565b915060208301356124f981612a0a565b809150509250929050565b600080600060608486031215612518578081fd5b833561252381612a0a565b9250602084013561253381612a0a565b929592945050506040919091013590565b60008060008060808587031215612559578081fd5b843561256481612a0a565b9350602085013561257481612a0a565b925060408501359150606085013567ffffffffffffffff811115612596578182fd5b6125a287828801612491565b91505092959194509250565b600080604083850312156125c0578182fd5b82356125cb81612a0a565b91506125d960208401612481565b90509250929050565b600080604083850312156125f4578182fd5b82356125ff81612a0a565b946020939093013593505050565b60008060008060808587031215612622578384fd5b843561262d81612a0a565b93506020850135925060408501359150606085013567ffffffffffffffff811115612596578182fd5b600060208284031215612667578081fd5b61153382612481565b600060208284031215612681578081fd5b813561153381612a1f565b60006020828403121561269d578081fd5b815161153381612a1f565b6000602082840312156126b9578081fd5b813567ffffffffffffffff8111156126cf578182fd5b8201601f810184136126df578182fd5b6116118482356020840161240b565b6000602082840312156126ff578081fd5b5035919050565b6000815180845261271e816020860160208601612932565b601f01601f19169290920160200192915050565b60008351612744818460208801612932565b835190830190612758818360208801612932565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121ae90830184612706565b6020808252825182820181905260009190848201906040850190845b818110156127cc578351835292840192918401916001016127b0565b50909695505050505050565b6000602082526115336020830184612706565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526012908201527113585e081cdd5c1c1b1e481c995858da195960721b604082015260600190565b60008219821115612902576129026129c8565b500190565b600082612916576129166129de565b500490565b60008282101561292d5761292d6129c8565b500390565b60005b8381101561294d578181015183820152602001612935565b838111156113755750506000910152565b60028104600182168061297257607f821691505b6020821081141561299357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129ad576129ad6129c8565b5060010190565b6000826129c3576129c36129de565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b6957600080fd5b6001600160e01b031981168114610b6957600080fdfea264697066735822122012cccca21a61f1baedfd1e1c94441e1847b3b1601e48461c4dd3588c110e95ee64736f6c63430008020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000375ab956c847b7b79bad08b349e59121f3d709c000000000000000000000000000000000000000000000000000b1a2bc2ec50000
-----Decoded View---------------
Arg [0] : _executorAddress (address): 0x375aB956c847B7b79bad08B349E59121f3d709C0
Arg [1] : _price (uint256): 50000000000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000375ab956c847b7b79bad08b349e59121f3d709c0
Arg [1] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Deployed Bytecode Sourcemap
56805:4373:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50291:224;;;;;;;;;;-1:-1:-1;50291:224:0;;;;;:::i;:::-;;:::i;:::-;;;8623:14:1;;8616:22;8598:41;;8586:2;8571:18;50291:224:0;;;;;;;;38252:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39811:221::-;;;;;;;;;;-1:-1:-1;39811:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6931:32:1;;;6913:51;;6901:2;6886:18;39811:221:0;6868:102:1;39334:411:0;;;;;;;;;;-1:-1:-1;39334:411:0;;;;;:::i;:::-;;:::i;:::-;;60992:183;;;;;;;;;;-1:-1:-1;60992:183:0;;;;;:::i;:::-;;:::i;57255:23::-;;;;;;;;;;;;;;;;;;;20933:25:1;;;20921:2;20906:18;57255:23:0;20888:76:1;59731:364:0;;;:::i;50931:113::-;;;;;;;;;;-1:-1:-1;51019:10:0;:17;50931:113;;40701:339;;;;;;;;;;-1:-1:-1;40701:339:0;;;;;:::i;:::-;;:::i;57205:43::-;;;;;;;;;;-1:-1:-1;57205:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50599:256;;;;;;;;;;-1:-1:-1;50599:256:0;;;;;:::i;:::-;;:::i;57285:41::-;;;;;;;;;;;;57322:4;57285:41;;41111:185;;;;;;;;;;-1:-1:-1;41111:185:0;;;;;:::i;:::-;;:::i;60287:349::-;;;;;;;;;;-1:-1:-1;60287:349:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58984:739::-;;;;;;;;;;-1:-1:-1;58984:739:0;;;;;:::i;:::-;;:::i;51121:233::-;;;;;;;;;;-1:-1:-1;51121:233:0;;;;;:::i;:::-;;:::i;57988:101::-;;;;;;;;;;-1:-1:-1;57988:101:0;;;;;:::i;:::-;;:::i;58097:103::-;;;;;;;;;;;;;:::i;37772:239::-;;;;;;;;;;-1:-1:-1;37772:239:0;;;;;:::i;:::-;;:::i;37502:208::-;;;;;;;;;;-1:-1:-1;37502:208:0;;;;;:::i;:::-;;:::i;26738:94::-;;;;;;;;;;;;;:::i;38076:109::-;;;;;;;;;;-1:-1:-1;38076:109:0;;;;;:::i;:::-;38134:7;38161:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38161:16:0;;38076:109;58668:308;;;;;;;;;;;;;:::i;26087:87::-;;;;;;;;;;-1:-1:-1;26160:6:0;;-1:-1:-1;;;;;26160:6:0;26087:87;;58536:127;;;;;;;;;;-1:-1:-1;58536:127:0;;;;;:::i;:::-;;:::i;38421:104::-;;;;;;;;;;;;;:::i;40104:295::-;;;;;;;;;;-1:-1:-1;40104:295:0;;;;;:::i;:::-;;:::i;57168:30::-;;;;;;;;;;-1:-1:-1;57168:30:0;;;;-1:-1:-1;;;;;57168:30:0;;;41367:328;;;;;;;;;;-1:-1:-1;41367:328:0;;;;;:::i;:::-;;:::i;60871:113::-;;;;;;;;;;-1:-1:-1;60871:113:0;;;;;:::i;:::-;;:::i;57011:36::-;;;;;;;;;;;;57046:1;57011:36;;58349:181;;;;;;;;;;-1:-1:-1;58349:181:0;;;;;:::i;:::-;;:::i;38596:334::-;;;;;;;;;;-1:-1:-1;38596:334:0;;;;;:::i;:::-;;:::i;57135:26::-;;;;;;;;;;;;;:::i;56973:31::-;;;;;;;;;;;;;;;;40470:164;;;;;;;;;;-1:-1:-1;40470:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;40591:25:0;;;40567:4;40591:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40470:164;60644:221;;;;;;;;;;-1:-1:-1;60644:221:0;;;;;:::i;:::-;;:::i;26987:192::-;;;;;;;;;;-1:-1:-1;26987:192:0;;;;;:::i;:::-;;:::i;50291:224::-;50393:4;-1:-1:-1;;;;;;50417:50:0;;-1:-1:-1;;;50417:50:0;;:90;;;50471:36;50495:11;50471:23;:36::i;:::-;50410:97;;50291:224;;;;:::o;38252:100::-;38306:13;38339:5;38332:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38252:100;:::o;39811:221::-;39887:7;43292:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43292:16:0;39907:73;;;;-1:-1:-1;;;39907:73:0;;16433:2:1;39907:73:0;;;16415:21:1;16472:2;16452:18;;;16445:30;16511:34;16491:18;;;16484:62;-1:-1:-1;;;16562:18:1;;;16555:42;16614:19;;39907:73:0;;;;;;;;;-1:-1:-1;40000:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40000:24:0;;39811:221::o;39334:411::-;39415:13;39431:23;39446:7;39431:14;:23::i;:::-;39415:39;;39479:5;-1:-1:-1;;;;;39473:11:0;:2;-1:-1:-1;;;;;39473:11:0;;;39465:57;;;;-1:-1:-1;;;39465:57:0;;18381:2:1;39465:57:0;;;18363:21:1;18420:2;18400:18;;;18393:30;18459:34;18439:18;;;18432:62;-1:-1:-1;;;18510:18:1;;;18503:31;18551:19;;39465:57:0;18353:223:1;39465:57:0;25018:10;-1:-1:-1;;;;;39557:21:0;;;;:62;;-1:-1:-1;39582:37:0;39599:5;25018:10;39606:12;24938:98;39582:37;39535:168;;;;-1:-1:-1;;;39535:168:0;;14423:2:1;39535:168:0;;;14405:21:1;14462:2;14442:18;;;14435:30;14501:34;14481:18;;;14474:62;14572:26;14552:18;;;14545:54;14616:19;;39535:168:0;14395:246:1;39535:168:0;39716:21;39725:2;39729:7;39716:8;:21::i;:::-;39334:411;;;:::o;60992:183::-;26160:6;;-1:-1:-1;;;;;26160:6:0;25018:10;26307:23;26299:68;;;;-1:-1:-1;;;26299:68:0;;;;;;;:::i;:::-;61061:12:::1;61079:2;-1:-1:-1::0;;;;;61079:7:0::1;61094:21;61079:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61060:60;;;61139:7;61131:36;;;::::0;-1:-1:-1;;;61131:36:0;;19126:2:1;61131:36:0::1;::::0;::::1;19108:21:1::0;19165:2;19145:18;;;19138:30;-1:-1:-1;;;19184:18:1;;;19177:46;19240:18;;61131:36:0::1;19098:166:1::0;61131:36:0::1;26378:1;60992:183:::0;:::o;59731:364::-;57819:5;;;;57818:6;57810:33;;;;-1:-1:-1;;;57810:33:0;;18783:2:1;57810:33:0;;;18765:21:1;18822:2;18802:18;;;18795:30;-1:-1:-1;;;18841:18:1;;;18834:44;18895:18;;57810:33:0;18755:164:1;57810:33:0;59782:17:::1;59802:16;:14;:16::i;:::-;59782:36;;57322:4;59837:13;51019:10:::0;:17;50931:113;;59837:13:::1;:17;::::0;59853:1:::1;59837:17;:::i;:::-;:31;;59829:62;;;;-1:-1:-1::0;;;59829:62:0::1;;;;;;;:::i;:::-;59922:9;59910:8;;:21;59902:45;;;::::0;-1:-1:-1;;;59902:45:0;;20649:2:1;59902:45:0::1;::::0;::::1;20631:21:1::0;20688:2;20668:18;;;20661:30;-1:-1:-1;;;20707:18:1;;;20700:41;20758:18;;59902:45:0::1;20621:161:1::0;59902:45:0::1;59999:1;38161:16:::0;;;:7;:16;;;;;;-1:-1:-1;;;;;38161:16:0;59966:35;:52;::::1;;;;60017:1;60005:9;:13;59966:52;59958:85;;;::::0;-1:-1:-1;;;59958:85:0;;10192:2:1;59958:85:0::1;::::0;::::1;10174:21:1::0;10231:2;10211:18;;;10204:30;-1:-1:-1;;;10250:18:1;;;10243:50;10310:18;;59958:85:0::1;10164:170:1::0;59958:85:0::1;60054:33;60065:10;60077:9;60054:10;:33::i;:::-;57854:1;59731:364::o:0;40701:339::-;40896:41;25018:10;40929:7;40896:18;:41::i;:::-;40888:103;;;;-1:-1:-1;;;40888:103:0;;;;;;;:::i;:::-;41004:28;41014:4;41020:2;41024:7;41004:9;:28::i;50599:256::-;50696:7;50732:23;50749:5;50732:16;:23::i;:::-;50724:5;:31;50716:87;;;;-1:-1:-1;;;50716:87:0;;10541:2:1;50716:87:0;;;10523:21:1;10580:2;10560:18;;;10553:30;10619:34;10599:18;;;10592:62;-1:-1:-1;;;10670:18:1;;;10663:41;10721:19;;50716:87:0;10513:233:1;50716:87:0;-1:-1:-1;;;;;;50821:19:0;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;50599:256;;;;;:::o;41111:185::-;41249:39;41266:4;41272:2;41276:7;41249:39;;;;;;;;;;;;:16;:39::i;60287:349::-;60349:16;60378:18;60399:17;60409:6;60399:9;:17::i;:::-;60378:38;;60427:25;60469:10;60455:25;;;;;;-1:-1:-1;;;60455:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60455:25:0;;60427:53;;60496:9;60491:112;60515:10;60511:1;:14;60491:112;;;60561:30;60581:6;60589:1;60561:19;:30::i;:::-;60547:8;60556:1;60547:11;;;;;;-1:-1:-1;;;60547:11:0;;;;;;;;;;;;;;;;;;:44;60527:3;;;;:::i;:::-;;;;60491:112;;;-1:-1:-1;60620:8:0;60287:349;-1:-1:-1;;;60287:349:0:o;58984:739::-;57819:5;;;;57818:6;57810:33;;;;-1:-1:-1;;;57810:33:0;;18783:2:1;57810:33:0;;;18765:21:1;18822:2;18802:18;;;18795:30;-1:-1:-1;;;18841:18:1;;;18834:44;18895:18;;57810:33:0;18755:164:1;57810:33:0;59107:17:::1;59127:16;:14;:16::i;:::-;59107:36;;59154:19;59176:47;59192:2;59196:4;59201:10;59212;59176:15;:47::i;:::-;59154:69;;57322:4;59242:13;51019:10:::0;:17;50931:113;;59242:13:::1;:17;::::0;59258:1:::1;59242:17;:::i;:::-;:31;;59234:62;;;;-1:-1:-1::0;;;59234:62:0::1;;;;;;;:::i;:::-;59330:15;::::0;-1:-1:-1;;;;;59315:30:0;;::::1;59330:15:::0;::::1;59315:30;59307:65;;;::::0;-1:-1:-1;;;59307:65:0;;13711:2:1;59307:65:0::1;::::0;::::1;13693:21:1::0;13750:2;13730:18;;;13723:30;-1:-1:-1;;;13769:18:1;;;13762:52;13831:18;;59307:65:0::1;13683:172:1::0;59307:65:0::1;59424:1;38161:16:::0;;;:7;:16;;;;;;-1:-1:-1;;;;;38161:16:0;59391:35;:52;::::1;;;;59442:1;59430:9;:13;59391:52;59383:85;;;::::0;-1:-1:-1;;;59383:85:0;;10192:2:1;59383:85:0::1;::::0;::::1;10174:21:1::0;10231:2;10211:18;;;10204:30;-1:-1:-1;;;10250:18:1;;;10243:50;10310:18;;59383:85:0::1;10164:170:1::0;59383:85:0::1;59487:14;::::0;;;:8:::1;:14;::::0;;;;;::::1;;:23;59479:55;;;::::0;-1:-1:-1;;;59479:55:0;;18033:2:1;59479:55:0::1;::::0;::::1;18015:21:1::0;18072:2;18052:18;;;18045:30;-1:-1:-1;;;18091:18:1;;;18084:49;18150:18;;59479:55:0::1;18005:169:1::0;59479:55:0::1;-1:-1:-1::0;;;;;59553:15:0;::::1;;::::0;;;:11:::1;:15;::::0;;;;;::::1;;:24;59545:69;;;::::0;-1:-1:-1;;;59545:69:0;;14062:2:1;59545:69:0::1;::::0;::::1;14044:21:1::0;;;14081:18;;;14074:30;14140:34;14120:18;;;14113:62;14192:18;;59545:69:0::1;14034:182:1::0;59545:69:0::1;59625:14;::::0;;;:8:::1;:14;::::0;;;;;;;:21;;59642:4:::1;-1:-1:-1::0;;59625:21:0;;::::1;::::0;::::1;::::0;;;-1:-1:-1;;;;;59657:15:0;::::1;::::0;;:11:::1;:15:::0;;;;;:22;;;;::::1;::::0;;::::1;::::0;;59690:25:::1;59657:15:::0;59705:9;59690:10:::1;:25::i;:::-;57854:1;;58984:739:::0;;;;:::o;51121:233::-;51196:7;51232:30;51019:10;:17;50931:113;;51232:30;51224:5;:38;51216:95;;;;-1:-1:-1;;;51216:95:0;;20236:2:1;51216:95:0;;;20218:21:1;20275:2;20255:18;;;20248:30;20314:34;20294:18;;;20287:62;-1:-1:-1;;;20365:18:1;;;20358:42;20417:19;;51216:95:0;20208:234:1;51216:95:0;51329:10;51340:5;51329:17;;;;;;-1:-1:-1;;;51329:17:0;;;;;;;;;;;;;;;;;51322:24;;51121:233;;;:::o;57988:101::-;26160:6;;-1:-1:-1;;;;;26160:6:0;25018:10;26307:23;26299:68;;;;-1:-1:-1;;;26299:68:0;;;;;;;:::i;:::-;58059:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;58097:103::-:0;58140:7;58167:25;:15;28215:14;;28123:114;58167:25;58160:32;;58097:103;:::o;37772:239::-;37844:7;37880:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37880:16:0;37915:19;37907:73;;;;-1:-1:-1;;;37907:73:0;;15259:2:1;37907:73:0;;;15241:21:1;15298:2;15278:18;;;15271:30;15337:34;15317:18;;;15310:62;-1:-1:-1;;;15388:18:1;;;15381:39;15437:19;;37907:73:0;15231:231:1;37502:208:0;37574:7;-1:-1:-1;;;;;37602:19:0;;37594:74;;;;-1:-1:-1;;;37594:74:0;;14848:2:1;37594:74:0;;;14830:21:1;14887:2;14867:18;;;14860:30;14926:34;14906:18;;;14899:62;-1:-1:-1;;;14977:18:1;;;14970:40;15027:19;;37594:74:0;14820:232:1;37594:74:0;-1:-1:-1;;;;;;37686:16:0;;;;;:9;:16;;;;;;;37502:208::o;26738:94::-;26160:6;;-1:-1:-1;;;;;26160:6:0;25018:10;26307:23;26299:68;;;;-1:-1:-1;;;26299:68:0;;;;;;;:::i;:::-;26803:21:::1;26821:1;26803:9;:21::i;:::-;26738:94::o:0;58668:308::-;26160:6;;-1:-1:-1;;;;;26160:6:0;25018:10;26307:23;26299:68;;;;-1:-1:-1;;;26299:68:0;;;;;;;:::i;:::-;58719:17:::1;58739:16;:14;:16::i;:::-;58719:36;;57322:4;58774:13;51019:10:::0;:17;50931:113;;58774:13:::1;:17;::::0;58790:1:::1;58774:17;:::i;:::-;:31;;58766:62;;;;-1:-1:-1::0;;;58766:62:0::1;;;;;;;:::i;58536:127::-:0;26160:6;;-1:-1:-1;;;;;26160:6:0;25018:10;26307:23;26299:68;;;;-1:-1:-1;;;26299:68:0;;;;;;;:::i;:::-;58598:8:::1;:17:::0;;;58631:24:::1;::::0;20933:25:1;;;58631:24:0::1;::::0;20921:2:1;20906:18;58631:24:0::1;;;;;;;;58536:127:::0;:::o;38421:104::-;38477:13;38510:7;38503:14;;;;;:::i;40104:295::-;-1:-1:-1;;;;;40207:24:0;;25018:10;40207:24;;40199:62;;;;-1:-1:-1;;;40199:62:0;;12541:2:1;40199:62:0;;;12523:21:1;12580:2;12560:18;;;12553:30;12619:27;12599:18;;;12592:55;12664:18;;40199:62:0;12513:175:1;40199:62:0;25018:10;40274:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40274:42:0;;;;;;;;;;:53;;-1:-1:-1;;40274:53:0;;;;;;;:42;-1:-1:-1;;;;;40343:48:0;;40382:8;40343:48;;;;8623:14:1;8616:22;8598:41;;8586:2;8571:18;;8553:92;40343:48:0;;;;;;;;40104:295;;:::o;41367:328::-;41542:41;25018:10;41575:7;41542:18;:41::i;:::-;41534:103;;;;-1:-1:-1;;;41534:103:0;;;;;;;:::i;:::-;41648:39;41662:4;41668:2;41672:7;41681:5;41648:13;:39::i;:::-;41367:328;;;;:::o;60871:113::-;26160:6;;-1:-1:-1;;;;;26160:6:0;25018:10;26307:23;26299:68;;;;-1:-1:-1;;;26299:68:0;;;;;;;:::i;:::-;60929:5:::1;:14:::0;;-1:-1:-1;;60929:14:0::1;::::0;::::1;;;::::0;;;;60959:17:::1;::::0;60929:14:::1;60970:5:::0;;::::1;8623:14:1::0;8616:22;8598:41;;60959:17:0::1;::::0;8586:2:1;8571:18;60959:17:0::1;8553:92:1::0;58349:181:0;26160:6;;-1:-1:-1;;;;;26160:6:0;25018:10;26307:23;26299:68;;;;-1:-1:-1;;;26299:68:0;;;;;;;:::i;:::-;58431:15:::1;:34:::0;;-1:-1:-1;;;;;;58431:34:0::1;-1:-1:-1::0;;;;;58431:34:0;::::1;::::0;;::::1;::::0;;;58481:41:::1;::::0;::::1;::::0;-1:-1:-1;;58481:41:0::1;58349:181:::0;:::o;38596:334::-;43268:4;43292:16;;;:7;:16;;;;;;38669:13;;-1:-1:-1;;;;;43292:16:0;38695:76;;;;-1:-1:-1;;;38695:76:0;;17617:2:1;38695:76:0;;;17599:21:1;17656:2;17636:18;;;17629:30;17695:34;17675:18;;;17668:62;-1:-1:-1;;;17746:18:1;;;17739:45;17801:19;;38695:76:0;17589:237:1;38695:76:0;38784:21;38808:10;:8;:10::i;:::-;38784:34;;38860:1;38842:7;38836:21;:25;:86;;;;;;;;;;;;;;;;;38888:7;38897:18;:7;:16;:18::i;:::-;38871:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38836:86;38829:93;38596:334;-1:-1:-1;;;38596:334:0:o;57135:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60644:221::-;60811:32;;;-1:-1:-1;;;;;7688:32:1;;60811::0;;;7670:51:1;7737:18;;;7730:34;;;7780:18;;;7773:34;;;60761:7:0;;60787:70;;7643:18:1;;60811:32:0;;;;;;;;;;;;60801:43;;;;;;60846:10;60787:13;:70::i;:::-;60780:77;;60644:221;;;;;;;:::o;26987:192::-;26160:6;;-1:-1:-1;;;;;26160:6:0;25018:10;26307:23;26299:68;;;;-1:-1:-1;;;26299:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27076:22:0;::::1;27068:73;;;::::0;-1:-1:-1;;;27068:73:0;;11372:2:1;27068:73:0::1;::::0;::::1;11354:21:1::0;11411:2;11391:18;;;11384:30;11450:34;11430:18;;;11423:62;-1:-1:-1;;;11501:18:1;;;11494:36;11547:19;;27068:73:0::1;11344:228:1::0;27068:73:0::1;27152:19;27162:8;27152:9;:19::i;37145:293::-:0;37247:4;-1:-1:-1;;;;;;37280:40:0;;-1:-1:-1;;;37280:40:0;;:101;;-1:-1:-1;;;;;;;37333:48:0;;-1:-1:-1;;;37333:48:0;37280:101;:150;;;-1:-1:-1;;;;;;;;;;16363:40:0;;;37394:36;16254:157;47203:174;47278:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;47278:29:0;-1:-1:-1;;;;;47278:29:0;;;;;;;;:24;;47332:23;47278:24;47332:14;:23::i;:::-;-1:-1:-1;;;;;47323:46:0;;;;;;;;;;;47203:174;;:::o;58206:135::-;58284:12;;58249:7;;58284:19;;58301:1;58284:16;:19::i;:::-;58269:12;:34;;;;-1:-1:-1;58206:135:0;:::o;60103:176::-;60173:27;:15;28334:19;;28352:1;28334:19;;;28245:127;60173:27;60211:20;60217:3;60222:8;60211:5;:20::i;:::-;60247:24;;60262:8;;-1:-1:-1;;;;;60247:24:0;;;;;;;;60103:176;;:::o;43497:348::-;43590:4;43292:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43292:16:0;43607:73;;;;-1:-1:-1;;;43607:73:0;;13298:2:1;43607:73:0;;;13280:21:1;13337:2;13317:18;;;13310:30;13376:34;13356:18;;;13349:62;-1:-1:-1;;;13427:18:1;;;13420:42;13479:19;;43607:73:0;13270:234:1;43607:73:0;43691:13;43707:23;43722:7;43707:14;:23::i;:::-;43691:39;;43760:5;-1:-1:-1;;;;;43749:16:0;:7;-1:-1:-1;;;;;43749:16:0;;:51;;;;43793:7;-1:-1:-1;;;;;43769:31:0;:20;43781:7;43769:11;:20::i;:::-;-1:-1:-1;;;;;43769:31:0;;43749:51;:87;;;-1:-1:-1;;;;;;40591:25:0;;;40567:4;40591:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;43804:32;40470:164;46507:578;46666:4;-1:-1:-1;;;;;46639:31:0;:23;46654:7;46639:14;:23::i;:::-;-1:-1:-1;;;;;46639:31:0;;46631:85;;;;-1:-1:-1;;;46631:85:0;;17207:2:1;46631:85:0;;;17189:21:1;17246:2;17226:18;;;17219:30;17285:34;17265:18;;;17258:62;-1:-1:-1;;;17336:18:1;;;17329:39;17385:19;;46631:85:0;17179:231:1;46631:85:0;-1:-1:-1;;;;;46735:16:0;;46727:65;;;;-1:-1:-1;;;46727:65:0;;12136:2:1;46727:65:0;;;12118:21:1;12175:2;12155:18;;;12148:30;12214:34;12194:18;;;12187:62;-1:-1:-1;;;12265:18:1;;;12258:34;12309:19;;46727:65:0;12108:226:1;46727:65:0;46805:39;46826:4;46832:2;46836:7;46805:20;:39::i;:::-;46909:29;46926:1;46930:7;46909:8;:29::i;:::-;-1:-1:-1;;;;;46951:15:0;;;;;;:9;:15;;;;;:20;;46970:1;;46951:15;:20;;46970:1;;46951:20;:::i;:::-;;;;-1:-1:-1;;;;;;;46982:13:0;;;;;;:9;:13;;;;;:18;;46999:1;;46982:13;:18;;46999:1;;46982:18;:::i;:::-;;;;-1:-1:-1;;47011:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47011:21:0;-1:-1:-1;;;;;47011:21:0;;;;;;;;;47050:27;;47011:16;;47050:27;;;;;;;46507:578;;;:::o;27187:173::-;27262:6;;;-1:-1:-1;;;;;27279:17:0;;;-1:-1:-1;;;;;;27279:17:0;;;;;;;27312:40;;27262:6;;;27279:17;27262:6;;27312:40;;27243:16;;27312:40;27187:173;;:::o;42577:315::-;42734:28;42744:4;42750:2;42754:7;42734:9;:28::i;:::-;42781:48;42804:4;42810:2;42814:7;42823:5;42781:22;:48::i;:::-;42773:111;;;;-1:-1:-1;;;42773:111:0;;;;;;;:::i;57869:113::-;57929:13;57962:12;57955:19;;;;;:::i;22615:723::-;22671:13;22892:10;22888:53;;-1:-1:-1;22919:10:0;;;;;;;;;;;;-1:-1:-1;;;22919:10:0;;;;;;22888:53;22966:5;22951:12;23007:78;23014:9;;23007:78;;23040:8;;;;:::i;:::-;;-1:-1:-1;23063:10:0;;-1:-1:-1;23071:2:0;23063:10;;:::i;:::-;;;23007:78;;;23095:19;23127:6;23117:17;;;;;;-1:-1:-1;;;23117:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23117:17:0;;23095:39;;23145:154;23152:10;;23145:154;;23179:11;23189:1;23179:11;;:::i;:::-;;-1:-1:-1;23248:10:0;23256:2;23248:5;:10;:::i;:::-;23235:24;;:2;:24;:::i;:::-;23222:39;;23205:6;23212;23205:14;;;;;;-1:-1:-1;;;23205:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;23205:56:0;;;;;;;;-1:-1:-1;23276:11:0;23285:2;23276:11;;:::i;:::-;;;23145:154;;17698:1270;17776:7;17996:9;:16;18016:2;17996:22;17992:969;;;18292:4;18277:20;;18271:27;18342:4;18327:20;;18321:27;18400:4;18385:20;;18379:27;18035:9;18371:36;18443:22;18451:4;18371:36;18271:27;18321;18443:7;:22::i;:::-;18436:29;;;;;;;17992:969;18487:9;:16;18507:2;18487:22;18483:478;;;18762:4;18747:20;;18741:27;18813:4;18798:20;;18792:27;18855:20;18863:4;18741:27;18792;18855:7;:20::i;:::-;18848:27;;;;;;18483:478;18908:41;;-1:-1:-1;;;18908:41:0;;9832:2:1;18908:41:0;;;9814:21:1;9871:2;9851:18;;;9844:30;9910:33;9890:18;;;9883:61;9961:18;;18908:41:0;9804:181:1;2761:98:0;2819:7;2846:5;2850:1;2846;:5;:::i;45181:382::-;-1:-1:-1;;;;;45261:16:0;;45253:61;;;;-1:-1:-1;;;45253:61:0;;16072:2:1;45253:61:0;;;16054:21:1;;;16091:18;;;16084:30;16150:34;16130:18;;;16123:62;16202:18;;45253:61:0;16044:182:1;45253:61:0;43268:4;43292:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43292:16:0;:30;45325:58;;;;-1:-1:-1;;;45325:58:0;;11779:2:1;45325:58:0;;;11761:21:1;11818:2;11798:18;;;11791:30;11857;11837:18;;;11830:58;11905:18;;45325:58:0;11751:178:1;45325:58:0;45396:45;45425:1;45429:2;45433:7;45396:20;:45::i;:::-;-1:-1:-1;;;;;45454:13:0;;;;;;:9;:13;;;;;:18;;45471:1;;45454:13;:18;;45471:1;;45454:18;:::i;:::-;;;;-1:-1:-1;;45483:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;45483:21:0;-1:-1:-1;;;;;45483:21:0;;;;;;;;45522:33;;45483:16;;;45522:33;;45483:16;;45522:33;45181:382;;:::o;51967:589::-;-1:-1:-1;;;;;52173:18:0;;52169:187;;52208:40;52240:7;53383:10;:17;;53356:24;;;;:15;:24;;;;;:44;;;53411:24;;;;;;;;;;;;53279:164;52208:40;52169:187;;;52278:2;-1:-1:-1;;;;;52270:10:0;:4;-1:-1:-1;;;;;52270:10:0;;52266:90;;52297:47;52330:4;52336:7;52297:32;:47::i;:::-;-1:-1:-1;;;;;52370:16:0;;52366:183;;52403:45;52440:7;52403:36;:45::i;:::-;52366:183;;;52476:4;-1:-1:-1;;;;;52470:10:0;:2;-1:-1:-1;;;;;52470:10:0;;52466:83;;52497:40;52525:2;52529:7;52497:27;:40::i;47942:803::-;48097:4;-1:-1:-1;;;;;48118:13:0;;7961:20;8009:8;48114:624;;48154:72;;-1:-1:-1;;;48154:72:0;;-1:-1:-1;;;;;48154:36:0;;;;;:72;;25018:10;;48205:4;;48211:7;;48220:5;;48154:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48154:72:0;;;;;;;;-1:-1:-1;;48154:72:0;;;;;;;;;;;;:::i;:::-;;;48150:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48400:13:0;;48396:272;;48443:60;;-1:-1:-1;;;48443:60:0;;;;;;;:::i;48396:272::-;48618:6;48612:13;48603:6;48599:2;48595:15;48588:38;48150:533;-1:-1:-1;;;;;;48277:55:0;-1:-1:-1;;;48277:55:0;;-1:-1:-1;48270:62:0;;48114:624;-1:-1:-1;48722:4:0;48715:11;;19730:1512;19858:7;20797:66;20783:80;;;20761:164;;;;-1:-1:-1;;;20761:164:0;;12895:2:1;20761:164:0;;;12877:21:1;12934:2;12914:18;;;12907:30;12973:34;12953:18;;;12946:62;-1:-1:-1;;;13024:18:1;;;13017:32;13066:19;;20761:164:0;12867:224:1;20761:164:0;20944:1;:7;;20949:2;20944:7;:18;;;;20955:1;:7;;20960:2;20955:7;20944:18;20936:65;;;;-1:-1:-1;;;20936:65:0;;15669:2:1;20936:65:0;;;15651:21:1;15708:2;15688:18;;;15681:30;15747:34;15727:18;;;15720:62;-1:-1:-1;;;15798:18:1;;;15791:32;15840:19;;20936:65:0;15641:224:1;20936:65:0;21116:24;;;21099:14;21116:24;;;;;;;;;8877:25:1;;;8950:4;8938:17;;8918:18;;;8911:45;;;;8972:18;;;8965:34;;;9015:18;;;9008:34;;;21116:24:0;;8849:19:1;;21116:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;21116:24:0;;-1:-1:-1;;21116:24:0;;;-1:-1:-1;;;;;;;21159:20:0;;21151:57;;;;-1:-1:-1;;;21151:57:0;;9479:2:1;21151:57:0;;;9461:21:1;9518:2;9498:18;;;9491:30;9557:26;9537:18;;;9530:54;9601:18;;21151:57:0;9451:174:1;19228:371:0;19339:7;-1:-1:-1;;;;;19426:75:0;;19528:3;19524:12;;;19538:2;19520:21;19569:22;19577:4;19520:21;19586:1;19426:75;19569:7;:22::i;:::-;19562:29;19228:371;-1:-1:-1;;;;;;19228:371:0:o;54070:988::-;54336:22;54386:1;54361:22;54378:4;54361:16;:22::i;:::-;:26;;;;:::i;:::-;54398:18;54419:26;;;:17;:26;;;;;;54336:51;;-1:-1:-1;54552:28:0;;;54548:328;;-1:-1:-1;;;;;54619:18:0;;54597:19;54619:18;;;:12;:18;;;;;;;;:34;;;;;;;;;54670:30;;;;;;:44;;;54787:30;;:17;:30;;;;;:43;;;54548:328;-1:-1:-1;54972:26:0;;;;:17;:26;;;;;;;;54965:33;;;-1:-1:-1;;;;;55016:18:0;;;;;:12;:18;;;;;:34;;;;;;;55009:41;54070:988::o;55353:1079::-;55631:10;:17;55606:22;;55631:21;;55651:1;;55631:21;:::i;:::-;55663:18;55684:24;;;:15;:24;;;;;;56057:10;:26;;55606:46;;-1:-1:-1;55684:24:0;;55606:46;;56057:26;;;;-1:-1:-1;;;56057:26:0;;;;;;;;;;;;;;;;;56035:48;;56121:11;56096:10;56107;56096:22;;;;;;-1:-1:-1;;;56096:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;56201:28;;;:15;:28;;;;;;;:41;;;56373:24;;;;;56366:31;56408:10;:16;;;;;-1:-1:-1;;;56408:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;55353:1079;;;;:::o;52857:221::-;52942:14;52959:20;52976:2;52959:16;:20::i;:::-;-1:-1:-1;;;;;52990:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;53035:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;52857:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:2;;800:1;797;790:12;815:228;;910:3;903:4;895:6;891:17;887:27;877:2;;932:5;925;918:20;877:2;958:79;1033:3;1024:6;1011:20;1004:4;996:6;992:17;958:79;:::i;1048:257::-;;1160:2;1148:9;1139:7;1135:23;1131:32;1128:2;;;1181:6;1173;1166:22;1128:2;1225:9;1212:23;1244:31;1269:5;1244:31;:::i;1580:398::-;;;1709:2;1697:9;1688:7;1684:23;1680:32;1677:2;;;1730:6;1722;1715:22;1677:2;1774:9;1761:23;1793:31;1818:5;1793:31;:::i;:::-;1843:5;-1:-1:-1;1900:2:1;1885:18;;1872:32;1913:33;1872:32;1913:33;:::i;:::-;1965:7;1955:17;;;1667:311;;;;;:::o;1983:466::-;;;;2129:2;2117:9;2108:7;2104:23;2100:32;2097:2;;;2150:6;2142;2135:22;2097:2;2194:9;2181:23;2213:31;2238:5;2213:31;:::i;:::-;2263:5;-1:-1:-1;2320:2:1;2305:18;;2292:32;2333:33;2292:32;2333:33;:::i;:::-;2087:362;;2385:7;;-1:-1:-1;;;2439:2:1;2424:18;;;;2411:32;;2087:362::o;2454:685::-;;;;;2626:3;2614:9;2605:7;2601:23;2597:33;2594:2;;;2648:6;2640;2633:22;2594:2;2692:9;2679:23;2711:31;2736:5;2711:31;:::i;:::-;2761:5;-1:-1:-1;2818:2:1;2803:18;;2790:32;2831:33;2790:32;2831:33;:::i;:::-;2883:7;-1:-1:-1;2937:2:1;2922:18;;2909:32;;-1:-1:-1;2992:2:1;2977:18;;2964:32;3019:18;3008:30;;3005:2;;;3056:6;3048;3041:22;3005:2;3084:49;3125:7;3116:6;3105:9;3101:22;3084:49;:::i;:::-;3074:59;;;2584:555;;;;;;;:::o;3144:325::-;;;3270:2;3258:9;3249:7;3245:23;3241:32;3238:2;;;3291:6;3283;3276:22;3238:2;3335:9;3322:23;3354:31;3379:5;3354:31;:::i;:::-;3404:5;-1:-1:-1;3428:35:1;3459:2;3444:18;;3428:35;:::i;:::-;3418:45;;3228:241;;;;;:::o;3474:325::-;;;3603:2;3591:9;3582:7;3578:23;3574:32;3571:2;;;3624:6;3616;3609:22;3571:2;3668:9;3655:23;3687:31;3712:5;3687:31;:::i;:::-;3737:5;3789:2;3774:18;;;;3761:32;;-1:-1:-1;;;3561:238:1:o;3804:612::-;;;;;3976:3;3964:9;3955:7;3951:23;3947:33;3944:2;;;3998:6;3990;3983:22;3944:2;4042:9;4029:23;4061:31;4086:5;4061:31;:::i;:::-;4111:5;-1:-1:-1;4163:2:1;4148:18;;4135:32;;-1:-1:-1;4214:2:1;4199:18;;4186:32;;-1:-1:-1;4269:2:1;4254:18;;4241:32;4296:18;4285:30;;4282:2;;;4333:6;4325;4318:22;4421:190;;4530:2;4518:9;4509:7;4505:23;4501:32;4498:2;;;4551:6;4543;4536:22;4498:2;4579:26;4595:9;4579:26;:::i;4616:255::-;;4727:2;4715:9;4706:7;4702:23;4698:32;4695:2;;;4748:6;4740;4733:22;4695:2;4792:9;4779:23;4811:30;4835:5;4811:30;:::i;4876:259::-;;4998:2;4986:9;4977:7;4973:23;4969:32;4966:2;;;5019:6;5011;5004:22;4966:2;5056:9;5050:16;5075:30;5099:5;5075:30;:::i;5140:480::-;;5262:2;5250:9;5241:7;5237:23;5233:32;5230:2;;;5283:6;5275;5268:22;5230:2;5328:9;5315:23;5361:18;5353:6;5350:30;5347:2;;;5398:6;5390;5383:22;5347:2;5426:22;;5479:4;5471:13;;5467:27;-1:-1:-1;5457:2:1;;5513:6;5505;5498:22;5457:2;5541:73;5606:7;5601:2;5588:16;5583:2;5579;5575:11;5541:73;:::i;5625:190::-;;5737:2;5725:9;5716:7;5712:23;5708:32;5705:2;;;5758:6;5750;5743:22;5705:2;-1:-1:-1;5786:23:1;;5695:120;-1:-1:-1;5695:120:1:o;5820:257::-;;5899:5;5893:12;5926:6;5921:3;5914:19;5942:63;5998:6;5991:4;5986:3;5982:14;5975:4;5968:5;5964:16;5942:63;:::i;:::-;6059:2;6038:15;-1:-1:-1;;6034:29:1;6025:39;;;;6066:4;6021:50;;5869:208;-1:-1:-1;;5869:208:1:o;6082:470::-;;6299:6;6293:13;6315:53;6361:6;6356:3;6349:4;6341:6;6337:17;6315:53;:::i;:::-;6431:13;;6390:16;;;;6453:57;6431:13;6390:16;6487:4;6475:17;;6453:57;:::i;:::-;6526:20;;6269:283;-1:-1:-1;;;;6269:283:1:o;6975:488::-;-1:-1:-1;;;;;7244:15:1;;;7226:34;;7296:15;;7291:2;7276:18;;7269:43;7343:2;7328:18;;7321:34;;;7391:3;7386:2;7371:18;;7364:31;;;6975:488;;7412:45;;7437:19;;7429:6;7412:45;:::i;7818:635::-;7989:2;8041:21;;;8111:13;;8014:18;;;8133:22;;;7818:635;;7989:2;8212:15;;;;8186:2;8171:18;;;7818:635;8258:169;8272:6;8269:1;8266:13;8258:169;;;8333:13;;8321:26;;8402:15;;;;8367:12;;;;8294:1;8287:9;8258:169;;;-1:-1:-1;8444:3:1;;7969:484;-1:-1:-1;;;;;;7969:484:1:o;9053:219::-;;9202:2;9191:9;9184:21;9222:44;9262:2;9251:9;9247:18;9239:6;9222:44;:::i;10751:414::-;10953:2;10935:21;;;10992:2;10972:18;;;10965:30;11031:34;11026:2;11011:18;;11004:62;-1:-1:-1;;;11097:2:1;11082:18;;11075:48;11155:3;11140:19;;10925:240::o;16644:356::-;16846:2;16828:21;;;16865:18;;;16858:30;16924:34;16919:2;16904:18;;16897:62;16991:2;16976:18;;16818:182::o;19269:413::-;19471:2;19453:21;;;19510:2;19490:18;;;19483:30;19549:34;19544:2;19529:18;;19522:62;-1:-1:-1;;;19615:2:1;19600:18;;19593:47;19672:3;19657:19;;19443:239::o;19687:342::-;19889:2;19871:21;;;19928:2;19908:18;;;19901:30;-1:-1:-1;;;19962:2:1;19947:18;;19940:48;20020:2;20005:18;;19861:168::o;20969:128::-;;21040:1;21036:6;21033:1;21030:13;21027:2;;;21046:18;;:::i;:::-;-1:-1:-1;21082:9:1;;21017:80::o;21102:120::-;;21168:1;21158:2;;21173:18;;:::i;:::-;-1:-1:-1;21207:9:1;;21148:74::o;21227:125::-;;21295:1;21292;21289:8;21286:2;;;21300:18;;:::i;:::-;-1:-1:-1;21337:9:1;;21276:76::o;21357:258::-;21429:1;21439:113;21453:6;21450:1;21447:13;21439:113;;;21529:11;;;21523:18;21510:11;;;21503:39;21475:2;21468:10;21439:113;;;21570:6;21567:1;21564:13;21561:2;;;-1:-1:-1;;21605:1:1;21587:16;;21580:27;21410:205::o;21620:380::-;21705:1;21695:12;;21752:1;21742:12;;;21763:2;;21817:4;21809:6;21805:17;21795:27;;21763:2;21870;21862:6;21859:14;21839:18;21836:38;21833:2;;;21916:10;21911:3;21907:20;21904:1;21897:31;21951:4;21948:1;21941:15;21979:4;21976:1;21969:15;21833:2;;21675:325;;;:::o;22005:135::-;;-1:-1:-1;;22065:17:1;;22062:2;;;22085:18;;:::i;:::-;-1:-1:-1;22132:1:1;22121:13;;22052:88::o;22145:112::-;;22203:1;22193:2;;22208:18;;:::i;:::-;-1:-1:-1;22242:9:1;;22183:74::o;22262:127::-;22323:10;22318:3;22314:20;22311:1;22304:31;22354:4;22351:1;22344:15;22378:4;22375:1;22368:15;22394:127;22455:10;22450:3;22446:20;22443:1;22436:31;22486:4;22483:1;22476:15;22510:4;22507:1;22500:15;22526:127;22587:10;22582:3;22578:20;22575:1;22568:31;22618:4;22615:1;22608:15;22642:4;22639:1;22632:15;22658:131;-1:-1:-1;;;;;22733:31:1;;22723:42;;22713:2;;22779:1;22776;22769:12;22794:131;-1:-1:-1;;;;;;22868:32:1;;22858:43;;22848:2;;22915:1;22912;22905:12
Swarm Source
ipfs://12cccca21a61f1baedfd1e1c94441e1847b3b1601e48461c4dd3588c110e95ee
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.