Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 EPG
Holders
11
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 EPGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EtihadPriveNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-08 */ // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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 _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} } // File: etihad.sol pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } /// @dev This is a contract used to add ERC2981 support to ERC721A abstract contract ERC2981 is IERC2981 { uint256 public constant MULTIPLIER = 10000; uint256 public value; error RoyaltyValueOutOfRange(); /// @dev Sets token royalties /// @param _value percentage (using 2 decimals - 10000 = 100, 0 = 0) function _setTokenRoyalty(uint256 _value) internal { if (_value > MULTIPLIER) revert RoyaltyValueOutOfRange(); value = _value; } } contract EtihadPriveNFT is ERC721, ERC2981, Ownable { using Strings for uint256; uint256 private constant ROYALTY = 500; uint256 private constant TOTAL_SUPPLY = 12; constructor() ERC721("Etihad x Prive Genesis", "EPG") { value = ROYALTY; for(uint256 id = 0; id < TOTAL_SUPPLY; id++) { _safeMint(msg.sender, id); } } // figure token id out function tokenURI(uint256 tokenId) public view override returns (string memory) { _requireMinted(tokenId); string memory baseURI_ = _baseURI(); return bytes(baseURI_).length > 0 ? string(abi.encodePacked(baseURI_, tokenId.toString(), ".json")) : ""; } function _baseURI() internal pure override returns (string memory) { return "ipfs://QmSjaxw5ePuHxChrYkG7E2aF7T2ay6D8Y3HYpzwKizLFC5/"; } /// @inheritdoc IERC2981 function royaltyInfo(uint256, uint256 _value) external view override returns (address receiver, uint256 royaltyAmount) { return (owner(), (_value * value) / MULTIPLIER); } function setTokenRoyalty(uint256 _value) external onlyOwner { _setTokenRoyalty(_value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"RoyaltyValueOutOfRange","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MULTIPLIER","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"uint256","name":"_value","type":"uint256"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"value","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601681526020017f45746968616420782050726976652047656e65736973000000000000000000008152506040518060400160405280600381526020017f455047000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200009692919062000856565b508060019080519060200190620000af92919062000856565b505050620000d2620000c66200011760201b60201c565b6200011f60201b60201c565b6101f460068190555060005b600c8110156200011057620000fa3382620001e560201b60201c565b8080620001079062000c7c565b915050620000de565b5062000df9565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002078282604051806020016040528060008152506200020b60201b60201c565b5050565b6200021d83836200027960201b60201c565b620002326000848484620004c060201b60201c565b62000274576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026b9062000a7b565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e39062000abf565b60405180910390fd5b620002fd816200067a60201b60201c565b1562000340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003379062000a9d565b60405180910390fd5b62000356600083836001620006c360201b60201c565b62000367816200067a60201b60201c565b15620003aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a19062000a9d565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620004bc600083836001620007f060201b60201c565b5050565b6000620004ee8473ffffffffffffffffffffffffffffffffffffffff16620007f660201b62000b901760201c565b156200066d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005206200011760201b60201c565b8786866040518563ffffffff1660e01b815260040162000544949392919062000a27565b602060405180830381600087803b1580156200055f57600080fd5b505af19250505080156200059357506040513d601f19601f820116820180604052508101906200059091906200091d565b60015b6200061c573d8060008114620005c6576040519150601f19603f3d011682016040523d82523d6000602084013e620005cb565b606091505b5060008151141562000614576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200060b9062000a7b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000672565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff16620006a4836200081960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6001811115620007ea57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146200075b5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000753919062000b6b565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620007e95780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620007e1919062000b0e565b925050819055505b5b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b828054620008649062000c46565b90600052602060002090601f016020900481019282620008885760008555620008d4565b82601f10620008a357805160ff1916838001178555620008d4565b82800160010185558215620008d4579182015b82811115620008d3578251825591602001919060010190620008b6565b5b509050620008e39190620008e7565b5090565b5b8082111562000902576000816000905550600101620008e8565b5090565b600081519050620009178162000ddf565b92915050565b60006020828403121562000936576200093562000d28565b5b6000620009468482850162000906565b91505092915050565b6200095a8162000ba6565b82525050565b60006200096d8262000ae1565b62000979818562000aec565b93506200098b81856020860162000c10565b620009968162000d2d565b840191505092915050565b6000620009b060328362000afd565b9150620009bd8262000d3e565b604082019050919050565b6000620009d7601c8362000afd565b9150620009e48262000d8d565b602082019050919050565b6000620009fe60208362000afd565b915062000a0b8262000db6565b602082019050919050565b62000a218162000c06565b82525050565b600060808201905062000a3e60008301876200094f565b62000a4d60208301866200094f565b62000a5c604083018562000a16565b818103606083015262000a70818462000960565b905095945050505050565b6000602082019050818103600083015262000a9681620009a1565b9050919050565b6000602082019050818103600083015262000ab881620009c8565b9050919050565b6000602082019050818103600083015262000ada81620009ef565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000b1b8262000c06565b915062000b288362000c06565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b605762000b5f62000cca565b5b828201905092915050565b600062000b788262000c06565b915062000b858362000c06565b92508282101562000b9b5762000b9a62000cca565b5b828203905092915050565b600062000bb38262000be6565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000c3057808201518184015260208101905062000c13565b8381111562000c40576000848401525b50505050565b6000600282049050600182168062000c5f57607f821691505b6020821081141562000c765762000c7562000cf9565b5b50919050565b600062000c898262000c06565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000cbf5762000cbe62000cca565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62000dea8162000bba565b811462000df657600080fd5b50565b6129718062000e096000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610332578063c87b56dd1461034e578063dd27c1611461037e578063e985e9c51461039a578063f2fde38b146103ca5761012c565b806370a08231146102a0578063715018a6146102d05780638da5cb5b146102da57806395d89b41146102f8578063a22cb465146103165761012c565b806323b872dd116100f457806323b872dd146101e95780632a55205a146102055780633fa4f2451461023657806342842e0e146102545780636352211e146102705761012c565b806301ffc9a714610131578063059f8b161461016157806306fdde031461017f578063081812fc1461019d578063095ea7b3146101cd575b600080fd5b61014b60048036038101906101469190611c33565b6103e6565b604051610158919061202d565b60405180910390f35b6101696104c8565b60405161017691906121ca565b60405180910390f35b6101876104ce565b6040516101949190612048565b60405180910390f35b6101b760048036038101906101b29190611c8d565b610560565b6040516101c49190611f9d565b60405180910390f35b6101e760048036038101906101e29190611bf3565b6105a6565b005b61020360048036038101906101fe9190611add565b6106be565b005b61021f600480360381019061021a9190611cba565b61071e565b60405161022d929190612004565b60405180910390f35b61023e61074f565b60405161024b91906121ca565b60405180910390f35b61026e60048036038101906102699190611add565b610755565b005b61028a60048036038101906102859190611c8d565b610775565b6040516102979190611f9d565b60405180910390f35b6102ba60048036038101906102b59190611a70565b6107fc565b6040516102c791906121ca565b60405180910390f35b6102d86108b4565b005b6102e26108c8565b6040516102ef9190611f9d565b60405180910390f35b6103006108f2565b60405161030d9190612048565b60405180910390f35b610330600480360381019061032b9190611bb3565b610984565b005b61034c60048036038101906103479190611b30565b61099a565b005b61036860048036038101906103639190611c8d565b6109fc565b6040516103759190612048565b60405180910390f35b61039860048036038101906103939190611c8d565b610a64565b005b6103b460048036038101906103af9190611a9d565b610a78565b6040516103c1919061202d565b60405180910390f35b6103e460048036038101906103df9190611a70565b610b0c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104c157506104c082610bb3565b5b9050919050565b61271081565b6060600080546104dd90612449565b80601f016020809104026020016040519081016040528092919081815260200182805461050990612449565b80156105565780601f1061052b57610100808354040283529160200191610556565b820191906000526020600020905b81548152906001019060200180831161053957829003601f168201915b5050505050905090565b600061056b82610c1d565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105b182610775565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610622576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106199061218a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610641610c68565b73ffffffffffffffffffffffffffffffffffffffff161480610670575061066f8161066a610c68565b610a78565b5b6106af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a6906121aa565b60405180910390fd5b6106b98383610c70565b505050565b6106cf6106c9610c68565b82610d29565b61070e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107059061206a565b60405180910390fd5b610719838383610dbe565b505050565b6000806107296108c8565b6127106006548561073a9190612305565b61074491906122d4565b915091509250929050565b60065481565b6107708383836040518060200160405280600081525061099a565b505050565b600080610781836110b8565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ea9061216a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561086d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108649061212a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108bc6110f5565b6108c66000611173565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461090190612449565b80601f016020809104026020016040519081016040528092919081815260200182805461092d90612449565b801561097a5780601f1061094f5761010080835404028352916020019161097a565b820191906000526020600020905b81548152906001019060200180831161095d57829003601f168201915b5050505050905090565b61099661098f610c68565b8383611239565b5050565b6109ab6109a5610c68565b83610d29565b6109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e19061206a565b60405180910390fd5b6109f6848484846113a6565b50505050565b6060610a0782610c1d565b6000610a11611402565b90506000815111610a315760405180602001604052806000815250610a5c565b80610a3b84611422565b604051602001610a4c929190611f6e565b6040516020818303038152906040525b915050919050565b610a6c6110f5565b610a75816114fa565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b146110f5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b906120aa565b60405180910390fd5b610b8d81611173565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610c2681611540565b610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c9061216a565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610ce383610775565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610d3583610775565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d775750610d768185610a78565b5b80610db557508373ffffffffffffffffffffffffffffffffffffffff16610d9d84610560565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610dde82610775565b73ffffffffffffffffffffffffffffffffffffffff1614610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b906120ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b906120ea565b60405180910390fd5b610eb18383836001611581565b8273ffffffffffffffffffffffffffffffffffffffff16610ed182610775565b73ffffffffffffffffffffffffffffffffffffffff1614610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e906120ca565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110b383838360016116a7565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6110fd610c68565b73ffffffffffffffffffffffffffffffffffffffff1661111b6108c8565b73ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111689061214a565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f9061210a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611399919061202d565b60405180910390a3505050565b6113b1848484610dbe565b6113bd848484846116ad565b6113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f39061208a565b60405180910390fd5b50505050565b606060405180606001604052806036815260200161290660369139905090565b60606000600161143184611844565b01905060008167ffffffffffffffff8111156114505761144f612539565b5b6040519080825280601f01601f1916602001820160405280156114825781602001600182028036833780820191505090505b509050600082602001820190505b6001156114ef578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816114d9576114d86124db565b5b04945060008514156114ea576114ef565b611490565b819350505050919050565b612710811115611536576040517f0a4c5cc800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060068190555050565b60008073ffffffffffffffffffffffffffffffffffffffff16611562836110b8565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60018111156116a157600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146116155780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461160d919061235f565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146116a05780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611698919061227e565b925050819055505b5b50505050565b50505050565b60006116ce8473ffffffffffffffffffffffffffffffffffffffff16610b90565b15611837578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026116f7610c68565b8786866040518563ffffffff1660e01b81526004016117199493929190611fb8565b602060405180830381600087803b15801561173357600080fd5b505af192505050801561176457506040513d601f19601f820116820180604052508101906117619190611c60565b60015b6117e7573d8060008114611794576040519150601f19603f3d011682016040523d82523d6000602084013e611799565b606091505b506000815114156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d69061208a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061183c565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106118a2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611898576118976124db565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106118df576d04ee2d6d415b85acef810000000083816118d5576118d46124db565b5b0492506020810190505b662386f26fc10000831061190e57662386f26fc100008381611904576119036124db565b5b0492506010810190505b6305f5e1008310611937576305f5e100838161192d5761192c6124db565b5b0492506008810190505b612710831061195c576127108381611952576119516124db565b5b0492506004810190505b6064831061197f5760648381611975576119746124db565b5b0492506002810190505b600a831061198e576001810190505b80915050919050565b60006119aa6119a58461220a565b6121e5565b9050828152602081018484840111156119c6576119c561256d565b5b6119d1848285612407565b509392505050565b6000813590506119e8816128a9565b92915050565b6000813590506119fd816128c0565b92915050565b600081359050611a12816128d7565b92915050565b600081519050611a27816128d7565b92915050565b600082601f830112611a4257611a41612568565b5b8135611a52848260208601611997565b91505092915050565b600081359050611a6a816128ee565b92915050565b600060208284031215611a8657611a85612577565b5b6000611a94848285016119d9565b91505092915050565b60008060408385031215611ab457611ab3612577565b5b6000611ac2858286016119d9565b9250506020611ad3858286016119d9565b9150509250929050565b600080600060608486031215611af657611af5612577565b5b6000611b04868287016119d9565b9350506020611b15868287016119d9565b9250506040611b2686828701611a5b565b9150509250925092565b60008060008060808587031215611b4a57611b49612577565b5b6000611b58878288016119d9565b9450506020611b69878288016119d9565b9350506040611b7a87828801611a5b565b925050606085013567ffffffffffffffff811115611b9b57611b9a612572565b5b611ba787828801611a2d565b91505092959194509250565b60008060408385031215611bca57611bc9612577565b5b6000611bd8858286016119d9565b9250506020611be9858286016119ee565b9150509250929050565b60008060408385031215611c0a57611c09612577565b5b6000611c18858286016119d9565b9250506020611c2985828601611a5b565b9150509250929050565b600060208284031215611c4957611c48612577565b5b6000611c5784828501611a03565b91505092915050565b600060208284031215611c7657611c75612577565b5b6000611c8484828501611a18565b91505092915050565b600060208284031215611ca357611ca2612577565b5b6000611cb184828501611a5b565b91505092915050565b60008060408385031215611cd157611cd0612577565b5b6000611cdf85828601611a5b565b9250506020611cf085828601611a5b565b9150509250929050565b611d0381612393565b82525050565b611d12816123a5565b82525050565b6000611d238261223b565b611d2d8185612251565b9350611d3d818560208601612416565b611d468161257c565b840191505092915050565b6000611d5c82612246565b611d668185612262565b9350611d76818560208601612416565b611d7f8161257c565b840191505092915050565b6000611d9582612246565b611d9f8185612273565b9350611daf818560208601612416565b80840191505092915050565b6000611dc8602d83612262565b9150611dd38261258d565b604082019050919050565b6000611deb603283612262565b9150611df6826125dc565b604082019050919050565b6000611e0e602683612262565b9150611e198261262b565b604082019050919050565b6000611e31602583612262565b9150611e3c8261267a565b604082019050919050565b6000611e54602483612262565b9150611e5f826126c9565b604082019050919050565b6000611e77601983612262565b9150611e8282612718565b602082019050919050565b6000611e9a602983612262565b9150611ea582612741565b604082019050919050565b6000611ebd600583612273565b9150611ec882612790565b600582019050919050565b6000611ee0602083612262565b9150611eeb826127b9565b602082019050919050565b6000611f03601883612262565b9150611f0e826127e2565b602082019050919050565b6000611f26602183612262565b9150611f318261280b565b604082019050919050565b6000611f49603d83612262565b9150611f548261285a565b604082019050919050565b611f68816123fd565b82525050565b6000611f7a8285611d8a565b9150611f868284611d8a565b9150611f9182611eb0565b91508190509392505050565b6000602082019050611fb26000830184611cfa565b92915050565b6000608082019050611fcd6000830187611cfa565b611fda6020830186611cfa565b611fe76040830185611f5f565b8181036060830152611ff98184611d18565b905095945050505050565b60006040820190506120196000830185611cfa565b6120266020830184611f5f565b9392505050565b60006020820190506120426000830184611d09565b92915050565b600060208201905081810360008301526120628184611d51565b905092915050565b6000602082019050818103600083015261208381611dbb565b9050919050565b600060208201905081810360008301526120a381611dde565b9050919050565b600060208201905081810360008301526120c381611e01565b9050919050565b600060208201905081810360008301526120e381611e24565b9050919050565b6000602082019050818103600083015261210381611e47565b9050919050565b6000602082019050818103600083015261212381611e6a565b9050919050565b6000602082019050818103600083015261214381611e8d565b9050919050565b6000602082019050818103600083015261216381611ed3565b9050919050565b6000602082019050818103600083015261218381611ef6565b9050919050565b600060208201905081810360008301526121a381611f19565b9050919050565b600060208201905081810360008301526121c381611f3c565b9050919050565b60006020820190506121df6000830184611f5f565b92915050565b60006121ef612200565b90506121fb828261247b565b919050565b6000604051905090565b600067ffffffffffffffff82111561222557612224612539565b5b61222e8261257c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612289826123fd565b9150612294836123fd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122c9576122c86124ac565b5b828201905092915050565b60006122df826123fd565b91506122ea836123fd565b9250826122fa576122f96124db565b5b828204905092915050565b6000612310826123fd565b915061231b836123fd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612354576123536124ac565b5b828202905092915050565b600061236a826123fd565b9150612375836123fd565b925082821015612388576123876124ac565b5b828203905092915050565b600061239e826123dd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612434578082015181840152602081019050612419565b83811115612443576000848401525b50505050565b6000600282049050600182168061246157607f821691505b602082108114156124755761247461250a565b5b50919050565b6124848261257c565b810181811067ffffffffffffffff821117156124a3576124a2612539565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6128b281612393565b81146128bd57600080fd5b50565b6128c9816123a5565b81146128d457600080fd5b50565b6128e0816123b1565b81146128eb57600080fd5b50565b6128f7816123fd565b811461290257600080fd5b5056fe697066733a2f2f516d536a617877356550754878436872596b473745326146375432617936443859334859707a774b697a4c4643352fa2646970667358221220e3e4a34d96949a12cfe380c19c9fde697d14b10937b2e580421bf12c2596e99e64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610332578063c87b56dd1461034e578063dd27c1611461037e578063e985e9c51461039a578063f2fde38b146103ca5761012c565b806370a08231146102a0578063715018a6146102d05780638da5cb5b146102da57806395d89b41146102f8578063a22cb465146103165761012c565b806323b872dd116100f457806323b872dd146101e95780632a55205a146102055780633fa4f2451461023657806342842e0e146102545780636352211e146102705761012c565b806301ffc9a714610131578063059f8b161461016157806306fdde031461017f578063081812fc1461019d578063095ea7b3146101cd575b600080fd5b61014b60048036038101906101469190611c33565b6103e6565b604051610158919061202d565b60405180910390f35b6101696104c8565b60405161017691906121ca565b60405180910390f35b6101876104ce565b6040516101949190612048565b60405180910390f35b6101b760048036038101906101b29190611c8d565b610560565b6040516101c49190611f9d565b60405180910390f35b6101e760048036038101906101e29190611bf3565b6105a6565b005b61020360048036038101906101fe9190611add565b6106be565b005b61021f600480360381019061021a9190611cba565b61071e565b60405161022d929190612004565b60405180910390f35b61023e61074f565b60405161024b91906121ca565b60405180910390f35b61026e60048036038101906102699190611add565b610755565b005b61028a60048036038101906102859190611c8d565b610775565b6040516102979190611f9d565b60405180910390f35b6102ba60048036038101906102b59190611a70565b6107fc565b6040516102c791906121ca565b60405180910390f35b6102d86108b4565b005b6102e26108c8565b6040516102ef9190611f9d565b60405180910390f35b6103006108f2565b60405161030d9190612048565b60405180910390f35b610330600480360381019061032b9190611bb3565b610984565b005b61034c60048036038101906103479190611b30565b61099a565b005b61036860048036038101906103639190611c8d565b6109fc565b6040516103759190612048565b60405180910390f35b61039860048036038101906103939190611c8d565b610a64565b005b6103b460048036038101906103af9190611a9d565b610a78565b6040516103c1919061202d565b60405180910390f35b6103e460048036038101906103df9190611a70565b610b0c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104c157506104c082610bb3565b5b9050919050565b61271081565b6060600080546104dd90612449565b80601f016020809104026020016040519081016040528092919081815260200182805461050990612449565b80156105565780601f1061052b57610100808354040283529160200191610556565b820191906000526020600020905b81548152906001019060200180831161053957829003601f168201915b5050505050905090565b600061056b82610c1d565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105b182610775565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610622576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106199061218a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610641610c68565b73ffffffffffffffffffffffffffffffffffffffff161480610670575061066f8161066a610c68565b610a78565b5b6106af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a6906121aa565b60405180910390fd5b6106b98383610c70565b505050565b6106cf6106c9610c68565b82610d29565b61070e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107059061206a565b60405180910390fd5b610719838383610dbe565b505050565b6000806107296108c8565b6127106006548561073a9190612305565b61074491906122d4565b915091509250929050565b60065481565b6107708383836040518060200160405280600081525061099a565b505050565b600080610781836110b8565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ea9061216a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561086d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108649061212a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108bc6110f5565b6108c66000611173565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461090190612449565b80601f016020809104026020016040519081016040528092919081815260200182805461092d90612449565b801561097a5780601f1061094f5761010080835404028352916020019161097a565b820191906000526020600020905b81548152906001019060200180831161095d57829003601f168201915b5050505050905090565b61099661098f610c68565b8383611239565b5050565b6109ab6109a5610c68565b83610d29565b6109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e19061206a565b60405180910390fd5b6109f6848484846113a6565b50505050565b6060610a0782610c1d565b6000610a11611402565b90506000815111610a315760405180602001604052806000815250610a5c565b80610a3b84611422565b604051602001610a4c929190611f6e565b6040516020818303038152906040525b915050919050565b610a6c6110f5565b610a75816114fa565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b146110f5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b906120aa565b60405180910390fd5b610b8d81611173565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610c2681611540565b610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c9061216a565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610ce383610775565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610d3583610775565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d775750610d768185610a78565b5b80610db557508373ffffffffffffffffffffffffffffffffffffffff16610d9d84610560565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610dde82610775565b73ffffffffffffffffffffffffffffffffffffffff1614610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b906120ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b906120ea565b60405180910390fd5b610eb18383836001611581565b8273ffffffffffffffffffffffffffffffffffffffff16610ed182610775565b73ffffffffffffffffffffffffffffffffffffffff1614610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e906120ca565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110b383838360016116a7565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6110fd610c68565b73ffffffffffffffffffffffffffffffffffffffff1661111b6108c8565b73ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111689061214a565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f9061210a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611399919061202d565b60405180910390a3505050565b6113b1848484610dbe565b6113bd848484846116ad565b6113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f39061208a565b60405180910390fd5b50505050565b606060405180606001604052806036815260200161290660369139905090565b60606000600161143184611844565b01905060008167ffffffffffffffff8111156114505761144f612539565b5b6040519080825280601f01601f1916602001820160405280156114825781602001600182028036833780820191505090505b509050600082602001820190505b6001156114ef578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816114d9576114d86124db565b5b04945060008514156114ea576114ef565b611490565b819350505050919050565b612710811115611536576040517f0a4c5cc800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060068190555050565b60008073ffffffffffffffffffffffffffffffffffffffff16611562836110b8565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60018111156116a157600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146116155780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461160d919061235f565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146116a05780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611698919061227e565b925050819055505b5b50505050565b50505050565b60006116ce8473ffffffffffffffffffffffffffffffffffffffff16610b90565b15611837578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026116f7610c68565b8786866040518563ffffffff1660e01b81526004016117199493929190611fb8565b602060405180830381600087803b15801561173357600080fd5b505af192505050801561176457506040513d601f19601f820116820180604052508101906117619190611c60565b60015b6117e7573d8060008114611794576040519150601f19603f3d011682016040523d82523d6000602084013e611799565b606091505b506000815114156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d69061208a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061183c565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106118a2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611898576118976124db565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106118df576d04ee2d6d415b85acef810000000083816118d5576118d46124db565b5b0492506020810190505b662386f26fc10000831061190e57662386f26fc100008381611904576119036124db565b5b0492506010810190505b6305f5e1008310611937576305f5e100838161192d5761192c6124db565b5b0492506008810190505b612710831061195c576127108381611952576119516124db565b5b0492506004810190505b6064831061197f5760648381611975576119746124db565b5b0492506002810190505b600a831061198e576001810190505b80915050919050565b60006119aa6119a58461220a565b6121e5565b9050828152602081018484840111156119c6576119c561256d565b5b6119d1848285612407565b509392505050565b6000813590506119e8816128a9565b92915050565b6000813590506119fd816128c0565b92915050565b600081359050611a12816128d7565b92915050565b600081519050611a27816128d7565b92915050565b600082601f830112611a4257611a41612568565b5b8135611a52848260208601611997565b91505092915050565b600081359050611a6a816128ee565b92915050565b600060208284031215611a8657611a85612577565b5b6000611a94848285016119d9565b91505092915050565b60008060408385031215611ab457611ab3612577565b5b6000611ac2858286016119d9565b9250506020611ad3858286016119d9565b9150509250929050565b600080600060608486031215611af657611af5612577565b5b6000611b04868287016119d9565b9350506020611b15868287016119d9565b9250506040611b2686828701611a5b565b9150509250925092565b60008060008060808587031215611b4a57611b49612577565b5b6000611b58878288016119d9565b9450506020611b69878288016119d9565b9350506040611b7a87828801611a5b565b925050606085013567ffffffffffffffff811115611b9b57611b9a612572565b5b611ba787828801611a2d565b91505092959194509250565b60008060408385031215611bca57611bc9612577565b5b6000611bd8858286016119d9565b9250506020611be9858286016119ee565b9150509250929050565b60008060408385031215611c0a57611c09612577565b5b6000611c18858286016119d9565b9250506020611c2985828601611a5b565b9150509250929050565b600060208284031215611c4957611c48612577565b5b6000611c5784828501611a03565b91505092915050565b600060208284031215611c7657611c75612577565b5b6000611c8484828501611a18565b91505092915050565b600060208284031215611ca357611ca2612577565b5b6000611cb184828501611a5b565b91505092915050565b60008060408385031215611cd157611cd0612577565b5b6000611cdf85828601611a5b565b9250506020611cf085828601611a5b565b9150509250929050565b611d0381612393565b82525050565b611d12816123a5565b82525050565b6000611d238261223b565b611d2d8185612251565b9350611d3d818560208601612416565b611d468161257c565b840191505092915050565b6000611d5c82612246565b611d668185612262565b9350611d76818560208601612416565b611d7f8161257c565b840191505092915050565b6000611d9582612246565b611d9f8185612273565b9350611daf818560208601612416565b80840191505092915050565b6000611dc8602d83612262565b9150611dd38261258d565b604082019050919050565b6000611deb603283612262565b9150611df6826125dc565b604082019050919050565b6000611e0e602683612262565b9150611e198261262b565b604082019050919050565b6000611e31602583612262565b9150611e3c8261267a565b604082019050919050565b6000611e54602483612262565b9150611e5f826126c9565b604082019050919050565b6000611e77601983612262565b9150611e8282612718565b602082019050919050565b6000611e9a602983612262565b9150611ea582612741565b604082019050919050565b6000611ebd600583612273565b9150611ec882612790565b600582019050919050565b6000611ee0602083612262565b9150611eeb826127b9565b602082019050919050565b6000611f03601883612262565b9150611f0e826127e2565b602082019050919050565b6000611f26602183612262565b9150611f318261280b565b604082019050919050565b6000611f49603d83612262565b9150611f548261285a565b604082019050919050565b611f68816123fd565b82525050565b6000611f7a8285611d8a565b9150611f868284611d8a565b9150611f9182611eb0565b91508190509392505050565b6000602082019050611fb26000830184611cfa565b92915050565b6000608082019050611fcd6000830187611cfa565b611fda6020830186611cfa565b611fe76040830185611f5f565b8181036060830152611ff98184611d18565b905095945050505050565b60006040820190506120196000830185611cfa565b6120266020830184611f5f565b9392505050565b60006020820190506120426000830184611d09565b92915050565b600060208201905081810360008301526120628184611d51565b905092915050565b6000602082019050818103600083015261208381611dbb565b9050919050565b600060208201905081810360008301526120a381611dde565b9050919050565b600060208201905081810360008301526120c381611e01565b9050919050565b600060208201905081810360008301526120e381611e24565b9050919050565b6000602082019050818103600083015261210381611e47565b9050919050565b6000602082019050818103600083015261212381611e6a565b9050919050565b6000602082019050818103600083015261214381611e8d565b9050919050565b6000602082019050818103600083015261216381611ed3565b9050919050565b6000602082019050818103600083015261218381611ef6565b9050919050565b600060208201905081810360008301526121a381611f19565b9050919050565b600060208201905081810360008301526121c381611f3c565b9050919050565b60006020820190506121df6000830184611f5f565b92915050565b60006121ef612200565b90506121fb828261247b565b919050565b6000604051905090565b600067ffffffffffffffff82111561222557612224612539565b5b61222e8261257c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612289826123fd565b9150612294836123fd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122c9576122c86124ac565b5b828201905092915050565b60006122df826123fd565b91506122ea836123fd565b9250826122fa576122f96124db565b5b828204905092915050565b6000612310826123fd565b915061231b836123fd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612354576123536124ac565b5b828202905092915050565b600061236a826123fd565b9150612375836123fd565b925082821015612388576123876124ac565b5b828203905092915050565b600061239e826123dd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612434578082015181840152602081019050612419565b83811115612443576000848401525b50505050565b6000600282049050600182168061246157607f821691505b602082108114156124755761247461250a565b5b50919050565b6124848261257c565b810181811067ffffffffffffffff821117156124a3576124a2612539565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6128b281612393565b81146128bd57600080fd5b50565b6128c9816123a5565b81146128d457600080fd5b50565b6128e0816123b1565b81146128eb57600080fd5b50565b6128f7816123fd565b811461290257600080fd5b5056fe697066733a2f2f516d536a617877356550754878436872596b473745326146375432617936443859334859707a774b697a4c4643352fa2646970667358221220e3e4a34d96949a12cfe380c19c9fde697d14b10937b2e580421bf12c2596e99e64736f6c63430008070033
Deployed Bytecode Sourcemap
55667:1333:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38544:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55283:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39472:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40984:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40502:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41684:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56660:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;55332:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42090:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39182:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38913:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17975:103;;;:::i;:::-;;17327:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39641:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41227:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42346:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56092:373;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56894:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41453:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18233:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38544:305;38646:4;38698:25;38683:40;;;:11;:40;;;;:105;;;;38755:33;38740:48;;;:11;:48;;;;38683:105;:158;;;;38805:36;38829:11;38805:23;:36::i;:::-;38683:158;38663:178;;38544:305;;;:::o;55283:42::-;55320:5;55283:42;:::o;39472:100::-;39526:13;39559:5;39552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39472:100;:::o;40984:171::-;41060:7;41080:23;41095:7;41080:14;:23::i;:::-;41123:15;:24;41139:7;41123:24;;;;;;;;;;;;;;;;;;;;;41116:31;;40984:171;;;:::o;40502:416::-;40583:13;40599:23;40614:7;40599:14;:23::i;:::-;40583:39;;40647:5;40641:11;;:2;:11;;;;40633:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40741:5;40725:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40750:37;40767:5;40774:12;:10;:12::i;:::-;40750:16;:37::i;:::-;40725:62;40703:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;40889:21;40898:2;40902:7;40889:8;:21::i;:::-;40572:346;40502:416;;:::o;41684:335::-;41879:41;41898:12;:10;:12::i;:::-;41912:7;41879:18;:41::i;:::-;41871:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;41983:28;41993:4;41999:2;42003:7;41983:9;:28::i;:::-;41684:335;;;:::o;56660:226::-;56774:16;56792:21;56839:7;:5;:7::i;:::-;55320:5;56858;;56849:6;:14;;;;:::i;:::-;56848:29;;;;:::i;:::-;56831:47;;;;56660:226;;;;;:::o;55332:20::-;;;;:::o;42090:185::-;42228:39;42245:4;42251:2;42255:7;42228:39;;;;;;;;;;;;:16;:39::i;:::-;42090:185;;;:::o;39182:223::-;39254:7;39274:13;39290:17;39299:7;39290:8;:17::i;:::-;39274:33;;39343:1;39326:19;;:5;:19;;;;39318:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;39392:5;39385:12;;;39182:223;;;:::o;38913:207::-;38985:7;39030:1;39013:19;;:5;:19;;;;39005:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39096:9;:16;39106:5;39096:16;;;;;;;;;;;;;;;;39089:23;;38913:207;;;:::o;17975:103::-;17213:13;:11;:13::i;:::-;18040:30:::1;18067:1;18040:18;:30::i;:::-;17975:103::o:0;17327:87::-;17373:7;17400:6;;;;;;;;;;;17393:13;;17327:87;:::o;39641:104::-;39697:13;39730:7;39723:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39641:104;:::o;41227:155::-;41322:52;41341:12;:10;:12::i;:::-;41355:8;41365;41322:18;:52::i;:::-;41227:155;;:::o;42346:322::-;42520:41;42539:12;:10;:12::i;:::-;42553:7;42520:18;:41::i;:::-;42512:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;42622:38;42636:4;42642:2;42646:7;42655:4;42622:13;:38::i;:::-;42346:322;;;;:::o;56092:373::-;56193:13;56224:23;56239:7;56224:14;:23::i;:::-;56260:22;56285:10;:8;:10::i;:::-;56260:35;;56351:1;56332:8;56326:22;:26;:131;;;;;;;;;;;;;;;;;56396:8;56406:18;:7;:16;:18::i;:::-;56379:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56326:131;56306:151;;;56092:373;;;:::o;56894:103::-;17213:13;:11;:13::i;:::-;56965:24:::1;56982:6;56965:16;:24::i;:::-;56894:103:::0;:::o;41453:164::-;41550:4;41574:18;:25;41593:5;41574:25;;;;;;;;;;;;;;;:35;41600:8;41574:35;;;;;;;;;;;;;;;;;;;;;;;;;41567:42;;41453:164;;;;:::o;18233:201::-;17213:13;:11;:13::i;:::-;18342:1:::1;18322:22;;:8;:22;;;;18314:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18398:28;18417:8;18398:18;:28::i;:::-;18233:201:::0;:::o;20025:326::-;20085:4;20342:1;20320:7;:19;;;:23;20313:30;;20025:326;;;:::o;31056:157::-;31141:4;31180:25;31165:40;;;:11;:40;;;;31158:47;;31056:157;;;:::o;50803:135::-;50885:16;50893:7;50885;:16::i;:::-;50877:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;50803:135;:::o;15878:98::-;15931:7;15958:10;15951:17;;15878:98;:::o;50082:174::-;50184:2;50157:15;:24;50173:7;50157:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50240:7;50236:2;50202:46;;50211:23;50226:7;50211:14;:23::i;:::-;50202:46;;;;;;;;;;;;50082:174;;:::o;44701:264::-;44794:4;44811:13;44827:23;44842:7;44827:14;:23::i;:::-;44811:39;;44880:5;44869:16;;:7;:16;;;:52;;;;44889:32;44906:5;44913:7;44889:16;:32::i;:::-;44869:52;:87;;;;44949:7;44925:31;;:20;44937:7;44925:11;:20::i;:::-;:31;;;44869:87;44861:96;;;44701:264;;;;:::o;48700:1263::-;48859:4;48832:31;;:23;48847:7;48832:14;:23::i;:::-;:31;;;48824:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;48938:1;48924:16;;:2;:16;;;;48916:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48994:42;49015:4;49021:2;49025:7;49034:1;48994:20;:42::i;:::-;49166:4;49139:31;;:23;49154:7;49139:14;:23::i;:::-;:31;;;49131:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;49284:15;:24;49300:7;49284:24;;;;;;;;;;;;49277:31;;;;;;;;;;;49779:1;49760:9;:15;49770:4;49760:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;49812:1;49795:9;:13;49805:2;49795:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;49854:2;49835:7;:16;49843:7;49835:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49893:7;49889:2;49874:27;;49883:4;49874:27;;;;;;;;;;;;49914:41;49934:4;49940:2;49944:7;49953:1;49914:19;:41::i;:::-;48700:1263;;;:::o;43976:117::-;44042:7;44069;:16;44077:7;44069:16;;;;;;;;;;;;;;;;;;;;;44062:23;;43976:117;;;:::o;17492:132::-;17567:12;:10;:12::i;:::-;17556:23;;:7;:5;:7::i;:::-;:23;;;17548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17492:132::o;18594:191::-;18668:16;18687:6;;;;;;;;;;;18668:25;;18713:8;18704:6;;:17;;;;;;;;;;;;;;;;;;18768:8;18737:40;;18758:8;18737:40;;;;;;;;;;;;18657:128;18594:191;:::o;50399:315::-;50554:8;50545:17;;:5;:17;;;;50537:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50641:8;50603:18;:25;50622:5;50603:25;;;;;;;;;;;;;;;:35;50629:8;50603:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;50687:8;50665:41;;50680:5;50665:41;;;50697:8;50665:41;;;;;;:::i;:::-;;;;;;;;50399:315;;;:::o;43549:313::-;43705:28;43715:4;43721:2;43725:7;43705:9;:28::i;:::-;43752:47;43775:4;43781:2;43785:7;43794:4;43752:22;:47::i;:::-;43744:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;43549:313;;;;:::o;56473:149::-;56525:13;56551:63;;;;;;;;;;;;;;;;;;;56473:149;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13938:21;;;13954:5;;13938:21;13687:288;;;13996:6;13989:13;;;;;13305:716;;;:::o;55509:151::-;55320:5;55575:6;:19;55571:56;;;55603:24;;;;;;;;;;;;;;55571:56;55646:6;55638:5;:14;;;;55509:151;:::o;44406:128::-;44471:4;44524:1;44495:31;;:17;44504:7;44495:8;:17::i;:::-;:31;;;;44488:38;;44406:128;;;:::o;53087:410::-;53277:1;53265:9;:13;53261:229;;;53315:1;53299:18;;:4;:18;;;53295:87;;53357:9;53338;:15;53348:4;53338:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;53295:87;53414:1;53400:16;;:2;:16;;;53396:83;;53454:9;53437;:13;53447:2;53437:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;53396:83;53261:229;53087:410;;;;:::o;54219:158::-;;;;;:::o;51502:853::-;51656:4;51677:15;:2;:13;;;:15::i;:::-;51673:675;;;51729:2;51713:36;;;51750:12;:10;:12::i;:::-;51764:4;51770:7;51779:4;51713:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51709:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51971:1;51954:6;:13;:18;51950:328;;;51997:60;;;;;;;;;;:::i;:::-;;;;;;;;51950:328;52228:6;52222:13;52213:6;52209:2;52205:15;52198:38;51709:584;51845:41;;;51835:51;;;:6;:51;;;;51828:58;;;;;51673:675;52332:4;52325:11;;51502:853;;;;;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:474::-;5933:6;5941;5990:2;5978:9;5969:7;5965:23;5961:32;5958:119;;;5996:79;;:::i;:::-;5958:119;6116:1;6141:53;6186:7;6177:6;6166:9;6162:22;6141:53;:::i;:::-;6131:63;;6087:117;6243:2;6269:53;6314:7;6305:6;6294:9;6290:22;6269:53;:::i;:::-;6259:63;;6214:118;5865:474;;;;;:::o;6345:118::-;6432:24;6450:5;6432:24;:::i;:::-;6427:3;6420:37;6345:118;;:::o;6469:109::-;6550:21;6565:5;6550:21;:::i;:::-;6545:3;6538:34;6469:109;;:::o;6584:360::-;6670:3;6698:38;6730:5;6698:38;:::i;:::-;6752:70;6815:6;6810:3;6752:70;:::i;:::-;6745:77;;6831:52;6876:6;6871:3;6864:4;6857:5;6853:16;6831:52;:::i;:::-;6908:29;6930:6;6908:29;:::i;:::-;6903:3;6899:39;6892:46;;6674:270;6584:360;;;;:::o;6950:364::-;7038:3;7066:39;7099:5;7066:39;:::i;:::-;7121:71;7185:6;7180:3;7121:71;:::i;:::-;7114:78;;7201:52;7246:6;7241:3;7234:4;7227:5;7223:16;7201:52;:::i;:::-;7278:29;7300:6;7278:29;:::i;:::-;7273:3;7269:39;7262:46;;7042:272;6950:364;;;;:::o;7320:377::-;7426:3;7454:39;7487:5;7454:39;:::i;:::-;7509:89;7591:6;7586:3;7509:89;:::i;:::-;7502:96;;7607:52;7652:6;7647:3;7640:4;7633:5;7629:16;7607:52;:::i;:::-;7684:6;7679:3;7675:16;7668:23;;7430:267;7320:377;;;;:::o;7703:366::-;7845:3;7866:67;7930:2;7925:3;7866:67;:::i;:::-;7859:74;;7942:93;8031:3;7942:93;:::i;:::-;8060:2;8055:3;8051:12;8044:19;;7703:366;;;:::o;8075:::-;8217:3;8238:67;8302:2;8297:3;8238:67;:::i;:::-;8231:74;;8314:93;8403:3;8314:93;:::i;:::-;8432:2;8427:3;8423:12;8416:19;;8075:366;;;:::o;8447:::-;8589:3;8610:67;8674:2;8669:3;8610:67;:::i;:::-;8603:74;;8686:93;8775:3;8686:93;:::i;:::-;8804:2;8799:3;8795:12;8788:19;;8447:366;;;:::o;8819:::-;8961:3;8982:67;9046:2;9041:3;8982:67;:::i;:::-;8975:74;;9058:93;9147:3;9058:93;:::i;:::-;9176:2;9171:3;9167:12;9160:19;;8819:366;;;:::o;9191:::-;9333:3;9354:67;9418:2;9413:3;9354:67;:::i;:::-;9347:74;;9430:93;9519:3;9430:93;:::i;:::-;9548:2;9543:3;9539:12;9532:19;;9191:366;;;:::o;9563:::-;9705:3;9726:67;9790:2;9785:3;9726:67;:::i;:::-;9719:74;;9802:93;9891:3;9802:93;:::i;:::-;9920:2;9915:3;9911:12;9904:19;;9563:366;;;:::o;9935:::-;10077:3;10098:67;10162:2;10157:3;10098:67;:::i;:::-;10091:74;;10174:93;10263:3;10174:93;:::i;:::-;10292:2;10287:3;10283:12;10276:19;;9935:366;;;:::o;10307:400::-;10467:3;10488:84;10570:1;10565:3;10488:84;:::i;:::-;10481:91;;10581:93;10670:3;10581:93;:::i;:::-;10699:1;10694:3;10690:11;10683:18;;10307:400;;;:::o;10713:366::-;10855:3;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10713:366;;;:::o;11085:::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:118::-;12288:24;12306:5;12288:24;:::i;:::-;12283:3;12276:37;12201:118;;:::o;12325:701::-;12606:3;12628:95;12719:3;12710:6;12628:95;:::i;:::-;12621:102;;12740:95;12831:3;12822:6;12740:95;:::i;:::-;12733:102;;12852:148;12996:3;12852:148;:::i;:::-;12845:155;;13017:3;13010:10;;12325:701;;;;;:::o;13032:222::-;13125:4;13163:2;13152:9;13148:18;13140:26;;13176:71;13244:1;13233:9;13229:17;13220:6;13176:71;:::i;:::-;13032:222;;;;:::o;13260:640::-;13455:4;13493:3;13482:9;13478:19;13470:27;;13507:71;13575:1;13564:9;13560:17;13551:6;13507:71;:::i;:::-;13588:72;13656:2;13645:9;13641:18;13632:6;13588:72;:::i;:::-;13670;13738:2;13727:9;13723:18;13714:6;13670:72;:::i;:::-;13789:9;13783:4;13779:20;13774:2;13763:9;13759:18;13752:48;13817:76;13888:4;13879:6;13817:76;:::i;:::-;13809:84;;13260:640;;;;;;;:::o;13906:332::-;14027:4;14065:2;14054:9;14050:18;14042:26;;14078:71;14146:1;14135:9;14131:17;14122:6;14078:71;:::i;:::-;14159:72;14227:2;14216:9;14212:18;14203:6;14159:72;:::i;:::-;13906:332;;;;;:::o;14244:210::-;14331:4;14369:2;14358:9;14354:18;14346:26;;14382:65;14444:1;14433:9;14429:17;14420:6;14382:65;:::i;:::-;14244:210;;;;:::o;14460:313::-;14573:4;14611:2;14600:9;14596:18;14588:26;;14660:9;14654:4;14650:20;14646:1;14635:9;14631:17;14624:47;14688:78;14761:4;14752:6;14688:78;:::i;:::-;14680:86;;14460:313;;;;:::o;14779:419::-;14945:4;14983:2;14972:9;14968:18;14960:26;;15032:9;15026:4;15022:20;15018:1;15007:9;15003:17;14996:47;15060:131;15186:4;15060:131;:::i;:::-;15052:139;;14779:419;;;:::o;15204:::-;15370:4;15408:2;15397:9;15393:18;15385:26;;15457:9;15451:4;15447:20;15443:1;15432:9;15428:17;15421:47;15485:131;15611:4;15485:131;:::i;:::-;15477:139;;15204:419;;;:::o;15629:::-;15795:4;15833:2;15822:9;15818:18;15810:26;;15882:9;15876:4;15872:20;15868:1;15857:9;15853:17;15846:47;15910:131;16036:4;15910:131;:::i;:::-;15902:139;;15629:419;;;:::o;16054:::-;16220:4;16258:2;16247:9;16243:18;16235:26;;16307:9;16301:4;16297:20;16293:1;16282:9;16278:17;16271:47;16335:131;16461:4;16335:131;:::i;:::-;16327:139;;16054:419;;;:::o;16479:::-;16645:4;16683:2;16672:9;16668:18;16660:26;;16732:9;16726:4;16722:20;16718:1;16707:9;16703:17;16696:47;16760:131;16886:4;16760:131;:::i;:::-;16752:139;;16479:419;;;:::o;16904:::-;17070:4;17108:2;17097:9;17093:18;17085:26;;17157:9;17151:4;17147:20;17143:1;17132:9;17128:17;17121:47;17185:131;17311:4;17185:131;:::i;:::-;17177:139;;16904:419;;;:::o;17329:::-;17495:4;17533:2;17522:9;17518:18;17510:26;;17582:9;17576:4;17572:20;17568:1;17557:9;17553:17;17546:47;17610:131;17736:4;17610:131;:::i;:::-;17602:139;;17329:419;;;:::o;17754:::-;17920:4;17958:2;17947:9;17943:18;17935:26;;18007:9;18001:4;17997:20;17993:1;17982:9;17978:17;17971:47;18035:131;18161:4;18035:131;:::i;:::-;18027:139;;17754:419;;;:::o;18179:::-;18345:4;18383:2;18372:9;18368:18;18360:26;;18432:9;18426:4;18422:20;18418:1;18407:9;18403:17;18396:47;18460:131;18586:4;18460:131;:::i;:::-;18452:139;;18179:419;;;:::o;18604:::-;18770:4;18808:2;18797:9;18793:18;18785:26;;18857:9;18851:4;18847:20;18843:1;18832:9;18828:17;18821:47;18885:131;19011:4;18885:131;:::i;:::-;18877:139;;18604:419;;;:::o;19029:::-;19195:4;19233:2;19222:9;19218:18;19210:26;;19282:9;19276:4;19272:20;19268:1;19257:9;19253:17;19246:47;19310:131;19436:4;19310:131;:::i;:::-;19302:139;;19029:419;;;:::o;19454:222::-;19547:4;19585:2;19574:9;19570:18;19562:26;;19598:71;19666:1;19655:9;19651:17;19642:6;19598:71;:::i;:::-;19454:222;;;;:::o;19682:129::-;19716:6;19743:20;;:::i;:::-;19733:30;;19772:33;19800:4;19792:6;19772:33;:::i;:::-;19682:129;;;:::o;19817:75::-;19850:6;19883:2;19877:9;19867:19;;19817:75;:::o;19898:307::-;19959:4;20049:18;20041:6;20038:30;20035:56;;;20071:18;;:::i;:::-;20035:56;20109:29;20131:6;20109:29;:::i;:::-;20101:37;;20193:4;20187;20183:15;20175:23;;19898:307;;;:::o;20211:98::-;20262:6;20296:5;20290:12;20280:22;;20211:98;;;:::o;20315:99::-;20367:6;20401:5;20395:12;20385:22;;20315:99;;;:::o;20420:168::-;20503:11;20537:6;20532:3;20525:19;20577:4;20572:3;20568:14;20553:29;;20420:168;;;;:::o;20594:169::-;20678:11;20712:6;20707:3;20700:19;20752:4;20747:3;20743:14;20728:29;;20594:169;;;;:::o;20769:148::-;20871:11;20908:3;20893:18;;20769:148;;;;:::o;20923:305::-;20963:3;20982:20;21000:1;20982:20;:::i;:::-;20977:25;;21016:20;21034:1;21016:20;:::i;:::-;21011:25;;21170:1;21102:66;21098:74;21095:1;21092:81;21089:107;;;21176:18;;:::i;:::-;21089:107;21220:1;21217;21213:9;21206:16;;20923:305;;;;:::o;21234:185::-;21274:1;21291:20;21309:1;21291:20;:::i;:::-;21286:25;;21325:20;21343:1;21325:20;:::i;:::-;21320:25;;21364:1;21354:35;;21369:18;;:::i;:::-;21354:35;21411:1;21408;21404:9;21399:14;;21234:185;;;;:::o;21425:348::-;21465:7;21488:20;21506:1;21488:20;:::i;:::-;21483:25;;21522:20;21540:1;21522:20;:::i;:::-;21517:25;;21710:1;21642:66;21638:74;21635:1;21632:81;21627:1;21620:9;21613:17;21609:105;21606:131;;;21717:18;;:::i;:::-;21606:131;21765:1;21762;21758:9;21747:20;;21425:348;;;;:::o;21779:191::-;21819:4;21839:20;21857:1;21839:20;:::i;:::-;21834:25;;21873:20;21891:1;21873:20;:::i;:::-;21868:25;;21912:1;21909;21906:8;21903:34;;;21917:18;;:::i;:::-;21903:34;21962:1;21959;21955:9;21947:17;;21779:191;;;;:::o;21976:96::-;22013:7;22042:24;22060:5;22042:24;:::i;:::-;22031:35;;21976:96;;;:::o;22078:90::-;22112:7;22155:5;22148:13;22141:21;22130:32;;22078:90;;;:::o;22174:149::-;22210:7;22250:66;22243:5;22239:78;22228:89;;22174:149;;;:::o;22329:126::-;22366:7;22406:42;22399:5;22395:54;22384:65;;22329:126;;;:::o;22461:77::-;22498:7;22527:5;22516:16;;22461:77;;;:::o;22544:154::-;22628:6;22623:3;22618;22605:30;22690:1;22681:6;22676:3;22672:16;22665:27;22544:154;;;:::o;22704:307::-;22772:1;22782:113;22796:6;22793:1;22790:13;22782:113;;;22881:1;22876:3;22872:11;22866:18;22862:1;22857:3;22853:11;22846:39;22818:2;22815:1;22811:10;22806:15;;22782:113;;;22913:6;22910:1;22907:13;22904:101;;;22993:1;22984:6;22979:3;22975:16;22968:27;22904:101;22753:258;22704:307;;;:::o;23017:320::-;23061:6;23098:1;23092:4;23088:12;23078:22;;23145:1;23139:4;23135:12;23166:18;23156:81;;23222:4;23214:6;23210:17;23200:27;;23156:81;23284:2;23276:6;23273:14;23253:18;23250:38;23247:84;;;23303:18;;:::i;:::-;23247:84;23068:269;23017:320;;;:::o;23343:281::-;23426:27;23448:4;23426:27;:::i;:::-;23418:6;23414:40;23556:6;23544:10;23541:22;23520:18;23508:10;23505:34;23502:62;23499:88;;;23567:18;;:::i;:::-;23499:88;23607:10;23603:2;23596:22;23386:238;23343:281;;:::o;23630:180::-;23678:77;23675:1;23668:88;23775:4;23772:1;23765:15;23799:4;23796:1;23789:15;23816:180;23864:77;23861:1;23854:88;23961:4;23958:1;23951:15;23985:4;23982:1;23975:15;24002:180;24050:77;24047:1;24040:88;24147:4;24144:1;24137:15;24171:4;24168:1;24161:15;24188:180;24236:77;24233:1;24226:88;24333:4;24330:1;24323:15;24357:4;24354:1;24347:15;24374:117;24483:1;24480;24473:12;24497:117;24606:1;24603;24596:12;24620:117;24729:1;24726;24719:12;24743:117;24852:1;24849;24842:12;24866:102;24907:6;24958:2;24954:7;24949:2;24942:5;24938:14;24934:28;24924:38;;24866:102;;;:::o;24974:232::-;25114:34;25110:1;25102:6;25098:14;25091:58;25183:15;25178:2;25170:6;25166:15;25159:40;24974:232;:::o;25212:237::-;25352:34;25348:1;25340:6;25336:14;25329:58;25421:20;25416:2;25408:6;25404:15;25397:45;25212:237;:::o;25455:225::-;25595:34;25591:1;25583:6;25579:14;25572:58;25664:8;25659:2;25651:6;25647:15;25640:33;25455:225;:::o;25686:224::-;25826:34;25822:1;25814:6;25810:14;25803:58;25895:7;25890:2;25882:6;25878:15;25871:32;25686:224;:::o;25916:223::-;26056:34;26052:1;26044:6;26040:14;26033:58;26125:6;26120:2;26112:6;26108:15;26101:31;25916:223;:::o;26145:175::-;26285:27;26281:1;26273:6;26269:14;26262:51;26145:175;:::o;26326:228::-;26466:34;26462:1;26454:6;26450:14;26443:58;26535:11;26530:2;26522:6;26518:15;26511:36;26326:228;:::o;26560:155::-;26700:7;26696:1;26688:6;26684:14;26677:31;26560:155;:::o;26721:182::-;26861:34;26857:1;26849:6;26845:14;26838:58;26721:182;:::o;26909:174::-;27049:26;27045:1;27037:6;27033:14;27026:50;26909:174;:::o;27089:220::-;27229:34;27225:1;27217:6;27213:14;27206:58;27298:3;27293:2;27285:6;27281:15;27274:28;27089:220;:::o;27315:248::-;27455:34;27451:1;27443:6;27439:14;27432:58;27524:31;27519:2;27511:6;27507:15;27500:56;27315:248;:::o;27569:122::-;27642:24;27660:5;27642:24;:::i;:::-;27635:5;27632:35;27622:63;;27681:1;27678;27671:12;27622:63;27569:122;:::o;27697:116::-;27767:21;27782:5;27767:21;:::i;:::-;27760:5;27757:32;27747:60;;27803:1;27800;27793:12;27747:60;27697:116;:::o;27819:120::-;27891:23;27908:5;27891:23;:::i;:::-;27884:5;27881:34;27871:62;;27929:1;27926;27919:12;27871:62;27819:120;:::o;27945:122::-;28018:24;28036:5;28018:24;:::i;:::-;28011:5;28008:35;27998:63;;28057:1;28054;28047:12;27998:63;27945:122;:::o
Swarm Source
ipfs://e3e4a34d96949a12cfe380c19c9fde697d14b10937b2e580421bf12c2596e99e
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.