Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 591 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 21110965 | 26 days ago | IN | 0 ETH | 0.00018065 | ||||
Transfer From | 20552913 | 104 days ago | IN | 0 ETH | 0.00011342 | ||||
Transfer From | 20552911 | 104 days ago | IN | 0 ETH | 0.00013023 | ||||
Set Approval For... | 20270809 | 143 days ago | IN | 0 ETH | 0.00021802 | ||||
Merge | 20270764 | 143 days ago | IN | 0 ETH | 0.00125614 | ||||
Set Approval For... | 19855768 | 201 days ago | IN | 0 ETH | 0.00015253 | ||||
Merge | 19668874 | 227 days ago | IN | 0 ETH | 0.00501949 | ||||
Set Approval For... | 19521333 | 248 days ago | IN | 0 ETH | 0.00091005 | ||||
Set Approval For... | 19473144 | 255 days ago | IN | 0 ETH | 0.00135718 | ||||
Set Approval For... | 19078620 | 310 days ago | IN | 0 ETH | 0.0005354 | ||||
Set Approval For... | 18918624 | 333 days ago | IN | 0 ETH | 0.00051998 | ||||
Set Approval For... | 18848377 | 342 days ago | IN | 0 ETH | 0.00050315 | ||||
Set Approval For... | 18804974 | 349 days ago | IN | 0 ETH | 0.00077186 | ||||
Set Approval For... | 18802633 | 349 days ago | IN | 0 ETH | 0.00084285 | ||||
Set Approval For... | 18799614 | 349 days ago | IN | 0 ETH | 0.00132605 | ||||
Set Approval For... | 18647550 | 371 days ago | IN | 0 ETH | 0.00124726 | ||||
Merge | 18647489 | 371 days ago | IN | 0 ETH | 0.00733096 | ||||
Merge | 18647487 | 371 days ago | IN | 0 ETH | 0.00852278 | ||||
Merge | 18647452 | 371 days ago | IN | 0 ETH | 0.00520637 | ||||
Set Approval For... | 18606860 | 376 days ago | IN | 0 ETH | 0.00107462 | ||||
Merge | 18606836 | 376 days ago | IN | 0 ETH | 0.00614668 | ||||
Set Approval For... | 18567060 | 382 days ago | IN | 0 ETH | 0.00155218 | ||||
Merge | 18523267 | 388 days ago | IN | 0 ETH | 0.00695806 | ||||
Safe Transfer Fr... | 18341681 | 413 days ago | IN | 0 ETH | 0.00169334 | ||||
Merge | 18341659 | 413 days ago | IN | 0 ETH | 0.00386168 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Phase2
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-05 */ // SPDX-License-Identifier: MIT // File: Interfaces/IERC721Burn.sol pragma solidity ^0.8.4; interface IERC721Burn{ function burn(uint256 tokenId) external; } // File: opensea-enforcement/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: opensea-enforcement/OperatorFilterer.sol pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } // File: opensea-enforcement/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/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.8.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) public _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(), ".json")) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _burn(tokenId); } } // 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: phase2.sol pragma solidity ^0.8.13; contract Phase2 is ERC721, ERC721Burnable,DefaultOperatorFilterer, ERC721Enumerable, Ownable{ bool public toggle; address public phase1NFTAddress; address public artVialNFTAddress; string private URI; uint256 public revealTime; mapping(address => uint256[]) public userNftId; event revealTimer(uint256 revealTime); constructor(string memory _name, string memory _symbol, address _phase1NFTAddress, address _artVialNFTAddress) ERC721(_name,_symbol) { phase1NFTAddress = _phase1NFTAddress; artVialNFTAddress = _artVialNFTAddress; } /* @dev This function will burn the phase1 and Art Vial NFT, and mint a new NFT of phase 2 with same tokenID as Phase1, before calling this function make sure you have taken the allowance of tokenId from the phase1 and art vial claim contract @params phase1TokenId: TokenId for Phase1 @params artVialTokenId: TokenId for Art Vial */ function merge(uint256 phase1TokenId, uint256 artVialTokenId) public { require(toggle == true, "Phase2: Toggle is off"); require(revealTime !=0, "Phase2: Set revel Timer"); require(block.timestamp > revealTime, "Phase2: Redeem has not started yet"); require(IERC721(phase1NFTAddress).ownerOf(phase1TokenId) == msg.sender, "Phase2: You are not the owner of Phase1 NFT"); require(IERC721(artVialNFTAddress).ownerOf(artVialTokenId) == msg.sender, "Phase2: You are not the owner of Art Vial NFT"); IERC721Burn(phase1NFTAddress).burn(phase1TokenId); IERC721Burn(artVialNFTAddress).burn(artVialTokenId); userNftId[msg.sender].push(phase1TokenId); _safeMint(msg.sender, phase1TokenId); } function setToggle(bool toggle_) external onlyOwner{ toggle = toggle_; } /* @dev Emergency function: that will update phase1 & art-vial token address @params B&O DNA Collection:Phase1 and Art Vial deployed contract address */ function updatePhaseAddresses(address phase1Address_, address artVialAddress_) external onlyOwner{ require(phase1Address_ != address(0), "Phase2: Phase1 address cannot be zero address"); require(artVialAddress_ != address(0), "Phase2: Art Vial address cannot be zero address"); phase1NFTAddress = phase1Address_; artVialNFTAddress = artVialAddress_; } /* @dev This function will set the time after which User can claim their vials @params EpochTime when to start claim */ function setRevelTimer(uint256 revealTime_) external onlyOwner{ revealTime = revealTime_; emit revealTimer(revealTime); } function transferFrom(address from, address to, uint256 tokenId) public override(ERC721,IERC721) onlyAllowedOperator(from) { require(_isApprovedOrOwner(_msgSender(), tokenId),"Phase3: transfer caller is not owner nor approved"); for (uint256 i; i < userNftId[from].length; i++) { if (userNftId[from][i] == tokenId) { userNftId[from][i] = userNftId[from][userNftId[from].length - 1]; userNftId[from].pop(); userNftId[to].push(tokenId); break; } } _transfer(from, to, tokenId); } function safeTransferFrom(address from,address to,uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from) { for (uint256 i; i < userNftId[from].length; i++) { if (userNftId[from][i] == tokenId) { userNftId[from][i] = userNftId[from][userNftId[from].length - 1]; userNftId[from].pop(); userNftId[to].push(tokenId); break; } } safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom(address from,address to,uint256 tokenId,bytes memory _data) public override(ERC721, IERC721) onlyAllowedOperator(from) { require(_isApprovedOrOwner(_msgSender(), tokenId),"Phase2: transfer caller is not owner nor approved"); for (uint256 i; i < userNftId[from].length; i++) { if (userNftId[from][i] == tokenId) { userNftId[from][i] = userNftId[from][userNftId[from].length - 1]; userNftId[from].pop(); userNftId[to].push(tokenId); break; } } _safeTransfer(from, to, tokenId, _data); } function nftOfUser(address user)public view returns(uint256[] memory){ return userNftId[user]; } function burn(uint256 tokenId) public virtual override{ //solhint-disable-next-line max-line-length _burn(tokenId); } function _burn(uint256 _tokenId) internal override(ERC721) { require(_isApprovedOrOwner(_msgSender(), _tokenId), "Phase2: caller is not token owner nor approved"); address tokenOwner = ownerOf(_tokenId); for (uint256 i; i < userNftId[tokenOwner].length; i++) { if (userNftId[tokenOwner][i] == _tokenId) { userNftId[tokenOwner][i] = userNftId[tokenOwner][userNftId[tokenOwner].length - 1]; userNftId[tokenOwner].pop(); break; } } super._burn(_tokenId); } function updateURI(string memory newURI_) external onlyOwner{ URI = newURI_; } function _baseURI() internal view override returns (string memory) { return URI; } function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId, batchSize); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_phase1NFTAddress","type":"address"},{"internalType":"address","name":"_artVialNFTAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"revealTime","type":"uint256"}],"name":"revealTimer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_owners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artVialNFTAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"phase1TokenId","type":"uint256"},{"internalType":"uint256","name":"artVialTokenId","type":"uint256"}],"name":"merge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"nftOfUser","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"phase1NFTAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTime","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"revealTime_","type":"uint256"}],"name":"setRevelTimer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle_","type":"bool"}],"name":"setToggle","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":[],"name":"toggle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[{"internalType":"address","name":"phase1Address_","type":"address"},{"internalType":"address","name":"artVialAddress_","type":"address"}],"name":"updatePhaseAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI_","type":"string"}],"name":"updateURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userNftId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620037a5380380620037a58339810160408190526200003491620003e8565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001858581600090805190602001906200006592919062000258565b5080516200007b90600190602084019062000258565b5050506daaeb6d7670e522a718067333cd4e3b15620001c35780156200011157604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620000f257600080fd5b505af115801562000107573d6000803e3d6000fd5b50505050620001c3565b6001600160a01b03821615620001625760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000d7565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001a957600080fd5b505af1158015620001be573d6000803e3d6000fd5b505050505b50620001d190503362000206565b600b80546001600160a01b039384166001600160a01b031991821617909155600c805492909316911617905550620004b39050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002669062000477565b90600052602060002090601f0160209004810192826200028a5760008555620002d5565b82601f10620002a557805160ff1916838001178555620002d5565b82800160010185558215620002d5579182015b82811115620002d5578251825591602001919060010190620002b8565b50620002e3929150620002e7565b5090565b5b80821115620002e35760008155600101620002e8565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200032657600080fd5b81516001600160401b0380821115620003435762000343620002fe565b604051601f8301601f19908116603f011681019082821181831017156200036e576200036e620002fe565b816040528381526020925086838588010111156200038b57600080fd5b600091505b83821015620003af578582018301518183018401529082019062000390565b83821115620003c15760008385830101525b9695505050505050565b80516001600160a01b0381168114620003e357600080fd5b919050565b60008060008060808587031215620003ff57600080fd5b84516001600160401b03808211156200041757600080fd5b620004258883890162000314565b955060208701519150808211156200043c57600080fd5b506200044b8782880162000314565b9350506200045c60408601620003cb565b91506200046c60608601620003cb565b905092959194509250565b600181811c908216806200048c57607f821691505b602082108103620004ad57634e487b7160e01b600052602260045260246000fd5b50919050565b6132e280620004c36000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80638da5cb5b1161010f578063c30f4a5a116100a2578063dffae5ef11610071578063dffae5ef1461043b578063e985e9c51461044e578063f2fde38b1461048a578063f3228b6e1461049d57600080fd5b8063c30f4a5a146103ef578063c87b56dd14610402578063d1c2babb14610415578063d7d49fd71461042857600080fd5b8063a22cb465116100de578063a22cb465146103ad578063b668908f146103c0578063b88d4fde146103d3578063ba829d71146103e657600080fd5b80638da5cb5b1461034b57806390cd38ba1461035c57806395d89b411461037c578063992924a61461038457600080fd5b80633ef0410f116101875780634f6ccce7116101565780634f6ccce71461030a5780636352211e1461031d57806370a0823114610330578063715018a61461034357600080fd5b80633ef0410f146102bd57806340a3d246146102d057806342842e0e146102e457806342966c68146102f757600080fd5b806318160ddd116101c357806318160ddd1461027257806323b872dd146102845780632e203e6d146102975780632f745c59146102aa57600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063095ea7b31461025d575b600080fd5b610208610203366004612c4f565b6104b0565b60405190151581526020015b60405180910390f35b6102256104c1565b6040516102149190612cc4565b610245610240366004612cd7565b610553565b6040516001600160a01b039091168152602001610214565b61027061026b366004612d05565b61057a565b005b6008545b604051908152602001610214565b610270610292366004612d31565b610694565b6102706102a5366004612d80565b610b04565b6102766102b8366004612d05565b610b2a565b6102766102cb366004612d05565b610bc0565b600a5461020890600160a01b900460ff1681565b6102706102f2366004612d31565b610bf1565b610270610305366004612cd7565b61102a565b610276610318366004612cd7565b611036565b61024561032b366004612cd7565b6110c9565b61027661033e366004612d9d565b611129565b6102706111af565b600a546001600160a01b0316610245565b61036f61036a366004612d9d565b6111c3565b6040516102149190612dba565b61022561122f565b610245610392366004612cd7565b6002602052600090815260409020546001600160a01b031681565b6102706103bb366004612dfe565b61123e565b6102706103ce366004612cd7565b61124d565b6102706103e1366004612ec3565b611290565b610276600e5481565b6102706103fd366004612f43565b611703565b610225610410366004612cd7565b61171e565b610270610423366004612f8c565b611785565b610270610436366004612fae565b611b22565b600b54610245906001600160a01b031681565b61020861045c366004612fae565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610270610498366004612d9d565b611c32565b600c54610245906001600160a01b031681565b60006104bb82611ca8565b92915050565b6060600080546104d090612fdc565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc90612fdc565b80156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b5050505050905090565b600061055e82611ccd565b506000908152600460205260409020546001600160a01b031690565b6000610585826110c9565b9050806001600160a01b0316836001600160a01b0316036105f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106135750610613813361045c565b6106855760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105ee565b61068f8383611d2c565b505050565b826daaeb6d7670e522a718067333cd4e3b1561096a57336001600160a01b03821603610855576106c5335b83611d9a565b6106e15760405162461bcd60e51b81526004016105ee90613016565b60005b6001600160a01b0385166000908152600f6020526040902054811015610844576001600160a01b0385166000908152600f6020526040902080548491908390811061073157610731613067565b906000526020600020015403610832576001600160a01b0385166000908152600f60205260409020805461076790600190613093565b8154811061077757610777613067565b9060005260206000200154600f6000876001600160a01b03166001600160a01b0316815260200190815260200160002082815481106107b8576107b8613067565b60009182526020808320909101929092556001600160a01b0387168152600f909152604090208054806107ed576107ed6130aa565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f8152604082208054600181018255908352912001839055610844565b8061083c816130c0565b9150506106e4565b50610850848484611e19565b610afe565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c891906130d9565b801561094b5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094b91906130d9565b61096a57604051633b79c77360e21b81523360048201526024016105ee565b610973336106bf565b61098f5760405162461bcd60e51b81526004016105ee90613016565b60005b6001600160a01b0385166000908152600f6020526040902054811015610af2576001600160a01b0385166000908152600f602052604090208054849190839081106109df576109df613067565b906000526020600020015403610ae0576001600160a01b0385166000908152600f602052604090208054610a1590600190613093565b81548110610a2557610a25613067565b9060005260206000200154600f6000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610a6657610a66613067565b60009182526020808320909101929092556001600160a01b0387168152600f90915260409020805480610a9b57610a9b6130aa565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f8152604082208054600181018255908352912001839055610af2565b80610aea816130c0565b915050610992565b50610afe848484611e19565b50505050565b610b0c611f8a565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b6000610b3583611129565b8210610b975760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105ee565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600f6020528160005260406000208181548110610bdc57600080fd5b90600052602060002001600091509150505481565b826daaeb6d7670e522a718067333cd4e3b15610eab57336001600160a01b03821603610d965760005b6001600160a01b0385166000908152600f6020526040902054811015610d7a576001600160a01b0385166000908152600f60205260409020805484919083908110610c6757610c67613067565b906000526020600020015403610d68576001600160a01b0385166000908152600f602052604090208054610c9d90600190613093565b81548110610cad57610cad613067565b9060005260206000200154600f6000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610cee57610cee613067565b60009182526020808320909101929092556001600160a01b0387168152600f90915260409020805480610d2357610d236130aa565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f8152604082208054600181018255908352912001839055610d7a565b80610d72816130c0565b915050610c1a565b5061085084848460405180602001604052806000815250611290565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610de5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0991906130d9565b8015610e8c5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8c91906130d9565b610eab57604051633b79c77360e21b81523360048201526024016105ee565b60005b6001600160a01b0385166000908152600f602052604090205481101561100e576001600160a01b0385166000908152600f60205260409020805484919083908110610efb57610efb613067565b906000526020600020015403610ffc576001600160a01b0385166000908152600f602052604090208054610f3190600190613093565b81548110610f4157610f41613067565b9060005260206000200154600f6000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610f8257610f82613067565b60009182526020808320909101929092556001600160a01b0387168152600f90915260409020805480610fb757610fb76130aa565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f815260408220805460018101825590835291200183905561100e565b80611006816130c0565b915050610eae565b50610afe84848460405180602001604052806000815250611290565b61103381611fe4565b50565b600061104160085490565b82106110a45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105ee565b600882815481106110b7576110b7613067565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104bb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105ee565b60006001600160a01b0382166111935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105ee565b506001600160a01b031660009081526003602052604090205490565b6111b7611f8a565b6111c160006121a1565b565b6001600160a01b0381166000908152600f602090815260409182902080548351818402810184019094528084526060939283018282801561122357602002820191906000526020600020905b81548152602001906001019080831161120f575b50505050509050919050565b6060600180546104d090612fdc565b6112493383836121f3565b5050565b611255611f8a565b600e8190556040518181527fbf2117473c528eb1701446fd671b6677cba6760cf865c5f1e65ed0db6f318a889060200160405180910390a150565b836daaeb6d7670e522a718067333cd4e3b1561156757336001600160a01b03821603611452576112c1335b84611d9a565b6112dd5760405162461bcd60e51b81526004016105ee906130f6565b60005b6001600160a01b0386166000908152600f6020526040902054811015611440576001600160a01b0386166000908152600f6020526040902080548591908390811061132d5761132d613067565b90600052602060002001540361142e576001600160a01b0386166000908152600f60205260409020805461136390600190613093565b8154811061137357611373613067565b9060005260206000200154600f6000886001600160a01b03166001600160a01b0316815260200190815260200160002082815481106113b4576113b4613067565b60009182526020808320909101929092556001600160a01b0388168152600f909152604090208054806113e9576113e96130aa565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252600f8152604082208054600181018255908352912001849055611440565b80611438816130c0565b9150506112e0565b5061144d858585856122c1565b6116fc565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c591906130d9565b80156115485750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611524573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154891906130d9565b61156757604051633b79c77360e21b81523360048201526024016105ee565b611570336112bb565b61158c5760405162461bcd60e51b81526004016105ee906130f6565b60005b6001600160a01b0386166000908152600f60205260409020548110156116ef576001600160a01b0386166000908152600f602052604090208054859190839081106115dc576115dc613067565b9060005260206000200154036116dd576001600160a01b0386166000908152600f60205260409020805461161290600190613093565b8154811061162257611622613067565b9060005260206000200154600f6000886001600160a01b03166001600160a01b03168152602001908152602001600020828154811061166357611663613067565b60009182526020808320909101929092556001600160a01b0388168152600f90915260409020805480611698576116986130aa565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252600f81526040822080546001810182559083529120018490556116ef565b806116e7816130c0565b91505061158f565b506116fc858585856122c1565b5050505050565b61170b611f8a565b805161124990600d906020840190612ba0565b606061172982611ccd565b60006117336122f4565b90506000815111611753576040518060200160405280600081525061177e565b8061175d84612303565b60405160200161176e929190613147565b6040516020818303038152906040525b9392505050565b600a54600160a01b900460ff1615156001146117db5760405162461bcd60e51b8152602060048201526015602482015274283430b9b2991d102a37b3b3b6329034b99037b33360591b60448201526064016105ee565b600e5460000361182d5760405162461bcd60e51b815260206004820152601760248201527f5068617365323a2053657420726576656c2054696d657200000000000000000060448201526064016105ee565b600e5442116118895760405162461bcd60e51b815260206004820152602260248201527f5068617365323a2052656465656d20686173206e6f7420737461727465642079604482015261195d60f21b60648201526084016105ee565b600b546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa1580156118d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f69190613186565b6001600160a01b0316146119605760405162461bcd60e51b815260206004820152602b60248201527f5068617365323a20596f7520617265206e6f7420746865206f776e6572206f6660448201526a08141a185cd94c4813919560aa1b60648201526084016105ee565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa1580156119a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cd9190613186565b6001600160a01b031614611a395760405162461bcd60e51b815260206004820152602d60248201527f5068617365323a20596f7520617265206e6f7420746865206f776e6572206f6660448201526c08105c9d08159a585b08139195609a1b60648201526084016105ee565b600b54604051630852cd8d60e31b8152600481018490526001600160a01b03909116906342966c6890602401600060405180830381600087803b158015611a7f57600080fd5b505af1158015611a93573d6000803e3d6000fd5b5050600c54604051630852cd8d60e31b8152600481018590526001600160a01b0390911692506342966c689150602401600060405180830381600087803b158015611add57600080fd5b505af1158015611af1573d6000803e3d6000fd5b5050336000818152600f60209081526040822080546001810182559083529120018590556112499250905083612396565b611b2a611f8a565b6001600160a01b038216611b965760405162461bcd60e51b815260206004820152602d60248201527f5068617365323a2050686173653120616464726573732063616e6e6f7420626560448201526c207a65726f206164647265737360981b60648201526084016105ee565b6001600160a01b038116611c045760405162461bcd60e51b815260206004820152602f60248201527f5068617365323a20417274205669616c20616464726573732063616e6e6f742060448201526e6265207a65726f206164647265737360881b60648201526084016105ee565b600b80546001600160a01b039384166001600160a01b031991821617909155600c8054929093169116179055565b611c3a611f8a565b6001600160a01b038116611c9f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ee565b611033816121a1565b60006001600160e01b0319821663780e9d6360e01b14806104bb57506104bb826123b0565b6000818152600260205260409020546001600160a01b03166110335760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105ee565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d61826110c9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611da6836110c9565b9050806001600160a01b0316846001600160a01b03161480611ded57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611e115750836001600160a01b0316611e0684610553565b6001600160a01b0316145b949350505050565b826001600160a01b0316611e2c826110c9565b6001600160a01b031614611e525760405162461bcd60e51b81526004016105ee906131a3565b6001600160a01b038216611eb45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ee565b611ec18383836001612400565b826001600160a01b0316611ed4826110c9565b6001600160a01b031614611efa5760405162461bcd60e51b81526004016105ee906131a3565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b031633146111c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ee565b611fee3382611d9a565b6120515760405162461bcd60e51b815260206004820152602e60248201527f5068617365323a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b60648201526084016105ee565b600061205c826110c9565b905060005b6001600160a01b0382166000908152600f6020526040902054811015612197576001600160a01b0382166000908152600f602052604090208054849190839081106120ae576120ae613067565b906000526020600020015403612185576001600160a01b0382166000908152600f6020526040902080546120e490600190613093565b815481106120f4576120f4613067565b9060005260206000200154600f6000846001600160a01b03166001600160a01b03168152602001908152602001600020828154811061213557612135613067565b60009182526020808320909101929092556001600160a01b0384168152600f9091526040902080548061216a5761216a6130aa565b60019003818190600052602060002001600090559055612197565b8061218f816130c0565b915050612061565b506112498261240c565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036122545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105ee565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122cc848484611e19565b6122d8848484846124af565b610afe5760405162461bcd60e51b81526004016105ee906131e8565b6060600d80546104d090612fdc565b60606000612310836125b0565b600101905060008167ffffffffffffffff81111561233057612330612e37565b6040519080825280601f01601f19166020018201604052801561235a576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461236457509392505050565b611249828260405180602001604052806000815250612688565b60006001600160e01b031982166380ac58cd60e01b14806123e157506001600160e01b03198216635b5e139f60e01b145b806104bb57506301ffc9a760e01b6001600160e01b03198316146104bb565b610afe848484846126bb565b6000612417826110c9565b9050612427816000846001612400565b612430826110c9565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384163b156125a557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124f390339089908890889060040161323a565b6020604051808303816000875af192505050801561252e575060408051601f3d908101601f1916820190925261252b91810190613277565b60015b61258b573d80801561255c576040519150601f19603f3d011682016040523d82523d6000602084013e612561565b606091505b5080516000036125835760405162461bcd60e51b81526004016105ee906131e8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e11565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106125ef5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061261b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061263957662386f26fc10000830492506010015b6305f5e1008310612651576305f5e100830492506008015b612710831061266557612710830492506004015b60648310612677576064830492506002015b600a83106104bb5760010192915050565b61269283836127ef565b61269f60008484846124af565b61068f5760405162461bcd60e51b81526004016105ee906131e8565b6126c784848484612988565b60018111156127365760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016105ee565b816001600160a01b0385166127925761278d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127b5565b836001600160a01b0316856001600160a01b0316146127b5576127b58582612a10565b6001600160a01b0384166127cc5761144d81612aad565b846001600160a01b0316846001600160a01b0316146116fc576116fc8482612b5c565b6001600160a01b0382166128455760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ee565b6000818152600260205260409020546001600160a01b0316156128aa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ee565b6128b8600083836001612400565b6000818152600260205260409020546001600160a01b03161561291d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ee565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001811115610afe576001600160a01b038416156129ce576001600160a01b038416600090815260036020526040812080548392906129c8908490613093565b90915550505b6001600160a01b03831615610afe576001600160a01b03831660009081526003602052604081208054839290612a05908490613294565b909155505050505050565b60006001612a1d84611129565b612a279190613093565b600083815260076020526040902054909150808214612a7a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612abf90600190613093565b60008381526009602052604081205460088054939450909284908110612ae757612ae7613067565b906000526020600020015490508060088381548110612b0857612b08613067565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b4057612b406130aa565b6001900381819060005260206000200160009055905550505050565b6000612b6783611129565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612bac90612fdc565b90600052602060002090601f016020900481019282612bce5760008555612c14565b82601f10612be757805160ff1916838001178555612c14565b82800160010185558215612c14579182015b82811115612c14578251825591602001919060010190612bf9565b50612c20929150612c24565b5090565b5b80821115612c205760008155600101612c25565b6001600160e01b03198116811461103357600080fd5b600060208284031215612c6157600080fd5b813561177e81612c39565b60005b83811015612c87578181015183820152602001612c6f565b83811115610afe5750506000910152565b60008151808452612cb0816020860160208601612c6c565b601f01601f19169290920160200192915050565b60208152600061177e6020830184612c98565b600060208284031215612ce957600080fd5b5035919050565b6001600160a01b038116811461103357600080fd5b60008060408385031215612d1857600080fd5b8235612d2381612cf0565b946020939093013593505050565b600080600060608486031215612d4657600080fd5b8335612d5181612cf0565b92506020840135612d6181612cf0565b929592945050506040919091013590565b801515811461103357600080fd5b600060208284031215612d9257600080fd5b813561177e81612d72565b600060208284031215612daf57600080fd5b813561177e81612cf0565b6020808252825182820181905260009190848201906040850190845b81811015612df257835183529284019291840191600101612dd6565b50909695505050505050565b60008060408385031215612e1157600080fd5b8235612e1c81612cf0565b91506020830135612e2c81612d72565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612e6857612e68612e37565b604051601f8501601f19908116603f01168101908282118183101715612e9057612e90612e37565b81604052809350858152868686011115612ea957600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215612ed957600080fd5b8435612ee481612cf0565b93506020850135612ef481612cf0565b925060408501359150606085013567ffffffffffffffff811115612f1757600080fd5b8501601f81018713612f2857600080fd5b612f3787823560208401612e4d565b91505092959194509250565b600060208284031215612f5557600080fd5b813567ffffffffffffffff811115612f6c57600080fd5b8201601f81018413612f7d57600080fd5b611e1184823560208401612e4d565b60008060408385031215612f9f57600080fd5b50508035926020909101359150565b60008060408385031215612fc157600080fd5b8235612fcc81612cf0565b91506020830135612e2c81612cf0565b600181811c90821680612ff057607f821691505b60208210810361301057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f5068617365333a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000828210156130a5576130a561307d565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600182016130d2576130d261307d565b5060010190565b6000602082840312156130eb57600080fd5b815161177e81612d72565b60208082526031908201527f5068617365323a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008351613159818460208801612c6c565b83519083019061316d818360208801612c6c565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561319857600080fd5b815161177e81612cf0565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061326d90830184612c98565b9695505050505050565b60006020828403121561328957600080fd5b815161177e81612c39565b600082198211156132a7576132a761307d565b50019056fea26469706673582212203a4cfa08072c7835f7944a90ae8f692cfdae2ae3c5c1c38d65edb8a0a810ceab64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000005e4a05e113f8084dc018f25e0134750dbfd5c94d000000000000000000000000605fc905e257eb6e9d89dc193171b32a6db69ff0000000000000000000000000000000000000000000000000000000000000001b42264f20444e4120436f6c6c656374696f6e3a205068617365203200000000000000000000000000000000000000000000000000000000000000000000000005424f504832000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80638da5cb5b1161010f578063c30f4a5a116100a2578063dffae5ef11610071578063dffae5ef1461043b578063e985e9c51461044e578063f2fde38b1461048a578063f3228b6e1461049d57600080fd5b8063c30f4a5a146103ef578063c87b56dd14610402578063d1c2babb14610415578063d7d49fd71461042857600080fd5b8063a22cb465116100de578063a22cb465146103ad578063b668908f146103c0578063b88d4fde146103d3578063ba829d71146103e657600080fd5b80638da5cb5b1461034b57806390cd38ba1461035c57806395d89b411461037c578063992924a61461038457600080fd5b80633ef0410f116101875780634f6ccce7116101565780634f6ccce71461030a5780636352211e1461031d57806370a0823114610330578063715018a61461034357600080fd5b80633ef0410f146102bd57806340a3d246146102d057806342842e0e146102e457806342966c68146102f757600080fd5b806318160ddd116101c357806318160ddd1461027257806323b872dd146102845780632e203e6d146102975780632f745c59146102aa57600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063095ea7b31461025d575b600080fd5b610208610203366004612c4f565b6104b0565b60405190151581526020015b60405180910390f35b6102256104c1565b6040516102149190612cc4565b610245610240366004612cd7565b610553565b6040516001600160a01b039091168152602001610214565b61027061026b366004612d05565b61057a565b005b6008545b604051908152602001610214565b610270610292366004612d31565b610694565b6102706102a5366004612d80565b610b04565b6102766102b8366004612d05565b610b2a565b6102766102cb366004612d05565b610bc0565b600a5461020890600160a01b900460ff1681565b6102706102f2366004612d31565b610bf1565b610270610305366004612cd7565b61102a565b610276610318366004612cd7565b611036565b61024561032b366004612cd7565b6110c9565b61027661033e366004612d9d565b611129565b6102706111af565b600a546001600160a01b0316610245565b61036f61036a366004612d9d565b6111c3565b6040516102149190612dba565b61022561122f565b610245610392366004612cd7565b6002602052600090815260409020546001600160a01b031681565b6102706103bb366004612dfe565b61123e565b6102706103ce366004612cd7565b61124d565b6102706103e1366004612ec3565b611290565b610276600e5481565b6102706103fd366004612f43565b611703565b610225610410366004612cd7565b61171e565b610270610423366004612f8c565b611785565b610270610436366004612fae565b611b22565b600b54610245906001600160a01b031681565b61020861045c366004612fae565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610270610498366004612d9d565b611c32565b600c54610245906001600160a01b031681565b60006104bb82611ca8565b92915050565b6060600080546104d090612fdc565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc90612fdc565b80156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b5050505050905090565b600061055e82611ccd565b506000908152600460205260409020546001600160a01b031690565b6000610585826110c9565b9050806001600160a01b0316836001600160a01b0316036105f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106135750610613813361045c565b6106855760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105ee565b61068f8383611d2c565b505050565b826daaeb6d7670e522a718067333cd4e3b1561096a57336001600160a01b03821603610855576106c5335b83611d9a565b6106e15760405162461bcd60e51b81526004016105ee90613016565b60005b6001600160a01b0385166000908152600f6020526040902054811015610844576001600160a01b0385166000908152600f6020526040902080548491908390811061073157610731613067565b906000526020600020015403610832576001600160a01b0385166000908152600f60205260409020805461076790600190613093565b8154811061077757610777613067565b9060005260206000200154600f6000876001600160a01b03166001600160a01b0316815260200190815260200160002082815481106107b8576107b8613067565b60009182526020808320909101929092556001600160a01b0387168152600f909152604090208054806107ed576107ed6130aa565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f8152604082208054600181018255908352912001839055610844565b8061083c816130c0565b9150506106e4565b50610850848484611e19565b610afe565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c891906130d9565b801561094b5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094b91906130d9565b61096a57604051633b79c77360e21b81523360048201526024016105ee565b610973336106bf565b61098f5760405162461bcd60e51b81526004016105ee90613016565b60005b6001600160a01b0385166000908152600f6020526040902054811015610af2576001600160a01b0385166000908152600f602052604090208054849190839081106109df576109df613067565b906000526020600020015403610ae0576001600160a01b0385166000908152600f602052604090208054610a1590600190613093565b81548110610a2557610a25613067565b9060005260206000200154600f6000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610a6657610a66613067565b60009182526020808320909101929092556001600160a01b0387168152600f90915260409020805480610a9b57610a9b6130aa565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f8152604082208054600181018255908352912001839055610af2565b80610aea816130c0565b915050610992565b50610afe848484611e19565b50505050565b610b0c611f8a565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b6000610b3583611129565b8210610b975760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105ee565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600f6020528160005260406000208181548110610bdc57600080fd5b90600052602060002001600091509150505481565b826daaeb6d7670e522a718067333cd4e3b15610eab57336001600160a01b03821603610d965760005b6001600160a01b0385166000908152600f6020526040902054811015610d7a576001600160a01b0385166000908152600f60205260409020805484919083908110610c6757610c67613067565b906000526020600020015403610d68576001600160a01b0385166000908152600f602052604090208054610c9d90600190613093565b81548110610cad57610cad613067565b9060005260206000200154600f6000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610cee57610cee613067565b60009182526020808320909101929092556001600160a01b0387168152600f90915260409020805480610d2357610d236130aa565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f8152604082208054600181018255908352912001839055610d7a565b80610d72816130c0565b915050610c1a565b5061085084848460405180602001604052806000815250611290565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610de5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0991906130d9565b8015610e8c5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8c91906130d9565b610eab57604051633b79c77360e21b81523360048201526024016105ee565b60005b6001600160a01b0385166000908152600f602052604090205481101561100e576001600160a01b0385166000908152600f60205260409020805484919083908110610efb57610efb613067565b906000526020600020015403610ffc576001600160a01b0385166000908152600f602052604090208054610f3190600190613093565b81548110610f4157610f41613067565b9060005260206000200154600f6000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610f8257610f82613067565b60009182526020808320909101929092556001600160a01b0387168152600f90915260409020805480610fb757610fb76130aa565b6000828152602080822083016000199081018390559092019092556001600160a01b0386168252600f815260408220805460018101825590835291200183905561100e565b80611006816130c0565b915050610eae565b50610afe84848460405180602001604052806000815250611290565b61103381611fe4565b50565b600061104160085490565b82106110a45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105ee565b600882815481106110b7576110b7613067565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104bb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105ee565b60006001600160a01b0382166111935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105ee565b506001600160a01b031660009081526003602052604090205490565b6111b7611f8a565b6111c160006121a1565b565b6001600160a01b0381166000908152600f602090815260409182902080548351818402810184019094528084526060939283018282801561122357602002820191906000526020600020905b81548152602001906001019080831161120f575b50505050509050919050565b6060600180546104d090612fdc565b6112493383836121f3565b5050565b611255611f8a565b600e8190556040518181527fbf2117473c528eb1701446fd671b6677cba6760cf865c5f1e65ed0db6f318a889060200160405180910390a150565b836daaeb6d7670e522a718067333cd4e3b1561156757336001600160a01b03821603611452576112c1335b84611d9a565b6112dd5760405162461bcd60e51b81526004016105ee906130f6565b60005b6001600160a01b0386166000908152600f6020526040902054811015611440576001600160a01b0386166000908152600f6020526040902080548591908390811061132d5761132d613067565b90600052602060002001540361142e576001600160a01b0386166000908152600f60205260409020805461136390600190613093565b8154811061137357611373613067565b9060005260206000200154600f6000886001600160a01b03166001600160a01b0316815260200190815260200160002082815481106113b4576113b4613067565b60009182526020808320909101929092556001600160a01b0388168152600f909152604090208054806113e9576113e96130aa565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252600f8152604082208054600181018255908352912001849055611440565b80611438816130c0565b9150506112e0565b5061144d858585856122c1565b6116fc565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c591906130d9565b80156115485750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611524573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154891906130d9565b61156757604051633b79c77360e21b81523360048201526024016105ee565b611570336112bb565b61158c5760405162461bcd60e51b81526004016105ee906130f6565b60005b6001600160a01b0386166000908152600f60205260409020548110156116ef576001600160a01b0386166000908152600f602052604090208054859190839081106115dc576115dc613067565b9060005260206000200154036116dd576001600160a01b0386166000908152600f60205260409020805461161290600190613093565b8154811061162257611622613067565b9060005260206000200154600f6000886001600160a01b03166001600160a01b03168152602001908152602001600020828154811061166357611663613067565b60009182526020808320909101929092556001600160a01b0388168152600f90915260409020805480611698576116986130aa565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252600f81526040822080546001810182559083529120018490556116ef565b806116e7816130c0565b91505061158f565b506116fc858585856122c1565b5050505050565b61170b611f8a565b805161124990600d906020840190612ba0565b606061172982611ccd565b60006117336122f4565b90506000815111611753576040518060200160405280600081525061177e565b8061175d84612303565b60405160200161176e929190613147565b6040516020818303038152906040525b9392505050565b600a54600160a01b900460ff1615156001146117db5760405162461bcd60e51b8152602060048201526015602482015274283430b9b2991d102a37b3b3b6329034b99037b33360591b60448201526064016105ee565b600e5460000361182d5760405162461bcd60e51b815260206004820152601760248201527f5068617365323a2053657420726576656c2054696d657200000000000000000060448201526064016105ee565b600e5442116118895760405162461bcd60e51b815260206004820152602260248201527f5068617365323a2052656465656d20686173206e6f7420737461727465642079604482015261195d60f21b60648201526084016105ee565b600b546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa1580156118d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f69190613186565b6001600160a01b0316146119605760405162461bcd60e51b815260206004820152602b60248201527f5068617365323a20596f7520617265206e6f7420746865206f776e6572206f6660448201526a08141a185cd94c4813919560aa1b60648201526084016105ee565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa1580156119a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cd9190613186565b6001600160a01b031614611a395760405162461bcd60e51b815260206004820152602d60248201527f5068617365323a20596f7520617265206e6f7420746865206f776e6572206f6660448201526c08105c9d08159a585b08139195609a1b60648201526084016105ee565b600b54604051630852cd8d60e31b8152600481018490526001600160a01b03909116906342966c6890602401600060405180830381600087803b158015611a7f57600080fd5b505af1158015611a93573d6000803e3d6000fd5b5050600c54604051630852cd8d60e31b8152600481018590526001600160a01b0390911692506342966c689150602401600060405180830381600087803b158015611add57600080fd5b505af1158015611af1573d6000803e3d6000fd5b5050336000818152600f60209081526040822080546001810182559083529120018590556112499250905083612396565b611b2a611f8a565b6001600160a01b038216611b965760405162461bcd60e51b815260206004820152602d60248201527f5068617365323a2050686173653120616464726573732063616e6e6f7420626560448201526c207a65726f206164647265737360981b60648201526084016105ee565b6001600160a01b038116611c045760405162461bcd60e51b815260206004820152602f60248201527f5068617365323a20417274205669616c20616464726573732063616e6e6f742060448201526e6265207a65726f206164647265737360881b60648201526084016105ee565b600b80546001600160a01b039384166001600160a01b031991821617909155600c8054929093169116179055565b611c3a611f8a565b6001600160a01b038116611c9f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ee565b611033816121a1565b60006001600160e01b0319821663780e9d6360e01b14806104bb57506104bb826123b0565b6000818152600260205260409020546001600160a01b03166110335760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105ee565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d61826110c9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611da6836110c9565b9050806001600160a01b0316846001600160a01b03161480611ded57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611e115750836001600160a01b0316611e0684610553565b6001600160a01b0316145b949350505050565b826001600160a01b0316611e2c826110c9565b6001600160a01b031614611e525760405162461bcd60e51b81526004016105ee906131a3565b6001600160a01b038216611eb45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ee565b611ec18383836001612400565b826001600160a01b0316611ed4826110c9565b6001600160a01b031614611efa5760405162461bcd60e51b81526004016105ee906131a3565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b031633146111c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ee565b611fee3382611d9a565b6120515760405162461bcd60e51b815260206004820152602e60248201527f5068617365323a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b60648201526084016105ee565b600061205c826110c9565b905060005b6001600160a01b0382166000908152600f6020526040902054811015612197576001600160a01b0382166000908152600f602052604090208054849190839081106120ae576120ae613067565b906000526020600020015403612185576001600160a01b0382166000908152600f6020526040902080546120e490600190613093565b815481106120f4576120f4613067565b9060005260206000200154600f6000846001600160a01b03166001600160a01b03168152602001908152602001600020828154811061213557612135613067565b60009182526020808320909101929092556001600160a01b0384168152600f9091526040902080548061216a5761216a6130aa565b60019003818190600052602060002001600090559055612197565b8061218f816130c0565b915050612061565b506112498261240c565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036122545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105ee565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122cc848484611e19565b6122d8848484846124af565b610afe5760405162461bcd60e51b81526004016105ee906131e8565b6060600d80546104d090612fdc565b60606000612310836125b0565b600101905060008167ffffffffffffffff81111561233057612330612e37565b6040519080825280601f01601f19166020018201604052801561235a576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461236457509392505050565b611249828260405180602001604052806000815250612688565b60006001600160e01b031982166380ac58cd60e01b14806123e157506001600160e01b03198216635b5e139f60e01b145b806104bb57506301ffc9a760e01b6001600160e01b03198316146104bb565b610afe848484846126bb565b6000612417826110c9565b9050612427816000846001612400565b612430826110c9565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384163b156125a557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124f390339089908890889060040161323a565b6020604051808303816000875af192505050801561252e575060408051601f3d908101601f1916820190925261252b91810190613277565b60015b61258b573d80801561255c576040519150601f19603f3d011682016040523d82523d6000602084013e612561565b606091505b5080516000036125835760405162461bcd60e51b81526004016105ee906131e8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e11565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106125ef5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061261b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061263957662386f26fc10000830492506010015b6305f5e1008310612651576305f5e100830492506008015b612710831061266557612710830492506004015b60648310612677576064830492506002015b600a83106104bb5760010192915050565b61269283836127ef565b61269f60008484846124af565b61068f5760405162461bcd60e51b81526004016105ee906131e8565b6126c784848484612988565b60018111156127365760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016105ee565b816001600160a01b0385166127925761278d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127b5565b836001600160a01b0316856001600160a01b0316146127b5576127b58582612a10565b6001600160a01b0384166127cc5761144d81612aad565b846001600160a01b0316846001600160a01b0316146116fc576116fc8482612b5c565b6001600160a01b0382166128455760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ee565b6000818152600260205260409020546001600160a01b0316156128aa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ee565b6128b8600083836001612400565b6000818152600260205260409020546001600160a01b03161561291d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ee565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001811115610afe576001600160a01b038416156129ce576001600160a01b038416600090815260036020526040812080548392906129c8908490613093565b90915550505b6001600160a01b03831615610afe576001600160a01b03831660009081526003602052604081208054839290612a05908490613294565b909155505050505050565b60006001612a1d84611129565b612a279190613093565b600083815260076020526040902054909150808214612a7a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612abf90600190613093565b60008381526009602052604081205460088054939450909284908110612ae757612ae7613067565b906000526020600020015490508060088381548110612b0857612b08613067565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b4057612b406130aa565b6001900381819060005260206000200160009055905550505050565b6000612b6783611129565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612bac90612fdc565b90600052602060002090601f016020900481019282612bce5760008555612c14565b82601f10612be757805160ff1916838001178555612c14565b82800160010185558215612c14579182015b82811115612c14578251825591602001919060010190612bf9565b50612c20929150612c24565b5090565b5b80821115612c205760008155600101612c25565b6001600160e01b03198116811461103357600080fd5b600060208284031215612c6157600080fd5b813561177e81612c39565b60005b83811015612c87578181015183820152602001612c6f565b83811115610afe5750506000910152565b60008151808452612cb0816020860160208601612c6c565b601f01601f19169290920160200192915050565b60208152600061177e6020830184612c98565b600060208284031215612ce957600080fd5b5035919050565b6001600160a01b038116811461103357600080fd5b60008060408385031215612d1857600080fd5b8235612d2381612cf0565b946020939093013593505050565b600080600060608486031215612d4657600080fd5b8335612d5181612cf0565b92506020840135612d6181612cf0565b929592945050506040919091013590565b801515811461103357600080fd5b600060208284031215612d9257600080fd5b813561177e81612d72565b600060208284031215612daf57600080fd5b813561177e81612cf0565b6020808252825182820181905260009190848201906040850190845b81811015612df257835183529284019291840191600101612dd6565b50909695505050505050565b60008060408385031215612e1157600080fd5b8235612e1c81612cf0565b91506020830135612e2c81612d72565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612e6857612e68612e37565b604051601f8501601f19908116603f01168101908282118183101715612e9057612e90612e37565b81604052809350858152868686011115612ea957600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215612ed957600080fd5b8435612ee481612cf0565b93506020850135612ef481612cf0565b925060408501359150606085013567ffffffffffffffff811115612f1757600080fd5b8501601f81018713612f2857600080fd5b612f3787823560208401612e4d565b91505092959194509250565b600060208284031215612f5557600080fd5b813567ffffffffffffffff811115612f6c57600080fd5b8201601f81018413612f7d57600080fd5b611e1184823560208401612e4d565b60008060408385031215612f9f57600080fd5b50508035926020909101359150565b60008060408385031215612fc157600080fd5b8235612fcc81612cf0565b91506020830135612e2c81612cf0565b600181811c90821680612ff057607f821691505b60208210810361301057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f5068617365333a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000828210156130a5576130a561307d565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600182016130d2576130d261307d565b5060010190565b6000602082840312156130eb57600080fd5b815161177e81612d72565b60208082526031908201527f5068617365323a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008351613159818460208801612c6c565b83519083019061316d818360208801612c6c565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561319857600080fd5b815161177e81612cf0565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061326d90830184612c98565b9695505050505050565b60006020828403121561328957600080fd5b815161177e81612c39565b600082198211156132a7576132a761307d565b50019056fea26469706673582212203a4cfa08072c7835f7944a90ae8f692cfdae2ae3c5c1c38d65edb8a0a810ceab64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000005e4a05e113f8084dc018f25e0134750dbfd5c94d000000000000000000000000605fc905e257eb6e9d89dc193171b32a6db69ff0000000000000000000000000000000000000000000000000000000000000001b42264f20444e4120436f6c6c656374696f6e3a205068617365203200000000000000000000000000000000000000000000000000000000000000000000000005424f504832000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): B&O DNA Collection: Phase 2
Arg [1] : _symbol (string): BOPH2
Arg [2] : _phase1NFTAddress (address): 0x5E4a05E113F8084Dc018F25e0134750dbfD5c94d
Arg [3] : _artVialNFTAddress (address): 0x605Fc905E257eb6E9D89Dc193171b32A6DB69ff0
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000005e4a05e113f8084dc018f25e0134750dbfd5c94d
Arg [3] : 000000000000000000000000605fc905e257eb6e9d89dc193171b32a6db69ff0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [5] : 42264f20444e4120436f6c6c656374696f6e3a20506861736520320000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 424f504832000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
68065:6025:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73873:212;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;73873:212:0;;;;;;;;45343:100;;;:::i;:::-;;;;;;;:::i;46864:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;46864:171:0;1528:203:1;46382:416:0;;;;;;:::i;:::-;;:::i;:::-;;62717:113;62805:10;:17;62717:113;;;2338:25:1;;;2326:2;2311:18;62717:113:0;2192:177:1;70774:612:0;;;;;;:::i;:::-;;:::i;69813:86::-;;;;;;:::i;:::-;;:::i;62385:256::-;;;;;;:::i;:::-;;:::i;68325:46::-;;;;;;:::i;:::-;;:::i;68166:18::-;;;;;-1:-1:-1;;;68166:18:0;;;;;;71394:514;;;;;;:::i;:::-;;:::i;72688:140::-;;;;;;:::i;:::-;;:::i;62907:233::-;;;;;;:::i;:::-;;:::i;45053:223::-;;;;;;:::i;:::-;;:::i;44784:207::-;;;;;;:::i;:::-;;:::i;22767:103::-;;;:::i;22119:87::-;22192:6;;-1:-1:-1;;;;;22192:6:0;22119:87;;72570:110;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45512:104::-;;;:::i;43722:42::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;43722:42:0;;;47107:155;;;;;;:::i;:::-;;:::i;70622:144::-;;;;;;:::i;:::-;;:::i;71916:646::-;;;;;;:::i;:::-;;:::i;68293:25::-;;;;;;73426:92;;;;;;:::i;:::-;;:::i;45687:290::-;;;;;;:::i;:::-;;:::i;69039:766::-;;;;;;:::i;:::-;;:::i;70081:392::-;;;;;;:::i;:::-;;:::i;68191:31::-;;;;;-1:-1:-1;;;;;68191:31:0;;;47333:164;;;;;;:::i;:::-;-1:-1:-1;;;;;47454:25:0;;;47430:4;47454:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47333:164;23025:201;;;;;;:::i;:::-;;:::i;68229:32::-;;;;;-1:-1:-1;;;;;68229:32:0;;;73873:212;74012:4;74041:36;74065:11;74041:23;:36::i;:::-;74034:43;73873:212;-1:-1:-1;;73873:212:0:o;45343:100::-;45397:13;45430:5;45423:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45343:100;:::o;46864:171::-;46940:7;46960:23;46975:7;46960:14;:23::i;:::-;-1:-1:-1;47003:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;47003:24:0;;46864:171::o;46382:416::-;46463:13;46479:23;46494:7;46479:14;:23::i;:::-;46463:39;;46527:5;-1:-1:-1;;;;;46521:11:0;:2;-1:-1:-1;;;;;46521:11:0;;46513:57;;;;-1:-1:-1;;;46513:57:0;;7735:2:1;46513:57:0;;;7717:21:1;7774:2;7754:18;;;7747:30;7813:34;7793:18;;;7786:62;-1:-1:-1;;;7864:18:1;;;7857:31;7905:19;;46513:57:0;;;;;;;;;20750:10;-1:-1:-1;;;;;46605:21:0;;;;:62;;-1:-1:-1;46630:37:0;46647:5;20750:10;47333:164;:::i;46630:37::-;46583:173;;;;-1:-1:-1;;;46583:173:0;;8137:2:1;46583:173:0;;;8119:21:1;8176:2;8156:18;;;8149:30;8215:34;8195:18;;;8188:62;8286:31;8266:18;;;8259:59;8335:19;;46583:173:0;7935:425:1;46583:173:0;46769:21;46778:2;46782:7;46769:8;:21::i;:::-;46452:346;46382:416;;:::o;70774:612::-;70891:4;2600:42;3740:43;:47;3736:699;;4027:10;-1:-1:-1;;;;;4019:18:0;;;4015:85;;70916:41:::1;20750:10:::0;70935:12:::1;70949:7;70916:18;:41::i;:::-;70908:102;;;;-1:-1:-1::0;;;70908:102:0::1;;;;;;;:::i;:::-;71026:9;71021:319;-1:-1:-1::0;;;;;71041:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;71037:26;::::1;71021:319;;;-1:-1:-1::0;;;;;71089:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;71111:7;;71089:15;71105:1;;71089:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;71085:244:::1;;-1:-1:-1::0;;;;;71160:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;71176:22;;:26:::1;::::0;71201:1:::1;::::0;71176:26:::1;:::i;:::-;71160:43;;;;;;;;:::i;:::-;;;;;;;;;71139:9;:15;71149:4;-1:-1:-1::0;;;;;71139:15:0::1;-1:-1:-1::0;;;;;71139:15:0::1;;;;;;;;;;;;71155:1;71139:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;71222:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;71222:21:0;;;;;;;;;;;;-1:-1:-1;;;;;71262:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;71222:21:::1;71262:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;71308:5:::1;;71085:244;71065:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71021:319;;;;71350:28;71360:4;71366:2;71370:7;71350:9;:28::i;:::-;4078:7:::0;;4015:85;4160:67;;-1:-1:-1;;;4160:67:0;;4209:4;4160:67;;;9661:34:1;4216:10:0;9711:18:1;;;9704:43;2600:42:0;;4160:40;;9596:18:1;;4160:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4256:61:0;;-1:-1:-1;;;4256:61:0;;4305:4;4256:61;;;9661:34:1;-1:-1:-1;;;;;9731:15:1;;9711:18;;;9704:43;2600:42:0;;4256:40;;9596:18:1;;4256:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4114:310;;4378:30;;-1:-1:-1;;;4378:30:0;;4397:10;4378:30;;;1674:51:1;1647:18;;4378:30:0;1528:203:1;4114:310:0;70916:41:::1;20750:10:::0;70935:12:::1;20670:98:::0;70916:41:::1;70908:102;;;;-1:-1:-1::0;;;70908:102:0::1;;;;;;;:::i;:::-;71026:9;71021:319;-1:-1:-1::0;;;;;71041:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;71037:26;::::1;71021:319;;;-1:-1:-1::0;;;;;71089:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;71111:7;;71089:15;71105:1;;71089:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;71085:244:::1;;-1:-1:-1::0;;;;;71160:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;71176:22;;:26:::1;::::0;71201:1:::1;::::0;71176:26:::1;:::i;:::-;71160:43;;;;;;;;:::i;:::-;;;;;;;;;71139:9;:15;71149:4;-1:-1:-1::0;;;;;71139:15:0::1;-1:-1:-1::0;;;;;71139:15:0::1;;;;;;;;;;;;71155:1;71139:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;71222:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;71222:21:0;;;;;;;;;;;;-1:-1:-1;;;;;71262:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;71222:21:::1;71262:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;71308:5:::1;;71085:244;71065:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71021:319;;;;71350:28;71360:4;71366:2;71370:7;71350:9;:28::i;:::-;70774:612:::0;;;;:::o;69813:86::-;22005:13;:11;:13::i;:::-;69875:6:::1;:16:::0;;;::::1;;-1:-1:-1::0;;;69875:16:0::1;-1:-1:-1::0;;;;69875:16:0;;::::1;::::0;;;::::1;::::0;;69813:86::o;62385:256::-;62482:7;62518:23;62535:5;62518:16;:23::i;:::-;62510:5;:31;62502:87;;;;-1:-1:-1;;;62502:87:0;;10210:2:1;62502:87:0;;;10192:21:1;10249:2;10229:18;;;10222:30;10288:34;10268:18;;;10261:62;-1:-1:-1;;;10339:18:1;;;10332:41;10390:19;;62502:87:0;10008:407:1;62502:87:0;-1:-1:-1;;;;;;62607:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;62385:256::o;68325:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71394:514::-;71514:4;2600:42;3740:43;:47;3736:699;;4027:10;-1:-1:-1;;;;;4019:18:0;;;4015:85;;71537:9:::1;71532:319;-1:-1:-1::0;;;;;71552:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;71548:26;::::1;71532:319;;;-1:-1:-1::0;;;;;71600:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;71622:7;;71600:15;71616:1;;71600:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;71596:244:::1;;-1:-1:-1::0;;;;;71671:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;71687:22;;:26:::1;::::0;71712:1:::1;::::0;71687:26:::1;:::i;:::-;71671:43;;;;;;;;:::i;:::-;;;;;;;;;71650:9;:15;71660:4;-1:-1:-1::0;;;;;71650:15:0::1;-1:-1:-1::0;;;;;71650:15:0::1;;;;;;;;;;;;71666:1;71650:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;71733:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;71733:21:0;;;;;;;;;;;;-1:-1:-1;;;;;71773:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;71733:21:::1;71773:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;71819:5:::1;;71596:244;71576:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71532:319;;;;71861:39;71878:4;71884:2;71888:7;71861:39;;;;;;;;;;;::::0;:16:::1;:39::i;4015:85::-:0;4160:67;;-1:-1:-1;;;4160:67:0;;4209:4;4160:67;;;9661:34:1;4216:10:0;9711:18:1;;;9704:43;2600:42:0;;4160:40;;9596:18:1;;4160:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4256:61:0;;-1:-1:-1;;;4256:61:0;;4305:4;4256:61;;;9661:34:1;-1:-1:-1;;;;;9731:15:1;;9711:18;;;9704:43;2600:42:0;;4256:40;;9596:18:1;;4256:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4114:310;;4378:30;;-1:-1:-1;;;4378:30:0;;4397:10;4378:30;;;1674:51:1;1647:18;;4378:30:0;1528:203:1;4114:310:0;71537:9:::1;71532:319;-1:-1:-1::0;;;;;71552:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;71548:26;::::1;71532:319;;;-1:-1:-1::0;;;;;71600:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;71622:7;;71600:15;71616:1;;71600:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;71596:244:::1;;-1:-1:-1::0;;;;;71671:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;71687:22;;:26:::1;::::0;71712:1:::1;::::0;71687:26:::1;:::i;:::-;71671:43;;;;;;;;:::i;:::-;;;;;;;;;71650:9;:15;71660:4;-1:-1:-1::0;;;;;71650:15:0::1;-1:-1:-1::0;;;;;71650:15:0::1;;;;;;;;;;;;71666:1;71650:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;71733:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;71733:21:0;;;;;;;;;;;;-1:-1:-1;;;;;71773:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;71733:21:::1;71773:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;71819:5:::1;;71596:244;71576:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71532:319;;;;71861:39;71878:4;71884:2;71888:7;71861:39;;;;;;;;;;;::::0;:16:::1;:39::i;72688:140::-:0;72806:14;72812:7;72806:5;:14::i;:::-;72688:140;:::o;62907:233::-;62982:7;63018:30;62805:10;:17;;62717:113;63018:30;63010:5;:38;63002:95;;;;-1:-1:-1;;;63002:95:0;;10622:2:1;63002:95:0;;;10604:21:1;10661:2;10641:18;;;10634:30;10700:34;10680:18;;;10673:62;-1:-1:-1;;;10751:18:1;;;10744:42;10803:19;;63002:95:0;10420:408:1;63002:95:0;63115:10;63126:5;63115:17;;;;;;;;:::i;:::-;;;;;;;;;63108:24;;62907:233;;;:::o;45053:223::-;45125:7;49949:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49949:16:0;;45189:56;;;;-1:-1:-1;;;45189:56:0;;11035:2:1;45189:56:0;;;11017:21:1;11074:2;11054:18;;;11047:30;-1:-1:-1;;;11093:18:1;;;11086:54;11157:18;;45189:56:0;10833:348:1;44784:207:0;44856:7;-1:-1:-1;;;;;44884:19:0;;44876:73;;;;-1:-1:-1;;;44876:73:0;;11388:2:1;44876:73:0;;;11370:21:1;11427:2;11407:18;;;11400:30;11466:34;11446:18;;;11439:62;-1:-1:-1;;;11517:18:1;;;11510:39;11566:19;;44876:73:0;11186:405:1;44876:73:0;-1:-1:-1;;;;;;44967:16:0;;;;;:9;:16;;;;;;;44784:207::o;22767:103::-;22005:13;:11;:13::i;:::-;22832:30:::1;22859:1;22832:18;:30::i;:::-;22767:103::o:0;72570:110::-;-1:-1:-1;;;;;72657:15:0;;;;;;:9;:15;;;;;;;;;72650:22;;;;;;;;;;;;;;;;;72622:16;;72650:22;;;72657:15;72650:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72570:110;;;:::o;45512:104::-;45568:13;45601:7;45594:14;;;;;:::i;47107:155::-;47202:52;20750:10;47235:8;47245;47202:18;:52::i;:::-;47107:155;;:::o;70622:144::-;22005:13;:11;:13::i;:::-;70695:10:::1;:24:::0;;;70735:23:::1;::::0;2338:25:1;;;70735:23:0::1;::::0;2326:2:1;2311:18;70735:23:0::1;;;;;;;70622:144:::0;:::o;71916:646::-;72055:4;2600:42;3740:43;:47;3736:699;;4027:10;-1:-1:-1;;;;;4019:18:0;;;4015:85;;72081:41:::1;20750:10:::0;72100:12:::1;72114:7;72081:18;:41::i;:::-;72073:102;;;;-1:-1:-1::0;;;72073:102:0::1;;;;;;;:::i;:::-;72191:9;72186:319;-1:-1:-1::0;;;;;72206:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;72202:26;::::1;72186:319;;;-1:-1:-1::0;;;;;72254:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;72276:7;;72254:15;72270:1;;72254:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;72250:244:::1;;-1:-1:-1::0;;;;;72325:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;72341:22;;:26:::1;::::0;72366:1:::1;::::0;72341:26:::1;:::i;:::-;72325:43;;;;;;;;:::i;:::-;;;;;;;;;72304:9;:15;72314:4;-1:-1:-1::0;;;;;72304:15:0::1;-1:-1:-1::0;;;;;72304:15:0::1;;;;;;;;;;;;72320:1;72304:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;72387:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;72387:21:0;;;;;;;;;;;;-1:-1:-1;;;;;72427:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;72387:21:::1;72427:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;72473:5:::1;;72250:244;72230:3:::0;::::1;::::0;::::1;:::i;:::-;;;;72186:319;;;;72515:39;72529:4;72535:2;72539:7;72548:5;72515:13;:39::i;:::-;4078:7:::0;;4015:85;4160:67;;-1:-1:-1;;;4160:67:0;;4209:4;4160:67;;;9661:34:1;4216:10:0;9711:18:1;;;9704:43;2600:42:0;;4160:40;;9596:18:1;;4160:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4256:61:0;;-1:-1:-1;;;4256:61:0;;4305:4;4256:61;;;9661:34:1;-1:-1:-1;;;;;9731:15:1;;9711:18;;;9704:43;2600:42:0;;4256:40;;9596:18:1;;4256:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4114:310;;4378:30;;-1:-1:-1;;;4378:30:0;;4397:10;4378:30;;;1674:51:1;1647:18;;4378:30:0;1528:203:1;4114:310:0;72081:41:::1;20750:10:::0;72100:12:::1;20670:98:::0;72081:41:::1;72073:102;;;;-1:-1:-1::0;;;72073:102:0::1;;;;;;;:::i;:::-;72191:9;72186:319;-1:-1:-1::0;;;;;72206:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;72202:26;::::1;72186:319;;;-1:-1:-1::0;;;;;72254:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;72276:7;;72254:15;72270:1;;72254:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;72250:244:::1;;-1:-1:-1::0;;;;;72325:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;72341:22;;:26:::1;::::0;72366:1:::1;::::0;72341:26:::1;:::i;:::-;72325:43;;;;;;;;:::i;:::-;;;;;;;;;72304:9;:15;72314:4;-1:-1:-1::0;;;;;72304:15:0::1;-1:-1:-1::0;;;;;72304:15:0::1;;;;;;;;;;;;72320:1;72304:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;72387:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;72387:21:0;;;;;;;;;;;;-1:-1:-1;;;;;72427:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;72387:21:::1;72427:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;72473:5:::1;;72250:244;72230:3:::0;::::1;::::0;::::1;:::i;:::-;;;;72186:319;;;;72515:39;72529:4;72535:2;72539:7;72548:5;72515:13;:39::i;:::-;71916:646:::0;;;;;:::o;73426:92::-;22005:13;:11;:13::i;:::-;73497;;::::1;::::0;:3:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;45687:290::-:0;45760:13;45786:23;45801:7;45786:14;:23::i;:::-;45822:21;45846:10;:8;:10::i;:::-;45822:34;;45898:1;45880:7;45874:21;:25;:95;;;;;;;;;;;;;;;;;45926:7;45935:18;:7;:16;:18::i;:::-;45909:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45874:95;45867:102;45687:290;-1:-1:-1;;;45687:290:0:o;69039:766::-;69127:6;;-1:-1:-1;;;69127:6:0;;;;:14;;69137:4;69127:14;69119:48;;;;-1:-1:-1;;;69119:48:0;;12858:2:1;69119:48:0;;;12840:21:1;12897:2;12877:18;;;12870:30;-1:-1:-1;;;12916:18:1;;;12909:51;12977:18;;69119:48:0;12656:345:1;69119:48:0;69186:10;;69199:1;69186:14;69178:50;;;;-1:-1:-1;;;69178:50:0;;13208:2:1;69178:50:0;;;13190:21:1;13247:2;13227:18;;;13220:30;13286:25;13266:18;;;13259:53;13329:18;;69178:50:0;13006:347:1;69178:50:0;69265:10;;69247:15;:28;69239:75;;;;-1:-1:-1;;;69239:75:0;;13560:2:1;69239:75:0;;;13542:21:1;13599:2;13579:18;;;13572:30;13638:34;13618:18;;;13611:62;-1:-1:-1;;;13689:18:1;;;13682:32;13731:19;;69239:75:0;13358:398:1;69239:75:0;69341:16;;69333:48;;-1:-1:-1;;;69333:48:0;;;;;2338:25:1;;;69385:10:0;;-1:-1:-1;;;;;69341:16:0;;69333:33;;2311:18:1;;69333:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;69333:62:0;;69325:118;;;;-1:-1:-1;;;69325:118:0;;14219:2:1;69325:118:0;;;14201:21:1;14258:2;14238:18;;;14231:30;14297:34;14277:18;;;14270:62;-1:-1:-1;;;14348:18:1;;;14341:41;14399:19;;69325:118:0;14017:407:1;69325:118:0;69470:17;;69462:50;;-1:-1:-1;;;69462:50:0;;;;;2338:25:1;;;69516:10:0;;-1:-1:-1;;;;;69470:17:0;;69462:34;;2311:18:1;;69462:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;69462:64:0;;69454:122;;;;-1:-1:-1;;;69454:122:0;;14631:2:1;69454:122:0;;;14613:21:1;14670:2;14650:18;;;14643:30;14709:34;14689:18;;;14682:62;-1:-1:-1;;;14760:18:1;;;14753:43;14813:19;;69454:122:0;14429:409:1;69454:122:0;69599:16;;69587:49;;-1:-1:-1;;;69587:49:0;;;;;2338:25:1;;;-1:-1:-1;;;;;69599:16:0;;;;69587:34;;2311:18:1;;69587:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;69659:17:0;;69647:51;;-1:-1:-1;;;69647:51:0;;;;;2338:25:1;;;-1:-1:-1;;;;;69659:17:0;;;;-1:-1:-1;69647:35:0;;-1:-1:-1;2311:18:1;;69647:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;69719:10:0;69709:21;;;;:9;:21;;;;;;;:41;;;;;;;;;;;;;;;;69761:36;;-1:-1:-1;69719:10:0;-1:-1:-1;69736:13:0;69761:9;:36::i;70081:392::-;22005:13;:11;:13::i;:::-;-1:-1:-1;;;;;70197:28:0;::::1;70189:86;;;::::0;-1:-1:-1;;;70189:86:0;;15045:2:1;70189:86:0::1;::::0;::::1;15027:21:1::0;15084:2;15064:18;;;15057:30;15123:34;15103:18;;;15096:62;-1:-1:-1;;;15174:18:1;;;15167:43;15227:19;;70189:86:0::1;14843:409:1::0;70189:86:0::1;-1:-1:-1::0;;;;;70294:29:0;::::1;70286:89;;;::::0;-1:-1:-1;;;70286:89:0;;15459:2:1;70286:89:0::1;::::0;::::1;15441:21:1::0;15498:2;15478:18;;;15471:30;15537:34;15517:18;;;15510:62;-1:-1:-1;;;15588:18:1;;;15581:45;15643:19;;70286:89:0::1;15257:411:1::0;70286:89:0::1;70386:16;:33:::0;;-1:-1:-1;;;;;70386:33:0;;::::1;-1:-1:-1::0;;;;;;70386:33:0;;::::1;;::::0;;;70430:17:::1;:35:::0;;;;;::::1;::::0;::::1;;::::0;;70081:392::o;23025:201::-;22005:13;:11;:13::i;:::-;-1:-1:-1;;;;;23114:22:0;::::1;23106:73;;;::::0;-1:-1:-1;;;23106:73:0;;15875:2:1;23106:73:0::1;::::0;::::1;15857:21:1::0;15914:2;15894:18;;;15887:30;15953:34;15933:18;;;15926:62;-1:-1:-1;;;16004:18:1;;;15997:36;16050:19;;23106:73:0::1;15673:402:1::0;23106:73:0::1;23190:28;23209:8;23190:18;:28::i;62077:224::-:0;62179:4;-1:-1:-1;;;;;;62203:50:0;;-1:-1:-1;;;62203:50:0;;:90;;;62257:36;62281:11;62257:23;:36::i;56683:135::-;50351:4;49949:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49949:16:0;56757:53;;;;-1:-1:-1;;;56757:53:0;;11035:2:1;56757:53:0;;;11017:21:1;11074:2;11054:18;;;11047:30;-1:-1:-1;;;11093:18:1;;;11086:54;11157:18;;56757:53:0;10833:348:1;55962:174:0;56037:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;56037:29:0;-1:-1:-1;;;;;56037:29:0;;;;;;;;:24;;56091:23;56037:24;56091:14;:23::i;:::-;-1:-1:-1;;;;;56082:46:0;;;;;;;;;;;55962:174;;:::o;50581:264::-;50674:4;50691:13;50707:23;50722:7;50707:14;:23::i;:::-;50691:39;;50760:5;-1:-1:-1;;;;;50749:16:0;:7;-1:-1:-1;;;;;50749:16:0;;:52;;;-1:-1:-1;;;;;;47454:25:0;;;47430:4;47454:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;50769:32;50749:87;;;;50829:7;-1:-1:-1;;;;;50805:31:0;:20;50817:7;50805:11;:20::i;:::-;-1:-1:-1;;;;;50805:31:0;;50749:87;50741:96;50581:264;-1:-1:-1;;;;50581:264:0:o;54580:1263::-;54739:4;-1:-1:-1;;;;;54712:31:0;:23;54727:7;54712:14;:23::i;:::-;-1:-1:-1;;;;;54712:31:0;;54704:81;;;;-1:-1:-1;;;54704:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54804:16:0;;54796:65;;;;-1:-1:-1;;;54796:65:0;;16688:2:1;54796:65:0;;;16670:21:1;16727:2;16707:18;;;16700:30;16766:34;16746:18;;;16739:62;-1:-1:-1;;;16817:18:1;;;16810:34;16861:19;;54796:65:0;16486:400:1;54796:65:0;54874:42;54895:4;54901:2;54905:7;54914:1;54874:20;:42::i;:::-;55046:4;-1:-1:-1;;;;;55019:31:0;:23;55034:7;55019:14;:23::i;:::-;-1:-1:-1;;;;;55019:31:0;;55011:81;;;;-1:-1:-1;;;55011:81:0;;;;;;;:::i;:::-;55164:24;;;;:15;:24;;;;;;;;55157:31;;-1:-1:-1;;;;;;55157:31:0;;;;;;-1:-1:-1;;;;;55640:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;55640:20:0;;;55675:13;;;;;;;;;:18;;55157:31;55675:18;;;55715:16;;;:7;:16;;;;;;:21;;;;;;;;;;55754:27;;55180:7;;55754:27;;;46452:346;46382:416;;:::o;22284:132::-;22192:6;;-1:-1:-1;;;;;22192:6:0;20750:10;22348:23;22340:68;;;;-1:-1:-1;;;22340:68:0;;17093:2:1;22340:68:0;;;17075:21:1;;;17112:18;;;17105:30;17171:34;17151:18;;;17144:62;17223:18;;22340:68:0;16891:356:1;72836:582:0;72914:42;20750:10;72947:8;72914:18;:42::i;:::-;72906:101;;;;-1:-1:-1;;;72906:101:0;;17454:2:1;72906:101:0;;;17436:21:1;17493:2;17473:18;;;17466:30;17532:34;17512:18;;;17505:62;-1:-1:-1;;;17583:18:1;;;17576:44;17637:19;;72906:101:0;17252:410:1;72906:101:0;73018:18;73039:17;73047:8;73039:7;:17::i;:::-;73018:38;;73074:9;73069:310;-1:-1:-1;;;;;73089:21:0;;;;;;:9;:21;;;;;:28;73085:32;;73069:310;;;-1:-1:-1;;;;;73143:21:0;;;;;;:9;:21;;;;;:24;;73171:8;;73143:21;73165:1;;73143:24;;;;;;:::i;:::-;;;;;;;;;:36;73139:229;;-1:-1:-1;;;;;73227:21:0;;;;;;:9;:21;;;;;73249:28;;:32;;73280:1;;73249:32;:::i;:::-;73227:55;;;;;;;;:::i;:::-;;;;;;;;;73200:9;:21;73210:10;-1:-1:-1;;;;;73200:21:0;-1:-1:-1;;;;;73200:21:0;;;;;;;;;;;;73222:1;73200:24;;;;;;;;:::i;:::-;;;;;;;;;;;;:82;;;;-1:-1:-1;;;;;73301:21:0;;;;:9;:21;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;73347:5;;73139:229;73119:3;;;;:::i;:::-;;;;73069:310;;;;73389:21;73401:8;73389:11;:21::i;23386:191::-;23479:6;;;-1:-1:-1;;;;;23496:17:0;;;-1:-1:-1;;;;;;23496:17:0;;;;;;;23529:40;;23479:6;;;23496:17;23479:6;;23529:40;;23460:16;;23529:40;23449:128;23386:191;:::o;56279:315::-;56434:8;-1:-1:-1;;;;;56425:17:0;:5;-1:-1:-1;;;;;56425:17:0;;56417:55;;;;-1:-1:-1;;;56417:55:0;;17869:2:1;56417:55:0;;;17851:21:1;17908:2;17888:18;;;17881:30;17947:27;17927:18;;;17920:55;17992:18;;56417:55:0;17667:349:1;56417:55:0;-1:-1:-1;;;;;56483:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;56483:46:0;;;;;;;;;;56545:41;;540::1;;;56545::0;;513:18:1;56545:41:0;;;;;;;56279:315;;;:::o;49429:313::-;49585:28;49595:4;49601:2;49605:7;49585:9;:28::i;:::-;49632:47;49655:4;49661:2;49665:7;49674:4;49632:22;:47::i;:::-;49624:110;;;;-1:-1:-1;;;49624:110:0;;;;;;;:::i;73526:96::-;73578:13;73611:3;73604:10;;;;;:::i;18097:716::-;18153:13;18204:14;18221:17;18232:5;18221:10;:17::i;:::-;18241:1;18221:21;18204:38;;18257:20;18291:6;18280:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18280:18:0;-1:-1:-1;18257:41:0;-1:-1:-1;18422:28:0;;;18438:2;18422:28;18479:288;-1:-1:-1;;18511:5:0;-1:-1:-1;;;18648:2:0;18637:14;;18632:30;18511:5;18619:44;18709:2;18700:11;;;-1:-1:-1;18730:21:0;18479:288;18730:21;-1:-1:-1;18788:6:0;18097:716;-1:-1:-1;;;18097:716:0:o;51187:110::-;51263:26;51273:2;51277:7;51263:26;;;;;;;;;;;;:9;:26::i;44415:305::-;44517:4;-1:-1:-1;;;;;;44554:40:0;;-1:-1:-1;;;44554:40:0;;:105;;-1:-1:-1;;;;;;;44611:48:0;;-1:-1:-1;;;44611:48:0;44554:105;:158;;;-1:-1:-1;;;;;;;;;;35957:40:0;;;44676:36;35848:157;73629:234;73799:56;73826:4;73832:2;73836:7;73845:9;73799:26;:56::i;53460:783::-;53520:13;53536:23;53551:7;53536:14;:23::i;:::-;53520:39;;53572:51;53593:5;53608:1;53612:7;53621:1;53572:20;:51::i;:::-;53736:23;53751:7;53736:14;:23::i;:::-;53807:24;;;;:15;:24;;;;;;;;53800:31;;-1:-1:-1;;;;;;53800:31:0;;;;;;-1:-1:-1;;;;;54052:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;54052:21:0;;;54102:16;;;:7;:16;;;;;;54095:23;;;;;;;54136:36;53728:31;;-1:-1:-1;53823:7:0;;54136:36;;53807:24;;54136:36;47107:155;;:::o;57382:853::-;57536:4;-1:-1:-1;;;;;57557:13:0;;25112:19;:23;57553:675;;57593:71;;-1:-1:-1;;;57593:71:0;;-1:-1:-1;;;;;57593:36:0;;;;;:71;;20750:10;;57644:4;;57650:7;;57659:4;;57593:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57593:71:0;;;;;;;;-1:-1:-1;;57593:71:0;;;;;;;;;;;;:::i;:::-;;;57589:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57834:6;:13;57851:1;57834:18;57830:328;;57877:60;;-1:-1:-1;;;57877:60:0;;;;;;;:::i;57830:328::-;58108:6;58102:13;58093:6;58089:2;58085:15;58078:38;57589:584;-1:-1:-1;;;;;;57715:51:0;-1:-1:-1;;;57715:51:0;;-1:-1:-1;57708:58:0;;57553:675;-1:-1:-1;58212:4:0;57382:853;;;;;;:::o;14963:922::-;15016:7;;-1:-1:-1;;;15094:15:0;;15090:102;;-1:-1:-1;;;15130:15:0;;;-1:-1:-1;15174:2:0;15164:12;15090:102;15219:6;15210:5;:15;15206:102;;15255:6;15246:15;;;-1:-1:-1;15290:2:0;15280:12;15206:102;15335:6;15326:5;:15;15322:102;;15371:6;15362:15;;;-1:-1:-1;15406:2:0;15396:12;15322:102;15451:5;15442;:14;15438:99;;15486:5;15477:14;;;-1:-1:-1;15520:1:0;15510:11;15438:99;15564:5;15555;:14;15551:99;;15599:5;15590:14;;;-1:-1:-1;15633:1:0;15623:11;15551:99;15677:5;15668;:14;15664:99;;15712:5;15703:14;;;-1:-1:-1;15746:1:0;15736:11;15664:99;15790:5;15781;:14;15777:66;;15826:1;15816:11;15871:6;14963:922;-1:-1:-1;;14963:922:0:o;51524:319::-;51653:18;51659:2;51663:7;51653:5;:18::i;:::-;51704:53;51735:1;51739:2;51743:7;51752:4;51704:22;:53::i;:::-;51682:153;;;;-1:-1:-1;;;51682:153:0;;;;;;;:::i;63214:915::-;63391:61;63418:4;63424:2;63428:12;63442:9;63391:26;:61::i;:::-;63481:1;63469:9;:13;63465:222;;;63612:63;;-1:-1:-1;;;63612:63:0;;19522:2:1;63612:63:0;;;19504:21:1;19561:2;19541:18;;;19534:30;19600:34;19580:18;;;19573:62;-1:-1:-1;;;19651:18:1;;;19644:51;19712:19;;63612:63:0;19320:417:1;63465:222:0;63717:12;-1:-1:-1;;;;;63746:18:0;;63742:187;;63781:40;63813:7;64956:10;:17;;64929:24;;;;:15;:24;;;;;:44;;;64984:24;;;;;;;;;;;;64852:164;63781:40;63742:187;;;63851:2;-1:-1:-1;;;;;63843:10:0;:4;-1:-1:-1;;;;;63843:10:0;;63839:90;;63870:47;63903:4;63909:7;63870:32;:47::i;:::-;-1:-1:-1;;;;;63943:16:0;;63939:183;;63976:45;64013:7;63976:36;:45::i;63939:183::-;64049:4;-1:-1:-1;;;;;64043:10:0;:2;-1:-1:-1;;;;;64043:10:0;;64039:83;;64070:40;64098:2;64102:7;64070:27;:40::i;52179:942::-;-1:-1:-1;;;;;52259:16:0;;52251:61;;;;-1:-1:-1;;;52251:61:0;;19944:2:1;52251:61:0;;;19926:21:1;;;19963:18;;;19956:30;20022:34;20002:18;;;19995:62;20074:18;;52251:61:0;19742:356:1;52251:61:0;50351:4;49949:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49949:16:0;50375:31;52323:58;;;;-1:-1:-1;;;52323:58:0;;20305:2:1;52323:58:0;;;20287:21:1;20344:2;20324:18;;;20317:30;20383;20363:18;;;20356:58;20431:18;;52323:58:0;20103:352:1;52323:58:0;52394:48;52423:1;52427:2;52431:7;52440:1;52394:20;:48::i;:::-;50351:4;49949:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49949:16:0;50375:31;52532:58;;;;-1:-1:-1;;;52532:58:0;;20305:2:1;52532:58:0;;;20287:21:1;20344:2;20324:18;;;20317:30;20383;20363:18;;;20356:58;20431:18;;52532:58:0;20103:352:1;52532:58:0;-1:-1:-1;;;;;52939:13:0;;;;;;:9;:13;;;;;;;;:18;;52956:1;52939:18;;;52981:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;52981:21:0;;;;;53020:33;52989:7;;52939:13;;53020:33;;52939:13;;53020:33;47107:155;;:::o;58967:410::-;59157:1;59145:9;:13;59141:229;;;-1:-1:-1;;;;;59179:18:0;;;59175:87;;-1:-1:-1;;;;;59218:15:0;;;;;;:9;:15;;;;;:28;;59237:9;;59218:15;:28;;59237:9;;59218:28;:::i;:::-;;;;-1:-1:-1;;59175:87:0;-1:-1:-1;;;;;59280:16:0;;;59276:83;;-1:-1:-1;;;;;59317:13:0;;;;;;:9;:13;;;;;:26;;59334:9;;59317:13;:26;;59334:9;;59317:26;:::i;:::-;;;;-1:-1:-1;;58967:410:0;;;;:::o;65643:988::-;65909:22;65959:1;65934:22;65951:4;65934:16;:22::i;:::-;:26;;;;:::i;:::-;65971:18;65992:26;;;:17;:26;;;;;;65909:51;;-1:-1:-1;66125:28:0;;;66121:328;;-1:-1:-1;;;;;66192:18:0;;66170:19;66192:18;;;:12;:18;;;;;;;;:34;;;;;;;;;66243:30;;;;;;:44;;;66360:30;;:17;:30;;;;;:43;;;66121:328;-1:-1:-1;66545:26:0;;;;:17;:26;;;;;;;;66538:33;;;-1:-1:-1;;;;;66589:18:0;;;;;:12;:18;;;;;:34;;;;;;;66582:41;65643:988::o;66926:1079::-;67204:10;:17;67179:22;;67204:21;;67224:1;;67204:21;:::i;:::-;67236:18;67257:24;;;:15;:24;;;;;;67630:10;:26;;67179:46;;-1:-1:-1;67257:24:0;;67179:46;;67630:26;;;;;;:::i;:::-;;;;;;;;;67608:48;;67694:11;67669:10;67680;67669:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;67774:28;;;:15;:28;;;;;;;:41;;;67946:24;;;;;67939:31;67981:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;66997:1008;;;66926:1079;:::o;64430:221::-;64515:14;64532:20;64549:2;64532:16;:20::i;:::-;-1:-1:-1;;;;;64563:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;64608:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;64430:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;2835:118::-;2921:5;2914:13;2907:21;2900:5;2897:32;2887:60;;2943:1;2940;2933:12;2958:241;3014:6;3067:2;3055:9;3046:7;3042:23;3038:32;3035:52;;;3083:1;3080;3073:12;3035:52;3122:9;3109:23;3141:28;3163:5;3141:28;:::i;3204:247::-;3263:6;3316:2;3304:9;3295:7;3291:23;3287:32;3284:52;;;3332:1;3329;3322:12;3284:52;3371:9;3358:23;3390:31;3415:5;3390:31;:::i;3456:632::-;3627:2;3679:21;;;3749:13;;3652:18;;;3771:22;;;3598:4;;3627:2;3850:15;;;;3824:2;3809:18;;;3598:4;3893:169;3907:6;3904:1;3901:13;3893:169;;;3968:13;;3956:26;;4037:15;;;;4002:12;;;;3929:1;3922:9;3893:169;;;-1:-1:-1;4079:3:1;;3456:632;-1:-1:-1;;;;;;3456:632:1:o;4093:382::-;4158:6;4166;4219:2;4207:9;4198:7;4194:23;4190:32;4187:52;;;4235:1;4232;4225:12;4187:52;4274:9;4261:23;4293:31;4318:5;4293:31;:::i;:::-;4343:5;-1:-1:-1;4400:2:1;4385:18;;4372:32;4413:30;4372:32;4413:30;:::i;:::-;4462:7;4452:17;;;4093:382;;;;;:::o;4480:127::-;4541:10;4536:3;4532:20;4529:1;4522:31;4572:4;4569:1;4562:15;4596:4;4593:1;4586:15;4612:631;4676:5;4706:18;4747:2;4739:6;4736:14;4733:40;;;4753:18;;:::i;:::-;4828:2;4822:9;4796:2;4882:15;;-1:-1:-1;;4878:24:1;;;4904:2;4874:33;4870:42;4858:55;;;4928:18;;;4948:22;;;4925:46;4922:72;;;4974:18;;:::i;:::-;5014:10;5010:2;5003:22;5043:6;5034:15;;5073:6;5065;5058:22;5113:3;5104:6;5099:3;5095:16;5092:25;5089:45;;;5130:1;5127;5120:12;5089:45;5180:6;5175:3;5168:4;5160:6;5156:17;5143:44;5235:1;5228:4;5219:6;5211;5207:19;5203:30;5196:41;;;;4612:631;;;;;:::o;5248:794::-;5343:6;5351;5359;5367;5420:3;5408:9;5399:7;5395:23;5391:33;5388:53;;;5437:1;5434;5427:12;5388:53;5476:9;5463:23;5495:31;5520:5;5495:31;:::i;:::-;5545:5;-1:-1:-1;5602:2:1;5587:18;;5574:32;5615:33;5574:32;5615:33;:::i;:::-;5667:7;-1:-1:-1;5721:2:1;5706:18;;5693:32;;-1:-1:-1;5776:2:1;5761:18;;5748:32;5803:18;5792:30;;5789:50;;;5835:1;5832;5825:12;5789:50;5858:22;;5911:4;5903:13;;5899:27;-1:-1:-1;5889:55:1;;5940:1;5937;5930:12;5889:55;5963:73;6028:7;6023:2;6010:16;6005:2;6001;5997:11;5963:73;:::i;:::-;5953:83;;;5248:794;;;;;;;:::o;6047:450::-;6116:6;6169:2;6157:9;6148:7;6144:23;6140:32;6137:52;;;6185:1;6182;6175:12;6137:52;6225:9;6212:23;6258:18;6250:6;6247:30;6244:50;;;6290:1;6287;6280:12;6244:50;6313:22;;6366:4;6358:13;;6354:27;-1:-1:-1;6344:55:1;;6395:1;6392;6385:12;6344:55;6418:73;6483:7;6478:2;6465:16;6460:2;6456;6452:11;6418:73;:::i;6502:248::-;6570:6;6578;6631:2;6619:9;6610:7;6606:23;6602:32;6599:52;;;6647:1;6644;6637:12;6599:52;-1:-1:-1;;6670:23:1;;;6740:2;6725:18;;;6712:32;;-1:-1:-1;6502:248:1:o;6755:388::-;6823:6;6831;6884:2;6872:9;6863:7;6859:23;6855:32;6852:52;;;6900:1;6897;6890:12;6852:52;6939:9;6926:23;6958:31;6983:5;6958:31;:::i;:::-;7008:5;-1:-1:-1;7065:2:1;7050:18;;7037:32;7078:33;7037:32;7078:33;:::i;7148:380::-;7227:1;7223:12;;;;7270;;;7291:61;;7345:4;7337:6;7333:17;7323:27;;7291:61;7398:2;7390:6;7387:14;7367:18;7364:38;7361:161;;7444:10;7439:3;7435:20;7432:1;7425:31;7479:4;7476:1;7469:15;7507:4;7504:1;7497:15;7361:161;;7148:380;;;:::o;8365:413::-;8567:2;8549:21;;;8606:2;8586:18;;;8579:30;8645:34;8640:2;8625:18;;8618:62;-1:-1:-1;;;8711:2:1;8696:18;;8689:47;8768:3;8753:19;;8365:413::o;8783:127::-;8844:10;8839:3;8835:20;8832:1;8825:31;8875:4;8872:1;8865:15;8899:4;8896:1;8889:15;8915:127;8976:10;8971:3;8967:20;8964:1;8957:31;9007:4;9004:1;8997:15;9031:4;9028:1;9021:15;9047:125;9087:4;9115:1;9112;9109:8;9106:34;;;9120:18;;:::i;:::-;-1:-1:-1;9157:9:1;;9047:125::o;9177:127::-;9238:10;9233:3;9229:20;9226:1;9219:31;9269:4;9266:1;9259:15;9293:4;9290:1;9283:15;9309:135;9348:3;9369:17;;;9366:43;;9389:18;;:::i;:::-;-1:-1:-1;9436:1:1;9425:13;;9309:135::o;9758:245::-;9825:6;9878:2;9866:9;9857:7;9853:23;9849:32;9846:52;;;9894:1;9891;9884:12;9846:52;9926:9;9920:16;9945:28;9967:5;9945:28;:::i;11596:413::-;11798:2;11780:21;;;11837:2;11817:18;;;11810:30;11876:34;11871:2;11856:18;;11849:62;-1:-1:-1;;;11942:2:1;11927:18;;11920:47;11999:3;11984:19;;11596:413::o;12014:637::-;12294:3;12332:6;12326:13;12348:53;12394:6;12389:3;12382:4;12374:6;12370:17;12348:53;:::i;:::-;12464:13;;12423:16;;;;12486:57;12464:13;12423:16;12520:4;12508:17;;12486:57;:::i;:::-;-1:-1:-1;;;12565:20:1;;12594:22;;;12643:1;12632:13;;12014:637;-1:-1:-1;;;;12014:637:1:o;13761:251::-;13831:6;13884:2;13872:9;13863:7;13859:23;13855:32;13852:52;;;13900:1;13897;13890:12;13852:52;13932:9;13926:16;13951:31;13976:5;13951:31;:::i;16080:401::-;16282:2;16264:21;;;16321:2;16301:18;;;16294:30;16360:34;16355:2;16340:18;;16333:62;-1:-1:-1;;;16426:2:1;16411:18;;16404:35;16471:3;16456:19;;16080:401::o;18021:414::-;18223:2;18205:21;;;18262:2;18242:18;;;18235:30;18301:34;18296:2;18281:18;;18274:62;-1:-1:-1;;;18367:2:1;18352:18;;18345:48;18425:3;18410:19;;18021:414::o;18572:489::-;-1:-1:-1;;;;;18841:15:1;;;18823:34;;18893:15;;18888:2;18873:18;;18866:43;18940:2;18925:18;;18918:34;;;18988:3;18983:2;18968:18;;18961:31;;;18766:4;;19009:46;;19035:19;;19027:6;19009:46;:::i;:::-;19001:54;18572:489;-1:-1:-1;;;;;;18572:489:1:o;19066:249::-;19135:6;19188:2;19176:9;19167:7;19163:23;19159:32;19156:52;;;19204:1;19201;19194:12;19156:52;19236:9;19230:16;19255:30;19279:5;19255:30;:::i;20460:128::-;20500:3;20531:1;20527:6;20524:1;20521:13;20518:39;;;20537:18;;:::i;:::-;-1:-1:-1;20573:9:1;;20460:128::o
Swarm Source
ipfs://3a4cfa08072c7835f7944a90ae8f692cfdae2ae3c5c1c38d65edb8a0a810ceab
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.