ERC-721
Overview
Max Total Supply
3,768 JACKED
Holders
260
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 JACKEDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
JackedDegenerates
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-07 */ // SPDX-License-Identifier: MIT // JJJJJJJJJJJ AAA CCCCCCCCCCCCCKKKKKKKKK KKKKKKKEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDD // J:::::::::J A:::A CCC::::::::::::CK:::::::K K:::::KE::::::::::::::::::::ED::::::::::::DDD // J::::J::::J A:::::A CC:::::::::::::::CK:::::::K K:::::KE::::::::::::::::::::ED:::::::::::::::DD // JJ:::A:::JJ A:::::::A C:::::CCCCCCCC::::CK:::::::K K::::::KEE::::::EEEEEEEEE::::EDDD:::::DDDDD:::::D // J::C::J A:::::::::A C:::::C CCCCCCKK::::::K K:::::KKK E:::::E EEEEEE D:::::D D:::::D // J::K::J A:::::A:::::A C:::::C K:::::K K:::::K E:::::E D:::::D D:::::D // J::E::J A:::::A A:::::A C:::::C K::::::K:::::K E::::::EEEEEEEEEE D:::::D D:::::D // J::D::J A:::::A A:::::A C:::::C K:::::::::::K E:::::::::::::::E D:::::D D:::::D // J:::::J A:::::A A:::::A C:::::C K:::::::::::K E:::::::::::::::E D:::::D D:::::D // JJJJJJJ J:::::J A:::::AAAAAAAAA:::::A C:::::C K::::::K:::::K E::::::EEEEEEEEEE D:::::D D:::::D // J:::::J J:::::J A:::::::::::::::::::::AC:::::C K:::::K K:::::K E:::::E D:::::D D:::::D // J::::::J J::::::J A:::::AAAAAAAAAAAAA:::::AC:::::C CCCCCCKK::::::K K:::::KKK E:::::E EEEEEE D:::::D D:::::D // J:::::::JJJ:::::::JA:::::A _________ A:::::AC:::::CCCCCCCC::::CK:::::::K K::::::KEE::::::EEEEEEEE:::::EDDD:::::DDDDD:::::D // JJ:::::::::::::JJA:::::A _______ A:::::ACC:::::::::::::::CK:::::::K K:::::KE::::::::::::::::::::ED:::::::::::::::DD // JJ:::::::::JJ A:::::A ___ A:::::A CCC::::::::::::CK:::::::K K:::::KE::::::::::::::::::::ED::::::::::::DDD // JJJJJJJJJ AAAAAAA _ AAAAAAA CCCCCCCCCCCCCKKKKKKKKK KKKKKKKEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDD // DDDDDDDDDDDDD EEEEEEEEEEEEEEEEEEEEEE GGGGGGGGGGGGGEEEEEEEEEEEEEEEEEEEEEENNNNNNNN NNNNNNNN SSSSSSSSSSSSSSS // D::::::::::::DDD E::::::::::::::::::::E GGG::::::::::::GE::::::::::::::::::::EN:::::::N N::::::N SS:::::::::::::::S // D::::D::::::::::DD E::::::::::::::::::::E GG:::::::::::::::GE::::::::::::::::::::EN::::::::N N::::::N S:::::SSSSSS::::::S // DDD::E::DDDDD:::::DEE::::::EEEEEEEEE::::E G:::::GGGGGGGG::::GEE::::::EEEEEEEEE::::EN:::::::::N N::::::N S:::::S SSSSSSS // D::G::D D:::::D E:::::E EEEEEEG:::::G GGGGGG E:::::E EEEEEEN::::::::::N N::::::N S:::::S // D::E::D D:::::DE:::::E G:::::G E:::::E N:::::::::::N N::::::N S:::::S // D::N::D D:::::DE::::::EEEEEEEEEE G:::::G E::::::EEEEEEEEEE N:::::::N::::N N::::::N S::::SSSS // D::E::D D:::::DE:::::::::::::::E G:::::G GGGGGGGGGG E:::::::::::::::E N::::::N N::::N N::::::N SS::::::SSSSS // D::R::D D:::::DE:::::::::::::::E G:::::G G::::::::G E:::::::::::::::E N::::::N N::::N:::::::N SSS::::::::SS // D::A::D D:::::DE::::::EEEEEEEEEE G:::::G GGGGG::::G E::::::EEEEEEEEEE N::::::N N:::::::::::N SSSSSS::::S // D::T::D D:::::DE:::::E G:::::G G::::G E:::::E N::::::N N::::::::::N S:::::S // D::E::D D:::::D E:::::E EEEEEEG:::::G G::::G E:::::E EEEEEEN::::::N N:::::::::N S:::::S // DDD::S::DDDDD:::::DEE::::::EEEEEEEE:::::E G:::::GGGGGGGG::::GEE::::::EEEEEEEE:::::EN::::::N N::::::::N SSSSSSS S:::::S // D:::::::::::::::DD E::::::::::::::::::::E GG:::::::::::::::GE::::::::::::::::::::EN::::::N N:::::::N S::::::SSSSSS:::::S // D::::::::::::DDD E::::::::::::::::::::E GGG::::::GGG:::GE::::::::::::::::::::EN::::::N N::::::N S:::::::::::::::SS // DDDDDDDDDDDDD EEEEEEEEEEEEEEEEEEEEEE GGGGGG GGGGEEEEEEEEEEEEEEEEEEEEEENNNNNNNN NNNNNNN SSSSSSSSSSSSSSS // File: @openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { 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 = MathUpgradeable.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, MathUpgradeable.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } } // File: contracts/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: contracts/OperatorFilterer.sol pragma solidity ^0.8.13; contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator() virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { if (!operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } } // File: contracts/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: 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; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @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; /** * @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: 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 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 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 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: contracts/JackedDegenerates.sol pragma solidity >=0.8.9 <0.9.0; contract JackedDegenerates is ERC721A, Ownable, DefaultOperatorFilterer, ReentrancyGuard { using StringsUpgradeable for uint256; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; string public provenance; uint256 public cost = .0025 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmountPerTx = 10; bool public paused = true; bool public revealed = false; constructor( string memory _tokenName, string memory _tokenSymbol, string memory _hiddenMetadataUri ) ERC721A(_tokenName, _tokenSymbol) { setHiddenMetadataUri(_hiddenMetadataUri); } modifier mintCompliance(uint256 _mintAmount) { require( _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!" ); require( totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!" ); _; } modifier mintPriceCompliance(uint256 _mintAmount) { require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _; } modifier callerIsUser(){ require(tx.origin == msg.sender, "Jacked Degenerates cannot be called by a contract"); _; } function mint(uint256 _mintAmount) public payable callerIsUser() mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(!paused, "The contract is paused!"); _safeMint(_msgSender(), _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _tokenId.toString(), uriSuffix ) ) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setProvenance(string memory _provenance) public onlyOwner { provenance = _provenance; } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator { super.safeTransferFrom(from, to, tokenId, data); } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600a90805190602001906200002b92919062000553565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200007992919062000553565b506608e1bc9bf04000600e55612710600f55600a6010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000d357600080fd5b50604051620040af380380620040af8339818101604052810190620000f99190620007a0565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001848481600290805190602001906200012a92919062000553565b5080600390805190602001906200014392919062000553565b50620001546200039560201b60201c565b60008190555050506200017c620001706200039e60201b60201c565b620003a660201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200037157801562000237576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001fd9291906200089e565b600060405180830381600087803b1580156200021857600080fd5b505af11580156200022d573d6000803e3d6000fd5b5050505062000370565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002f1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002b79291906200089e565b600060405180830381600087803b158015620002d257600080fd5b505af1158015620002e7573d6000803e3d6000fd5b505050506200036f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200033a9190620008cb565b600060405180830381600087803b1580156200035557600080fd5b505af11580156200036a573d6000803e3d6000fd5b505050505b5b5b505060016009819055506200038c816200046c60201b60201c565b505050620009cf565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200047c6200049860201b60201c565b80600c90805190602001906200049492919062000553565b5050565b620004a86200039e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004ce6200052960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000527576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051e9062000949565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000561906200099a565b90600052602060002090601f016020900481019282620005855760008555620005d1565b82601f10620005a057805160ff1916838001178555620005d1565b82800160010185558215620005d1579182015b82811115620005d0578251825591602001919060010190620005b3565b5b509050620005e09190620005e4565b5090565b5b80821115620005ff576000816000905550600101620005e5565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200066c8262000621565b810181811067ffffffffffffffff821117156200068e576200068d62000632565b5b80604052505050565b6000620006a362000603565b9050620006b1828262000661565b919050565b600067ffffffffffffffff821115620006d457620006d362000632565b5b620006df8262000621565b9050602081019050919050565b60005b838110156200070c578082015181840152602081019050620006ef565b838111156200071c576000848401525b50505050565b6000620007396200073384620006b6565b62000697565b9050828152602081018484840111156200075857620007576200061c565b5b62000765848285620006ec565b509392505050565b600082601f83011262000785576200078462000617565b5b81516200079784826020860162000722565b91505092915050565b600080600060608486031215620007bc57620007bb6200060d565b5b600084015167ffffffffffffffff811115620007dd57620007dc62000612565b5b620007eb868287016200076d565b935050602084015167ffffffffffffffff8111156200080f576200080e62000612565b5b6200081d868287016200076d565b925050604084015167ffffffffffffffff81111562000841576200084062000612565b5b6200084f868287016200076d565b9150509250925092565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008868262000859565b9050919050565b620008988162000879565b82525050565b6000604082019050620008b560008301856200088d565b620008c460208301846200088d565b9392505050565b6000602082019050620008e260008301846200088d565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000931602083620008e8565b91506200093e82620008f9565b602082019050919050565b60006020820190508181036000830152620009648162000922565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009b357607f821691505b602082108103620009c957620009c86200096b565b5b50919050565b6136d080620009df6000396000f3fe6080604052600436106102045760003560e01c806362b99ad411610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610715578063e0a8085314610740578063e985e9c514610769578063f2fde38b146107a6578063ffe630b5146107cf57610204565b8063a22cb4651461065b578063a45ba8e714610684578063b88d4fde146106af578063c87b56dd146106d857610204565b80637ec4a659116100e75780637ec4a659146105955780638da5cb5b146105be57806394354fd0146105e957806395d89b4114610614578063a0712d681461063f57610204565b806362b99ad4146104d95780636352211e1461050457806370a0823114610541578063715018a61461057e57610204565b806318160ddd1161019b57806344a0d68a1161016a57806344a0d68a146104065780634fdd43cb1461042f57806351830227146104585780635503a0e8146104835780635c975abb146104ae57610204565b806318160ddd1461037257806323b872dd1461039d5780633ccfd60b146103c657806342842e0e146103dd57610204565b80630f7309e8116101d75780630f7309e8146102ca57806313faede6146102f557806316ba10e01461032057806316c38b3c1461034957610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906127eb565b6107f8565b60405161023d9190612833565b60405180910390f35b34801561025257600080fd5b5061025b61088a565b60405161026891906128e7565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061293f565b61091c565b6040516102a591906129ad565b60405180910390f35b6102c860048036038101906102c391906129f4565b61099b565b005b3480156102d657600080fd5b506102df610adf565b6040516102ec91906128e7565b60405180910390f35b34801561030157600080fd5b5061030a610b6d565b6040516103179190612a43565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612b93565b610b73565b005b34801561035557600080fd5b50610370600480360381019061036b9190612c08565b610b95565b005b34801561037e57600080fd5b50610387610bba565b6040516103949190612a43565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190612c35565b610bd1565b005b3480156103d257600080fd5b506103db610cdd565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612c35565b610d75565b005b34801561041257600080fd5b5061042d6004803603810190610428919061293f565b610e81565b005b34801561043b57600080fd5b5061045660048036038101906104519190612b93565b610e93565b005b34801561046457600080fd5b5061046d610eb5565b60405161047a9190612833565b60405180910390f35b34801561048f57600080fd5b50610498610ec8565b6040516104a591906128e7565b60405180910390f35b3480156104ba57600080fd5b506104c3610f56565b6040516104d09190612833565b60405180910390f35b3480156104e557600080fd5b506104ee610f69565b6040516104fb91906128e7565b60405180910390f35b34801561051057600080fd5b5061052b6004803603810190610526919061293f565b610ff7565b60405161053891906129ad565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612c88565b611009565b6040516105759190612a43565b60405180910390f35b34801561058a57600080fd5b506105936110c1565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190612b93565b6110d5565b005b3480156105ca57600080fd5b506105d36110f7565b6040516105e091906129ad565b60405180910390f35b3480156105f557600080fd5b506105fe611121565b60405161060b9190612a43565b60405180910390f35b34801561062057600080fd5b50610629611127565b60405161063691906128e7565b60405180910390f35b6106596004803603810190610654919061293f565b6111b9565b005b34801561066757600080fd5b50610682600480360381019061067d9190612cb5565b611387565b005b34801561069057600080fd5b50610699611492565b6040516106a691906128e7565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190612d96565b611520565b005b3480156106e457600080fd5b506106ff60048036038101906106fa919061293f565b61162e565b60405161070c91906128e7565b60405180910390f35b34801561072157600080fd5b5061072a611786565b6040516107379190612a43565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190612c08565b61178c565b005b34801561077557600080fd5b50610790600480360381019061078b9190612e19565b6117b1565b60405161079d9190612833565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c89190612c88565b611845565b005b3480156107db57600080fd5b506107f660048036038101906107f19190612b93565b6118c8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108835750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461089990612e88565b80601f01602080910402602001604051908101604052809291908181526020018280546108c590612e88565b80156109125780601f106108e757610100808354040283529160200191610912565b820191906000526020600020905b8154815290600101906020018083116108f557829003601f168201915b5050505050905090565b6000610927826118ea565b61095d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a682610ff7565b90508073ffffffffffffffffffffffffffffffffffffffff166109c7611949565b73ffffffffffffffffffffffffffffffffffffffff1614610a2a576109f3816109ee611949565b6117b1565b610a29576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d8054610aec90612e88565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1890612e88565b8015610b655780601f10610b3a57610100808354040283529160200191610b65565b820191906000526020600020905b815481529060010190602001808311610b4857829003601f168201915b505050505081565b600e5481565b610b7b611951565b80600b9080519060200190610b919291906126dc565b5050565b610b9d611951565b80601160006101000a81548160ff02191690831515021790555050565b6000610bc46119cf565b6001546000540303905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ccd576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c48929190612eb9565b6020604051808303816000875af1158015610c67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8b9190612ef7565b610ccc57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610cc391906129ad565b60405180910390fd5b5b610cd88383836119d8565b505050565b610ce5611951565b610ced611cfa565b6000610cf76110f7565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d1a90612f55565b60006040518083038185875af1925050503d8060008114610d57576040519150601f19603f3d011682016040523d82523d6000602084013e610d5c565b606091505b5050905080610d6a57600080fd5b50610d73611d49565b565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e71576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dec929190612eb9565b6020604051808303816000875af1158015610e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2f9190612ef7565b610e7057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e6791906129ad565b60405180910390fd5b5b610e7c838383611d53565b505050565b610e89611951565b80600e8190555050565b610e9b611951565b80600c9080519060200190610eb19291906126dc565b5050565b601160019054906101000a900460ff1681565b600b8054610ed590612e88565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0190612e88565b8015610f4e5780601f10610f2357610100808354040283529160200191610f4e565b820191906000526020600020905b815481529060010190602001808311610f3157829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b600a8054610f7690612e88565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa290612e88565b8015610fef5780601f10610fc457610100808354040283529160200191610fef565b820191906000526020600020905b815481529060010190602001808311610fd257829003601f168201915b505050505081565b600061100282611d73565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611070576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110c9611951565b6110d36000611e3f565b565b6110dd611951565b80600a90805190602001906110f39291906126dc565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606003805461113690612e88565b80601f016020809104026020016040519081016040528092919081815260200182805461116290612e88565b80156111af5780601f10611184576101008083540402835291602001916111af565b820191906000526020600020905b81548152906001019060200180831161119257829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90612fdc565b60405180910390fd5b8060008111801561123a57506010548111155b611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090613048565b60405180910390fd5b600f5481611285610bba565b61128f9190613097565b11156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790613139565b60405180910390fd5b8180600e546112df9190613159565b341015611321576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611318906131ff565b60405180910390fd5b601160009054906101000a900460ff1615611371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113689061326b565b60405180910390fd5b61138261137c611f05565b84611f0d565b505050565b8060076000611394611949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611441611949565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114869190612833565b60405180910390a35050565b600c805461149f90612e88565b80601f01602080910402602001604051908101604052809291908181526020018280546114cb90612e88565b80156115185780601f106114ed57610100808354040283529160200191611518565b820191906000526020600020905b8154815290600101906020018083116114fb57829003601f168201915b505050505081565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561161c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611597929190612eb9565b6020604051808303816000875af11580156115b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115da9190612ef7565b61161b57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161161291906129ad565b60405180910390fd5b5b61162884848484611f2b565b50505050565b6060611639826118ea565b611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f906132fd565b60405180910390fd5b60001515601160019054906101000a900460ff1615150361172557600c80546116a090612e88565b80601f01602080910402602001604051908101604052809291908181526020018280546116cc90612e88565b80156117195780601f106116ee57610100808354040283529160200191611719565b820191906000526020600020905b8154815290600101906020018083116116fc57829003601f168201915b50505050509050611781565b600061172f611f9e565b9050600081511161174f576040518060200160405280600081525061177d565b8061175984612030565b600b60405160200161176d939291906133ed565b6040516020818303038152906040525b9150505b919050565b600f5481565b611794611951565b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61184d611951565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613490565b60405180910390fd5b6118c581611e3f565b50565b6118d0611951565b80600d90805190602001906118e69291906126dc565b5050565b6000816118f56119cf565b11158015611904575060005482105b8015611942575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611959611f05565b73ffffffffffffffffffffffffffffffffffffffff166119776110f7565b73ffffffffffffffffffffffffffffffffffffffff16146119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c4906134fc565b60405180910390fd5b565b60006001905090565b60006119e382611d73565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a4a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a56846120fe565b91509150611a6c8187611a67611949565b612125565b611ab857611a8186611a7c611949565b6117b1565b611ab7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611b1e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b2b8686866001612169565b8015611b3657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611c0485611be088888761216f565b7c020000000000000000000000000000000000000000000000000000000017612197565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611c8a5760006001850190506000600460008381526020019081526020016000205403611c88576000548114611c87578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cf286868660016121c2565b505050505050565b600260095403611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690613568565b60405180910390fd5b6002600981905550565b6001600981905550565b611d6e83838360405180602001604052806000815250611520565b505050565b60008082905080611d826119cf565b11611e0857600054811015611e075760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e05575b60008103611dfb576004600083600190039350838152602001908152602001600020549050611dd1565b8092505050611e3a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611f278282604051806020016040528060008152506121c8565b5050565b611f36848484610bd1565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f9857611f6184848484612265565b611f97576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a8054611fad90612e88565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd990612e88565b80156120265780601f10611ffb57610100808354040283529160200191612026565b820191906000526020600020905b81548152906001019060200180831161200957829003601f168201915b5050505050905090565b60606000600161203f846123b5565b01905060008167ffffffffffffffff81111561205e5761205d612a68565b5b6040519080825280601f01601f1916602001820160405280156120905781602001600182028036833780820191505090505b509050600082602001820190505b6001156120f3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816120e7576120e6613588565b5b0494506000850361209e575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612186868684612508565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6121d28383612511565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461226057600080549050600083820390505b6122126000868380600101945086612265565b612248576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121ff57816000541461225d57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261228b611949565b8786866040518563ffffffff1660e01b81526004016122ad949392919061360c565b6020604051808303816000875af19250505080156122e957506040513d601f19601f820116820180604052508101906122e6919061366d565b60015b612362573d8060008114612319576040519150601f19603f3d011682016040523d82523d6000602084013e61231e565b606091505b50600081510361235a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612413577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161240957612408613588565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612450576d04ee2d6d415b85acef8100000000838161244657612445613588565b5b0492506020810190505b662386f26fc10000831061247f57662386f26fc10000838161247557612474613588565b5b0492506010810190505b6305f5e10083106124a8576305f5e100838161249e5761249d613588565b5b0492506008810190505b61271083106124cd5761271083816124c3576124c2613588565b5b0492506004810190505b606483106124f057606483816124e6576124e5613588565b5b0492506002810190505b600a83106124ff576001810190505b80915050919050565b60009392505050565b60008054905060008203612551576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61255e6000848385612169565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125d5836125c6600086600061216f565b6125cf856126cc565b17612197565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461267657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061263b565b50600082036126b1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126c760008483856121c2565b505050565b60006001821460e11b9050919050565b8280546126e890612e88565b90600052602060002090601f01602090048101928261270a5760008555612751565b82601f1061272357805160ff1916838001178555612751565b82800160010185558215612751579182015b82811115612750578251825591602001919060010190612735565b5b50905061275e9190612762565b5090565b5b8082111561277b576000816000905550600101612763565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127c881612793565b81146127d357600080fd5b50565b6000813590506127e5816127bf565b92915050565b60006020828403121561280157612800612789565b5b600061280f848285016127d6565b91505092915050565b60008115159050919050565b61282d81612818565b82525050565b60006020820190506128486000830184612824565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561288857808201518184015260208101905061286d565b83811115612897576000848401525b50505050565b6000601f19601f8301169050919050565b60006128b98261284e565b6128c38185612859565b93506128d381856020860161286a565b6128dc8161289d565b840191505092915050565b6000602082019050818103600083015261290181846128ae565b905092915050565b6000819050919050565b61291c81612909565b811461292757600080fd5b50565b60008135905061293981612913565b92915050565b60006020828403121561295557612954612789565b5b60006129638482850161292a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129978261296c565b9050919050565b6129a78161298c565b82525050565b60006020820190506129c2600083018461299e565b92915050565b6129d18161298c565b81146129dc57600080fd5b50565b6000813590506129ee816129c8565b92915050565b60008060408385031215612a0b57612a0a612789565b5b6000612a19858286016129df565b9250506020612a2a8582860161292a565b9150509250929050565b612a3d81612909565b82525050565b6000602082019050612a586000830184612a34565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612aa08261289d565b810181811067ffffffffffffffff82111715612abf57612abe612a68565b5b80604052505050565b6000612ad261277f565b9050612ade8282612a97565b919050565b600067ffffffffffffffff821115612afe57612afd612a68565b5b612b078261289d565b9050602081019050919050565b82818337600083830152505050565b6000612b36612b3184612ae3565b612ac8565b905082815260208101848484011115612b5257612b51612a63565b5b612b5d848285612b14565b509392505050565b600082601f830112612b7a57612b79612a5e565b5b8135612b8a848260208601612b23565b91505092915050565b600060208284031215612ba957612ba8612789565b5b600082013567ffffffffffffffff811115612bc757612bc661278e565b5b612bd384828501612b65565b91505092915050565b612be581612818565b8114612bf057600080fd5b50565b600081359050612c0281612bdc565b92915050565b600060208284031215612c1e57612c1d612789565b5b6000612c2c84828501612bf3565b91505092915050565b600080600060608486031215612c4e57612c4d612789565b5b6000612c5c868287016129df565b9350506020612c6d868287016129df565b9250506040612c7e8682870161292a565b9150509250925092565b600060208284031215612c9e57612c9d612789565b5b6000612cac848285016129df565b91505092915050565b60008060408385031215612ccc57612ccb612789565b5b6000612cda858286016129df565b9250506020612ceb85828601612bf3565b9150509250929050565b600067ffffffffffffffff821115612d1057612d0f612a68565b5b612d198261289d565b9050602081019050919050565b6000612d39612d3484612cf5565b612ac8565b905082815260208101848484011115612d5557612d54612a63565b5b612d60848285612b14565b509392505050565b600082601f830112612d7d57612d7c612a5e565b5b8135612d8d848260208601612d26565b91505092915050565b60008060008060808587031215612db057612daf612789565b5b6000612dbe878288016129df565b9450506020612dcf878288016129df565b9350506040612de08782880161292a565b925050606085013567ffffffffffffffff811115612e0157612e0061278e565b5b612e0d87828801612d68565b91505092959194509250565b60008060408385031215612e3057612e2f612789565b5b6000612e3e858286016129df565b9250506020612e4f858286016129df565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ea057607f821691505b602082108103612eb357612eb2612e59565b5b50919050565b6000604082019050612ece600083018561299e565b612edb602083018461299e565b9392505050565b600081519050612ef181612bdc565b92915050565b600060208284031215612f0d57612f0c612789565b5b6000612f1b84828501612ee2565b91505092915050565b600081905092915050565b50565b6000612f3f600083612f24565b9150612f4a82612f2f565b600082019050919050565b6000612f6082612f32565b9150819050919050565b7f4a61636b656420446567656e6572617465732063616e6e6f742062652063616c60008201527f6c6564206279206120636f6e7472616374000000000000000000000000000000602082015250565b6000612fc6603183612859565b9150612fd182612f6a565b604082019050919050565b60006020820190508181036000830152612ff581612fb9565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613032601483612859565b915061303d82612ffc565b602082019050919050565b6000602082019050818103600083015261306181613025565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a282612909565b91506130ad83612909565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130e2576130e1613068565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613123601483612859565b915061312e826130ed565b602082019050919050565b6000602082019050818103600083015261315281613116565b9050919050565b600061316482612909565b915061316f83612909565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131a8576131a7613068565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006131e9601383612859565b91506131f4826131b3565b602082019050919050565b60006020820190508181036000830152613218816131dc565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613255601783612859565b91506132608261321f565b602082019050919050565b6000602082019050818103600083015261328481613248565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006132e7602f83612859565b91506132f28261328b565b604082019050919050565b60006020820190508181036000830152613316816132da565b9050919050565b600081905092915050565b60006133338261284e565b61333d818561331d565b935061334d81856020860161286a565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461337b81612e88565b613385818661331d565b945060018216600081146133a057600181146133b1576133e4565b60ff198316865281860193506133e4565b6133ba85613359565b60005b838110156133dc578154818901526001820191506020810190506133bd565b838801955050505b50505092915050565b60006133f98286613328565b91506134058285613328565b9150613411828461336e565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061347a602683612859565b91506134858261341e565b604082019050919050565b600060208201905081810360008301526134a98161346d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134e6602083612859565b91506134f1826134b0565b602082019050919050565b60006020820190508181036000830152613515816134d9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613552601f83612859565b915061355d8261351c565b602082019050919050565b6000602082019050818103600083015261358181613545565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006135de826135b7565b6135e881856135c2565b93506135f881856020860161286a565b6136018161289d565b840191505092915050565b6000608082019050613621600083018761299e565b61362e602083018661299e565b61363b6040830185612a34565b818103606083015261364d81846135d3565b905095945050505050565b600081519050613667816127bf565b92915050565b60006020828403121561368357613682612789565b5b600061369184828501613658565b9150509291505056fea264697066735822122040ecabdb4bb3348f79a472c25573881b1ec9176033c1b1ee8c3fffd7d52958c464736f6c634300080e0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000124a41434b454420444547454e455241544553000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064a41434b454400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d526d596d4769796d667976526870636337536253517a424b695453766f335042453671355144336e4c644b792f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c806362b99ad411610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610715578063e0a8085314610740578063e985e9c514610769578063f2fde38b146107a6578063ffe630b5146107cf57610204565b8063a22cb4651461065b578063a45ba8e714610684578063b88d4fde146106af578063c87b56dd146106d857610204565b80637ec4a659116100e75780637ec4a659146105955780638da5cb5b146105be57806394354fd0146105e957806395d89b4114610614578063a0712d681461063f57610204565b806362b99ad4146104d95780636352211e1461050457806370a0823114610541578063715018a61461057e57610204565b806318160ddd1161019b57806344a0d68a1161016a57806344a0d68a146104065780634fdd43cb1461042f57806351830227146104585780635503a0e8146104835780635c975abb146104ae57610204565b806318160ddd1461037257806323b872dd1461039d5780633ccfd60b146103c657806342842e0e146103dd57610204565b80630f7309e8116101d75780630f7309e8146102ca57806313faede6146102f557806316ba10e01461032057806316c38b3c1461034957610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906127eb565b6107f8565b60405161023d9190612833565b60405180910390f35b34801561025257600080fd5b5061025b61088a565b60405161026891906128e7565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061293f565b61091c565b6040516102a591906129ad565b60405180910390f35b6102c860048036038101906102c391906129f4565b61099b565b005b3480156102d657600080fd5b506102df610adf565b6040516102ec91906128e7565b60405180910390f35b34801561030157600080fd5b5061030a610b6d565b6040516103179190612a43565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612b93565b610b73565b005b34801561035557600080fd5b50610370600480360381019061036b9190612c08565b610b95565b005b34801561037e57600080fd5b50610387610bba565b6040516103949190612a43565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190612c35565b610bd1565b005b3480156103d257600080fd5b506103db610cdd565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612c35565b610d75565b005b34801561041257600080fd5b5061042d6004803603810190610428919061293f565b610e81565b005b34801561043b57600080fd5b5061045660048036038101906104519190612b93565b610e93565b005b34801561046457600080fd5b5061046d610eb5565b60405161047a9190612833565b60405180910390f35b34801561048f57600080fd5b50610498610ec8565b6040516104a591906128e7565b60405180910390f35b3480156104ba57600080fd5b506104c3610f56565b6040516104d09190612833565b60405180910390f35b3480156104e557600080fd5b506104ee610f69565b6040516104fb91906128e7565b60405180910390f35b34801561051057600080fd5b5061052b6004803603810190610526919061293f565b610ff7565b60405161053891906129ad565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612c88565b611009565b6040516105759190612a43565b60405180910390f35b34801561058a57600080fd5b506105936110c1565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190612b93565b6110d5565b005b3480156105ca57600080fd5b506105d36110f7565b6040516105e091906129ad565b60405180910390f35b3480156105f557600080fd5b506105fe611121565b60405161060b9190612a43565b60405180910390f35b34801561062057600080fd5b50610629611127565b60405161063691906128e7565b60405180910390f35b6106596004803603810190610654919061293f565b6111b9565b005b34801561066757600080fd5b50610682600480360381019061067d9190612cb5565b611387565b005b34801561069057600080fd5b50610699611492565b6040516106a691906128e7565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190612d96565b611520565b005b3480156106e457600080fd5b506106ff60048036038101906106fa919061293f565b61162e565b60405161070c91906128e7565b60405180910390f35b34801561072157600080fd5b5061072a611786565b6040516107379190612a43565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190612c08565b61178c565b005b34801561077557600080fd5b50610790600480360381019061078b9190612e19565b6117b1565b60405161079d9190612833565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c89190612c88565b611845565b005b3480156107db57600080fd5b506107f660048036038101906107f19190612b93565b6118c8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108835750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461089990612e88565b80601f01602080910402602001604051908101604052809291908181526020018280546108c590612e88565b80156109125780601f106108e757610100808354040283529160200191610912565b820191906000526020600020905b8154815290600101906020018083116108f557829003601f168201915b5050505050905090565b6000610927826118ea565b61095d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a682610ff7565b90508073ffffffffffffffffffffffffffffffffffffffff166109c7611949565b73ffffffffffffffffffffffffffffffffffffffff1614610a2a576109f3816109ee611949565b6117b1565b610a29576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d8054610aec90612e88565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1890612e88565b8015610b655780601f10610b3a57610100808354040283529160200191610b65565b820191906000526020600020905b815481529060010190602001808311610b4857829003601f168201915b505050505081565b600e5481565b610b7b611951565b80600b9080519060200190610b919291906126dc565b5050565b610b9d611951565b80601160006101000a81548160ff02191690831515021790555050565b6000610bc46119cf565b6001546000540303905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ccd576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c48929190612eb9565b6020604051808303816000875af1158015610c67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8b9190612ef7565b610ccc57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610cc391906129ad565b60405180910390fd5b5b610cd88383836119d8565b505050565b610ce5611951565b610ced611cfa565b6000610cf76110f7565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d1a90612f55565b60006040518083038185875af1925050503d8060008114610d57576040519150601f19603f3d011682016040523d82523d6000602084013e610d5c565b606091505b5050905080610d6a57600080fd5b50610d73611d49565b565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e71576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dec929190612eb9565b6020604051808303816000875af1158015610e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2f9190612ef7565b610e7057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e6791906129ad565b60405180910390fd5b5b610e7c838383611d53565b505050565b610e89611951565b80600e8190555050565b610e9b611951565b80600c9080519060200190610eb19291906126dc565b5050565b601160019054906101000a900460ff1681565b600b8054610ed590612e88565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0190612e88565b8015610f4e5780601f10610f2357610100808354040283529160200191610f4e565b820191906000526020600020905b815481529060010190602001808311610f3157829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b600a8054610f7690612e88565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa290612e88565b8015610fef5780601f10610fc457610100808354040283529160200191610fef565b820191906000526020600020905b815481529060010190602001808311610fd257829003601f168201915b505050505081565b600061100282611d73565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611070576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110c9611951565b6110d36000611e3f565b565b6110dd611951565b80600a90805190602001906110f39291906126dc565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606003805461113690612e88565b80601f016020809104026020016040519081016040528092919081815260200182805461116290612e88565b80156111af5780601f10611184576101008083540402835291602001916111af565b820191906000526020600020905b81548152906001019060200180831161119257829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90612fdc565b60405180910390fd5b8060008111801561123a57506010548111155b611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090613048565b60405180910390fd5b600f5481611285610bba565b61128f9190613097565b11156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790613139565b60405180910390fd5b8180600e546112df9190613159565b341015611321576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611318906131ff565b60405180910390fd5b601160009054906101000a900460ff1615611371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113689061326b565b60405180910390fd5b61138261137c611f05565b84611f0d565b505050565b8060076000611394611949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611441611949565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114869190612833565b60405180910390a35050565b600c805461149f90612e88565b80601f01602080910402602001604051908101604052809291908181526020018280546114cb90612e88565b80156115185780601f106114ed57610100808354040283529160200191611518565b820191906000526020600020905b8154815290600101906020018083116114fb57829003601f168201915b505050505081565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561161c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611597929190612eb9565b6020604051808303816000875af11580156115b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115da9190612ef7565b61161b57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161161291906129ad565b60405180910390fd5b5b61162884848484611f2b565b50505050565b6060611639826118ea565b611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f906132fd565b60405180910390fd5b60001515601160019054906101000a900460ff1615150361172557600c80546116a090612e88565b80601f01602080910402602001604051908101604052809291908181526020018280546116cc90612e88565b80156117195780601f106116ee57610100808354040283529160200191611719565b820191906000526020600020905b8154815290600101906020018083116116fc57829003601f168201915b50505050509050611781565b600061172f611f9e565b9050600081511161174f576040518060200160405280600081525061177d565b8061175984612030565b600b60405160200161176d939291906133ed565b6040516020818303038152906040525b9150505b919050565b600f5481565b611794611951565b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61184d611951565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613490565b60405180910390fd5b6118c581611e3f565b50565b6118d0611951565b80600d90805190602001906118e69291906126dc565b5050565b6000816118f56119cf565b11158015611904575060005482105b8015611942575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611959611f05565b73ffffffffffffffffffffffffffffffffffffffff166119776110f7565b73ffffffffffffffffffffffffffffffffffffffff16146119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c4906134fc565b60405180910390fd5b565b60006001905090565b60006119e382611d73565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a4a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a56846120fe565b91509150611a6c8187611a67611949565b612125565b611ab857611a8186611a7c611949565b6117b1565b611ab7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611b1e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b2b8686866001612169565b8015611b3657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611c0485611be088888761216f565b7c020000000000000000000000000000000000000000000000000000000017612197565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611c8a5760006001850190506000600460008381526020019081526020016000205403611c88576000548114611c87578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cf286868660016121c2565b505050505050565b600260095403611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690613568565b60405180910390fd5b6002600981905550565b6001600981905550565b611d6e83838360405180602001604052806000815250611520565b505050565b60008082905080611d826119cf565b11611e0857600054811015611e075760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e05575b60008103611dfb576004600083600190039350838152602001908152602001600020549050611dd1565b8092505050611e3a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611f278282604051806020016040528060008152506121c8565b5050565b611f36848484610bd1565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f9857611f6184848484612265565b611f97576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a8054611fad90612e88565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd990612e88565b80156120265780601f10611ffb57610100808354040283529160200191612026565b820191906000526020600020905b81548152906001019060200180831161200957829003601f168201915b5050505050905090565b60606000600161203f846123b5565b01905060008167ffffffffffffffff81111561205e5761205d612a68565b5b6040519080825280601f01601f1916602001820160405280156120905781602001600182028036833780820191505090505b509050600082602001820190505b6001156120f3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816120e7576120e6613588565b5b0494506000850361209e575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612186868684612508565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6121d28383612511565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461226057600080549050600083820390505b6122126000868380600101945086612265565b612248576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121ff57816000541461225d57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261228b611949565b8786866040518563ffffffff1660e01b81526004016122ad949392919061360c565b6020604051808303816000875af19250505080156122e957506040513d601f19601f820116820180604052508101906122e6919061366d565b60015b612362573d8060008114612319576040519150601f19603f3d011682016040523d82523d6000602084013e61231e565b606091505b50600081510361235a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612413577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161240957612408613588565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612450576d04ee2d6d415b85acef8100000000838161244657612445613588565b5b0492506020810190505b662386f26fc10000831061247f57662386f26fc10000838161247557612474613588565b5b0492506010810190505b6305f5e10083106124a8576305f5e100838161249e5761249d613588565b5b0492506008810190505b61271083106124cd5761271083816124c3576124c2613588565b5b0492506004810190505b606483106124f057606483816124e6576124e5613588565b5b0492506002810190505b600a83106124ff576001810190505b80915050919050565b60009392505050565b60008054905060008203612551576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61255e6000848385612169565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125d5836125c6600086600061216f565b6125cf856126cc565b17612197565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461267657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061263b565b50600082036126b1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126c760008483856121c2565b505050565b60006001821460e11b9050919050565b8280546126e890612e88565b90600052602060002090601f01602090048101928261270a5760008555612751565b82601f1061272357805160ff1916838001178555612751565b82800160010185558215612751579182015b82811115612750578251825591602001919060010190612735565b5b50905061275e9190612762565b5090565b5b8082111561277b576000816000905550600101612763565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127c881612793565b81146127d357600080fd5b50565b6000813590506127e5816127bf565b92915050565b60006020828403121561280157612800612789565b5b600061280f848285016127d6565b91505092915050565b60008115159050919050565b61282d81612818565b82525050565b60006020820190506128486000830184612824565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561288857808201518184015260208101905061286d565b83811115612897576000848401525b50505050565b6000601f19601f8301169050919050565b60006128b98261284e565b6128c38185612859565b93506128d381856020860161286a565b6128dc8161289d565b840191505092915050565b6000602082019050818103600083015261290181846128ae565b905092915050565b6000819050919050565b61291c81612909565b811461292757600080fd5b50565b60008135905061293981612913565b92915050565b60006020828403121561295557612954612789565b5b60006129638482850161292a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129978261296c565b9050919050565b6129a78161298c565b82525050565b60006020820190506129c2600083018461299e565b92915050565b6129d18161298c565b81146129dc57600080fd5b50565b6000813590506129ee816129c8565b92915050565b60008060408385031215612a0b57612a0a612789565b5b6000612a19858286016129df565b9250506020612a2a8582860161292a565b9150509250929050565b612a3d81612909565b82525050565b6000602082019050612a586000830184612a34565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612aa08261289d565b810181811067ffffffffffffffff82111715612abf57612abe612a68565b5b80604052505050565b6000612ad261277f565b9050612ade8282612a97565b919050565b600067ffffffffffffffff821115612afe57612afd612a68565b5b612b078261289d565b9050602081019050919050565b82818337600083830152505050565b6000612b36612b3184612ae3565b612ac8565b905082815260208101848484011115612b5257612b51612a63565b5b612b5d848285612b14565b509392505050565b600082601f830112612b7a57612b79612a5e565b5b8135612b8a848260208601612b23565b91505092915050565b600060208284031215612ba957612ba8612789565b5b600082013567ffffffffffffffff811115612bc757612bc661278e565b5b612bd384828501612b65565b91505092915050565b612be581612818565b8114612bf057600080fd5b50565b600081359050612c0281612bdc565b92915050565b600060208284031215612c1e57612c1d612789565b5b6000612c2c84828501612bf3565b91505092915050565b600080600060608486031215612c4e57612c4d612789565b5b6000612c5c868287016129df565b9350506020612c6d868287016129df565b9250506040612c7e8682870161292a565b9150509250925092565b600060208284031215612c9e57612c9d612789565b5b6000612cac848285016129df565b91505092915050565b60008060408385031215612ccc57612ccb612789565b5b6000612cda858286016129df565b9250506020612ceb85828601612bf3565b9150509250929050565b600067ffffffffffffffff821115612d1057612d0f612a68565b5b612d198261289d565b9050602081019050919050565b6000612d39612d3484612cf5565b612ac8565b905082815260208101848484011115612d5557612d54612a63565b5b612d60848285612b14565b509392505050565b600082601f830112612d7d57612d7c612a5e565b5b8135612d8d848260208601612d26565b91505092915050565b60008060008060808587031215612db057612daf612789565b5b6000612dbe878288016129df565b9450506020612dcf878288016129df565b9350506040612de08782880161292a565b925050606085013567ffffffffffffffff811115612e0157612e0061278e565b5b612e0d87828801612d68565b91505092959194509250565b60008060408385031215612e3057612e2f612789565b5b6000612e3e858286016129df565b9250506020612e4f858286016129df565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ea057607f821691505b602082108103612eb357612eb2612e59565b5b50919050565b6000604082019050612ece600083018561299e565b612edb602083018461299e565b9392505050565b600081519050612ef181612bdc565b92915050565b600060208284031215612f0d57612f0c612789565b5b6000612f1b84828501612ee2565b91505092915050565b600081905092915050565b50565b6000612f3f600083612f24565b9150612f4a82612f2f565b600082019050919050565b6000612f6082612f32565b9150819050919050565b7f4a61636b656420446567656e6572617465732063616e6e6f742062652063616c60008201527f6c6564206279206120636f6e7472616374000000000000000000000000000000602082015250565b6000612fc6603183612859565b9150612fd182612f6a565b604082019050919050565b60006020820190508181036000830152612ff581612fb9565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613032601483612859565b915061303d82612ffc565b602082019050919050565b6000602082019050818103600083015261306181613025565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a282612909565b91506130ad83612909565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130e2576130e1613068565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613123601483612859565b915061312e826130ed565b602082019050919050565b6000602082019050818103600083015261315281613116565b9050919050565b600061316482612909565b915061316f83612909565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131a8576131a7613068565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006131e9601383612859565b91506131f4826131b3565b602082019050919050565b60006020820190508181036000830152613218816131dc565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613255601783612859565b91506132608261321f565b602082019050919050565b6000602082019050818103600083015261328481613248565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006132e7602f83612859565b91506132f28261328b565b604082019050919050565b60006020820190508181036000830152613316816132da565b9050919050565b600081905092915050565b60006133338261284e565b61333d818561331d565b935061334d81856020860161286a565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461337b81612e88565b613385818661331d565b945060018216600081146133a057600181146133b1576133e4565b60ff198316865281860193506133e4565b6133ba85613359565b60005b838110156133dc578154818901526001820191506020810190506133bd565b838801955050505b50505092915050565b60006133f98286613328565b91506134058285613328565b9150613411828461336e565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061347a602683612859565b91506134858261341e565b604082019050919050565b600060208201905081810360008301526134a98161346d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134e6602083612859565b91506134f1826134b0565b602082019050919050565b60006020820190508181036000830152613515816134d9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613552601f83612859565b915061355d8261351c565b602082019050919050565b6000602082019050818103600083015261358181613545565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006135de826135b7565b6135e881856135c2565b93506135f881856020860161286a565b6136018161289d565b840191505092915050565b6000608082019050613621600083018761299e565b61362e602083018661299e565b61363b6040830185612a34565b818103606083015261364d81846135d3565b905095945050505050565b600081519050613667816127bf565b92915050565b60006020828403121561368357613682612789565b5b600061369184828501613658565b9150509291505056fea264697066735822122040ecabdb4bb3348f79a472c25573881b1ec9176033c1b1ee8c3fffd7d52958c464736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000124a41434b454420444547454e455241544553000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064a41434b454400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d526d596d4769796d667976526870636337536253517a424b695453766f335042453671355144336e4c644b792f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): JACKED DEGENERATES
Arg [1] : _tokenSymbol (string): JACKED
Arg [2] : _hiddenMetadataUri (string): ipfs://QmRmYmGiymfyvRhpcc7SbSQzBKiTSvo3PBE6q5QD3nLdKy/hidden.json
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 4a41434b454420444547454e4552415445530000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4a41434b45440000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [8] : 697066733a2f2f516d526d596d4769796d667976526870636337536253517a42
Arg [9] : 4b695453766f335042453671355144336e4c644b792f68696464656e2e6a736f
Arg [10] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
95046:4136:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61952:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62854:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69345:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68778:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95304:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95337:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97918:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98032:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58605:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98331:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98901:160;;;;;;;;;;;;;:::i;:::-;;98496:165;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98123:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97635:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95495:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95226:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95463:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95191:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64247:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59789:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25331:103;;;;;;;;;;;;;:::i;:::-;;97804:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24683:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95416:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63030:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96399:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69903:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95266:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98669:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96805:727;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95377:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97540:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70294:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25589:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98213:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61952:639;62037:4;62376:10;62361:25;;:11;:25;;;;:102;;;;62453:10;62438:25;;:11;:25;;;;62361:102;:179;;;;62530:10;62515:25;;:11;:25;;;;62361:179;62341:199;;61952:639;;;:::o;62854:100::-;62908:13;62941:5;62934:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62854:100;:::o;69345:218::-;69421:7;69446:16;69454:7;69446;:16::i;:::-;69441:64;;69471:34;;;;;;;;;;;;;;69441:64;69525:15;:24;69541:7;69525:24;;;;;;;;;;;:30;;;;;;;;;;;;69518:37;;69345:218;;;:::o;68778:408::-;68867:13;68883:16;68891:7;68883;:16::i;:::-;68867:32;;68939:5;68916:28;;:19;:17;:19::i;:::-;:28;;;68912:175;;68964:44;68981:5;68988:19;:17;:19::i;:::-;68964:16;:44::i;:::-;68959:128;;69036:35;;;;;;;;;;;;;;68959:128;68912:175;69132:2;69099:15;:24;69115:7;69099:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;69170:7;69166:2;69150:28;;69159:5;69150:28;;;;;;;;;;;;68856:330;68778:408;;:::o;95304:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;95337:33::-;;;;:::o;97918:106::-;24569:13;:11;:13::i;:::-;98006:10:::1;97994:9;:22;;;;;;;;;;;;:::i;:::-;;97918:106:::0;:::o;98032:83::-;24569:13;:11;:13::i;:::-;98101:6:::1;98092;;:15;;;;;;;;;;;;;;;;;;98032:83:::0;:::o;58605:323::-;58666:7;58894:15;:13;:15::i;:::-;58879:12;;58863:13;;:28;:46;58856:53;;58605:323;:::o;98331:157::-;43083:1;41909:42;43037:43;;;:47;43033:225;;;41909:42;43106:40;;;43155:4;43162:10;43106:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43101:146;;43220:10;43201:30;;;;;;;;;;;:::i;:::-;;;;;;;;43101:146;43033:225;98443:37:::1;98462:4;98468:2;98472:7;98443:18;:37::i;:::-;98331:157:::0;;;:::o;98901:160::-;24569:13;:11;:13::i;:::-;21954:21:::1;:19;:21::i;:::-;98963:7:::2;98984;:5;:7::i;:::-;98976:21;;99005;98976:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98962:69;;;99050:2;99042:11;;;::::0;::::2;;98951:110;21998:20:::1;:18;:20::i;:::-;98901:160::o:0;98496:165::-;43083:1;41909:42;43037:43;;;:47;43033:225;;;41909:42;43106:40;;;43155:4;43162:10;43106:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43101:146;;43220:10;43201:30;;;;;;;;;;;:::i;:::-;;;;;;;;43101:146;43033:225;98612:41:::1;98635:4;98641:2;98645:7;98612:22;:41::i;:::-;98496:165:::0;;;:::o;98123:80::-;24569:13;:11;:13::i;:::-;98190:5:::1;98183:4;:12;;;;98123:80:::0;:::o;97635:161::-;24569:13;:11;:13::i;:::-;97770:18:::1;97750:17;:38;;;;;;;;;;;;:::i;:::-;;97635:161:::0;:::o;95495:28::-;;;;;;;;;;;;;:::o;95226:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;95463:25::-;;;;;;;;;;;;;:::o;95191:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64247:152::-;64319:7;64362:27;64381:7;64362:18;:27::i;:::-;64339:52;;64247:152;;;:::o;59789:233::-;59861:7;59902:1;59885:19;;:5;:19;;;59881:60;;59913:28;;;;;;;;;;;;;;59881:60;53948:13;59959:18;:25;59978:5;59959:25;;;;;;;;;;;;;;;;:55;59952:62;;59789:233;;;:::o;25331:103::-;24569:13;:11;:13::i;:::-;25396:30:::1;25423:1;25396:18;:30::i;:::-;25331:103::o:0;97804:106::-;24569:13;:11;:13::i;:::-;97892:10:::1;97880:9;:22;;;;;;;;;;;;:::i;:::-;;97804:106:::0;:::o;24683:87::-;24729:7;24756:6;;;;;;;;;;;24749:13;;24683:87;:::o;95416:38::-;;;;:::o;63030:104::-;63086:13;63119:7;63112:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63030:104;:::o;96399:287::-;96305:10;96292:23;;:9;:23;;;96284:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;96515:11:::1;95859:1;95845:11;:15;:52;;;;;95879:18;;95864:11;:33;;95845:52;95823:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;96009:9;;95994:11;95978:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;95956:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;96557:11:::2;96187;96180:4;;:18;;;;:::i;:::-;96167:9;:31;;96159:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;96595:6:::3;;;;;;;;;;;96594:7;96586:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;96642:36;96652:12;:10;:12::i;:::-;96666:11;96642:9;:36::i;:::-;96077:1:::2;96380::::1;96399:287:::0;:::o;69903:234::-;70050:8;69998:18;:39;70017:19;:17;:19::i;:::-;69998:39;;;;;;;;;;;;;;;:49;70038:8;69998:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;70110:8;70074:55;;70089:19;:17;:19::i;:::-;70074:55;;;70120:8;70074:55;;;;;;:::i;:::-;;;;;;;;69903:234;;:::o;95266:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;98669:222::-;43083:1;41909:42;43037:43;;;:47;43033:225;;;41909:42;43106:40;;;43155:4;43162:10;43106:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43101:146;;43220:10;43201:30;;;;;;;;;;;:::i;:::-;;;;;;;;43101:146;43033:225;98836:47:::1;98859:4;98865:2;98869:7;98878:4;98836:22;:47::i;:::-;98669:222:::0;;;;:::o;96805:727::-;96924:13;96977:17;96985:8;96977:7;:17::i;:::-;96955:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;97098:5;97086:17;;:8;;;;;;;;;;;:17;;;97082:74;;97127:17;97120:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97082:74;97168:28;97199:10;:8;:10::i;:::-;97168:41;;97271:1;97246:14;97240:28;:32;:284;;;;;;;;;;;;;;;;;97364:14;97405:19;:8;:17;:19::i;:::-;97451:9;97321:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;97240:284;97220:304;;;96805:727;;;;:::o;95377:32::-;;;;:::o;97540:87::-;24569:13;:11;:13::i;:::-;97613:6:::1;97602:8;;:17;;;;;;;;;;;;;;;;;;97540:87:::0;:::o;70294:164::-;70391:4;70415:18;:25;70434:5;70415:25;;;;;;;;;;;;;;;:35;70441:8;70415:35;;;;;;;;;;;;;;;;;;;;;;;;;70408:42;;70294:164;;;;:::o;25589:201::-;24569:13;:11;:13::i;:::-;25698:1:::1;25678:22;;:8;:22;;::::0;25670:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;25754:28;25773:8;25754:18;:28::i;:::-;25589:201:::0;:::o;98213:110::-;24569:13;:11;:13::i;:::-;98304:11:::1;98291:10;:24;;;;;;;;;;;;:::i;:::-;;98213:110:::0;:::o;70716:282::-;70781:4;70837:7;70818:15;:13;:15::i;:::-;:26;;:66;;;;;70871:13;;70861:7;:23;70818:66;:153;;;;;70970:1;54724:8;70922:17;:26;70940:7;70922:26;;;;;;;;;;;;:44;:49;70818:153;70798:173;;70716:282;;;:::o;93000:105::-;93060:7;93087:10;93080:17;;93000:105;:::o;24848:132::-;24923:12;:10;:12::i;:::-;24912:23;;:7;:5;:7::i;:::-;:23;;;24904:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24848:132::o;96696:101::-;96761:7;96788:1;96781:8;;96696:101;:::o;72984:2817::-;73118:27;73148;73167:7;73148:18;:27::i;:::-;73118:57;;73233:4;73192:45;;73208:19;73192:45;;;73188:86;;73246:28;;;;;;;;;;;;;;73188:86;73288:27;73317:23;73344:35;73371:7;73344:26;:35::i;:::-;73287:92;;;;73479:68;73504:15;73521:4;73527:19;:17;:19::i;:::-;73479:24;:68::i;:::-;73474:180;;73567:43;73584:4;73590:19;:17;:19::i;:::-;73567:16;:43::i;:::-;73562:92;;73619:35;;;;;;;;;;;;;;73562:92;73474:180;73685:1;73671:16;;:2;:16;;;73667:52;;73696:23;;;;;;;;;;;;;;73667:52;73732:43;73754:4;73760:2;73764:7;73773:1;73732:21;:43::i;:::-;73868:15;73865:160;;;74008:1;73987:19;73980:30;73865:160;74405:18;:24;74424:4;74405:24;;;;;;;;;;;;;;;;74403:26;;;;;;;;;;;;74474:18;:22;74493:2;74474:22;;;;;;;;;;;;;;;;74472:24;;;;;;;;;;;74796:146;74833:2;74882:45;74897:4;74903:2;74907:19;74882:14;:45::i;:::-;55004:8;74854:73;74796:18;:146::i;:::-;74767:17;:26;74785:7;74767:26;;;;;;;;;;;:175;;;;75113:1;55004:8;75062:19;:47;:52;75058:627;;75135:19;75167:1;75157:7;:11;75135:33;;75324:1;75290:17;:30;75308:11;75290:30;;;;;;;;;;;;:35;75286:384;;75428:13;;75413:11;:28;75409:242;;75608:19;75575:17;:30;75593:11;75575:30;;;;;;;;;;;:52;;;;75409:242;75286:384;75116:569;75058:627;75732:7;75728:2;75713:27;;75722:4;75713:27;;;;;;;;;;;;75751:42;75772:4;75778:2;75782:7;75791:1;75751:20;:42::i;:::-;73107:2694;;;72984:2817;;;:::o;22034:293::-;21436:1;22168:7;;:19;22160:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;21436:1;22301:7;:18;;;;22034:293::o;22335:213::-;21392:1;22518:7;:22;;;;22335:213::o;75897:185::-;76035:39;76052:4;76058:2;76062:7;76035:39;;;;;;;;;;;;:16;:39::i;:::-;75897:185;;;:::o;65402:1275::-;65469:7;65489:12;65504:7;65489:22;;65572:4;65553:15;:13;:15::i;:::-;:23;65549:1061;;65606:13;;65599:4;:20;65595:1015;;;65644:14;65661:17;:23;65679:4;65661:23;;;;;;;;;;;;65644:40;;65778:1;54724:8;65750:6;:24;:29;65746:845;;66415:113;66432:1;66422:6;:11;66415:113;;66475:17;:25;66493:6;;;;;;;66475:25;;;;;;;;;;;;66466:34;;66415:113;;;66561:6;66554:13;;;;;;65746:845;65621:989;65595:1015;65549:1061;66638:31;;;;;;;;;;;;;;65402:1275;;;;:::o;25950:191::-;26024:16;26043:6;;;;;;;;;;;26024:25;;26069:8;26060:6;;:17;;;;;;;;;;;;;;;;;;26124:8;26093:40;;26114:8;26093:40;;;;;;;;;;;;26013:128;25950:191;:::o;23234:98::-;23287:7;23314:10;23307:17;;23234:98;:::o;86832:112::-;86909:27;86919:2;86923:8;86909:27;;;;;;;;;;;;:9;:27::i;:::-;86832:112;;:::o;76680:399::-;76847:31;76860:4;76866:2;76870:7;76847:12;:31::i;:::-;76911:1;76893:2;:14;;;:19;76889:183;;76932:56;76963:4;76969:2;76973:7;76982:5;76932:30;:56::i;:::-;76927:145;;77016:40;;;;;;;;;;;;;;76927:145;76889:183;76680:399;;;;:::o;99069:110::-;99129:13;99162:9;99155:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99069:110;:::o;17693:727::-;17749:13;17800:14;17848:1;17817:28;17839:5;17817:21;:28::i;:::-;:32;17800:49;;17864:20;17898:6;17887:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17864:41;;17920:11;18049:6;18045:2;18041:15;18033:6;18029:28;18022:35;;18086:288;18093:4;18086:288;;;18118:5;;;;;;;;18260:8;18255:2;18248:5;18244:14;18239:30;18234:3;18226:44;18316:2;18307:11;;;;;;:::i;:::-;;;;;18350:1;18341:5;:10;18086:288;18337:21;18086:288;18395:6;18388:13;;;;;17693:727;;;:::o;71879:485::-;71981:27;72010:23;72051:38;72092:15;:24;72108:7;72092:24;;;;;;;;;;;72051:65;;72269:18;72246:41;;72326:19;72320:26;72301:45;;72231:126;71879:485;;;:::o;71107:659::-;71256:11;71421:16;71414:5;71410:28;71401:37;;71581:16;71570:9;71566:32;71553:45;;71731:15;71720:9;71717:30;71709:5;71698:9;71695:20;71692:56;71682:66;;71107:659;;;;;:::o;77741:159::-;;;;;:::o;92309:311::-;92444:7;92464:16;55128:3;92490:19;:41;;92464:68;;55128:3;92558:31;92569:4;92575:2;92579:9;92558:10;:31::i;:::-;92550:40;;:62;;92543:69;;;92309:311;;;;;:::o;67225:450::-;67305:14;67473:16;67466:5;67462:28;67453:37;;67650:5;67636:11;67611:23;67607:41;67604:52;67597:5;67594:63;67584:73;;67225:450;;;;:::o;78565:158::-;;;;;:::o;86059:689::-;86190:19;86196:2;86200:8;86190:5;:19::i;:::-;86269:1;86251:2;:14;;;:19;86247:483;;86291:11;86305:13;;86291:27;;86337:13;86359:8;86353:3;:14;86337:30;;86386:233;86417:62;86456:1;86460:2;86464:7;;;;;;86473:5;86417:30;:62::i;:::-;86412:167;;86515:40;;;;;;;;;;;;;;86412:167;86614:3;86606:5;:11;86386:233;;86701:3;86684:13;;:20;86680:34;;86706:8;;;86680:34;86272:458;;86247:483;86059:689;;;:::o;79163:716::-;79326:4;79372:2;79347:45;;;79393:19;:17;:19::i;:::-;79414:4;79420:7;79429:5;79347:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;79343:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79647:1;79630:6;:13;:18;79626:235;;79676:40;;;;;;;;;;;;;;79626:235;79819:6;79813:13;79804:6;79800:2;79796:15;79789:38;79343:529;79516:54;;;79506:64;;;:6;:64;;;;79499:71;;;79163:716;;;;;;:::o;14525:922::-;14578:7;14598:14;14615:1;14598:18;;14665:6;14656:5;:15;14652:102;;14701:6;14692:15;;;;;;:::i;:::-;;;;;14736:2;14726:12;;;;14652:102;14781:6;14772:5;:15;14768:102;;14817:6;14808:15;;;;;;:::i;:::-;;;;;14852:2;14842:12;;;;14768:102;14897:6;14888:5;:15;14884:102;;14933:6;14924:15;;;;;;:::i;:::-;;;;;14968:2;14958:12;;;;14884:102;15013:5;15004;:14;15000:99;;15048:5;15039:14;;;;;;:::i;:::-;;;;;15082:1;15072:11;;;;15000:99;15126:5;15117;:14;15113:99;;15161:5;15152:14;;;;;;:::i;:::-;;;;;15195:1;15185:11;;;;15113:99;15239:5;15230;:14;15226:99;;15274:5;15265:14;;;;;;:::i;:::-;;;;;15308:1;15298:11;;;;15226:99;15352:5;15343;:14;15339:66;;15388:1;15378:11;;;;15339:66;15433:6;15426:13;;;14525:922;;;:::o;92010:147::-;92147:6;92010:147;;;;;:::o;80341:2966::-;80414:20;80437:13;;80414:36;;80477:1;80465:8;:13;80461:44;;80487:18;;;;;;;;;;;;;;80461:44;80518:61;80548:1;80552:2;80556:12;80570:8;80518:21;:61::i;:::-;81062:1;54086:2;81032:1;:26;;81031:32;81019:8;:45;80993:18;:22;81012:2;80993:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;81341:139;81378:2;81432:33;81455:1;81459:2;81463:1;81432:14;:33::i;:::-;81399:30;81420:8;81399:20;:30::i;:::-;:66;81341:18;:139::i;:::-;81307:17;:31;81325:12;81307:31;;;;;;;;;;;:173;;;;81497:16;81528:11;81557:8;81542:12;:23;81528:37;;82078:16;82074:2;82070:25;82058:37;;82450:12;82410:8;82369:1;82307:25;82248:1;82187;82160:335;82821:1;82807:12;82803:20;82761:346;82862:3;82853:7;82850:16;82761:346;;83080:7;83070:8;83067:1;83040:25;83037:1;83034;83029:59;82915:1;82906:7;82902:15;82891:26;;82761:346;;;82765:77;83152:1;83140:8;:13;83136:45;;83162:19;;;;;;;;;;;;;;83136:45;83214:3;83198:13;:19;;;;80767:2462;;83239:60;83268:1;83272:2;83276:12;83290:8;83239:20;:60::i;:::-;80403:2904;80341:2966;;:::o;67777:324::-;67847:14;68080:1;68070:8;68067:15;68041:24;68037:46;68027:56;;67777:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:332::-;13083:4;13121:2;13110:9;13106:18;13098:26;;13134:71;13202:1;13191:9;13187:17;13178:6;13134:71;:::i;:::-;13215:72;13283:2;13272:9;13268:18;13259:6;13215:72;:::i;:::-;12962:332;;;;;:::o;13300:137::-;13354:5;13385:6;13379:13;13370:22;;13401:30;13425:5;13401:30;:::i;:::-;13300:137;;;;:::o;13443:345::-;13510:6;13559:2;13547:9;13538:7;13534:23;13530:32;13527:119;;;13565:79;;:::i;:::-;13527:119;13685:1;13710:61;13763:7;13754:6;13743:9;13739:22;13710:61;:::i;:::-;13700:71;;13656:125;13443:345;;;;:::o;13794:147::-;13895:11;13932:3;13917:18;;13794:147;;;;:::o;13947:114::-;;:::o;14067:398::-;14226:3;14247:83;14328:1;14323:3;14247:83;:::i;:::-;14240:90;;14339:93;14428:3;14339:93;:::i;:::-;14457:1;14452:3;14448:11;14441:18;;14067:398;;;:::o;14471:379::-;14655:3;14677:147;14820:3;14677:147;:::i;:::-;14670:154;;14841:3;14834:10;;14471:379;;;:::o;14856:236::-;14996:34;14992:1;14984:6;14980:14;14973:58;15065:19;15060:2;15052:6;15048:15;15041:44;14856:236;:::o;15098:366::-;15240:3;15261:67;15325:2;15320:3;15261:67;:::i;:::-;15254:74;;15337:93;15426:3;15337:93;:::i;:::-;15455:2;15450:3;15446:12;15439:19;;15098:366;;;:::o;15470:419::-;15636:4;15674:2;15663:9;15659:18;15651:26;;15723:9;15717:4;15713:20;15709:1;15698:9;15694:17;15687:47;15751:131;15877:4;15751:131;:::i;:::-;15743:139;;15470:419;;;:::o;15895:170::-;16035:22;16031:1;16023:6;16019:14;16012:46;15895:170;:::o;16071:366::-;16213:3;16234:67;16298:2;16293:3;16234:67;:::i;:::-;16227:74;;16310:93;16399:3;16310:93;:::i;:::-;16428:2;16423:3;16419:12;16412:19;;16071:366;;;:::o;16443:419::-;16609:4;16647:2;16636:9;16632:18;16624:26;;16696:9;16690:4;16686:20;16682:1;16671:9;16667:17;16660:47;16724:131;16850:4;16724:131;:::i;:::-;16716:139;;16443:419;;;:::o;16868:180::-;16916:77;16913:1;16906:88;17013:4;17010:1;17003:15;17037:4;17034:1;17027:15;17054:305;17094:3;17113:20;17131:1;17113:20;:::i;:::-;17108:25;;17147:20;17165:1;17147:20;:::i;:::-;17142:25;;17301:1;17233:66;17229:74;17226:1;17223:81;17220:107;;;17307:18;;:::i;:::-;17220:107;17351:1;17348;17344:9;17337:16;;17054:305;;;;:::o;17365:170::-;17505:22;17501:1;17493:6;17489:14;17482:46;17365:170;:::o;17541:366::-;17683:3;17704:67;17768:2;17763:3;17704:67;:::i;:::-;17697:74;;17780:93;17869:3;17780:93;:::i;:::-;17898:2;17893:3;17889:12;17882:19;;17541:366;;;:::o;17913:419::-;18079:4;18117:2;18106:9;18102:18;18094:26;;18166:9;18160:4;18156:20;18152:1;18141:9;18137:17;18130:47;18194:131;18320:4;18194:131;:::i;:::-;18186:139;;17913:419;;;:::o;18338:348::-;18378:7;18401:20;18419:1;18401:20;:::i;:::-;18396:25;;18435:20;18453:1;18435:20;:::i;:::-;18430:25;;18623:1;18555:66;18551:74;18548:1;18545:81;18540:1;18533:9;18526:17;18522:105;18519:131;;;18630:18;;:::i;:::-;18519:131;18678:1;18675;18671:9;18660:20;;18338:348;;;;:::o;18692:169::-;18832:21;18828:1;18820:6;18816:14;18809:45;18692:169;:::o;18867:366::-;19009:3;19030:67;19094:2;19089:3;19030:67;:::i;:::-;19023:74;;19106:93;19195:3;19106:93;:::i;:::-;19224:2;19219:3;19215:12;19208:19;;18867:366;;;:::o;19239:419::-;19405:4;19443:2;19432:9;19428:18;19420:26;;19492:9;19486:4;19482:20;19478:1;19467:9;19463:17;19456:47;19520:131;19646:4;19520:131;:::i;:::-;19512:139;;19239:419;;;:::o;19664:173::-;19804:25;19800:1;19792:6;19788:14;19781:49;19664:173;:::o;19843:366::-;19985:3;20006:67;20070:2;20065:3;20006:67;:::i;:::-;19999:74;;20082:93;20171:3;20082:93;:::i;:::-;20200:2;20195:3;20191:12;20184:19;;19843:366;;;:::o;20215:419::-;20381:4;20419:2;20408:9;20404:18;20396:26;;20468:9;20462:4;20458:20;20454:1;20443:9;20439:17;20432:47;20496:131;20622:4;20496:131;:::i;:::-;20488:139;;20215:419;;;:::o;20640:234::-;20780:34;20776:1;20768:6;20764:14;20757:58;20849:17;20844:2;20836:6;20832:15;20825:42;20640:234;:::o;20880:366::-;21022:3;21043:67;21107:2;21102:3;21043:67;:::i;:::-;21036:74;;21119:93;21208:3;21119:93;:::i;:::-;21237:2;21232:3;21228:12;21221:19;;20880:366;;;:::o;21252:419::-;21418:4;21456:2;21445:9;21441:18;21433:26;;21505:9;21499:4;21495:20;21491:1;21480:9;21476:17;21469:47;21533:131;21659:4;21533:131;:::i;:::-;21525:139;;21252:419;;;:::o;21677:148::-;21779:11;21816:3;21801:18;;21677:148;;;;:::o;21831:377::-;21937:3;21965:39;21998:5;21965:39;:::i;:::-;22020:89;22102:6;22097:3;22020:89;:::i;:::-;22013:96;;22118:52;22163:6;22158:3;22151:4;22144:5;22140:16;22118:52;:::i;:::-;22195:6;22190:3;22186:16;22179:23;;21941:267;21831:377;;;;:::o;22214:141::-;22263:4;22286:3;22278:11;;22309:3;22306:1;22299:14;22343:4;22340:1;22330:18;22322:26;;22214:141;;;:::o;22385:845::-;22488:3;22525:5;22519:12;22554:36;22580:9;22554:36;:::i;:::-;22606:89;22688:6;22683:3;22606:89;:::i;:::-;22599:96;;22726:1;22715:9;22711:17;22742:1;22737:137;;;;22888:1;22883:341;;;;22704:520;;22737:137;22821:4;22817:9;22806;22802:25;22797:3;22790:38;22857:6;22852:3;22848:16;22841:23;;22737:137;;22883:341;22950:38;22982:5;22950:38;:::i;:::-;23010:1;23024:154;23038:6;23035:1;23032:13;23024:154;;;23112:7;23106:14;23102:1;23097:3;23093:11;23086:35;23162:1;23153:7;23149:15;23138:26;;23060:4;23057:1;23053:12;23048:17;;23024:154;;;23207:6;23202:3;23198:16;23191:23;;22890:334;;22704:520;;22492:738;;22385:845;;;;:::o;23236:589::-;23461:3;23483:95;23574:3;23565:6;23483:95;:::i;:::-;23476:102;;23595:95;23686:3;23677:6;23595:95;:::i;:::-;23588:102;;23707:92;23795:3;23786:6;23707:92;:::i;:::-;23700:99;;23816:3;23809:10;;23236:589;;;;;;:::o;23831:225::-;23971:34;23967:1;23959:6;23955:14;23948:58;24040:8;24035:2;24027:6;24023:15;24016:33;23831:225;:::o;24062:366::-;24204:3;24225:67;24289:2;24284:3;24225:67;:::i;:::-;24218:74;;24301:93;24390:3;24301:93;:::i;:::-;24419:2;24414:3;24410:12;24403:19;;24062:366;;;:::o;24434:419::-;24600:4;24638:2;24627:9;24623:18;24615:26;;24687:9;24681:4;24677:20;24673:1;24662:9;24658:17;24651:47;24715:131;24841:4;24715:131;:::i;:::-;24707:139;;24434:419;;;:::o;24859:182::-;24999:34;24995:1;24987:6;24983:14;24976:58;24859:182;:::o;25047:366::-;25189:3;25210:67;25274:2;25269:3;25210:67;:::i;:::-;25203:74;;25286:93;25375:3;25286:93;:::i;:::-;25404:2;25399:3;25395:12;25388:19;;25047:366;;;:::o;25419:419::-;25585:4;25623:2;25612:9;25608:18;25600:26;;25672:9;25666:4;25662:20;25658:1;25647:9;25643:17;25636:47;25700:131;25826:4;25700:131;:::i;:::-;25692:139;;25419:419;;;:::o;25844:181::-;25984:33;25980:1;25972:6;25968:14;25961:57;25844:181;:::o;26031:366::-;26173:3;26194:67;26258:2;26253:3;26194:67;:::i;:::-;26187:74;;26270:93;26359:3;26270:93;:::i;:::-;26388:2;26383:3;26379:12;26372:19;;26031:366;;;:::o;26403:419::-;26569:4;26607:2;26596:9;26592:18;26584:26;;26656:9;26650:4;26646:20;26642:1;26631:9;26627:17;26620:47;26684:131;26810:4;26684:131;:::i;:::-;26676:139;;26403:419;;;:::o;26828:180::-;26876:77;26873:1;26866:88;26973:4;26970:1;26963:15;26997:4;26994:1;26987:15;27014:98;27065:6;27099:5;27093:12;27083:22;;27014:98;;;:::o;27118:168::-;27201:11;27235:6;27230:3;27223:19;27275:4;27270:3;27266:14;27251:29;;27118:168;;;;:::o;27292:360::-;27378:3;27406:38;27438:5;27406:38;:::i;:::-;27460:70;27523:6;27518:3;27460:70;:::i;:::-;27453:77;;27539:52;27584:6;27579:3;27572:4;27565:5;27561:16;27539:52;:::i;:::-;27616:29;27638:6;27616:29;:::i;:::-;27611:3;27607:39;27600:46;;27382:270;27292:360;;;;:::o;27658:640::-;27853:4;27891:3;27880:9;27876:19;27868:27;;27905:71;27973:1;27962:9;27958:17;27949:6;27905:71;:::i;:::-;27986:72;28054:2;28043:9;28039:18;28030:6;27986:72;:::i;:::-;28068;28136:2;28125:9;28121:18;28112:6;28068:72;:::i;:::-;28187:9;28181:4;28177:20;28172:2;28161:9;28157:18;28150:48;28215:76;28286:4;28277:6;28215:76;:::i;:::-;28207:84;;27658:640;;;;;;;:::o;28304:141::-;28360:5;28391:6;28385:13;28376:22;;28407:32;28433:5;28407:32;:::i;:::-;28304:141;;;;:::o;28451:349::-;28520:6;28569:2;28557:9;28548:7;28544:23;28540:32;28537:119;;;28575:79;;:::i;:::-;28537:119;28695:1;28720:63;28775:7;28766:6;28755:9;28751:22;28720:63;:::i;:::-;28710:73;;28666:127;28451:349;;;;:::o
Swarm Source
ipfs://40ecabdb4bb3348f79a472c25573881b1ec9176033c1b1ee8c3fffd7d52958c4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.