Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 4,992 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 10123402 | 27 hrs ago | IN | 0 ETH | 0.00000636 | ||||
Set Approval For... | 9915527 | 8 days ago | IN | 0 ETH | 0.00000675 | ||||
Set Approval For... | 9648574 | 17 days ago | IN | 0 ETH | 0.00000571 | ||||
Set Approval For... | 9648553 | 17 days ago | IN | 0 ETH | 0.00000544 | ||||
Set Approval For... | 9648274 | 17 days ago | IN | 0 ETH | 0.00000467 | ||||
Set Approval For... | 9485513 | 23 days ago | IN | 0 ETH | 0.00000416 | ||||
Set Approval For... | 9140115 | 35 days ago | IN | 0 ETH | 0.00000636 | ||||
Set Approval For... | 9139784 | 35 days ago | IN | 0 ETH | 0.00000518 | ||||
Set Approval For... | 9139762 | 35 days ago | IN | 0 ETH | 0.00000587 | ||||
Set Approval For... | 9129086 | 35 days ago | IN | 0 ETH | 0.00000217 | ||||
Set Approval For... | 8423461 | 59 days ago | IN | 0 ETH | 0.00000183 | ||||
Set Approval For... | 8423438 | 59 days ago | IN | 0 ETH | 0.00000153 | ||||
Set Approval For... | 8423435 | 59 days ago | IN | 0 ETH | 0.0000015 | ||||
Set Approval For... | 8423433 | 59 days ago | IN | 0 ETH | 0.0000015 | ||||
Set Approval For... | 8422970 | 59 days ago | IN | 0 ETH | 0.00000152 | ||||
Set Approval For... | 8422962 | 59 days ago | IN | 0 ETH | 0.00000176 | ||||
Set Approval For... | 8422931 | 59 days ago | IN | 0 ETH | 0.00000178 | ||||
Set Approval For... | 8421760 | 59 days ago | IN | 0 ETH | 0.00000152 | ||||
Set Approval For... | 8421758 | 59 days ago | IN | 0 ETH | 0.00000152 | ||||
Set Approval For... | 8421755 | 59 days ago | IN | 0 ETH | 0.00000152 | ||||
Set Approval For... | 7726134 | 82 days ago | IN | 0 ETH | 0.00000218 | ||||
Set Approval For... | 7578200 | 87 days ago | IN | 0 ETH | 0.00000353 | ||||
Set Approval For... | 7578197 | 87 days ago | IN | 0 ETH | 0.00000352 | ||||
Set Approval For... | 7528426 | 88 days ago | IN | 0 ETH | 0.00000651 | ||||
Set Approval For... | 7528403 | 88 days ago | IN | 0 ETH | 0.00000586 |
Loading...
Loading
Contract Name:
MakeArtNot
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at scrollscan.com on 2023-10-18 */ // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { require(proofPos == proofLen, "MerkleProof: invalid multiproof"); unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { require(proofPos == proofLen, "MerkleProof: invalid multiproof"); unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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`, * 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 be 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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * 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 payable; /** * @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 payable; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: launchpad/MakeArtNot.sol pragma solidity ^0.8.18; contract MakeArtNot is ERC721A, Ownable { // config constructor() ERC721A("Make Art, Not ...", "MAN") { _checkSupplyAndMint(MASTER_WALLET, MAX_MINT_PER_WALLET); } uint256 public MAX_SUPPLY = 8_888; uint256 public MAX_MINT_PER_WALLET = 2; uint256 public START_ID = 1; address private MASTER_WALLET = 0x6fF5723435b7dfC2371B57Fb5cB4c373E5995C78; bool public mintEnabled = false; bool public wlRound = false; bytes32 public merkleRoot; string public baseURI; // start token id function _startTokenId() internal view virtual override returns (uint256) { return START_ID; } // metadata function setBaseURI(string calldata _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { return string.concat(baseURI, Strings.toString(tokenId), ".json"); } // toggle sale, round function toggleSale() external onlyOwner { mintEnabled = !mintEnabled; } function toggleRound() external onlyOwner { wlRound = !wlRound; } // merkle tree function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function verifyAddress(bytes32[] calldata _merkleProof) private view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); return MerkleProof.verify(_merkleProof, merkleRoot, leaf); } // mint function mint(uint quantity, bytes32[] calldata _merkleProof) external { require(mintEnabled, "Sale is not enabled"); if (wlRound) require(verifyAddress(_merkleProof), "Invalid Proof"); require(_numberMinted(msg.sender) + quantity <= MAX_MINT_PER_WALLET, "Over wallet limit"); _checkSupplyAndMint(msg.sender, quantity); } function adminMint(uint quantity) external onlyOwner { _checkSupplyAndMint(msg.sender, quantity); } function _checkSupplyAndMint(address to, uint256 quantity) private { require(_totalMinted() + quantity <= MAX_SUPPLY, "Over supply"); _mint(to, quantity); } // aliases function numberMinted(address owner) external view returns (uint256) { return _numberMinted(owner); } function remainingSupply() external view returns (uint256) { return MAX_SUPPLY - _totalMinted(); } // transfer ownership function masterTransfer() external onlyOwner { transferOwnership(MASTER_WALLET); } // eth function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":"remainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","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":"toggleRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlRound","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526122b86009556002600a556001600b55736ff5723435b7dfc2371b57fb5cb4c373e5995c78600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f600c60146101000a81548160ff0219169083151502179055505f600c60156101000a81548160ff021916908315150217905550348015620000a8575f80fd5b506040518060400160405280601181526020017f4d616b65204172742c204e6f74202e2e2e0000000000000000000000000000008152506040518060400160405280600381526020017f4d414e00000000000000000000000000000000000000000000000000000000008152508160029081620001269190620007c6565b508060039081620001389190620007c6565b5062000149620001ab60201b60201c565b5f8190555050506200017062000164620001b460201b60201c565b620001bb60201b60201c565b620001a5600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a546200027e60201b60201c565b6200098f565b5f600b54905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6009548162000292620002f860201b60201c565b6200029e9190620008d7565b1115620002e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d9906200096f565b60405180910390fd5b620002f482826200031160201b60201c565b5050565b5f62000309620001ab60201b60201c565b5f5403905090565b5f805490505f820362000350576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003645f848385620004e660201b60201c565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550620003ee83620003d05f865f620004ec60201b60201c565b620003e1856200051b60201b60201c565b176200052a60201b60201c565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146200048a5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001810190506200044f565b505f8203620004c5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050620004e15f8483856200055460201b60201c565b505050565b50505050565b5f8060e883901c905060e86200050a8686846200055a60201b60201c565b62ffffff16901b9150509392505050565b5f6001821460e11b9050919050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f9392505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620005de57607f821691505b602082108103620005f457620005f362000599565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200061b565b6200066486836200061b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620006ae620006a8620006a2846200067c565b62000685565b6200067c565b9050919050565b5f819050919050565b620006c9836200068e565b620006e1620006d882620006b5565b84845462000627565b825550505050565b5f90565b620006f7620006e9565b62000704818484620006be565b505050565b5b818110156200072b576200071f5f82620006ed565b6001810190506200070a565b5050565b601f8211156200077a576200074481620005fa565b6200074f846200060c565b810160208510156200075f578190505b620007776200076e856200060c565b83018262000709565b50505b505050565b5f82821c905092915050565b5f6200079c5f19846008026200077f565b1980831691505092915050565b5f620007b683836200078b565b9150826002028217905092915050565b620007d18262000562565b67ffffffffffffffff811115620007ed57620007ec6200056c565b5b620007f98254620005c6565b620008068282856200072f565b5f60209050601f8311600181146200083c575f841562000827578287015190505b620008338582620007a9565b865550620008a2565b601f1984166200084c86620005fa565b5f5b8281101562000875578489015182556001820191506020850194506020810190506200084e565b8683101562000895578489015162000891601f8916826200078b565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620008e3826200067c565b9150620008f0836200067c565b92508282019050808211156200090b576200090a620008aa565b5b92915050565b5f82825260208201905092915050565b7f4f76657220737570706c790000000000000000000000000000000000000000005f82015250565b5f62000957600b8362000911565b9150620009648262000921565b602082019050919050565b5f6020820190508181035f830152620009888162000949565b9050919050565b612fdd806200099d5f395ff3fe6080604052600436106101f8575f3560e01c80638da5cb5b1161010c578063b940b0e41161009f578063d12397301161006e578063d123973014610672578063da0239a61461069c578063dc33e681146106c6578063e985e9c514610702578063f2fde38b1461073e576101f8565b8063b940b0e4146105d0578063ba41b0c6146105e6578063c1f261231461060e578063c87b56dd14610636576101f8565b8063aa39fbbe116100db578063aa39fbbe1461054a578063ad10b4b414610574578063b19960e61461058a578063b88d4fde146105b4576101f8565b80638da5cb5b146104a45780639430b965146104ce57806395d89b41146104f8578063a22cb46514610522576101f8565b80633ccfd60b1161018f5780636c0360eb1161015e5780636c0360eb146103ea57806370a0823114610414578063715018a6146104505780637cb64759146104665780637d8966e41461048e576101f8565b80633ccfd60b1461035457806342842e0e1461036a57806355f804b3146103865780636352211e146103ae576101f8565b806318160ddd116101cb57806318160ddd146102ba57806323b872dd146102e45780632eb4a7ab1461030057806332cb6b0c1461032a576101f8565b806301ffc9a7146101fc57806306fdde0314610238578063081812fc14610262578063095ea7b31461029e575b5f80fd5b348015610207575f80fd5b50610222600480360381019061021d9190611fc5565b610766565b60405161022f919061200a565b60405180910390f35b348015610243575f80fd5b5061024c6107f7565b60405161025991906120ad565b60405180910390f35b34801561026d575f80fd5b5061028860048036038101906102839190612100565b610887565b604051610295919061216a565b60405180910390f35b6102b860048036038101906102b391906121ad565b610901565b005b3480156102c5575f80fd5b506102ce610a40565b6040516102db91906121fa565b60405180910390f35b6102fe60048036038101906102f99190612213565b610a55565b005b34801561030b575f80fd5b50610314610d63565b604051610321919061227b565b60405180910390f35b348015610335575f80fd5b5061033e610d69565b60405161034b91906121fa565b60405180910390f35b34801561035f575f80fd5b50610368610d6f565b005b610384600480360381019061037f9190612213565b610dc2565b005b348015610391575f80fd5b506103ac60048036038101906103a791906122f5565b610de1565b005b3480156103b9575f80fd5b506103d460048036038101906103cf9190612100565b610dff565b6040516103e1919061216a565b60405180910390f35b3480156103f5575f80fd5b506103fe610e10565b60405161040b91906120ad565b60405180910390f35b34801561041f575f80fd5b5061043a60048036038101906104359190612340565b610e9c565b60405161044791906121fa565b60405180910390f35b34801561045b575f80fd5b50610464610f51565b005b348015610471575f80fd5b5061048c60048036038101906104879190612395565b610f64565b005b348015610499575f80fd5b506104a2610f76565b005b3480156104af575f80fd5b506104b8610faa565b6040516104c5919061216a565b60405180910390f35b3480156104d9575f80fd5b506104e2610fd2565b6040516104ef919061200a565b60405180910390f35b348015610503575f80fd5b5061050c610fe5565b60405161051991906120ad565b60405180910390f35b34801561052d575f80fd5b50610548600480360381019061054391906123ea565b611075565b005b348015610555575f80fd5b5061055e61117b565b60405161056b91906121fa565b60405180910390f35b34801561057f575f80fd5b50610588611181565b005b348015610595575f80fd5b5061059e6111b5565b6040516105ab91906121fa565b60405180910390f35b6105ce60048036038101906105c99190612550565b6111bb565b005b3480156105db575f80fd5b506105e461122d565b005b3480156105f1575f80fd5b5061060c60048036038101906106079190612625565b611261565b005b348015610619575f80fd5b50610634600480360381019061062f9190612100565b611376565b005b348015610641575f80fd5b5061065c60048036038101906106579190612100565b61138b565b60405161066991906120ad565b60405180910390f35b34801561067d575f80fd5b506106866113bf565b604051610693919061200a565b60405180910390f35b3480156106a7575f80fd5b506106b06113d2565b6040516106bd91906121fa565b60405180910390f35b3480156106d1575f80fd5b506106ec60048036038101906106e79190612340565b6113ed565b6040516106f991906121fa565b60405180910390f35b34801561070d575f80fd5b5061072860048036038101906107239190612682565b6113fe565b604051610735919061200a565b60405180910390f35b348015610749575f80fd5b50610764600480360381019061075f9190612340565b61148c565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610806906126ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610832906126ed565b801561087d5780601f106108545761010080835404028352916020019161087d565b820191905f5260205f20905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b5f6108918261150e565b6108c7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61090b82610dff565b90508073ffffffffffffffffffffffffffffffffffffffff1661092c611568565b73ffffffffffffffffffffffffffffffffffffffff161461098f5761095881610953611568565b6113fe565b61098e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a4961156f565b6001545f540303905090565b5f610a5f82611578565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610ad18461163b565b91509150610ae78187610ae2611568565b61165e565b610b3357610afc86610af7611568565b6113fe565b610b32576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b98576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ba586868660016116a1565b8015610baf575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610c7785610c538888876116a7565b7c0200000000000000000000000000000000000000000000000000000000176116ce565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610cf3575f6001850190505f60045f8381526020019081526020015f205403610cf1575f548114610cf0578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d5b86868660016116f8565b505050505050565b600d5481565b60095481565b610d776116fe565b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610dbe573d5f803e3d5ffd5b5050565b610ddc83838360405180602001604052805f8152506111bb565b505050565b610de96116fe565b8181600e9182610dfa9291906128c4565b505050565b5f610e0982611578565b9050919050565b600e8054610e1d906126ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610e49906126ed565b8015610e945780601f10610e6b57610100808354040283529160200191610e94565b820191905f5260205f20905b815481529060010190602001808311610e7757829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f02576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610f596116fe565b610f625f61177c565b565b610f6c6116fe565b80600d8190555050565b610f7e6116fe565b600c60149054906101000a900460ff1615600c60146101000a81548160ff021916908315150217905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60159054906101000a900460ff1681565b606060038054610ff4906126ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611020906126ed565b801561106b5780601f106110425761010080835404028352916020019161106b565b820191905f5260205f20905b81548152906001019060200180831161104e57829003601f168201915b5050505050905090565b8060075f611081611568565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661112a611568565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161116f919061200a565b60405180910390a35050565b600b5481565b6111896116fe565b600c60159054906101000a900460ff1615600c60156101000a81548160ff021916908315150217905550565b600a5481565b6111c6848484610a55565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611227576111f08484848461183f565b611226576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6112356116fe565b61125f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661148c565b565b600c60149054906101000a900460ff166112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a7906129db565b60405180910390fd5b600c60159054906101000a900460ff161561130f576112cf828261198a565b61130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590612a43565b60405180910390fd5b5b600a548361131c33611a0b565b6113269190612a8e565b1115611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90612b0b565b60405180910390fd5b6113713384611a5f565b505050565b61137e6116fe565b6113883382611a5f565b50565b6060600e61139883611ac4565b6040516020016113a9929190612c09565b6040516020818303038152906040529050919050565b600c60149054906101000a900460ff1681565b5f6113db611b8e565b6009546113e89190612c3b565b905090565b5f6113f782611a0b565b9050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6114946116fe565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990612cde565b60405180910390fd5b61150b8161177c565b50565b5f8161151861156f565b1115801561152657505f5482105b801561156157505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f600b54905090565b5f808290508061158661156f565b11611604575f54811015611603575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611601575b5f81036115f75760045f836001900393508381526020019081526020015f205490506115d0565b8092505050611636565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86116bd868684611b9f565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611706611ba7565b73ffffffffffffffffffffffffffffffffffffffff16611724610faa565b73ffffffffffffffffffffffffffffffffffffffff161461177a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177190612d46565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611864611568565b8786866040518563ffffffff1660e01b81526004016118869493929190612db6565b6020604051808303815f875af19250505080156118c157506040513d601f19601f820116820180604052508101906118be9190612e14565b60015b611937573d805f81146118ef576040519150601f19603f3d011682016040523d82523d5f602084013e6118f4565b606091505b505f81510361192f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f803360405160200161199d9190612e84565b604051602081830303815290604052805190602001209050611a028484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050600d5483611bae565b91505092915050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b60095481611a6b611b8e565b611a759190612a8e565b1115611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90612ee8565b60405180910390fd5b611ac08282611bc4565b5050565b60605f6001611ad284611d6d565b0190505f8167ffffffffffffffff811115611af057611aef61242c565b5b6040519080825280601f01601f191660200182016040528015611b225781602001600182028036833780820191505090505b5090505f82602001820190505b600115611b83578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b7857611b77612f06565b5b0494505f8503611b2f575b819350505050919050565b5f611b9761156f565b5f5403905090565b5f9392505050565b5f33905090565b5f82611bba8584611ebe565b1490509392505050565b5f805490505f8203611c02576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c0e5f8483856116a1565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611c8083611c715f865f6116a7565b611c7a85611f12565b176116ce565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611d1a5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611ce1565b505f8203611d54576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611d685f8483856116f8565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611dc9577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611dbf57611dbe612f06565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611e06576d04ee2d6d415b85acef81000000008381611dfc57611dfb612f06565b5b0492506020810190505b662386f26fc100008310611e3557662386f26fc100008381611e2b57611e2a612f06565b5b0492506010810190505b6305f5e1008310611e5e576305f5e1008381611e5457611e53612f06565b5b0492506008810190505b6127108310611e83576127108381611e7957611e78612f06565b5b0492506004810190505b60648310611ea65760648381611e9c57611e9b612f06565b5b0492506002810190505b600a8310611eb5576001810190505b80915050919050565b5f808290505f5b8451811015611f0757611ef282868381518110611ee557611ee4612f33565b5b6020026020010151611f21565b91508080611eff90612f60565b915050611ec5565b508091505092915050565b5f6001821460e11b9050919050565b5f818310611f3857611f338284611f4b565b611f43565b611f428383611f4b565b5b905092915050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611fa481611f70565b8114611fae575f80fd5b50565b5f81359050611fbf81611f9b565b92915050565b5f60208284031215611fda57611fd9611f68565b5b5f611fe784828501611fb1565b91505092915050565b5f8115159050919050565b61200481611ff0565b82525050565b5f60208201905061201d5f830184611ffb565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561205a57808201518184015260208101905061203f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61207f82612023565b612089818561202d565b935061209981856020860161203d565b6120a281612065565b840191505092915050565b5f6020820190508181035f8301526120c58184612075565b905092915050565b5f819050919050565b6120df816120cd565b81146120e9575f80fd5b50565b5f813590506120fa816120d6565b92915050565b5f6020828403121561211557612114611f68565b5b5f612122848285016120ec565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6121548261212b565b9050919050565b6121648161214a565b82525050565b5f60208201905061217d5f83018461215b565b92915050565b61218c8161214a565b8114612196575f80fd5b50565b5f813590506121a781612183565b92915050565b5f80604083850312156121c3576121c2611f68565b5b5f6121d085828601612199565b92505060206121e1858286016120ec565b9150509250929050565b6121f4816120cd565b82525050565b5f60208201905061220d5f8301846121eb565b92915050565b5f805f6060848603121561222a57612229611f68565b5b5f61223786828701612199565b935050602061224886828701612199565b9250506040612259868287016120ec565b9150509250925092565b5f819050919050565b61227581612263565b82525050565b5f60208201905061228e5f83018461226c565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126122b5576122b4612294565b5b8235905067ffffffffffffffff8111156122d2576122d1612298565b5b6020830191508360018202830111156122ee576122ed61229c565b5b9250929050565b5f806020838503121561230b5761230a611f68565b5b5f83013567ffffffffffffffff81111561232857612327611f6c565b5b612334858286016122a0565b92509250509250929050565b5f6020828403121561235557612354611f68565b5b5f61236284828501612199565b91505092915050565b61237481612263565b811461237e575f80fd5b50565b5f8135905061238f8161236b565b92915050565b5f602082840312156123aa576123a9611f68565b5b5f6123b784828501612381565b91505092915050565b6123c981611ff0565b81146123d3575f80fd5b50565b5f813590506123e4816123c0565b92915050565b5f8060408385031215612400576123ff611f68565b5b5f61240d85828601612199565b925050602061241e858286016123d6565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61246282612065565b810181811067ffffffffffffffff821117156124815761248061242c565b5b80604052505050565b5f612493611f5f565b905061249f8282612459565b919050565b5f67ffffffffffffffff8211156124be576124bd61242c565b5b6124c782612065565b9050602081019050919050565b828183375f83830152505050565b5f6124f46124ef846124a4565b61248a565b9050828152602081018484840111156125105761250f612428565b5b61251b8482856124d4565b509392505050565b5f82601f83011261253757612536612294565b5b81356125478482602086016124e2565b91505092915050565b5f805f806080858703121561256857612567611f68565b5b5f61257587828801612199565b945050602061258687828801612199565b9350506040612597878288016120ec565b925050606085013567ffffffffffffffff8111156125b8576125b7611f6c565b5b6125c487828801612523565b91505092959194509250565b5f8083601f8401126125e5576125e4612294565b5b8235905067ffffffffffffffff81111561260257612601612298565b5b60208301915083602082028301111561261e5761261d61229c565b5b9250929050565b5f805f6040848603121561263c5761263b611f68565b5b5f612649868287016120ec565b935050602084013567ffffffffffffffff81111561266a57612669611f6c565b5b612676868287016125d0565b92509250509250925092565b5f806040838503121561269857612697611f68565b5b5f6126a585828601612199565b92505060206126b685828601612199565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061270457607f821691505b602082108103612717576127166126c0565b5b50919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026127837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612748565b61278d8683612748565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6127c86127c36127be846120cd565b6127a5565b6120cd565b9050919050565b5f819050919050565b6127e1836127ae565b6127f56127ed826127cf565b848454612754565b825550505050565b5f90565b6128096127fd565b6128148184846127d8565b505050565b5b818110156128375761282c5f82612801565b60018101905061281a565b5050565b601f82111561287c5761284d81612727565b61285684612739565b81016020851015612865578190505b61287961287185612739565b830182612819565b50505b505050565b5f82821c905092915050565b5f61289c5f1984600802612881565b1980831691505092915050565b5f6128b4838361288d565b9150826002028217905092915050565b6128ce838361271d565b67ffffffffffffffff8111156128e7576128e661242c565b5b6128f182546126ed565b6128fc82828561283b565b5f601f831160018114612929575f8415612917578287013590505b61292185826128a9565b865550612988565b601f19841661293786612727565b5f5b8281101561295e57848901358255600182019150602085019450602081019050612939565b8683101561297b5784890135612977601f89168261288d565b8355505b6001600288020188555050505b50505050505050565b7f53616c65206973206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f6129c560138361202d565b91506129d082612991565b602082019050919050565b5f6020820190508181035f8301526129f2816129b9565b9050919050565b7f496e76616c69642050726f6f66000000000000000000000000000000000000005f82015250565b5f612a2d600d8361202d565b9150612a38826129f9565b602082019050919050565b5f6020820190508181035f830152612a5a81612a21565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612a98826120cd565b9150612aa3836120cd565b9250828201905080821115612abb57612aba612a61565b5b92915050565b7f4f7665722077616c6c6574206c696d69740000000000000000000000000000005f82015250565b5f612af560118361202d565b9150612b0082612ac1565b602082019050919050565b5f6020820190508181035f830152612b2281612ae9565b9050919050565b5f81905092915050565b5f8154612b3f816126ed565b612b498186612b29565b9450600182165f8114612b635760018114612b7857612baa565b60ff1983168652811515820286019350612baa565b612b8185612727565b5f5b83811015612ba257815481890152600182019150602081019050612b83565b838801955050505b50505092915050565b5f612bbd82612023565b612bc78185612b29565b9350612bd781856020860161203d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b5f612c148285612b33565b9150612c208284612bb3565b9150612c2b82612be3565b6005820191508190509392505050565b5f612c45826120cd565b9150612c50836120cd565b9250828203905081811115612c6857612c67612a61565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612cc860268361202d565b9150612cd382612c6e565b604082019050919050565b5f6020820190508181035f830152612cf581612cbc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612d3060208361202d565b9150612d3b82612cfc565b602082019050919050565b5f6020820190508181035f830152612d5d81612d24565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612d8882612d64565b612d928185612d6e565b9350612da281856020860161203d565b612dab81612065565b840191505092915050565b5f608082019050612dc95f83018761215b565b612dd6602083018661215b565b612de360408301856121eb565b8181036060830152612df58184612d7e565b905095945050505050565b5f81519050612e0e81611f9b565b92915050565b5f60208284031215612e2957612e28611f68565b5b5f612e3684828501612e00565b91505092915050565b5f8160601b9050919050565b5f612e5582612e3f565b9050919050565b5f612e6682612e4b565b9050919050565b612e7e612e798261214a565b612e5c565b82525050565b5f612e8f8284612e6d565b60148201915081905092915050565b7f4f76657220737570706c790000000000000000000000000000000000000000005f82015250565b5f612ed2600b8361202d565b9150612edd82612e9e565b602082019050919050565b5f6020820190508181035f830152612eff81612ec6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f612f6a826120cd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f9c57612f9b612a61565b5b60018201905091905056fea264697066735822122000ec7749dcc66a6ad232cbe12450779508c64cc2f071a3b498ffff69a2a2d36c64736f6c63430008150033
Deployed Bytecode
0x6080604052600436106101f8575f3560e01c80638da5cb5b1161010c578063b940b0e41161009f578063d12397301161006e578063d123973014610672578063da0239a61461069c578063dc33e681146106c6578063e985e9c514610702578063f2fde38b1461073e576101f8565b8063b940b0e4146105d0578063ba41b0c6146105e6578063c1f261231461060e578063c87b56dd14610636576101f8565b8063aa39fbbe116100db578063aa39fbbe1461054a578063ad10b4b414610574578063b19960e61461058a578063b88d4fde146105b4576101f8565b80638da5cb5b146104a45780639430b965146104ce57806395d89b41146104f8578063a22cb46514610522576101f8565b80633ccfd60b1161018f5780636c0360eb1161015e5780636c0360eb146103ea57806370a0823114610414578063715018a6146104505780637cb64759146104665780637d8966e41461048e576101f8565b80633ccfd60b1461035457806342842e0e1461036a57806355f804b3146103865780636352211e146103ae576101f8565b806318160ddd116101cb57806318160ddd146102ba57806323b872dd146102e45780632eb4a7ab1461030057806332cb6b0c1461032a576101f8565b806301ffc9a7146101fc57806306fdde0314610238578063081812fc14610262578063095ea7b31461029e575b5f80fd5b348015610207575f80fd5b50610222600480360381019061021d9190611fc5565b610766565b60405161022f919061200a565b60405180910390f35b348015610243575f80fd5b5061024c6107f7565b60405161025991906120ad565b60405180910390f35b34801561026d575f80fd5b5061028860048036038101906102839190612100565b610887565b604051610295919061216a565b60405180910390f35b6102b860048036038101906102b391906121ad565b610901565b005b3480156102c5575f80fd5b506102ce610a40565b6040516102db91906121fa565b60405180910390f35b6102fe60048036038101906102f99190612213565b610a55565b005b34801561030b575f80fd5b50610314610d63565b604051610321919061227b565b60405180910390f35b348015610335575f80fd5b5061033e610d69565b60405161034b91906121fa565b60405180910390f35b34801561035f575f80fd5b50610368610d6f565b005b610384600480360381019061037f9190612213565b610dc2565b005b348015610391575f80fd5b506103ac60048036038101906103a791906122f5565b610de1565b005b3480156103b9575f80fd5b506103d460048036038101906103cf9190612100565b610dff565b6040516103e1919061216a565b60405180910390f35b3480156103f5575f80fd5b506103fe610e10565b60405161040b91906120ad565b60405180910390f35b34801561041f575f80fd5b5061043a60048036038101906104359190612340565b610e9c565b60405161044791906121fa565b60405180910390f35b34801561045b575f80fd5b50610464610f51565b005b348015610471575f80fd5b5061048c60048036038101906104879190612395565b610f64565b005b348015610499575f80fd5b506104a2610f76565b005b3480156104af575f80fd5b506104b8610faa565b6040516104c5919061216a565b60405180910390f35b3480156104d9575f80fd5b506104e2610fd2565b6040516104ef919061200a565b60405180910390f35b348015610503575f80fd5b5061050c610fe5565b60405161051991906120ad565b60405180910390f35b34801561052d575f80fd5b50610548600480360381019061054391906123ea565b611075565b005b348015610555575f80fd5b5061055e61117b565b60405161056b91906121fa565b60405180910390f35b34801561057f575f80fd5b50610588611181565b005b348015610595575f80fd5b5061059e6111b5565b6040516105ab91906121fa565b60405180910390f35b6105ce60048036038101906105c99190612550565b6111bb565b005b3480156105db575f80fd5b506105e461122d565b005b3480156105f1575f80fd5b5061060c60048036038101906106079190612625565b611261565b005b348015610619575f80fd5b50610634600480360381019061062f9190612100565b611376565b005b348015610641575f80fd5b5061065c60048036038101906106579190612100565b61138b565b60405161066991906120ad565b60405180910390f35b34801561067d575f80fd5b506106866113bf565b604051610693919061200a565b60405180910390f35b3480156106a7575f80fd5b506106b06113d2565b6040516106bd91906121fa565b60405180910390f35b3480156106d1575f80fd5b506106ec60048036038101906106e79190612340565b6113ed565b6040516106f991906121fa565b60405180910390f35b34801561070d575f80fd5b5061072860048036038101906107239190612682565b6113fe565b604051610735919061200a565b60405180910390f35b348015610749575f80fd5b50610764600480360381019061075f9190612340565b61148c565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610806906126ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610832906126ed565b801561087d5780601f106108545761010080835404028352916020019161087d565b820191905f5260205f20905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b5f6108918261150e565b6108c7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61090b82610dff565b90508073ffffffffffffffffffffffffffffffffffffffff1661092c611568565b73ffffffffffffffffffffffffffffffffffffffff161461098f5761095881610953611568565b6113fe565b61098e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a4961156f565b6001545f540303905090565b5f610a5f82611578565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610ad18461163b565b91509150610ae78187610ae2611568565b61165e565b610b3357610afc86610af7611568565b6113fe565b610b32576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b98576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ba586868660016116a1565b8015610baf575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610c7785610c538888876116a7565b7c0200000000000000000000000000000000000000000000000000000000176116ce565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610cf3575f6001850190505f60045f8381526020019081526020015f205403610cf1575f548114610cf0578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d5b86868660016116f8565b505050505050565b600d5481565b60095481565b610d776116fe565b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610dbe573d5f803e3d5ffd5b5050565b610ddc83838360405180602001604052805f8152506111bb565b505050565b610de96116fe565b8181600e9182610dfa9291906128c4565b505050565b5f610e0982611578565b9050919050565b600e8054610e1d906126ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610e49906126ed565b8015610e945780601f10610e6b57610100808354040283529160200191610e94565b820191905f5260205f20905b815481529060010190602001808311610e7757829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f02576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610f596116fe565b610f625f61177c565b565b610f6c6116fe565b80600d8190555050565b610f7e6116fe565b600c60149054906101000a900460ff1615600c60146101000a81548160ff021916908315150217905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60159054906101000a900460ff1681565b606060038054610ff4906126ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611020906126ed565b801561106b5780601f106110425761010080835404028352916020019161106b565b820191905f5260205f20905b81548152906001019060200180831161104e57829003601f168201915b5050505050905090565b8060075f611081611568565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661112a611568565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161116f919061200a565b60405180910390a35050565b600b5481565b6111896116fe565b600c60159054906101000a900460ff1615600c60156101000a81548160ff021916908315150217905550565b600a5481565b6111c6848484610a55565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611227576111f08484848461183f565b611226576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6112356116fe565b61125f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661148c565b565b600c60149054906101000a900460ff166112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a7906129db565b60405180910390fd5b600c60159054906101000a900460ff161561130f576112cf828261198a565b61130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590612a43565b60405180910390fd5b5b600a548361131c33611a0b565b6113269190612a8e565b1115611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90612b0b565b60405180910390fd5b6113713384611a5f565b505050565b61137e6116fe565b6113883382611a5f565b50565b6060600e61139883611ac4565b6040516020016113a9929190612c09565b6040516020818303038152906040529050919050565b600c60149054906101000a900460ff1681565b5f6113db611b8e565b6009546113e89190612c3b565b905090565b5f6113f782611a0b565b9050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6114946116fe565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990612cde565b60405180910390fd5b61150b8161177c565b50565b5f8161151861156f565b1115801561152657505f5482105b801561156157505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f600b54905090565b5f808290508061158661156f565b11611604575f54811015611603575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611601575b5f81036115f75760045f836001900393508381526020019081526020015f205490506115d0565b8092505050611636565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86116bd868684611b9f565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611706611ba7565b73ffffffffffffffffffffffffffffffffffffffff16611724610faa565b73ffffffffffffffffffffffffffffffffffffffff161461177a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177190612d46565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611864611568565b8786866040518563ffffffff1660e01b81526004016118869493929190612db6565b6020604051808303815f875af19250505080156118c157506040513d601f19601f820116820180604052508101906118be9190612e14565b60015b611937573d805f81146118ef576040519150601f19603f3d011682016040523d82523d5f602084013e6118f4565b606091505b505f81510361192f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f803360405160200161199d9190612e84565b604051602081830303815290604052805190602001209050611a028484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050600d5483611bae565b91505092915050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b60095481611a6b611b8e565b611a759190612a8e565b1115611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90612ee8565b60405180910390fd5b611ac08282611bc4565b5050565b60605f6001611ad284611d6d565b0190505f8167ffffffffffffffff811115611af057611aef61242c565b5b6040519080825280601f01601f191660200182016040528015611b225781602001600182028036833780820191505090505b5090505f82602001820190505b600115611b83578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b7857611b77612f06565b5b0494505f8503611b2f575b819350505050919050565b5f611b9761156f565b5f5403905090565b5f9392505050565b5f33905090565b5f82611bba8584611ebe565b1490509392505050565b5f805490505f8203611c02576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c0e5f8483856116a1565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611c8083611c715f865f6116a7565b611c7a85611f12565b176116ce565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611d1a5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611ce1565b505f8203611d54576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611d685f8483856116f8565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611dc9577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611dbf57611dbe612f06565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611e06576d04ee2d6d415b85acef81000000008381611dfc57611dfb612f06565b5b0492506020810190505b662386f26fc100008310611e3557662386f26fc100008381611e2b57611e2a612f06565b5b0492506010810190505b6305f5e1008310611e5e576305f5e1008381611e5457611e53612f06565b5b0492506008810190505b6127108310611e83576127108381611e7957611e78612f06565b5b0492506004810190505b60648310611ea65760648381611e9c57611e9b612f06565b5b0492506002810190505b600a8310611eb5576001810190505b80915050919050565b5f808290505f5b8451811015611f0757611ef282868381518110611ee557611ee4612f33565b5b6020026020010151611f21565b91508080611eff90612f60565b915050611ec5565b508091505092915050565b5f6001821460e11b9050919050565b5f818310611f3857611f338284611f4b565b611f43565b611f428383611f4b565b5b905092915050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611fa481611f70565b8114611fae575f80fd5b50565b5f81359050611fbf81611f9b565b92915050565b5f60208284031215611fda57611fd9611f68565b5b5f611fe784828501611fb1565b91505092915050565b5f8115159050919050565b61200481611ff0565b82525050565b5f60208201905061201d5f830184611ffb565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561205a57808201518184015260208101905061203f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61207f82612023565b612089818561202d565b935061209981856020860161203d565b6120a281612065565b840191505092915050565b5f6020820190508181035f8301526120c58184612075565b905092915050565b5f819050919050565b6120df816120cd565b81146120e9575f80fd5b50565b5f813590506120fa816120d6565b92915050565b5f6020828403121561211557612114611f68565b5b5f612122848285016120ec565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6121548261212b565b9050919050565b6121648161214a565b82525050565b5f60208201905061217d5f83018461215b565b92915050565b61218c8161214a565b8114612196575f80fd5b50565b5f813590506121a781612183565b92915050565b5f80604083850312156121c3576121c2611f68565b5b5f6121d085828601612199565b92505060206121e1858286016120ec565b9150509250929050565b6121f4816120cd565b82525050565b5f60208201905061220d5f8301846121eb565b92915050565b5f805f6060848603121561222a57612229611f68565b5b5f61223786828701612199565b935050602061224886828701612199565b9250506040612259868287016120ec565b9150509250925092565b5f819050919050565b61227581612263565b82525050565b5f60208201905061228e5f83018461226c565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126122b5576122b4612294565b5b8235905067ffffffffffffffff8111156122d2576122d1612298565b5b6020830191508360018202830111156122ee576122ed61229c565b5b9250929050565b5f806020838503121561230b5761230a611f68565b5b5f83013567ffffffffffffffff81111561232857612327611f6c565b5b612334858286016122a0565b92509250509250929050565b5f6020828403121561235557612354611f68565b5b5f61236284828501612199565b91505092915050565b61237481612263565b811461237e575f80fd5b50565b5f8135905061238f8161236b565b92915050565b5f602082840312156123aa576123a9611f68565b5b5f6123b784828501612381565b91505092915050565b6123c981611ff0565b81146123d3575f80fd5b50565b5f813590506123e4816123c0565b92915050565b5f8060408385031215612400576123ff611f68565b5b5f61240d85828601612199565b925050602061241e858286016123d6565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61246282612065565b810181811067ffffffffffffffff821117156124815761248061242c565b5b80604052505050565b5f612493611f5f565b905061249f8282612459565b919050565b5f67ffffffffffffffff8211156124be576124bd61242c565b5b6124c782612065565b9050602081019050919050565b828183375f83830152505050565b5f6124f46124ef846124a4565b61248a565b9050828152602081018484840111156125105761250f612428565b5b61251b8482856124d4565b509392505050565b5f82601f83011261253757612536612294565b5b81356125478482602086016124e2565b91505092915050565b5f805f806080858703121561256857612567611f68565b5b5f61257587828801612199565b945050602061258687828801612199565b9350506040612597878288016120ec565b925050606085013567ffffffffffffffff8111156125b8576125b7611f6c565b5b6125c487828801612523565b91505092959194509250565b5f8083601f8401126125e5576125e4612294565b5b8235905067ffffffffffffffff81111561260257612601612298565b5b60208301915083602082028301111561261e5761261d61229c565b5b9250929050565b5f805f6040848603121561263c5761263b611f68565b5b5f612649868287016120ec565b935050602084013567ffffffffffffffff81111561266a57612669611f6c565b5b612676868287016125d0565b92509250509250925092565b5f806040838503121561269857612697611f68565b5b5f6126a585828601612199565b92505060206126b685828601612199565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061270457607f821691505b602082108103612717576127166126c0565b5b50919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026127837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612748565b61278d8683612748565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6127c86127c36127be846120cd565b6127a5565b6120cd565b9050919050565b5f819050919050565b6127e1836127ae565b6127f56127ed826127cf565b848454612754565b825550505050565b5f90565b6128096127fd565b6128148184846127d8565b505050565b5b818110156128375761282c5f82612801565b60018101905061281a565b5050565b601f82111561287c5761284d81612727565b61285684612739565b81016020851015612865578190505b61287961287185612739565b830182612819565b50505b505050565b5f82821c905092915050565b5f61289c5f1984600802612881565b1980831691505092915050565b5f6128b4838361288d565b9150826002028217905092915050565b6128ce838361271d565b67ffffffffffffffff8111156128e7576128e661242c565b5b6128f182546126ed565b6128fc82828561283b565b5f601f831160018114612929575f8415612917578287013590505b61292185826128a9565b865550612988565b601f19841661293786612727565b5f5b8281101561295e57848901358255600182019150602085019450602081019050612939565b8683101561297b5784890135612977601f89168261288d565b8355505b6001600288020188555050505b50505050505050565b7f53616c65206973206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f6129c560138361202d565b91506129d082612991565b602082019050919050565b5f6020820190508181035f8301526129f2816129b9565b9050919050565b7f496e76616c69642050726f6f66000000000000000000000000000000000000005f82015250565b5f612a2d600d8361202d565b9150612a38826129f9565b602082019050919050565b5f6020820190508181035f830152612a5a81612a21565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612a98826120cd565b9150612aa3836120cd565b9250828201905080821115612abb57612aba612a61565b5b92915050565b7f4f7665722077616c6c6574206c696d69740000000000000000000000000000005f82015250565b5f612af560118361202d565b9150612b0082612ac1565b602082019050919050565b5f6020820190508181035f830152612b2281612ae9565b9050919050565b5f81905092915050565b5f8154612b3f816126ed565b612b498186612b29565b9450600182165f8114612b635760018114612b7857612baa565b60ff1983168652811515820286019350612baa565b612b8185612727565b5f5b83811015612ba257815481890152600182019150602081019050612b83565b838801955050505b50505092915050565b5f612bbd82612023565b612bc78185612b29565b9350612bd781856020860161203d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b5f612c148285612b33565b9150612c208284612bb3565b9150612c2b82612be3565b6005820191508190509392505050565b5f612c45826120cd565b9150612c50836120cd565b9250828203905081811115612c6857612c67612a61565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612cc860268361202d565b9150612cd382612c6e565b604082019050919050565b5f6020820190508181035f830152612cf581612cbc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612d3060208361202d565b9150612d3b82612cfc565b602082019050919050565b5f6020820190508181035f830152612d5d81612d24565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612d8882612d64565b612d928185612d6e565b9350612da281856020860161203d565b612dab81612065565b840191505092915050565b5f608082019050612dc95f83018761215b565b612dd6602083018661215b565b612de360408301856121eb565b8181036060830152612df58184612d7e565b905095945050505050565b5f81519050612e0e81611f9b565b92915050565b5f60208284031215612e2957612e28611f68565b5b5f612e3684828501612e00565b91505092915050565b5f8160601b9050919050565b5f612e5582612e3f565b9050919050565b5f612e6682612e4b565b9050919050565b612e7e612e798261214a565b612e5c565b82525050565b5f612e8f8284612e6d565b60148201915081905092915050565b7f4f76657220737570706c790000000000000000000000000000000000000000005f82015250565b5f612ed2600b8361202d565b9150612edd82612e9e565b602082019050919050565b5f6020820190508181035f830152612eff81612ec6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f612f6a826120cd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f9c57612f9b612a61565b5b60018201905091905056fea264697066735822122000ec7749dcc66a6ad232cbe12450779508c64cc2f071a3b498ffff69a2a2d36c64736f6c63430008150033
Deployed Bytecode Sourcemap
82316:2798:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49210:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50112:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56603:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56036:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45863:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60242:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82784:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82510:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84966:143;;;;;;;;;;;;;:::i;:::-;;63163:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83002:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51505:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82816:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47047:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29989:103;;;;;;;;;;;;;:::i;:::-;;83522:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83323:86;;;;;;;;;;;;;:::i;:::-;;29341:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82750:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50288:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57161:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82595:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83415:79;;;;;;;;;;;;;:::i;:::-;;82550:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63954:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84850:96;;;;;;;;;;;;;:::i;:::-;;83880:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84258:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83116:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82712:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84703:112;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84582:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57552:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30247:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49210:639;49295:4;49634:10;49619:25;;:11;:25;;;;:102;;;;49711:10;49696:25;;:11;:25;;;;49619:102;:179;;;;49788:10;49773:25;;:11;:25;;;;49619:179;49599:199;;49210:639;;;:::o;50112:100::-;50166:13;50199:5;50192:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50112:100;:::o;56603:218::-;56679:7;56704:16;56712:7;56704;:16::i;:::-;56699:64;;56729:34;;;;;;;;;;;;;;56699:64;56783:15;:24;56799:7;56783:24;;;;;;;;;;;:30;;;;;;;;;;;;56776:37;;56603:218;;;:::o;56036:408::-;56125:13;56141:16;56149:7;56141;:16::i;:::-;56125:32;;56197:5;56174:28;;:19;:17;:19::i;:::-;:28;;;56170:175;;56222:44;56239:5;56246:19;:17;:19::i;:::-;56222:16;:44::i;:::-;56217:128;;56294:35;;;;;;;;;;;;;;56217:128;56170:175;56390:2;56357:15;:24;56373:7;56357:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;56428:7;56424:2;56408:28;;56417:5;56408:28;;;;;;;;;;;;56114:330;56036:408;;:::o;45863:323::-;45924:7;46152:15;:13;:15::i;:::-;46137:12;;46121:13;;:28;:46;46114:53;;45863:323;:::o;60242:2825::-;60384:27;60414;60433:7;60414:18;:27::i;:::-;60384:57;;60499:4;60458:45;;60474:19;60458:45;;;60454:86;;60512:28;;;;;;;;;;;;;;60454:86;60554:27;60583:23;60610:35;60637:7;60610:26;:35::i;:::-;60553:92;;;;60745:68;60770:15;60787:4;60793:19;:17;:19::i;:::-;60745:24;:68::i;:::-;60740:180;;60833:43;60850:4;60856:19;:17;:19::i;:::-;60833:16;:43::i;:::-;60828:92;;60885:35;;;;;;;;;;;;;;60828:92;60740:180;60951:1;60937:16;;:2;:16;;;60933:52;;60962:23;;;;;;;;;;;;;;60933:52;60998:43;61020:4;61026:2;61030:7;61039:1;60998:21;:43::i;:::-;61134:15;61131:160;;;61274:1;61253:19;61246:30;61131:160;61671:18;:24;61690:4;61671:24;;;;;;;;;;;;;;;;61669:26;;;;;;;;;;;;61740:18;:22;61759:2;61740:22;;;;;;;;;;;;;;;;61738:24;;;;;;;;;;;62062:146;62099:2;62148:45;62163:4;62169:2;62173:19;62148:14;:45::i;:::-;42262:8;62120:73;62062:18;:146::i;:::-;62033:17;:26;62051:7;62033:26;;;;;;;;;;;:175;;;;62379:1;42262:8;62328:19;:47;:52;62324:627;;62401:19;62433:1;62423:7;:11;62401:33;;62590:1;62556:17;:30;62574:11;62556:30;;;;;;;;;;;;:35;62552:384;;62694:13;;62679:11;:28;62675:242;;62874:19;62841:17;:30;62859:11;62841:30;;;;;;;;;;;:52;;;;62675:242;62552:384;62382:569;62324:627;62998:7;62994:2;62979:27;;62988:4;62979:27;;;;;;;;;;;;63017:42;63038:4;63044:2;63048:7;63057:1;63017:20;:42::i;:::-;60373:2694;;;60242:2825;;;:::o;82784:25::-;;;;:::o;82510:33::-;;;;:::o;84966:143::-;29227:13;:11;:13::i;:::-;85014:15:::1;85032:21;85014:39;;85072:10;85064:28;;:37;85093:7;85064:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;85003:106;84966:143::o:0;63163:193::-;63309:39;63326:4;63332:2;63336:7;63309:39;;;;;;;;;;;;:16;:39::i;:::-;63163:193;;;:::o;83002:108::-;29227:13;:11;:13::i;:::-;83091:11:::1;;83081:7;:21;;;;;;;:::i;:::-;;83002:108:::0;;:::o;51505:152::-;51577:7;51620:27;51639:7;51620:18;:27::i;:::-;51597:52;;51505:152;;;:::o;82816:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47047:233::-;47119:7;47160:1;47143:19;;:5;:19;;;47139:60;;47171:28;;;;;;;;;;;;;;47139:60;41206:13;47217:18;:25;47236:5;47217:25;;;;;;;;;;;;;;;;:55;47210:62;;47047:233;;;:::o;29989:103::-;29227:13;:11;:13::i;:::-;30054:30:::1;30081:1;30054:18;:30::i;:::-;29989:103::o:0;83522:106::-;29227:13;:11;:13::i;:::-;83609:11:::1;83596:10;:24;;;;83522:106:::0;:::o;83323:86::-;29227:13;:11;:13::i;:::-;83390:11:::1;;;;;;;;;;;83389:12;83375:11;;:26;;;;;;;;;;;;;;;;;;83323:86::o:0;29341:87::-;29387:7;29414:6;;;;;;;;;;;29407:13;;29341:87;:::o;82750:27::-;;;;;;;;;;;;;:::o;50288:104::-;50344:13;50377:7;50370:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50288:104;:::o;57161:234::-;57308:8;57256:18;:39;57275:19;:17;:19::i;:::-;57256:39;;;;;;;;;;;;;;;:49;57296:8;57256:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;57368:8;57332:55;;57347:19;:17;:19::i;:::-;57332:55;;;57378:8;57332:55;;;;;;:::i;:::-;;;;;;;;57161:234;;:::o;82595:27::-;;;;:::o;83415:79::-;29227:13;:11;:13::i;:::-;83479:7:::1;;;;;;;;;;;83478:8;83468:7;;:18;;;;;;;;;;;;;;;;;;83415:79::o:0;82550:38::-;;;;:::o;63954:407::-;64129:31;64142:4;64148:2;64152:7;64129:12;:31::i;:::-;64193:1;64175:2;:14;;;:19;64171:183;;64214:56;64245:4;64251:2;64255:7;64264:5;64214:30;:56::i;:::-;64209:145;;64298:40;;;;;;;;;;;;;;64209:145;64171:183;63954:407;;;;:::o;84850:96::-;29227:13;:11;:13::i;:::-;84906:32:::1;84924:13;;;;;;;;;;;84906:17;:32::i;:::-;84850:96::o:0;83880:372::-;83970:11;;;;;;;;;;;83962:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;84020:7;;;;;;;;;;;84016:66;;;84037:27;84051:12;;84037:13;:27::i;:::-;84029:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;84016:66;84141:19;;84129:8;84101:25;84115:10;84101:13;:25::i;:::-;:36;;;;:::i;:::-;:59;;84093:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;84203:41;84223:10;84235:8;84203:19;:41::i;:::-;83880:372;;;:::o;84258:113::-;29227:13;:11;:13::i;:::-;84322:41:::1;84342:10;84354:8;84322:19;:41::i;:::-;84258:113:::0;:::o;83116:172::-;83189:13;83236:7;83245:25;83262:7;83245:16;:25::i;:::-;83222:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;83215:65;;83116:172;;;:::o;82712:31::-;;;;;;;;;;;;;:::o;84703:112::-;84753:7;84793:14;:12;:14::i;:::-;84780:10;;:27;;;;:::i;:::-;84773:34;;84703:112;:::o;84582:115::-;84642:7;84669:20;84683:5;84669:13;:20::i;:::-;84662:27;;84582:115;;;:::o;57552:164::-;57649:4;57673:18;:25;57692:5;57673:25;;;;;;;;;;;;;;;:35;57699:8;57673:35;;;;;;;;;;;;;;;;;;;;;;;;;57666:42;;57552:164;;;;:::o;30247:201::-;29227:13;:11;:13::i;:::-;30356:1:::1;30336:22;;:8;:22;;::::0;30328:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30412:28;30431:8;30412:18;:28::i;:::-;30247:201:::0;:::o;57974:282::-;58039:4;58095:7;58076:15;:13;:15::i;:::-;:26;;:66;;;;;58129:13;;58119:7;:23;58076:66;:153;;;;;58228:1;41982:8;58180:17;:26;58198:7;58180:26;;;;;;;;;;;;:44;:49;58076:153;58056:173;;57974:282;;;:::o;80282:105::-;80342:7;80369:10;80362:17;;80282:105;:::o;82869:108::-;82934:7;82961:8;;82954:15;;82869:108;:::o;52660:1275::-;52727:7;52747:12;52762:7;52747:22;;52830:4;52811:15;:13;:15::i;:::-;:23;52807:1061;;52864:13;;52857:4;:20;52853:1015;;;52902:14;52919:17;:23;52937:4;52919:23;;;;;;;;;;;;52902:40;;53036:1;41982:8;53008:6;:24;:29;53004:845;;53673:113;53690:1;53680:6;:11;53673:113;;53733:17;:25;53751:6;;;;;;;53733:25;;;;;;;;;;;;53724:34;;53673:113;;;53819:6;53812:13;;;;;;53004:845;52879:989;52853:1015;52807:1061;53896:31;;;;;;;;;;;;;;52660:1275;;;;:::o;59137:485::-;59239:27;59268:23;59309:38;59350:15;:24;59366:7;59350:24;;;;;;;;;;;59309:65;;59527:18;59504:41;;59584:19;59578:26;59559:45;;59489:126;59137:485;;;:::o;58365:659::-;58514:11;58679:16;58672:5;58668:28;58659:37;;58839:16;58828:9;58824:32;58811:45;;58989:15;58978:9;58975:30;58967:5;58956:9;58953:20;58950:56;58940:66;;58365:659;;;;;:::o;65023:159::-;;;;;:::o;79591:311::-;79726:7;79746:16;42386:3;79772:19;:41;;79746:68;;42386:3;79840:31;79851:4;79857:2;79861:9;79840:10;:31::i;:::-;79832:40;;:62;;79825:69;;;79591:311;;;;;:::o;54483:450::-;54563:14;54731:16;54724:5;54720:28;54711:37;;54908:5;54894:11;54869:23;54865:41;54862:52;54855:5;54852:63;54842:73;;54483:450;;;;:::o;65847:158::-;;;;;:::o;29506:132::-;29581:12;:10;:12::i;:::-;29570:23;;:7;:5;:7::i;:::-;:23;;;29562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29506:132::o;30608:191::-;30682:16;30701:6;;;;;;;;;;;30682:25;;30727:8;30718:6;;:17;;;;;;;;;;;;;;;;;;30782:8;30751:40;;30772:8;30751:40;;;;;;;;;;;;30671:128;30608:191;:::o;66445:716::-;66608:4;66654:2;66629:45;;;66675:19;:17;:19::i;:::-;66696:4;66702:7;66711:5;66629:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;66625:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66929:1;66912:6;:13;:18;66908:235;;66958:40;;;;;;;;;;;;;;66908:235;67101:6;67095:13;67086:6;67082:2;67078:15;67071:38;66625:529;66798:54;;;66788:64;;;:6;:64;;;;66781:71;;;66445:716;;;;;;:::o;83634:225::-;83712:4;83729:12;83771:10;83754:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;83744:39;;;;;;83729:54;;83801:50;83820:12;;83801:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83834:10;;83846:4;83801:18;:50::i;:::-;83794:57;;;83634:225;;;;:::o;47362:178::-;47423:7;41206:13;41344:2;47451:18;:25;47470:5;47451:25;;;;;;;;;;;;;;;;:50;;47450:82;47443:89;;47362:178;;;:::o;84377:181::-;84492:10;;84480:8;84463:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;84455:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;84531:19;84537:2;84541:8;84531:5;:19::i;:::-;84377:181;;:::o;24811:716::-;24867:13;24918:14;24955:1;24935:17;24946:5;24935:10;:17::i;:::-;:21;24918:38;;24971:20;25005:6;24994:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24971:41;;25027:11;25156:6;25152:2;25148:15;25140:6;25136:28;25129:35;;25193:288;25200:4;25193:288;;;25225:5;;;;;;;;25367:8;25362:2;25355:5;25351:14;25346:30;25341:3;25333:44;25423:2;25414:11;;;;;;:::i;:::-;;;;;25457:1;25448:5;:10;25193:288;25444:21;25193:288;25502:6;25495:13;;;;;24811:716;;;:::o;46284:296::-;46339:7;46546:15;:13;:15::i;:::-;46530:13;;:31;46523:38;;46284:296;:::o;79292:147::-;79429:6;79292:147;;;;;:::o;27892:98::-;27945:7;27972:10;27965:17;;27892:98;:::o;1222:156::-;1313:4;1366;1337:25;1350:5;1357:4;1337:12;:25::i;:::-;:33;1330:40;;1222:156;;;;;:::o;67623:2966::-;67696:20;67719:13;;67696:36;;67759:1;67747:8;:13;67743:44;;67769:18;;;;;;;;;;;;;;67743:44;67800:61;67830:1;67834:2;67838:12;67852:8;67800:21;:61::i;:::-;68344:1;41344:2;68314:1;:26;;68313:32;68301:8;:45;68275:18;:22;68294:2;68275:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;68623:139;68660:2;68714:33;68737:1;68741:2;68745:1;68714:14;:33::i;:::-;68681:30;68702:8;68681:20;:30::i;:::-;:66;68623:18;:139::i;:::-;68589:17;:31;68607:12;68589:31;;;;;;;;;;;:173;;;;68779:16;68810:11;68839:8;68824:12;:23;68810:37;;69360:16;69356:2;69352:25;69340:37;;69732:12;69692:8;69651:1;69589:25;69530:1;69469;69442:335;70103:1;70089:12;70085:20;70043:346;70144:3;70135:7;70132:16;70043:346;;70362:7;70352:8;70349:1;70322:25;70319:1;70316;70311:59;70197:1;70188:7;70184:15;70173:26;;70043:346;;;70047:77;70434:1;70422:8;:13;70418:45;;70444:19;;;;;;;;;;;;;;70418:45;70496:3;70480:13;:19;;;;68049:2462;;70521:60;70550:1;70554:2;70558:12;70572:8;70521:20;:60::i;:::-;67685:2904;67623:2966;;:::o;21645:948::-;21698:7;21718:14;21735:1;21718:18;;21785:8;21776:5;:17;21772:106;;21823:8;21814:17;;;;;;:::i;:::-;;;;;21860:2;21850:12;;;;21772:106;21905:8;21896:5;:17;21892:106;;21943:8;21934:17;;;;;;:::i;:::-;;;;;21980:2;21970:12;;;;21892:106;22025:8;22016:5;:17;22012:106;;22063:8;22054:17;;;;;;:::i;:::-;;;;;22100:2;22090:12;;;;22012:106;22145:7;22136:5;:16;22132:103;;22182:7;22173:16;;;;;;:::i;:::-;;;;;22218:1;22208:11;;;;22132:103;22262:7;22253:5;:16;22249:103;;22299:7;22290:16;;;;;;:::i;:::-;;;;;22335:1;22325:11;;;;22249:103;22379:7;22370:5;:16;22366:103;;22416:7;22407:16;;;;;;:::i;:::-;;;;;22452:1;22442:11;;;;22366:103;22496:7;22487:5;:16;22483:68;;22534:1;22524:11;;;;22483:68;22579:6;22572:13;;;21645:948;;;:::o;2021:296::-;2104:7;2124:20;2147:4;2124:27;;2167:9;2162:118;2186:5;:12;2182:1;:16;2162:118;;;2235:33;2245:12;2259:5;2265:1;2259:8;;;;;;;;:::i;:::-;;;;;;;;2235:9;:33::i;:::-;2220:48;;2200:3;;;;;:::i;:::-;;;;2162:118;;;;2297:12;2290:19;;;2021:296;;;;:::o;55035:324::-;55105:14;55338:1;55328:8;55325:15;55299:24;55295:46;55285:56;;55035:324;;;:::o;9459:149::-;9522:7;9553:1;9549;:5;:51;;9580:20;9595:1;9598;9580:14;:20::i;:::-;9549:51;;;9557:20;9572:1;9575;9557:14;:20::i;:::-;9549:51;9542:58;;9459:149;;;;:::o;9616:268::-;9684:13;9791:1;9785:4;9778:15;9820:1;9814:4;9807:15;9861:4;9855;9845:21;9836:30;;9616:268;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:77::-;5904:7;5933:5;5922:16;;5867:77;;;:::o;5950:118::-;6037:24;6055:5;6037:24;:::i;:::-;6032:3;6025:37;5950:118;;:::o;6074:222::-;6167:4;6205:2;6194:9;6190:18;6182:26;;6218:71;6286:1;6275:9;6271:17;6262:6;6218:71;:::i;:::-;6074:222;;;;:::o;6302:117::-;6411:1;6408;6401:12;6425:117;6534:1;6531;6524:12;6548:117;6657:1;6654;6647:12;6685:553;6743:8;6753:6;6803:3;6796:4;6788:6;6784:17;6780:27;6770:122;;6811:79;;:::i;:::-;6770:122;6924:6;6911:20;6901:30;;6954:18;6946:6;6943:30;6940:117;;;6976:79;;:::i;:::-;6940:117;7090:4;7082:6;7078:17;7066:29;;7144:3;7136:4;7128:6;7124:17;7114:8;7110:32;7107:41;7104:128;;;7151:79;;:::i;:::-;7104:128;6685:553;;;;;:::o;7244:529::-;7315:6;7323;7372:2;7360:9;7351:7;7347:23;7343:32;7340:119;;;7378:79;;:::i;:::-;7340:119;7526:1;7515:9;7511:17;7498:31;7556:18;7548:6;7545:30;7542:117;;;7578:79;;:::i;:::-;7542:117;7691:65;7748:7;7739:6;7728:9;7724:22;7691:65;:::i;:::-;7673:83;;;;7469:297;7244:529;;;;;:::o;7779:329::-;7838:6;7887:2;7875:9;7866:7;7862:23;7858:32;7855:119;;;7893:79;;:::i;:::-;7855:119;8013:1;8038:53;8083:7;8074:6;8063:9;8059:22;8038:53;:::i;:::-;8028:63;;7984:117;7779:329;;;;:::o;8114:122::-;8187:24;8205:5;8187:24;:::i;:::-;8180:5;8177:35;8167:63;;8226:1;8223;8216:12;8167:63;8114:122;:::o;8242:139::-;8288:5;8326:6;8313:20;8304:29;;8342:33;8369:5;8342:33;:::i;:::-;8242:139;;;;:::o;8387:329::-;8446:6;8495:2;8483:9;8474:7;8470:23;8466:32;8463:119;;;8501:79;;:::i;:::-;8463:119;8621:1;8646:53;8691:7;8682:6;8671:9;8667:22;8646:53;:::i;:::-;8636:63;;8592:117;8387:329;;;;:::o;8722:116::-;8792:21;8807:5;8792:21;:::i;:::-;8785:5;8782:32;8772:60;;8828:1;8825;8818:12;8772:60;8722:116;:::o;8844:133::-;8887:5;8925:6;8912:20;8903:29;;8941:30;8965:5;8941:30;:::i;:::-;8844:133;;;;:::o;8983:468::-;9048:6;9056;9105:2;9093:9;9084:7;9080:23;9076:32;9073:119;;;9111:79;;:::i;:::-;9073:119;9231:1;9256:53;9301:7;9292:6;9281:9;9277:22;9256:53;:::i;:::-;9246:63;;9202:117;9358:2;9384:50;9426:7;9417:6;9406:9;9402:22;9384:50;:::i;:::-;9374:60;;9329:115;8983:468;;;;;:::o;9457:117::-;9566:1;9563;9556:12;9580:180;9628:77;9625:1;9618:88;9725:4;9722:1;9715:15;9749:4;9746:1;9739:15;9766:281;9849:27;9871:4;9849:27;:::i;:::-;9841:6;9837:40;9979:6;9967:10;9964:22;9943:18;9931:10;9928:34;9925:62;9922:88;;;9990:18;;:::i;:::-;9922:88;10030:10;10026:2;10019:22;9809:238;9766:281;;:::o;10053:129::-;10087:6;10114:20;;:::i;:::-;10104:30;;10143:33;10171:4;10163:6;10143:33;:::i;:::-;10053:129;;;:::o;10188:307::-;10249:4;10339:18;10331:6;10328:30;10325:56;;;10361:18;;:::i;:::-;10325:56;10399:29;10421:6;10399:29;:::i;:::-;10391:37;;10483:4;10477;10473:15;10465:23;;10188:307;;;:::o;10501:146::-;10598:6;10593:3;10588;10575:30;10639:1;10630:6;10625:3;10621:16;10614:27;10501:146;;;:::o;10653:423::-;10730:5;10755:65;10771:48;10812:6;10771:48;:::i;:::-;10755:65;:::i;:::-;10746:74;;10843:6;10836:5;10829:21;10881:4;10874:5;10870:16;10919:3;10910:6;10905:3;10901:16;10898:25;10895:112;;;10926:79;;:::i;:::-;10895:112;11016:54;11063:6;11058:3;11053;11016:54;:::i;:::-;10736:340;10653:423;;;;;:::o;11095:338::-;11150:5;11199:3;11192:4;11184:6;11180:17;11176:27;11166:122;;11207:79;;:::i;:::-;11166:122;11324:6;11311:20;11349:78;11423:3;11415:6;11408:4;11400:6;11396:17;11349:78;:::i;:::-;11340:87;;11156:277;11095:338;;;;:::o;11439:943::-;11534:6;11542;11550;11558;11607:3;11595:9;11586:7;11582:23;11578:33;11575:120;;;11614:79;;:::i;:::-;11575:120;11734:1;11759:53;11804:7;11795:6;11784:9;11780:22;11759:53;:::i;:::-;11749:63;;11705:117;11861:2;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11832:118;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;12145:2;12134:9;12130:18;12117:32;12176:18;12168:6;12165:30;12162:117;;;12198:79;;:::i;:::-;12162:117;12303:62;12357:7;12348:6;12337:9;12333:22;12303:62;:::i;:::-;12293:72;;12088:287;11439:943;;;;;;;:::o;12405:568::-;12478:8;12488:6;12538:3;12531:4;12523:6;12519:17;12515:27;12505:122;;12546:79;;:::i;:::-;12505:122;12659:6;12646:20;12636:30;;12689:18;12681:6;12678:30;12675:117;;;12711:79;;:::i;:::-;12675:117;12825:4;12817:6;12813:17;12801:29;;12879:3;12871:4;12863:6;12859:17;12849:8;12845:32;12842:41;12839:128;;;12886:79;;:::i;:::-;12839:128;12405:568;;;;;:::o;12979:704::-;13074:6;13082;13090;13139:2;13127:9;13118:7;13114:23;13110:32;13107:119;;;13145:79;;:::i;:::-;13107:119;13265:1;13290:53;13335:7;13326:6;13315:9;13311:22;13290:53;:::i;:::-;13280:63;;13236:117;13420:2;13409:9;13405:18;13392:32;13451:18;13443:6;13440:30;13437:117;;;13473:79;;:::i;:::-;13437:117;13586:80;13658:7;13649:6;13638:9;13634:22;13586:80;:::i;:::-;13568:98;;;;13363:313;12979:704;;;;;:::o;13689:474::-;13757:6;13765;13814:2;13802:9;13793:7;13789:23;13785:32;13782:119;;;13820:79;;:::i;:::-;13782:119;13940:1;13965:53;14010:7;14001:6;13990:9;13986:22;13965:53;:::i;:::-;13955:63;;13911:117;14067:2;14093:53;14138:7;14129:6;14118:9;14114:22;14093:53;:::i;:::-;14083:63;;14038:118;13689:474;;;;;:::o;14169:180::-;14217:77;14214:1;14207:88;14314:4;14311:1;14304:15;14338:4;14335:1;14328:15;14355:320;14399:6;14436:1;14430:4;14426:12;14416:22;;14483:1;14477:4;14473:12;14504:18;14494:81;;14560:4;14552:6;14548:17;14538:27;;14494:81;14622:2;14614:6;14611:14;14591:18;14588:38;14585:84;;14641:18;;:::i;:::-;14585:84;14406:269;14355:320;;;:::o;14681:97::-;14740:6;14768:3;14758:13;;14681:97;;;;:::o;14784:141::-;14833:4;14856:3;14848:11;;14879:3;14876:1;14869:14;14913:4;14910:1;14900:18;14892:26;;14784:141;;;:::o;14931:93::-;14968:6;15015:2;15010;15003:5;14999:14;14995:23;14985:33;;14931:93;;;:::o;15030:107::-;15074:8;15124:5;15118:4;15114:16;15093:37;;15030:107;;;;:::o;15143:393::-;15212:6;15262:1;15250:10;15246:18;15285:97;15315:66;15304:9;15285:97;:::i;:::-;15403:39;15433:8;15422:9;15403:39;:::i;:::-;15391:51;;15475:4;15471:9;15464:5;15460:21;15451:30;;15524:4;15514:8;15510:19;15503:5;15500:30;15490:40;;15219:317;;15143:393;;;;;:::o;15542:60::-;15570:3;15591:5;15584:12;;15542:60;;;:::o;15608:142::-;15658:9;15691:53;15709:34;15718:24;15736:5;15718:24;:::i;:::-;15709:34;:::i;:::-;15691:53;:::i;:::-;15678:66;;15608:142;;;:::o;15756:75::-;15799:3;15820:5;15813:12;;15756:75;;;:::o;15837:269::-;15947:39;15978:7;15947:39;:::i;:::-;16008:91;16057:41;16081:16;16057:41;:::i;:::-;16049:6;16042:4;16036:11;16008:91;:::i;:::-;16002:4;15995:105;15913:193;15837:269;;;:::o;16112:73::-;16157:3;16112:73;:::o;16191:189::-;16268:32;;:::i;:::-;16309:65;16367:6;16359;16353:4;16309:65;:::i;:::-;16244:136;16191:189;;:::o;16386:186::-;16446:120;16463:3;16456:5;16453:14;16446:120;;;16517:39;16554:1;16547:5;16517:39;:::i;:::-;16490:1;16483:5;16479:13;16470:22;;16446:120;;;16386:186;;:::o;16578:543::-;16679:2;16674:3;16671:11;16668:446;;;16713:38;16745:5;16713:38;:::i;:::-;16797:29;16815:10;16797:29;:::i;:::-;16787:8;16783:44;16980:2;16968:10;16965:18;16962:49;;;17001:8;16986:23;;16962:49;17024:80;17080:22;17098:3;17080:22;:::i;:::-;17070:8;17066:37;17053:11;17024:80;:::i;:::-;16683:431;;16668:446;16578:543;;;:::o;17127:117::-;17181:8;17231:5;17225:4;17221:16;17200:37;;17127:117;;;;:::o;17250:169::-;17294:6;17327:51;17375:1;17371:6;17363:5;17360:1;17356:13;17327:51;:::i;:::-;17323:56;17408:4;17402;17398:15;17388:25;;17301:118;17250:169;;;;:::o;17424:295::-;17500:4;17646:29;17671:3;17665:4;17646:29;:::i;:::-;17638:37;;17708:3;17705:1;17701:11;17695:4;17692:21;17684:29;;17424:295;;;;:::o;17724:1403::-;17848:44;17888:3;17883;17848:44;:::i;:::-;17957:18;17949:6;17946:30;17943:56;;;17979:18;;:::i;:::-;17943:56;18023:38;18055:4;18049:11;18023:38;:::i;:::-;18108:67;18168:6;18160;18154:4;18108:67;:::i;:::-;18202:1;18231:2;18223:6;18220:14;18248:1;18243:632;;;;18919:1;18936:6;18933:84;;;18992:9;18987:3;18983:19;18970:33;18961:42;;18933:84;19043:67;19103:6;19096:5;19043:67;:::i;:::-;19037:4;19030:81;18892:229;18213:908;;18243:632;18295:4;18291:9;18283:6;18279:22;18329:37;18361:4;18329:37;:::i;:::-;18388:1;18402:215;18416:7;18413:1;18410:14;18402:215;;;18502:9;18497:3;18493:19;18480:33;18472:6;18465:49;18553:1;18545:6;18541:14;18531:24;;18600:2;18589:9;18585:18;18572:31;;18439:4;18436:1;18432:12;18427:17;;18402:215;;;18645:6;18636:7;18633:19;18630:186;;;18710:9;18705:3;18701:19;18688:33;18753:48;18795:4;18787:6;18783:17;18772:9;18753:48;:::i;:::-;18745:6;18738:64;18653:163;18630:186;18862:1;18858;18850:6;18846:14;18842:22;18836:4;18829:36;18250:625;;;18213:908;;17823:1304;;;17724:1403;;;:::o;19133:169::-;19273:21;19269:1;19261:6;19257:14;19250:45;19133:169;:::o;19308:366::-;19450:3;19471:67;19535:2;19530:3;19471:67;:::i;:::-;19464:74;;19547:93;19636:3;19547:93;:::i;:::-;19665:2;19660:3;19656:12;19649:19;;19308:366;;;:::o;19680:419::-;19846:4;19884:2;19873:9;19869:18;19861:26;;19933:9;19927:4;19923:20;19919:1;19908:9;19904:17;19897:47;19961:131;20087:4;19961:131;:::i;:::-;19953:139;;19680:419;;;:::o;20105:163::-;20245:15;20241:1;20233:6;20229:14;20222:39;20105:163;:::o;20274:366::-;20416:3;20437:67;20501:2;20496:3;20437:67;:::i;:::-;20430:74;;20513:93;20602:3;20513:93;:::i;:::-;20631:2;20626:3;20622:12;20615:19;;20274:366;;;:::o;20646:419::-;20812:4;20850:2;20839:9;20835:18;20827:26;;20899:9;20893:4;20889:20;20885:1;20874:9;20870:17;20863:47;20927:131;21053:4;20927:131;:::i;:::-;20919:139;;20646:419;;;:::o;21071:180::-;21119:77;21116:1;21109:88;21216:4;21213:1;21206:15;21240:4;21237:1;21230:15;21257:191;21297:3;21316:20;21334:1;21316:20;:::i;:::-;21311:25;;21350:20;21368:1;21350:20;:::i;:::-;21345:25;;21393:1;21390;21386:9;21379:16;;21414:3;21411:1;21408:10;21405:36;;;21421:18;;:::i;:::-;21405:36;21257:191;;;;:::o;21454:167::-;21594:19;21590:1;21582:6;21578:14;21571:43;21454:167;:::o;21627:366::-;21769:3;21790:67;21854:2;21849:3;21790:67;:::i;:::-;21783:74;;21866:93;21955:3;21866:93;:::i;:::-;21984:2;21979:3;21975:12;21968:19;;21627:366;;;:::o;21999:419::-;22165:4;22203:2;22192:9;22188:18;22180:26;;22252:9;22246:4;22242:20;22238:1;22227:9;22223:17;22216:47;22280:131;22406:4;22280:131;:::i;:::-;22272:139;;21999:419;;;:::o;22424:148::-;22526:11;22563:3;22548:18;;22424:148;;;;:::o;22602:874::-;22705:3;22742:5;22736:12;22771:36;22797:9;22771:36;:::i;:::-;22823:89;22905:6;22900:3;22823:89;:::i;:::-;22816:96;;22943:1;22932:9;22928:17;22959:1;22954:166;;;;23134:1;23129:341;;;;22921:549;;22954:166;23038:4;23034:9;23023;23019:25;23014:3;23007:38;23100:6;23093:14;23086:22;23078:6;23074:35;23069:3;23065:45;23058:52;;22954:166;;23129:341;23196:38;23228:5;23196:38;:::i;:::-;23256:1;23270:154;23284:6;23281:1;23278:13;23270:154;;;23358:7;23352:14;23348:1;23343:3;23339:11;23332:35;23408:1;23399:7;23395:15;23384:26;;23306:4;23303:1;23299:12;23294:17;;23270:154;;;23453:6;23448:3;23444:16;23437:23;;23136:334;;22921:549;;22709:767;;22602:874;;;;:::o;23482:390::-;23588:3;23616:39;23649:5;23616:39;:::i;:::-;23671:89;23753:6;23748:3;23671:89;:::i;:::-;23664:96;;23769:65;23827:6;23822:3;23815:4;23808:5;23804:16;23769:65;:::i;:::-;23859:6;23854:3;23850:16;23843:23;;23592:280;23482:390;;;;:::o;23878:182::-;24046:7;24041:3;24034:20;23878:182;:::o;24066:693::-;24333:3;24355:92;24443:3;24434:6;24355:92;:::i;:::-;24348:99;;24464:95;24555:3;24546:6;24464:95;:::i;:::-;24457:102;;24569:137;24702:3;24569:137;:::i;:::-;24731:1;24726:3;24722:11;24715:18;;24750:3;24743:10;;24066:693;;;;;:::o;24765:194::-;24805:4;24825:20;24843:1;24825:20;:::i;:::-;24820:25;;24859:20;24877:1;24859:20;:::i;:::-;24854:25;;24903:1;24900;24896:9;24888:17;;24927:1;24921:4;24918:11;24915:37;;;24932:18;;:::i;:::-;24915:37;24765:194;;;;:::o;24965:225::-;25105:34;25101:1;25093:6;25089:14;25082:58;25174:8;25169:2;25161:6;25157:15;25150:33;24965:225;:::o;25196:366::-;25338:3;25359:67;25423:2;25418:3;25359:67;:::i;:::-;25352:74;;25435:93;25524:3;25435:93;:::i;:::-;25553:2;25548:3;25544:12;25537:19;;25196:366;;;:::o;25568:419::-;25734:4;25772:2;25761:9;25757:18;25749:26;;25821:9;25815:4;25811:20;25807:1;25796:9;25792:17;25785:47;25849:131;25975:4;25849:131;:::i;:::-;25841:139;;25568:419;;;:::o;25993:182::-;26133:34;26129:1;26121:6;26117:14;26110:58;25993:182;:::o;26181:366::-;26323:3;26344:67;26408:2;26403:3;26344:67;:::i;:::-;26337:74;;26420:93;26509:3;26420:93;:::i;:::-;26538:2;26533:3;26529:12;26522:19;;26181:366;;;:::o;26553:419::-;26719:4;26757:2;26746:9;26742:18;26734:26;;26806:9;26800:4;26796:20;26792:1;26781:9;26777:17;26770:47;26834:131;26960:4;26834:131;:::i;:::-;26826:139;;26553:419;;;:::o;26978:98::-;27029:6;27063:5;27057:12;27047:22;;26978:98;;;:::o;27082:168::-;27165:11;27199:6;27194:3;27187:19;27239:4;27234:3;27230:14;27215:29;;27082:168;;;;:::o;27256:373::-;27342:3;27370:38;27402:5;27370:38;:::i;:::-;27424:70;27487:6;27482:3;27424:70;:::i;:::-;27417:77;;27503:65;27561:6;27556:3;27549:4;27542:5;27538:16;27503:65;:::i;:::-;27593:29;27615:6;27593:29;:::i;:::-;27588:3;27584:39;27577:46;;27346:283;27256:373;;;;:::o;27635:640::-;27830:4;27868:3;27857:9;27853:19;27845:27;;27882:71;27950:1;27939:9;27935:17;27926:6;27882:71;:::i;:::-;27963:72;28031:2;28020:9;28016:18;28007:6;27963:72;:::i;:::-;28045;28113:2;28102:9;28098:18;28089:6;28045:72;:::i;:::-;28164:9;28158:4;28154:20;28149:2;28138:9;28134:18;28127:48;28192:76;28263:4;28254:6;28192:76;:::i;:::-;28184:84;;27635:640;;;;;;;:::o;28281:141::-;28337:5;28368:6;28362:13;28353:22;;28384:32;28410:5;28384:32;:::i;:::-;28281:141;;;;:::o;28428:349::-;28497:6;28546:2;28534:9;28525:7;28521:23;28517:32;28514:119;;;28552:79;;:::i;:::-;28514:119;28672:1;28697:63;28752:7;28743:6;28732:9;28728:22;28697:63;:::i;:::-;28687:73;;28643:127;28428:349;;;;:::o;28783:94::-;28816:8;28864:5;28860:2;28856:14;28835:35;;28783:94;;;:::o;28883:::-;28922:7;28951:20;28965:5;28951:20;:::i;:::-;28940:31;;28883:94;;;:::o;28983:100::-;29022:7;29051:26;29071:5;29051:26;:::i;:::-;29040:37;;28983:100;;;:::o;29089:157::-;29194:45;29214:24;29232:5;29214:24;:::i;:::-;29194:45;:::i;:::-;29189:3;29182:58;29089:157;;:::o;29252:256::-;29364:3;29379:75;29450:3;29441:6;29379:75;:::i;:::-;29479:2;29474:3;29470:12;29463:19;;29499:3;29492:10;;29252:256;;;;:::o;29514:161::-;29654:13;29650:1;29642:6;29638:14;29631:37;29514:161;:::o;29681:366::-;29823:3;29844:67;29908:2;29903:3;29844:67;:::i;:::-;29837:74;;29920:93;30009:3;29920:93;:::i;:::-;30038:2;30033:3;30029:12;30022:19;;29681:366;;;:::o;30053:419::-;30219:4;30257:2;30246:9;30242:18;30234:26;;30306:9;30300:4;30296:20;30292:1;30281:9;30277:17;30270:47;30334:131;30460:4;30334:131;:::i;:::-;30326:139;;30053:419;;;:::o;30478:180::-;30526:77;30523:1;30516:88;30623:4;30620:1;30613:15;30647:4;30644:1;30637:15;30664:180;30712:77;30709:1;30702:88;30809:4;30806:1;30799:15;30833:4;30830:1;30823:15;30850:233;30889:3;30912:24;30930:5;30912:24;:::i;:::-;30903:33;;30958:66;30951:5;30948:77;30945:103;;31028:18;;:::i;:::-;30945:103;31075:1;31068:5;31064:13;31057:20;;30850:233;;;:::o
Swarm Source
ipfs://00ec7749dcc66a6ad232cbe12450779508c64cc2f071a3b498ffff69a2a2d36c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 27 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.