Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 136 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 18132712 | 539 days ago | IN | 0 ETH | 0.00049848 | ||||
Set Approval For... | 18128804 | 539 days ago | IN | 0 ETH | 0.00075071 | ||||
Set Approval For... | 18106202 | 543 days ago | IN | 0 ETH | 0.00049211 | ||||
Set Approval For... | 18104186 | 543 days ago | IN | 0 ETH | 0.00041838 | ||||
Set Approval For... | 18096210 | 544 days ago | IN | 0 ETH | 0.0004776 | ||||
Set Approval For... | 17341023 | 650 days ago | IN | 0 ETH | 0.00108194 | ||||
Safe Transfer Fr... | 17309858 | 654 days ago | IN | 0 ETH | 0.00244994 | ||||
Set Approval For... | 16643489 | 748 days ago | IN | 0 ETH | 0.00198395 | ||||
Set Approval For... | 16607563 | 753 days ago | IN | 0 ETH | 0.00083138 | ||||
Safe Transfer Fr... | 16591361 | 756 days ago | IN | 0 ETH | 0.00200521 | ||||
Set Approval For... | 16300143 | 796 days ago | IN | 0 ETH | 0.0009756 | ||||
Set Approval For... | 16300138 | 796 days ago | IN | 0 ETH | 0.00097774 | ||||
Mint | 16300127 | 796 days ago | IN | 0 ETH | 0.00058645 | ||||
Mint | 16300127 | 796 days ago | IN | 0 ETH | 0.00070486 | ||||
Mint | 16300127 | 796 days ago | IN | 0 ETH | 0.00070486 | ||||
Mint | 16300127 | 796 days ago | IN | 0 ETH | 0.00070486 | ||||
Mint | 16300127 | 796 days ago | IN | 0 ETH | 0.00070486 | ||||
Mint | 16300127 | 796 days ago | IN | 0 ETH | 0.00070486 | ||||
Mint | 16300127 | 796 days ago | IN | 0 ETH | 0.00070486 | ||||
Mint | 16300127 | 796 days ago | IN | 0 ETH | 0.00070486 | ||||
Mint | 16300127 | 796 days ago | IN | 0 ETH | 0.00070486 | ||||
Mint | 16300127 | 796 days ago | IN | 0 ETH | 0.00070486 | ||||
Mint | 16300127 | 796 days ago | IN | 0 ETH | 0.00070486 | ||||
Mint | 16300127 | 796 days ago | IN | 0 ETH | 0.00070486 | ||||
Mint | 16300127 | 796 days ago | IN | 0 ETH | 0.00070486 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
DreamsChristmas
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-30 */ // 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/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/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/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: @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: contracts/christmas.sol pragma solidity ^0.8.9; contract DreamsChristmas is ERC721, Ownable { using Strings for uint256; uint public constant MAX_TOKENS = 111; uint private constant TOKENS_RESERVED = 1; uint public price = 0; uint256 public constant MAX_MINT_PER_TX = 3; bool public isSaleActive; uint256 public totalSupply; mapping(address => uint256) private mintedPerWallet; string public baseUri; string public baseExtension = ".json"; constructor() ERC721("Dreams: Christmas", "XMAS") { baseUri = "ipfs://bafybeib7hikdk44inbe5hri64ya6lsmy5j4jdx5nx56zhdxs4aaqztjmpe/"; for(uint256 i = 1; i <= TOKENS_RESERVED; ++i) { _safeMint(msg.sender, i); } totalSupply = TOKENS_RESERVED; } // Public Functions function mint(uint256 _numTokens) external payable { require(isSaleActive, "The sale is paused."); require(_numTokens <= MAX_MINT_PER_TX, "You cannot mint that many in one transaction."); require(mintedPerWallet[msg.sender] + _numTokens <= MAX_MINT_PER_TX, "You cannot mint that many total."); uint256 curTotalSupply = totalSupply; require(curTotalSupply + _numTokens <= MAX_TOKENS, "Exceeds total supply."); require(_numTokens * price <= msg.value, "Insufficient funds."); for(uint256 i = 1; i <= _numTokens; ++i) { _safeMint(msg.sender, curTotalSupply + i); } mintedPerWallet[msg.sender] += _numTokens; totalSupply += _numTokens; } // Owner-only functions function flipSaleState() external onlyOwner { isSaleActive = !isSaleActive; } function setBaseUri(string memory _baseUri) external onlyOwner { baseUri = _baseUri; } function setPrice(uint256 _price) external onlyOwner { price = _price; } function withdrawAll() external payable onlyOwner { uint256 balance = address(this).balance; uint256 balanceOne = balance * 90 / 100; uint256 balanceTwo = balance * 10 / 100; ( bool transferOne, ) = payable(0xB164d856DC707c4b50993f2322731332461D029E).call{value: balanceOne}(""); ( bool transferTwo, ) = payable(0xF6fdcD87a58257F5867DB5cc707df4acB9f00349).call{value: balanceTwo}(""); require(transferOne && transferTwo, "Transfer failed."); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function _baseURI() internal view virtual override returns (string memory) { return baseUri; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405260006007556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000056929190620008db565b503480156200006457600080fd5b506040518060400160405280601181526020017f447265616d733a204368726973746d61730000000000000000000000000000008152506040518060400160405280600481526020017f584d4153000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e9929190620008db565b50806001908051906020019062000102929190620008db565b50505062000125620001196200019c60201b60201c565b620001a460201b60201c565b604051806080016040528060438152602001620048d360439139600b908051906020019062000156929190620008db565b506000600190505b600181116200018d576200017933826200026a60201b60201c565b806200018590620009c4565b90506200015e565b50600160098190555062000e7e565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028c8282604051806020016040528060008152506200029060201b60201c565b5050565b620002a28383620002fe60201b60201c565b620002b760008484846200054560201b60201c565b620002f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f09062000a99565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000371576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003689062000b0b565b60405180910390fd5b6200038281620006ff60201b60201c565b15620003c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bc9062000b7d565b60405180910390fd5b620003db6000838360016200074860201b60201c565b620003ec81620006ff60201b60201c565b156200042f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004269062000b7d565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005416000838360016200087560201b60201c565b5050565b6000620005738473ffffffffffffffffffffffffffffffffffffffff166200087b60201b620013c21760201c565b15620006f2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005a56200019c60201b60201c565b8786866040518563ffffffff1660e01b8152600401620005c9949392919062000c99565b602060405180830381600087803b158015620005e457600080fd5b505af19250505080156200061857506040513d601f19601f8201168201806040525081019062000615919062000d4f565b60015b620006a1573d80600081146200064b576040519150601f19603f3d011682016040523d82523d6000602084013e62000650565b606091505b5060008151141562000699576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006909062000a99565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006f7565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff1662000729836200089e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60018111156200086f57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614620007e05780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620007d8919062000d81565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200086e5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000866919062000dbc565b925050819055505b5b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b828054620008e99062000e48565b90600052602060002090601f0160209004810192826200090d576000855562000959565b82601f106200092857805160ff191683800117855562000959565b8280016001018555821562000959579182015b82811115620009585782518255916020019190600101906200093b565b5b5090506200096891906200096c565b5090565b5b80821115620009875760008160009055506001016200096d565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b6000620009d182620009ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000a075762000a066200098b565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000a8160328362000a12565b915062000a8e8262000a23565b604082019050919050565b6000602082019050818103600083015262000ab48162000a72565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000af360208362000a12565b915062000b008262000abb565b602082019050919050565b6000602082019050818103600083015262000b268162000ae4565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000b65601c8362000a12565b915062000b728262000b2d565b602082019050919050565b6000602082019050818103600083015262000b988162000b56565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bcc8262000b9f565b9050919050565b62000bde8162000bbf565b82525050565b62000bef81620009ba565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000c3157808201518184015260208101905062000c14565b8381111562000c41576000848401525b50505050565b6000601f19601f8301169050919050565b600062000c658262000bf5565b62000c71818562000c00565b935062000c8381856020860162000c11565b62000c8e8162000c47565b840191505092915050565b600060808201905062000cb0600083018762000bd3565b62000cbf602083018662000bd3565b62000cce604083018562000be4565b818103606083015262000ce2818462000c58565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000d298162000cf2565b811462000d3557600080fd5b50565b60008151905062000d498162000d1e565b92915050565b60006020828403121562000d685762000d6762000ced565b5b600062000d788482850162000d38565b91505092915050565b600062000d8e82620009ba565b915062000d9b83620009ba565b92508282101562000db15762000db06200098b565b5b828203905092915050565b600062000dc982620009ba565b915062000dd683620009ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e0e5762000e0d6200098b565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e6157607f821691505b6020821081141562000e785762000e7762000e19565b5b50919050565b613a458062000e8e6000396000f3fe6080604052600436106101b75760003560e01c80638ecad721116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a6578063e985e9c5146105e3578063f2fde38b14610620578063f47c84c514610649576101b7565b8063a22cb46514610529578063b88d4fde14610552578063c66828621461057b576101b7565b80639abc8320116100c65780639abc83201461048e578063a035b1fe146104b9578063a0712d68146104e4578063a0bcfc7f14610500576101b7565b80638ecad7211461040f57806391b7f5ed1461043a57806395d89b4114610463576101b7565b806342842e0e1161015957806370a082311161013357806370a0823114610386578063715018a6146103c3578063853828b6146103da5780638da5cb5b146103e4576101b7565b806342842e0e146102f5578063564566a81461031e5780636352211e14610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061259b565b610674565b6040516101f091906125e3565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b9190612697565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906126ef565b6107e8565b604051610258919061275d565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906127a4565b61082e565b005b34801561029657600080fd5b5061029f610946565b6040516102ac91906127f3565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061280e565b61094c565b005b3480156102ea57600080fd5b506102f36109ac565b005b34801561030157600080fd5b5061031c6004803603810190610317919061280e565b6109e0565b005b34801561032a57600080fd5b50610333610a00565b60405161034091906125e3565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b91906126ef565b610a13565b60405161037d919061275d565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190612861565b610a9a565b6040516103ba91906127f3565b60405180910390f35b3480156103cf57600080fd5b506103d8610b52565b005b6103e2610b66565b005b3480156103f057600080fd5b506103f9610cfd565b604051610406919061275d565b60405180910390f35b34801561041b57600080fd5b50610424610d27565b60405161043191906127f3565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c91906126ef565b610d2c565b005b34801561046f57600080fd5b50610478610d3e565b6040516104859190612697565b60405180910390f35b34801561049a57600080fd5b506104a3610dd0565b6040516104b09190612697565b60405180910390f35b3480156104c557600080fd5b506104ce610e5e565b6040516104db91906127f3565b60405180910390f35b6104fe60048036038101906104f991906126ef565b610e64565b005b34801561050c57600080fd5b50610527600480360381019061052291906129c3565b6110d3565b005b34801561053557600080fd5b50610550600480360381019061054b9190612a38565b6110f5565b005b34801561055e57600080fd5b5061057960048036038101906105749190612b19565b61110b565b005b34801561058757600080fd5b5061059061116d565b60405161059d9190612697565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906126ef565b6111fb565b6040516105da9190612697565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612b9c565b6112a5565b60405161061791906125e3565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190612861565b611339565b005b34801561065557600080fd5b5061065e6113bd565b60405161066b91906127f3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e826113e5565b5b9050919050565b60606000805461076590612c0b565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612c0b565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f38261144f565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610a13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a190612caf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c961149a565b73ffffffffffffffffffffffffffffffffffffffff1614806108f857506108f7816108f261149a565b6112a5565b5b610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90612d41565b60405180910390fd5b61094183836114a2565b505050565b60095481565b61095d61095761149a565b8261155b565b61099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390612dd3565b60405180910390fd5b6109a78383836115f0565b505050565b6109b46118ea565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6109fb8383836040518060200160405280600081525061110b565b505050565b600860009054906101000a900460ff1681565b600080610a1f83611968565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890612e3f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290612ed1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b5a6118ea565b610b6460006119a5565b565b610b6e6118ea565b600047905060006064605a83610b849190612f20565b610b8e9190612fa9565b905060006064600a84610ba19190612f20565b610bab9190612fa9565b9050600073b164d856dc707c4b50993f2322731332461d029e73ffffffffffffffffffffffffffffffffffffffff1683604051610be79061300b565b60006040518083038185875af1925050503d8060008114610c24576040519150601f19603f3d011682016040523d82523d6000602084013e610c29565b606091505b50509050600073f6fdcd87a58257f5867db5cc707df4acb9f0034973ffffffffffffffffffffffffffffffffffffffff1683604051610c679061300b565b60006040518083038185875af1925050503d8060008114610ca4576040519150601f19603f3d011682016040523d82523d6000602084013e610ca9565b606091505b50509050818015610cb75750805b610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced9061306c565b60405180910390fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600381565b610d346118ea565b8060078190555050565b606060018054610d4d90612c0b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7990612c0b565b8015610dc65780601f10610d9b57610100808354040283529160200191610dc6565b820191906000526020600020905b815481529060010190602001808311610da957829003601f168201915b5050505050905090565b600b8054610ddd90612c0b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0990612c0b565b8015610e565780601f10610e2b57610100808354040283529160200191610e56565b820191906000526020600020905b815481529060010190602001808311610e3957829003601f168201915b505050505081565b60075481565b600860009054906101000a900460ff16610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa906130d8565b60405180910390fd5b6003811115610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee9061316a565b60405180910390fd5b600381600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f44919061318a565b1115610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c9061322c565b60405180910390fd5b60006009549050606f8282610f9a919061318a565b1115610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290613298565b60405180910390fd5b3460075483610fea9190612f20565b111561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290613304565b60405180910390fd5b6000600190505b82811161105f5761104e338284611049919061318a565b611a6b565b8061105890613324565b9050611032565b5081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110af919061318a565b9250508190555081600960008282546110c8919061318a565b925050819055505050565b6110db6118ea565b80600b90805190602001906110f192919061248c565b5050565b61110761110061149a565b8383611a89565b5050565b61111c61111661149a565b8361155b565b61115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290612dd3565b60405180910390fd5b61116784848484611bf6565b50505050565b600c805461117a90612c0b565b80601f01602080910402602001604051908101604052809291908181526020018280546111a690612c0b565b80156111f35780601f106111c8576101008083540402835291602001916111f3565b820191906000526020600020905b8154815290600101906020018083116111d657829003601f168201915b505050505081565b606061120682611c52565b611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c906133df565b60405180910390fd5b600061124f611c93565b9050600081511161126f576040518060200160405280600081525061129d565b8061127984611d25565b600c60405160200161128d939291906134cf565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113416118ea565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890613572565b60405180910390fd5b6113ba816119a5565b50565b606f81565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61145881611c52565b611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90612e3f565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661151583610a13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061156783610a13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115a957506115a881856112a5565b5b806115e757508373ffffffffffffffffffffffffffffffffffffffff166115cf846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661161082610a13565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613604565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613696565b60405180910390fd5b6116e38383836001611dfd565b8273ffffffffffffffffffffffffffffffffffffffff1661170382610a13565b73ffffffffffffffffffffffffffffffffffffffff1614611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090613604565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118e58383836001611f23565b505050565b6118f261149a565b73ffffffffffffffffffffffffffffffffffffffff16611910610cfd565b73ffffffffffffffffffffffffffffffffffffffff1614611966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195d90613702565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a85828260405180602001604052806000815250611f29565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aef9061376e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611be991906125e3565b60405180910390a3505050565b611c018484846115f0565b611c0d84848484611f84565b611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4390613800565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611c7483611968565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611ca290612c0b565b80601f0160208091040260200160405190810160405280929190818152602001828054611cce90612c0b565b8015611d1b5780601f10611cf057610100808354040283529160200191611d1b565b820191906000526020600020905b815481529060010190602001808311611cfe57829003601f168201915b5050505050905090565b606060006001611d348461211b565b01905060008167ffffffffffffffff811115611d5357611d52612898565b5b6040519080825280601f01601f191660200182016040528015611d855781602001600182028036833780820191505090505b509050600082602001820190505b600115611df2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ddc57611ddb612f7a565b5b0494506000851415611ded57611df2565b611d93565b819350505050919050565b6001811115611f1d57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611e915780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e899190613820565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f1c5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f14919061318a565b925050819055505b5b50505050565b50505050565b611f33838361226e565b611f406000848484611f84565b611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690613800565b60405180910390fd5b505050565b6000611fa58473ffffffffffffffffffffffffffffffffffffffff166113c2565b1561210e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fce61149a565b8786866040518563ffffffff1660e01b8152600401611ff094939291906138a9565b602060405180830381600087803b15801561200a57600080fd5b505af192505050801561203b57506040513d601f19601f82011682018060405250810190612038919061390a565b60015b6120be573d806000811461206b576040519150601f19603f3d011682016040523d82523d6000602084013e612070565b606091505b506000815114156120b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ad90613800565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612113565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612179577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161216f5761216e612f7a565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121b6576d04ee2d6d415b85acef810000000083816121ac576121ab612f7a565b5b0492506020810190505b662386f26fc1000083106121e557662386f26fc1000083816121db576121da612f7a565b5b0492506010810190505b6305f5e100831061220e576305f5e100838161220457612203612f7a565b5b0492506008810190505b612710831061223357612710838161222957612228612f7a565b5b0492506004810190505b60648310612256576064838161224c5761224b612f7a565b5b0492506002810190505b600a8310612265576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d590613983565b60405180910390fd5b6122e781611c52565b15612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e906139ef565b60405180910390fd5b612335600083836001611dfd565b61233e81611c52565b1561237e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612375906139ef565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612488600083836001611f23565b5050565b82805461249890612c0b565b90600052602060002090601f0160209004810192826124ba5760008555612501565b82601f106124d357805160ff1916838001178555612501565b82800160010185558215612501579182015b828111156125005782518255916020019190600101906124e5565b5b50905061250e9190612512565b5090565b5b8082111561252b576000816000905550600101612513565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61257881612543565b811461258357600080fd5b50565b6000813590506125958161256f565b92915050565b6000602082840312156125b1576125b0612539565b5b60006125bf84828501612586565b91505092915050565b60008115159050919050565b6125dd816125c8565b82525050565b60006020820190506125f860008301846125d4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263857808201518184015260208101905061261d565b83811115612647576000848401525b50505050565b6000601f19601f8301169050919050565b6000612669826125fe565b6126738185612609565b935061268381856020860161261a565b61268c8161264d565b840191505092915050565b600060208201905081810360008301526126b1818461265e565b905092915050565b6000819050919050565b6126cc816126b9565b81146126d757600080fd5b50565b6000813590506126e9816126c3565b92915050565b60006020828403121561270557612704612539565b5b6000612713848285016126da565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127478261271c565b9050919050565b6127578161273c565b82525050565b6000602082019050612772600083018461274e565b92915050565b6127818161273c565b811461278c57600080fd5b50565b60008135905061279e81612778565b92915050565b600080604083850312156127bb576127ba612539565b5b60006127c98582860161278f565b92505060206127da858286016126da565b9150509250929050565b6127ed816126b9565b82525050565b600060208201905061280860008301846127e4565b92915050565b60008060006060848603121561282757612826612539565b5b60006128358682870161278f565b93505060206128468682870161278f565b9250506040612857868287016126da565b9150509250925092565b60006020828403121561287757612876612539565b5b60006128858482850161278f565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128d08261264d565b810181811067ffffffffffffffff821117156128ef576128ee612898565b5b80604052505050565b600061290261252f565b905061290e82826128c7565b919050565b600067ffffffffffffffff82111561292e5761292d612898565b5b6129378261264d565b9050602081019050919050565b82818337600083830152505050565b600061296661296184612913565b6128f8565b90508281526020810184848401111561298257612981612893565b5b61298d848285612944565b509392505050565b600082601f8301126129aa576129a961288e565b5b81356129ba848260208601612953565b91505092915050565b6000602082840312156129d9576129d8612539565b5b600082013567ffffffffffffffff8111156129f7576129f661253e565b5b612a0384828501612995565b91505092915050565b612a15816125c8565b8114612a2057600080fd5b50565b600081359050612a3281612a0c565b92915050565b60008060408385031215612a4f57612a4e612539565b5b6000612a5d8582860161278f565b9250506020612a6e85828601612a23565b9150509250929050565b600067ffffffffffffffff821115612a9357612a92612898565b5b612a9c8261264d565b9050602081019050919050565b6000612abc612ab784612a78565b6128f8565b905082815260208101848484011115612ad857612ad7612893565b5b612ae3848285612944565b509392505050565b600082601f830112612b0057612aff61288e565b5b8135612b10848260208601612aa9565b91505092915050565b60008060008060808587031215612b3357612b32612539565b5b6000612b418782880161278f565b9450506020612b528782880161278f565b9350506040612b63878288016126da565b925050606085013567ffffffffffffffff811115612b8457612b8361253e565b5b612b9087828801612aeb565b91505092959194509250565b60008060408385031215612bb357612bb2612539565b5b6000612bc18582860161278f565b9250506020612bd28582860161278f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c2357607f821691505b60208210811415612c3757612c36612bdc565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c99602183612609565b9150612ca482612c3d565b604082019050919050565b60006020820190508181036000830152612cc881612c8c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612d2b603d83612609565b9150612d3682612ccf565b604082019050919050565b60006020820190508181036000830152612d5a81612d1e565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612dbd602d83612609565b9150612dc882612d61565b604082019050919050565b60006020820190508181036000830152612dec81612db0565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612e29601883612609565b9150612e3482612df3565b602082019050919050565b60006020820190508181036000830152612e5881612e1c565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612ebb602983612609565b9150612ec682612e5f565b604082019050919050565b60006020820190508181036000830152612eea81612eae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f2b826126b9565b9150612f36836126b9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f6f57612f6e612ef1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612fb4826126b9565b9150612fbf836126b9565b925082612fcf57612fce612f7a565b5b828204905092915050565b600081905092915050565b50565b6000612ff5600083612fda565b915061300082612fe5565b600082019050919050565b600061301682612fe8565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613056601083612609565b915061306182613020565b602082019050919050565b6000602082019050818103600083015261308581613049565b9050919050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b60006130c2601383612609565b91506130cd8261308c565b602082019050919050565b600060208201905081810360008301526130f1816130b5565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b6000613154602d83612609565b915061315f826130f8565b604082019050919050565b6000602082019050818103600083015261318381613147565b9050919050565b6000613195826126b9565b91506131a0836126b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d5576131d4612ef1565b5b828201905092915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f74616c2e600082015250565b6000613216602083612609565b9150613221826131e0565b602082019050919050565b6000602082019050818103600083015261324581613209565b9050919050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b6000613282601583612609565b915061328d8261324c565b602082019050919050565b600060208201905081810360008301526132b181613275565b9050919050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b60006132ee601383612609565b91506132f9826132b8565b602082019050919050565b6000602082019050818103600083015261331d816132e1565b9050919050565b600061332f826126b9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561336257613361612ef1565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133c9602f83612609565b91506133d48261336d565b604082019050919050565b600060208201905081810360008301526133f8816133bc565b9050919050565b600081905092915050565b6000613415826125fe565b61341f81856133ff565b935061342f81856020860161261a565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461345d81612c0b565b61346781866133ff565b945060018216600081146134825760018114613493576134c6565b60ff198316865281860193506134c6565b61349c8561343b565b60005b838110156134be5781548189015260018201915060208101905061349f565b838801955050505b50505092915050565b60006134db828661340a565b91506134e7828561340a565b91506134f38284613450565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061355c602683612609565b915061356782613500565b604082019050919050565b6000602082019050818103600083015261358b8161354f565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006135ee602583612609565b91506135f982613592565b604082019050919050565b6000602082019050818103600083015261361d816135e1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613680602483612609565b915061368b82613624565b604082019050919050565b600060208201905081810360008301526136af81613673565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136ec602083612609565b91506136f7826136b6565b602082019050919050565b6000602082019050818103600083015261371b816136df565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613758601983612609565b915061376382613722565b602082019050919050565b600060208201905081810360008301526137878161374b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006137ea603283612609565b91506137f58261378e565b604082019050919050565b60006020820190508181036000830152613819816137dd565b9050919050565b600061382b826126b9565b9150613836836126b9565b92508282101561384957613848612ef1565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b600061387b82613854565b613885818561385f565b935061389581856020860161261a565b61389e8161264d565b840191505092915050565b60006080820190506138be600083018761274e565b6138cb602083018661274e565b6138d860408301856127e4565b81810360608301526138ea8184613870565b905095945050505050565b6000815190506139048161256f565b92915050565b6000602082840312156139205761391f612539565b5b600061392e848285016138f5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061396d602083612609565b915061397882613937565b602082019050919050565b6000602082019050818103600083015261399c81613960565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006139d9601c83612609565b91506139e4826139a3565b602082019050919050565b60006020820190508181036000830152613a08816139cc565b905091905056fea2646970667358221220da315c5aaf4ef195835a8c23887dda2b1e17f17b74c2dca12789883b9abbf13e64736f6c63430008090033697066733a2f2f62616679626569623768696b646b3434696e62653568726936347961366c736d79356a346a6478356e7835367a68647873346161717a746a6d70652f
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80638ecad721116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a6578063e985e9c5146105e3578063f2fde38b14610620578063f47c84c514610649576101b7565b8063a22cb46514610529578063b88d4fde14610552578063c66828621461057b576101b7565b80639abc8320116100c65780639abc83201461048e578063a035b1fe146104b9578063a0712d68146104e4578063a0bcfc7f14610500576101b7565b80638ecad7211461040f57806391b7f5ed1461043a57806395d89b4114610463576101b7565b806342842e0e1161015957806370a082311161013357806370a0823114610386578063715018a6146103c3578063853828b6146103da5780638da5cb5b146103e4576101b7565b806342842e0e146102f5578063564566a81461031e5780636352211e14610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061259b565b610674565b6040516101f091906125e3565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b9190612697565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906126ef565b6107e8565b604051610258919061275d565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906127a4565b61082e565b005b34801561029657600080fd5b5061029f610946565b6040516102ac91906127f3565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061280e565b61094c565b005b3480156102ea57600080fd5b506102f36109ac565b005b34801561030157600080fd5b5061031c6004803603810190610317919061280e565b6109e0565b005b34801561032a57600080fd5b50610333610a00565b60405161034091906125e3565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b91906126ef565b610a13565b60405161037d919061275d565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190612861565b610a9a565b6040516103ba91906127f3565b60405180910390f35b3480156103cf57600080fd5b506103d8610b52565b005b6103e2610b66565b005b3480156103f057600080fd5b506103f9610cfd565b604051610406919061275d565b60405180910390f35b34801561041b57600080fd5b50610424610d27565b60405161043191906127f3565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c91906126ef565b610d2c565b005b34801561046f57600080fd5b50610478610d3e565b6040516104859190612697565b60405180910390f35b34801561049a57600080fd5b506104a3610dd0565b6040516104b09190612697565b60405180910390f35b3480156104c557600080fd5b506104ce610e5e565b6040516104db91906127f3565b60405180910390f35b6104fe60048036038101906104f991906126ef565b610e64565b005b34801561050c57600080fd5b50610527600480360381019061052291906129c3565b6110d3565b005b34801561053557600080fd5b50610550600480360381019061054b9190612a38565b6110f5565b005b34801561055e57600080fd5b5061057960048036038101906105749190612b19565b61110b565b005b34801561058757600080fd5b5061059061116d565b60405161059d9190612697565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906126ef565b6111fb565b6040516105da9190612697565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612b9c565b6112a5565b60405161061791906125e3565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190612861565b611339565b005b34801561065557600080fd5b5061065e6113bd565b60405161066b91906127f3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e826113e5565b5b9050919050565b60606000805461076590612c0b565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612c0b565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f38261144f565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610a13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a190612caf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c961149a565b73ffffffffffffffffffffffffffffffffffffffff1614806108f857506108f7816108f261149a565b6112a5565b5b610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90612d41565b60405180910390fd5b61094183836114a2565b505050565b60095481565b61095d61095761149a565b8261155b565b61099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390612dd3565b60405180910390fd5b6109a78383836115f0565b505050565b6109b46118ea565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6109fb8383836040518060200160405280600081525061110b565b505050565b600860009054906101000a900460ff1681565b600080610a1f83611968565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890612e3f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290612ed1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b5a6118ea565b610b6460006119a5565b565b610b6e6118ea565b600047905060006064605a83610b849190612f20565b610b8e9190612fa9565b905060006064600a84610ba19190612f20565b610bab9190612fa9565b9050600073b164d856dc707c4b50993f2322731332461d029e73ffffffffffffffffffffffffffffffffffffffff1683604051610be79061300b565b60006040518083038185875af1925050503d8060008114610c24576040519150601f19603f3d011682016040523d82523d6000602084013e610c29565b606091505b50509050600073f6fdcd87a58257f5867db5cc707df4acb9f0034973ffffffffffffffffffffffffffffffffffffffff1683604051610c679061300b565b60006040518083038185875af1925050503d8060008114610ca4576040519150601f19603f3d011682016040523d82523d6000602084013e610ca9565b606091505b50509050818015610cb75750805b610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced9061306c565b60405180910390fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600381565b610d346118ea565b8060078190555050565b606060018054610d4d90612c0b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7990612c0b565b8015610dc65780601f10610d9b57610100808354040283529160200191610dc6565b820191906000526020600020905b815481529060010190602001808311610da957829003601f168201915b5050505050905090565b600b8054610ddd90612c0b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0990612c0b565b8015610e565780601f10610e2b57610100808354040283529160200191610e56565b820191906000526020600020905b815481529060010190602001808311610e3957829003601f168201915b505050505081565b60075481565b600860009054906101000a900460ff16610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa906130d8565b60405180910390fd5b6003811115610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee9061316a565b60405180910390fd5b600381600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f44919061318a565b1115610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c9061322c565b60405180910390fd5b60006009549050606f8282610f9a919061318a565b1115610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290613298565b60405180910390fd5b3460075483610fea9190612f20565b111561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290613304565b60405180910390fd5b6000600190505b82811161105f5761104e338284611049919061318a565b611a6b565b8061105890613324565b9050611032565b5081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110af919061318a565b9250508190555081600960008282546110c8919061318a565b925050819055505050565b6110db6118ea565b80600b90805190602001906110f192919061248c565b5050565b61110761110061149a565b8383611a89565b5050565b61111c61111661149a565b8361155b565b61115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290612dd3565b60405180910390fd5b61116784848484611bf6565b50505050565b600c805461117a90612c0b565b80601f01602080910402602001604051908101604052809291908181526020018280546111a690612c0b565b80156111f35780601f106111c8576101008083540402835291602001916111f3565b820191906000526020600020905b8154815290600101906020018083116111d657829003601f168201915b505050505081565b606061120682611c52565b611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c906133df565b60405180910390fd5b600061124f611c93565b9050600081511161126f576040518060200160405280600081525061129d565b8061127984611d25565b600c60405160200161128d939291906134cf565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113416118ea565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890613572565b60405180910390fd5b6113ba816119a5565b50565b606f81565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61145881611c52565b611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90612e3f565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661151583610a13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061156783610a13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115a957506115a881856112a5565b5b806115e757508373ffffffffffffffffffffffffffffffffffffffff166115cf846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661161082610a13565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613604565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613696565b60405180910390fd5b6116e38383836001611dfd565b8273ffffffffffffffffffffffffffffffffffffffff1661170382610a13565b73ffffffffffffffffffffffffffffffffffffffff1614611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090613604565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118e58383836001611f23565b505050565b6118f261149a565b73ffffffffffffffffffffffffffffffffffffffff16611910610cfd565b73ffffffffffffffffffffffffffffffffffffffff1614611966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195d90613702565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a85828260405180602001604052806000815250611f29565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aef9061376e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611be991906125e3565b60405180910390a3505050565b611c018484846115f0565b611c0d84848484611f84565b611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4390613800565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611c7483611968565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611ca290612c0b565b80601f0160208091040260200160405190810160405280929190818152602001828054611cce90612c0b565b8015611d1b5780601f10611cf057610100808354040283529160200191611d1b565b820191906000526020600020905b815481529060010190602001808311611cfe57829003601f168201915b5050505050905090565b606060006001611d348461211b565b01905060008167ffffffffffffffff811115611d5357611d52612898565b5b6040519080825280601f01601f191660200182016040528015611d855781602001600182028036833780820191505090505b509050600082602001820190505b600115611df2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ddc57611ddb612f7a565b5b0494506000851415611ded57611df2565b611d93565b819350505050919050565b6001811115611f1d57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611e915780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e899190613820565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f1c5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f14919061318a565b925050819055505b5b50505050565b50505050565b611f33838361226e565b611f406000848484611f84565b611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690613800565b60405180910390fd5b505050565b6000611fa58473ffffffffffffffffffffffffffffffffffffffff166113c2565b1561210e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fce61149a565b8786866040518563ffffffff1660e01b8152600401611ff094939291906138a9565b602060405180830381600087803b15801561200a57600080fd5b505af192505050801561203b57506040513d601f19601f82011682018060405250810190612038919061390a565b60015b6120be573d806000811461206b576040519150601f19603f3d011682016040523d82523d6000602084013e612070565b606091505b506000815114156120b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ad90613800565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612113565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612179577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161216f5761216e612f7a565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121b6576d04ee2d6d415b85acef810000000083816121ac576121ab612f7a565b5b0492506020810190505b662386f26fc1000083106121e557662386f26fc1000083816121db576121da612f7a565b5b0492506010810190505b6305f5e100831061220e576305f5e100838161220457612203612f7a565b5b0492506008810190505b612710831061223357612710838161222957612228612f7a565b5b0492506004810190505b60648310612256576064838161224c5761224b612f7a565b5b0492506002810190505b600a8310612265576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d590613983565b60405180910390fd5b6122e781611c52565b15612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e906139ef565b60405180910390fd5b612335600083836001611dfd565b61233e81611c52565b1561237e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612375906139ef565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612488600083836001611f23565b5050565b82805461249890612c0b565b90600052602060002090601f0160209004810192826124ba5760008555612501565b82601f106124d357805160ff1916838001178555612501565b82800160010185558215612501579182015b828111156125005782518255916020019190600101906124e5565b5b50905061250e9190612512565b5090565b5b8082111561252b576000816000905550600101612513565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61257881612543565b811461258357600080fd5b50565b6000813590506125958161256f565b92915050565b6000602082840312156125b1576125b0612539565b5b60006125bf84828501612586565b91505092915050565b60008115159050919050565b6125dd816125c8565b82525050565b60006020820190506125f860008301846125d4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263857808201518184015260208101905061261d565b83811115612647576000848401525b50505050565b6000601f19601f8301169050919050565b6000612669826125fe565b6126738185612609565b935061268381856020860161261a565b61268c8161264d565b840191505092915050565b600060208201905081810360008301526126b1818461265e565b905092915050565b6000819050919050565b6126cc816126b9565b81146126d757600080fd5b50565b6000813590506126e9816126c3565b92915050565b60006020828403121561270557612704612539565b5b6000612713848285016126da565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127478261271c565b9050919050565b6127578161273c565b82525050565b6000602082019050612772600083018461274e565b92915050565b6127818161273c565b811461278c57600080fd5b50565b60008135905061279e81612778565b92915050565b600080604083850312156127bb576127ba612539565b5b60006127c98582860161278f565b92505060206127da858286016126da565b9150509250929050565b6127ed816126b9565b82525050565b600060208201905061280860008301846127e4565b92915050565b60008060006060848603121561282757612826612539565b5b60006128358682870161278f565b93505060206128468682870161278f565b9250506040612857868287016126da565b9150509250925092565b60006020828403121561287757612876612539565b5b60006128858482850161278f565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128d08261264d565b810181811067ffffffffffffffff821117156128ef576128ee612898565b5b80604052505050565b600061290261252f565b905061290e82826128c7565b919050565b600067ffffffffffffffff82111561292e5761292d612898565b5b6129378261264d565b9050602081019050919050565b82818337600083830152505050565b600061296661296184612913565b6128f8565b90508281526020810184848401111561298257612981612893565b5b61298d848285612944565b509392505050565b600082601f8301126129aa576129a961288e565b5b81356129ba848260208601612953565b91505092915050565b6000602082840312156129d9576129d8612539565b5b600082013567ffffffffffffffff8111156129f7576129f661253e565b5b612a0384828501612995565b91505092915050565b612a15816125c8565b8114612a2057600080fd5b50565b600081359050612a3281612a0c565b92915050565b60008060408385031215612a4f57612a4e612539565b5b6000612a5d8582860161278f565b9250506020612a6e85828601612a23565b9150509250929050565b600067ffffffffffffffff821115612a9357612a92612898565b5b612a9c8261264d565b9050602081019050919050565b6000612abc612ab784612a78565b6128f8565b905082815260208101848484011115612ad857612ad7612893565b5b612ae3848285612944565b509392505050565b600082601f830112612b0057612aff61288e565b5b8135612b10848260208601612aa9565b91505092915050565b60008060008060808587031215612b3357612b32612539565b5b6000612b418782880161278f565b9450506020612b528782880161278f565b9350506040612b63878288016126da565b925050606085013567ffffffffffffffff811115612b8457612b8361253e565b5b612b9087828801612aeb565b91505092959194509250565b60008060408385031215612bb357612bb2612539565b5b6000612bc18582860161278f565b9250506020612bd28582860161278f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c2357607f821691505b60208210811415612c3757612c36612bdc565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c99602183612609565b9150612ca482612c3d565b604082019050919050565b60006020820190508181036000830152612cc881612c8c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612d2b603d83612609565b9150612d3682612ccf565b604082019050919050565b60006020820190508181036000830152612d5a81612d1e565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612dbd602d83612609565b9150612dc882612d61565b604082019050919050565b60006020820190508181036000830152612dec81612db0565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612e29601883612609565b9150612e3482612df3565b602082019050919050565b60006020820190508181036000830152612e5881612e1c565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612ebb602983612609565b9150612ec682612e5f565b604082019050919050565b60006020820190508181036000830152612eea81612eae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f2b826126b9565b9150612f36836126b9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f6f57612f6e612ef1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612fb4826126b9565b9150612fbf836126b9565b925082612fcf57612fce612f7a565b5b828204905092915050565b600081905092915050565b50565b6000612ff5600083612fda565b915061300082612fe5565b600082019050919050565b600061301682612fe8565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613056601083612609565b915061306182613020565b602082019050919050565b6000602082019050818103600083015261308581613049565b9050919050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b60006130c2601383612609565b91506130cd8261308c565b602082019050919050565b600060208201905081810360008301526130f1816130b5565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b6000613154602d83612609565b915061315f826130f8565b604082019050919050565b6000602082019050818103600083015261318381613147565b9050919050565b6000613195826126b9565b91506131a0836126b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d5576131d4612ef1565b5b828201905092915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f74616c2e600082015250565b6000613216602083612609565b9150613221826131e0565b602082019050919050565b6000602082019050818103600083015261324581613209565b9050919050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b6000613282601583612609565b915061328d8261324c565b602082019050919050565b600060208201905081810360008301526132b181613275565b9050919050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b60006132ee601383612609565b91506132f9826132b8565b602082019050919050565b6000602082019050818103600083015261331d816132e1565b9050919050565b600061332f826126b9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561336257613361612ef1565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133c9602f83612609565b91506133d48261336d565b604082019050919050565b600060208201905081810360008301526133f8816133bc565b9050919050565b600081905092915050565b6000613415826125fe565b61341f81856133ff565b935061342f81856020860161261a565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461345d81612c0b565b61346781866133ff565b945060018216600081146134825760018114613493576134c6565b60ff198316865281860193506134c6565b61349c8561343b565b60005b838110156134be5781548189015260018201915060208101905061349f565b838801955050505b50505092915050565b60006134db828661340a565b91506134e7828561340a565b91506134f38284613450565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061355c602683612609565b915061356782613500565b604082019050919050565b6000602082019050818103600083015261358b8161354f565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006135ee602583612609565b91506135f982613592565b604082019050919050565b6000602082019050818103600083015261361d816135e1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613680602483612609565b915061368b82613624565b604082019050919050565b600060208201905081810360008301526136af81613673565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136ec602083612609565b91506136f7826136b6565b602082019050919050565b6000602082019050818103600083015261371b816136df565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613758601983612609565b915061376382613722565b602082019050919050565b600060208201905081810360008301526137878161374b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006137ea603283612609565b91506137f58261378e565b604082019050919050565b60006020820190508181036000830152613819816137dd565b9050919050565b600061382b826126b9565b9150613836836126b9565b92508282101561384957613848612ef1565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b600061387b82613854565b613885818561385f565b935061389581856020860161261a565b61389e8161264d565b840191505092915050565b60006080820190506138be600083018761274e565b6138cb602083018661274e565b6138d860408301856127e4565b81810360608301526138ea8184613870565b905095945050505050565b6000815190506139048161256f565b92915050565b6000602082840312156139205761391f612539565b5b600061392e848285016138f5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061396d602083612609565b915061397882613937565b602082019050919050565b6000602082019050818103600083015261399c81613960565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006139d9601c83612609565b91506139e4826139a3565b602082019050919050565b60006020820190508181036000830152613a08816139cc565b905091905056fea2646970667358221220da315c5aaf4ef195835a8c23887dda2b1e17f17b74c2dca12789883b9abbf13e64736f6c63430008090033
Deployed Bytecode Sourcemap
54455:2891:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35844:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36772:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38284:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37802:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54743:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38984:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56018:91;;;;;;;;;;;;;:::i;:::-;;39390:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54712:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36482:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36213:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53567:103;;;;;;;;;;;;;:::i;:::-;;56319:502;;;:::i;:::-;;52919:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54660:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56225:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36941:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54836:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54632;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55238:743;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56117:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38527:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39646:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54864:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56829:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38753:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53825:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54540:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35844:305;35946:4;35998:25;35983:40;;;:11;:40;;;;:105;;;;36055:33;36040:48;;;:11;:48;;;;35983:105;:158;;;;36105:36;36129:11;36105:23;:36::i;:::-;35983:158;35963:178;;35844:305;;;:::o;36772:100::-;36826:13;36859:5;36852:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36772:100;:::o;38284:171::-;38360:7;38380:23;38395:7;38380:14;:23::i;:::-;38423:15;:24;38439:7;38423:24;;;;;;;;;;;;;;;;;;;;;38416:31;;38284:171;;;:::o;37802:416::-;37883:13;37899:23;37914:7;37899:14;:23::i;:::-;37883:39;;37947:5;37941:11;;:2;:11;;;;37933:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38041:5;38025:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;38050:37;38067:5;38074:12;:10;:12::i;:::-;38050:16;:37::i;:::-;38025:62;38003:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;38189:21;38198:2;38202:7;38189:8;:21::i;:::-;37872:346;37802:416;;:::o;54743:26::-;;;;:::o;38984:335::-;39179:41;39198:12;:10;:12::i;:::-;39212:7;39179:18;:41::i;:::-;39171:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39283:28;39293:4;39299:2;39303:7;39283:9;:28::i;:::-;38984:335;;;:::o;56018:91::-;52805:13;:11;:13::i;:::-;56089:12:::1;;;;;;;;;;;56088:13;56073:12;;:28;;;;;;;;;;;;;;;;;;56018:91::o:0;39390:185::-;39528:39;39545:4;39551:2;39555:7;39528:39;;;;;;;;;;;;:16;:39::i;:::-;39390:185;;;:::o;54712:24::-;;;;;;;;;;;;;:::o;36482:223::-;36554:7;36574:13;36590:17;36599:7;36590:8;:17::i;:::-;36574:33;;36643:1;36626:19;;:5;:19;;;;36618:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;36692:5;36685:12;;;36482:223;;;:::o;36213:207::-;36285:7;36330:1;36313:19;;:5;:19;;;;36305:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36396:9;:16;36406:5;36396:16;;;;;;;;;;;;;;;;36389:23;;36213:207;;;:::o;53567:103::-;52805:13;:11;:13::i;:::-;53632:30:::1;53659:1;53632:18;:30::i;:::-;53567:103::o:0;56319:502::-;52805:13;:11;:13::i;:::-;56380:15:::1;56398:21;56380:39;;56430:18;56466:3;56461:2;56451:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;56430:39;;56480:18;56516:3;56511:2;56501:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;56480:39;;56532:16;56562:42;56554:56;;56618:10;56554:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56530:103;;;56646:16;56676:42;56668:56;;56732:10;56668:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56644:103;;;56766:11;:26;;;;;56781:11;56766:26;56758:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;56369:452;;;;;56319:502::o:0;52919:87::-;52965:7;52992:6;;;;;;;;;;;52985:13;;52919:87;:::o;54660:43::-;54702:1;54660:43;:::o;56225:86::-;52805:13;:11;:13::i;:::-;56297:6:::1;56289:5;:14;;;;56225:86:::0;:::o;36941:104::-;36997:13;37030:7;37023:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36941:104;:::o;54836:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54632:::-;;;;:::o;55238:743::-;55308:12;;;;;;;;;;;55300:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;54702:1;55363:10;:29;;55355:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;54702:1;55491:10;55461:15;:27;55477:10;55461:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:59;;55453:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;55568:22;55593:11;;55568:36;;54574:3;55640:10;55623:14;:27;;;;:::i;:::-;:41;;55615:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;55731:9;55722:5;;55709:10;:18;;;;:::i;:::-;:31;;55701:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;55781:9;55793:1;55781:13;;55777:109;55801:10;55796:1;:15;55777:109;;55833:41;55843:10;55872:1;55855:14;:18;;;;:::i;:::-;55833:9;:41::i;:::-;55813:3;;;;:::i;:::-;;;55777:109;;;;55927:10;55896:15;:27;55912:10;55896:27;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;55963:10;55948:11;;:25;;;;;;;:::i;:::-;;;;;;;;55289:692;55238:743;:::o;56117:100::-;52805:13;:11;:13::i;:::-;56201:8:::1;56191:7;:18;;;;;;;;;;;;:::i;:::-;;56117:100:::0;:::o;38527:155::-;38622:52;38641:12;:10;:12::i;:::-;38655:8;38665;38622:18;:52::i;:::-;38527:155;;:::o;39646:322::-;39820:41;39839:12;:10;:12::i;:::-;39853:7;39820:18;:41::i;:::-;39812:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39922:38;39936:4;39942:2;39946:7;39955:4;39922:13;:38::i;:::-;39646:322;;;;:::o;54864:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56829:397::-;56902:13;56936:16;56944:7;56936;:16::i;:::-;56928:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;57018:28;57049:10;:8;:10::i;:::-;57018:41;;57108:1;57083:14;57077:28;:32;:141;;;;;;;;;;;;;;;;;57149:14;57165:18;:7;:16;:18::i;:::-;57185:13;57132:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57077:141;57070:148;;;56829:397;;;:::o;38753:164::-;38850:4;38874:18;:25;38893:5;38874:25;;;;;;;;;;;;;;;:35;38900:8;38874:35;;;;;;;;;;;;;;;;;;;;;;;;;38867:42;;38753:164;;;;:::o;53825:201::-;52805:13;:11;:13::i;:::-;53934:1:::1;53914:22;;:8;:22;;;;53906:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53990:28;54009:8;53990:18;:28::i;:::-;53825:201:::0;:::o;54540:37::-;54574:3;54540:37;:::o;16432:326::-;16492:4;16749:1;16727:7;:19;;;:23;16720:30;;16432:326;;;:::o;27463:157::-;27548:4;27587:25;27572:40;;;:11;:40;;;;27565:47;;27463:157;;;:::o;48103:135::-;48185:16;48193:7;48185;:16::i;:::-;48177:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;48103:135;:::o;34223:98::-;34276:7;34303:10;34296:17;;34223:98;:::o;47382:174::-;47484:2;47457:15;:24;47473:7;47457:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47540:7;47536:2;47502:46;;47511:23;47526:7;47511:14;:23::i;:::-;47502:46;;;;;;;;;;;;47382:174;;:::o;42001:264::-;42094:4;42111:13;42127:23;42142:7;42127:14;:23::i;:::-;42111:39;;42180:5;42169:16;;:7;:16;;;:52;;;;42189:32;42206:5;42213:7;42189:16;:32::i;:::-;42169:52;:87;;;;42249:7;42225:31;;:20;42237:7;42225:11;:20::i;:::-;:31;;;42169:87;42161:96;;;42001:264;;;;:::o;46000:1263::-;46159:4;46132:31;;:23;46147:7;46132:14;:23::i;:::-;:31;;;46124:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46238:1;46224:16;;:2;:16;;;;46216:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46294:42;46315:4;46321:2;46325:7;46334:1;46294:20;:42::i;:::-;46466:4;46439:31;;:23;46454:7;46439:14;:23::i;:::-;:31;;;46431:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46584:15;:24;46600:7;46584:24;;;;;;;;;;;;46577:31;;;;;;;;;;;47079:1;47060:9;:15;47070:4;47060:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;47112:1;47095:9;:13;47105:2;47095:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47154:2;47135:7;:16;47143:7;47135:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47193:7;47189:2;47174:27;;47183:4;47174:27;;;;;;;;;;;;47214:41;47234:4;47240:2;47244:7;47253:1;47214:19;:41::i;:::-;46000:1263;;;:::o;53084:132::-;53159:12;:10;:12::i;:::-;53148:23;;:7;:5;:7::i;:::-;:23;;;53140:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53084:132::o;41276:117::-;41342:7;41369;:16;41377:7;41369:16;;;;;;;;;;;;;;;;;;;;;41362:23;;41276:117;;;:::o;54186:191::-;54260:16;54279:6;;;;;;;;;;;54260:25;;54305:8;54296:6;;:17;;;;;;;;;;;;;;;;;;54360:8;54329:40;;54350:8;54329:40;;;;;;;;;;;;54249:128;54186:191;:::o;42607:110::-;42683:26;42693:2;42697:7;42683:26;;;;;;;;;;;;:9;:26::i;:::-;42607:110;;:::o;47699:315::-;47854:8;47845:17;;:5;:17;;;;47837:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47941:8;47903:18;:25;47922:5;47903:25;;;;;;;;;;;;;;;:35;47929:8;47903:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;47987:8;47965:41;;47980:5;47965:41;;;47997:8;47965:41;;;;;;:::i;:::-;;;;;;;;47699:315;;;:::o;40849:313::-;41005:28;41015:4;41021:2;41025:7;41005:9;:28::i;:::-;41052:47;41075:4;41081:2;41085:7;41094:4;41052:22;:47::i;:::-;41044:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;40849:313;;;;:::o;41706:128::-;41771:4;41824:1;41795:31;;:17;41804:7;41795:8;:17::i;:::-;:31;;;;41788:38;;41706:128;;;:::o;57235:108::-;57295:13;57328:7;57321:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57235:108;:::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;50387:410::-;50577:1;50565:9;:13;50561:229;;;50615:1;50599:18;;:4;:18;;;50595:87;;50657:9;50638;:15;50648:4;50638:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;50595:87;50714:1;50700:16;;:2;:16;;;50696:83;;50754:9;50737;:13;50747:2;50737:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;50696:83;50561:229;50387:410;;;;:::o;51519:158::-;;;;;:::o;42944:319::-;43073:18;43079:2;43083:7;43073:5;:18::i;:::-;43124:53;43155:1;43159:2;43163:7;43172:4;43124:22;:53::i;:::-;43102:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;42944:319;;;:::o;48802:853::-;48956:4;48977:15;:2;:13;;;:15::i;:::-;48973:675;;;49029:2;49013:36;;;49050:12;:10;:12::i;:::-;49064:4;49070:7;49079:4;49013:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49009:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49271:1;49254:6;:13;:18;49250:328;;;49297:60;;;;;;;;;;:::i;:::-;;;;;;;;49250:328;49528:6;49522:13;49513:6;49509:2;49505:15;49498:38;49009:584;49145:41;;;49135:51;;;:6;:51;;;;49128:58;;;;;48973:675;49632:4;49625:11;;48802: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;43599:942::-;43693:1;43679:16;;:2;:16;;;;43671:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43752:16;43760:7;43752;:16::i;:::-;43751:17;43743:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43814:48;43843:1;43847:2;43851:7;43860:1;43814:20;:48::i;:::-;43961:16;43969:7;43961;:16::i;:::-;43960:17;43952:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44376:1;44359:9;:13;44369:2;44359:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;44420:2;44401:7;:16;44409:7;44401:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44465:7;44461:2;44440:33;;44457:1;44440:33;;;;;;;;;;;;44486:47;44514:1;44518:2;44522:7;44531:1;44486:19;:47::i;:::-;43599:942;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:220::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:3;12837:2;12829:6;12825:15;12818:28;12633:220;:::o;12859:366::-;13001:3;13022:67;13086:2;13081:3;13022:67;:::i;:::-;13015:74;;13098:93;13187:3;13098:93;:::i;:::-;13216:2;13211:3;13207:12;13200:19;;12859:366;;;:::o;13231:419::-;13397:4;13435:2;13424:9;13420:18;13412:26;;13484:9;13478:4;13474:20;13470:1;13459:9;13455:17;13448:47;13512:131;13638:4;13512:131;:::i;:::-;13504:139;;13231:419;;;:::o;13656:248::-;13796:34;13792:1;13784:6;13780:14;13773:58;13865:31;13860:2;13852:6;13848:15;13841:56;13656:248;:::o;13910:366::-;14052:3;14073:67;14137:2;14132:3;14073:67;:::i;:::-;14066:74;;14149:93;14238:3;14149:93;:::i;:::-;14267:2;14262:3;14258:12;14251:19;;13910:366;;;:::o;14282:419::-;14448:4;14486:2;14475:9;14471:18;14463:26;;14535:9;14529:4;14525:20;14521:1;14510:9;14506:17;14499:47;14563:131;14689:4;14563:131;:::i;:::-;14555:139;;14282:419;;;:::o;14707:232::-;14847:34;14843:1;14835:6;14831:14;14824:58;14916:15;14911:2;14903:6;14899:15;14892:40;14707:232;:::o;14945:366::-;15087:3;15108:67;15172:2;15167:3;15108:67;:::i;:::-;15101:74;;15184:93;15273:3;15184:93;:::i;:::-;15302:2;15297:3;15293:12;15286:19;;14945:366;;;:::o;15317:419::-;15483:4;15521:2;15510:9;15506:18;15498:26;;15570:9;15564:4;15560:20;15556:1;15545:9;15541:17;15534:47;15598:131;15724:4;15598:131;:::i;:::-;15590:139;;15317:419;;;:::o;15742:174::-;15882:26;15878:1;15870:6;15866:14;15859:50;15742:174;:::o;15922:366::-;16064:3;16085:67;16149:2;16144:3;16085:67;:::i;:::-;16078:74;;16161:93;16250:3;16161:93;:::i;:::-;16279:2;16274:3;16270:12;16263:19;;15922:366;;;:::o;16294:419::-;16460:4;16498:2;16487:9;16483:18;16475:26;;16547:9;16541:4;16537:20;16533:1;16522:9;16518:17;16511:47;16575:131;16701:4;16575:131;:::i;:::-;16567:139;;16294:419;;;:::o;16719:228::-;16859:34;16855:1;16847:6;16843:14;16836:58;16928:11;16923:2;16915:6;16911:15;16904:36;16719:228;:::o;16953:366::-;17095:3;17116:67;17180:2;17175:3;17116:67;:::i;:::-;17109:74;;17192:93;17281:3;17192:93;:::i;:::-;17310:2;17305:3;17301:12;17294:19;;16953:366;;;:::o;17325:419::-;17491:4;17529:2;17518:9;17514:18;17506:26;;17578:9;17572:4;17568:20;17564:1;17553:9;17549:17;17542:47;17606:131;17732:4;17606:131;:::i;:::-;17598:139;;17325:419;;;:::o;17750:180::-;17798:77;17795:1;17788:88;17895:4;17892:1;17885:15;17919:4;17916:1;17909:15;17936:348;17976:7;17999:20;18017:1;17999:20;:::i;:::-;17994:25;;18033:20;18051:1;18033:20;:::i;:::-;18028:25;;18221:1;18153:66;18149:74;18146:1;18143:81;18138:1;18131:9;18124:17;18120:105;18117:131;;;18228:18;;:::i;:::-;18117:131;18276:1;18273;18269:9;18258:20;;17936:348;;;;:::o;18290:180::-;18338:77;18335:1;18328:88;18435:4;18432:1;18425:15;18459:4;18456:1;18449:15;18476:185;18516:1;18533:20;18551:1;18533:20;:::i;:::-;18528:25;;18567:20;18585:1;18567:20;:::i;:::-;18562:25;;18606:1;18596:35;;18611:18;;:::i;:::-;18596:35;18653:1;18650;18646:9;18641:14;;18476:185;;;;:::o;18667:147::-;18768:11;18805:3;18790:18;;18667:147;;;;:::o;18820:114::-;;:::o;18940:398::-;19099:3;19120:83;19201:1;19196:3;19120:83;:::i;:::-;19113:90;;19212:93;19301:3;19212:93;:::i;:::-;19330:1;19325:3;19321:11;19314:18;;18940:398;;;:::o;19344:379::-;19528:3;19550:147;19693:3;19550:147;:::i;:::-;19543:154;;19714:3;19707:10;;19344:379;;;:::o;19729:166::-;19869:18;19865:1;19857:6;19853:14;19846:42;19729:166;:::o;19901:366::-;20043:3;20064:67;20128:2;20123:3;20064:67;:::i;:::-;20057:74;;20140:93;20229:3;20140:93;:::i;:::-;20258:2;20253:3;20249:12;20242:19;;19901:366;;;:::o;20273:419::-;20439:4;20477:2;20466:9;20462:18;20454:26;;20526:9;20520:4;20516:20;20512:1;20501:9;20497:17;20490:47;20554:131;20680:4;20554:131;:::i;:::-;20546:139;;20273:419;;;:::o;20698:169::-;20838:21;20834:1;20826:6;20822:14;20815:45;20698:169;:::o;20873:366::-;21015:3;21036:67;21100:2;21095:3;21036:67;:::i;:::-;21029:74;;21112:93;21201:3;21112:93;:::i;:::-;21230:2;21225:3;21221:12;21214:19;;20873:366;;;:::o;21245:419::-;21411:4;21449:2;21438:9;21434:18;21426:26;;21498:9;21492:4;21488:20;21484:1;21473:9;21469:17;21462:47;21526:131;21652:4;21526:131;:::i;:::-;21518:139;;21245:419;;;:::o;21670:232::-;21810:34;21806:1;21798:6;21794:14;21787:58;21879:15;21874:2;21866:6;21862:15;21855:40;21670:232;:::o;21908:366::-;22050:3;22071:67;22135:2;22130:3;22071:67;:::i;:::-;22064:74;;22147:93;22236:3;22147:93;:::i;:::-;22265:2;22260:3;22256:12;22249:19;;21908:366;;;:::o;22280:419::-;22446:4;22484:2;22473:9;22469:18;22461:26;;22533:9;22527:4;22523:20;22519:1;22508:9;22504:17;22497:47;22561:131;22687:4;22561:131;:::i;:::-;22553:139;;22280:419;;;:::o;22705:305::-;22745:3;22764:20;22782:1;22764:20;:::i;:::-;22759:25;;22798:20;22816:1;22798:20;:::i;:::-;22793:25;;22952:1;22884:66;22880:74;22877:1;22874:81;22871:107;;;22958:18;;:::i;:::-;22871:107;23002:1;22999;22995:9;22988:16;;22705:305;;;;:::o;23016:182::-;23156:34;23152:1;23144:6;23140:14;23133:58;23016:182;:::o;23204:366::-;23346:3;23367:67;23431:2;23426:3;23367:67;:::i;:::-;23360:74;;23443:93;23532:3;23443:93;:::i;:::-;23561:2;23556:3;23552:12;23545:19;;23204:366;;;:::o;23576:419::-;23742:4;23780:2;23769:9;23765:18;23757:26;;23829:9;23823:4;23819:20;23815:1;23804:9;23800:17;23793:47;23857:131;23983:4;23857:131;:::i;:::-;23849:139;;23576:419;;;:::o;24001:171::-;24141:23;24137:1;24129:6;24125:14;24118:47;24001:171;:::o;24178:366::-;24320:3;24341:67;24405:2;24400:3;24341:67;:::i;:::-;24334:74;;24417:93;24506:3;24417:93;:::i;:::-;24535:2;24530:3;24526:12;24519:19;;24178:366;;;:::o;24550:419::-;24716:4;24754:2;24743:9;24739:18;24731:26;;24803:9;24797:4;24793:20;24789:1;24778:9;24774:17;24767:47;24831:131;24957:4;24831:131;:::i;:::-;24823:139;;24550:419;;;:::o;24975:169::-;25115:21;25111:1;25103:6;25099:14;25092:45;24975:169;:::o;25150:366::-;25292:3;25313:67;25377:2;25372:3;25313:67;:::i;:::-;25306:74;;25389:93;25478:3;25389:93;:::i;:::-;25507:2;25502:3;25498:12;25491:19;;25150:366;;;:::o;25522:419::-;25688:4;25726:2;25715:9;25711:18;25703:26;;25775:9;25769:4;25765:20;25761:1;25750:9;25746:17;25739:47;25803:131;25929:4;25803:131;:::i;:::-;25795:139;;25522:419;;;:::o;25947:233::-;25986:3;26009:24;26027:5;26009:24;:::i;:::-;26000:33;;26055:66;26048:5;26045:77;26042:103;;;26125:18;;:::i;:::-;26042:103;26172:1;26165:5;26161:13;26154:20;;25947:233;;;:::o;26186:234::-;26326:34;26322:1;26314:6;26310:14;26303:58;26395:17;26390:2;26382:6;26378:15;26371:42;26186:234;:::o;26426:366::-;26568:3;26589:67;26653:2;26648:3;26589:67;:::i;:::-;26582:74;;26665:93;26754:3;26665:93;:::i;:::-;26783:2;26778:3;26774:12;26767:19;;26426:366;;;:::o;26798:419::-;26964:4;27002:2;26991:9;26987:18;26979:26;;27051:9;27045:4;27041:20;27037:1;27026:9;27022:17;27015:47;27079:131;27205:4;27079:131;:::i;:::-;27071:139;;26798:419;;;:::o;27223:148::-;27325:11;27362:3;27347:18;;27223:148;;;;:::o;27377:377::-;27483:3;27511:39;27544:5;27511:39;:::i;:::-;27566:89;27648:6;27643:3;27566:89;:::i;:::-;27559:96;;27664:52;27709:6;27704:3;27697:4;27690:5;27686:16;27664:52;:::i;:::-;27741:6;27736:3;27732:16;27725:23;;27487:267;27377:377;;;;:::o;27760:141::-;27809:4;27832:3;27824:11;;27855:3;27852:1;27845:14;27889:4;27886:1;27876:18;27868:26;;27760:141;;;:::o;27931:845::-;28034:3;28071:5;28065:12;28100:36;28126:9;28100:36;:::i;:::-;28152:89;28234:6;28229:3;28152:89;:::i;:::-;28145:96;;28272:1;28261:9;28257:17;28288:1;28283:137;;;;28434:1;28429:341;;;;28250:520;;28283:137;28367:4;28363:9;28352;28348:25;28343:3;28336:38;28403:6;28398:3;28394:16;28387:23;;28283:137;;28429:341;28496:38;28528:5;28496:38;:::i;:::-;28556:1;28570:154;28584:6;28581:1;28578:13;28570:154;;;28658:7;28652:14;28648:1;28643:3;28639:11;28632:35;28708:1;28699:7;28695:15;28684:26;;28606:4;28603:1;28599:12;28594:17;;28570:154;;;28753:6;28748:3;28744:16;28737:23;;28436:334;;28250:520;;28038:738;;27931:845;;;;:::o;28782:589::-;29007:3;29029:95;29120:3;29111:6;29029:95;:::i;:::-;29022:102;;29141:95;29232:3;29223:6;29141:95;:::i;:::-;29134:102;;29253:92;29341:3;29332:6;29253:92;:::i;:::-;29246:99;;29362:3;29355:10;;28782:589;;;;;;:::o;29377:225::-;29517:34;29513:1;29505:6;29501:14;29494:58;29586:8;29581:2;29573:6;29569:15;29562:33;29377:225;:::o;29608:366::-;29750:3;29771:67;29835:2;29830:3;29771:67;:::i;:::-;29764:74;;29847:93;29936:3;29847:93;:::i;:::-;29965:2;29960:3;29956:12;29949:19;;29608:366;;;:::o;29980:419::-;30146:4;30184:2;30173:9;30169:18;30161:26;;30233:9;30227:4;30223:20;30219:1;30208:9;30204:17;30197:47;30261:131;30387:4;30261:131;:::i;:::-;30253:139;;29980:419;;;:::o;30405:224::-;30545:34;30541:1;30533:6;30529:14;30522:58;30614:7;30609:2;30601:6;30597:15;30590:32;30405:224;:::o;30635:366::-;30777:3;30798:67;30862:2;30857:3;30798:67;:::i;:::-;30791:74;;30874:93;30963:3;30874:93;:::i;:::-;30992:2;30987:3;30983:12;30976:19;;30635:366;;;:::o;31007:419::-;31173:4;31211:2;31200:9;31196:18;31188:26;;31260:9;31254:4;31250:20;31246:1;31235:9;31231:17;31224:47;31288:131;31414:4;31288:131;:::i;:::-;31280:139;;31007:419;;;:::o;31432:223::-;31572:34;31568:1;31560:6;31556:14;31549:58;31641:6;31636:2;31628:6;31624:15;31617:31;31432:223;:::o;31661:366::-;31803:3;31824:67;31888:2;31883:3;31824:67;:::i;:::-;31817:74;;31900:93;31989:3;31900:93;:::i;:::-;32018:2;32013:3;32009:12;32002:19;;31661:366;;;:::o;32033:419::-;32199:4;32237:2;32226:9;32222:18;32214:26;;32286:9;32280:4;32276:20;32272:1;32261:9;32257:17;32250:47;32314:131;32440:4;32314:131;:::i;:::-;32306:139;;32033:419;;;:::o;32458:182::-;32598:34;32594:1;32586:6;32582:14;32575:58;32458:182;:::o;32646:366::-;32788:3;32809:67;32873:2;32868:3;32809:67;:::i;:::-;32802:74;;32885:93;32974:3;32885:93;:::i;:::-;33003:2;32998:3;32994:12;32987:19;;32646:366;;;:::o;33018:419::-;33184:4;33222:2;33211:9;33207:18;33199:26;;33271:9;33265:4;33261:20;33257:1;33246:9;33242:17;33235:47;33299:131;33425:4;33299:131;:::i;:::-;33291:139;;33018:419;;;:::o;33443:175::-;33583:27;33579:1;33571:6;33567:14;33560:51;33443:175;:::o;33624:366::-;33766:3;33787:67;33851:2;33846:3;33787:67;:::i;:::-;33780:74;;33863:93;33952:3;33863:93;:::i;:::-;33981:2;33976:3;33972:12;33965:19;;33624:366;;;:::o;33996:419::-;34162:4;34200:2;34189:9;34185:18;34177:26;;34249:9;34243:4;34239:20;34235:1;34224:9;34220:17;34213:47;34277:131;34403:4;34277:131;:::i;:::-;34269:139;;33996:419;;;:::o;34421:237::-;34561:34;34557:1;34549:6;34545:14;34538:58;34630:20;34625:2;34617:6;34613:15;34606:45;34421:237;:::o;34664:366::-;34806:3;34827:67;34891:2;34886:3;34827:67;:::i;:::-;34820:74;;34903:93;34992:3;34903:93;:::i;:::-;35021:2;35016:3;35012:12;35005:19;;34664:366;;;:::o;35036:419::-;35202:4;35240:2;35229:9;35225:18;35217:26;;35289:9;35283:4;35279:20;35275:1;35264:9;35260:17;35253:47;35317:131;35443:4;35317:131;:::i;:::-;35309:139;;35036:419;;;:::o;35461:191::-;35501:4;35521:20;35539:1;35521:20;:::i;:::-;35516:25;;35555:20;35573:1;35555:20;:::i;:::-;35550:25;;35594:1;35591;35588:8;35585:34;;;35599:18;;:::i;:::-;35585:34;35644:1;35641;35637:9;35629:17;;35461:191;;;;:::o;35658:98::-;35709:6;35743:5;35737:12;35727:22;;35658:98;;;:::o;35762:168::-;35845:11;35879:6;35874:3;35867:19;35919:4;35914:3;35910:14;35895:29;;35762:168;;;;:::o;35936:360::-;36022:3;36050:38;36082:5;36050:38;:::i;:::-;36104:70;36167:6;36162:3;36104:70;:::i;:::-;36097:77;;36183:52;36228:6;36223:3;36216:4;36209:5;36205:16;36183:52;:::i;:::-;36260:29;36282:6;36260:29;:::i;:::-;36255:3;36251:39;36244:46;;36026:270;35936:360;;;;:::o;36302:640::-;36497:4;36535:3;36524:9;36520:19;36512:27;;36549:71;36617:1;36606:9;36602:17;36593:6;36549:71;:::i;:::-;36630:72;36698:2;36687:9;36683:18;36674:6;36630:72;:::i;:::-;36712;36780:2;36769:9;36765:18;36756:6;36712:72;:::i;:::-;36831:9;36825:4;36821:20;36816:2;36805:9;36801:18;36794:48;36859:76;36930:4;36921:6;36859:76;:::i;:::-;36851:84;;36302:640;;;;;;;:::o;36948:141::-;37004:5;37035:6;37029:13;37020:22;;37051:32;37077:5;37051:32;:::i;:::-;36948:141;;;;:::o;37095:349::-;37164:6;37213:2;37201:9;37192:7;37188:23;37184:32;37181:119;;;37219:79;;:::i;:::-;37181:119;37339:1;37364:63;37419:7;37410:6;37399:9;37395:22;37364:63;:::i;:::-;37354:73;;37310:127;37095:349;;;;:::o;37450:182::-;37590:34;37586:1;37578:6;37574:14;37567:58;37450:182;:::o;37638:366::-;37780:3;37801:67;37865:2;37860:3;37801:67;:::i;:::-;37794:74;;37877:93;37966:3;37877:93;:::i;:::-;37995:2;37990:3;37986:12;37979:19;;37638:366;;;:::o;38010:419::-;38176:4;38214:2;38203:9;38199:18;38191:26;;38263:9;38257:4;38253:20;38249:1;38238:9;38234:17;38227:47;38291:131;38417:4;38291:131;:::i;:::-;38283:139;;38010:419;;;:::o;38435:178::-;38575:30;38571:1;38563:6;38559:14;38552:54;38435:178;:::o;38619:366::-;38761:3;38782:67;38846:2;38841:3;38782:67;:::i;:::-;38775:74;;38858:93;38947:3;38858:93;:::i;:::-;38976:2;38971:3;38967:12;38960:19;;38619:366;;;:::o;38991:419::-;39157:4;39195:2;39184:9;39180:18;39172:26;;39244:9;39238:4;39234:20;39230:1;39219:9;39215:17;39208:47;39272:131;39398:4;39272:131;:::i;:::-;39264:139;;38991:419;;;:::o
Swarm Source
ipfs://da315c5aaf4ef195835a8c23887dda2b1e17f17b74c2dca12789883b9abbf13e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.