Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 PRNV
Holders
244
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 PRNVLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PrimeNavigator
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-04-08 */ // File: @openzeppelin/[email protected]/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/[email protected]/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: @openzeppelin/[email protected]/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/[email protected]/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } } // File: @openzeppelin/[email protected]/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/[email protected]/utils/Address.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/[email protected]/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/[email protected]/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/[email protected]/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } } // File: contracts/test.sol pragma solidity ^0.8.20; contract PrimeNavigator is ERC721 { using ECDSA for bytes32; address public owner; address public miner; address public cosigner; address public nftcaller; uint64 public mintCap; uint64 public expireTime; uint64 public totalMinted; uint64 public constant ONE_MINUTE = 1 minutes; string public baseurl; bool public allowobliterate; mapping(uint64 => bool) public _sigvalue; // traitId starts from 1. mapping(uint64 => string) public traitValue; mapping(uint64 => bool) public burndTokenId; event Burned(uint64 tokenId); event MetadataChanged( uint64 tokenId, uint256 timestamp, string traitType, string traitData ); error NotOwnerAuthorized(); error NotNFTCallercontract(); error NotMineAuthorized(); constructor( string memory name, string memory symbol, string memory _baseurl, uint64 _mintCap, uint64 _expire, address _miner, address _cosigner, address _nftcaller ) ERC721(name, symbol) { owner = msg.sender; mintCap = _mintCap; baseurl = _baseurl; miner = _miner; cosigner = _cosigner; expireTime = _expire * ONE_MINUTE; nftcaller = _nftcaller; } modifier onlyOwner() { if (msg.sender != owner) revert NotOwnerAuthorized(); _; } modifier onlyMiner() { if (msg.sender != miner) revert NotMineAuthorized(); _; } modifier onlynftCaller() { if (msg.sender != nftcaller) revert NotNFTCallercontract(); _; } function updateOwner(address newowner) external onlyOwner { require(newowner != address(0), "Invalid Owner"); owner = newowner; } function updateExpire(uint32 _expire) external onlyOwner { expireTime = _expire * ONE_MINUTE; } function updateMiner(address newminer) external onlyOwner { require(newminer != address(0), "Invalid miner"); miner = newminer; } function updateCosigner(address newcosigner) external onlyOwner { require(newcosigner != address(0), "Invalid cosigner"); cosigner = newcosigner; } function updateNftCaller(address newcaller) external onlyOwner { require(newcaller != address(0), "Invalid Owner"); nftcaller = newcaller; } function updateBaseURL(string memory _baseurl) external onlyOwner { require(bytes(_baseurl).length != 0, "Invalid baseurl"); baseurl = _baseurl; } function addTrait(uint64 traitId, string memory _traitValue) external onlyOwner { traitValue[traitId] = _traitValue; } function availMint() external view returns (uint256) { return mintCap - totalMinted; } function reconstructive( uint64 tokenID, uint64 timestamp, uint64 id, bytes memory sig ) external { require(msg.sender == ownerOf(tokenID), "Not NFT owner"); require(totalMinted >= mintCap, "Reconstructive not start"); assertValidCosign(tokenID, timestamp, id, 0, "", sig); _burn(tokenID); _mint(msg.sender, totalMinted); totalMinted += 1; } function metadataChanged( uint64 tokenID, uint64 timestamp, uint64 id, uint64 traitId, string memory data, bytes memory sig ) external { require(msg.sender == ownerOf(tokenID), "Not NFT owner"); assertValidCosign(tokenID, timestamp, id, traitId, data, sig); emit MetadataChanged( tokenID, block.timestamp, traitValue[traitId], data ); } function allowObliterate(bool _allow) external onlyOwner { allowobliterate = _allow; } function obliterate(uint64 amount) external onlyOwner { require(allowobliterate, "Burn not start"); uint64 ncount = amount + totalMinted >= mintCap ? mintCap : amount + totalMinted; uint64 mintedNFT = totalMinted; totalMinted = ncount; for (uint64 index = mintedNFT; index < ncount; index++) { _mint(msg.sender, index); _burn(index); burndTokenId[index] = true; } } function ownerMint(address[] memory receivers, uint64[] memory NFTIds) external onlyMiner { _airdrop(receivers, NFTIds); } function airdrop(address[] memory receivers, uint64[] memory NFTIds) external onlyMiner { _airdrop(receivers, NFTIds); } function nftCallerMintArray( address[] memory receivers, uint64[] memory NFTIds ) external onlynftCaller returns (bool) { return _airdrop(receivers, NFTIds); } function _airdrop(address[] memory receivers, uint64[] memory NFTIds) internal returns (bool) { uint256 NFTIdLen = NFTIds.length; require(receivers.length == NFTIdLen, "Mismatched length"); require(totalMinted + NFTIdLen <= mintCap, "Exceed mintcap"); totalMinted += uint64(NFTIdLen); address receiver; uint64 NFTId; for (uint64 i = 0; i < NFTIdLen; i++) { receiver = receivers[i]; NFTId = NFTIds[i]; if (receiver == address(0)) { continue; } if (burndTokenId[NFTId]) { emit Burned(NFTId); } else { _mint(receiver, NFTId); } } return true; } function burn(uint64 tokenId) external { require(msg.sender == ownerOf(tokenId), "Not NFT owner"); burndTokenId[tokenId] = true; _burn(tokenId); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { return bytes(baseurl).length != 0 ? string(abi.encodePacked(baseurl, _toString(tokenId), ".json")) : ""; } function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { let m := add(mload(0x40), 0xa0) mstore(0x40, m) str := sub(m, 0x20) mstore(str, 0) let end := str for { let temp := value } 1 { } { str := sub(str, 1) mstore8(str, add(48, mod(temp, 10))) temp := div(temp, 10) if iszero(temp) { break } } let length := sub(end, str) str := sub(str, 0x20) mstore(str, length) } } function assertValidCosign( uint64 tokenID, uint64 timestamp, uint64 id, uint64 traitId, string memory _traitValue, bytes memory sig ) internal returns (bool) { require((expireTime + timestamp >= block.timestamp), "HAS_Expired"); require((!_sigvalue[id]), "HAS_USED"); _sigvalue[id] = true; bytes32 hash; if (traitId == 0) { hash = keccak256(abi.encodePacked(tokenID, timestamp, id)); } else { hash = keccak256( abi.encodePacked(tokenID, timestamp, id, traitId, _traitValue) ); } require(matchSigner(hash, sig), "Invalid_Signature"); return true; } function matchSigner(bytes32 hash, bytes memory signature) internal view returns (bool) { return cosigner == hash.toEthSignedMessageHash().recover(signature); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_baseurl","type":"string"},{"internalType":"uint64","name":"_mintCap","type":"uint64"},{"internalType":"uint64","name":"_expire","type":"uint64"},{"internalType":"address","name":"_miner","type":"address"},{"internalType":"address","name":"_cosigner","type":"address"},{"internalType":"address","name":"_nftcaller","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"NotMineAuthorized","type":"error"},{"inputs":[],"name":"NotNFTCallercontract","type":"error"},{"inputs":[],"name":"NotOwnerAuthorized","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":false,"internalType":"uint64","name":"tokenId","type":"uint64"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"tokenId","type":"uint64"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"string","name":"traitType","type":"string"},{"indexed":false,"internalType":"string","name":"traitData","type":"string"}],"name":"MetadataChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ONE_MINUTE","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"","type":"uint64"}],"name":"_sigvalue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"traitId","type":"uint64"},{"internalType":"string","name":"_traitValue","type":"string"}],"name":"addTrait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint64[]","name":"NFTIds","type":"uint64[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_allow","type":"bool"}],"name":"allowObliterate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowobliterate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseurl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"tokenId","type":"uint64"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"","type":"uint64"}],"name":"burndTokenId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cosigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"expireTime","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"tokenID","type":"uint64"},{"internalType":"uint64","name":"timestamp","type":"uint64"},{"internalType":"uint64","name":"id","type":"uint64"},{"internalType":"uint64","name":"traitId","type":"uint64"},{"internalType":"string","name":"data","type":"string"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"metadataChanged","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"miner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCap","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint64[]","name":"NFTIds","type":"uint64[]"}],"name":"nftCallerMintArray","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nftcaller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"amount","type":"uint64"}],"name":"obliterate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint64[]","name":"NFTIds","type":"uint64[]"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"tokenID","type":"uint64"},{"internalType":"uint64","name":"timestamp","type":"uint64"},{"internalType":"uint64","name":"id","type":"uint64"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"reconstructive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"","type":"uint64"}],"name":"traitValue","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseurl","type":"string"}],"name":"updateBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newcosigner","type":"address"}],"name":"updateCosigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_expire","type":"uint32"}],"name":"updateExpire","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newminer","type":"address"}],"name":"updateMiner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newcaller","type":"address"}],"name":"updateNftCaller","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newowner","type":"address"}],"name":"updateOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620030db380380620030db833981016040819052620000349162000222565b87876000620000448382620003a0565b506001620000538282620003a0565b5050600680546001600160a01b0319163317905550600980546001600160401b038716600160a01b02600160a01b600160e01b0319909116179055600b6200009c8782620003a0565b50600780546001600160a01b038086166001600160a01b0319928316179092556008805492851692909116919091179055620000da603c856200046c565b600a80546001600160401b0319166001600160401b0392909216919091179055600980546001600160a01b0319166001600160a01b039290921691909117905550620004a695505050505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200015057600080fd5b81516001600160401b03808211156200016d576200016d62000128565b604051601f8301601f19908116603f0116810190828211818310171562000198576200019862000128565b81604052838152602092508683858801011115620001b557600080fd5b600091505b83821015620001d95785820183015181830184015290820190620001ba565b600093810190920192909252949350505050565b80516001600160401b03811681146200020557600080fd5b919050565b80516001600160a01b03811681146200020557600080fd5b600080600080600080600080610100898b0312156200024057600080fd5b88516001600160401b03808211156200025857600080fd5b620002668c838d016200013e565b995060208b01519150808211156200027d57600080fd5b6200028b8c838d016200013e565b985060408b0151915080821115620002a257600080fd5b50620002b18b828c016200013e565b965050620002c260608a01620001ed565b9450620002d260808a01620001ed565b9350620002e260a08a016200020a565b9250620002f260c08a016200020a565b91506200030260e08a016200020a565b90509295985092959890939650565b600181811c908216806200032657607f821691505b6020821081036200034757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200039b57600081815260208120601f850160051c81016020861015620003765750805b601f850160051c820191505b81811015620003975782815560010162000382565b5050505b505050565b81516001600160401b03811115620003bc57620003bc62000128565b620003d481620003cd845462000311565b846200034d565b602080601f8311600181146200040c5760008415620003f35750858301515b600019600386901b1c1916600185901b17855562000397565b600085815260208120601f198616915b828110156200043d578886015182559484019460019091019084016200041c565b50858210156200045c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b038181168382160280821691908281146200049e57634e487b7160e01b600052601160045260246000fd5b505092915050565b612c2580620004b66000396000f3fe608060405234801561001057600080fd5b506004361061025d5760003560e01c8063870d6f9d11610146578063b88d4fde116100c3578063d3cb831c11610087578063d3cb831c14610570578063d9f51de414610583578063dcaf160114610421578063e209ea4b14610596578063e985e9c5146105a9578063ec8154f0146105e557600080fd5b8063b88d4fde14610511578063c1e2af7d14610524578063c5b2d40414610537578063c87b56dd1461054a578063d325a7941461055d57600080fd5b806399a545d61161010a57806399a545d6146104ab5780639dbead42146104be578063a22cb465146104d1578063a2309ff8146104e4578063a488b3f0146104fe57600080fd5b8063870d6f9d14610447578063880cdc311461045a578063882e801b1461046d5780638da5cb5b1461049057806395d89b41146104a357600080fd5b806342842e0e116101df5780636c933b7f116101a35780636c933b7f146103cb57806370a08231146103e157806376c71ca1146103f45780637f0628f31461040e57806384c66be01461042157806386cf19b21461043457600080fd5b806342842e0e1461037d578063552eea49146103905780636352211e146103985780636495827b146103ab578063681232ad146103b857600080fd5b80630bac64c5116102265780630bac64c5146102f657806323b872dd146103195780632b16cad21461032c578063310a1ee31461033f578063349dc3291461036a57600080fd5b8062f6383b1461026257806301ffc9a71461028b57806306fdde03146102ae578063081812fc146102b6578063095ea7b3146102e1575b600080fd5b6102756102703660046120bd565b6105ed565b6040516102829190612128565b60405180910390f35b61029e610299366004612151565b610687565b6040519015158152602001610282565b6102756106d9565b6102c96102c436600461216e565b61076b565b6040516001600160a01b039091168152602001610282565b6102f46102ef36600461219e565b610792565b005b61029e6103043660046120bd565b600d6020526000908152604090205460ff1681565b6102f46103273660046121c8565b6108ac565b6102f461033a366004612204565b6108dd565b600a54610352906001600160401b031681565b6040516001600160401b039091168152602001610282565b6007546102c9906001600160a01b031681565b6102f461038b3660046121c8565b610970565b610352603c81565b6102c96103a636600461216e565b61098b565b600c5461029e9060ff1681565b6008546102c9906001600160a01b031681565b6103d36109eb565b604051908152602001610282565b6103d36103ef366004612204565b610a27565b60095461035290600160a01b90046001600160401b031681565b6009546102c9906001600160a01b031681565b6102f461042f3660046122fa565b610aad565b6102f4610442366004612428565b610ae2565b6102f4610455366004612496565b610c32565b6102f4610468366004612204565b610cb0565b61029e61047b3660046120bd565b600f6020526000908152604090205460ff1681565b6006546102c9906001600160a01b031681565b610275610d43565b6102f46104b93660046124ca565b610d52565b6102f46104cc3660046120bd565b610e00565b6102f46104df36600461257e565b610e71565b600a5461035290600160401b90046001600160401b031681565b6102f461050c3660046120bd565b610e7c565b6102f461051f3660046125b1565b61100e565b6102f4610532366004612600565b611040565b6102f4610545366004612643565b61108d565b61027561055836600461216e565b6110ed565b6102f461056b366004612204565b61114b565b6102f461057e366004612669565b6111e1565b61029e6105913660046122fa565b61121f565b6102f46105a4366004612204565b61125e565b61029e6105b7366004612684565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102756112f1565b600e6020526000908152604090208054610606906126ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610632906126ae565b801561067f5780601f106106545761010080835404028352916020019161067f565b820191906000526020600020905b81548152906001019060200180831161066257829003601f168201915b505050505081565b60006001600160e01b031982166380ac58cd60e01b14806106b857506001600160e01b03198216635b5e139f60e01b145b806106d357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e8906126ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610714906126ae565b80156107615780601f1061073657610100808354040283529160200191610761565b820191906000526020600020905b81548152906001019060200180831161074457829003601f168201915b5050505050905090565b6000610776826112fe565b506000908152600460205260409020546001600160a01b031690565b600061079d8261098b565b9050806001600160a01b0316836001600160a01b03160361080f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061082b575061082b81336105b7565b61089d5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610806565b6108a7838361135d565b505050565b6108b633826113cb565b6108d25760405162461bcd60e51b8152600401610806906126e8565b6108a783838361144a565b6006546001600160a01b0316331461090857604051630f380e1b60e01b815260040160405180910390fd5b6001600160a01b03811661094e5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21036b4b732b960991b6044820152606401610806565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6108a78383836040518060200160405280600081525061100e565b6000818152600260205260408120546001600160a01b0316806106d35760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610806565b600a54600954600091610a19916001600160401b03600160401b909204821691600160a01b9091041661274b565b6001600160401b0316905090565b60006001600160a01b038216610a915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610806565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610ad85760405163bd7af81b60e01b815260040160405180910390fd5b6108a782826115ae565b610af4846001600160401b031661098b565b6001600160a01b0316336001600160a01b031614610b245760405162461bcd60e51b815260040161080690612772565b600954600a54600160a01b9091046001600160401b03908116600160401b909204161015610b945760405162461bcd60e51b815260206004820152601860248201527f5265636f6e737472756374697665206e6f7420737461727400000000000000006044820152606401610806565b610bb2848484600060405180602001604052806000815250866117bc565b50610bc5846001600160401b0316611973565b600a54610be3903390600160401b90046001600160401b0316611a08565b6001600a60088282829054906101000a90046001600160401b0316610c089190612799565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555050505050565b6006546001600160a01b03163314610c5d57604051630f380e1b60e01b815260040160405180910390fd5b8051600003610ca05760405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a590818985cd95d5c9b608a1b6044820152606401610806565b600b610cac8282612807565b5050565b6006546001600160a01b03163314610cdb57604051630f380e1b60e01b815260040160405180910390fd5b6001600160a01b038116610d215760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21027bbb732b960991b6044820152606401610806565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546106e8906126ae565b610d64866001600160401b031661098b565b6001600160a01b0316336001600160a01b031614610d945760405162461bcd60e51b815260040161080690612772565b610da28686868686866117bc565b506001600160401b0383166000908152600e60205260409081902090517f3684ef9214dc06ed863cec870d6c5070f59432456a00ef3ce3523dc31ab2236091610df0918991429187906128c6565b60405180910390a1505050505050565b610e12816001600160401b031661098b565b6001600160a01b0316336001600160a01b031614610e425760405162461bcd60e51b815260040161080690612772565b6001600160401b0381166000818152600f60205260409020805460ff19166001179055610e6e90611973565b50565b610cac338383611b93565b6006546001600160a01b03163314610ea757604051630f380e1b60e01b815260040160405180910390fd5b600c5460ff16610eea5760405162461bcd60e51b815260206004820152600e60248201526d109d5c9b881b9bdd081cdd185c9d60921b6044820152606401610806565b600954600a546000916001600160401b03600160a01b909104811691610f1991600160401b9091041684612799565b6001600160401b03161015610f4a57600a54610f4590600160401b90046001600160401b031683612799565b610f5e565b600954600160a01b90046001600160401b03165b600a80546001600160401b03808416600160401b9081026fffffffffffffffff0000000000000000198416179093559293500416805b826001600160401b0316816001600160401b0316101561100857610fc133826001600160401b0316611a08565b610fd3816001600160401b0316611973565b6001600160401b0381166000908152600f60205260409020805460ff19166001179055806110008161297c565b915050610f94565b50505050565b61101833836113cb565b6110345760405162461bcd60e51b8152600401610806906126e8565b61100884848484611c61565b6006546001600160a01b0316331461106b57604051630f380e1b60e01b815260040160405180910390fd5b6001600160401b0382166000908152600e602052604090206108a78282612807565b6006546001600160a01b031633146110b857604051630f380e1b60e01b815260040160405180910390fd5b6110c9603c63ffffffff83166129a2565b600a805467ffffffffffffffff19166001600160401b039290921691909117905550565b6060600b80546110fc906126ae565b905060000361111a57604051806020016040528060008152506106d3565b600b61112583611c94565b6040516020016111369291906129cd565b60405160208183030381529060405292915050565b6006546001600160a01b0316331461117657604051630f380e1b60e01b815260040160405180910390fd5b6001600160a01b0381166111bf5760405162461bcd60e51b815260206004820152601060248201526f24b73b30b634b21031b7b9b4b3b732b960811b6044820152606401610806565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b0316331461120c57604051630f380e1b60e01b815260040160405180910390fd5b600c805460ff1916911515919091179055565b6009546000906001600160a01b0316331461124d576040516380edf8df60e01b815260040160405180910390fd5b61125783836115ae565b9392505050565b6006546001600160a01b0316331461128957604051630f380e1b60e01b815260040160405180910390fd5b6001600160a01b0381166112cf5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21027bbb732b960991b6044820152606401610806565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600b8054610606906126ae565b6000818152600260205260409020546001600160a01b0316610e6e5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610806565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113928261098b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113d78361098b565b9050806001600160a01b0316846001600160a01b0316148061141e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806114425750836001600160a01b03166114378461076b565b6001600160a01b0316145b949350505050565b826001600160a01b031661145d8261098b565b6001600160a01b0316146114835760405162461bcd60e51b815260040161080690612a64565b6001600160a01b0382166114e55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610806565b826001600160a01b03166114f88261098b565b6001600160a01b03161461151e5760405162461bcd60e51b815260040161080690612a64565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b805182516000919081146115f85760405162461bcd60e51b815260206004820152601160248201527009ad2e6dac2e8c6d0cac840d8cadccee8d607b1b6044820152606401610806565b600954600a546001600160401b03600160a01b909204821691611625918491600160401b90910416612aa9565b11156116645760405162461bcd60e51b815260206004820152600e60248201526d0457863656564206d696e746361760941b6044820152606401610806565b80600a60088282829054906101000a90046001600160401b03166116889190612799565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555060008060005b83816001600160401b031610156117af5786816001600160401b0316815181106116de576116de612abc565b6020026020010151925085816001600160401b03168151811061170357611703612abc565b6020026020010151915060006001600160a01b0316836001600160a01b0316031561179d576001600160401b0382166000908152600f602052604090205460ff161561178a576040516001600160401b03831681527f820f0e7218ce188e36cb0b1951dfbed8491dec426f4c2d16e09e73f8248defca9060200160405180910390a161179d565b61179d83836001600160401b0316611a08565b806117a78161297c565b9150506116b2565b5060019695505050505050565b600a5460009042906117d89088906001600160401b0316612799565b6001600160401b0316101561181d5760405162461bcd60e51b815260206004820152600b60248201526a121054d7d15e1c1a5c995960aa1b6044820152606401610806565b6001600160401b0385166000908152600d602052604090205460ff16156118715760405162461bcd60e51b8152602060048201526008602482015267121054d7d554d15160c21b6044820152606401610806565b6001600160401b038086166000908152600d60205260408120805460ff1916600117905590851681036118e9576040516001600160c01b031960c08a811b8216602084015289811b8216602884015288901b16603082015260380160405160208183030381529060405280519060200120905061191b565b8787878787604051602001611902959493929190612ad2565b6040516020818303038152906040528051906020012090505b6119258184611cd8565b6119655760405162461bcd60e51b8152602060048201526011602482015270496e76616c69645f5369676e617475726560781b6044820152606401610806565b506001979650505050505050565b600061197e8261098b565b90506119898261098b565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b038216611a5e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610806565b6000818152600260205260409020546001600160a01b031615611ac35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610806565b6000818152600260205260409020546001600160a01b031615611b285760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610806565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031603611bf45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610806565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c6c84848461144a565b611c7884848484611d29565b6110085760405162461bcd60e51b815260040161080690612b2d565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611cae5750819003601f19909101908152919050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000908152601c839052603c8120611d119083611e2a565b6008546001600160a01b039182169116149392505050565b60006001600160a01b0384163b15611e1f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d6d903390899088908890600401612b7f565b6020604051808303816000875af1925050508015611da8575060408051601f3d908101601f19168201909252611da591810190612bbc565b60015b611e05573d808015611dd6576040519150601f19603f3d011682016040523d82523d6000602084013e611ddb565b606091505b508051600003611dfd5760405162461bcd60e51b815260040161080690612b2d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611442565b506001949350505050565b6000806000611e398585611e4e565b91509150611e4681611e93565b509392505050565b6000808251604103611e845760208301516040840151606085015160001a611e7887828585611fdd565b94509450505050611e8c565b506000905060025b9250929050565b6000816004811115611ea757611ea7612bd9565b03611eaf5750565b6001816004811115611ec357611ec3612bd9565b03611f105760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610806565b6002816004811115611f2457611f24612bd9565b03611f715760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610806565b6003816004811115611f8557611f85612bd9565b03610e6e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610806565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156120145750600090506003612098565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612068573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661209157600060019250925050612098565b9150600090505b94509492505050565b80356001600160401b03811681146120b857600080fd5b919050565b6000602082840312156120cf57600080fd5b611257826120a1565b60005b838110156120f35781810151838201526020016120db565b50506000910152565b600081518084526121148160208601602086016120d8565b601f01601f19169290920160200192915050565b60208152600061125760208301846120fc565b6001600160e01b031981168114610e6e57600080fd5b60006020828403121561216357600080fd5b81356112578161213b565b60006020828403121561218057600080fd5b5035919050565b80356001600160a01b03811681146120b857600080fd5b600080604083850312156121b157600080fd5b6121ba83612187565b946020939093013593505050565b6000806000606084860312156121dd57600080fd5b6121e684612187565b92506121f460208501612187565b9150604084013590509250925092565b60006020828403121561221657600080fd5b61125782612187565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561225d5761225d61221f565b604052919050565b60006001600160401b0382111561227e5761227e61221f565b5060051b60200190565b600082601f83011261229957600080fd5b813560206122ae6122a983612265565b612235565b82815260059290921b840181019181810190868411156122cd57600080fd5b8286015b848110156122ef576122e2816120a1565b83529183019183016122d1565b509695505050505050565b6000806040838503121561230d57600080fd5b82356001600160401b038082111561232457600080fd5b818501915085601f83011261233857600080fd5b813560206123486122a983612265565b82815260059290921b8401810191818101908984111561236757600080fd5b948201945b8386101561238c5761237d86612187565b8252948201949082019061236c565b965050860135925050808211156123a257600080fd5b506123af85828601612288565b9150509250929050565b600082601f8301126123ca57600080fd5b81356001600160401b038111156123e3576123e361221f565b6123f6601f8201601f1916602001612235565b81815284602083860101111561240b57600080fd5b816020850160208301376000918101602001919091529392505050565b6000806000806080858703121561243e57600080fd5b612447856120a1565b9350612455602086016120a1565b9250612463604086016120a1565b915060608501356001600160401b0381111561247e57600080fd5b61248a878288016123b9565b91505092959194509250565b6000602082840312156124a857600080fd5b81356001600160401b038111156124be57600080fd5b611442848285016123b9565b60008060008060008060c087890312156124e357600080fd5b6124ec876120a1565b95506124fa602088016120a1565b9450612508604088016120a1565b9350612516606088016120a1565b925060808701356001600160401b038082111561253257600080fd5b61253e8a838b016123b9565b935060a089013591508082111561255457600080fd5b5061256189828a016123b9565b9150509295509295509295565b803580151581146120b857600080fd5b6000806040838503121561259157600080fd5b61259a83612187565b91506125a86020840161256e565b90509250929050565b600080600080608085870312156125c757600080fd5b6125d085612187565b93506125de60208601612187565b92506040850135915060608501356001600160401b0381111561247e57600080fd5b6000806040838503121561261357600080fd5b61261c836120a1565b915060208301356001600160401b0381111561263757600080fd5b6123af858286016123b9565b60006020828403121561265557600080fd5b813563ffffffff8116811461125757600080fd5b60006020828403121561267b57600080fd5b6112578261256e565b6000806040838503121561269757600080fd5b6126a083612187565b91506125a860208401612187565b600181811c908216806126c257607f821691505b6020821081036126e257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6001600160401b0382811682821603908082111561276b5761276b612735565b5092915050565b6020808252600d908201526c2737ba1027232a1037bbb732b960991b604082015260600190565b6001600160401b0381811683821601908082111561276b5761276b612735565b601f8211156108a757600081815260208120601f850160051c810160208610156127e05750805b601f850160051c820191505b818110156127ff578281556001016127ec565b505050505050565b81516001600160401b038111156128205761282061221f565b6128348161282e84546126ae565b846127b9565b602080601f83116001811461286957600084156128515750858301515b600019600386901b1c1916600185901b1785556127ff565b600085815260208120601f198616915b8281101561289857888601518255948401946001909101908401612879565b50858210156128b65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b038516815260006020858184015260806040840152600085546128ef816126ae565b80608087015260a0600180841660008114612911576001811461292b57612959565b60ff1985168984015283151560051b890183019550612959565b8a6000528660002060005b858110156129515781548b8201860152908301908801612936565b8a0184019650505b5050505050838103606085015261297081866120fc565b98975050505050505050565b60006001600160401b0380831681810361299857612998612735565b6001019392505050565b6001600160401b038181168382160280821691908281146129c5576129c5612735565b505092915050565b60008084546129db816126ae565b600182811680156129f35760018114612a0857612a37565b60ff1984168752821515830287019450612a37565b8860005260208060002060005b85811015612a2e5781548a820152908401908201612a15565b50505082870194505b505050508351612a4b8183602088016120d8565b64173539b7b760d91b9101908152600501949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b808201808211156106d3576106d3612735565b634e487b7160e01b600052603260045260246000fd5b60006001600160401b0360c01b808860c01b168352808760c01b166008840152808660c01b166010840152808560c01b166018840152508251612b1c8160208501602087016120d8565b919091016020019695505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bb2908301846120fc565b9695505050505050565b600060208284031215612bce57600080fd5b81516112578161213b565b634e487b7160e01b600052602160045260246000fdfea264697066735822122093e6a0ed2fc983c874dbe44ac55d896dd8fddf9afcbd44fbf5d96efd1f80d41064736f6c634300081400330000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000bf000000000000000000000000000000000000000000000000000000000000000050000000000000000000000001e00cbb7fc2ee47a344dd87e631de2c2f4d4c40c0000000000000000000000001e00cbb7fc2ee47a344dd87e631de2c2f4d4c40c0000000000000000000000001e00cbb7fc2ee47a344dd87e631de2c2f4d4c40c000000000000000000000000000000000000000000000000000000000000000f5072696d65204e6176696761746f720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000450524e5600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6d657461646174612e73706163656e6174696f6e2e6f6e6c696e652f7072696d652d6e6176696761746f722f000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061025d5760003560e01c8063870d6f9d11610146578063b88d4fde116100c3578063d3cb831c11610087578063d3cb831c14610570578063d9f51de414610583578063dcaf160114610421578063e209ea4b14610596578063e985e9c5146105a9578063ec8154f0146105e557600080fd5b8063b88d4fde14610511578063c1e2af7d14610524578063c5b2d40414610537578063c87b56dd1461054a578063d325a7941461055d57600080fd5b806399a545d61161010a57806399a545d6146104ab5780639dbead42146104be578063a22cb465146104d1578063a2309ff8146104e4578063a488b3f0146104fe57600080fd5b8063870d6f9d14610447578063880cdc311461045a578063882e801b1461046d5780638da5cb5b1461049057806395d89b41146104a357600080fd5b806342842e0e116101df5780636c933b7f116101a35780636c933b7f146103cb57806370a08231146103e157806376c71ca1146103f45780637f0628f31461040e57806384c66be01461042157806386cf19b21461043457600080fd5b806342842e0e1461037d578063552eea49146103905780636352211e146103985780636495827b146103ab578063681232ad146103b857600080fd5b80630bac64c5116102265780630bac64c5146102f657806323b872dd146103195780632b16cad21461032c578063310a1ee31461033f578063349dc3291461036a57600080fd5b8062f6383b1461026257806301ffc9a71461028b57806306fdde03146102ae578063081812fc146102b6578063095ea7b3146102e1575b600080fd5b6102756102703660046120bd565b6105ed565b6040516102829190612128565b60405180910390f35b61029e610299366004612151565b610687565b6040519015158152602001610282565b6102756106d9565b6102c96102c436600461216e565b61076b565b6040516001600160a01b039091168152602001610282565b6102f46102ef36600461219e565b610792565b005b61029e6103043660046120bd565b600d6020526000908152604090205460ff1681565b6102f46103273660046121c8565b6108ac565b6102f461033a366004612204565b6108dd565b600a54610352906001600160401b031681565b6040516001600160401b039091168152602001610282565b6007546102c9906001600160a01b031681565b6102f461038b3660046121c8565b610970565b610352603c81565b6102c96103a636600461216e565b61098b565b600c5461029e9060ff1681565b6008546102c9906001600160a01b031681565b6103d36109eb565b604051908152602001610282565b6103d36103ef366004612204565b610a27565b60095461035290600160a01b90046001600160401b031681565b6009546102c9906001600160a01b031681565b6102f461042f3660046122fa565b610aad565b6102f4610442366004612428565b610ae2565b6102f4610455366004612496565b610c32565b6102f4610468366004612204565b610cb0565b61029e61047b3660046120bd565b600f6020526000908152604090205460ff1681565b6006546102c9906001600160a01b031681565b610275610d43565b6102f46104b93660046124ca565b610d52565b6102f46104cc3660046120bd565b610e00565b6102f46104df36600461257e565b610e71565b600a5461035290600160401b90046001600160401b031681565b6102f461050c3660046120bd565b610e7c565b6102f461051f3660046125b1565b61100e565b6102f4610532366004612600565b611040565b6102f4610545366004612643565b61108d565b61027561055836600461216e565b6110ed565b6102f461056b366004612204565b61114b565b6102f461057e366004612669565b6111e1565b61029e6105913660046122fa565b61121f565b6102f46105a4366004612204565b61125e565b61029e6105b7366004612684565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102756112f1565b600e6020526000908152604090208054610606906126ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610632906126ae565b801561067f5780601f106106545761010080835404028352916020019161067f565b820191906000526020600020905b81548152906001019060200180831161066257829003601f168201915b505050505081565b60006001600160e01b031982166380ac58cd60e01b14806106b857506001600160e01b03198216635b5e139f60e01b145b806106d357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e8906126ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610714906126ae565b80156107615780601f1061073657610100808354040283529160200191610761565b820191906000526020600020905b81548152906001019060200180831161074457829003601f168201915b5050505050905090565b6000610776826112fe565b506000908152600460205260409020546001600160a01b031690565b600061079d8261098b565b9050806001600160a01b0316836001600160a01b03160361080f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061082b575061082b81336105b7565b61089d5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610806565b6108a7838361135d565b505050565b6108b633826113cb565b6108d25760405162461bcd60e51b8152600401610806906126e8565b6108a783838361144a565b6006546001600160a01b0316331461090857604051630f380e1b60e01b815260040160405180910390fd5b6001600160a01b03811661094e5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21036b4b732b960991b6044820152606401610806565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6108a78383836040518060200160405280600081525061100e565b6000818152600260205260408120546001600160a01b0316806106d35760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610806565b600a54600954600091610a19916001600160401b03600160401b909204821691600160a01b9091041661274b565b6001600160401b0316905090565b60006001600160a01b038216610a915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610806565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610ad85760405163bd7af81b60e01b815260040160405180910390fd5b6108a782826115ae565b610af4846001600160401b031661098b565b6001600160a01b0316336001600160a01b031614610b245760405162461bcd60e51b815260040161080690612772565b600954600a54600160a01b9091046001600160401b03908116600160401b909204161015610b945760405162461bcd60e51b815260206004820152601860248201527f5265636f6e737472756374697665206e6f7420737461727400000000000000006044820152606401610806565b610bb2848484600060405180602001604052806000815250866117bc565b50610bc5846001600160401b0316611973565b600a54610be3903390600160401b90046001600160401b0316611a08565b6001600a60088282829054906101000a90046001600160401b0316610c089190612799565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555050505050565b6006546001600160a01b03163314610c5d57604051630f380e1b60e01b815260040160405180910390fd5b8051600003610ca05760405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a590818985cd95d5c9b608a1b6044820152606401610806565b600b610cac8282612807565b5050565b6006546001600160a01b03163314610cdb57604051630f380e1b60e01b815260040160405180910390fd5b6001600160a01b038116610d215760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21027bbb732b960991b6044820152606401610806565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546106e8906126ae565b610d64866001600160401b031661098b565b6001600160a01b0316336001600160a01b031614610d945760405162461bcd60e51b815260040161080690612772565b610da28686868686866117bc565b506001600160401b0383166000908152600e60205260409081902090517f3684ef9214dc06ed863cec870d6c5070f59432456a00ef3ce3523dc31ab2236091610df0918991429187906128c6565b60405180910390a1505050505050565b610e12816001600160401b031661098b565b6001600160a01b0316336001600160a01b031614610e425760405162461bcd60e51b815260040161080690612772565b6001600160401b0381166000818152600f60205260409020805460ff19166001179055610e6e90611973565b50565b610cac338383611b93565b6006546001600160a01b03163314610ea757604051630f380e1b60e01b815260040160405180910390fd5b600c5460ff16610eea5760405162461bcd60e51b815260206004820152600e60248201526d109d5c9b881b9bdd081cdd185c9d60921b6044820152606401610806565b600954600a546000916001600160401b03600160a01b909104811691610f1991600160401b9091041684612799565b6001600160401b03161015610f4a57600a54610f4590600160401b90046001600160401b031683612799565b610f5e565b600954600160a01b90046001600160401b03165b600a80546001600160401b03808416600160401b9081026fffffffffffffffff0000000000000000198416179093559293500416805b826001600160401b0316816001600160401b0316101561100857610fc133826001600160401b0316611a08565b610fd3816001600160401b0316611973565b6001600160401b0381166000908152600f60205260409020805460ff19166001179055806110008161297c565b915050610f94565b50505050565b61101833836113cb565b6110345760405162461bcd60e51b8152600401610806906126e8565b61100884848484611c61565b6006546001600160a01b0316331461106b57604051630f380e1b60e01b815260040160405180910390fd5b6001600160401b0382166000908152600e602052604090206108a78282612807565b6006546001600160a01b031633146110b857604051630f380e1b60e01b815260040160405180910390fd5b6110c9603c63ffffffff83166129a2565b600a805467ffffffffffffffff19166001600160401b039290921691909117905550565b6060600b80546110fc906126ae565b905060000361111a57604051806020016040528060008152506106d3565b600b61112583611c94565b6040516020016111369291906129cd565b60405160208183030381529060405292915050565b6006546001600160a01b0316331461117657604051630f380e1b60e01b815260040160405180910390fd5b6001600160a01b0381166111bf5760405162461bcd60e51b815260206004820152601060248201526f24b73b30b634b21031b7b9b4b3b732b960811b6044820152606401610806565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b0316331461120c57604051630f380e1b60e01b815260040160405180910390fd5b600c805460ff1916911515919091179055565b6009546000906001600160a01b0316331461124d576040516380edf8df60e01b815260040160405180910390fd5b61125783836115ae565b9392505050565b6006546001600160a01b0316331461128957604051630f380e1b60e01b815260040160405180910390fd5b6001600160a01b0381166112cf5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21027bbb732b960991b6044820152606401610806565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600b8054610606906126ae565b6000818152600260205260409020546001600160a01b0316610e6e5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610806565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113928261098b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113d78361098b565b9050806001600160a01b0316846001600160a01b0316148061141e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806114425750836001600160a01b03166114378461076b565b6001600160a01b0316145b949350505050565b826001600160a01b031661145d8261098b565b6001600160a01b0316146114835760405162461bcd60e51b815260040161080690612a64565b6001600160a01b0382166114e55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610806565b826001600160a01b03166114f88261098b565b6001600160a01b03161461151e5760405162461bcd60e51b815260040161080690612a64565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b805182516000919081146115f85760405162461bcd60e51b815260206004820152601160248201527009ad2e6dac2e8c6d0cac840d8cadccee8d607b1b6044820152606401610806565b600954600a546001600160401b03600160a01b909204821691611625918491600160401b90910416612aa9565b11156116645760405162461bcd60e51b815260206004820152600e60248201526d0457863656564206d696e746361760941b6044820152606401610806565b80600a60088282829054906101000a90046001600160401b03166116889190612799565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555060008060005b83816001600160401b031610156117af5786816001600160401b0316815181106116de576116de612abc565b6020026020010151925085816001600160401b03168151811061170357611703612abc565b6020026020010151915060006001600160a01b0316836001600160a01b0316031561179d576001600160401b0382166000908152600f602052604090205460ff161561178a576040516001600160401b03831681527f820f0e7218ce188e36cb0b1951dfbed8491dec426f4c2d16e09e73f8248defca9060200160405180910390a161179d565b61179d83836001600160401b0316611a08565b806117a78161297c565b9150506116b2565b5060019695505050505050565b600a5460009042906117d89088906001600160401b0316612799565b6001600160401b0316101561181d5760405162461bcd60e51b815260206004820152600b60248201526a121054d7d15e1c1a5c995960aa1b6044820152606401610806565b6001600160401b0385166000908152600d602052604090205460ff16156118715760405162461bcd60e51b8152602060048201526008602482015267121054d7d554d15160c21b6044820152606401610806565b6001600160401b038086166000908152600d60205260408120805460ff1916600117905590851681036118e9576040516001600160c01b031960c08a811b8216602084015289811b8216602884015288901b16603082015260380160405160208183030381529060405280519060200120905061191b565b8787878787604051602001611902959493929190612ad2565b6040516020818303038152906040528051906020012090505b6119258184611cd8565b6119655760405162461bcd60e51b8152602060048201526011602482015270496e76616c69645f5369676e617475726560781b6044820152606401610806565b506001979650505050505050565b600061197e8261098b565b90506119898261098b565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b038216611a5e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610806565b6000818152600260205260409020546001600160a01b031615611ac35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610806565b6000818152600260205260409020546001600160a01b031615611b285760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610806565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031603611bf45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610806565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c6c84848461144a565b611c7884848484611d29565b6110085760405162461bcd60e51b815260040161080690612b2d565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611cae5750819003601f19909101908152919050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000908152601c839052603c8120611d119083611e2a565b6008546001600160a01b039182169116149392505050565b60006001600160a01b0384163b15611e1f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d6d903390899088908890600401612b7f565b6020604051808303816000875af1925050508015611da8575060408051601f3d908101601f19168201909252611da591810190612bbc565b60015b611e05573d808015611dd6576040519150601f19603f3d011682016040523d82523d6000602084013e611ddb565b606091505b508051600003611dfd5760405162461bcd60e51b815260040161080690612b2d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611442565b506001949350505050565b6000806000611e398585611e4e565b91509150611e4681611e93565b509392505050565b6000808251604103611e845760208301516040840151606085015160001a611e7887828585611fdd565b94509450505050611e8c565b506000905060025b9250929050565b6000816004811115611ea757611ea7612bd9565b03611eaf5750565b6001816004811115611ec357611ec3612bd9565b03611f105760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610806565b6002816004811115611f2457611f24612bd9565b03611f715760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610806565b6003816004811115611f8557611f85612bd9565b03610e6e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610806565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156120145750600090506003612098565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612068573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661209157600060019250925050612098565b9150600090505b94509492505050565b80356001600160401b03811681146120b857600080fd5b919050565b6000602082840312156120cf57600080fd5b611257826120a1565b60005b838110156120f35781810151838201526020016120db565b50506000910152565b600081518084526121148160208601602086016120d8565b601f01601f19169290920160200192915050565b60208152600061125760208301846120fc565b6001600160e01b031981168114610e6e57600080fd5b60006020828403121561216357600080fd5b81356112578161213b565b60006020828403121561218057600080fd5b5035919050565b80356001600160a01b03811681146120b857600080fd5b600080604083850312156121b157600080fd5b6121ba83612187565b946020939093013593505050565b6000806000606084860312156121dd57600080fd5b6121e684612187565b92506121f460208501612187565b9150604084013590509250925092565b60006020828403121561221657600080fd5b61125782612187565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561225d5761225d61221f565b604052919050565b60006001600160401b0382111561227e5761227e61221f565b5060051b60200190565b600082601f83011261229957600080fd5b813560206122ae6122a983612265565b612235565b82815260059290921b840181019181810190868411156122cd57600080fd5b8286015b848110156122ef576122e2816120a1565b83529183019183016122d1565b509695505050505050565b6000806040838503121561230d57600080fd5b82356001600160401b038082111561232457600080fd5b818501915085601f83011261233857600080fd5b813560206123486122a983612265565b82815260059290921b8401810191818101908984111561236757600080fd5b948201945b8386101561238c5761237d86612187565b8252948201949082019061236c565b965050860135925050808211156123a257600080fd5b506123af85828601612288565b9150509250929050565b600082601f8301126123ca57600080fd5b81356001600160401b038111156123e3576123e361221f565b6123f6601f8201601f1916602001612235565b81815284602083860101111561240b57600080fd5b816020850160208301376000918101602001919091529392505050565b6000806000806080858703121561243e57600080fd5b612447856120a1565b9350612455602086016120a1565b9250612463604086016120a1565b915060608501356001600160401b0381111561247e57600080fd5b61248a878288016123b9565b91505092959194509250565b6000602082840312156124a857600080fd5b81356001600160401b038111156124be57600080fd5b611442848285016123b9565b60008060008060008060c087890312156124e357600080fd5b6124ec876120a1565b95506124fa602088016120a1565b9450612508604088016120a1565b9350612516606088016120a1565b925060808701356001600160401b038082111561253257600080fd5b61253e8a838b016123b9565b935060a089013591508082111561255457600080fd5b5061256189828a016123b9565b9150509295509295509295565b803580151581146120b857600080fd5b6000806040838503121561259157600080fd5b61259a83612187565b91506125a86020840161256e565b90509250929050565b600080600080608085870312156125c757600080fd5b6125d085612187565b93506125de60208601612187565b92506040850135915060608501356001600160401b0381111561247e57600080fd5b6000806040838503121561261357600080fd5b61261c836120a1565b915060208301356001600160401b0381111561263757600080fd5b6123af858286016123b9565b60006020828403121561265557600080fd5b813563ffffffff8116811461125757600080fd5b60006020828403121561267b57600080fd5b6112578261256e565b6000806040838503121561269757600080fd5b6126a083612187565b91506125a860208401612187565b600181811c908216806126c257607f821691505b6020821081036126e257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6001600160401b0382811682821603908082111561276b5761276b612735565b5092915050565b6020808252600d908201526c2737ba1027232a1037bbb732b960991b604082015260600190565b6001600160401b0381811683821601908082111561276b5761276b612735565b601f8211156108a757600081815260208120601f850160051c810160208610156127e05750805b601f850160051c820191505b818110156127ff578281556001016127ec565b505050505050565b81516001600160401b038111156128205761282061221f565b6128348161282e84546126ae565b846127b9565b602080601f83116001811461286957600084156128515750858301515b600019600386901b1c1916600185901b1785556127ff565b600085815260208120601f198616915b8281101561289857888601518255948401946001909101908401612879565b50858210156128b65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b038516815260006020858184015260806040840152600085546128ef816126ae565b80608087015260a0600180841660008114612911576001811461292b57612959565b60ff1985168984015283151560051b890183019550612959565b8a6000528660002060005b858110156129515781548b8201860152908301908801612936565b8a0184019650505b5050505050838103606085015261297081866120fc565b98975050505050505050565b60006001600160401b0380831681810361299857612998612735565b6001019392505050565b6001600160401b038181168382160280821691908281146129c5576129c5612735565b505092915050565b60008084546129db816126ae565b600182811680156129f35760018114612a0857612a37565b60ff1984168752821515830287019450612a37565b8860005260208060002060005b85811015612a2e5781548a820152908401908201612a15565b50505082870194505b505050508351612a4b8183602088016120d8565b64173539b7b760d91b9101908152600501949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b808201808211156106d3576106d3612735565b634e487b7160e01b600052603260045260246000fd5b60006001600160401b0360c01b808860c01b168352808760c01b166008840152808660c01b166010840152808560c01b166018840152508251612b1c8160208501602087016120d8565b919091016020019695505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bb2908301846120fc565b9695505050505050565b600060208284031215612bce57600080fd5b81516112578161213b565b634e487b7160e01b600052602160045260246000fdfea264697066735822122093e6a0ed2fc983c874dbe44ac55d896dd8fddf9afcbd44fbf5d96efd1f80d41064736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000bf000000000000000000000000000000000000000000000000000000000000000050000000000000000000000001e00cbb7fc2ee47a344dd87e631de2c2f4d4c40c0000000000000000000000001e00cbb7fc2ee47a344dd87e631de2c2f4d4c40c0000000000000000000000001e00cbb7fc2ee47a344dd87e631de2c2f4d4c40c000000000000000000000000000000000000000000000000000000000000000f5072696d65204e6176696761746f720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000450524e5600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6d657461646174612e73706163656e6174696f6e2e6f6e6c696e652f7072696d652d6e6176696761746f722f000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Prime Navigator
Arg [1] : symbol (string): PRNV
Arg [2] : _baseurl (string): https://metadata.spacenation.online/prime-navigator/
Arg [3] : _mintCap (uint64): 3056
Arg [4] : _expire (uint64): 5
Arg [5] : _miner (address): 0x1E00CBB7fC2Ee47a344DD87E631De2c2F4D4c40c
Arg [6] : _cosigner (address): 0x1E00CBB7fC2Ee47a344DD87E631De2c2F4D4c40c
Arg [7] : _nftcaller (address): 0x1E00CBB7fC2Ee47a344DD87E631De2c2F4D4c40c
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000bf0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 0000000000000000000000001e00cbb7fc2ee47a344dd87e631de2c2f4d4c40c
Arg [6] : 0000000000000000000000001e00cbb7fc2ee47a344dd87e631de2c2f4d4c40c
Arg [7] : 0000000000000000000000001e00cbb7fc2ee47a344dd87e631de2c2f4d4c40c
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [9] : 5072696d65204e6176696761746f720000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [11] : 50524e5600000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [13] : 68747470733a2f2f6d657461646174612e73706163656e6174696f6e2e6f6e6c
Arg [14] : 696e652f7072696d652d6e6176696761746f722f000000000000000000000000
Deployed Bytecode Sourcemap
63410:8053:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63881:43;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47490:305;;;;;;:::i;:::-;;:::i;:::-;;;1686:14:1;;1679:22;1661:41;;1649:2;1634:18;47490:305:0;1521:187:1;48418:100:0;;;:::i;49930:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2062:32:1;;;2044:51;;2032:2;2017:18;49930:171:0;1898:203:1;49448:416:0;;;;;;:::i;:::-;;:::i;:::-;;63803:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;50630:301;;;;;;:::i;:::-;;:::i;65386:152::-;;;;;;:::i;:::-;;:::i;63624:24::-;;;;;-1:-1:-1;;;;;63624:24:0;;;;;;-1:-1:-1;;;;;3229:31:1;;;3211:50;;3199:2;3184:18;63624:24:0;3067:200:1;63508:20:0;;;;;-1:-1:-1;;;;;63508:20:0;;;51002:151;;;;;;:::i;:::-;;:::i;63687:45::-;;63723:9;63687:45;;48128:223;;;;;;:::i;:::-;;:::i;63767:27::-;;;;;;;;;63535:23;;;;;-1:-1:-1;;;;;63535:23:0;;;66235:100;;;:::i;:::-;;;3418:25:1;;;3406:2;3391:18;66235:100:0;3272:177:1;47859:207:0;;;;;;:::i;:::-;;:::i;63596:21::-;;;;;-1:-1:-1;;;63596:21:0;;-1:-1:-1;;;;;63596:21:0;;;63565:24;;;;;-1:-1:-1;;;;;63565:24:0;;;67895:159;;;;;;:::i;:::-;;:::i;66343:441::-;;;;;;:::i;:::-;;:::i;65895:169::-;;;;;;:::i;:::-;;:::i;65109:152::-;;;;;;:::i;:::-;;:::i;63931:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;63481:20;;;;;-1:-1:-1;;;;;63481:20:0;;;48587:104;;;:::i;66792:490::-;;;;;;:::i;:::-;;:::i;69233:178::-;;;;;;:::i;:::-;;:::i;50173:155::-;;;;;;:::i;:::-;;:::i;63655:25::-;;;;;-1:-1:-1;;;63655:25:0;;-1:-1:-1;;;;;63655:25:0;;;67398:489;;;;;;:::i;:::-;;:::i;51224:279::-;;;;;;:::i;:::-;;:::i;66072:155::-;;;;;;:::i;:::-;;:::i;65269:109::-;;;;;;:::i;:::-;;:::i;69419:307::-;;;;;;:::i;:::-;;:::i;65546:170::-;;;;;;:::i;:::-;;:::i;67290:100::-;;;;;;:::i;:::-;;:::i;68227:196::-;;;;;;:::i;:::-;;:::i;65724:163::-;;;;;;:::i;:::-;;:::i;50399:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;50520:25:0;;;50496:4;50520:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50399:164;63739:21;;;:::i;63881:43::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47490:305::-;47592:4;-1:-1:-1;;;;;;47629:40:0;;-1:-1:-1;;;47629:40:0;;:105;;-1:-1:-1;;;;;;;47686:48:0;;-1:-1:-1;;;47686:48:0;47629:105;:158;;;-1:-1:-1;;;;;;;;;;40205:40:0;;;47751:36;47609:178;47490:305;-1:-1:-1;;47490:305:0:o;48418:100::-;48472:13;48505:5;48498:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48418:100;:::o;49930:171::-;50006:7;50026:23;50041:7;50026:14;:23::i;:::-;-1:-1:-1;50069:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;50069:24:0;;49930:171::o;49448:416::-;49529:13;49545:23;49560:7;49545:14;:23::i;:::-;49529:39;;49593:5;-1:-1:-1;;;;;49587:11:0;:2;-1:-1:-1;;;;;49587:11:0;;49579:57;;;;-1:-1:-1;;;49579:57:0;;10795:2:1;49579:57:0;;;10777:21:1;10834:2;10814:18;;;10807:30;10873:34;10853:18;;;10846:62;-1:-1:-1;;;10924:18:1;;;10917:31;10965:19;;49579:57:0;;;;;;;;;27469:10;-1:-1:-1;;;;;49671:21:0;;;;:62;;-1:-1:-1;49696:37:0;49713:5;27469:10;50399:164;:::i;49696:37::-;49649:173;;;;-1:-1:-1;;;49649:173:0;;11197:2:1;49649:173:0;;;11179:21:1;11236:2;11216:18;;;11209:30;11275:34;11255:18;;;11248:62;11346:31;11326:18;;;11319:59;11395:19;;49649:173:0;10995:425:1;49649:173:0;49835:21;49844:2;49848:7;49835:8;:21::i;:::-;49518:346;49448:416;;:::o;50630:301::-;50791:41;27469:10;50824:7;50791:18;:41::i;:::-;50783:99;;;;-1:-1:-1;;;50783:99:0;;;;;;;:::i;:::-;50895:28;50905:4;50911:2;50915:7;50895:9;:28::i;65386:152::-;64816:5;;-1:-1:-1;;;;;64816:5:0;64802:10;:19;64798:52;;64830:20;;-1:-1:-1;;;64830:20:0;;;;;;;;;;;64798:52;-1:-1:-1;;;;;65463:22:0;::::1;65455:48;;;::::0;-1:-1:-1;;;65455:48:0;;12041:2:1;65455:48:0::1;::::0;::::1;12023:21:1::0;12080:2;12060:18;;;12053:30;-1:-1:-1;;;12099:18:1;;;12092:43;12152:18;;65455:48:0::1;11839:337:1::0;65455:48:0::1;65514:5;:16:::0;;-1:-1:-1;;;;;;65514:16:0::1;-1:-1:-1::0;;;;;65514:16:0;;;::::1;::::0;;;::::1;::::0;;65386:152::o;51002:151::-;51106:39;51123:4;51129:2;51133:7;51106:39;;;;;;;;;;;;:16;:39::i;48128:223::-;48200:7;52861:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52861:16:0;;48264:56;;;;-1:-1:-1;;;48264:56:0;;12383:2:1;48264:56:0;;;12365:21:1;12422:2;12402:18;;;12395:30;-1:-1:-1;;;12441:18:1;;;12434:54;12505:18;;48264:56:0;12181:348:1;66235:100:0;66316:11;;66306:7;;66279;;66306:21;;-1:-1:-1;;;;;;;;66316:11:0;;;;;;-1:-1:-1;;;66306:7:0;;;;:21;:::i;:::-;-1:-1:-1;;;;;66299:28:0;;;66235:100;:::o;47859:207::-;47931:7;-1:-1:-1;;;;;47959:19:0;;47951:73;;;;-1:-1:-1;;;47951:73:0;;13056:2:1;47951:73:0;;;13038:21:1;13095:2;13075:18;;;13068:30;13134:34;13114:18;;;13107:62;-1:-1:-1;;;13185:18:1;;;13178:39;13234:19;;47951:73:0;12854:405:1;47951:73:0;-1:-1:-1;;;;;;48042:16:0;;;;;:9;:16;;;;;;;47859:207::o;67895:159::-;64928:5;;-1:-1:-1;;;;;64928:5:0;64914:10;:19;64910:51;;64942:19;;-1:-1:-1;;;64942:19:0;;;;;;;;;;;64910:51;68019:27:::1;68028:9;68039:6;68019:8;:27::i;66343:441::-:0;66515:16;66523:7;-1:-1:-1;;;;;66515:16:0;:7;:16::i;:::-;-1:-1:-1;;;;;66501:30:0;:10;-1:-1:-1;;;;;66501:30:0;;66493:56;;;;-1:-1:-1;;;66493:56:0;;;;;;;:::i;:::-;66583:7;;66568:11;;-1:-1:-1;;;66583:7:0;;;-1:-1:-1;;;;;66583:7:0;;;-1:-1:-1;;;66568:11:0;;;;:22;;66560:59;;;;-1:-1:-1;;;66560:59:0;;13808:2:1;66560:59:0;;;13790:21:1;13847:2;13827:18;;;13820:30;13886:26;13866:18;;;13859:54;13930:18;;66560:59:0;13606:348:1;66560:59:0;66630:53;66648:7;66657:9;66668:2;66672:1;66630:53;;;;;;;;;;;;66679:3;66630:17;:53::i;:::-;;66694:14;66700:7;-1:-1:-1;;;;;66694:14:0;:5;:14::i;:::-;66737:11;;66719:30;;66725:10;;-1:-1:-1;;;66737:11:0;;-1:-1:-1;;;;;66737:11:0;66719:5;:30::i;:::-;66775:1;66760:11;;:16;;;;;;;;;;-1:-1:-1;;;;;66760:16:0;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;66760:16:0;;;;;-1:-1:-1;;;;;66760:16:0;;;;;;66343:441;;;;:::o;65895:169::-;64816:5;;-1:-1:-1;;;;;64816:5:0;64802:10;:19;64798:52;;64830:20;;-1:-1:-1;;;64830:20:0;;;;;;;;;;;64798:52;65986:8:::1;65980:22;66006:1;65980:27:::0;65972:55:::1;;;::::0;-1:-1:-1;;;65972:55:0;;14346:2:1;65972:55:0::1;::::0;::::1;14328:21:1::0;14385:2;14365:18;;;14358:30;-1:-1:-1;;;14404:18:1;;;14397:45;14459:18;;65972:55:0::1;14144:339:1::0;65972:55:0::1;66038:7;:18;66048:8:::0;66038:7;:18:::1;:::i;:::-;;65895:169:::0;:::o;65109:152::-;64816:5;;-1:-1:-1;;;;;64816:5:0;64802:10;:19;64798:52;;64830:20;;-1:-1:-1;;;64830:20:0;;;;;;;;;;;64798:52;-1:-1:-1;;;;;65186:22:0;::::1;65178:48;;;::::0;-1:-1:-1;;;65178:48:0;;16894:2:1;65178:48:0::1;::::0;::::1;16876:21:1::0;16933:2;16913:18;;;16906:30;-1:-1:-1;;;16952:18:1;;;16945:43;17005:18;;65178:48:0::1;16692:337:1::0;65178:48:0::1;65237:5;:16:::0;;-1:-1:-1;;;;;;65237:16:0::1;-1:-1:-1::0;;;;;65237:16:0;;;::::1;::::0;;;::::1;::::0;;65109:152::o;48587:104::-;48643:13;48676:7;48669:14;;;;;:::i;66792:490::-;67019:16;67027:7;-1:-1:-1;;;;;67019:16:0;:7;:16::i;:::-;-1:-1:-1;;;;;67005:30:0;:10;-1:-1:-1;;;;;67005:30:0;;66997:56;;;;-1:-1:-1;;;66997:56:0;;;;;;;:::i;:::-;67064:61;67082:7;67091:9;67102:2;67106:7;67115:4;67121:3;67064:17;:61::i;:::-;-1:-1:-1;;;;;;67225:19:0;;;;;;:10;:19;;;;;;;67143:131;;;;;;67173:7;;67195:15;;67259:4;;67143:131;:::i;:::-;;;;;;;;66792:490;;;;;;:::o;69233:178::-;69305:16;69313:7;-1:-1:-1;;;;;69305:16:0;:7;:16::i;:::-;-1:-1:-1;;;;;69291:30:0;:10;-1:-1:-1;;;;;69291:30:0;;69283:56;;;;-1:-1:-1;;;69283:56:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;69350:21:0;;;;;;:12;:21;;;;;:28;;-1:-1:-1;;69350:28:0;69374:4;69350:28;;;69389:14;;:5;:14::i;:::-;69233:178;:::o;50173:155::-;50268:52;27469:10;50301:8;50311;50268:18;:52::i;67398:489::-;64816:5;;-1:-1:-1;;;;;64816:5:0;64802:10;:19;64798:52;;64830:20;;-1:-1:-1;;;64830:20:0;;;;;;;;;;;64798:52;67471:15:::1;::::0;::::1;;67463:42;;;::::0;-1:-1:-1;;;67463:42:0;;18503:2:1;67463:42:0::1;::::0;::::1;18485:21:1::0;18542:2;18522:18;;;18515:30;-1:-1:-1;;;18561:18:1;;;18554:44;18615:18;;67463:42:0::1;18301:338:1::0;67463:42:0::1;67556:7;::::0;67541:11:::1;::::0;67516:13:::1;::::0;-1:-1:-1;;;;;;;;67556:7:0;;::::1;::::0;::::1;::::0;67532:20:::1;::::0;-1:-1:-1;;;67541:11:0;;::::1;;67532:6:::0;:20:::1;:::i;:::-;-1:-1:-1::0;;;;;67532:31:0::1;;;:90;;67611:11;::::0;67602:20:::1;::::0;-1:-1:-1;;;67611:11:0;::::1;-1:-1:-1::0;;;;;67611:11:0::1;67602:6:::0;:20:::1;:::i;:::-;67532:90;;;67579:7;::::0;-1:-1:-1;;;67579:7:0;::::1;-1:-1:-1::0;;;;;67579:7:0::1;67532:90;67652:11;::::0;;-1:-1:-1;;;;;67674:20:0;;::::1;-1:-1:-1::0;;;67674:20:0;;::::1;-1:-1:-1::0;;67674:20:0;::::1;;::::0;;;67516:106;;-1:-1:-1;67652:11:0::1;;::::0;67705:175:::1;67744:6;-1:-1:-1::0;;;;;67736:14:0::1;:5;-1:-1:-1::0;;;;;67736:14:0::1;;67705:175;;;67776:24;67782:10;67794:5;-1:-1:-1::0;;;;;67776:24:0::1;:5;:24::i;:::-;67815:12;67821:5;-1:-1:-1::0;;;;;67815:12:0::1;:5;:12::i;:::-;-1:-1:-1::0;;;;;67842:19:0;::::1;;::::0;;;:12:::1;:19;::::0;;;;:26;;-1:-1:-1;;67842:26:0::1;67864:4;67842:26;::::0;;67855:5;67752:7:::1;67855:5:::0;67752:7:::1;:::i;:::-;;;;67705:175;;;;67452:435;;67398:489:::0;:::o;51224:279::-;51355:41;27469:10;51388:7;51355:18;:41::i;:::-;51347:99;;;;-1:-1:-1;;;51347:99:0;;;;;;;:::i;:::-;51457:38;51471:4;51477:2;51481:7;51490:4;51457:13;:38::i;66072:155::-;64816:5;;-1:-1:-1;;;;;64816:5:0;64802:10;:19;64798:52;;64830:20;;-1:-1:-1;;;64830:20:0;;;;;;;;;;;64798:52;-1:-1:-1;;;;;66186:19:0;::::1;;::::0;;;:10:::1;:19;::::0;;;;:33:::1;66208:11:::0;66186:19;:33:::1;:::i;65269:109::-:0;64816:5;;-1:-1:-1;;;;;64816:5:0;64802:10;:19;64798:52;;64830:20;;-1:-1:-1;;;64830:20:0;;;;;;;;;;;64798:52;65350:20:::1;63723:9;65350:20;::::0;::::1;;:::i;:::-;65337:10;:33:::0;;-1:-1:-1;;65337:33:0::1;-1:-1:-1::0;;;;;65337:33:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;65269:109:0:o;69419:307::-;69537:13;69594:7;69588:21;;;;;:::i;:::-;;;69613:1;69588:26;:130;;;;;;;;;;;;;;;;;69658:7;69667:18;69677:7;69667:9;:18::i;:::-;69641:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69568:150;69419:307;-1:-1:-1;;69419:307:0:o;65546:170::-;64816:5;;-1:-1:-1;;;;;64816:5:0;64802:10;:19;64798:52;;64830:20;;-1:-1:-1;;;64830:20:0;;;;;;;;;;;64798:52;-1:-1:-1;;;;;65629:25:0;::::1;65621:54;;;::::0;-1:-1:-1;;;65621:54:0;;20514:2:1;65621:54:0::1;::::0;::::1;20496:21:1::0;20553:2;20533:18;;;20526:30;-1:-1:-1;;;20572:18:1;;;20565:46;20628:18;;65621:54:0::1;20312:340:1::0;65621:54:0::1;65686:8;:22:::0;;-1:-1:-1;;;;;;65686:22:0::1;-1:-1:-1::0;;;;;65686:22:0;;;::::1;::::0;;;::::1;::::0;;65546:170::o;67290:100::-;64816:5;;-1:-1:-1;;;;;64816:5:0;64802:10;:19;64798:52;;64830:20;;-1:-1:-1;;;64830:20:0;;;;;;;;;;;64798:52;67358:15:::1;:24:::0;;-1:-1:-1;;67358:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;67290:100::o;68227:196::-;65041:9;;68364:4;;-1:-1:-1;;;;;65041:9:0;65027:10;:23;65023:58;;65059:22;;-1:-1:-1;;;65059:22:0;;;;;;;;;;;65023:58;68388:27:::1;68397:9;68408:6;68388:8;:27::i;:::-;68381:34:::0;68227:196;-1:-1:-1;;;68227:196:0:o;65724:163::-;64816:5;;-1:-1:-1;;;;;64816:5:0;64802:10;:19;64798:52;;64830:20;;-1:-1:-1;;;64830:20:0;;;;;;;;;;;64798:52;-1:-1:-1;;;;;65806:23:0;::::1;65798:49;;;::::0;-1:-1:-1;;;65798:49:0;;16894:2:1;65798:49:0::1;::::0;::::1;16876:21:1::0;16933:2;16913:18;;;16906:30;-1:-1:-1;;;16952:18:1;;;16945:43;17005:18;;65798:49:0::1;16692:337:1::0;65798:49:0::1;65858:9;:21:::0;;-1:-1:-1;;;;;;65858:21:0::1;-1:-1:-1::0;;;;;65858:21:0;;;::::1;::::0;;;::::1;::::0;;65724:163::o;63739:21::-;;;;;;;:::i;59493:135::-;53263:4;52861:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52861:16:0;59567:53;;;;-1:-1:-1;;;59567:53:0;;12383:2:1;59567:53:0;;;12365:21:1;12422:2;12402:18;;;12395:30;-1:-1:-1;;;12441:18:1;;;12434:54;12505:18;;59567:53:0;12181:348:1;58806:174:0;58881:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;58881:29:0;-1:-1:-1;;;;;58881:29:0;;;;;;;;:24;;58935:23;58881:24;58935:14;:23::i;:::-;-1:-1:-1;;;;;58926:46:0;;;;;;;;;;;58806:174;;:::o;53493:264::-;53586:4;53603:13;53619:23;53634:7;53619:14;:23::i;:::-;53603:39;;53672:5;-1:-1:-1;;;;;53661:16:0;:7;-1:-1:-1;;;;;53661:16:0;;:52;;;-1:-1:-1;;;;;;50520:25:0;;;50496:4;50520:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;53681:32;53661:87;;;;53741:7;-1:-1:-1;;;;;53717:31:0;:20;53729:7;53717:11;:20::i;:::-;-1:-1:-1;;;;;53717:31:0;;53661:87;53653:96;53493:264;-1:-1:-1;;;;53493:264:0:o;57458:1229::-;57583:4;-1:-1:-1;;;;;57556:31:0;:23;57571:7;57556:14;:23::i;:::-;-1:-1:-1;;;;;57556:31:0;;57548:81;;;;-1:-1:-1;;;57548:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57648:16:0;;57640:65;;;;-1:-1:-1;;;57640:65:0;;21265:2:1;57640:65:0;;;21247:21:1;21304:2;21284:18;;;21277:30;21343:34;21323:18;;;21316:62;-1:-1:-1;;;21394:18:1;;;21387:34;21438:19;;57640:65:0;21063:400:1;57640:65:0;57890:4;-1:-1:-1;;;;;57863:31:0;:23;57878:7;57863:14;:23::i;:::-;-1:-1:-1;;;;;57863:31:0;;57855:81;;;;-1:-1:-1;;;57855:81:0;;;;;;;:::i;:::-;58008:24;;;;:15;:24;;;;;;;;58001:31;;-1:-1:-1;;;;;;58001:31:0;;;;;;-1:-1:-1;;;;;58484:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;58484:20:0;;;58519:13;;;;;;;;;:18;;58001:31;58519:18;;;58559:16;;;:7;:16;;;;;;:21;;;;;;;;;;58598:27;;58024:7;;58598:27;;;49518:346;49448:416;;:::o;68431:794::-;68578:13;;68610:16;;68537:4;;68578:13;68610:28;;68602:58;;;;-1:-1:-1;;;68602:58:0;;21670:2:1;68602:58:0;;;21652:21:1;21709:2;21689:18;;;21682:30;-1:-1:-1;;;21728:18:1;;;21721:47;21785:18;;68602:58:0;21468:341:1;68602:58:0;68705:7;;68679:11;;-1:-1:-1;;;;;;;;68705:7:0;;;;;;68679:22;;68693:8;;-1:-1:-1;;;68679:11:0;;;;:22;:::i;:::-;:33;;68671:60;;;;-1:-1:-1;;;68671:60:0;;22146:2:1;68671:60:0;;;22128:21:1;22185:2;22165:18;;;22158:30;-1:-1:-1;;;22204:18:1;;;22197:44;22258:18;;68671:60:0;21944:338:1;68671:60:0;68764:8;68742:11;;:31;;;;;;;;;;-1:-1:-1;;;;;68742:31:0;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;68742:31:0;;;;;-1:-1:-1;;;;;68742:31:0;;;;;;68784:16;68811:12;68839:8;68834:362;68857:8;68853:1;-1:-1:-1;;;;;68853:12:0;;68834:362;;;68898:9;68908:1;-1:-1:-1;;;;;68898:12:0;;;;;;;;;:::i;:::-;;;;;;;68887:23;;68933:6;68940:1;-1:-1:-1;;;;;68933:9:0;;;;;;;;;:::i;:::-;;;;;;;68925:17;;68981:1;-1:-1:-1;;;;;68961:22:0;:8;-1:-1:-1;;;;;68961:22:0;;68957:71;69004:8;68957:71;-1:-1:-1;;;;;69048:19:0;;;;;;:12;:19;;;;;;;;69044:141;;;69093:13;;-1:-1:-1;;;;;3229:31:1;;3211:50;;69093:13:0;;3199:2:1;3184:18;69093:13:0;;;;;;;69044:141;;;69147:22;69153:8;69163:5;-1:-1:-1;;;;;69147:22:0;:5;:22::i;:::-;68867:3;;;;:::i;:::-;;;;68834:362;;;-1:-1:-1;69213:4:0;;68431:794;-1:-1:-1;;;;;;68431:794:0:o;70495:751::-;70733:10;;70707:4;;70759:15;;70733:22;;70746:9;;-1:-1:-1;;;;;70733:10:0;:22;:::i;:::-;-1:-1:-1;;;;;70733:41:0;;;70724:67;;;;-1:-1:-1;;;70724:67:0;;22621:2:1;70724:67:0;;;22603:21:1;22660:2;22640:18;;;22633:30;-1:-1:-1;;;22679:18:1;;;22672:41;22730:18;;70724:67:0;22419:335:1;70724:67:0;-1:-1:-1;;;;;70812:13:0;;;;;;:9;:13;;;;;;;;70811:14;70802:37;;;;-1:-1:-1;;;70802:37:0;;22961:2:1;70802:37:0;;;22943:21:1;23000:1;22980:18;;;22973:29;-1:-1:-1;;;23018:18:1;;;23011:38;23066:18;;70802:37:0;22759:331:1;70802:37:0;-1:-1:-1;;;;;70850:13:0;;;;;;;:9;:13;;;;;:20;;-1:-1:-1;;70850:20:0;70866:4;70850:20;;;:13;70908:12;;;;70904:248;;70954:40;;-1:-1:-1;;;;;;23288:3:1;23337:16;;;23333:25;;70954:40:0;;;23321:38:1;23392:16;;;23388:25;;23375:11;;;23368:46;23448:16;;;23444:25;23430:12;;;23423:47;23486:12;;70954:40:0;;;;;;;;;;;;70944:51;;;;;;70937:58;;70904:248;;;71080:7;71089:9;71100:2;71104:7;71113:11;71063:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71035:105;;;;;;71028:112;;70904:248;71172:22;71184:4;71190:3;71172:11;:22::i;:::-;71164:52;;;;-1:-1:-1;;;71164:52:0;;24386:2:1;71164:52:0;;;24368:21:1;24425:2;24405:18;;;24398:30;-1:-1:-1;;;24444:18:1;;;24437:47;24501:18;;71164:52:0;24184:341:1;71164:52:0;-1:-1:-1;71234:4:0;;70495:751;-1:-1:-1;;;;;;;70495:751:0:o;56338:783::-;56398:13;56414:23;56429:7;56414:14;:23::i;:::-;56398:39;;56614:23;56629:7;56614:14;:23::i;:::-;56685:24;;;;:15;:24;;;;;;;;56678:31;;-1:-1:-1;;;;;;56678:31:0;;;;;;-1:-1:-1;;;;;56930:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;56930:21:0;;;56980:16;;;:7;:16;;;;;;56973:23;;;;;;;57014:36;56606:31;;-1:-1:-1;56701:7:0;;57014:36;;56685:24;;57014:36;66038:18:::1;65895:169:::0;:::o;55057:942::-;-1:-1:-1;;;;;55137:16:0;;55129:61;;;;-1:-1:-1;;;55129:61:0;;24732:2:1;55129:61:0;;;24714:21:1;;;24751:18;;;24744:30;24810:34;24790:18;;;24783:62;24862:18;;55129:61:0;24530:356:1;55129:61:0;53263:4;52861:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52861:16:0;53287:31;55201:58;;;;-1:-1:-1;;;55201:58:0;;25093:2:1;55201:58:0;;;25075:21:1;25132:2;25112:18;;;25105:30;25171;25151:18;;;25144:58;25219:18;;55201:58:0;24891:352:1;55201:58:0;53263:4;52861:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52861:16:0;53287:31;55410:58;;;;-1:-1:-1;;;55410:58:0;;25093:2:1;55410:58:0;;;25075:21:1;25132:2;25112:18;;;25105:30;25171;25151:18;;;25144:58;25219:18;;55410:58:0;24891:352:1;55410:58:0;-1:-1:-1;;;;;55817:13:0;;;;;;:9;:13;;;;;;;;:18;;55834:1;55817:18;;;55859:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;55859:21:0;;;;;55898:33;55867:7;;55817:13;;55898:33;;55817:13;;55898:33;66038:18:::1;65895:169:::0;:::o;59123:281::-;59244:8;-1:-1:-1;;;;;59235:17:0;:5;-1:-1:-1;;;;;59235:17:0;;59227:55;;;;-1:-1:-1;;;59227:55:0;;25450:2:1;59227:55:0;;;25432:21:1;25489:2;25469:18;;;25462:30;25528:27;25508:18;;;25501:55;25573:18;;59227:55:0;25248:349:1;59227:55:0;-1:-1:-1;;;;;59293:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;59293:46:0;;;;;;;;;;59355:41;;1661::1;;;59355::0;;1634:18:1;59355:41:0;;;;;;;59123:281;;;:::o;52384:270::-;52497:28;52507:4;52513:2;52517:7;52497:9;:28::i;:::-;52544:47;52567:4;52573:2;52577:7;52586:4;52544:22;:47::i;:::-;52536:110;;;;-1:-1:-1;;;52536:110:0;;;;;;;:::i;69734:753::-;69835:17;69920:4;69913;69907:11;69903:22;69952:1;69946:4;69939:15;69982:4;69979:1;69975:12;69968:19;;;70013:1;70008:3;70001:14;70040:3;70092:5;70057:303;70169:1;70164:3;70160:11;70153:18;;70220:2;70214:4;70210:13;70206:2;70202:22;70197:3;70189:36;70261:2;70251:13;;70282:63;70057:303;70282:63;-1:-1:-1;70388:13:0;;;-1:-1:-1;;70422:14:0;;;70450:19;;;70422:14;69734:753;-1:-1:-1;69734:753:0:o;71254:206::-;24912:34;71363:4;24899:48;;;24968:4;24961:18;;;25020:4;25004:21;;71404:48;;71442:9;71404:37;:48::i;:::-;71392:8;;-1:-1:-1;;;;;71392:60:0;;;:8;;:60;;71254:206;-1:-1:-1;;;71254:206:0:o;60192:853::-;60346:4;-1:-1:-1;;;;;60367:13:0;;29378:19;:23;60363:675;;60403:71;;-1:-1:-1;;;60403:71:0;;-1:-1:-1;;;;;60403:36:0;;;;;:71;;27469:10;;60454:4;;60460:7;;60469:4;;60403:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60403:71:0;;;;;;;;-1:-1:-1;;60403:71:0;;;;;;;;;;;;:::i;:::-;;;60399:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60644:6;:13;60661:1;60644:18;60640:328;;60687:60;;-1:-1:-1;;;60687:60:0;;;;;;;:::i;60640:328::-;60918:6;60912:13;60903:6;60899:2;60895:15;60888:38;60399:584;-1:-1:-1;;;;;;60525:51:0;-1:-1:-1;;;60525:51:0;;-1:-1:-1;60518:58:0;;60363:675;-1:-1:-1;61022:4:0;60192:853;;;;;;:::o;21102:231::-;21180:7;21201:17;21220:18;21242:27;21253:4;21259:9;21242:10;:27::i;:::-;21200:69;;;;21280:18;21292:5;21280:11;:18::i;:::-;-1:-1:-1;21316:9:0;21102:231;-1:-1:-1;;;21102:231:0:o;19553:747::-;19634:7;19643:12;19672:9;:16;19692:2;19672:22;19668:625;;20016:4;20001:20;;19995:27;20066:4;20051:20;;20045:27;20124:4;20109:20;;20103:27;19711:9;20095:36;20167:25;20178:4;20095:36;19995:27;20045;20167:10;:25::i;:::-;20160:32;;;;;;;;;19668:625;-1:-1:-1;20241:1:0;;-1:-1:-1;20245:35:0;19668:625;19553:747;;;;;:::o;17946:521::-;18024:20;18015:5;:29;;;;;;;;:::i;:::-;;18011:449;;17946:521;:::o;18011:449::-;18122:29;18113:5;:38;;;;;;;;:::i;:::-;;18109:351;;18168:34;;-1:-1:-1;;;18168:34:0;;27103:2:1;18168:34:0;;;27085:21:1;27142:2;27122:18;;;27115:30;27181:26;27161:18;;;27154:54;27225:18;;18168:34:0;26901:348:1;18109:351:0;18233:35;18224:5;:44;;;;;;;;:::i;:::-;;18220:240;;18285:41;;-1:-1:-1;;;18285:41:0;;27456:2:1;18285:41:0;;;27438:21:1;27495:2;27475:18;;;27468:30;27534:33;27514:18;;;27507:61;27585:18;;18285:41:0;27254:355:1;18220:240:0;18357:30;18348:5;:39;;;;;;;;:::i;:::-;;18344:116;;18404:44;;-1:-1:-1;;;18404:44:0;;27816:2:1;18404:44:0;;;27798:21:1;27855:2;27835:18;;;27828:30;27894:34;27874:18;;;27867:62;-1:-1:-1;;;27945:18:1;;;27938:32;27987:19;;18404:44:0;27614:398:1;22486:1477:0;22574:7;;23508:66;23495:79;;23491:163;;;-1:-1:-1;23607:1:0;;-1:-1:-1;23611:30:0;23591:51;;23491:163;23768:24;;;23751:14;23768:24;;;;;;;;;28244:25:1;;;28317:4;28305:17;;28285:18;;;28278:45;;;;28339:18;;;28332:34;;;28382:18;;;28375:34;;;23768:24:0;;28216:19:1;;23768:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23768:24:0;;-1:-1:-1;;23768:24:0;;;-1:-1:-1;;;;;;;23807:20:0;;23803:103;;23860:1;23864:29;23844:50;;;;;;;23803:103;23926:6;-1:-1:-1;23934:20:0;;-1:-1:-1;22486:1477:0;;;;;;;;:::o;14:171:1:-;81:20;;-1:-1:-1;;;;;130:30:1;;120:41;;110:69;;175:1;172;165:12;110:69;14:171;;;:::o;190:184::-;248:6;301:2;289:9;280:7;276:23;272:32;269:52;;;317:1;314;307:12;269:52;340:28;358:9;340:28;:::i;379:250::-;464:1;474:113;488:6;485:1;482:13;474:113;;;564:11;;;558:18;545:11;;;538:39;510:2;503:10;474:113;;;-1:-1:-1;;621:1:1;603:16;;596:27;379:250::o;634:271::-;676:3;714:5;708:12;741:6;736:3;729:19;757:76;826:6;819:4;814:3;810:14;803:4;796:5;792:16;757:76;:::i;:::-;887:2;866:15;-1:-1:-1;;862:29:1;853:39;;;;894:4;849:50;;634:271;-1:-1:-1;;634:271:1:o;910:220::-;1059:2;1048:9;1041:21;1022:4;1079:45;1120:2;1109:9;1105:18;1097:6;1079:45;:::i;1135:131::-;-1:-1:-1;;;;;;1209:32:1;;1199:43;;1189:71;;1256:1;1253;1246:12;1271:245;1329:6;1382:2;1370:9;1361:7;1357:23;1353:32;1350:52;;;1398:1;1395;1388:12;1350:52;1437:9;1424:23;1456:30;1480:5;1456:30;:::i;1713:180::-;1772:6;1825:2;1813:9;1804:7;1800:23;1796:32;1793:52;;;1841:1;1838;1831:12;1793:52;-1:-1:-1;1864:23:1;;1713:180;-1:-1:-1;1713:180:1:o;2106:173::-;2174:20;;-1:-1:-1;;;;;2223:31:1;;2213:42;;2203:70;;2269:1;2266;2259:12;2284:254;2352:6;2360;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;2452:29;2471:9;2452:29;:::i;:::-;2442:39;2528:2;2513:18;;;;2500:32;;-1:-1:-1;;;2284:254:1:o;2543:328::-;2620:6;2628;2636;2689:2;2677:9;2668:7;2664:23;2660:32;2657:52;;;2705:1;2702;2695:12;2657:52;2728:29;2747:9;2728:29;:::i;:::-;2718:39;;2776:38;2810:2;2799:9;2795:18;2776:38;:::i;:::-;2766:48;;2861:2;2850:9;2846:18;2833:32;2823:42;;2543:328;;;;;:::o;2876:186::-;2935:6;2988:2;2976:9;2967:7;2963:23;2959:32;2956:52;;;3004:1;3001;2994:12;2956:52;3027:29;3046:9;3027:29;:::i;3454:127::-;3515:10;3510:3;3506:20;3503:1;3496:31;3546:4;3543:1;3536:15;3570:4;3567:1;3560:15;3586:275;3657:2;3651:9;3722:2;3703:13;;-1:-1:-1;;3699:27:1;3687:40;;-1:-1:-1;;;;;3742:34:1;;3778:22;;;3739:62;3736:88;;;3804:18;;:::i;:::-;3840:2;3833:22;3586:275;;-1:-1:-1;3586:275:1:o;3866:183::-;3926:4;-1:-1:-1;;;;;3951:6:1;3948:30;3945:56;;;3981:18;;:::i;:::-;-1:-1:-1;4026:1:1;4022:14;4038:4;4018:25;;3866:183::o;4054:666::-;4107:5;4160:3;4153:4;4145:6;4141:17;4137:27;4127:55;;4178:1;4175;4168:12;4127:55;4214:6;4201:20;4240:4;4264:60;4280:43;4320:2;4280:43;:::i;:::-;4264:60;:::i;:::-;4358:15;;;4444:1;4440:10;;;;4428:23;;4424:32;;;4389:12;;;;4468:15;;;4465:35;;;4496:1;4493;4486:12;4465:35;4532:2;4524:6;4520:15;4544:147;4560:6;4555:3;4552:15;4544:147;;;4626:22;4644:3;4626:22;:::i;:::-;4614:35;;4669:12;;;;4577;;4544:147;;;-1:-1:-1;4709:5:1;4054:666;-1:-1:-1;;;;;;4054:666:1:o;4725:1144::-;4842:6;4850;4903:2;4891:9;4882:7;4878:23;4874:32;4871:52;;;4919:1;4916;4909:12;4871:52;4959:9;4946:23;-1:-1:-1;;;;;5029:2:1;5021:6;5018:14;5015:34;;;5045:1;5042;5035:12;5015:34;5083:6;5072:9;5068:22;5058:32;;5128:7;5121:4;5117:2;5113:13;5109:27;5099:55;;5150:1;5147;5140:12;5099:55;5186:2;5173:16;5208:4;5232:60;5248:43;5288:2;5248:43;:::i;5232:60::-;5326:15;;;5408:1;5404:10;;;;5396:19;;5392:28;;;5357:12;;;;5432:19;;;5429:39;;;5464:1;5461;5454:12;5429:39;5488:11;;;;5508:148;5524:6;5519:3;5516:15;5508:148;;;5590:23;5609:3;5590:23;:::i;:::-;5578:36;;5541:12;;;;5634;;;;5508:148;;;5675:5;-1:-1:-1;;5718:18:1;;5705:32;;-1:-1:-1;;5749:16:1;;;5746:36;;;5778:1;5775;5768:12;5746:36;;5801:62;5855:7;5844:8;5833:9;5829:24;5801:62;:::i;:::-;5791:72;;;4725:1144;;;;;:::o;5874:530::-;5916:5;5969:3;5962:4;5954:6;5950:17;5946:27;5936:55;;5987:1;5984;5977:12;5936:55;6023:6;6010:20;-1:-1:-1;;;;;6045:2:1;6042:26;6039:52;;;6071:18;;:::i;:::-;6115:55;6158:2;6139:13;;-1:-1:-1;;6135:27:1;6164:4;6131:38;6115:55;:::i;:::-;6195:2;6186:7;6179:19;6241:3;6234:4;6229:2;6221:6;6217:15;6213:26;6210:35;6207:55;;;6258:1;6255;6248:12;6207:55;6323:2;6316:4;6308:6;6304:17;6297:4;6288:7;6284:18;6271:55;6371:1;6346:16;;;6364:4;6342:27;6335:38;;;;6350:7;5874:530;-1:-1:-1;;;5874:530:1:o;6409:537::-;6501:6;6509;6517;6525;6578:3;6566:9;6557:7;6553:23;6549:33;6546:53;;;6595:1;6592;6585:12;6546:53;6618:28;6636:9;6618:28;:::i;:::-;6608:38;;6665:37;6698:2;6687:9;6683:18;6665:37;:::i;:::-;6655:47;;6721:37;6754:2;6743:9;6739:18;6721:37;:::i;:::-;6711:47;;6809:2;6798:9;6794:18;6781:32;-1:-1:-1;;;;;6828:6:1;6825:30;6822:50;;;6868:1;6865;6858:12;6822:50;6891:49;6932:7;6923:6;6912:9;6908:22;6891:49;:::i;:::-;6881:59;;;6409:537;;;;;;;:::o;6951:321::-;7020:6;7073:2;7061:9;7052:7;7048:23;7044:32;7041:52;;;7089:1;7086;7079:12;7041:52;7129:9;7116:23;-1:-1:-1;;;;;7154:6:1;7151:30;7148:50;;;7194:1;7191;7184:12;7148:50;7217:49;7258:7;7249:6;7238:9;7234:22;7217:49;:::i;7277:831::-;7396:6;7404;7412;7420;7428;7436;7489:3;7477:9;7468:7;7464:23;7460:33;7457:53;;;7506:1;7503;7496:12;7457:53;7529:28;7547:9;7529:28;:::i;:::-;7519:38;;7576:37;7609:2;7598:9;7594:18;7576:37;:::i;:::-;7566:47;;7632:37;7665:2;7654:9;7650:18;7632:37;:::i;:::-;7622:47;;7688:37;7721:2;7710:9;7706:18;7688:37;:::i;:::-;7678:47;;7776:3;7765:9;7761:19;7748:33;-1:-1:-1;;;;;7841:2:1;7833:6;7830:14;7827:34;;;7857:1;7854;7847:12;7827:34;7880:49;7921:7;7912:6;7901:9;7897:22;7880:49;:::i;:::-;7870:59;;7982:3;7971:9;7967:19;7954:33;7938:49;;8012:2;8002:8;7999:16;7996:36;;;8028:1;8025;8018:12;7996:36;;8051:51;8094:7;8083:8;8072:9;8068:24;8051:51;:::i;:::-;8041:61;;;7277:831;;;;;;;;:::o;8113:160::-;8178:20;;8234:13;;8227:21;8217:32;;8207:60;;8263:1;8260;8253:12;8278:254;8343:6;8351;8404:2;8392:9;8383:7;8379:23;8375:32;8372:52;;;8420:1;8417;8410:12;8372:52;8443:29;8462:9;8443:29;:::i;:::-;8433:39;;8491:35;8522:2;8511:9;8507:18;8491:35;:::i;:::-;8481:45;;8278:254;;;;;:::o;8537:537::-;8632:6;8640;8648;8656;8709:3;8697:9;8688:7;8684:23;8680:33;8677:53;;;8726:1;8723;8716:12;8677:53;8749:29;8768:9;8749:29;:::i;:::-;8739:39;;8797:38;8831:2;8820:9;8816:18;8797:38;:::i;:::-;8787:48;;8882:2;8871:9;8867:18;8854:32;8844:42;;8937:2;8926:9;8922:18;8909:32;-1:-1:-1;;;;;8956:6:1;8953:30;8950:50;;;8996:1;8993;8986:12;9079:393;9156:6;9164;9217:2;9205:9;9196:7;9192:23;9188:32;9185:52;;;9233:1;9230;9223:12;9185:52;9256:28;9274:9;9256:28;:::i;:::-;9246:38;;9335:2;9324:9;9320:18;9307:32;-1:-1:-1;;;;;9354:6:1;9351:30;9348:50;;;9394:1;9391;9384:12;9348:50;9417:49;9458:7;9449:6;9438:9;9434:22;9417:49;:::i;9477:276::-;9535:6;9588:2;9576:9;9567:7;9563:23;9559:32;9556:52;;;9604:1;9601;9594:12;9556:52;9643:9;9630:23;9693:10;9686:5;9682:22;9675:5;9672:33;9662:61;;9719:1;9716;9709:12;9758:180;9814:6;9867:2;9855:9;9846:7;9842:23;9838:32;9835:52;;;9883:1;9880;9873:12;9835:52;9906:26;9922:9;9906:26;:::i;9943:260::-;10011:6;10019;10072:2;10060:9;10051:7;10047:23;10043:32;10040:52;;;10088:1;10085;10078:12;10040:52;10111:29;10130:9;10111:29;:::i;:::-;10101:39;;10159:38;10193:2;10182:9;10178:18;10159:38;:::i;10208:380::-;10287:1;10283:12;;;;10330;;;10351:61;;10405:4;10397:6;10393:17;10383:27;;10351:61;10458:2;10450:6;10447:14;10427:18;10424:38;10421:161;;10504:10;10499:3;10495:20;10492:1;10485:31;10539:4;10536:1;10529:15;10567:4;10564:1;10557:15;10421:161;;10208:380;;;:::o;11425:409::-;11627:2;11609:21;;;11666:2;11646:18;;;11639:30;11705:34;11700:2;11685:18;;11678:62;-1:-1:-1;;;11771:2:1;11756:18;;11749:43;11824:3;11809:19;;11425:409::o;12534:127::-;12595:10;12590:3;12586:20;12583:1;12576:31;12626:4;12623:1;12616:15;12650:4;12647:1;12640:15;12666:183;-1:-1:-1;;;;;12785:10:1;;;12773;;;12769:27;;12808:12;;;12805:38;;;12823:18;;:::i;:::-;12805:38;12666:183;;;;:::o;13264:337::-;13466:2;13448:21;;;13505:2;13485:18;;;13478:30;-1:-1:-1;;;13539:2:1;13524:18;;13517:43;13592:2;13577:18;;13264:337::o;13959:180::-;-1:-1:-1;;;;;14064:10:1;;;14076;;;14060:27;;14099:11;;;14096:37;;;14113:18;;:::i;14614:545::-;14716:2;14711:3;14708:11;14705:448;;;14752:1;14777:5;14773:2;14766:17;14822:4;14818:2;14808:19;14892:2;14880:10;14876:19;14873:1;14869:27;14863:4;14859:38;14928:4;14916:10;14913:20;14910:47;;;-1:-1:-1;14951:4:1;14910:47;15006:2;15001:3;14997:12;14994:1;14990:20;14984:4;14980:31;14970:41;;15061:82;15079:2;15072:5;15069:13;15061:82;;;15124:17;;;15105:1;15094:13;15061:82;;;15065:3;;;14614:545;;;:::o;15335:1352::-;15461:3;15455:10;-1:-1:-1;;;;;15480:6:1;15477:30;15474:56;;;15510:18;;:::i;:::-;15539:97;15629:6;15589:38;15621:4;15615:11;15589:38;:::i;:::-;15583:4;15539:97;:::i;:::-;15691:4;;15755:2;15744:14;;15772:1;15767:663;;;;16474:1;16491:6;16488:89;;;-1:-1:-1;16543:19:1;;;16537:26;16488:89;-1:-1:-1;;15292:1:1;15288:11;;;15284:24;15280:29;15270:40;15316:1;15312:11;;;15267:57;16590:81;;15737:944;;15767:663;14561:1;14554:14;;;14598:4;14585:18;;-1:-1:-1;;15803:20:1;;;15921:236;15935:7;15932:1;15929:14;15921:236;;;16024:19;;;16018:26;16003:42;;16116:27;;;;16084:1;16072:14;;;;15951:19;;15921:236;;;15925:3;16185:6;16176:7;16173:19;16170:201;;;16246:19;;;16240:26;-1:-1:-1;;16329:1:1;16325:14;;;16341:3;16321:24;16317:37;16313:42;16298:58;16283:74;;16170:201;-1:-1:-1;;;;;16417:1:1;16401:14;;;16397:22;16384:36;;-1:-1:-1;15335:1352:1:o;17034:1262::-;-1:-1:-1;;;;;17286:6:1;17282:31;17271:9;17264:50;17245:4;17333:2;17371:6;17366:2;17355:9;17351:18;17344:34;17414:3;17409:2;17398:9;17394:18;17387:31;17438:1;17471:6;17465:13;17501:36;17527:9;17501:36;:::i;:::-;17574:6;17568:3;17557:9;17553:19;17546:35;17600:3;17622:1;17654:2;17643:9;17639:18;17671:1;17666:158;;;;17838:1;17833:354;;;;17632:555;;17666:158;-1:-1:-1;;17714:24:1;;17694:18;;;17687:52;17792:14;;17785:22;17782:1;17778:30;17763:46;;17759:55;;;-1:-1:-1;17666:158:1;;17833:354;17864:6;17861:1;17854:17;17912:2;17909:1;17899:16;17937:1;17951:180;17965:6;17962:1;17959:13;17951:180;;;18058:14;;18034:17;;;18030:26;;18023:50;18101:16;;;;17980:10;;17951:180;;;18155:17;;18151:26;;;-1:-1:-1;;17632:555:1;;;;;;18232:9;18227:3;18223:19;18218:2;18207:9;18203:18;18196:47;18260:30;18286:3;18278:6;18260:30;:::i;:::-;18252:38;17034:1262;-1:-1:-1;;;;;;;;17034:1262:1:o;18644:209::-;18682:3;-1:-1:-1;;;;;18763:2:1;18756:5;18752:14;18790:2;18781:7;18778:15;18775:41;;18796:18;;:::i;:::-;18845:1;18832:15;;18644:209;-1:-1:-1;;;18644:209:1:o;18858:257::-;-1:-1:-1;;;;;18979:10:1;;;18991;;;18975:27;19022:20;;;;18929:18;19061:24;;;19051:58;;19089:18;;:::i;:::-;19051:58;;18858:257;;;;:::o;19120:1187::-;19397:3;19426:1;19459:6;19453:13;19489:36;19515:9;19489:36;:::i;:::-;19544:1;19561:18;;;19588:133;;;;19735:1;19730:356;;;;19554:532;;19588:133;-1:-1:-1;;19621:24:1;;19609:37;;19694:14;;19687:22;19675:35;;19666:45;;;-1:-1:-1;19588:133:1;;19730:356;19761:6;19758:1;19751:17;19791:4;19836:2;19833:1;19823:16;19861:1;19875:165;19889:6;19886:1;19883:13;19875:165;;;19967:14;;19954:11;;;19947:35;20010:16;;;;19904:10;;19875:165;;;19879:3;;;20069:6;20064:3;20060:16;20053:23;;19554:532;;;;;20117:6;20111:13;20133:68;20192:8;20187:3;20180:4;20172:6;20168:17;20133:68;:::i;:::-;-1:-1:-1;;;20223:18:1;;20250:22;;;20299:1;20288:13;;19120:1187;-1:-1:-1;;;;19120:1187:1:o;20657:401::-;20859:2;20841:21;;;20898:2;20878:18;;;20871:30;20937:34;20932:2;20917:18;;20910:62;-1:-1:-1;;;21003:2:1;20988:18;;20981:35;21048:3;21033:19;;20657:401::o;21814:125::-;21879:9;;;21900:10;;;21897:36;;;21913:18;;:::i;22287:127::-;22348:10;22343:3;22339:20;22336:1;22329:31;22379:4;22376:1;22369:15;22403:4;22400:1;22393:15;23509:670;23744:3;-1:-1:-1;;;;;23776:3:1;23772:28;23843:2;23834:6;23829:3;23825:16;23821:25;23816:3;23809:38;23898:2;23889:6;23884:3;23880:16;23876:25;23872:1;23867:3;23863:11;23856:46;23954:2;23945:6;23940:3;23936:16;23932:25;23927:2;23922:3;23918:12;23911:47;24010:2;24001:6;23996:3;23992:16;23988:25;23983:2;23978:3;23974:12;23967:47;;24043:6;24037:13;24059:73;24125:6;24120:2;24115:3;24111:12;24106:2;24098:6;24094:15;24059:73;:::i;:::-;24152:16;;;;24170:2;24148:25;;23509:670;-1:-1:-1;;;;;;23509:670:1:o;25602:414::-;25804:2;25786:21;;;25843:2;25823:18;;;25816:30;25882:34;25877:2;25862:18;;25855:62;-1:-1:-1;;;25948:2:1;25933:18;;25926:48;26006:3;25991:19;;25602:414::o;26021:489::-;-1:-1:-1;;;;;26290:15:1;;;26272:34;;26342:15;;26337:2;26322:18;;26315:43;26389:2;26374:18;;26367:34;;;26437:3;26432:2;26417:18;;26410:31;;;26215:4;;26458:46;;26484:19;;26476:6;26458:46;:::i;:::-;26450:54;26021:489;-1:-1:-1;;;;;;26021:489:1:o;26515:249::-;26584:6;26637:2;26625:9;26616:7;26612:23;26608:32;26605:52;;;26653:1;26650;26643:12;26605:52;26685:9;26679:16;26704:30;26728:5;26704:30;:::i;26769:127::-;26830:10;26825:3;26821:20;26818:1;26811:31;26861:4;26858:1;26851:15;26885:4;26882:1;26875:15
Swarm Source
ipfs://93e6a0ed2fc983c874dbe44ac55d896dd8fddf9afcbd44fbf5d96efd1f80d410
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.