Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,461 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Payment | 20642047 | 541 days ago | IN | 0.02 ETH | 0.00009743 | ||||
| Payment | 20296439 | 589 days ago | IN | 0.0319 ETH | 0.00005126 | ||||
| Payment | 19787682 | 660 days ago | IN | 0.0333 ETH | 0.0001425 | ||||
| Payment | 19762569 | 664 days ago | IN | 0.0315 ETH | 0.00031192 | ||||
| Withdraw | 19688916 | 674 days ago | IN | 0 ETH | 0.00028637 | ||||
| Payment | 19626075 | 683 days ago | IN | 0.0288 ETH | 0.00072301 | ||||
| Payment | 19368320 | 719 days ago | IN | 0.1353 ETH | 0.00150377 | ||||
| Payment | 19332443 | 724 days ago | IN | 0.1443 ETH | 0.00321015 | ||||
| Payment | 19251474 | 736 days ago | IN | 0.2508 ETH | 0.00038433 | ||||
| Payment | 18968078 | 775 days ago | IN | 0.0433 ETH | 0.00036998 | ||||
| Payment | 18680714 | 816 days ago | IN | 0.0493 ETH | 0.00101365 | ||||
| Payment | 18640987 | 821 days ago | IN | 0.0473 ETH | 0.00070778 | ||||
| Payment | 18577410 | 830 days ago | IN | 0.0496 ETH | 0.00076563 | ||||
| Payment | 18480445 | 844 days ago | IN | 0.1084 ETH | 0.00098105 | ||||
| Payment | 18474894 | 845 days ago | IN | 0.0553 ETH | 0.00038403 | ||||
| Payment | 18351474 | 862 days ago | IN | 0.0643 ETH | 0.00013509 | ||||
| Payment | 18238788 | 878 days ago | IN | 0.3029 ETH | 0.0001871 | ||||
| Payment | 18149512 | 890 days ago | IN | 0.0612 ETH | 0.00031085 | ||||
| Payment | 18041603 | 905 days ago | IN | 0.3035 ETH | 0.00048497 | ||||
| Payment | 18041590 | 905 days ago | IN | 0.3034 ETH | 0.00054443 | ||||
| Payment | 17530521 | 977 days ago | IN | 0.1594 ETH | 0.00058218 | ||||
| Withdraw | 17371949 | 999 days ago | IN | 0 ETH | 0.00168986 | ||||
| Payment | 17300625 | 1009 days ago | IN | 0.5511 ETH | 0.00075329 | ||||
| Payment | 17300514 | 1009 days ago | IN | 0.1378 ETH | 0.00072461 | ||||
| Payment | 17299288 | 1009 days ago | IN | 0.1517 ETH | 0.00081392 |
Latest 20 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 19688916 | 674 days ago | 2.1071 ETH | ||||
| Transfer | 17371949 | 999 days ago | 10.4371 ETH | ||||
| Transfer | 16832623 | 1075 days ago | 2.8787 ETH | ||||
| Transfer | 16647300 | 1101 days ago | 4.1226 ETH | ||||
| Transfer | 16556507 | 1114 days ago | 5.4259 ETH | ||||
| Transfer | 16527875 | 1118 days ago | 9.5748 ETH | ||||
| Transfer | 16454346 | 1128 days ago | 10.0482 ETH | ||||
| Transfer | 16417524 | 1133 days ago | 4.1212 ETH | ||||
| Transfer | 16409446 | 1135 days ago | 3.9698 ETH | ||||
| Transfer | 16402237 | 1136 days ago | 33.6346 ETH | ||||
| Transfer | 16392776 | 1137 days ago | 42.794 ETH | ||||
| Transfer | 16389037 | 1137 days ago | 17.1827 ETH | ||||
| Transfer | 16385292 | 1138 days ago | 13.2331 ETH | ||||
| Transfer | 16382065 | 1138 days ago | 24.2513 ETH | ||||
| Transfer | 16368118 | 1140 days ago | 21.6423 ETH | ||||
| Transfer | 16347109 | 1143 days ago | 17.2777 ETH | ||||
| Transfer | 16320006 | 1147 days ago | 39.0868 ETH | ||||
| Transfer | 16291583 | 1151 days ago | 25.1004 ETH | ||||
| Transfer | 16238633 | 1158 days ago | 0.0041 ETH | ||||
| Transfer | 16238257 | 1158 days ago | 0.0041 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TipsyLandCredit
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-12-14
*/
// File: @openzeppelin/contracts/utils/math/Math.sol
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _ownerOf(tokenId);
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner or approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _ownerOf(tokenId) != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256, /* firstTokenId */
uint256 batchSize
) internal virtual {
if (batchSize > 1) {
if (from != address(0)) {
_balances[from] -= batchSize;
}
if (to != address(0)) {
_balances[to] += batchSize;
}
}
}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual {}
}
// File: contracts/TipsyLandCredit.sol
pragma solidity ^0.8.0;
contract TipsyLandCredit is ERC721, Ownable {
event Transaction(address from, string txType);
constructor() ERC721("TipsyLandCredit", "TSLCRD") {}
function payment() external payable {
emit Transaction(msg.sender, "sc");
}
function withdraw() external onlyOwner {
uint256 balance = address(this).balance;
payable(msg.sender).transfer(balance);
}
}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":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"string","name":"txType","type":"string"}],"name":"Transaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payment","outputs":[],"stateMutability":"payable","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600f81526020017f54697073794c616e6443726564697400000000000000000000000000000000008152506040518060400160405280600681526020017f54534c4352440000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001a6565b508060019080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61289f80620002cb6000396000f3fe6080604052600436106101095760003560e01c806370a0823111610095578063a22cb46511610064578063a22cb46514610336578063b88d4fde1461035f578063c87b56dd14610388578063e985e9c5146103c5578063f2fde38b1461040257610109565b806370a082311461028c578063715018a6146102c95780638da5cb5b146102e057806395d89b411461030b57610109565b806323b872dd116100dc57806323b872dd146101dc5780633ccfd60b1461020557806342842e0e1461021c57806342f6487a146102455780636352211e1461024f57610109565b806301ffc9a71461010e57806306fdde031461014b578063081812fc14610176578063095ea7b3146101b3575b600080fd5b34801561011a57600080fd5b5061013560048036038101906101309190611c68565b61042b565b604051610142919061201c565b60405180910390f35b34801561015757600080fd5b5061016061050d565b60405161016d9190612037565b60405180910390f35b34801561018257600080fd5b5061019d60048036038101906101989190611cc2565b61059f565b6040516101aa9190611f87565b60405180910390f35b3480156101bf57600080fd5b506101da60048036038101906101d59190611c28565b6105e5565b005b3480156101e857600080fd5b5061020360048036038101906101fe9190611b12565b6106fd565b005b34801561021157600080fd5b5061021a61075d565b005b34801561022857600080fd5b50610243600480360381019061023e9190611b12565b6107b4565b005b61024d6107d4565b005b34801561025b57600080fd5b5061027660048036038101906102719190611cc2565b61080d565b6040516102839190611f87565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190611aa5565b610894565b6040516102c091906121b9565b60405180910390f35b3480156102d557600080fd5b506102de61094c565b005b3480156102ec57600080fd5b506102f5610960565b6040516103029190611f87565b60405180910390f35b34801561031757600080fd5b5061032061098a565b60405161032d9190612037565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190611be8565b610a1c565b005b34801561036b57600080fd5b5061038660048036038101906103819190611b65565b610a32565b005b34801561039457600080fd5b506103af60048036038101906103aa9190611cc2565b610a94565b6040516103bc9190612037565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e79190611ad2565b610afc565b6040516103f9919061201c565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190611aa5565b610b90565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610506575061050582610c14565b5b9050919050565b60606000805461051c906123ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610548906123ad565b80156105955780601f1061056a57610100808354040283529160200191610595565b820191906000526020600020905b81548152906001019060200180831161057857829003601f168201915b5050505050905090565b60006105aa82610c7e565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105f08261080d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890612179565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610680610cc9565b73ffffffffffffffffffffffffffffffffffffffff1614806106af57506106ae816106a9610cc9565b610afc565b5b6106ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e590612199565b60405180910390fd5b6106f88383610cd1565b505050565b61070e610708610cc9565b82610d8a565b61074d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074490612059565b60405180910390fd5b610758838383610e1f565b505050565b610765611119565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156107b0573d6000803e3d6000fd5b5050565b6107cf83838360405180602001604052806000815250610a32565b505050565b7fb91cad2bdd02736aea1f79225027ea88951d8cdc48e674517d1e09920c6e31c6336040516108039190611fee565b60405180910390a1565b60008061081983611197565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561088b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088290612159565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90612119565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610954611119565b61095e60006111d4565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610999906123ad565b80601f01602080910402602001604051908101604052809291908181526020018280546109c5906123ad565b8015610a125780601f106109e757610100808354040283529160200191610a12565b820191906000526020600020905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b610a2e610a27610cc9565b838361129a565b5050565b610a43610a3d610cc9565b83610d8a565b610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990612059565b60405180910390fd5b610a8e84848484611407565b50505050565b6060610a9f82610c7e565b6000610aa9611463565b90506000815111610ac95760405180602001604052806000815250610af4565b80610ad38461147a565b604051602001610ae4929190611f63565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b98611119565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90612099565b60405180910390fd5b610c11816111d4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610c8781611552565b610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90612159565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610d448361080d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610d968361080d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610dd85750610dd78185610afc565b5b80610e1657508373ffffffffffffffffffffffffffffffffffffffff16610dfe8461059f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610e3f8261080d565b73ffffffffffffffffffffffffffffffffffffffff1614610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c906120b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc906120d9565b60405180910390fd5b610f128383836001611593565b8273ffffffffffffffffffffffffffffffffffffffff16610f328261080d565b73ffffffffffffffffffffffffffffffffffffffff1614610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f906120b9565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461111483838360016116b9565b505050565b611121610cc9565b73ffffffffffffffffffffffffffffffffffffffff1661113f610960565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90612139565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906120f9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fa919061201c565b60405180910390a3505050565b611412848484610e1f565b61141e848484846116bf565b61145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490612079565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000600161148984611856565b01905060008167ffffffffffffffff8111156114a8576114a761249d565b5b6040519080825280601f01601f1916602001820160405280156114da5781602001600182028036833780820191505090505b509050600082602001820190505b600115611547578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816115315761153061243f565b5b049450600085141561154257611547565b6114e8565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661157483611197565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60018111156116b357600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146116275780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461161f91906122c3565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146116b25780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116aa919061226d565b925050819055505b5b50505050565b50505050565b60006116e08473ffffffffffffffffffffffffffffffffffffffff166119a9565b15611849578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611709610cc9565b8786866040518563ffffffff1660e01b815260040161172b9493929190611fa2565b602060405180830381600087803b15801561174557600080fd5b505af192505050801561177657506040513d601f19601f820116820180604052508101906117739190611c95565b60015b6117f9573d80600081146117a6576040519150601f19603f3d011682016040523d82523d6000602084013e6117ab565b606091505b506000815114156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890612079565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061184e565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106118b4577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816118aa576118a961243f565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106118f1576d04ee2d6d415b85acef810000000083816118e7576118e661243f565b5b0492506020810190505b662386f26fc10000831061192057662386f26fc1000083816119165761191561243f565b5b0492506010810190505b6305f5e1008310611949576305f5e100838161193f5761193e61243f565b5b0492506008810190505b612710831061196e5761271083816119645761196361243f565b5b0492506004810190505b6064831061199157606483816119875761198661243f565b5b0492506002810190505b600a83106119a0576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006119df6119da846121f9565b6121d4565b9050828152602081018484840111156119fb576119fa6124d1565b5b611a0684828561236b565b509392505050565b600081359050611a1d8161280d565b92915050565b600081359050611a3281612824565b92915050565b600081359050611a478161283b565b92915050565b600081519050611a5c8161283b565b92915050565b600082601f830112611a7757611a766124cc565b5b8135611a878482602086016119cc565b91505092915050565b600081359050611a9f81612852565b92915050565b600060208284031215611abb57611aba6124db565b5b6000611ac984828501611a0e565b91505092915050565b60008060408385031215611ae957611ae86124db565b5b6000611af785828601611a0e565b9250506020611b0885828601611a0e565b9150509250929050565b600080600060608486031215611b2b57611b2a6124db565b5b6000611b3986828701611a0e565b9350506020611b4a86828701611a0e565b9250506040611b5b86828701611a90565b9150509250925092565b60008060008060808587031215611b7f57611b7e6124db565b5b6000611b8d87828801611a0e565b9450506020611b9e87828801611a0e565b9350506040611baf87828801611a90565b925050606085013567ffffffffffffffff811115611bd057611bcf6124d6565b5b611bdc87828801611a62565b91505092959194509250565b60008060408385031215611bff57611bfe6124db565b5b6000611c0d85828601611a0e565b9250506020611c1e85828601611a23565b9150509250929050565b60008060408385031215611c3f57611c3e6124db565b5b6000611c4d85828601611a0e565b9250506020611c5e85828601611a90565b9150509250929050565b600060208284031215611c7e57611c7d6124db565b5b6000611c8c84828501611a38565b91505092915050565b600060208284031215611cab57611caa6124db565b5b6000611cb984828501611a4d565b91505092915050565b600060208284031215611cd857611cd76124db565b5b6000611ce684828501611a90565b91505092915050565b611cf8816122f7565b82525050565b611d0781612309565b82525050565b6000611d188261222a565b611d228185612240565b9350611d3281856020860161237a565b611d3b816124e0565b840191505092915050565b6000611d5182612235565b611d5b8185612251565b9350611d6b81856020860161237a565b611d74816124e0565b840191505092915050565b6000611d8a82612235565b611d948185612262565b9350611da481856020860161237a565b80840191505092915050565b6000611dbd602d83612251565b9150611dc8826124f1565b604082019050919050565b6000611de0603283612251565b9150611deb82612540565b604082019050919050565b6000611e03602683612251565b9150611e0e8261258f565b604082019050919050565b6000611e26602583612251565b9150611e31826125de565b604082019050919050565b6000611e49602483612251565b9150611e548261262d565b604082019050919050565b6000611e6c601983612251565b9150611e778261267c565b602082019050919050565b6000611e8f602983612251565b9150611e9a826126a5565b604082019050919050565b6000611eb2602083612251565b9150611ebd826126f4565b602082019050919050565b6000611ed5600283612251565b9150611ee08261271d565b602082019050919050565b6000611ef8601883612251565b9150611f0382612746565b602082019050919050565b6000611f1b602183612251565b9150611f268261276f565b604082019050919050565b6000611f3e603d83612251565b9150611f49826127be565b604082019050919050565b611f5d81612361565b82525050565b6000611f6f8285611d7f565b9150611f7b8284611d7f565b91508190509392505050565b6000602082019050611f9c6000830184611cef565b92915050565b6000608082019050611fb76000830187611cef565b611fc46020830186611cef565b611fd16040830185611f54565b8181036060830152611fe38184611d0d565b905095945050505050565b60006040820190506120036000830184611cef565b818103602083015261201481611ec8565b905092915050565b60006020820190506120316000830184611cfe565b92915050565b600060208201905081810360008301526120518184611d46565b905092915050565b6000602082019050818103600083015261207281611db0565b9050919050565b6000602082019050818103600083015261209281611dd3565b9050919050565b600060208201905081810360008301526120b281611df6565b9050919050565b600060208201905081810360008301526120d281611e19565b9050919050565b600060208201905081810360008301526120f281611e3c565b9050919050565b6000602082019050818103600083015261211281611e5f565b9050919050565b6000602082019050818103600083015261213281611e82565b9050919050565b6000602082019050818103600083015261215281611ea5565b9050919050565b6000602082019050818103600083015261217281611eeb565b9050919050565b6000602082019050818103600083015261219281611f0e565b9050919050565b600060208201905081810360008301526121b281611f31565b9050919050565b60006020820190506121ce6000830184611f54565b92915050565b60006121de6121ef565b90506121ea82826123df565b919050565b6000604051905090565b600067ffffffffffffffff8211156122145761221361249d565b5b61221d826124e0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061227882612361565b915061228383612361565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122b8576122b7612410565b5b828201905092915050565b60006122ce82612361565b91506122d983612361565b9250828210156122ec576122eb612410565b5b828203905092915050565b600061230282612341565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561239857808201518184015260208101905061237d565b838111156123a7576000848401525b50505050565b600060028204905060018216806123c557607f821691505b602082108114156123d9576123d861246e565b5b50919050565b6123e8826124e0565b810181811067ffffffffffffffff821117156124075761240661249d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7363000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b612816816122f7565b811461282157600080fd5b50565b61282d81612309565b811461283857600080fd5b50565b61284481612315565b811461284f57600080fd5b50565b61285b81612361565b811461286657600080fd5b5056fea26469706673582212204edf89779f11a05f1e8d45c569447628bb3cabd304753f584699ddc7668ea15b64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101095760003560e01c806370a0823111610095578063a22cb46511610064578063a22cb46514610336578063b88d4fde1461035f578063c87b56dd14610388578063e985e9c5146103c5578063f2fde38b1461040257610109565b806370a082311461028c578063715018a6146102c95780638da5cb5b146102e057806395d89b411461030b57610109565b806323b872dd116100dc57806323b872dd146101dc5780633ccfd60b1461020557806342842e0e1461021c57806342f6487a146102455780636352211e1461024f57610109565b806301ffc9a71461010e57806306fdde031461014b578063081812fc14610176578063095ea7b3146101b3575b600080fd5b34801561011a57600080fd5b5061013560048036038101906101309190611c68565b61042b565b604051610142919061201c565b60405180910390f35b34801561015757600080fd5b5061016061050d565b60405161016d9190612037565b60405180910390f35b34801561018257600080fd5b5061019d60048036038101906101989190611cc2565b61059f565b6040516101aa9190611f87565b60405180910390f35b3480156101bf57600080fd5b506101da60048036038101906101d59190611c28565b6105e5565b005b3480156101e857600080fd5b5061020360048036038101906101fe9190611b12565b6106fd565b005b34801561021157600080fd5b5061021a61075d565b005b34801561022857600080fd5b50610243600480360381019061023e9190611b12565b6107b4565b005b61024d6107d4565b005b34801561025b57600080fd5b5061027660048036038101906102719190611cc2565b61080d565b6040516102839190611f87565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190611aa5565b610894565b6040516102c091906121b9565b60405180910390f35b3480156102d557600080fd5b506102de61094c565b005b3480156102ec57600080fd5b506102f5610960565b6040516103029190611f87565b60405180910390f35b34801561031757600080fd5b5061032061098a565b60405161032d9190612037565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190611be8565b610a1c565b005b34801561036b57600080fd5b5061038660048036038101906103819190611b65565b610a32565b005b34801561039457600080fd5b506103af60048036038101906103aa9190611cc2565b610a94565b6040516103bc9190612037565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e79190611ad2565b610afc565b6040516103f9919061201c565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190611aa5565b610b90565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610506575061050582610c14565b5b9050919050565b60606000805461051c906123ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610548906123ad565b80156105955780601f1061056a57610100808354040283529160200191610595565b820191906000526020600020905b81548152906001019060200180831161057857829003601f168201915b5050505050905090565b60006105aa82610c7e565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105f08261080d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890612179565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610680610cc9565b73ffffffffffffffffffffffffffffffffffffffff1614806106af57506106ae816106a9610cc9565b610afc565b5b6106ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e590612199565b60405180910390fd5b6106f88383610cd1565b505050565b61070e610708610cc9565b82610d8a565b61074d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074490612059565b60405180910390fd5b610758838383610e1f565b505050565b610765611119565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156107b0573d6000803e3d6000fd5b5050565b6107cf83838360405180602001604052806000815250610a32565b505050565b7fb91cad2bdd02736aea1f79225027ea88951d8cdc48e674517d1e09920c6e31c6336040516108039190611fee565b60405180910390a1565b60008061081983611197565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561088b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088290612159565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90612119565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610954611119565b61095e60006111d4565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610999906123ad565b80601f01602080910402602001604051908101604052809291908181526020018280546109c5906123ad565b8015610a125780601f106109e757610100808354040283529160200191610a12565b820191906000526020600020905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b610a2e610a27610cc9565b838361129a565b5050565b610a43610a3d610cc9565b83610d8a565b610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990612059565b60405180910390fd5b610a8e84848484611407565b50505050565b6060610a9f82610c7e565b6000610aa9611463565b90506000815111610ac95760405180602001604052806000815250610af4565b80610ad38461147a565b604051602001610ae4929190611f63565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b98611119565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90612099565b60405180910390fd5b610c11816111d4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610c8781611552565b610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90612159565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610d448361080d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610d968361080d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610dd85750610dd78185610afc565b5b80610e1657508373ffffffffffffffffffffffffffffffffffffffff16610dfe8461059f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610e3f8261080d565b73ffffffffffffffffffffffffffffffffffffffff1614610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c906120b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc906120d9565b60405180910390fd5b610f128383836001611593565b8273ffffffffffffffffffffffffffffffffffffffff16610f328261080d565b73ffffffffffffffffffffffffffffffffffffffff1614610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f906120b9565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461111483838360016116b9565b505050565b611121610cc9565b73ffffffffffffffffffffffffffffffffffffffff1661113f610960565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90612139565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906120f9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fa919061201c565b60405180910390a3505050565b611412848484610e1f565b61141e848484846116bf565b61145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490612079565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000600161148984611856565b01905060008167ffffffffffffffff8111156114a8576114a761249d565b5b6040519080825280601f01601f1916602001820160405280156114da5781602001600182028036833780820191505090505b509050600082602001820190505b600115611547578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816115315761153061243f565b5b049450600085141561154257611547565b6114e8565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661157483611197565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60018111156116b357600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146116275780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461161f91906122c3565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146116b25780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116aa919061226d565b925050819055505b5b50505050565b50505050565b60006116e08473ffffffffffffffffffffffffffffffffffffffff166119a9565b15611849578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611709610cc9565b8786866040518563ffffffff1660e01b815260040161172b9493929190611fa2565b602060405180830381600087803b15801561174557600080fd5b505af192505050801561177657506040513d601f19601f820116820180604052508101906117739190611c95565b60015b6117f9573d80600081146117a6576040519150601f19603f3d011682016040523d82523d6000602084013e6117ab565b606091505b506000815114156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890612079565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061184e565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106118b4577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816118aa576118a961243f565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106118f1576d04ee2d6d415b85acef810000000083816118e7576118e661243f565b5b0492506020810190505b662386f26fc10000831061192057662386f26fc1000083816119165761191561243f565b5b0492506010810190505b6305f5e1008310611949576305f5e100838161193f5761193e61243f565b5b0492506008810190505b612710831061196e5761271083816119645761196361243f565b5b0492506004810190505b6064831061199157606483816119875761198661243f565b5b0492506002810190505b600a83106119a0576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006119df6119da846121f9565b6121d4565b9050828152602081018484840111156119fb576119fa6124d1565b5b611a0684828561236b565b509392505050565b600081359050611a1d8161280d565b92915050565b600081359050611a3281612824565b92915050565b600081359050611a478161283b565b92915050565b600081519050611a5c8161283b565b92915050565b600082601f830112611a7757611a766124cc565b5b8135611a878482602086016119cc565b91505092915050565b600081359050611a9f81612852565b92915050565b600060208284031215611abb57611aba6124db565b5b6000611ac984828501611a0e565b91505092915050565b60008060408385031215611ae957611ae86124db565b5b6000611af785828601611a0e565b9250506020611b0885828601611a0e565b9150509250929050565b600080600060608486031215611b2b57611b2a6124db565b5b6000611b3986828701611a0e565b9350506020611b4a86828701611a0e565b9250506040611b5b86828701611a90565b9150509250925092565b60008060008060808587031215611b7f57611b7e6124db565b5b6000611b8d87828801611a0e565b9450506020611b9e87828801611a0e565b9350506040611baf87828801611a90565b925050606085013567ffffffffffffffff811115611bd057611bcf6124d6565b5b611bdc87828801611a62565b91505092959194509250565b60008060408385031215611bff57611bfe6124db565b5b6000611c0d85828601611a0e565b9250506020611c1e85828601611a23565b9150509250929050565b60008060408385031215611c3f57611c3e6124db565b5b6000611c4d85828601611a0e565b9250506020611c5e85828601611a90565b9150509250929050565b600060208284031215611c7e57611c7d6124db565b5b6000611c8c84828501611a38565b91505092915050565b600060208284031215611cab57611caa6124db565b5b6000611cb984828501611a4d565b91505092915050565b600060208284031215611cd857611cd76124db565b5b6000611ce684828501611a90565b91505092915050565b611cf8816122f7565b82525050565b611d0781612309565b82525050565b6000611d188261222a565b611d228185612240565b9350611d3281856020860161237a565b611d3b816124e0565b840191505092915050565b6000611d5182612235565b611d5b8185612251565b9350611d6b81856020860161237a565b611d74816124e0565b840191505092915050565b6000611d8a82612235565b611d948185612262565b9350611da481856020860161237a565b80840191505092915050565b6000611dbd602d83612251565b9150611dc8826124f1565b604082019050919050565b6000611de0603283612251565b9150611deb82612540565b604082019050919050565b6000611e03602683612251565b9150611e0e8261258f565b604082019050919050565b6000611e26602583612251565b9150611e31826125de565b604082019050919050565b6000611e49602483612251565b9150611e548261262d565b604082019050919050565b6000611e6c601983612251565b9150611e778261267c565b602082019050919050565b6000611e8f602983612251565b9150611e9a826126a5565b604082019050919050565b6000611eb2602083612251565b9150611ebd826126f4565b602082019050919050565b6000611ed5600283612251565b9150611ee08261271d565b602082019050919050565b6000611ef8601883612251565b9150611f0382612746565b602082019050919050565b6000611f1b602183612251565b9150611f268261276f565b604082019050919050565b6000611f3e603d83612251565b9150611f49826127be565b604082019050919050565b611f5d81612361565b82525050565b6000611f6f8285611d7f565b9150611f7b8284611d7f565b91508190509392505050565b6000602082019050611f9c6000830184611cef565b92915050565b6000608082019050611fb76000830187611cef565b611fc46020830186611cef565b611fd16040830185611f54565b8181036060830152611fe38184611d0d565b905095945050505050565b60006040820190506120036000830184611cef565b818103602083015261201481611ec8565b905092915050565b60006020820190506120316000830184611cfe565b92915050565b600060208201905081810360008301526120518184611d46565b905092915050565b6000602082019050818103600083015261207281611db0565b9050919050565b6000602082019050818103600083015261209281611dd3565b9050919050565b600060208201905081810360008301526120b281611df6565b9050919050565b600060208201905081810360008301526120d281611e19565b9050919050565b600060208201905081810360008301526120f281611e3c565b9050919050565b6000602082019050818103600083015261211281611e5f565b9050919050565b6000602082019050818103600083015261213281611e82565b9050919050565b6000602082019050818103600083015261215281611ea5565b9050919050565b6000602082019050818103600083015261217281611eeb565b9050919050565b6000602082019050818103600083015261219281611f0e565b9050919050565b600060208201905081810360008301526121b281611f31565b9050919050565b60006020820190506121ce6000830184611f54565b92915050565b60006121de6121ef565b90506121ea82826123df565b919050565b6000604051905090565b600067ffffffffffffffff8211156122145761221361249d565b5b61221d826124e0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061227882612361565b915061228383612361565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122b8576122b7612410565b5b828201905092915050565b60006122ce82612361565b91506122d983612361565b9250828210156122ec576122eb612410565b5b828203905092915050565b600061230282612341565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561239857808201518184015260208101905061237d565b838111156123a7576000848401525b50505050565b600060028204905060018216806123c557607f821691505b602082108114156123d9576123d861246e565b5b50919050565b6123e8826124e0565b810181811067ffffffffffffffff821117156124075761240661249d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7363000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b612816816122f7565b811461282157600080fd5b50565b61282d81612309565b811461283857600080fd5b50565b61284481612315565b811461284f57600080fd5b50565b61285b81612361565b811461286657600080fd5b5056fea26469706673582212204edf89779f11a05f1e8d45c569447628bb3cabd304753f584699ddc7668ea15b64736f6c63430008070033
Deployed Bytecode Sourcemap
54488:411:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38573:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39501:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41013:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40531:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41713:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54751:145;;;;;;;;;;;;;:::i;:::-;;42119:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54654:89;;;:::i;:::-;;39211:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38942:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18004:103;;;;;;;;;;;;;:::i;:::-;;17356:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39670:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41256:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42375:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39845:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41482:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18262:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38573:305;38675:4;38727:25;38712:40;;;:11;:40;;;;:105;;;;38784:33;38769:48;;;:11;:48;;;;38712:105;:158;;;;38834:36;38858:11;38834:23;:36::i;:::-;38712:158;38692:178;;38573:305;;;:::o;39501:100::-;39555:13;39588:5;39581:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39501:100;:::o;41013:171::-;41089:7;41109:23;41124:7;41109:14;:23::i;:::-;41152:15;:24;41168:7;41152:24;;;;;;;;;;;;;;;;;;;;;41145:31;;41013:171;;;:::o;40531:416::-;40612:13;40628:23;40643:7;40628:14;:23::i;:::-;40612:39;;40676:5;40670:11;;:2;:11;;;;40662:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40770:5;40754:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40779:37;40796:5;40803:12;:10;:12::i;:::-;40779:16;:37::i;:::-;40754:62;40732:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;40918:21;40927:2;40931:7;40918:8;:21::i;:::-;40601:346;40531:416;;:::o;41713:335::-;41908:41;41927:12;:10;:12::i;:::-;41941:7;41908:18;:41::i;:::-;41900:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;42012:28;42022:4;42028:2;42032:7;42012:9;:28::i;:::-;41713:335;;;:::o;54751:145::-;17242:13;:11;:13::i;:::-;54801:15:::1;54819:21;54801:39;;54859:10;54851:28;;:37;54880:7;54851:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;54790:106;54751:145::o:0;42119:185::-;42257:39;42274:4;42280:2;42284:7;42257:39;;;;;;;;;;;;:16;:39::i;:::-;42119:185;;;:::o;54654:89::-;54706:29;54718:10;54706:29;;;;;;:::i;:::-;;;;;;;;54654:89::o;39211:223::-;39283:7;39303:13;39319:17;39328:7;39319:8;:17::i;:::-;39303:33;;39372:1;39355:19;;:5;:19;;;;39347:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;39421:5;39414:12;;;39211:223;;;:::o;38942:207::-;39014:7;39059:1;39042:19;;:5;:19;;;;39034:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39125:9;:16;39135:5;39125:16;;;;;;;;;;;;;;;;39118:23;;38942:207;;;:::o;18004:103::-;17242:13;:11;:13::i;:::-;18069:30:::1;18096:1;18069:18;:30::i;:::-;18004:103::o:0;17356:87::-;17402:7;17429:6;;;;;;;;;;;17422:13;;17356:87;:::o;39670:104::-;39726:13;39759:7;39752:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39670:104;:::o;41256:155::-;41351:52;41370:12;:10;:12::i;:::-;41384:8;41394;41351:18;:52::i;:::-;41256:155;;:::o;42375:322::-;42549:41;42568:12;:10;:12::i;:::-;42582:7;42549:18;:41::i;:::-;42541:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;42651:38;42665:4;42671:2;42675:7;42684:4;42651:13;:38::i;:::-;42375:322;;;;:::o;39845:281::-;39918:13;39944:23;39959:7;39944:14;:23::i;:::-;39980:21;40004:10;:8;:10::i;:::-;39980:34;;40056:1;40038:7;40032:21;:25;:86;;;;;;;;;;;;;;;;;40084:7;40093:18;:7;:16;:18::i;:::-;40067:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40032:86;40025:93;;;39845:281;;;:::o;41482:164::-;41579:4;41603:18;:25;41622:5;41603:25;;;;;;;;;;;;;;;:35;41629:8;41603:35;;;;;;;;;;;;;;;;;;;;;;;;;41596:42;;41482:164;;;;:::o;18262:201::-;17242:13;:11;:13::i;:::-;18371:1:::1;18351:22;;:8;:22;;;;18343:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18427:28;18446:8;18427:18;:28::i;:::-;18262:201:::0;:::o;31085:157::-;31170:4;31209:25;31194:40;;;:11;:40;;;;31187:47;;31085:157;;;:::o;50832:135::-;50914:16;50922:7;50914;:16::i;:::-;50906:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;50832:135;:::o;15907:98::-;15960:7;15987:10;15980:17;;15907:98;:::o;50111:174::-;50213:2;50186:15;:24;50202:7;50186:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50269:7;50265:2;50231:46;;50240:23;50255:7;50240:14;:23::i;:::-;50231:46;;;;;;;;;;;;50111:174;;:::o;44730:264::-;44823:4;44840:13;44856:23;44871:7;44856:14;:23::i;:::-;44840:39;;44909:5;44898:16;;:7;:16;;;:52;;;;44918:32;44935:5;44942:7;44918:16;:32::i;:::-;44898:52;:87;;;;44978:7;44954:31;;:20;44966:7;44954:11;:20::i;:::-;:31;;;44898:87;44890:96;;;44730:264;;;;:::o;48729:1263::-;48888:4;48861:31;;:23;48876:7;48861:14;:23::i;:::-;:31;;;48853:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;48967:1;48953:16;;:2;:16;;;;48945:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49023:42;49044:4;49050:2;49054:7;49063:1;49023:20;:42::i;:::-;49195:4;49168:31;;:23;49183:7;49168:14;:23::i;:::-;:31;;;49160:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;49313:15;:24;49329:7;49313:24;;;;;;;;;;;;49306:31;;;;;;;;;;;49808:1;49789:9;:15;49799:4;49789:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;49841:1;49824:9;:13;49834:2;49824:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;49883:2;49864:7;:16;49872:7;49864:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49922:7;49918:2;49903:27;;49912:4;49903:27;;;;;;;;;;;;49943:41;49963:4;49969:2;49973:7;49982:1;49943:19;:41::i;:::-;48729:1263;;;:::o;17521:132::-;17596:12;:10;:12::i;:::-;17585:23;;:7;:5;:7::i;:::-;:23;;;17577:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17521:132::o;44005:117::-;44071:7;44098;:16;44106:7;44098:16;;;;;;;;;;;;;;;;;;;;;44091:23;;44005:117;;;:::o;18623:191::-;18697:16;18716:6;;;;;;;;;;;18697:25;;18742:8;18733:6;;:17;;;;;;;;;;;;;;;;;;18797:8;18766:40;;18787:8;18766:40;;;;;;;;;;;;18686:128;18623:191;:::o;50428:315::-;50583:8;50574:17;;:5;:17;;;;50566:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50670:8;50632:18;:25;50651:5;50632:25;;;;;;;;;;;;;;;:35;50658:8;50632:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;50716:8;50694:41;;50709:5;50694:41;;;50726:8;50694:41;;;;;;:::i;:::-;;;;;;;;50428:315;;;:::o;43578:313::-;43734:28;43744:4;43750:2;43754:7;43734:9;:28::i;:::-;43781:47;43804:4;43810:2;43814:7;43823:4;43781:22;:47::i;:::-;43773:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;43578:313;;;;:::o;40375:94::-;40426:13;40452:9;;;;;;;;;;;;;;40375:94;:::o;13334:716::-;13390:13;13441:14;13478:1;13458:17;13469:5;13458:10;:17::i;:::-;:21;13441:38;;13494:20;13528:6;13517:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13494:41;;13550:11;13679:6;13675:2;13671:15;13663:6;13659:28;13652:35;;13716:288;13723:4;13716:288;;;13748:5;;;;;;;;13890:8;13885:2;13878:5;13874:14;13869:30;13864:3;13856:44;13946:2;13937:11;;;;;;:::i;:::-;;;;;13980:1;13971:5;:10;13967:21;;;13983:5;;13967:21;13716:288;;;14025:6;14018:13;;;;;13334:716;;;:::o;44435:128::-;44500:4;44553:1;44524:31;;:17;44533:7;44524:8;:17::i;:::-;:31;;;;44517:38;;44435:128;;;:::o;53116:410::-;53306:1;53294:9;:13;53290:229;;;53344:1;53328:18;;:4;:18;;;53324:87;;53386:9;53367;:15;53377:4;53367:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;53324:87;53443:1;53429:16;;:2;:16;;;53425:83;;53483:9;53466;:13;53476:2;53466:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;53425:83;53290:229;53116:410;;;;:::o;54248:158::-;;;;;:::o;51531:853::-;51685:4;51706:15;:2;:13;;;:15::i;:::-;51702:675;;;51758:2;51742:36;;;51779:12;:10;:12::i;:::-;51793:4;51799:7;51808:4;51742:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51738:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52000:1;51983:6;:13;:18;51979:328;;;52026:60;;;;;;;;;;:::i;:::-;;;;;;;;51979:328;52257:6;52251:13;52242:6;52238:2;52234:15;52227:38;51738:584;51874:41;;;51864:51;;;:6;:51;;;;51857:58;;;;;51702:675;52361:4;52354:11;;51531:853;;;;;;;:::o;10200:922::-;10253:7;10273:14;10290:1;10273:18;;10340:6;10331:5;:15;10327:102;;10376:6;10367:15;;;;;;:::i;:::-;;;;;10411:2;10401:12;;;;10327:102;10456:6;10447:5;:15;10443:102;;10492:6;10483:15;;;;;;:::i;:::-;;;;;10527:2;10517:12;;;;10443:102;10572:6;10563:5;:15;10559:102;;10608:6;10599:15;;;;;;:::i;:::-;;;;;10643:2;10633:12;;;;10559:102;10688:5;10679;:14;10675:99;;10723:5;10714:14;;;;;;:::i;:::-;;;;;10757:1;10747:11;;;;10675:99;10801:5;10792;:14;10788:99;;10836:5;10827:14;;;;;;:::i;:::-;;;;;10870:1;10860:11;;;;10788:99;10914:5;10905;:14;10901:99;;10949:5;10940:14;;;;;;:::i;:::-;;;;;10983:1;10973:11;;;;10901:99;11027:5;11018;:14;11014:66;;11063:1;11053:11;;;;11014:66;11108:6;11101:13;;;10200:922;;;:::o;20054:326::-;20114:4;20371:1;20349:7;:19;;;:23;20342:30;;20054:326;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:118::-;5952:24;5970:5;5952:24;:::i;:::-;5947:3;5940:37;5865:118;;:::o;5989:109::-;6070:21;6085:5;6070:21;:::i;:::-;6065:3;6058:34;5989:109;;:::o;6104:360::-;6190:3;6218:38;6250:5;6218:38;:::i;:::-;6272:70;6335:6;6330:3;6272:70;:::i;:::-;6265:77;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6194:270;6104:360;;;;:::o;6470:364::-;6558:3;6586:39;6619:5;6586:39;:::i;:::-;6641:71;6705:6;6700:3;6641:71;:::i;:::-;6634:78;;6721:52;6766:6;6761:3;6754:4;6747:5;6743:16;6721:52;:::i;:::-;6798:29;6820:6;6798:29;:::i;:::-;6793:3;6789:39;6782:46;;6562:272;6470:364;;;;:::o;6840:377::-;6946:3;6974:39;7007:5;6974:39;:::i;:::-;7029:89;7111:6;7106:3;7029:89;:::i;:::-;7022:96;;7127:52;7172:6;7167:3;7160:4;7153:5;7149:16;7127:52;:::i;:::-;7204:6;7199:3;7195:16;7188:23;;6950:267;6840:377;;;;:::o;7223:366::-;7365:3;7386:67;7450:2;7445:3;7386:67;:::i;:::-;7379:74;;7462:93;7551:3;7462:93;:::i;:::-;7580:2;7575:3;7571:12;7564:19;;7223:366;;;:::o;7595:::-;7737:3;7758:67;7822:2;7817:3;7758:67;:::i;:::-;7751:74;;7834:93;7923:3;7834:93;:::i;:::-;7952:2;7947:3;7943:12;7936:19;;7595:366;;;:::o;7967:::-;8109:3;8130:67;8194:2;8189:3;8130:67;:::i;:::-;8123:74;;8206:93;8295:3;8206:93;:::i;:::-;8324:2;8319:3;8315:12;8308:19;;7967:366;;;:::o;8339:::-;8481:3;8502:67;8566:2;8561:3;8502:67;:::i;:::-;8495:74;;8578:93;8667:3;8578:93;:::i;:::-;8696:2;8691:3;8687:12;8680:19;;8339:366;;;:::o;8711:::-;8853:3;8874:67;8938:2;8933:3;8874:67;:::i;:::-;8867:74;;8950:93;9039:3;8950:93;:::i;:::-;9068:2;9063:3;9059:12;9052:19;;8711:366;;;:::o;9083:::-;9225:3;9246:67;9310:2;9305:3;9246:67;:::i;:::-;9239:74;;9322:93;9411:3;9322:93;:::i;:::-;9440:2;9435:3;9431:12;9424:19;;9083:366;;;:::o;9455:::-;9597:3;9618:67;9682:2;9677:3;9618:67;:::i;:::-;9611:74;;9694:93;9783:3;9694:93;:::i;:::-;9812:2;9807:3;9803:12;9796:19;;9455:366;;;:::o;9827:::-;9969:3;9990:67;10054:2;10049:3;9990:67;:::i;:::-;9983:74;;10066:93;10155:3;10066:93;:::i;:::-;10184:2;10179:3;10175:12;10168:19;;9827:366;;;:::o;10199:365::-;10341:3;10362:66;10426:1;10421:3;10362:66;:::i;:::-;10355:73;;10437:93;10526:3;10437:93;:::i;:::-;10555:2;10550:3;10546:12;10539:19;;10199:365;;;:::o;10570:366::-;10712:3;10733:67;10797:2;10792:3;10733:67;:::i;:::-;10726:74;;10809:93;10898:3;10809:93;:::i;:::-;10927:2;10922:3;10918:12;10911:19;;10570:366;;;:::o;10942:::-;11084:3;11105:67;11169:2;11164:3;11105:67;:::i;:::-;11098:74;;11181:93;11270:3;11181:93;:::i;:::-;11299:2;11294:3;11290:12;11283:19;;10942:366;;;:::o;11314:::-;11456:3;11477:67;11541:2;11536:3;11477:67;:::i;:::-;11470:74;;11553:93;11642:3;11553:93;:::i;:::-;11671:2;11666:3;11662:12;11655:19;;11314:366;;;:::o;11686:118::-;11773:24;11791:5;11773:24;:::i;:::-;11768:3;11761:37;11686:118;;:::o;11810:435::-;11990:3;12012:95;12103:3;12094:6;12012:95;:::i;:::-;12005:102;;12124:95;12215:3;12206:6;12124:95;:::i;:::-;12117:102;;12236:3;12229:10;;11810:435;;;;;:::o;12251:222::-;12344:4;12382:2;12371:9;12367:18;12359:26;;12395:71;12463:1;12452:9;12448:17;12439:6;12395:71;:::i;:::-;12251:222;;;;:::o;12479:640::-;12674:4;12712:3;12701:9;12697:19;12689:27;;12726:71;12794:1;12783:9;12779:17;12770:6;12726:71;:::i;:::-;12807:72;12875:2;12864:9;12860:18;12851:6;12807:72;:::i;:::-;12889;12957:2;12946:9;12942:18;12933:6;12889:72;:::i;:::-;13008:9;13002:4;12998:20;12993:2;12982:9;12978:18;12971:48;13036:76;13107:4;13098:6;13036:76;:::i;:::-;13028:84;;12479:640;;;;;;;:::o;13125:529::-;13319:4;13357:2;13346:9;13342:18;13334:26;;13370:71;13438:1;13427:9;13423:17;13414:6;13370:71;:::i;:::-;13488:9;13482:4;13478:20;13473:2;13462:9;13458:18;13451:48;13516:131;13642:4;13516:131;:::i;:::-;13508:139;;13125:529;;;;:::o;13660:210::-;13747:4;13785:2;13774:9;13770:18;13762:26;;13798:65;13860:1;13849:9;13845:17;13836:6;13798:65;:::i;:::-;13660:210;;;;:::o;13876:313::-;13989:4;14027:2;14016:9;14012:18;14004:26;;14076:9;14070:4;14066:20;14062:1;14051:9;14047:17;14040:47;14104:78;14177:4;14168:6;14104:78;:::i;:::-;14096:86;;13876:313;;;;:::o;14195:419::-;14361:4;14399:2;14388:9;14384:18;14376:26;;14448:9;14442:4;14438:20;14434:1;14423:9;14419:17;14412:47;14476:131;14602:4;14476:131;:::i;:::-;14468:139;;14195:419;;;:::o;14620:::-;14786:4;14824:2;14813:9;14809:18;14801:26;;14873:9;14867:4;14863:20;14859:1;14848:9;14844:17;14837:47;14901:131;15027:4;14901:131;:::i;:::-;14893:139;;14620:419;;;:::o;15045:::-;15211:4;15249:2;15238:9;15234:18;15226:26;;15298:9;15292:4;15288:20;15284:1;15273:9;15269:17;15262:47;15326:131;15452:4;15326:131;:::i;:::-;15318:139;;15045:419;;;:::o;15470:::-;15636:4;15674:2;15663:9;15659:18;15651:26;;15723:9;15717:4;15713:20;15709:1;15698:9;15694:17;15687:47;15751:131;15877:4;15751:131;:::i;:::-;15743:139;;15470:419;;;:::o;15895:::-;16061:4;16099:2;16088:9;16084:18;16076:26;;16148:9;16142:4;16138:20;16134:1;16123:9;16119:17;16112:47;16176:131;16302:4;16176:131;:::i;:::-;16168:139;;15895:419;;;:::o;16320:::-;16486:4;16524:2;16513:9;16509:18;16501:26;;16573:9;16567:4;16563:20;16559:1;16548:9;16544:17;16537:47;16601:131;16727:4;16601:131;:::i;:::-;16593:139;;16320:419;;;:::o;16745:::-;16911:4;16949:2;16938:9;16934:18;16926:26;;16998:9;16992:4;16988:20;16984:1;16973:9;16969:17;16962:47;17026:131;17152:4;17026:131;:::i;:::-;17018:139;;16745:419;;;:::o;17170:::-;17336:4;17374:2;17363:9;17359:18;17351:26;;17423:9;17417:4;17413:20;17409:1;17398:9;17394:17;17387:47;17451:131;17577:4;17451:131;:::i;:::-;17443:139;;17170:419;;;:::o;17595:::-;17761:4;17799:2;17788:9;17784:18;17776:26;;17848:9;17842:4;17838:20;17834:1;17823:9;17819:17;17812:47;17876:131;18002:4;17876:131;:::i;:::-;17868:139;;17595:419;;;:::o;18020:::-;18186:4;18224:2;18213:9;18209:18;18201:26;;18273:9;18267:4;18263:20;18259:1;18248:9;18244:17;18237:47;18301:131;18427:4;18301:131;:::i;:::-;18293:139;;18020:419;;;:::o;18445:::-;18611:4;18649:2;18638:9;18634:18;18626:26;;18698:9;18692:4;18688:20;18684:1;18673:9;18669:17;18662:47;18726:131;18852:4;18726:131;:::i;:::-;18718:139;;18445:419;;;:::o;18870:222::-;18963:4;19001:2;18990:9;18986:18;18978:26;;19014:71;19082:1;19071:9;19067:17;19058:6;19014:71;:::i;:::-;18870:222;;;;:::o;19098:129::-;19132:6;19159:20;;:::i;:::-;19149:30;;19188:33;19216:4;19208:6;19188:33;:::i;:::-;19098:129;;;:::o;19233:75::-;19266:6;19299:2;19293:9;19283:19;;19233:75;:::o;19314:307::-;19375:4;19465:18;19457:6;19454:30;19451:56;;;19487:18;;:::i;:::-;19451:56;19525:29;19547:6;19525:29;:::i;:::-;19517:37;;19609:4;19603;19599:15;19591:23;;19314:307;;;:::o;19627:98::-;19678:6;19712:5;19706:12;19696:22;;19627:98;;;:::o;19731:99::-;19783:6;19817:5;19811:12;19801:22;;19731:99;;;:::o;19836:168::-;19919:11;19953:6;19948:3;19941:19;19993:4;19988:3;19984:14;19969:29;;19836:168;;;;:::o;20010:169::-;20094:11;20128:6;20123:3;20116:19;20168:4;20163:3;20159:14;20144:29;;20010:169;;;;:::o;20185:148::-;20287:11;20324:3;20309:18;;20185:148;;;;:::o;20339:305::-;20379:3;20398:20;20416:1;20398:20;:::i;:::-;20393:25;;20432:20;20450:1;20432:20;:::i;:::-;20427:25;;20586:1;20518:66;20514:74;20511:1;20508:81;20505:107;;;20592:18;;:::i;:::-;20505:107;20636:1;20633;20629:9;20622:16;;20339:305;;;;:::o;20650:191::-;20690:4;20710:20;20728:1;20710:20;:::i;:::-;20705:25;;20744:20;20762:1;20744:20;:::i;:::-;20739:25;;20783:1;20780;20777:8;20774:34;;;20788:18;;:::i;:::-;20774:34;20833:1;20830;20826:9;20818:17;;20650:191;;;;:::o;20847:96::-;20884:7;20913:24;20931:5;20913:24;:::i;:::-;20902:35;;20847:96;;;:::o;20949:90::-;20983:7;21026:5;21019:13;21012:21;21001:32;;20949:90;;;:::o;21045:149::-;21081:7;21121:66;21114:5;21110:78;21099:89;;21045:149;;;:::o;21200:126::-;21237:7;21277:42;21270:5;21266:54;21255:65;;21200:126;;;:::o;21332:77::-;21369:7;21398:5;21387:16;;21332:77;;;:::o;21415:154::-;21499:6;21494:3;21489;21476:30;21561:1;21552:6;21547:3;21543:16;21536:27;21415:154;;;:::o;21575:307::-;21643:1;21653:113;21667:6;21664:1;21661:13;21653:113;;;21752:1;21747:3;21743:11;21737:18;21733:1;21728:3;21724:11;21717:39;21689:2;21686:1;21682:10;21677:15;;21653:113;;;21784:6;21781:1;21778:13;21775:101;;;21864:1;21855:6;21850:3;21846:16;21839:27;21775:101;21624:258;21575:307;;;:::o;21888:320::-;21932:6;21969:1;21963:4;21959:12;21949:22;;22016:1;22010:4;22006:12;22037:18;22027:81;;22093:4;22085:6;22081:17;22071:27;;22027:81;22155:2;22147:6;22144:14;22124:18;22121:38;22118:84;;;22174:18;;:::i;:::-;22118:84;21939:269;21888:320;;;:::o;22214:281::-;22297:27;22319:4;22297:27;:::i;:::-;22289:6;22285:40;22427:6;22415:10;22412:22;22391:18;22379:10;22376:34;22373:62;22370:88;;;22438:18;;:::i;:::-;22370:88;22478:10;22474:2;22467:22;22257:238;22214:281;;:::o;22501:180::-;22549:77;22546:1;22539:88;22646:4;22643:1;22636:15;22670:4;22667:1;22660:15;22687:180;22735:77;22732:1;22725:88;22832:4;22829:1;22822:15;22856:4;22853:1;22846:15;22873:180;22921:77;22918:1;22911:88;23018:4;23015:1;23008:15;23042:4;23039:1;23032:15;23059:180;23107:77;23104:1;23097:88;23204:4;23201:1;23194:15;23228:4;23225:1;23218:15;23245:117;23354:1;23351;23344:12;23368:117;23477:1;23474;23467:12;23491:117;23600:1;23597;23590:12;23614:117;23723:1;23720;23713:12;23737:102;23778:6;23829:2;23825:7;23820:2;23813:5;23809:14;23805:28;23795:38;;23737:102;;;:::o;23845:232::-;23985:34;23981:1;23973:6;23969:14;23962:58;24054:15;24049:2;24041:6;24037:15;24030:40;23845:232;:::o;24083:237::-;24223:34;24219:1;24211:6;24207:14;24200:58;24292:20;24287:2;24279:6;24275:15;24268:45;24083:237;:::o;24326:225::-;24466:34;24462:1;24454:6;24450:14;24443:58;24535:8;24530:2;24522:6;24518:15;24511:33;24326:225;:::o;24557:224::-;24697:34;24693:1;24685:6;24681:14;24674:58;24766:7;24761:2;24753:6;24749:15;24742:32;24557:224;:::o;24787:223::-;24927:34;24923:1;24915:6;24911:14;24904:58;24996:6;24991:2;24983:6;24979:15;24972:31;24787:223;:::o;25016:175::-;25156:27;25152:1;25144:6;25140:14;25133:51;25016:175;:::o;25197:228::-;25337:34;25333:1;25325:6;25321:14;25314:58;25406:11;25401:2;25393:6;25389:15;25382:36;25197:228;:::o;25431:182::-;25571:34;25567:1;25559:6;25555:14;25548:58;25431:182;:::o;25619:152::-;25759:4;25755:1;25747:6;25743:14;25736:28;25619:152;:::o;25777:174::-;25917:26;25913:1;25905:6;25901:14;25894:50;25777:174;:::o;25957:220::-;26097:34;26093:1;26085:6;26081:14;26074:58;26166:3;26161:2;26153:6;26149:15;26142:28;25957:220;:::o;26183:248::-;26323:34;26319:1;26311:6;26307:14;26300:58;26392:31;26387:2;26379:6;26375:15;26368:56;26183:248;:::o;26437:122::-;26510:24;26528:5;26510:24;:::i;:::-;26503:5;26500:35;26490:63;;26549:1;26546;26539:12;26490:63;26437:122;:::o;26565:116::-;26635:21;26650:5;26635:21;:::i;:::-;26628:5;26625:32;26615:60;;26671:1;26668;26661:12;26615:60;26565:116;:::o;26687:120::-;26759:23;26776:5;26759:23;:::i;:::-;26752:5;26749:34;26739:62;;26797:1;26794;26787:12;26739:62;26687:120;:::o;26813:122::-;26886:24;26904:5;26886:24;:::i;:::-;26879:5;26876:35;26866:63;;26925:1;26922;26915:12;26866:63;26813:122;:::o
Swarm Source
ipfs://4edf89779f11a05f1e8d45c569447628bb3cabd304753f584699ddc7668ea15b
Loading...
Loading
Loading...
Loading
Net Worth in USD
$217.44
Net Worth in ETH
0.116743
Token Allocations
ETH
100.00%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $1,863.21 | 0.1167 | $217.44 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.