Polygon Sponsored slots available. Book your slot here!
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,467 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 65113054 | 36 mins ago | IN | 0 POL | 0.00313044 | ||||
Set Approval For... | 65112574 | 54 mins ago | IN | 0 POL | 0.00226512 | ||||
Set Approval For... | 64570796 | 13 days ago | IN | 0 POL | 0.0014335 | ||||
Set Approval For... | 63270488 | 46 days ago | IN | 0 POL | 0.00250354 | ||||
Set Approval For... | 63216569 | 47 days ago | IN | 0 POL | 0.00080044 | ||||
Set Approval For... | 63159694 | 48 days ago | IN | 0 POL | 0.00080044 | ||||
Set Approval For... | 62068420 | 75 days ago | IN | 0 POL | 0.00138504 | ||||
Safe Transfer Fr... | 61847513 | 81 days ago | IN | 0 POL | 0.00260784 | ||||
Set Approval For... | 61223863 | 96 days ago | IN | 0 POL | 0.00535777 | ||||
Set Approval For... | 61155640 | 98 days ago | IN | 0 POL | 0.00138504 | ||||
Set Approval For... | 60989837 | 102 days ago | IN | 0 POL | 0.00138504 | ||||
Set Approval For... | 60630949 | 111 days ago | IN | 0 POL | 0.00138756 | ||||
Set Approval For... | 60176493 | 123 days ago | IN | 0 POL | 0.00138504 | ||||
Set Approval For... | 60107722 | 124 days ago | IN | 0 POL | 0.00435979 | ||||
Set Approval For... | 59449477 | 141 days ago | IN | 0 POL | 0.00077619 | ||||
Set Approval For... | 59364631 | 143 days ago | IN | 0 POL | 0.00077012 | ||||
Set Approval For... | 59226560 | 147 days ago | IN | 0 POL | 0.00141677 | ||||
Set Approval For... | 58616974 | 162 days ago | IN | 0 POL | 0.00138504 | ||||
Set Approval For... | 58599819 | 162 days ago | IN | 0 POL | 0.0016061 | ||||
Set Approval For... | 58080943 | 175 days ago | IN | 0 POL | 0.00110883 | ||||
Set Approval For... | 57932034 | 179 days ago | IN | 0 POL | 0.00138504 | ||||
Safe Transfer Fr... | 57453394 | 191 days ago | IN | 0 POL | 0.00260784 | ||||
Set Approval For... | 57311484 | 195 days ago | IN | 0 POL | 0.00476522 | ||||
Set Approval For... | 56974950 | 204 days ago | IN | 0 POL | 0.00138504 | ||||
Set Approval For... | 56923380 | 205 days ago | IN | 0 POL | 0.00307344 |
Loading...
Loading
Contract Name:
Dedollz
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2023-09-14 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 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 256, 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 << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.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 `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @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); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // 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.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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.9.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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/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.8.0/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.9.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/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // 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.9.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 {} /** * @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 {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/Dedollz.sol pragma solidity ^0.8.18; contract Dedollz is ERC721Enumerable, Ownable { using Strings for uint256; // NFT Max cap uint32 public maxCap; // pause when emergency bool private paused; // token base URI string private baseURI; // Constructor // @param _initialCap : nft max cap // @param _beforeRevealedBaseURI : uri before reveal constructor( uint32 _initialCap, string memory _beforeRevealedBaseURI ) ERC721("Dedollz", "Dedollz") { baseURI = _beforeRevealedBaseURI; paused = false; maxCap = _initialCap; } // Event When Pause // @param _caller : who call the setPause Function // @param _state : current pause state event Paused(address _caller, bool _state); // Execute only when not paused modifier modifier whenNotPaused() { require(_msgSender() == owner() || !_paused(), "currently paused"); _; } // Batch Mint // @param _to : mint to address // @param _quantity : mint NFT amount function batchMint(address _to, uint32 _quantity) external onlyOwner { require(totalSupply() + _quantity <= maxCap, "surpass max cap"); require(_quantity > 0, "zero quantity"); require(_to != address(0), "zero address"); for (uint32 i = 0; i < _quantity;) { _safeMint(_to, totalSupply()); unchecked { i++; } } } // Add Max Cap // @param _newCap : new cap number to add function addCap(uint32 _newCap) external onlyOwner { maxCap += _newCap; } // Return Base URI internal function _baseURI() internal view override returns (string memory) { return baseURI; } // Get base URI function getBaseURI() external view returns(string memory) { return _baseURI(); } // Set base URI when reveal the NFT // @param _uri : set new base uri function setBaseURI(string memory _uri) external onlyOwner { baseURI = _uri; } // Return Paused State internal function _paused() internal view returns (bool) { return paused; } // Get paused state function getPause() public view returns(bool) { return _paused(); } // Set pause state // @param _state : pause state (true = pause | false = not pause) function setPause(bool _state) external onlyOwner { paused = _state; emit Paused(_msgSender(), _paused()); } // Override tokenURI Function function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "token not exist"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : ""; } // Override transferFrom Function to customize function transferFrom(address from, address to, uint256 tokenId) public whenNotPaused override(ERC721, IERC721) { super.safeTransferFrom(from, to, tokenId); } // Override safeTransferFrom Function to customize function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public whenNotPaused override(ERC721, IERC721) { super.safeTransferFrom(from, to, tokenId, _data); } // Override safeTransferFrom Function to customize function safeTransferFrom(address from, address to, uint256 tokenId) public whenNotPaused override(ERC721, IERC721) { super.safeTransferFrom(from, to, tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint32","name":"_initialCap","type":"uint32"},{"internalType":"string","name":"_beforeRevealedBaseURI","type":"string"}],"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":"_caller","type":"address"},{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"Paused","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":"uint32","name":"_newCap","type":"uint32"}],"name":"addCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint32","name":"_quantity","type":"uint32"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxCap","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620022e4380380620022e4833981016040819052620000349162000146565b6040805180820182526007808252662232b237b6363d60c91b6020808401829052845180860190955291845290830152906000620000738382620002c8565b506001620000828282620002c8565b5050506200009f62000099620000da60201b60201c565b620000de565b600b620000ad8282620002c8565b5050600a805463ffffffff909216600160a01b0264ffffffffff60a01b1990921691909117905562000394565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156200015a57600080fd5b825163ffffffff811681146200016f57600080fd5b602084810151919350906001600160401b03808211156200018f57600080fd5b818601915086601f830112620001a457600080fd5b815181811115620001b957620001b962000130565b604051601f8201601f19908116603f01168101908382118183101715620001e457620001e462000130565b816040528281528986848701011115620001fd57600080fd5b600093505b8284101562000221578484018601518185018701529285019262000202565b60008684830101528096505050505050509250929050565b600181811c908216806200024e57607f821691505b6020821081036200026f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002c357600081815260208120601f850160051c810160208610156200029e5750805b601f850160051c820191505b81811015620002bf57828155600101620002aa565b5050505b505050565b81516001600160401b03811115620002e457620002e462000130565b620002fc81620002f5845462000239565b8462000275565b602080601f8311600181146200033457600084156200031b5750858301515b600019600386901b1c1916600185901b178555620002bf565b600085815260208120601f198616915b82811015620003655788860151825594840194600190910190840162000344565b5085821015620003845787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611f4080620003a46000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de57806395d89b4111610097578063bedb86fb11610071578063bedb86fb14610347578063c87b56dd1461035a578063e985e9c51461036d578063f2fde38b146103a957600080fd5b806395d89b4114610319578063a22cb46514610321578063b88d4fde1461033457600080fd5b80636352211e146102bf57806370a08231146102d2578063714c5398146102e5578063715018a6146102ed57806379f24a08146102f55780638da5cb5b1461030857600080fd5b806323b872dd1161014b57806342842e0e1161012557806342842e0e1461024e5780634f6ccce71461028657806355f804b3146102995780635e059d31146102ac57600080fd5b806323b872dd1461024e5780632f745c59146102615780633e3ca9d31461027457600080fd5b806301ffc9a71461019357806306fdde03146101bb578063081812fc146101d0578063095ea7b3146101fb57806318160ddd1461021057806323548b8b14610222575b600080fd5b6101a66101a136600461189e565b6103bc565b60405190151581526020015b60405180910390f35b6101c36103e7565b6040516101b2919061190b565b6101e36101de36600461191e565b610479565b6040516001600160a01b0390911681526020016101b2565b61020e610209366004611953565b6104a0565b005b6008545b6040519081526020016101b2565b600a5461023990600160a01b900463ffffffff1681565b60405163ffffffff90911681526020016101b2565b61020e61025c36600461197d565b6105ba565b61021461026f366004611953565b610627565b600a54600160c01b900460ff166101a6565b61021461029436600461191e565b6106c2565b61020e6102a7366004611a45565b610755565b61020e6102ba366004611aa2565b61076d565b6101e36102cd36600461191e565b6107b7565b6102146102e0366004611abd565b610817565b6101c361089d565b61020e6108a7565b61020e610303366004611ad8565b6108bb565b600a546001600160a01b03166101e3565b6101c36109e7565b61020e61032f366004611b1b565b6109f6565b61020e610342366004611b45565b610a01565b61020e610355366004611bc1565b610a75565b6101c361036836600461191e565b610ae8565b6101a661037b366004611bdc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020e6103b7366004611abd565b610b9d565b60006001600160e01b0319821663780e9d6360e01b14806103e157506103e182610c16565b92915050565b6060600080546103f690611c06565b80601f016020809104026020016040519081016040528092919081815260200182805461042290611c06565b801561046f5780601f106104445761010080835404028352916020019161046f565b820191906000526020600020905b81548152906001019060200180831161045257829003601f168201915b5050505050905090565b600061048482610c66565b506000908152600460205260409020546001600160a01b031690565b60006104ab826107b7565b9050806001600160a01b0316836001600160a01b03160361051d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806105395750610539813361037b565b6105ab5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610514565b6105b58383610cc5565b505050565b600a546001600160a01b03163314806105dd5750600a54600160c01b900460ff16155b61061c5760405162461bcd60e51b815260206004820152601060248201526f18dd5c9c995b9d1b1e481c185d5cd95960821b6044820152606401610514565b6105b5838383610d33565b600061063283610817565b82106106945760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610514565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b905090565b60006106cd60085490565b82106107305760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610514565b6008828154811061074357610743611c40565b90600052602060002001549050919050565b61075d610d4e565b600b6107698282611ca4565b5050565b610775610d4e565b80600a60148282829054906101000a900463ffffffff166107969190611d7a565b92506101000a81548163ffffffff021916908363ffffffff16021790555050565b6000818152600260205260408120546001600160a01b0316806103e15760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610514565b60006001600160a01b0382166108815760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610514565b506001600160a01b031660009081526003602052604090205490565b60606106bd610da8565b6108af610d4e565b6108b96000610db7565b565b6108c3610d4e565b600a5463ffffffff600160a01b90910481169082166108e160085490565b6108eb9190611d9e565b111561092b5760405162461bcd60e51b815260206004820152600f60248201526e073757270617373206d61782063617608c1b6044820152606401610514565b60008163ffffffff16116109715760405162461bcd60e51b815260206004820152600d60248201526c7a65726f207175616e7469747960981b6044820152606401610514565b6001600160a01b0382166109b65760405162461bcd60e51b815260206004820152600c60248201526b7a65726f206164647265737360a01b6044820152606401610514565b60005b8163ffffffff168163ffffffff1610156105b5576109df836109da60085490565b610e09565b6001016109b9565b6060600180546103f690611c06565b610769338383610e23565b600a546001600160a01b0316331480610a245750600a54600160c01b900460ff16155b610a635760405162461bcd60e51b815260206004820152601060248201526f18dd5c9c995b9d1b1e481c185d5cd95960821b6044820152606401610514565b610a6f84848484610ef1565b50505050565b610a7d610d4e565b600a805460ff60c01b1916600160c01b831515021790557fe8699cf681560fd07de85543bd994263f4557bdc5179dd702f256d15fd083e1d33600a54600160c01b900460ff16604080516001600160a01b03909316835290151560208301520160405180910390a150565b6000818152600260205260409020546060906001600160a01b0316610b415760405162461bcd60e51b815260206004820152600f60248201526e1d1bdad95b881b9bdd08195e1a5cdd608a1b6044820152606401610514565b6000610b4b610da8565b90506000815111610b6b5760405180602001604052806000815250610b96565b80610b7584610f69565b604051602001610b86929190611db1565b6040516020818303038152906040525b9392505050565b610ba5610d4e565b6001600160a01b038116610c0a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610514565b610c1381610db7565b50565b60006001600160e01b031982166380ac58cd60e01b1480610c4757506001600160e01b03198216635b5e139f60e01b145b806103e157506301ffc9a760e01b6001600160e01b03198316146103e1565b6000818152600260205260409020546001600160a01b0316610c135760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610514565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cfa826107b7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6105b583838360405180602001604052806000815250610a01565b600a546001600160a01b031633146108b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610514565b6060600b80546103f690611c06565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610769828260405180602001604052806000815250610ffc565b816001600160a01b0316836001600160a01b031603610e845760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610514565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610efb338361102f565b610f5d5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610514565b610a6f848484846110ae565b60606000610f76836110e1565b600101905060008167ffffffffffffffff811115610f9657610f966119b9565b6040519080825280601f01601f191660200182016040528015610fc0576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610fca57509392505050565b61100683836111b9565b6110136000848484611352565b6105b55760405162461bcd60e51b815260040161051490611df0565b60008061103b836107b7565b9050806001600160a01b0316846001600160a01b0316148061108257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806110a65750836001600160a01b031661109b84610479565b6001600160a01b0316145b949350505050565b6110b9848484611453565b6110c584848484611352565b610a6f5760405162461bcd60e51b815260040161051490611df0565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106111205772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061114c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061116a57662386f26fc10000830492506010015b6305f5e1008310611182576305f5e100830492506008015b612710831061119657612710830492506004015b606483106111a8576064830492506002015b600a83106103e15760010192915050565b6001600160a01b03821661120f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610514565b6000818152600260205260409020546001600160a01b0316156112745760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610514565b6112826000838360016115c4565b6000818152600260205260409020546001600160a01b0316156112e75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610514565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561144857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611396903390899088908890600401611e42565b6020604051808303816000875af19250505080156113d1575060408051601f3d908101601f191682019092526113ce91810190611e7f565b60015b61142e573d8080156113ff576040519150601f19603f3d011682016040523d82523d6000602084013e611404565b606091505b5080516000036114265760405162461bcd60e51b815260040161051490611df0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110a6565b506001949350505050565b826001600160a01b0316611466826107b7565b6001600160a01b03161461148c5760405162461bcd60e51b815260040161051490611e9c565b6001600160a01b0382166114ee5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610514565b6114fb83838360016115c4565b826001600160a01b031661150e826107b7565b6001600160a01b0316146115345760405162461bcd60e51b815260040161051490611e9c565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60018111156116335760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610514565b816001600160a01b03851661168f5761168a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116b2565b836001600160a01b0316856001600160a01b0316146116b2576116b285826116f8565b6001600160a01b0384166116ce576116c981611795565b6116f1565b846001600160a01b0316846001600160a01b0316146116f1576116f18482611844565b5050505050565b6000600161170584610817565b61170f9190611ee1565b600083815260076020526040902054909150808214611762576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117a790600190611ee1565b600083815260096020526040812054600880549394509092849081106117cf576117cf611c40565b9060005260206000200154905080600883815481106117f0576117f0611c40565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061182857611828611ef4565b6001900381819060005260206000200160009055905550505050565b600061184f83610817565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114610c1357600080fd5b6000602082840312156118b057600080fd5b8135610b9681611888565b60005b838110156118d65781810151838201526020016118be565b50506000910152565b600081518084526118f78160208601602086016118bb565b601f01601f19169290920160200192915050565b602081526000610b9660208301846118df565b60006020828403121561193057600080fd5b5035919050565b80356001600160a01b038116811461194e57600080fd5b919050565b6000806040838503121561196657600080fd5b61196f83611937565b946020939093013593505050565b60008060006060848603121561199257600080fd5b61199b84611937565b92506119a960208501611937565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119ea576119ea6119b9565b604051601f8501601f19908116603f01168101908282118183101715611a1257611a126119b9565b81604052809350858152868686011115611a2b57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a5757600080fd5b813567ffffffffffffffff811115611a6e57600080fd5b8201601f81018413611a7f57600080fd5b6110a6848235602084016119cf565b803563ffffffff8116811461194e57600080fd5b600060208284031215611ab457600080fd5b610b9682611a8e565b600060208284031215611acf57600080fd5b610b9682611937565b60008060408385031215611aeb57600080fd5b611af483611937565b9150611b0260208401611a8e565b90509250929050565b8035801515811461194e57600080fd5b60008060408385031215611b2e57600080fd5b611b3783611937565b9150611b0260208401611b0b565b60008060008060808587031215611b5b57600080fd5b611b6485611937565b9350611b7260208601611937565b925060408501359150606085013567ffffffffffffffff811115611b9557600080fd5b8501601f81018713611ba657600080fd5b611bb5878235602084016119cf565b91505092959194509250565b600060208284031215611bd357600080fd5b610b9682611b0b565b60008060408385031215611bef57600080fd5b611bf883611937565b9150611b0260208401611937565b600181811c90821680611c1a57607f821691505b602082108103611c3a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b601f8211156105b557600081815260208120601f850160051c81016020861015611c7d5750805b601f850160051c820191505b81811015611c9c57828155600101611c89565b505050505050565b815167ffffffffffffffff811115611cbe57611cbe6119b9565b611cd281611ccc8454611c06565b84611c56565b602080601f831160018114611d075760008415611cef5750858301515b600019600386901b1c1916600185901b178555611c9c565b600085815260208120601f198616915b82811015611d3657888601518255948401946001909101908401611d17565b5085821015611d545787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b63ffffffff818116838216019080821115611d9757611d97611d64565b5092915050565b808201808211156103e1576103e1611d64565b60008351611dc38184602088016118bb565b835190830190611dd78183602088016118bb565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e75908301846118df565b9695505050505050565b600060208284031215611e9157600080fd5b8151610b9681611888565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b818103818111156103e1576103e1611d64565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220d96180ac8b13a273cf84923582ab7d2c992a7c04d274fc2fbba3ec62b3ba247d64736f6c6343000813003300000000000000000000000000000000000000000000000000000000000004570000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d6338357332455278694b48673257714e63756d6e5553644751424345776b707069694343675272546e3857422f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de57806395d89b4111610097578063bedb86fb11610071578063bedb86fb14610347578063c87b56dd1461035a578063e985e9c51461036d578063f2fde38b146103a957600080fd5b806395d89b4114610319578063a22cb46514610321578063b88d4fde1461033457600080fd5b80636352211e146102bf57806370a08231146102d2578063714c5398146102e5578063715018a6146102ed57806379f24a08146102f55780638da5cb5b1461030857600080fd5b806323b872dd1161014b57806342842e0e1161012557806342842e0e1461024e5780634f6ccce71461028657806355f804b3146102995780635e059d31146102ac57600080fd5b806323b872dd1461024e5780632f745c59146102615780633e3ca9d31461027457600080fd5b806301ffc9a71461019357806306fdde03146101bb578063081812fc146101d0578063095ea7b3146101fb57806318160ddd1461021057806323548b8b14610222575b600080fd5b6101a66101a136600461189e565b6103bc565b60405190151581526020015b60405180910390f35b6101c36103e7565b6040516101b2919061190b565b6101e36101de36600461191e565b610479565b6040516001600160a01b0390911681526020016101b2565b61020e610209366004611953565b6104a0565b005b6008545b6040519081526020016101b2565b600a5461023990600160a01b900463ffffffff1681565b60405163ffffffff90911681526020016101b2565b61020e61025c36600461197d565b6105ba565b61021461026f366004611953565b610627565b600a54600160c01b900460ff166101a6565b61021461029436600461191e565b6106c2565b61020e6102a7366004611a45565b610755565b61020e6102ba366004611aa2565b61076d565b6101e36102cd36600461191e565b6107b7565b6102146102e0366004611abd565b610817565b6101c361089d565b61020e6108a7565b61020e610303366004611ad8565b6108bb565b600a546001600160a01b03166101e3565b6101c36109e7565b61020e61032f366004611b1b565b6109f6565b61020e610342366004611b45565b610a01565b61020e610355366004611bc1565b610a75565b6101c361036836600461191e565b610ae8565b6101a661037b366004611bdc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020e6103b7366004611abd565b610b9d565b60006001600160e01b0319821663780e9d6360e01b14806103e157506103e182610c16565b92915050565b6060600080546103f690611c06565b80601f016020809104026020016040519081016040528092919081815260200182805461042290611c06565b801561046f5780601f106104445761010080835404028352916020019161046f565b820191906000526020600020905b81548152906001019060200180831161045257829003601f168201915b5050505050905090565b600061048482610c66565b506000908152600460205260409020546001600160a01b031690565b60006104ab826107b7565b9050806001600160a01b0316836001600160a01b03160361051d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806105395750610539813361037b565b6105ab5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610514565b6105b58383610cc5565b505050565b600a546001600160a01b03163314806105dd5750600a54600160c01b900460ff16155b61061c5760405162461bcd60e51b815260206004820152601060248201526f18dd5c9c995b9d1b1e481c185d5cd95960821b6044820152606401610514565b6105b5838383610d33565b600061063283610817565b82106106945760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610514565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b905090565b60006106cd60085490565b82106107305760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610514565b6008828154811061074357610743611c40565b90600052602060002001549050919050565b61075d610d4e565b600b6107698282611ca4565b5050565b610775610d4e565b80600a60148282829054906101000a900463ffffffff166107969190611d7a565b92506101000a81548163ffffffff021916908363ffffffff16021790555050565b6000818152600260205260408120546001600160a01b0316806103e15760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610514565b60006001600160a01b0382166108815760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610514565b506001600160a01b031660009081526003602052604090205490565b60606106bd610da8565b6108af610d4e565b6108b96000610db7565b565b6108c3610d4e565b600a5463ffffffff600160a01b90910481169082166108e160085490565b6108eb9190611d9e565b111561092b5760405162461bcd60e51b815260206004820152600f60248201526e073757270617373206d61782063617608c1b6044820152606401610514565b60008163ffffffff16116109715760405162461bcd60e51b815260206004820152600d60248201526c7a65726f207175616e7469747960981b6044820152606401610514565b6001600160a01b0382166109b65760405162461bcd60e51b815260206004820152600c60248201526b7a65726f206164647265737360a01b6044820152606401610514565b60005b8163ffffffff168163ffffffff1610156105b5576109df836109da60085490565b610e09565b6001016109b9565b6060600180546103f690611c06565b610769338383610e23565b600a546001600160a01b0316331480610a245750600a54600160c01b900460ff16155b610a635760405162461bcd60e51b815260206004820152601060248201526f18dd5c9c995b9d1b1e481c185d5cd95960821b6044820152606401610514565b610a6f84848484610ef1565b50505050565b610a7d610d4e565b600a805460ff60c01b1916600160c01b831515021790557fe8699cf681560fd07de85543bd994263f4557bdc5179dd702f256d15fd083e1d33600a54600160c01b900460ff16604080516001600160a01b03909316835290151560208301520160405180910390a150565b6000818152600260205260409020546060906001600160a01b0316610b415760405162461bcd60e51b815260206004820152600f60248201526e1d1bdad95b881b9bdd08195e1a5cdd608a1b6044820152606401610514565b6000610b4b610da8565b90506000815111610b6b5760405180602001604052806000815250610b96565b80610b7584610f69565b604051602001610b86929190611db1565b6040516020818303038152906040525b9392505050565b610ba5610d4e565b6001600160a01b038116610c0a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610514565b610c1381610db7565b50565b60006001600160e01b031982166380ac58cd60e01b1480610c4757506001600160e01b03198216635b5e139f60e01b145b806103e157506301ffc9a760e01b6001600160e01b03198316146103e1565b6000818152600260205260409020546001600160a01b0316610c135760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610514565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cfa826107b7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6105b583838360405180602001604052806000815250610a01565b600a546001600160a01b031633146108b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610514565b6060600b80546103f690611c06565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610769828260405180602001604052806000815250610ffc565b816001600160a01b0316836001600160a01b031603610e845760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610514565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610efb338361102f565b610f5d5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610514565b610a6f848484846110ae565b60606000610f76836110e1565b600101905060008167ffffffffffffffff811115610f9657610f966119b9565b6040519080825280601f01601f191660200182016040528015610fc0576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610fca57509392505050565b61100683836111b9565b6110136000848484611352565b6105b55760405162461bcd60e51b815260040161051490611df0565b60008061103b836107b7565b9050806001600160a01b0316846001600160a01b0316148061108257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806110a65750836001600160a01b031661109b84610479565b6001600160a01b0316145b949350505050565b6110b9848484611453565b6110c584848484611352565b610a6f5760405162461bcd60e51b815260040161051490611df0565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106111205772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061114c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061116a57662386f26fc10000830492506010015b6305f5e1008310611182576305f5e100830492506008015b612710831061119657612710830492506004015b606483106111a8576064830492506002015b600a83106103e15760010192915050565b6001600160a01b03821661120f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610514565b6000818152600260205260409020546001600160a01b0316156112745760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610514565b6112826000838360016115c4565b6000818152600260205260409020546001600160a01b0316156112e75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610514565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561144857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611396903390899088908890600401611e42565b6020604051808303816000875af19250505080156113d1575060408051601f3d908101601f191682019092526113ce91810190611e7f565b60015b61142e573d8080156113ff576040519150601f19603f3d011682016040523d82523d6000602084013e611404565b606091505b5080516000036114265760405162461bcd60e51b815260040161051490611df0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110a6565b506001949350505050565b826001600160a01b0316611466826107b7565b6001600160a01b03161461148c5760405162461bcd60e51b815260040161051490611e9c565b6001600160a01b0382166114ee5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610514565b6114fb83838360016115c4565b826001600160a01b031661150e826107b7565b6001600160a01b0316146115345760405162461bcd60e51b815260040161051490611e9c565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60018111156116335760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610514565b816001600160a01b03851661168f5761168a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116b2565b836001600160a01b0316856001600160a01b0316146116b2576116b285826116f8565b6001600160a01b0384166116ce576116c981611795565b6116f1565b846001600160a01b0316846001600160a01b0316146116f1576116f18482611844565b5050505050565b6000600161170584610817565b61170f9190611ee1565b600083815260076020526040902054909150808214611762576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117a790600190611ee1565b600083815260096020526040812054600880549394509092849081106117cf576117cf611c40565b9060005260206000200154905080600883815481106117f0576117f0611c40565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061182857611828611ef4565b6001900381819060005260206000200160009055905550505050565b600061184f83610817565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114610c1357600080fd5b6000602082840312156118b057600080fd5b8135610b9681611888565b60005b838110156118d65781810151838201526020016118be565b50506000910152565b600081518084526118f78160208601602086016118bb565b601f01601f19169290920160200192915050565b602081526000610b9660208301846118df565b60006020828403121561193057600080fd5b5035919050565b80356001600160a01b038116811461194e57600080fd5b919050565b6000806040838503121561196657600080fd5b61196f83611937565b946020939093013593505050565b60008060006060848603121561199257600080fd5b61199b84611937565b92506119a960208501611937565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119ea576119ea6119b9565b604051601f8501601f19908116603f01168101908282118183101715611a1257611a126119b9565b81604052809350858152868686011115611a2b57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a5757600080fd5b813567ffffffffffffffff811115611a6e57600080fd5b8201601f81018413611a7f57600080fd5b6110a6848235602084016119cf565b803563ffffffff8116811461194e57600080fd5b600060208284031215611ab457600080fd5b610b9682611a8e565b600060208284031215611acf57600080fd5b610b9682611937565b60008060408385031215611aeb57600080fd5b611af483611937565b9150611b0260208401611a8e565b90509250929050565b8035801515811461194e57600080fd5b60008060408385031215611b2e57600080fd5b611b3783611937565b9150611b0260208401611b0b565b60008060008060808587031215611b5b57600080fd5b611b6485611937565b9350611b7260208601611937565b925060408501359150606085013567ffffffffffffffff811115611b9557600080fd5b8501601f81018713611ba657600080fd5b611bb5878235602084016119cf565b91505092959194509250565b600060208284031215611bd357600080fd5b610b9682611b0b565b60008060408385031215611bef57600080fd5b611bf883611937565b9150611b0260208401611937565b600181811c90821680611c1a57607f821691505b602082108103611c3a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b601f8211156105b557600081815260208120601f850160051c81016020861015611c7d5750805b601f850160051c820191505b81811015611c9c57828155600101611c89565b505050505050565b815167ffffffffffffffff811115611cbe57611cbe6119b9565b611cd281611ccc8454611c06565b84611c56565b602080601f831160018114611d075760008415611cef5750858301515b600019600386901b1c1916600185901b178555611c9c565b600085815260208120601f198616915b82811015611d3657888601518255948401946001909101908401611d17565b5085821015611d545787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b63ffffffff818116838216019080821115611d9757611d97611d64565b5092915050565b808201808211156103e1576103e1611d64565b60008351611dc38184602088016118bb565b835190830190611dd78183602088016118bb565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e75908301846118df565b9695505050505050565b600060208284031215611e9157600080fd5b8151610b9681611888565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b818103818111156103e1576103e1611d64565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220d96180ac8b13a273cf84923582ab7d2c992a7c04d274fc2fbba3ec62b3ba247d64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000004570000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d6338357332455278694b48673257714e63756d6e5553644751424345776b707069694343675272546e3857422f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initialCap (uint32): 1111
Arg [1] : _beforeRevealedBaseURI (string): https://ipfs.io/ipfs/Qmc85s2ERxiKHg2WqNcumnUSdGQBCEwkppiiCCgRrTn8WB/
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000457
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d633835733245527869
Arg [4] : 4b48673257714e63756d6e5553644751424345776b707069694343675272546e
Arg [5] : 3857422f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
73162:3667:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67151:224;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;67151:224:0;;;;;;;;51200:100;;;:::i;:::-;;;;;;;:::i;52712:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;52712:171:0;1533:203:1;52230:416:0;;;;;;:::i;:::-;;:::i;:::-;;67791:113;67879:10;:17;67791:113;;;2324:25:1;;;2312:2;2297:18;67791:113:0;2178:177:1;73267:20:0;;;;;-1:-1:-1;;;73267:20:0;;;;;;;;;2534:10:1;2522:23;;;2504:42;;2492:2;2477:18;73267:20:0;2360:192:1;76147:172:0;;;;;;:::i;:::-;;:::i;67459:256::-;;;;;;:::i;:::-;;:::i;75398:81::-;75351:6;;-1:-1:-1;;;75351:6:0;;;;75398:81;;67981:233;;;;;;:::i;:::-;;:::i;75148:92::-;;;;;;:::i;:::-;;:::i;74707:87::-;;;;;;:::i;:::-;;:::i;50910:223::-;;;;;;:::i;:::-;;:::i;50641:207::-;;;;;;:::i;:::-;;:::i;74964:95::-;;;:::i;28530:103::-;;;:::i;74213:419::-;;;;;;:::i;:::-;;:::i;27889:87::-;27962:6;;-1:-1:-1;;;;;27962:6:0;27889:87;;51369:104;;;:::i;52955:155::-;;;;;;:::i;:::-;;:::i;76383:203::-;;;;;;:::i;:::-;;:::i;75582:131::-;;;;;;:::i;:::-;;:::i;75756:327::-;;;;;;:::i;:::-;;:::i;53181:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;53302:25:0;;;53278:4;53302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;53181:164;28788:201;;;;;;:::i;:::-;;:::i;67151:224::-;67253:4;-1:-1:-1;;;;;;67277:50:0;;-1:-1:-1;;;67277:50:0;;:90;;;67331:36;67355:11;67331:23;:36::i;:::-;67270:97;67151:224;-1:-1:-1;;67151:224:0:o;51200:100::-;51254:13;51287:5;51280:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51200:100;:::o;52712:171::-;52788:7;52808:23;52823:7;52808:14;:23::i;:::-;-1:-1:-1;52851:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;52851:24:0;;52712:171::o;52230:416::-;52311:13;52327:23;52342:7;52327:14;:23::i;:::-;52311:39;;52375:5;-1:-1:-1;;;;;52369:11:0;:2;-1:-1:-1;;;;;52369:11:0;;52361:57;;;;-1:-1:-1;;;52361:57:0;;7059:2:1;52361:57:0;;;7041:21:1;7098:2;7078:18;;;7071:30;7137:34;7117:18;;;7110:62;-1:-1:-1;;;7188:18:1;;;7181:31;7229:19;;52361:57:0;;;;;;;;;26520:10;-1:-1:-1;;;;;52453:21:0;;;;:62;;-1:-1:-1;52478:37:0;52495:5;26520:10;53181:164;:::i;52478:37::-;52431:173;;;;-1:-1:-1;;;52431:173:0;;7461:2:1;52431:173:0;;;7443:21:1;7500:2;7480:18;;;7473:30;7539:34;7519:18;;;7512:62;7610:31;7590:18;;;7583:59;7659:19;;52431:173:0;7259:425:1;52431:173:0;52617:21;52626:2;52630:7;52617:8;:21::i;:::-;52300:346;52230:416;;:::o;76147:172::-;27962:6;;-1:-1:-1;;;;;27962:6:0;26520:10;74027:23;;:37;;-1:-1:-1;75351:6:0;;-1:-1:-1;;;75351:6:0;;;;74054:10;74027:37;74019:66;;;;-1:-1:-1;;;74019:66:0;;7891:2:1;74019:66:0;;;7873:21:1;7930:2;7910:18;;;7903:30;-1:-1:-1;;;7949:18:1;;;7942:46;8005:18;;74019:66:0;7689:340:1;74019:66:0;76270:41:::1;76293:4;76299:2;76303:7;76270:22;:41::i;67459:256::-:0;67556:7;67592:23;67609:5;67592:16;:23::i;:::-;67584:5;:31;67576:87;;;;-1:-1:-1;;;67576:87:0;;8236:2:1;67576:87:0;;;8218:21:1;8275:2;8255:18;;;8248:30;8314:34;8294:18;;;8287:62;-1:-1:-1;;;8365:18:1;;;8358:41;8416:19;;67576:87:0;8034:407:1;67576:87:0;-1:-1:-1;;;;;;67681:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;67459:256::o;75462:9::-;75455:16;;75398:81;:::o;67981:233::-;68056:7;68092:30;67879:10;:17;;67791:113;68092:30;68084:5;:38;68076:95;;;;-1:-1:-1;;;68076:95:0;;8648:2:1;68076:95:0;;;8630:21:1;8687:2;8667:18;;;8660:30;8726:34;8706:18;;;8699:62;-1:-1:-1;;;8777:18:1;;;8770:42;8829:19;;68076:95:0;8446:408:1;68076:95:0;68189:10;68200:5;68189:17;;;;;;;;:::i;:::-;;;;;;;;;68182:24;;67981:233;;;:::o;75148:92::-;27775:13;:11;:13::i;:::-;75218:7:::1;:14;75228:4:::0;75218:7;:14:::1;:::i;:::-;;75148:92:::0;:::o;74707:87::-;27775:13;:11;:13::i;:::-;74779:7:::1;74769:6;;:17;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;74707:87:::0;:::o;50910:223::-;50982:7;55643:16;;;:7;:16;;;;;;-1:-1:-1;;;;;55643:16:0;;51046:56;;;;-1:-1:-1;;;51046:56:0;;11706:2:1;51046:56:0;;;11688:21:1;11745:2;11725:18;;;11718:30;-1:-1:-1;;;11764:18:1;;;11757:54;11828:18;;51046:56:0;11504:348:1;50641:207:0;50713:7;-1:-1:-1;;;;;50741:19:0;;50733:73;;;;-1:-1:-1;;;50733:73:0;;12059:2:1;50733:73:0;;;12041:21:1;12098:2;12078:18;;;12071:30;12137:34;12117:18;;;12110:62;-1:-1:-1;;;12188:18:1;;;12181:39;12237:19;;50733:73:0;11857:405:1;50733:73:0;-1:-1:-1;;;;;;50824:16:0;;;;;:9;:16;;;;;;;50641:207::o;74964:95::-;75008:13;75041:10;:8;:10::i;28530:103::-;27775:13;:11;:13::i;:::-;28595:30:::1;28622:1;28595:18;:30::i;:::-;28530:103::o:0;74213:419::-;27775:13;:11;:13::i;:::-;74330:6:::1;::::0;::::1;-1:-1:-1::0;;;74330:6:0;;::::1;::::0;::::1;::::0;74301:25;::::1;:13;67879:10:::0;:17;;67791:113;74301:13:::1;:25;;;;:::i;:::-;:35;;74293:63;;;::::0;-1:-1:-1;;;74293:63:0;;12599:2:1;74293:63:0::1;::::0;::::1;12581:21:1::0;12638:2;12618:18;;;12611:30;-1:-1:-1;;;12657:18:1;;;12650:45;12712:18;;74293:63:0::1;12397:339:1::0;74293:63:0::1;74387:1;74375:9;:13;;;74367:39;;;::::0;-1:-1:-1;;;74367:39:0;;12943:2:1;74367:39:0::1;::::0;::::1;12925:21:1::0;12982:2;12962:18;;;12955:30;-1:-1:-1;;;13001:18:1;;;12994:43;13054:18;;74367:39:0::1;12741:337:1::0;74367:39:0::1;-1:-1:-1::0;;;;;74425:17:0;::::1;74417:42;;;::::0;-1:-1:-1;;;74417:42:0;;13285:2:1;74417:42:0::1;::::0;::::1;13267:21:1::0;13324:2;13304:18;;;13297:30;-1:-1:-1;;;13343:18:1;;;13336:42;13395:18;;74417:42:0::1;13083:336:1::0;74417:42:0::1;74477:8;74472:153;74495:9;74491:13;;:1;:13;;;74472:153;;;74522:29;74532:3;74537:13;67879:10:::0;:17;;67791:113;74537:13:::1;74522:9;:29::i;:::-;74595:3;;74472:153;;51369:104:::0;51425:13;51458:7;51451:14;;;;;:::i;52955:155::-;53050:52;26520:10;53083:8;53093;53050:18;:52::i;76383:203::-;27962:6;;-1:-1:-1;;;;;27962:6:0;26520:10;74027:23;;:37;;-1:-1:-1;75351:6:0;;-1:-1:-1;;;75351:6:0;;;;74054:10;74027:37;74019:66;;;;-1:-1:-1;;;74019:66:0;;7891:2:1;74019:66:0;;;7873:21:1;7930:2;7910:18;;;7903:30;-1:-1:-1;;;7949:18:1;;;7942:46;8005:18;;74019:66:0;7689:340:1;74019:66:0;76530:48:::1;76553:4;76559:2;76563:7;76572:5;76530:22;:48::i;:::-;76383:203:::0;;;;:::o;75582:131::-;27775:13;:11;:13::i;:::-;75643:6:::1;:15:::0;;-1:-1:-1;;;;75643:15:0::1;-1:-1:-1::0;;;75643:15:0;::::1;;;;::::0;;75674:31:::1;26520:10:::0;75351:6;;-1:-1:-1;;;75351:6:0;;;;75674:31:::1;::::0;;-1:-1:-1;;;;;13610:32:1;;;13592:51;;13686:14;;13679:22;13674:2;13659:18;;13652:50;13565:18;75674:31:0::1;;;;;;;75582:131:::0;:::o;75756:327::-;56045:4;55643:16;;;:7;:16;;;;;;75822:13;;-1:-1:-1;;;;;55643:16:0;75848:45;;;;-1:-1:-1;;;75848:45:0;;13915:2:1;75848:45:0;;;13897:21:1;13954:2;13934:18;;;13927:30;-1:-1:-1;;;13973:18:1;;;13966:45;14028:18;;75848:45:0;13713:339:1;75848:45:0;75906:28;75937:10;:8;:10::i;:::-;75906:41;;75996:1;75971:14;75965:28;:32;:110;;;;;;;;;;;;;;;;;76024:14;76040:19;:8;:17;:19::i;:::-;76007:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75965:110;75958:117;75756:327;-1:-1:-1;;;75756:327:0:o;28788:201::-;27775:13;:11;:13::i;:::-;-1:-1:-1;;;;;28877:22:0;::::1;28869:73;;;::::0;-1:-1:-1;;;28869:73:0;;14927:2:1;28869:73:0::1;::::0;::::1;14909:21:1::0;14966:2;14946:18;;;14939:30;15005:34;14985:18;;;14978:62;-1:-1:-1;;;15056:18:1;;;15049:36;15102:19;;28869:73:0::1;14725:402:1::0;28869:73:0::1;28953:28;28972:8;28953:18;:28::i;:::-;28788:201:::0;:::o;50272:305::-;50374:4;-1:-1:-1;;;;;;50411:40:0;;-1:-1:-1;;;50411:40:0;;:105;;-1:-1:-1;;;;;;;50468:48:0;;-1:-1:-1;;;50468:48:0;50411:105;:158;;;-1:-1:-1;;;;;;;;;;41925:40:0;;;50533:36;41816:157;62275:135;56045:4;55643:16;;;:7;:16;;;;;;-1:-1:-1;;;;;55643:16:0;62349:53;;;;-1:-1:-1;;;62349:53:0;;11706:2:1;62349:53:0;;;11688:21:1;11745:2;11725:18;;;11718:30;-1:-1:-1;;;11764:18:1;;;11757:54;11828:18;;62349:53:0;11504:348:1;61588:174:0;61663:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;61663:29:0;-1:-1:-1;;;;;61663:29:0;;;;;;;;:24;;61717:23;61663:24;61717:14;:23::i;:::-;-1:-1:-1;;;;;61708:46:0;;;;;;;;;;;61588:174;;:::o;53784:151::-;53888:39;53905:4;53911:2;53915:7;53888:39;;;;;;;;;;;;:16;:39::i;28054:132::-;27962:6;;-1:-1:-1;;;;;27962:6:0;26520:10;28118:23;28110:68;;;;-1:-1:-1;;;28110:68:0;;15334:2:1;28110:68:0;;;15316:21:1;;;15353:18;;;15346:30;15412:34;15392:18;;;15385:62;15464:18;;28110:68:0;15132:356:1;74835:100:0;74887:13;74920:7;74913:14;;;;;:::i;29149:191::-;29242:6;;;-1:-1:-1;;;;;29259:17:0;;;-1:-1:-1;;;;;;29259:17:0;;;;;;;29292:40;;29242:6;;;29259:17;29242:6;;29292:40;;29223:16;;29292:40;29212:128;29149:191;:::o;56881:110::-;56957:26;56967:2;56971:7;56957:26;;;;;;;;;;;;:9;:26::i;61905:281::-;62026:8;-1:-1:-1;;;;;62017:17:0;:5;-1:-1:-1;;;;;62017:17:0;;62009:55;;;;-1:-1:-1;;;62009:55:0;;15695:2:1;62009:55:0;;;15677:21:1;15734:2;15714:18;;;15707:30;15773:27;15753:18;;;15746:55;15818:18;;62009:55:0;15493:349:1;62009:55:0;-1:-1:-1;;;;;62075:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;62075:46:0;;;;;;;;;;62137:41;;540::1;;;62137::0;;513:18:1;62137:41:0;;;;;;;61905:281;;;:::o;54006:279::-;54137:41;26520:10;54170:7;54137:18;:41::i;:::-;54129:99;;;;-1:-1:-1;;;54129:99:0;;16049:2:1;54129:99:0;;;16031:21:1;16088:2;16068:18;;;16061:30;16127:34;16107:18;;;16100:62;-1:-1:-1;;;16178:18:1;;;16171:43;16231:19;;54129:99:0;15847:409:1;54129:99:0;54239:38;54253:4;54259:2;54263:7;54272:4;54239:13;:38::i;23359:716::-;23415:13;23466:14;23483:17;23494:5;23483:10;:17::i;:::-;23503:1;23483:21;23466:38;;23519:20;23553:6;23542:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23542:18:0;-1:-1:-1;23519:41:0;-1:-1:-1;23684:28:0;;;23700:2;23684:28;23741:288;-1:-1:-1;;23773:5:0;-1:-1:-1;;;23910:2:0;23899:14;;23894:30;23773:5;23881:44;23971:2;23962:11;;;-1:-1:-1;23992:21:0;23741:288;23992:21;-1:-1:-1;24050:6:0;23359:716;-1:-1:-1;;;23359:716:0:o;57218:285::-;57313:18;57319:2;57323:7;57313:5;:18::i;:::-;57364:53;57395:1;57399:2;57403:7;57412:4;57364:22;:53::i;:::-;57342:153;;;;-1:-1:-1;;;57342:153:0;;;;;;;:::i;56275:264::-;56368:4;56385:13;56401:23;56416:7;56401:14;:23::i;:::-;56385:39;;56454:5;-1:-1:-1;;;;;56443:16:0;:7;-1:-1:-1;;;;;56443:16:0;;:52;;;-1:-1:-1;;;;;;53302:25:0;;;53278:4;53302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;56463:32;56443:87;;;;56523:7;-1:-1:-1;;;;;56499:31:0;:20;56511:7;56499:11;:20::i;:::-;-1:-1:-1;;;;;56499:31:0;;56443:87;56435:96;56275:264;-1:-1:-1;;;;56275:264:0:o;55166:270::-;55279:28;55289:4;55295:2;55299:7;55279:9;:28::i;:::-;55326:47;55349:4;55355:2;55359:7;55368:4;55326:22;:47::i;:::-;55318:110;;;;-1:-1:-1;;;55318:110:0;;;;;;;:::i;20193:948::-;20246:7;;-1:-1:-1;;;20324:17:0;;20320:106;;-1:-1:-1;;;20362:17:0;;;-1:-1:-1;20408:2:0;20398:12;20320:106;20453:8;20444:5;:17;20440:106;;20491:8;20482:17;;;-1:-1:-1;20528:2:0;20518:12;20440:106;20573:8;20564:5;:17;20560:106;;20611:8;20602:17;;;-1:-1:-1;20648:2:0;20638:12;20560:106;20693:7;20684:5;:16;20680:103;;20730:7;20721:16;;;-1:-1:-1;20766:1:0;20756:11;20680:103;20810:7;20801:5;:16;20797:103;;20847:7;20838:16;;;-1:-1:-1;20883:1:0;20873:11;20797:103;20927:7;20918:5;:16;20914:103;;20964:7;20955:16;;;-1:-1:-1;21000:1:0;20990:11;20914:103;21044:7;21035:5;:16;21031:68;;21082:1;21072:11;21127:6;20193:948;-1:-1:-1;;20193:948:0:o;57839:942::-;-1:-1:-1;;;;;57919:16:0;;57911:61;;;;-1:-1:-1;;;57911:61:0;;17014:2:1;57911:61:0;;;16996:21:1;;;17033:18;;;17026:30;17092:34;17072:18;;;17065:62;17144:18;;57911:61:0;16812:356:1;57911:61:0;56045:4;55643:16;;;:7;:16;;;;;;-1:-1:-1;;;;;55643:16:0;56069:31;57983:58;;;;-1:-1:-1;;;57983:58:0;;17375:2:1;57983:58:0;;;17357:21:1;17414:2;17394:18;;;17387:30;17453;17433:18;;;17426:58;17501:18;;57983:58:0;17173:352:1;57983:58:0;58054:48;58083:1;58087:2;58091:7;58100:1;58054:20;:48::i;:::-;56045:4;55643:16;;;:7;:16;;;;;;-1:-1:-1;;;;;55643:16:0;56069:31;58192:58;;;;-1:-1:-1;;;58192:58:0;;17375:2:1;58192:58:0;;;17357:21:1;17414:2;17394:18;;;17387:30;17453;17433:18;;;17426:58;17501:18;;58192:58:0;17173:352:1;58192:58:0;-1:-1:-1;;;;;58599:13:0;;;;;;:9;:13;;;;;;;;:18;;58616:1;58599:18;;;58641:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;58641:21:0;;;;;58680:33;58649:7;;58599:13;;58680:33;;58599:13;;58680:33;75218:14:::1;75148:92:::0;:::o;62974:853::-;63128:4;-1:-1:-1;;;;;63149:13:0;;31116:19;:23;63145:675;;63185:71;;-1:-1:-1;;;63185:71:0;;-1:-1:-1;;;;;63185:36:0;;;;;:71;;26520:10;;63236:4;;63242:7;;63251:4;;63185:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63185:71:0;;;;;;;;-1:-1:-1;;63185:71:0;;;;;;;;;;;;:::i;:::-;;;63181:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63426:6;:13;63443:1;63426:18;63422:328;;63469:60;;-1:-1:-1;;;63469:60:0;;;;;;;:::i;63422:328::-;63700:6;63694:13;63685:6;63681:2;63677:15;63670:38;63181:584;-1:-1:-1;;;;;;63307:51:0;-1:-1:-1;;;63307:51:0;;-1:-1:-1;63300:58:0;;63145:675;-1:-1:-1;63804:4:0;62974:853;;;;;;:::o;60240:1229::-;60365:4;-1:-1:-1;;;;;60338:31:0;:23;60353:7;60338:14;:23::i;:::-;-1:-1:-1;;;;;60338:31:0;;60330:81;;;;-1:-1:-1;;;60330:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60430:16:0;;60422:65;;;;-1:-1:-1;;;60422:65:0;;18886:2:1;60422:65:0;;;18868:21:1;18925:2;18905:18;;;18898:30;18964:34;18944:18;;;18937:62;-1:-1:-1;;;19015:18:1;;;19008:34;19059:19;;60422:65:0;18684:400:1;60422:65:0;60500:42;60521:4;60527:2;60531:7;60540:1;60500:20;:42::i;:::-;60672:4;-1:-1:-1;;;;;60645:31:0;:23;60660:7;60645:14;:23::i;:::-;-1:-1:-1;;;;;60645:31:0;;60637:81;;;;-1:-1:-1;;;60637:81:0;;;;;;;:::i;:::-;60790:24;;;;:15;:24;;;;;;;;60783:31;;-1:-1:-1;;;;;;60783:31:0;;;;;;-1:-1:-1;;;;;61266:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;61266:20:0;;;61301:13;;;;;;;;;:18;;60783:31;61301:18;;;61341:16;;;:7;:16;;;;;;:21;;;;;;;;;;61380:27;;60806:7;;61380:27;;;52300:346;52230:416;;:::o;68288:915::-;68555:1;68543:9;:13;68539:222;;;68686:63;;-1:-1:-1;;;68686:63:0;;19291:2:1;68686:63:0;;;19273:21:1;19330:2;19310:18;;;19303:30;19369:34;19349:18;;;19342:62;-1:-1:-1;;;19420:18:1;;;19413:51;19481:19;;68686:63:0;19089:417:1;68539:222:0;68791:12;-1:-1:-1;;;;;68820:18:0;;68816:187;;68855:40;68887:7;70030:10;:17;;70003:24;;;;:15;:24;;;;;:44;;;70058:24;;;;;;;;;;;;69926:164;68855:40;68816:187;;;68925:2;-1:-1:-1;;;;;68917:10:0;:4;-1:-1:-1;;;;;68917:10:0;;68913:90;;68944:47;68977:4;68983:7;68944:32;:47::i;:::-;-1:-1:-1;;;;;69017:16:0;;69013:183;;69050:45;69087:7;69050:36;:45::i;:::-;69013:183;;;69123:4;-1:-1:-1;;;;;69117:10:0;:2;-1:-1:-1;;;;;69117:10:0;;69113:83;;69144:40;69172:2;69176:7;69144:27;:40::i;:::-;68454:749;68288:915;;;;:::o;70717:988::-;70983:22;71033:1;71008:22;71025:4;71008:16;:22::i;:::-;:26;;;;:::i;:::-;71045:18;71066:26;;;:17;:26;;;;;;70983:51;;-1:-1:-1;71199:28:0;;;71195:328;;-1:-1:-1;;;;;71266:18:0;;71244:19;71266:18;;;:12;:18;;;;;;;;:34;;;;;;;;;71317:30;;;;;;:44;;;71434:30;;:17;:30;;;;;:43;;;71195:328;-1:-1:-1;71619:26:0;;;;:17;:26;;;;;;;;71612:33;;;-1:-1:-1;;;;;71663:18:0;;;;;:12;:18;;;;;:34;;;;;;;71656:41;70717:988::o;72000:1079::-;72278:10;:17;72253:22;;72278:21;;72298:1;;72278:21;:::i;:::-;72310:18;72331:24;;;:15;:24;;;;;;72704:10;:26;;72253:46;;-1:-1:-1;72331:24:0;;72253:46;;72704:26;;;;;;:::i;:::-;;;;;;;;;72682:48;;72768:11;72743:10;72754;72743:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;72848:28;;;:15;:28;;;;;;;:41;;;73020:24;;;;;73013:31;73055:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;72071:1008;;;72000:1079;:::o;69504:221::-;69589:14;69606:20;69623:2;69606:16;:20::i;:::-;-1:-1:-1;;;;;69637:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;69682:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;69504:221:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2557:328::-;2634:6;2642;2650;2703:2;2691:9;2682:7;2678:23;2674:32;2671:52;;;2719:1;2716;2709:12;2671:52;2742:29;2761:9;2742:29;:::i;:::-;2732:39;;2790:38;2824:2;2813:9;2809:18;2790:38;:::i;:::-;2780:48;;2875:2;2864:9;2860:18;2847:32;2837:42;;2557:328;;;;;:::o;2890:127::-;2951:10;2946:3;2942:20;2939:1;2932:31;2982:4;2979:1;2972:15;3006:4;3003:1;2996:15;3022:632;3087:5;3117:18;3158:2;3150:6;3147:14;3144:40;;;3164:18;;:::i;:::-;3239:2;3233:9;3207:2;3293:15;;-1:-1:-1;;3289:24:1;;;3315:2;3285:33;3281:42;3269:55;;;3339:18;;;3359:22;;;3336:46;3333:72;;;3385:18;;:::i;:::-;3425:10;3421:2;3414:22;3454:6;3445:15;;3484:6;3476;3469:22;3524:3;3515:6;3510:3;3506:16;3503:25;3500:45;;;3541:1;3538;3531:12;3500:45;3591:6;3586:3;3579:4;3571:6;3567:17;3554:44;3646:1;3639:4;3630:6;3622;3618:19;3614:30;3607:41;;;;3022:632;;;;;:::o;3659:451::-;3728:6;3781:2;3769:9;3760:7;3756:23;3752:32;3749:52;;;3797:1;3794;3787:12;3749:52;3837:9;3824:23;3870:18;3862:6;3859:30;3856:50;;;3902:1;3899;3892:12;3856:50;3925:22;;3978:4;3970:13;;3966:27;-1:-1:-1;3956:55:1;;4007:1;4004;3997:12;3956:55;4030:74;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4030:74;:::i;4115:163::-;4182:20;;4242:10;4231:22;;4221:33;;4211:61;;4268:1;4265;4258:12;4283:184;4341:6;4394:2;4382:9;4373:7;4369:23;4365:32;4362:52;;;4410:1;4407;4400:12;4362:52;4433:28;4451:9;4433:28;:::i;4472:186::-;4531:6;4584:2;4572:9;4563:7;4559:23;4555:32;4552:52;;;4600:1;4597;4590:12;4552:52;4623:29;4642:9;4623:29;:::i;4663:258::-;4730:6;4738;4791:2;4779:9;4770:7;4766:23;4762:32;4759:52;;;4807:1;4804;4797:12;4759:52;4830:29;4849:9;4830:29;:::i;:::-;4820:39;;4878:37;4911:2;4900:9;4896:18;4878:37;:::i;:::-;4868:47;;4663:258;;;;;:::o;4926:160::-;4991:20;;5047:13;;5040:21;5030:32;;5020:60;;5076:1;5073;5066:12;5091:254;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:180::-;6078:6;6131:2;6119:9;6110:7;6106:23;6102:32;6099:52;;;6147:1;6144;6137:12;6099:52;6170:26;6186:9;6170:26;:::i;6207:260::-;6275:6;6283;6336:2;6324:9;6315:7;6311:23;6307:32;6304:52;;;6352:1;6349;6342:12;6304:52;6375:29;6394:9;6375:29;:::i;:::-;6365:39;;6423:38;6457:2;6446:9;6442:18;6423:38;:::i;6472:380::-;6551:1;6547:12;;;;6594;;;6615:61;;6669:4;6661:6;6657:17;6647:27;;6615:61;6722:2;6714:6;6711:14;6691:18;6688:38;6685:161;;6768:10;6763:3;6759:20;6756:1;6749:31;6803:4;6800:1;6793:15;6831:4;6828:1;6821:15;6685:161;;6472:380;;;:::o;8859:127::-;8920:10;8915:3;8911:20;8908:1;8901:31;8951:4;8948:1;8941:15;8975:4;8972:1;8965:15;9117:545;9219:2;9214:3;9211:11;9208:448;;;9255:1;9280:5;9276:2;9269:17;9325:4;9321:2;9311:19;9395:2;9383:10;9379:19;9376:1;9372:27;9366:4;9362:38;9431:4;9419:10;9416:20;9413:47;;;-1:-1:-1;9454:4:1;9413:47;9509:2;9504:3;9500:12;9497:1;9493:20;9487:4;9483:31;9473:41;;9564:82;9582:2;9575:5;9572:13;9564:82;;;9627:17;;;9608:1;9597:13;9564:82;;;9568:3;;;9117:545;;;:::o;9838:1352::-;9964:3;9958:10;9991:18;9983:6;9980:30;9977:56;;;10013:18;;:::i;:::-;10042:97;10132:6;10092:38;10124:4;10118:11;10092:38;:::i;:::-;10086:4;10042:97;:::i;:::-;10194:4;;10258:2;10247:14;;10275:1;10270:663;;;;10977:1;10994:6;10991:89;;;-1:-1:-1;11046:19:1;;;11040:26;10991:89;-1:-1:-1;;9795:1:1;9791:11;;;9787:24;9783:29;9773:40;9819:1;9815:11;;;9770:57;11093:81;;10240:944;;10270:663;9064:1;9057:14;;;9101:4;9088:18;;-1:-1:-1;;10306:20:1;;;10424:236;10438:7;10435:1;10432:14;10424:236;;;10527:19;;;10521:26;10506:42;;10619:27;;;;10587:1;10575:14;;;;10454:19;;10424:236;;;10428:3;10688:6;10679:7;10676:19;10673:201;;;10749:19;;;10743:26;-1:-1:-1;;10832:1:1;10828:14;;;10844:3;10824:24;10820:37;10816:42;10801:58;10786:74;;10673:201;-1:-1:-1;;;;;10920:1:1;10904:14;;;10900:22;10887:36;;-1:-1:-1;9838:1352:1:o;11195:127::-;11256:10;11251:3;11247:20;11244:1;11237:31;11287:4;11284:1;11277:15;11311:4;11308:1;11301:15;11327:172;11394:10;11424;;;11436;;;11420:27;;11459:11;;;11456:37;;;11473:18;;:::i;:::-;11456:37;11327:172;;;;:::o;12267:125::-;12332:9;;;12353:10;;;12350:36;;;12366:18;;:::i;14057:663::-;14337:3;14375:6;14369:13;14391:66;14450:6;14445:3;14438:4;14430:6;14426:17;14391:66;:::i;:::-;14520:13;;14479:16;;;;14542:70;14520:13;14479:16;14589:4;14577:17;;14542:70;:::i;:::-;-1:-1:-1;;;14634:20:1;;14663:22;;;14712:1;14701:13;;14057:663;-1:-1:-1;;;;14057:663:1:o;16393:414::-;16595:2;16577:21;;;16634:2;16614:18;;;16607:30;16673:34;16668:2;16653:18;;16646:62;-1:-1:-1;;;16739:2:1;16724:18;;16717:48;16797:3;16782:19;;16393:414::o;17530:489::-;-1:-1:-1;;;;;17799:15:1;;;17781:34;;17851:15;;17846:2;17831:18;;17824:43;17898:2;17883:18;;17876:34;;;17946:3;17941:2;17926:18;;17919:31;;;17724:4;;17967:46;;17993:19;;17985:6;17967:46;:::i;:::-;17959:54;17530:489;-1:-1:-1;;;;;;17530:489:1:o;18024:249::-;18093:6;18146:2;18134:9;18125:7;18121:23;18117:32;18114:52;;;18162:1;18159;18152:12;18114:52;18194:9;18188:16;18213:30;18237:5;18213:30;:::i;18278:401::-;18480:2;18462:21;;;18519:2;18499:18;;;18492:30;18558:34;18553:2;18538:18;;18531:62;-1:-1:-1;;;18624:2:1;18609:18;;18602:35;18669:3;18654:19;;18278:401::o;19511:128::-;19578:9;;;19599:11;;;19596:37;;;19613:18;;:::i;19644:127::-;19705:10;19700:3;19696:20;19693:1;19686:31;19736:4;19733:1;19726:15;19760:4;19757:1;19750:15
Swarm Source
ipfs://d96180ac8b13a273cf84923582ab7d2c992a7c04d274fc2fbba3ec62b3ba247d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.