ERC-721
Overview
Max Total Supply
10,000 PNL
Holders
1,744
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PNLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Panlo
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-25 */ /** *Submitted for verification at Etherscan.io on 2023-02-25 */ // SPDX-License-Identifier: MIT /** *Submitted for verification at Etherscan.io on 2023-02-17 */ // File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } } // File: @openzeppelin/contracts/utils/StorageSlot.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol) pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ``` * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/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: solidity-bits/contracts/Popcount.sol /** _____ ___ ___ __ ____ _ __ / ___/____ / (_)___/ (_) /___ __ / __ )(_) /______ \__ \/ __ \/ / / __ / / __/ / / / / __ / / __/ ___/ ___/ / /_/ / / / /_/ / / /_/ /_/ / / /_/ / / /_(__ ) /____/\____/_/_/\__,_/_/\__/\__, / /_____/_/\__/____/ /____/ - npm: https://www.npmjs.com/package/solidity-bits - github: https://github.com/estarriolvetch/solidity-bits */ pragma solidity ^0.8.0; library Popcount { uint256 private constant m1 = 0x5555555555555555555555555555555555555555555555555555555555555555; uint256 private constant m2 = 0x3333333333333333333333333333333333333333333333333333333333333333; uint256 private constant m4 = 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f; uint256 private constant h01 = 0x0101010101010101010101010101010101010101010101010101010101010101; function popcount256A(uint256 x) internal pure returns (uint256 count) { unchecked{ for (count=0; x!=0; count++) x &= x - 1; } } function popcount256B(uint256 x) internal pure returns (uint256) { if (x == type(uint256).max) { return 256; } unchecked { x -= (x >> 1) & m1; //put count of each 2 bits into those 2 bits x = (x & m2) + ((x >> 2) & m2); //put count of each 4 bits into those 4 bits x = (x + (x >> 4)) & m4; //put count of each 8 bits into those 8 bits x = (x * h01) >> 248; //returns left 8 bits of x + (x<<8) + (x<<16) + (x<<24) + ... } return x; } } // File: solidity-bits/contracts/BitScan.sol /** _____ ___ ___ __ ____ _ __ / ___/____ / (_)___/ (_) /___ __ / __ )(_) /______ \__ \/ __ \/ / / __ / / __/ / / / / __ / / __/ ___/ ___/ / /_/ / / / /_/ / / /_/ /_/ / / /_/ / / /_(__ ) /____/\____/_/_/\__,_/_/\__/\__, / /_____/_/\__/____/ /____/ - npm: https://www.npmjs.com/package/solidity-bits - github: https://github.com/estarriolvetch/solidity-bits */ pragma solidity ^0.8.0; library BitScan { uint256 constant private DEBRUIJN_256 = 0x818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff; bytes constant private LOOKUP_TABLE_256 = hex"0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8"; /** @dev Isolate the least significant set bit. */ function isolateLS1B256(uint256 bb) pure internal returns (uint256) { require(bb > 0); unchecked { return bb & (0 - bb); } } /** @dev Isolate the most significant set bit. */ function isolateMS1B256(uint256 bb) pure internal returns (uint256) { require(bb > 0); unchecked { bb |= bb >> 128; bb |= bb >> 64; bb |= bb >> 32; bb |= bb >> 16; bb |= bb >> 8; bb |= bb >> 4; bb |= bb >> 2; bb |= bb >> 1; return (bb >> 1) + 1; } } /** @dev Find the index of the lest significant set bit. (trailing zero count) */ function bitScanForward256(uint256 bb) pure internal returns (uint8) { unchecked { return uint8(LOOKUP_TABLE_256[(isolateLS1B256(bb) * DEBRUIJN_256) >> 248]); } } /** @dev Find the index of the most significant set bit. */ function bitScanReverse256(uint256 bb) pure internal returns (uint8) { unchecked { return 255 - uint8(LOOKUP_TABLE_256[((isolateMS1B256(bb) * DEBRUIJN_256) >> 248)]); } } function log2(uint256 bb) pure internal returns (uint8) { unchecked { return uint8(LOOKUP_TABLE_256[(isolateMS1B256(bb) * DEBRUIJN_256) >> 248]); } } } // File: solidity-bits/contracts/BitMaps.sol /** _____ ___ ___ __ ____ _ __ / ___/____ / (_)___/ (_) /___ __ / __ )(_) /______ \__ \/ __ \/ / / __ / / __/ / / / / __ / / __/ ___/ ___/ / /_/ / / / /_/ / / /_/ /_/ / / /_/ / / /_(__ ) /____/\____/_/_/\__,_/_/\__/\__, / /_____/_/\__/____/ /____/ - npm: https://www.npmjs.com/package/solidity-bits - github: https://github.com/estarriolvetch/solidity-bits */ pragma solidity ^0.8.0; /** * @dev This Library is a modified version of Openzeppelin's BitMaps library with extra features. * * 1. Functions of finding the index of the closest set bit from a given index are added. * The indexing of each bucket is modifed to count from the MSB to the LSB instead of from the LSB to the MSB. * The modification of indexing makes finding the closest previous set bit more efficient in gas usage. * 2. Setting and unsetting the bitmap consecutively. * 3. Accounting number of set bits within a given range. * */ /** * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential. * Largelly inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor]. */ library BitMaps { using BitScan for uint256; uint256 private constant MASK_INDEX_ZERO = (1 << 255); uint256 private constant MASK_FULL = type(uint256).max; struct BitMap { mapping(uint256 => uint256) _data; } /** * @dev Returns whether the bit at `index` is set. */ function get(BitMap storage bitmap, uint256 index) internal view returns (bool) { uint256 bucket = index >> 8; uint256 mask = MASK_INDEX_ZERO >> (index & 0xff); return bitmap._data[bucket] & mask != 0; } /** * @dev Sets the bit at `index` to the boolean `value`. */ function setTo( BitMap storage bitmap, uint256 index, bool value ) internal { if (value) { set(bitmap, index); } else { unset(bitmap, index); } } /** * @dev Sets the bit at `index`. */ function set(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = MASK_INDEX_ZERO >> (index & 0xff); bitmap._data[bucket] |= mask; } /** * @dev Unsets the bit at `index`. */ function unset(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = MASK_INDEX_ZERO >> (index & 0xff); bitmap._data[bucket] &= ~mask; } /** * @dev Consecutively sets `amount` of bits starting from the bit at `startIndex`. */ function setBatch(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal { uint256 bucket = startIndex >> 8; uint256 bucketStartIndex = (startIndex & 0xff); unchecked { if(bucketStartIndex + amount < 256) { bitmap._data[bucket] |= MASK_FULL << (256 - amount) >> bucketStartIndex; } else { bitmap._data[bucket] |= MASK_FULL >> bucketStartIndex; amount -= (256 - bucketStartIndex); bucket++; while(amount > 256) { bitmap._data[bucket] = MASK_FULL; amount -= 256; bucket++; } bitmap._data[bucket] |= MASK_FULL << (256 - amount); } } } /** * @dev Consecutively unsets `amount` of bits starting from the bit at `startIndex`. */ function unsetBatch(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal { uint256 bucket = startIndex >> 8; uint256 bucketStartIndex = (startIndex & 0xff); unchecked { if(bucketStartIndex + amount < 256) { bitmap._data[bucket] &= ~(MASK_FULL << (256 - amount) >> bucketStartIndex); } else { bitmap._data[bucket] &= ~(MASK_FULL >> bucketStartIndex); amount -= (256 - bucketStartIndex); bucket++; while(amount > 256) { bitmap._data[bucket] = 0; amount -= 256; bucket++; } bitmap._data[bucket] &= ~(MASK_FULL << (256 - amount)); } } } /** * @dev Returns number of set bits within a range. */ function popcountA(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal view returns(uint256 count) { uint256 bucket = startIndex >> 8; uint256 bucketStartIndex = (startIndex & 0xff); unchecked { if(bucketStartIndex + amount < 256) { count += Popcount.popcount256A( bitmap._data[bucket] & (MASK_FULL << (256 - amount) >> bucketStartIndex) ); } else { count += Popcount.popcount256A( bitmap._data[bucket] & (MASK_FULL >> bucketStartIndex) ); amount -= (256 - bucketStartIndex); bucket++; while(amount > 256) { count += Popcount.popcount256A(bitmap._data[bucket]); amount -= 256; bucket++; } count += Popcount.popcount256A( bitmap._data[bucket] & (MASK_FULL << (256 - amount)) ); } } } /** * @dev Returns number of set bits within a range. */ function popcountB(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal view returns(uint256 count) { uint256 bucket = startIndex >> 8; uint256 bucketStartIndex = (startIndex & 0xff); unchecked { if(bucketStartIndex + amount < 256) { count += Popcount.popcount256B( bitmap._data[bucket] & (MASK_FULL << (256 - amount) >> bucketStartIndex) ); } else { count += Popcount.popcount256B( bitmap._data[bucket] & (MASK_FULL >> bucketStartIndex) ); amount -= (256 - bucketStartIndex); bucket++; while(amount > 256) { count += Popcount.popcount256B(bitmap._data[bucket]); amount -= 256; bucket++; } count += Popcount.popcount256B( bitmap._data[bucket] & (MASK_FULL << (256 - amount)) ); } } } /** * @dev Find the closest index of the set bit before `index`. */ function scanForward(BitMap storage bitmap, uint256 index) internal view returns (uint256 setBitIndex) { uint256 bucket = index >> 8; // index within the bucket uint256 bucketIndex = (index & 0xff); // load a bitboard from the bitmap. uint256 bb = bitmap._data[bucket]; // offset the bitboard to scan from `bucketIndex`. bb = bb >> (0xff ^ bucketIndex); // bb >> (255 - bucketIndex) if(bb > 0) { unchecked { setBitIndex = (bucket << 8) | (bucketIndex - bb.bitScanForward256()); } } else { while(true) { require(bucket > 0, "BitMaps: The set bit before the index doesn't exist."); unchecked { bucket--; } // No offset. Always scan from the least significiant bit now. bb = bitmap._data[bucket]; if(bb > 0) { unchecked { setBitIndex = (bucket << 8) | (255 - bb.bitScanForward256()); break; } } } } } function getBucket(BitMap storage bitmap, uint256 bucket) internal view returns (uint256) { return bitmap._data[bucket]; } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: erc721psi/contracts/ERC721Psi.sol /** ______ _____ _____ ______ ___ __ _ _ _ | ____| __ \ / ____|____ |__ \/_ | || || | | |__ | |__) | | / / ) || | \| |/ | | __| | _ /| | / / / / | |\_ _/ | |____| | \ \| |____ / / / /_ | | | | |______|_| \_\\_____|/_/ |____||_| |_| - github: https://github.com/estarriolvetch/ERC721Psi - npm: https://www.npmjs.com/package/erc721psi */ pragma solidity ^0.8.0; contract ERC721Psi is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; using BitMaps for BitMaps.BitMap; BitMaps.BitMap internal _batchHead; string private _name; string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) internal _owners; uint256 internal _currentIndex; mapping(uint256 => address) private _tokenApprovals; 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_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal pure virtual returns (uint256) { // It will become modifiable in the future versions return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { return _currentIndex - _startTokenId(); } /** * @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 (uint) { require(owner != address(0), "ERC721Psi: balance query for the zero address"); uint count; for( uint i = _startTokenId(); i < _nextTokenId(); ++i ){ if(_exists(i)){ if( owner == ownerOf(i)){ ++count; } } } return count; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { (address owner, ) = _ownerAndBatchHeadOf(tokenId); return owner; } function _ownerAndBatchHeadOf(uint256 tokenId) internal view virtual returns (address owner, uint256 tokenIdBatchHead){ require(_exists(tokenId), "ERC721Psi: owner query for nonexistent token"); tokenIdBatchHead = _getBatchHead(tokenId); owner = _owners[tokenIdBatchHead]; } /** * @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) { require(_exists(tokenId), "ERC721Psi: URI query for nonexistent token"); 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 overriden 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 = ownerOf(tokenId); require(to != owner, "ERC721Psi: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721Psi: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721Psi: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721Psi: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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), "ERC721Psi: transfer caller is not owner nor 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), "ERC721Psi: transfer caller is not owner nor 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, 1,_data), "ERC721Psi: transfer to non ERC721Receiver implementer" ); } /** * @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`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _nextTokenId() && _startTokenId() <= tokenId; } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721Psi: operator query for nonexistent token" ); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ""); } function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { uint256 nextTokenId = _nextTokenId(); _mint(to, quantity); require( _checkOnERC721Received(address(0), to, nextTokenId, quantity, _data), "ERC721Psi: transfer to non ERC721Receiver implementer" ); } function _mint( address to, uint256 quantity ) internal virtual { uint256 nextTokenId = _nextTokenId(); require(quantity > 0, "ERC721Psi: quantity must be greater 0"); require(to != address(0), "ERC721Psi: mint to the zero address"); _beforeTokenTransfers(address(0), to, nextTokenId, quantity); _currentIndex += quantity; _owners[nextTokenId] = to; _batchHead.set(nextTokenId); _afterTokenTransfers(address(0), to, nextTokenId, quantity); // Emit events for(uint256 tokenId=nextTokenId; tokenId < nextTokenId + quantity; tokenId++){ emit Transfer(address(0), to, tokenId); } } /** * @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 { (address owner, uint256 tokenIdBatchHead) = _ownerAndBatchHeadOf(tokenId); require( owner == from, "ERC721Psi: transfer of token that is not own" ); require(to != address(0), "ERC721Psi: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId); uint256 subsequentTokenId = tokenId + 1; if(!_batchHead.get(subsequentTokenId) && subsequentTokenId < _nextTokenId() ) { _owners[subsequentTokenId] = from; _batchHead.set(subsequentTokenId); } _owners[tokenId] = to; if(tokenId != tokenIdBatchHead) { _batchHead.set(tokenId); } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } /** * @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 startTokenId uint256 the first ID of the tokens to be transferred * @param quantity uint256 amount of the tokens to be transfered. * @param _data bytes optional data to send along with the call * @return r bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 startTokenId, uint256 quantity, bytes memory _data ) private returns (bool r) { if (to.isContract()) { r = true; for(uint256 tokenId = startTokenId; tokenId < startTokenId + quantity; tokenId++){ try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { r = r && retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721Psi: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } return r; } else { return true; } } function _getBatchHead(uint256 tokenId) internal view returns (uint256 tokenIdBatchHead) { tokenIdBatchHead = _batchHead.scanForward(tokenId); } function totalSupply() public virtual view returns (uint256) { return _totalMinted(); } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * This function is compatiable with ERC721AQueryable. */ function tokensOfOwner(address owner) external view virtual returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { if (_exists(i)) { if (ownerOf(i) == owner) { tokenIds[tokenIdsIdx++] = i; } } } return tokenIds; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: erc721psi/contracts/extension/ERC721PsiBurnable.sol /** ______ _____ _____ ______ ___ __ _ _ _ | ____| __ \ / ____|____ |__ \/_ | || || | | |__ | |__) | | / / ) || | \| |/ | | __| | _ /| | / / / / | |\_ _/ | |____| | \ \| |____ / / / /_ | | | | |______|_| \_\\_____|/_/ |____||_| |_| */ pragma solidity ^0.8.0; abstract contract ERC721PsiBurnable is ERC721Psi { using BitMaps for BitMaps.BitMap; BitMaps.BitMap internal _burnedToken; /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address from = ownerOf(tokenId); _beforeTokenTransfers(from, address(0), tokenId, 1); _burnedToken.set(tokenId); emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); } /** * @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 override virtual returns (bool){ if(_burnedToken.get(tokenId)) { return false; } return super._exists(tokenId); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalMinted() - _burned(); } /** * @dev Returns number of token burned. */ function _burned() internal view returns (uint256 burned){ uint256 startBucket = _startTokenId() >> 8; uint256 lastBucket = (_nextTokenId() >> 8) + 1; for(uint256 i=startBucket; i < lastBucket; i++) { uint256 bucket = _burnedToken.getBucket(i); burned += _popcount(bucket); } } /** * @dev Returns number of set bits. */ function _popcount(uint256 x) private pure returns (uint256 count) { unchecked{ for (count=0; x!=0; count++) x &= x - 1; } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: EXO/NEW/EXO.sol pragma solidity >=0.6.0; /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides functions for encoding/decoding base64 library Base64 { string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; bytes internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000" hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000" hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000" hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE_ENCODE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { // read 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // write 4 characters mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and( input, 0x3F)))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } function decode(string memory _data) internal pure returns (bytes memory) { bytes memory data = bytes(_data); if (data.length == 0) return new bytes(0); require(data.length % 4 == 0, "invalid base64 decoder input"); // load the table into memory bytes memory table = TABLE_DECODE; // every 4 characters represent 3 bytes uint256 decodedLen = (data.length / 4) * 3; // add some extra buffer at the end required for the writing bytes memory result = new bytes(decodedLen + 32); assembly { // padding with '=' let lastBytes := mload(add(data, mload(data))) if eq(and(lastBytes, 0xFF), 0x3d) { decodedLen := sub(decodedLen, 1) if eq(and(lastBytes, 0xFFFF), 0x3d3d) { decodedLen := sub(decodedLen, 1) } } // set the actual output length mstore(result, decodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 4 characters at a time for {} lt(dataPtr, endPtr) {} { // read 4 characters dataPtr := add(dataPtr, 4) let input := mload(dataPtr) // write 3 bytes let output := add( add( shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)), shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))), add( shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)), and(mload(add(tablePtr, and( input , 0xFF))), 0xFF) ) ) mstore(resultPtr, shl(232, output)) resultPtr := add(resultPtr, 3) } } return result; } } pragma solidity ^0.8.7; abstract contract MerkleProof { mapping(uint256 => bytes32) internal _wlMerkleRoot; mapping(uint256 => bytes32) internal _alMerkleRoot; uint256 public phaseId; function _setWlMerkleRoot(bytes32 merkleRoot_) internal virtual { _wlMerkleRoot[phaseId] = merkleRoot_; } function _setWlMerkleRootWithId(uint256 _phaseId,bytes32 merkleRoot_) internal virtual { _wlMerkleRoot[_phaseId] = merkleRoot_; } function isWhitelisted(address address_, uint256 _phaseId, uint256 wlCount, bytes32[] memory proof_) public view returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(address_, wlCount)); for (uint256 i = 0; i < proof_.length; i++) { _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf)); } return _leaf == _wlMerkleRoot[_phaseId]; } function _setAlMerkleRootWithId(uint256 _phaseId,bytes32 merkleRoot_) internal virtual { _alMerkleRoot[_phaseId] = merkleRoot_; } function _setAlMerkleRoot(bytes32 merkleRoot_) internal virtual { _alMerkleRoot[phaseId] = merkleRoot_; } function isAllowlisted(address address_,uint256 _phaseId, bytes32[] memory proof_) public view returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(address_)); for (uint256 i = 0; i < proof_.length; i++) { _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf)); } return _leaf == _alMerkleRoot[_phaseId]; } } pragma solidity ^0.8.9; abstract contract Operable is Context { mapping(address => bool) _operators; modifier onlyOperator() { _checkOperatorRole(_msgSender()); _; } function isOperator(address _operator) public view returns (bool) { return _operators[_operator]; } function _grantOperatorRole(address _candidate) internal { require( !_operators[_candidate], string( abi.encodePacked( "account ", Strings.toHexString(uint160(_msgSender()), 20), " is already has an operator role" ) ) ); _operators[_candidate] = true; } function _revokeOperatorRole(address _candidate) internal { _checkOperatorRole(_candidate); delete _operators[_candidate]; } function _checkOperatorRole(address _operator) internal view { require( _operators[_operator], string( abi.encodePacked( "account ", Strings.toHexString(uint160(_msgSender()), 20), " is not an operator" ) ) ); } } pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); bool public operatorFilteringEnabled = true; IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0 && operatorFilteringEnabled) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0 && operatorFilteringEnabled) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity >=0.7.0 <0.9.0; interface IContractAllowListProxy { function isAllowed(address _transferer, uint256 _level) external view returns (bool); } pragma solidity >=0.8.0; /// @title IERC721RestrictApprove /// @dev Approve抑制機能付きコントラクトのインターフェース /// @author Lavulite interface IERC721RestrictApprove { /** * @dev CALレベルが変更された場合のイベント */ event CalLevelChanged(address indexed operator, uint256 indexed level); /** * @dev LocalContractAllowListnに追加された場合のイベント */ event LocalCalAdded(address indexed operator, address indexed transferer); /** * @dev LocalContractAllowListnに削除された場合のイベント */ event LocalCalRemoved(address indexed operator, address indexed transferer); /** * @dev CALを利用する場合のCALのレベルを設定する。レベルが高いほど、許可されるコントラクトの範囲が狭い。 */ function setCALLevel(uint256 level) external; /** * @dev CALのアドレスをセットする。 */ function setCAL(address calAddress) external; /** * @dev CALのリストに無い独自の許可アドレスを追加する場合、こちらにアドレスを記載する。 */ function addLocalContractAllowList(address transferer) external; /** * @dev CALのリストにある独自の許可アドレスを削除する場合、こちらにアドレスを記載する。 */ function removeLocalContractAllowList(address transferer) external; /** * @dev CALのリストにある独自の許可アドレスの一覧を取得する。 */ function getLocalContractAllowList() external view returns(address[] memory); } pragma solidity >=0.8.0; /// @title AntiScam機能付きERC721A /// @dev Readmeを見てください。 abstract contract ERC721RestrictApprove is ERC721PsiBurnable, IERC721RestrictApprove { using EnumerableSet for EnumerableSet.AddressSet; IContractAllowListProxy public CAL; EnumerableSet.AddressSet localAllowedAddresses; modifier onlyHolder(uint256 tokenId) { require( msg.sender == ownerOf(tokenId), "RestrictApprove: operation is only holder." ); _; } /*////////////////////////////////////////////////////////////// 変数 //////////////////////////////////////////////////////////////*/ bool public enableRestrict = true; // token lock mapping(uint256 => uint256) public tokenCALLevel; // wallet lock mapping(address => uint256) public walletCALLevel; // contract lock uint256 public CALLevel = 1; /*/////////////////////////////////////////////////////////////// Approve抑制機能ロジック //////////////////////////////////////////////////////////////*/ function _addLocalContractAllowList(address transferer) internal virtual { localAllowedAddresses.add(transferer); emit LocalCalAdded(msg.sender, transferer); } function _removeLocalContractAllowList(address transferer) internal virtual { localAllowedAddresses.remove(transferer); emit LocalCalRemoved(msg.sender, transferer); } function _getLocalContractAllowList() internal virtual view returns(address[] memory) { return localAllowedAddresses.values(); } function _isLocalAllowed(address transferer) internal view virtual returns (bool) { return localAllowedAddresses.contains(transferer); } function _isAllowed(address transferer) internal view virtual returns (bool) { return _isAllowed(msg.sender, transferer); } function _isAllowed(uint256 tokenId, address transferer) internal view virtual returns (bool) { uint256 level = _getCALLevel(msg.sender, tokenId); return _isAllowed(transferer, level); } function _isAllowed(address holder, address transferer) internal view virtual returns (bool) { uint256 level = _getCALLevel(holder); return _isAllowed(transferer, level); } function _isAllowed(address transferer, uint256 level) internal view virtual returns (bool) { if (!enableRestrict) { return true; } return _isLocalAllowed(transferer) || CAL.isAllowed(transferer, level); } function _getCALLevel(address holder, uint256 tokenId) internal view virtual returns (uint256) { if (tokenCALLevel[tokenId] > 0) { return tokenCALLevel[tokenId]; } return _getCALLevel(holder); } function _getCALLevel(address holder) internal view virtual returns (uint256) { if (walletCALLevel[holder] > 0) { return walletCALLevel[holder]; } return CALLevel; } function _setCAL(address _cal) internal virtual { CAL = IContractAllowListProxy(_cal); } function _deleteTokenCALLevel(uint256 tokenId) internal virtual { delete tokenCALLevel[tokenId]; } function setTokenCALLevel(uint256 tokenId, uint256 level) external virtual onlyHolder(tokenId) { tokenCALLevel[tokenId] = level; } function setWalletCALLevel(uint256 level) external virtual { walletCALLevel[msg.sender] = level; } /*/////////////////////////////////////////////////////////////// OVERRIDES //////////////////////////////////////////////////////////////*/ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { if (_isAllowed(owner, operator) == false) { return false; } return super.isApprovedForAll(owner, operator); } function setApprovalForAll(address operator, bool approved) public virtual override { require( _isAllowed(operator) || approved == false, "RestrictApprove: Can not approve locked token" ); super.setApprovalForAll(operator, approved); } function _beforeApprove(address to, uint256 tokenId) internal virtual { if (to != address(0)) { require(_isAllowed(tokenId, to), "RestrictApprove: The contract is not allowed."); } } function approve(address to, uint256 tokenId) public virtual override { _beforeApprove(to, tokenId); super.approve(to, tokenId); } function _afterTokenTransfers( address from, address, /*to*/ uint256 startTokenId, uint256 /*quantity*/ ) internal virtual override { // 転送やバーンにおいては、常にstartTokenIdは TokenIDそのものとなります。 if (from != address(0)) { // CALレベルをデフォルトに戻す。 _deleteTokenCALLevel(startTokenId); } } function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC721RestrictApprove).interfaceId || super.supportsInterface(interfaceId); } } pragma solidity ^0.8.7; /* ██████╗░░█████╗░███╗░░██╗██╗░░░░░░█████╗░ ██╔══██╗██╔══██╗████╗░██║██║░░░░░██╔══██╗ ██████╔╝███████║██╔██╗██║██║░░░░░██║░░██║ ██╔═══╝░██╔══██║██║╚████║██║░░░░░██║░░██║ ██║░░░░░██║░░██║██║░╚███║███████╗╚█████╔╝ ╚═╝░░░░░╚═╝░░╚═╝╚═╝░░╚══╝╚══════╝░╚════╝░ -PANLO by STARTJPN- */ contract Panlo is Ownable, ERC721RestrictApprove, ReentrancyGuard, MerkleProof, ERC2981, DefaultOperatorFilterer,Operable { //Project Settings uint256 public wlMintPrice = 0.0 ether; uint256 public alMintPrice = 0.0 ether; uint256 public psMintPrice = 0.0 ether; mapping(uint256 => uint256) public maxMintsPerAL; uint256 public maxMintsPerPS = 2; uint256 public maxMintsPerALOT = 1; uint256 public maxMintsPerPSOT = 1; uint256 public maxSupply = 10000; uint256 public mintable = 10000; uint256 public revealed = 0; uint256 public nowPhaseAl; uint256 public nowPhasePs; uint256 public maxReveal; uint256 public cntBlock;// = 604800; address internal _withdrawWallet; //URI string internal hiddenURI; string internal _baseTokenURI; string public _baseExtension = ".json"; //flags bool public isAlSaleEnabled; bool public isPublicSaleEnabled; bool internal hodlTimSys = false; bool internal lockBurn = true; //mint records. mapping(uint256 => mapping(address => uint256)) internal _wlMinted; mapping(uint256 => mapping(address => uint256)) internal _alMinted; mapping(uint256 => mapping(address => uint256)) internal _psMinted; mapping(uint256 => uint256) internal _updateAt; mapping(uint256 => int256) internal _lockTim; mapping(uint256 => bool) public isWlSaleEnabled; constructor ( address _royaltyReceiver, uint96 _royaltyFraction ) ERC721Psi ("Panlo by STARTPH","PNL") { _grantOperatorRole(msg.sender); _grantOperatorRole(_royaltyReceiver); _setDefaultRoyalty(_royaltyReceiver,_royaltyFraction); //CAL initialization setCALLevel(1); _setCAL(0xF2A78c73ffBAB6ECc3548Acc54B546ace279312E);//Ethereum mainnet proxy _addLocalContractAllowList(0x1E0049783F008A0085193E00003D00cd54003c71);//OpenSea _addLocalContractAllowList(0x4feE7B061C97C9c496b01DbcE9CDb10c02f0a0Be);//Rarible hiddenURI = "https://startdata.io/PNL/hidden.json"; } //start from 1.adjust. function _startTokenId() internal pure virtual override returns (uint256) { return 1; } //set Default Royalty._feeNumerator 500 = 5% Royalty function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external virtual onlyOperator { _setDefaultRoyalty(_receiver, _feeNumerator); } //for ERC2981 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721RestrictApprove, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } //for ERC2981 Opensea function contractURI() external view virtual returns (string memory) { return _formatContractURI(); } //make contractURI function _formatContractURI() internal view returns (string memory) { (address receiver, uint256 royaltyFraction) = royaltyInfo(0,_feeDenominator());//tokenid=0 return string( abi.encodePacked( "data:application/json;base64,", Base64.encode( bytes( abi.encodePacked( '{"seller_fee_basis_points":', Strings.toString(royaltyFraction), ', "fee_recipient":"', Strings.toHexString(uint256(uint160(receiver)), 20), '"}' ) ) ) ) ); } //set maxSupply.only owner. function setMaxSupply(uint256 _maxSupply) external virtual onlyOperator { require(totalSupply() <= _maxSupply, "Lower than _currentIndex."); maxSupply = _maxSupply; } function setMintable(uint256 _mintable) external virtual onlyOperator { require(totalSupply() <= _mintable, "Lower than _currentIndex."); mintable = _mintable; } // GET phaseId. function getPhaseId() external view virtual returns (uint256){ return phaseId; } // SET phaseId. function setPhaseId(uint256 _phaseId) external virtual onlyOperator { phaseId = _phaseId; } // SET phaseId. function setPhaseIdWithReset(uint256 _phaseId) external virtual onlyOperator { phaseId = _phaseId; nowPhaseAl += 1; } function setNowPhaseAl(uint256 _nowPhaseAl) external virtual onlyOperator { nowPhaseAl = _nowPhaseAl; } function setNowPhasePs(uint256 _nowPhasePs) external virtual onlyOperator { nowPhasePs = _nowPhasePs; } // SET PRICES. //WL.Price function setWlPrice(uint256 newPrice) external virtual onlyOperator { wlMintPrice = newPrice; } //AL.Price function setAlPrice(uint256 newPrice) external virtual onlyOperator { alMintPrice = newPrice; } //PS.Price function setPsPrice(uint256 newPrice) external virtual onlyOperator { psMintPrice = newPrice; } //set reveal.only owner. function setReveal(uint256 newRevealNum) external virtual onlyOperator { revealed = newRevealNum; } //return _isRevealed() function _isRevealed(uint256 _tokenId) internal view virtual returns (bool){ return _tokenId <= revealed; } // GET MINTED COUNT. function wlMinted(address _address,uint256 _phaseId) external view virtual returns (uint256){ return _wlMinted[_phaseId][_address]; } function alMinted(address _address) external view virtual returns (uint256){ return _alMinted[nowPhaseAl][_address]; } function alIdMinted(uint256 _nowPhaseAl,address _address) external view virtual returns (uint256){ return _alMinted[_nowPhaseAl][_address]; } function psMinted(address _address) external view virtual returns (uint256){ return _psMinted[nowPhasePs][_address]; } // SET MAX MINTS. //get.AL.mxmints function getAlMaxMints() external view virtual returns (uint256){ return maxMintsPerAL[phaseId]; } //set.AL.mxmints function setAlMaxMints(uint256 _phaseId,uint256 _max) external virtual onlyOperator { maxMintsPerAL[_phaseId] = _max; } //PS.mxmints function setPsMaxMints(uint256 _max) external virtual onlyOperator { maxMintsPerPS = _max; } // SET SALES ENABLE. //WL.SaleEnable function setWhitelistSaleEnable(uint256 _phaseId,bool bool_) external virtual onlyOperator { isWlSaleEnabled[_phaseId] = bool_; } //AL.SaleEnable function setAllowlistSaleEnable(bool bool_) external virtual onlyOperator { isAlSaleEnabled = bool_; } //PS.SaleEnable function setPublicSaleEnable(bool bool_) external virtual onlyOperator { isPublicSaleEnabled = bool_; } // SET MERKLE ROOT. function setMerkleRootWl(bytes32 merkleRoot_) external virtual onlyOperator { _setWlMerkleRoot(merkleRoot_); } function setMerkleRootWlWithId(uint256 _phaseId,bytes32 merkleRoot_) external virtual onlyOperator { _setWlMerkleRootWithId(_phaseId,merkleRoot_); } function setMerkleRootAlWithId(uint256 _phaseId,bytes32 merkleRoot_) external virtual onlyOperator { _setAlMerkleRootWithId(_phaseId,merkleRoot_); } //set HiddenBaseURI.only owner. function setHiddenURI(string memory uri_) external virtual onlyOperator { hiddenURI = uri_; } //return _currentIndex function getCurrentIndex() external view virtual returns (uint256){ return _nextTokenId() -1; } /** @dev set BaseURI at after reveal. only owner. */ function setBaseURI(string memory uri_) external virtual onlyOperator { _baseTokenURI = uri_; } function setBaseExtension(string memory _newBaseExtension) external onlyOperator { _baseExtension = _newBaseExtension; } /** @dev BaseURI.internal. */ function _currentBaseURI() internal view returns (string memory){ return _baseTokenURI; } function getTokenTim(uint256 _tokenId) external view virtual returns (uint256) { require(_exists(_tokenId), "URI query for nonexistent token"); return _updateAt[_tokenId]; } function getTokenTimId(uint256 _tokenId) internal view virtual returns (int256) { require(_exists(_tokenId), "URI query for nonexistent token"); int256 revealId = (int256(block.timestamp)-int256(_updateAt[_tokenId])) / int256(cntBlock); if (revealId >= int256(maxReveal)){ revealId = int256(maxReveal); } return revealId; } /** @dev fixrevId. */ function fixToken(uint256 _tokenId) external virtual { require(_exists(_tokenId), "URI query for nonexistent token"); require(ownerOf(_tokenId) == msg.sender, "isnt owner token"); if(_isRevealed(_tokenId)){ if(hodlTimSys){ int256 revealId = getTokenTimId(_tokenId); _lockTim[_tokenId] = revealId; } } } /** @dev unfixrevId. */ function unfixToken(uint256 _tokenId) external virtual { require(_exists(_tokenId), "URI query for nonexistent token"); require(ownerOf(_tokenId) == msg.sender, "isnt owner token"); _lockTim[_tokenId] = 0; } // SET MAX Rev. function setmaxReveal(uint256 _max) external virtual onlyOwner { maxReveal = _max; } // SET Cntable. function setcntBlock(uint256 _cnt) external virtual onlyOwner { cntBlock = _cnt; } function _beforeTokenTransfers(address from,address to,uint256 startTokenId,uint256 quantity) internal override { // if(from != address(0)){ _updateAt[startTokenId] = block.timestamp; uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { _updateAt[updatedIndex++] = block.timestamp; } while (updatedIndex < end); // } super._beforeTokenTransfers(from, to, startTokenId, quantity); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); if(_isRevealed(_tokenId)){ if(_lockTim[_tokenId] > 0){ return string(abi.encodePacked(_currentBaseURI(), Strings.toString(uint256(_lockTim[_tokenId])) ,"/", Strings.toString((_tokenId)), _baseExtension)); } if(hodlTimSys){ int256 revealId = getTokenTimId(_tokenId); return string(abi.encodePacked(_currentBaseURI(), Strings.toString(uint256(revealId)) ,"/", Strings.toString((_tokenId)), _baseExtension)); } return string(abi.encodePacked(_currentBaseURI(), Strings.toString(_tokenId), _baseExtension)); } return hiddenURI; } /** @dev owner mint.transfer to _address.only owner. */ function ownerMintSafe(uint256 _amount, address _address) external virtual onlyOperator { require((_amount + totalSupply()) <= (maxSupply), "No more NFTs"); _safeMint(_address, _amount); } //WL mint. function whitelistMint(uint256 _phaseId,uint256 _amount, uint256 wlcount, bytes32[] memory proof_) external payable virtual nonReentrant { require(isWlSaleEnabled[_phaseId], "whitelistMint is Paused"); require(isWhitelisted(msg.sender,_phaseId, wlcount, proof_), "You are not whitelisted!"); require(wlcount > 0, "You have no WL!"); require(wlcount >= _amount, "whitelistMint: Over max mints per wallet"); require(wlcount >= _wlMinted[_phaseId][msg.sender] + _amount, "You have no whitelistMint left"); require(msg.value == wlMintPrice * _amount, "ETH value is not correct"); require((_amount + totalSupply()) <= (mintable), "No more NFTs"); _wlMinted[_phaseId][msg.sender] += _amount; _safeMint(msg.sender, _amount); } //AL mint. function allowlistMint(uint256 _amount, bytes32[] memory proof_) external payable virtual nonReentrant { require(isAlSaleEnabled, "allowlistMint is Paused"); require(isAllowlisted(msg.sender,phaseId, proof_), "You are not whitelisted!"); require(maxMintsPerALOT >= _amount, "allowlistMint: Over max mints per one time"); require(maxMintsPerAL[phaseId] >= _amount, "allowlistMint: Over max mints per wallet"); require(maxMintsPerAL[phaseId] >= _alMinted[nowPhaseAl][msg.sender] + _amount, "You have no whitelistMint left"); require(msg.value == alMintPrice * _amount, "ETH value is not correct"); require((_amount + totalSupply()) <= (mintable), "No more NFTs"); _alMinted[nowPhaseAl][msg.sender] += _amount; _safeMint(msg.sender, _amount); } /** @dev receive. */ function receiveToDeb() external payable virtual nonReentrant { require(msg.value > 0, "ETH value is not correct"); } /** @dev widraw ETH from this contract.only operator. */ function withdraw() external payable virtual onlyOperator nonReentrant{ uint256 _ethBalance = address(this).balance; bool os; if(_withdrawWallet != address(0)){//if _withdrawWallet has. (os, ) = payable(_withdrawWallet).call{value: (_ethBalance)}(""); }else{ (os, ) = payable(owner()).call{value: (_ethBalance)}(""); } require(os, "Failed to withdraw Ether"); } //Public mint. function publicMint(uint256 _amount) external payable virtual nonReentrant { require(isPublicSaleEnabled, "publicMint is Paused"); require(maxMintsPerPSOT >= _amount, "publicMint: Over max mints per one time"); require(maxMintsPerPS >= _amount, "publicMint: Over max mints per wallet"); require(maxMintsPerPS >= _psMinted[nowPhasePs][msg.sender] + _amount, "You have no publicMint left"); require(msg.value == psMintPrice * _amount, "ETH value is not correct"); require((_amount + totalSupply()) <= (mintable), "No more NFTs"); _psMinted[nowPhasePs][msg.sender] += _amount; _safeMint(msg.sender, _amount); } //burn function burn(uint256 tokenId) external virtual { require(ownerOf(tokenId) == msg.sender, "isnt owner token"); require(lockBurn == false, "not allow"); _burn(tokenId); } //LB.SaleEnable function setLockBurn(bool bool_) external virtual onlyOperator { lockBurn = bool_; } //return wallet owned tokenids. function walletOfOwner(address _address) external view virtual returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_address); uint256[] memory tokenIds = new uint256[](ownerTokenCount); //search from all tonkenid. so spend high gas values.attention. uint256 tokenindex = 0; for (uint256 i = _startTokenId(); i < (_nextTokenId() -1); i++) { if(_address == this.tryOwnerOf(i)) tokenIds[tokenindex++] = i; } return tokenIds; } //try catch vaersion ownerOf. support burned tokenid. function tryOwnerOf(uint256 tokenId) external view virtual returns (address) { try this.ownerOf(tokenId) returns (address _address) { return(_address); } catch { return (address(0));//return 0x0 if error. } } //OPENSEA.OPERATORFilterer.START /** * @notice Set the state of the OpenSea operator filter * @param value Flag indicating if the operator filter should be applied to transfers and approvals */ function setOperatorFilteringEnabled(bool value) external onlyOperator { operatorFilteringEnabled = value; } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } //OPENSEA.OPERATORFilterer.END /*/////////////////////////////////////////////////////////////// OVERRIDES ERC721RestrictApprove //////////////////////////////////////////////////////////////*/ function addLocalContractAllowList(address transferer) external override onlyOperator { _addLocalContractAllowList(transferer); } function removeLocalContractAllowList(address transferer) external override onlyOperator { _removeLocalContractAllowList(transferer); } function getLocalContractAllowList() external override view returns(address[] memory) { return _getLocalContractAllowList(); } function setCALLevel(uint256 level) public override onlyOperator { CALLevel = level; } function setCAL(address calAddress) external override onlyOperator { _setCAL(calAddress); } /** @dev Operable.Role.ADD */ function grantOperatorRole(address _candidate) external onlyOwner { _grantOperatorRole(_candidate); } /** @dev Operable.Role.REMOVE */ function revokeOperatorRole(address _candidate) external onlyOwner { _revokeOperatorRole(_candidate); } } //CODE.BY.FRICKLIK
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"uint256","name":"level","type":"uint256"}],"name":"CalLevelChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"transferer","type":"address"}],"name":"LocalCalAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"transferer","type":"address"}],"name":"LocalCalRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CAL","outputs":[{"internalType":"contract IContractAllowListProxy","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CALLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"transferer","type":"address"}],"name":"addLocalContractAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nowPhaseAl","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"alIdMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"alMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cntBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableRestrict","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"fixToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAlMaxMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLocalContractAllowList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPhaseId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getTokenTim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_candidate","type":"address"}],"name":"grantOperatorRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isAlSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"_phaseId","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"_phaseId","type":"uint256"},{"internalType":"uint256","name":"wlCount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isWlSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxMintsPerAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerALOT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerPSOT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReveal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nowPhaseAl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nowPhasePs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMintSafe","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":[],"name":"phaseId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"psMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"receiveToDeb","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"transferer","type":"address"}],"name":"removeLocalContractAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_candidate","type":"address"}],"name":"revokeOperatorRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseId","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setAlMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setAlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setAllowlistSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"calAddress","type":"address"}],"name":"setCAL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"level","type":"uint256"}],"name":"setCALLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setLockBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseId","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRootAlWithId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRootWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseId","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRootWlWithId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintable","type":"uint256"}],"name":"setMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nowPhaseAl","type":"uint256"}],"name":"setNowPhaseAl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nowPhasePs","type":"uint256"}],"name":"setNowPhasePs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseId","type":"uint256"}],"name":"setPhaseId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseId","type":"uint256"}],"name":"setPhaseIdWithReset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setPsMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPsPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRevealNum","type":"uint256"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"level","type":"uint256"}],"name":"setTokenCALLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"level","type":"uint256"}],"name":"setWalletCALLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseId","type":"uint256"},{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWhitelistSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cnt","type":"uint256"}],"name":"setcntBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setmaxReveal","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":"","type":"uint256"}],"name":"tokenCALLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tryOwnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"unfixToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletCALLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"wlcount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_phaseId","type":"uint256"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
600c8054600160ff199182168117909255600f8290556016805490911682179055600060188190556019819055601a8190556002601c55601d829055601e91909155612710601f81905560205560215560c06040526005608090815264173539b7b760d91b60a05260299062000076908262000906565b50602a805463ffff0000191663010000001790553480156200009757600080fd5b506040516200661438038062006614833981016040819052620000ba91620009d2565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601081526020016f0a0c2dcd8de40c4f240a6a882a4a8a0960831b8152506040518060400160405280600381526020016214139360ea1b815250620001306200012a6200036660201b60201c565b6200036a565b60026200013e838262000906565b5060036200014d828262000906565b506001600555505060016010556daaeb6d7670e522a718067333cd4e3b156200029f578015620001ed57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001ce57600080fd5b505af1158015620001e3573d6000803e3d6000fd5b505050506200029f565b6001600160a01b038216156200023e5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620001b3565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200028557600080fd5b505af11580156200029a573d6000803e3d6000fd5b505050505b50620002ad905033620003ba565b620002b882620003ba565b620002c4828262000469565b620002d060016200056a565b600980546001600160a01b03191673f2a78c73ffbab6ecc3548acc54b546ace279312e17905562000315731e0049783f008a0085193e00003d00cd54003c716200057a565b62000334734fee7b061c97c9c496b01dbce9cdb10c02f0a0be6200057a565b604051806060016040528060248152602001620065f0602491396027906200035d908262000906565b50505062000baa565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811660009081526017602052604090205460ff1615620003f9335b6001600160a01b03166014620005cf60201b620030fa1760201c565b6040516020016200040b919062000a4d565b60405160208183030381529060405290620004445760405162461bcd60e51b81526004016200043b919062000aa6565b60405180910390fd5b506001600160a01b03166000908152601760205260409020805460ff19166001179055565b6127106001600160601b0382161115620004d95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016200043b565b6001600160a01b038216620005315760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200043b565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217601455565b620005753362000791565b600f55565b6200059581600a620007fe60201b620032951790919060201c565b506040516001600160a01b0382169033907fbd0af1fe0a2c1c7bb340c17a284a291138979c8eeb797e176dbd1c415199af3c90600090a350565b60606000620005e083600262000af1565b620005ed90600262000b0b565b6001600160401b0381111562000607576200060762000861565b6040519080825280601f01601f19166020018201604052801562000632576020820181803683370190505b509050600360fc1b8160008151811062000650576200065062000b21565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062000682576200068262000b21565b60200101906001600160f81b031916908160001a9053506000620006a884600262000af1565b620006b590600162000b0b565b90505b600181111562000737576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110620006ed57620006ed62000b21565b1a60f81b82828151811062000706576200070662000b21565b60200101906001600160f81b031916908160001a90535060049490941c936200072f8162000b37565b9050620006b8565b508315620007885760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016200043b565b90505b92915050565b6001600160a01b03811660009081526017602052604090205460ff16620007b833620003dd565b604051602001620007ca919062000b51565b60405160208183030381529060405290620007fa5760405162461bcd60e51b81526004016200043b919062000aa6565b5050565b600062000788836001600160a01b038416600081815260018301602052604081205462000858575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200078b565b5060006200078b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200088c57607f821691505b602082108103620008ad57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200090157600081815260208120601f850160051c81016020861015620008dc5750805b601f850160051c820191505b81811015620008fd57828155600101620008e8565b5050505b505050565b81516001600160401b0381111562000922576200092262000861565b6200093a8162000933845462000877565b84620008b3565b602080601f831160018114620009725760008415620009595750858301515b600019600386901b1c1916600185901b178555620008fd565b600085815260208120601f198616915b82811015620009a35788860151825594840194600190910190840162000982565b5085821015620009c25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008060408385031215620009e657600080fd5b82516001600160a01b0381168114620009fe57600080fd5b60208401519092506001600160601b038116811462000a1c57600080fd5b809150509250929050565b60005b8381101562000a4457818101518382015260200162000a2a565b50506000910152565b67030b1b1b7bab73a160c51b81526000825162000a7281600885016020870162000a27565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b602081526000825180602084015262000ac781604085016020870162000a27565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200078b576200078b62000adb565b808201808211156200078b576200078b62000adb565b634e487b7160e01b600052603260045260246000fd5b60008162000b495762000b4962000adb565b506000190190565b67030b1b1b7bab73a160c51b81526000825162000b7681600885016020870162000a27565b7f206973206e6f7420616e206f70657261746f72000000000000000000000000006008939091019283015250601b01919050565b615a368062000bba6000396000f3fe6080604052600436106105df5760003560e01c806374dfc9821161030e578063ba05e1151161019b578063df58a1b5116100e7578063f1e9770b116100a0578063fdf03cd51161007a578063fdf03cd514611256578063fe08eab014611276578063fe8b456e14611296578063ff768212146112b657600080fd5b8063f1e9770b146111fc578063f2fde38b1461121c578063fb796e6c1461123c57600080fd5b8063df58a1b514611168578063df7253961461117e578063e484829214611191578063e8a3d485146111b1578063e985e9c5146111c6578063ea7baab1146111e657600080fd5b8063ccf6c68811610154578063d5abeb011161012e578063d5abeb01146110fc578063d5dcfbc614611112578063d78be71c14611128578063da3ef23f1461114857600080fd5b8063ccf6c68814611085578063d2de022f146110c7578063d4e45c14146110e757600080fd5b8063ba05e11514610fbb578063bbaac02f14610feb578063bf509b9d1461100b578063c3e536831461102b578063c50c818614611045578063c87b56dd1461106557600080fd5b806391e4bac81161025a578063a35c23ad11610213578063b435d236116101ed578063b435d23614610f37578063b7c0b8e814610f5b578063b88d4fde14610f7b578063b9a2e65514610f9b57600080fd5b8063a35c23ad14610ebd578063b219f7d714610eea578063b31391cb14610f0a57600080fd5b806391e4bac814610dfc578063942958f414610e1c57806395d89b4114610e605780639da9778c14610e75578063a22cb46514610e7d578063a355fd2914610e9d57600080fd5b8063813779ef116102c75780638c5668be116102a15780638c5668be14610d5b5780638da5cb5b14610d7b5780638dd07d0f14610d995780638e37326a14610db957600080fd5b8063813779ef14610cfb578063830b3a6414610d1b5780638462151c14610d3b57600080fd5b806374dfc98214610c525780637558be9e14610c725780637672287e14610c925780637bc9200e14610cb25780637c3dc17314610cc55780637fc69f5a14610ce557600080fd5b80632e9901f41161048c5780634f3db346116103d85780636f8b44b01161039157806370a082311161036b57806370a0823114610be7578063715018a614610c075780637254d90c14610c1c57806372b44d7114610c3257600080fd5b80636f8b44b014610b875780636fa0cf5f14610ba7578063709411d214610bc757600080fd5b80634f3db34614610acc5780635183022714610ae257806355f804b314610af857806358303b1014610b185780636352211e14610b2e5780636d70f7ae14610b4e57600080fd5b806342454db911610445578063435e4ccd1161041f578063435e4ccd14610a53578063438b630014610a73578063449d0f1014610aa05780634bf365df14610ab657600080fd5b806342454db9146109fd57806342842e0e14610a1357806342966c6814610a3357600080fd5b80632e9901f41461095e57806330e7ed3514610974578063396e8f53146109945780633ccfd60b146109b45780634009920d146109bc57806341f43434146109db57600080fd5b80631a09cfe21161054b5780632672c902116105045780632a55205a116104de5780632a55205a146108d65780632c04f0f5146109155780632c4e9fc6146109355780632db115441461094b57600080fd5b80632672c90214610881578063267fe9891461089657806327ac0c58146108b657600080fd5b80631a09cfe21461078d5780631a8b8357146107a357806321434421146107d05780632398f8431461081457806323b872dd14610841578063258bc0ef1461086157600080fd5b8063072653891161059d57806307265389146106c3578063081812fc146106dd578063095ea7b3146107155780630d9005ae146107355780630f4345e21461075857806318160ddd1461077857600080fd5b80623f332f146105e457806301ffc9a71461060f578063025e332e1461063f57806303c0f48c1461066157806304634d8d1461068157806306fdde03146106a1575b600080fd5b3480156105f057600080fd5b506105f96112d6565b6040516106069190614bca565b60405180910390f35b34801561061b57600080fd5b5061062f61062a366004614c2d565b6112e5565b6040519015158152602001610606565b34801561064b57600080fd5b5061065f61065a366004614c5f565b6112f6565b005b34801561066d57600080fd5b5061065f61067c366004614c7c565b611320565b34801561068d57600080fd5b5061065f61069c366004614c95565b61132e565b3480156106ad57600080fd5b506106b6611345565b6040516106069190614d2a565b3480156106cf57600080fd5b50600c5461062f9060ff1681565b3480156106e957600080fd5b506106fd6106f8366004614c7c565b6113d7565b6040516001600160a01b039091168152602001610606565b34801561072157600080fd5b5061065f610730366004614d3d565b611467565b34801561074157600080fd5b5061074a611540565b604051908152602001610606565b34801561076457600080fd5b5061065f610773366004614c7c565b611557565b34801561078457600080fd5b5061074a611565565b34801561079957600080fd5b5061074a601c5481565b3480156107af57600080fd5b5061074a6107be366004614c7c565b601b6020526000908152604090205481565b3480156107dc57600080fd5b5061074a6107eb366004614c5f565b6022546000908152602c602090815260408083206001600160a01b039094168352929052205490565b34801561082057600080fd5b5061074a61082f366004614c5f565b600e6020526000908152604090205481565b34801561084d57600080fd5b5061065f61085c366004614d69565b611577565b34801561086d57600080fd5b5061065f61087c366004614c7c565b611660565b34801561088d57600080fd5b506106b6611681565b3480156108a257600080fd5b5061065f6108b1366004614c7c565b61170f565b3480156108c257600080fd5b5061065f6108d1366004614c5f565b61173a565b3480156108e257600080fd5b506108f66108f1366004614daa565b61174b565b604080516001600160a01b039093168352602083019190915201610606565b34801561092157600080fd5b5061065f610930366004614daa565b6117f7565b34801561094157600080fd5b5061074a60185481565b61065f610959366004614c7c565b611812565b34801561096a57600080fd5b5061074a601d5481565b34801561098057600080fd5b5061065f61098f366004614c7c565b611a48565b3480156109a057600080fd5b506009546106fd906001600160a01b031681565b61065f611a56565b3480156109c857600080fd5b50602a5461062f90610100900460ff1681565b3480156109e757600080fd5b506106fd6daaeb6d7670e522a718067333cd4e81565b348015610a0957600080fd5b5061074a601a5481565b348015610a1f57600080fd5b5061065f610a2e366004614d69565b611b96565b348015610a3f57600080fd5b5061065f610a4e366004614c7c565b611c74565b348015610a5f57600080fd5b5061065f610a6e366004614dda565b611cf3565b348015610a7f57600080fd5b50610a93610a8e366004614c5f565b611d1a565b6040516106069190614df7565b348015610aac57600080fd5b5061074a60195481565b348015610ac257600080fd5b5061074a60205481565b348015610ad857600080fd5b5061074a600f5481565b348015610aee57600080fd5b5061074a60215481565b348015610b0457600080fd5b5061065f610b13366004614ecc565b611e4f565b348015610b2457600080fd5b5061074a60135481565b348015610b3a57600080fd5b506106fd610b49366004614c7c565b611e64565b348015610b5a57600080fd5b5061062f610b69366004614c5f565b6001600160a01b031660009081526017602052604090205460ff1690565b348015610b9357600080fd5b5061065f610ba2366004614c7c565b611e78565b348015610bb357600080fd5b5061065f610bc2366004614daa565b611ed9565b348015610bd357600080fd5b5061065f610be2366004614c7c565b611ef4565b348015610bf357600080fd5b5061074a610c02366004614c5f565b611f5a565b348015610c1357600080fd5b5061065f612029565b348015610c2857600080fd5b5061074a60255481565b348015610c3e57600080fd5b5061065f610c4d366004614c5f565b61203b565b348015610c5e57600080fd5b5061074a610c6d366004614c7c565b61204d565b348015610c7e57600080fd5b5061065f610c8d366004614c7c565b612087565b348015610c9e57600080fd5b5061065f610cad366004614dda565b612094565b61065f610cc0366004614f93565b6120b0565b348015610cd157600080fd5b5061065f610ce0366004614daa565b612362565b348015610cf157600080fd5b5061074a60245481565b348015610d0757600080fd5b5061065f610d16366004614c7c565b6123f2565b348015610d2757600080fd5b506106fd610d36366004614c7c565b612400565b348015610d4757600080fd5b50610a93610d56366004614c5f565b61246c565b348015610d6757600080fd5b5061065f610d76366004614c7c565b612532565b348015610d8757600080fd5b506000546001600160a01b03166106fd565b348015610da557600080fd5b5061065f610db4366004614c7c565b6125c7565b348015610dc557600080fd5b5061074a610dd4366004614fd9565b6000918252602c602090815260408084206001600160a01b0393909316845291905290205490565b348015610e0857600080fd5b5061065f610e17366004614c7c565b6125d5565b348015610e2857600080fd5b5061074a610e37366004614c5f565b6023546000908152602d602090815260408083206001600160a01b039094168352929052205490565b348015610e6c57600080fd5b506106b6612636565b61065f612645565b348015610e8957600080fd5b5061065f610e98366004614ffe565b612677565b348015610ea957600080fd5b5061065f610eb8366004614dda565b61274b565b348015610ec957600080fd5b5061065f610ed8366004614c7c565b336000908152600e6020526040902055565b348015610ef657600080fd5b5061065f610f05366004614c5f565b61276e565b348015610f1657600080fd5b5061074a610f25366004614c7c565b600d6020526000908152604090205481565b348015610f4357600080fd5b506013546000908152601b602052604090205461074a565b348015610f6757600080fd5b5061065f610f76366004614dda565b61277f565b348015610f8757600080fd5b5061065f610f9636600461502c565b61279b565b348015610fa757600080fd5b5061065f610fb6366004614daa565b612887565b348015610fc757600080fd5b5061062f610fd6366004614c7c565b60306020526000908152604090205460ff1681565b348015610ff757600080fd5b5061065f611006366004614ecc565b6128a2565b34801561101757600080fd5b5061065f611026366004614c7c565b6128b7565b34801561103757600080fd5b50602a5461062f9060ff1681565b34801561105157600080fd5b5061065f611060366004614c7c565b6128c5565b34801561107157600080fd5b506106b6611080366004614c7c565b6128d3565b34801561109157600080fd5b5061074a6110a0366004614d3d565b6000908152602b602090815260408083206001600160a01b03949094168352929052205490565b3480156110d357600080fd5b5061062f6110e23660046150ab565b612a8f565b3480156110f357600080fd5b5060135461074a565b34801561110857600080fd5b5061074a601f5481565b34801561111e57600080fd5b5061074a60225481565b34801561113457600080fd5b5061065f611143366004614c7c565b612bc1565b34801561115457600080fd5b5061065f611163366004614ecc565b612bcf565b34801561117457600080fd5b5061074a60235481565b61065f61118c366004615103565b612be4565b34801561119d57600080fd5b5061065f6111ac366004615150565b612e56565b3480156111bd57600080fd5b506106b6612e7f565b3480156111d257600080fd5b5061062f6111e1366004615175565b612e89565b3480156111f257600080fd5b5061074a601e5481565b34801561120857600080fd5b5061062f6112173660046151a3565b612ed7565b34801561122857600080fd5b5061065f611237366004614c5f565b613011565b34801561124857600080fd5b5060165461062f9060ff1681565b34801561126257600080fd5b5061065f611271366004614c7c565b613087565b34801561128257600080fd5b5061065f611291366004614fd9565b613095565b3480156112a257600080fd5b5061065f6112b1366004614c7c565b6130db565b3480156112c257600080fd5b5061065f6112d1366004614c5f565b6130e8565b60606112e06132aa565b905090565b60006112f0826132b6565b92915050565b6112ff336132db565b600980546001600160a01b0319166001600160a01b03831617905550565b50565b611329336132db565b602255565b611337336132db565b6113418282613349565b5050565b606060028054611354906151ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611380906151ed565b80156113cd5780601f106113a2576101008083540402835291602001916113cd565b820191906000526020600020905b8154815290600101906020018083116113b057829003601f168201915b5050505050905090565b60006113e282613446565b61144b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a20617070726f76656420717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15801590611488575060165460ff165b1561153157604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115099190615227565b61153157604051633b79c77360e21b81526001600160a01b0382166004820152602401611442565b61153b838361347c565b505050565b6000600161154d60055490565b6112e0919061525a565b611560336132db565b600f55565b600061156f613490565b61154d6134f2565b826daaeb6d7670e522a718067333cd4e3b15801590611598575060165460ff165b1561164f57336001600160a01b038216036115bd576115b8848484613503565b61165a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561160c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116309190615227565b61164f57604051633b79c77360e21b8152336004820152602401611442565b61165a848484613503565b50505050565b611669336132db565b61131d81601354600090815260116020526040902055565b6029805461168e906151ed565b80601f01602080910402602001604051908101604052809291908181526020018280546116ba906151ed565b80156117075780601f106116dc57610100808354040283529160200191611707565b820191906000526020600020905b8154815290600101906020018083116116ea57829003601f168201915b505050505081565b611718336132db565b80601381905550600160226000828254611732919061526d565b909155505050565b611742613534565b61131d8161358e565b60008281526015602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916117c05750604080518082019091526014546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906117df906001600160601b031687615280565b6117e991906152ad565b915196919550909350505050565b611800336132db565b60009182526011602052604090912055565b61181a613616565b602a54610100900460ff166118685760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401611442565b80601e5410156118ca5760405162461bcd60e51b815260206004820152602760248201527f7075626c69634d696e743a204f766572206d6178206d696e747320706572206f6044820152666e652074696d6560c81b6064820152608401611442565b80601c54101561192a5760405162461bcd60e51b815260206004820152602560248201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604482015264185b1b195d60da1b6064820152608401611442565b6023546000908152602d6020908152604080832033845290915290205461195290829061526d565b601c5410156119a35760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401611442565b80601a546119b19190615280565b34146119cf5760405162461bcd60e51b8152600401611442906152c1565b6020546119da611565565b6119e4908361526d565b1115611a025760405162461bcd60e51b8152600401611442906152f8565b6023546000908152602d6020908152604080832033845290915281208054839290611a2e90849061526d565b90915550611a3e9050338261366f565b61131d6001601055565b611a51336132db565b602355565b611a5f336132db565b611a67613616565b60265447906000906001600160a01b031615611ada576026546040516001600160a01b03909116908390600081818185875af1925050503d8060008114611aca576040519150601f19603f3d011682016040523d82523d6000602084013e611acf565b606091505b505080915050611b3b565b6000546001600160a01b03166001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b30576040519150601f19603f3d011682016040523d82523d6000602084013e611b35565b606091505b50909150505b80611b885760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401611442565b5050611b946001601055565b565b826daaeb6d7670e522a718067333cd4e3b15801590611bb7575060165460ff165b15611c6957336001600160a01b03821603611bd7576115b8848484613689565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611c26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4a9190615227565b611c6957604051633b79c77360e21b8152336004820152602401611442565b61165a848484613689565b33611c7e82611e64565b6001600160a01b031614611ca45760405162461bcd60e51b81526004016114429061531e565b602a546301000000900460ff1615611cea5760405162461bcd60e51b81526020600482015260096024820152686e6f7420616c6c6f7760b81b6044820152606401611442565b61131d816136a4565b611cfc336132db565b602a805491151563010000000263ff00000019909216919091179055565b60606000611d2783611f5a565b90506000816001600160401b03811115611d4357611d43614e2f565b604051908082528060200260200182016040528015611d6c578160200160208202803683370190505b509050600060015b6001611d7f60055490565b611d89919061525a565b811015611e45576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa158015611dcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df09190615348565b6001600160a01b0316866001600160a01b031603611e3357808383611e1481615365565b945081518110611e2657611e2661537e565b6020026020010181815250505b80611e3d81615365565b915050611d74565b5090949350505050565b611e58336132db565b602861134182826153da565b600080611e7083613710565b509392505050565b611e81336132db565b80611e8a611565565b1115611ed45760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b6044820152606401611442565b601f55565b611ee2336132db565b60009182526012602052604090912055565b611efd81613446565b611f195760405162461bcd60e51b815260040161144290615499565b33611f2382611e64565b6001600160a01b031614611f495760405162461bcd60e51b81526004016114429061531e565b6000908152602f6020526040812055565b60006001600160a01b038216611fc85760405162461bcd60e51b815260206004820152602d60248201527f4552433732315073693a2062616c616e636520717565727920666f722074686560448201526c207a65726f206164647265737360981b6064820152608401611442565b600060015b60055481101561202257611fe081613446565b1561201257611fee81611e64565b6001600160a01b0316846001600160a01b0316036120125761200f82615365565b91505b61201b81615365565b9050611fcd565b5092915050565b612031613534565b611b9460006137a7565b612044336132db565b61131d816137f7565b600061205882613446565b6120745760405162461bcd60e51b815260040161144290615499565b506000908152602e602052604090205490565b61208f613534565b602455565b61209d336132db565b602a805460ff1916911515919091179055565b6120b8613616565b602a5460ff1661210a5760405162461bcd60e51b815260206004820152601760248201527f616c6c6f776c6973744d696e74206973205061757365640000000000000000006044820152606401611442565b6121173360135483612a8f565b61215e5760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401611442565b81601d5410156121c35760405162461bcd60e51b815260206004820152602a60248201527f616c6c6f776c6973744d696e743a204f766572206d6178206d696e747320706560448201526972206f6e652074696d6560b01b6064820152608401611442565b6013546000908152601b60205260409020548211156122355760405162461bcd60e51b815260206004820152602860248201527f616c6c6f776c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611442565b6022546000908152602c6020908152604080832033845290915290205461225d90839061526d565b6013546000908152601b602052604090205410156122bd5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401611442565b816019546122cb9190615280565b34146122e95760405162461bcd60e51b8152600401611442906152c1565b6020546122f4611565565b6122fe908461526d565b111561231c5760405162461bcd60e51b8152600401611442906152f8565b6022546000908152602c602090815260408083203384529091528120805484929061234890849061526d565b909155506123589050338361366f565b6113416001601055565b8161236c81611e64565b6001600160a01b0316336001600160a01b0316146123df5760405162461bcd60e51b815260206004820152602a60248201527f5265737472696374417070726f76653a206f7065726174696f6e206973206f6e604482015269363c903437b63232b91760b11b6064820152608401611442565b506000918252600d602052604090912055565b6123fb336132db565b601c55565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa92505050801561245b575060408051601f3d908101601f1916820190925261245891810190615348565b60015b6112f057506000919050565b919050565b606060008061247a84611f5a565b90506000816001600160401b0381111561249657612496614e2f565b6040519080825280602002602001820160405280156124bf578160200160208202803683370190505b50905060015b828414612529576124d581613446565b1561252157856001600160a01b03166124ed82611e64565b6001600160a01b03160361252157808285806001019650815181106125145761251461537e565b6020026020010181815250505b6001016124c5565b50949350505050565b61253b81613446565b6125575760405162461bcd60e51b815260040161144290615499565b3361256182611e64565b6001600160a01b0316146125875760405162461bcd60e51b81526004016114429061531e565b61259381602154101590565b1561131d57602a5462010000900460ff161561131d5760006125b48261383c565b6000838152602f60205260409020555050565b6125d0336132db565b601855565b6125de336132db565b806125e7611565565b11156126315760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b6044820152606401611442565b602055565b606060038054611354906151ed565b61264d613616565b6000341161266d5760405162461bcd60e51b8152600401611442906152c1565b611b946001601055565b816daaeb6d7670e522a718067333cd4e3b15801590612698575060165460ff165b1561274157604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156126f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127199190615227565b61274157604051633b79c77360e21b81526001600160a01b0382166004820152602401611442565b61153b83836138a1565b612754336132db565b602a80549115156101000261ff0019909216919091179055565b612776613534565b61131d8161391f565b612788336132db565b6016805460ff1916911515919091179055565b836daaeb6d7670e522a718067333cd4e3b158015906127bc575060165460ff165b1561287457336001600160a01b038216036127e2576127dd85858585613949565b612880565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612831573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128559190615227565b61287457604051633b79c77360e21b8152336004820152602401611442565b61288085858585613949565b5050505050565b612890336132db565b6000918252601b602052604090912055565b6128ab336132db565b602761134182826153da565b6128c0336132db565b601955565b6128ce336132db565b602155565b60606128de82613446565b6128fa5760405162461bcd60e51b815260040161144290615499565b61290682602154101590565b156129fd576000828152602f602052604081205413156129745761292861397b565b6000838152602f60205260409020546129409061398a565b6129498461398a565b602960405160200161295e9493929190615543565b6040516020818303038152906040529050919050565b602a5462010000900460ff16156129d85760006129908361383c565b905061299a61397b565b6129a38261398a565b6129ac8561398a565b60296040516020016129c19493929190615543565b604051602081830303815290604052915050919050565b6129e061397b565b6129e98361398a565b602960405160200161295e939291906155a1565b60278054612a0a906151ed565b80601f0160208091040260200160405190810160405280929190818152602001828054612a36906151ed565b8015612a835780601f10612a5857610100808354040283529160200191612a83565b820191906000526020600020905b815481529060010190602001808311612a6657829003601f168201915b50505050509050919050565b6040516bffffffffffffffffffffffff19606085901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015612ba757838181518110612ae957612ae961537e565b60200260200101518210612b4757838181518110612b0957612b0961537e565b602002602001015182604051602001612b2c929190918252602082015260400190565b60405160208183030381529060405280519060200120612b93565b81848281518110612b5a57612b5a61537e565b6020026020010151604051602001612b7c929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080612b9f81615365565b915050612ace565b506000848152601260205260409020541490509392505050565b612bca336132db565b601a55565b612bd8336132db565b602961134182826153da565b612bec613616565b60008481526030602052604090205460ff16612c4a5760405162461bcd60e51b815260206004820152601760248201527f77686974656c6973744d696e74206973205061757365640000000000000000006044820152606401611442565b612c5633858484612ed7565b612c9d5760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401611442565b60008211612cdf5760405162461bcd60e51b815260206004820152600f60248201526e596f752068617665206e6f20574c2160881b6044820152606401611442565b82821015612d405760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611442565b6000848152602b60209081526040808320338452909152902054612d6590849061526d565b821015612db45760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401611442565b82601854612dc29190615280565b3414612de05760405162461bcd60e51b8152600401611442906152c1565b602054612deb611565565b612df5908561526d565b1115612e135760405162461bcd60e51b8152600401611442906152f8565b6000848152602b6020908152604080832033845290915281208054859290612e3c90849061526d565b90915550612e4c9050338461366f565b61165a6001601055565b612e5f336132db565b600091825260306020526040909120805460ff1916911515919091179055565b60606112e0613a1c565b6000612e958383613a9c565b1515600003612ea6575060006112f0565b6001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff165b9392505050565b6040516bffffffffffffffffffffffff19606086901b16602082015260348101839052600090819060540160405160208183030381529060405280519060200120905060005b8351811015612ff657838181518110612f3857612f3861537e565b60200260200101518210612f9657838181518110612f5857612f5861537e565b602002602001015182604051602001612f7b929190918252602082015260400190565b60405160208183030381529060405280519060200120612fe2565b81848281518110612fa957612fa961537e565b6020026020010151604051602001612fcb929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080612fee81615365565b915050612f1d565b50600085815260116020526040902054149050949350505050565b613019613534565b6001600160a01b03811661307e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611442565b61131d816137a7565b613090336132db565b601355565b61309e336132db565b601f546130a9611565565b6130b3908461526d565b11156130d15760405162461bcd60e51b8152600401611442906152f8565b611341818361366f565b6130e3613534565b602555565b6130f1336132db565b61131d81613abc565b60606000613109836002615280565b61311490600261526d565b6001600160401b0381111561312b5761312b614e2f565b6040519080825280601f01601f191660200182016040528015613155576020820181803683370190505b509050600360fc1b816000815181106131705761317061537e565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061319f5761319f61537e565b60200101906001600160f81b031916908160001a90535060006131c3846002615280565b6131ce90600161526d565b90505b6001811115613246576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106132025761320261537e565b1a60f81b8282815181106132185761321861537e565b60200101906001600160f81b031916908160001a90535060049490941c9361323f816155d3565b90506131d1565b508315612ed05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611442565b6000612ed0836001600160a01b038416613b01565b60606112e0600a613b50565b60006001600160e01b0319821663152a902d60e11b14806112f057506112f082613b5d565b6001600160a01b03811660009081526017602052604090205460ff1661330c335b6001600160a01b031660146130fa565b60405160200161331c91906155ea565b604051602081830303815290604052906113415760405162461bcd60e51b81526004016114429190614d2a565b6127106001600160601b03821611156133b75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611442565b6001600160a01b03821661340d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401611442565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217601455565b600881811c60009081526020919091526040812054600160ff1b60ff84161c161561347357506000919050565b6112f082613b82565b6134868282613b9e565b6113418282613c19565b600554600090819081906134a89060081c600161526d565b9050815b818110156134ec576000818152600860205260409020546134cc81613d2b565b6134d6908661526d565b94505080806134e490615365565b9150506134ac565b50505090565b600060016005546112e0919061525a565b61350d3382613d45565b6135295760405162461bcd60e51b815260040161144290615637565b61153b838383613e0a565b6000546001600160a01b03163314611b945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611442565b6001600160a01b03811660009081526017602052604090205460ff16156135b4336132fc565b6040516020016135c4919061568b565b604051602081830303815290604052906135f15760405162461bcd60e51b81526004016114429190614d2a565b506001600160a01b03166000908152601760205260409020805460ff19166001179055565b6002601054036136685760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611442565b6002601055565b611341828260405180602001604052806000815250614011565b61153b8383836040518060200160405280600081525061279b565b60006136af82611e64565b90506136bf816000846001614052565b6136ca6008836140a1565b60405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a46113418160008460016140cd565b60008061371c83613446565b61377d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401611442565b613786836140f0565b6000818152600460205260409020546001600160a01b031694909350915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b613802600a826140fd565b506040516001600160a01b0382169033907f3b01c97343869ca2757fcc37cdb8f71683b0a7aed858e3755f4529a1db85729290600090a350565b600061384782613446565b6138635760405162461bcd60e51b815260040161144290615499565b6025546000838152602e602052604081205490919061388290426156e2565b61388c9190615702565b905060245481126112f0575060245492915050565b6138aa82614112565b806138b3575080155b6139155760405162461bcd60e51b815260206004820152602d60248201527f5265737472696374417070726f76653a2043616e206e6f7420617070726f766560448201526c103637b1b5b2b2103a37b5b2b760991b6064820152608401611442565b611341828261411e565b613928816132db565b6001600160a01b03166000908152601760205260409020805460ff19169055565b6139533383613d45565b61396f5760405162461bcd60e51b815260040161144290615637565b61165a848484846141e2565b606060288054611354906151ed565b60606000613997836141fb565b60010190506000816001600160401b038111156139b6576139b6614e2f565b6040519080825280601f01601f1916602001820160405280156139e0576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846139ea57509392505050565b6060600080613a2d8161271061174b565b91509150613a76613a3d8261398a565b613a51846001600160a01b031660146130fa565b604051602001613a62929190615730565b6040516020818303038152906040526142d3565b604051602001613a8691906157b6565b6040516020818303038152906040529250505090565b600080613aa884614437565b9050613ab48382614479565b949350505050565b613ac7600a82613295565b506040516001600160a01b0382169033907fbd0af1fe0a2c1c7bb340c17a284a291138979c8eeb797e176dbd1c415199af3c90600090a350565b6000818152600183016020526040812054613b48575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556112f0565b5060006112f0565b60606000612ed083614512565b60006001600160e01b03198216630101c11560e71b14806112f057506112f08261456d565b6000613b8d60055490565b821080156112f05750506001111590565b6001600160a01b0382161561134157613bb781836145bd565b6113415760405162461bcd60e51b815260206004820152602d60248201527f5265737472696374417070726f76653a2054686520636f6e747261637420697360448201526c103737ba1030b63637bbb2b21760991b6064820152608401611442565b6000613c2482611e64565b9050806001600160a01b0316836001600160a01b031603613c935760405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a20617070726f76616c20746f2063757272656e74206f6044820152633bb732b960e11b6064820152608401611442565b336001600160a01b0382161480613caf5750613caf8133612e89565b613d215760405162461bcd60e51b815260206004820152603b60248201527f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c00000000006064820152608401611442565b61153b83836145ca565b60005b811561246757600019820190911690600101613d2e565b6000613d5082613446565b613db45760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401611442565b6000613dbf83611e64565b9050806001600160a01b0316846001600160a01b03161480613dfa5750836001600160a01b0316613def846113d7565b6001600160a01b0316145b80613ab45750613ab48185612e89565b600080613e1683613710565b91509150846001600160a01b0316826001600160a01b031614613e905760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160448201526b3a1034b9903737ba1037bbb760a11b6064820152608401611442565b6001600160a01b038416613ef65760405162461bcd60e51b815260206004820152602760248201527f4552433732315073693a207472616e7366657220746f20746865207a65726f206044820152666164647265737360c81b6064820152608401611442565b613f038585856001614052565b613f0e6000846145ca565b6000613f1b84600161526d565b600881901c600090815260016020526040902054909150600160ff1b60ff83161c16158015613f4b575060055481105b15613f8257600081815260046020526040902080546001600160a01b0319166001600160a01b038816179055613f826001826140a1565b600084815260046020526040902080546001600160a01b0319166001600160a01b038716179055818414613fbb57613fbb6001856140a1565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461400986868660016140cd565b505050505050565b600061401c60055490565b90506140288484614638565b6140366000858386866147c5565b61165a5760405162461bcd60e51b8152600401611442906157fb565b6000828152602e60205260408120429055829061406f838361526d565b90505b42602e60008461408181615365565b955081526020019081526020016000208190555080821061407257614009565b600881901c600090815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b6001600160a01b0384161561165a576000828152600d602052604081205561165a565b60006112f06001836148fc565b6000612ed0836001600160a01b0384166149f4565b60006112f03383613a9c565b336001600160a01b038316036141765760405162461bcd60e51b815260206004820152601c60248201527f4552433732315073693a20617070726f766520746f2063616c6c6572000000006044820152606401611442565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6141ed848484613e0a565b6140368484846001856147c5565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061423a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310614266576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061428457662386f26fc10000830492506010015b6305f5e100831061429c576305f5e100830492506008015b61271083106142b057612710830492506004015b606483106142c2576064830492506002015b600a83106112f05760010192915050565b606081516000036142f257505060408051602081019091526000815290565b60006040518060600160405280604081526020016158c16040913990506000600384516002614321919061526d565b61432b91906152ad565b614336906004615280565b9050600061434582602061526d565b6001600160401b0381111561435c5761435c614e2f565b6040519080825280601f01601f191660200182016040528015614386576020820181803683370190505b509050818152600183018586518101602084015b818310156143f2576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182535060010161439a565b60038951066001811461440c576002811461441d57614429565b613d3d60f01b600119830152614429565b603d60f81b6000198301525b509398975050505050505050565b6001600160a01b0381166000908152600e60205260408120541561447157506001600160a01b03166000908152600e602052604090205490565b5050600f5490565b600c5460009060ff1661448e575060016112f0565b61449783614ae7565b80612ed05750600954604051630f8350ed60e41b81526001600160a01b038581166004830152602482018590529091169063f8350ed090604401602060405180830381865afa1580156144ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ed09190615227565b606081600001805480602002602001604051908101604052809291908181526020018280548015612a8357602002820191906000526020600020905b81548152602001906001019080831161454e5750505050509050919050565b60006001600160e01b031982166380ac58cd60e01b148061459e57506001600160e01b03198216635b5e139f60e01b145b806112f057506301ffc9a760e01b6001600160e01b03198316146112f0565b600080613aa83385614af4565b600081815260066020526040902080546001600160a01b0319166001600160a01b03841690811790915581906145ff82611e64565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061464360055490565b9050600082116146a35760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a207175616e74697479206d7573742062652067726561604482015264074657220360dc1b6064820152608401611442565b6001600160a01b0383166147055760405162461bcd60e51b815260206004820152602360248201527f4552433732315073693a206d696e7420746f20746865207a65726f206164647260448201526265737360e81b6064820152608401611442565b6147126000848385614052565b8160056000828254614724919061526d565b9091555050600081815260046020526040902080546001600160a01b0319166001600160a01b03851617905561475b6001826140a1565b61476860008483856140cd565b805b614774838361526d565b81101561165a5760405181906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4806147bd81615365565b91505061476a565b60006001600160a01b0385163b156148ef57506001835b6147e6848661526d565b8110156148e957604051630a85bd0160e11b81526001600160a01b0387169063150b7a029061481f9033908b9086908990600401615850565b6020604051808303816000875af192505050801561485a575060408051601f3d908101601f191682019092526148579181019061588d565b60015b6148b7573d808015614888576040519150601f19603f3d011682016040523d82523d6000602084013e61488d565b606091505b5080516000036148af5760405162461bcd60e51b8152600401611442906157fb565b805181602001fd5b8280156148d457506001600160e01b03198116630a85bd0160e11b145b925050806148e181615365565b9150506147dc565b506148f3565b5060015b95945050505050565b600881901c60008181526020849052604081205490919060ff808516919082181c801561493e5761492c81614b26565b60ff168203600884901b1793506149eb565b600083116149ab5760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b6064820152608401611442565b5060001990910160008181526020869052604090205490919080156149e6576149d381614b26565b60ff0360ff16600884901b1793506149eb565b61493e565b50505092915050565b60008181526001830160205260408120548015614add576000614a1860018361525a565b8554909150600090614a2c9060019061525a565b9050818114614a91576000866000018281548110614a4c57614a4c61537e565b9060005260206000200154905080876000018481548110614a6f57614a6f61537e565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080614aa257614aa26158aa565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506112f0565b60009150506112f0565b60006112f0600a83614b90565b6000818152600d602052604081205415614b1d57506000818152600d60205260409020546112f0565b612ed083614437565b60006040518061012001604052806101008152602001615901610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff614b6f85614bb2565b02901c81518110614b8257614b8261537e565b016020015160f81c92915050565b6001600160a01b03811660009081526001830160205260408120541515612ed0565b6000808211614bc057600080fd5b5060008190031690565b6020808252825182820181905260009190848201906040850190845b81811015614c0b5783516001600160a01b031683529284019291840191600101614be6565b50909695505050505050565b6001600160e01b03198116811461131d57600080fd5b600060208284031215614c3f57600080fd5b8135612ed081614c17565b6001600160a01b038116811461131d57600080fd5b600060208284031215614c7157600080fd5b8135612ed081614c4a565b600060208284031215614c8e57600080fd5b5035919050565b60008060408385031215614ca857600080fd5b8235614cb381614c4a565b915060208301356001600160601b0381168114614ccf57600080fd5b809150509250929050565b60005b83811015614cf5578181015183820152602001614cdd565b50506000910152565b60008151808452614d16816020860160208601614cda565b601f01601f19169290920160200192915050565b602081526000612ed06020830184614cfe565b60008060408385031215614d5057600080fd5b8235614d5b81614c4a565b946020939093013593505050565b600080600060608486031215614d7e57600080fd5b8335614d8981614c4a565b92506020840135614d9981614c4a565b929592945050506040919091013590565b60008060408385031215614dbd57600080fd5b50508035926020909101359150565b801515811461131d57600080fd5b600060208284031215614dec57600080fd5b8135612ed081614dcc565b6020808252825182820181905260009190848201906040850190845b81811015614c0b57835183529284019291840191600101614e13565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715614e6d57614e6d614e2f565b604052919050565b60006001600160401b03831115614e8e57614e8e614e2f565b614ea1601f8401601f1916602001614e45565b9050828152838383011115614eb557600080fd5b828260208301376000602084830101529392505050565b600060208284031215614ede57600080fd5b81356001600160401b03811115614ef457600080fd5b8201601f81018413614f0557600080fd5b613ab484823560208401614e75565b600082601f830112614f2557600080fd5b813560206001600160401b03821115614f4057614f40614e2f565b8160051b614f4f828201614e45565b9283528481018201928281019087851115614f6957600080fd5b83870192505b84831015614f8857823582529183019190830190614f6f565b979650505050505050565b60008060408385031215614fa657600080fd5b8235915060208301356001600160401b03811115614fc357600080fd5b614fcf85828601614f14565b9150509250929050565b60008060408385031215614fec57600080fd5b823591506020830135614ccf81614c4a565b6000806040838503121561501157600080fd5b823561501c81614c4a565b91506020830135614ccf81614dcc565b6000806000806080858703121561504257600080fd5b843561504d81614c4a565b9350602085013561505d81614c4a565b92506040850135915060608501356001600160401b0381111561507f57600080fd5b8501601f8101871361509057600080fd5b61509f87823560208401614e75565b91505092959194509250565b6000806000606084860312156150c057600080fd5b83356150cb81614c4a565b92506020840135915060408401356001600160401b038111156150ed57600080fd5b6150f986828701614f14565b9150509250925092565b6000806000806080858703121561511957600080fd5b84359350602085013592506040850135915060608501356001600160401b0381111561514457600080fd5b61509f87828801614f14565b6000806040838503121561516357600080fd5b823591506020830135614ccf81614dcc565b6000806040838503121561518857600080fd5b823561519381614c4a565b91506020830135614ccf81614c4a565b600080600080608085870312156151b957600080fd5b84356151c481614c4a565b9350602085013592506040850135915060608501356001600160401b0381111561514457600080fd5b600181811c9082168061520157607f821691505b60208210810361522157634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561523957600080fd5b8151612ed081614dcc565b634e487b7160e01b600052601160045260246000fd5b818103818111156112f0576112f0615244565b808201808211156112f0576112f0615244565b80820281158282048414176112f0576112f0615244565b634e487b7160e01b600052601260045260246000fd5b6000826152bc576152bc615297565b500490565b60208082526018908201527f4554482076616c7565206973206e6f7420636f72726563740000000000000000604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526010908201526f34b9b73a1037bbb732b9103a37b5b2b760811b604082015260600190565b60006020828403121561535a57600080fd5b8151612ed081614c4a565b60006001820161537757615377615244565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f82111561153b57600081815260208120601f850160051c810160208610156153bb5750805b601f850160051c820191505b81811015614009578281556001016153c7565b81516001600160401b038111156153f3576153f3614e2f565b6154078161540184546151ed565b84615394565b602080601f83116001811461543c57600084156154245750858301515b600019600386901b1c1916600185901b178555614009565b600085815260208120601f198616915b8281101561546b5788860151825594840194600190910190840161544c565b50858210156154895787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252601f908201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b600081546154dd816151ed565b600182811680156154f5576001811461550a57615539565b60ff1984168752821515830287019450615539565b8560005260208060002060005b858110156155305781548a820152908401908201615517565b50505082870194505b5050505092915050565b60008551615555818460208a01614cda565b855190830190615569818360208a01614cda565b602f60f81b91019081528451615586816001840160208901614cda565b615595600182840101866154d0565b98975050505050505050565b600084516155b3818460208901614cda565b8451908301906155c7818360208901614cda565b614f88818301866154d0565b6000816155e2576155e2615244565b506000190190565b67030b1b1b7bab73a160c51b81526000825161560d816008850160208701614cda565b721034b9903737ba1030b71037b832b930ba37b960691b6008939091019283015250601b01919050565b60208082526034908201527f4552433732315073693a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b67030b1b1b7bab73a160c51b8152600082516156ae816008850160208701614cda565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b818103600083128015838313168383128216171561202257612022615244565b60008261571157615711615297565b600160ff1b82146000198414161561572b5761572b615244565b500590565b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a000000000081526000835161576881601b850160208801614cda565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b91840191820152835161579b81602e840160208801614cda565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516157ee81601d850160208701614cda565b91909101601d0192915050565b60208082526035908201527f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260408201527418a932b1b2b4bb32b91034b6b83632b6b2b73a32b960591b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061588390830184614cfe565b9695505050505050565b60006020828403121561589f57600080fd5b8151612ed081614c17565b634e487b7160e01b600052603160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a264697066735822122076068ecd4a17bd8b1bb8448e5400f01c364d991cd4abbed0a76e9a64bca04fe964736f6c6343000811003368747470733a2f2f7374617274646174612e696f2f504e4c2f68696464656e2e6a736f6e000000000000000000000000b4250f715995683c6ea5bc7c5e2cdf9b1601ba3f00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x6080604052600436106105df5760003560e01c806374dfc9821161030e578063ba05e1151161019b578063df58a1b5116100e7578063f1e9770b116100a0578063fdf03cd51161007a578063fdf03cd514611256578063fe08eab014611276578063fe8b456e14611296578063ff768212146112b657600080fd5b8063f1e9770b146111fc578063f2fde38b1461121c578063fb796e6c1461123c57600080fd5b8063df58a1b514611168578063df7253961461117e578063e484829214611191578063e8a3d485146111b1578063e985e9c5146111c6578063ea7baab1146111e657600080fd5b8063ccf6c68811610154578063d5abeb011161012e578063d5abeb01146110fc578063d5dcfbc614611112578063d78be71c14611128578063da3ef23f1461114857600080fd5b8063ccf6c68814611085578063d2de022f146110c7578063d4e45c14146110e757600080fd5b8063ba05e11514610fbb578063bbaac02f14610feb578063bf509b9d1461100b578063c3e536831461102b578063c50c818614611045578063c87b56dd1461106557600080fd5b806391e4bac81161025a578063a35c23ad11610213578063b435d236116101ed578063b435d23614610f37578063b7c0b8e814610f5b578063b88d4fde14610f7b578063b9a2e65514610f9b57600080fd5b8063a35c23ad14610ebd578063b219f7d714610eea578063b31391cb14610f0a57600080fd5b806391e4bac814610dfc578063942958f414610e1c57806395d89b4114610e605780639da9778c14610e75578063a22cb46514610e7d578063a355fd2914610e9d57600080fd5b8063813779ef116102c75780638c5668be116102a15780638c5668be14610d5b5780638da5cb5b14610d7b5780638dd07d0f14610d995780638e37326a14610db957600080fd5b8063813779ef14610cfb578063830b3a6414610d1b5780638462151c14610d3b57600080fd5b806374dfc98214610c525780637558be9e14610c725780637672287e14610c925780637bc9200e14610cb25780637c3dc17314610cc55780637fc69f5a14610ce557600080fd5b80632e9901f41161048c5780634f3db346116103d85780636f8b44b01161039157806370a082311161036b57806370a0823114610be7578063715018a614610c075780637254d90c14610c1c57806372b44d7114610c3257600080fd5b80636f8b44b014610b875780636fa0cf5f14610ba7578063709411d214610bc757600080fd5b80634f3db34614610acc5780635183022714610ae257806355f804b314610af857806358303b1014610b185780636352211e14610b2e5780636d70f7ae14610b4e57600080fd5b806342454db911610445578063435e4ccd1161041f578063435e4ccd14610a53578063438b630014610a73578063449d0f1014610aa05780634bf365df14610ab657600080fd5b806342454db9146109fd57806342842e0e14610a1357806342966c6814610a3357600080fd5b80632e9901f41461095e57806330e7ed3514610974578063396e8f53146109945780633ccfd60b146109b45780634009920d146109bc57806341f43434146109db57600080fd5b80631a09cfe21161054b5780632672c902116105045780632a55205a116104de5780632a55205a146108d65780632c04f0f5146109155780632c4e9fc6146109355780632db115441461094b57600080fd5b80632672c90214610881578063267fe9891461089657806327ac0c58146108b657600080fd5b80631a09cfe21461078d5780631a8b8357146107a357806321434421146107d05780632398f8431461081457806323b872dd14610841578063258bc0ef1461086157600080fd5b8063072653891161059d57806307265389146106c3578063081812fc146106dd578063095ea7b3146107155780630d9005ae146107355780630f4345e21461075857806318160ddd1461077857600080fd5b80623f332f146105e457806301ffc9a71461060f578063025e332e1461063f57806303c0f48c1461066157806304634d8d1461068157806306fdde03146106a1575b600080fd5b3480156105f057600080fd5b506105f96112d6565b6040516106069190614bca565b60405180910390f35b34801561061b57600080fd5b5061062f61062a366004614c2d565b6112e5565b6040519015158152602001610606565b34801561064b57600080fd5b5061065f61065a366004614c5f565b6112f6565b005b34801561066d57600080fd5b5061065f61067c366004614c7c565b611320565b34801561068d57600080fd5b5061065f61069c366004614c95565b61132e565b3480156106ad57600080fd5b506106b6611345565b6040516106069190614d2a565b3480156106cf57600080fd5b50600c5461062f9060ff1681565b3480156106e957600080fd5b506106fd6106f8366004614c7c565b6113d7565b6040516001600160a01b039091168152602001610606565b34801561072157600080fd5b5061065f610730366004614d3d565b611467565b34801561074157600080fd5b5061074a611540565b604051908152602001610606565b34801561076457600080fd5b5061065f610773366004614c7c565b611557565b34801561078457600080fd5b5061074a611565565b34801561079957600080fd5b5061074a601c5481565b3480156107af57600080fd5b5061074a6107be366004614c7c565b601b6020526000908152604090205481565b3480156107dc57600080fd5b5061074a6107eb366004614c5f565b6022546000908152602c602090815260408083206001600160a01b039094168352929052205490565b34801561082057600080fd5b5061074a61082f366004614c5f565b600e6020526000908152604090205481565b34801561084d57600080fd5b5061065f61085c366004614d69565b611577565b34801561086d57600080fd5b5061065f61087c366004614c7c565b611660565b34801561088d57600080fd5b506106b6611681565b3480156108a257600080fd5b5061065f6108b1366004614c7c565b61170f565b3480156108c257600080fd5b5061065f6108d1366004614c5f565b61173a565b3480156108e257600080fd5b506108f66108f1366004614daa565b61174b565b604080516001600160a01b039093168352602083019190915201610606565b34801561092157600080fd5b5061065f610930366004614daa565b6117f7565b34801561094157600080fd5b5061074a60185481565b61065f610959366004614c7c565b611812565b34801561096a57600080fd5b5061074a601d5481565b34801561098057600080fd5b5061065f61098f366004614c7c565b611a48565b3480156109a057600080fd5b506009546106fd906001600160a01b031681565b61065f611a56565b3480156109c857600080fd5b50602a5461062f90610100900460ff1681565b3480156109e757600080fd5b506106fd6daaeb6d7670e522a718067333cd4e81565b348015610a0957600080fd5b5061074a601a5481565b348015610a1f57600080fd5b5061065f610a2e366004614d69565b611b96565b348015610a3f57600080fd5b5061065f610a4e366004614c7c565b611c74565b348015610a5f57600080fd5b5061065f610a6e366004614dda565b611cf3565b348015610a7f57600080fd5b50610a93610a8e366004614c5f565b611d1a565b6040516106069190614df7565b348015610aac57600080fd5b5061074a60195481565b348015610ac257600080fd5b5061074a60205481565b348015610ad857600080fd5b5061074a600f5481565b348015610aee57600080fd5b5061074a60215481565b348015610b0457600080fd5b5061065f610b13366004614ecc565b611e4f565b348015610b2457600080fd5b5061074a60135481565b348015610b3a57600080fd5b506106fd610b49366004614c7c565b611e64565b348015610b5a57600080fd5b5061062f610b69366004614c5f565b6001600160a01b031660009081526017602052604090205460ff1690565b348015610b9357600080fd5b5061065f610ba2366004614c7c565b611e78565b348015610bb357600080fd5b5061065f610bc2366004614daa565b611ed9565b348015610bd357600080fd5b5061065f610be2366004614c7c565b611ef4565b348015610bf357600080fd5b5061074a610c02366004614c5f565b611f5a565b348015610c1357600080fd5b5061065f612029565b348015610c2857600080fd5b5061074a60255481565b348015610c3e57600080fd5b5061065f610c4d366004614c5f565b61203b565b348015610c5e57600080fd5b5061074a610c6d366004614c7c565b61204d565b348015610c7e57600080fd5b5061065f610c8d366004614c7c565b612087565b348015610c9e57600080fd5b5061065f610cad366004614dda565b612094565b61065f610cc0366004614f93565b6120b0565b348015610cd157600080fd5b5061065f610ce0366004614daa565b612362565b348015610cf157600080fd5b5061074a60245481565b348015610d0757600080fd5b5061065f610d16366004614c7c565b6123f2565b348015610d2757600080fd5b506106fd610d36366004614c7c565b612400565b348015610d4757600080fd5b50610a93610d56366004614c5f565b61246c565b348015610d6757600080fd5b5061065f610d76366004614c7c565b612532565b348015610d8757600080fd5b506000546001600160a01b03166106fd565b348015610da557600080fd5b5061065f610db4366004614c7c565b6125c7565b348015610dc557600080fd5b5061074a610dd4366004614fd9565b6000918252602c602090815260408084206001600160a01b0393909316845291905290205490565b348015610e0857600080fd5b5061065f610e17366004614c7c565b6125d5565b348015610e2857600080fd5b5061074a610e37366004614c5f565b6023546000908152602d602090815260408083206001600160a01b039094168352929052205490565b348015610e6c57600080fd5b506106b6612636565b61065f612645565b348015610e8957600080fd5b5061065f610e98366004614ffe565b612677565b348015610ea957600080fd5b5061065f610eb8366004614dda565b61274b565b348015610ec957600080fd5b5061065f610ed8366004614c7c565b336000908152600e6020526040902055565b348015610ef657600080fd5b5061065f610f05366004614c5f565b61276e565b348015610f1657600080fd5b5061074a610f25366004614c7c565b600d6020526000908152604090205481565b348015610f4357600080fd5b506013546000908152601b602052604090205461074a565b348015610f6757600080fd5b5061065f610f76366004614dda565b61277f565b348015610f8757600080fd5b5061065f610f9636600461502c565b61279b565b348015610fa757600080fd5b5061065f610fb6366004614daa565b612887565b348015610fc757600080fd5b5061062f610fd6366004614c7c565b60306020526000908152604090205460ff1681565b348015610ff757600080fd5b5061065f611006366004614ecc565b6128a2565b34801561101757600080fd5b5061065f611026366004614c7c565b6128b7565b34801561103757600080fd5b50602a5461062f9060ff1681565b34801561105157600080fd5b5061065f611060366004614c7c565b6128c5565b34801561107157600080fd5b506106b6611080366004614c7c565b6128d3565b34801561109157600080fd5b5061074a6110a0366004614d3d565b6000908152602b602090815260408083206001600160a01b03949094168352929052205490565b3480156110d357600080fd5b5061062f6110e23660046150ab565b612a8f565b3480156110f357600080fd5b5060135461074a565b34801561110857600080fd5b5061074a601f5481565b34801561111e57600080fd5b5061074a60225481565b34801561113457600080fd5b5061065f611143366004614c7c565b612bc1565b34801561115457600080fd5b5061065f611163366004614ecc565b612bcf565b34801561117457600080fd5b5061074a60235481565b61065f61118c366004615103565b612be4565b34801561119d57600080fd5b5061065f6111ac366004615150565b612e56565b3480156111bd57600080fd5b506106b6612e7f565b3480156111d257600080fd5b5061062f6111e1366004615175565b612e89565b3480156111f257600080fd5b5061074a601e5481565b34801561120857600080fd5b5061062f6112173660046151a3565b612ed7565b34801561122857600080fd5b5061065f611237366004614c5f565b613011565b34801561124857600080fd5b5060165461062f9060ff1681565b34801561126257600080fd5b5061065f611271366004614c7c565b613087565b34801561128257600080fd5b5061065f611291366004614fd9565b613095565b3480156112a257600080fd5b5061065f6112b1366004614c7c565b6130db565b3480156112c257600080fd5b5061065f6112d1366004614c5f565b6130e8565b60606112e06132aa565b905090565b60006112f0826132b6565b92915050565b6112ff336132db565b600980546001600160a01b0319166001600160a01b03831617905550565b50565b611329336132db565b602255565b611337336132db565b6113418282613349565b5050565b606060028054611354906151ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611380906151ed565b80156113cd5780601f106113a2576101008083540402835291602001916113cd565b820191906000526020600020905b8154815290600101906020018083116113b057829003601f168201915b5050505050905090565b60006113e282613446565b61144b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a20617070726f76656420717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15801590611488575060165460ff165b1561153157604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115099190615227565b61153157604051633b79c77360e21b81526001600160a01b0382166004820152602401611442565b61153b838361347c565b505050565b6000600161154d60055490565b6112e0919061525a565b611560336132db565b600f55565b600061156f613490565b61154d6134f2565b826daaeb6d7670e522a718067333cd4e3b15801590611598575060165460ff165b1561164f57336001600160a01b038216036115bd576115b8848484613503565b61165a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561160c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116309190615227565b61164f57604051633b79c77360e21b8152336004820152602401611442565b61165a848484613503565b50505050565b611669336132db565b61131d81601354600090815260116020526040902055565b6029805461168e906151ed565b80601f01602080910402602001604051908101604052809291908181526020018280546116ba906151ed565b80156117075780601f106116dc57610100808354040283529160200191611707565b820191906000526020600020905b8154815290600101906020018083116116ea57829003601f168201915b505050505081565b611718336132db565b80601381905550600160226000828254611732919061526d565b909155505050565b611742613534565b61131d8161358e565b60008281526015602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916117c05750604080518082019091526014546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906117df906001600160601b031687615280565b6117e991906152ad565b915196919550909350505050565b611800336132db565b60009182526011602052604090912055565b61181a613616565b602a54610100900460ff166118685760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401611442565b80601e5410156118ca5760405162461bcd60e51b815260206004820152602760248201527f7075626c69634d696e743a204f766572206d6178206d696e747320706572206f6044820152666e652074696d6560c81b6064820152608401611442565b80601c54101561192a5760405162461bcd60e51b815260206004820152602560248201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604482015264185b1b195d60da1b6064820152608401611442565b6023546000908152602d6020908152604080832033845290915290205461195290829061526d565b601c5410156119a35760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401611442565b80601a546119b19190615280565b34146119cf5760405162461bcd60e51b8152600401611442906152c1565b6020546119da611565565b6119e4908361526d565b1115611a025760405162461bcd60e51b8152600401611442906152f8565b6023546000908152602d6020908152604080832033845290915281208054839290611a2e90849061526d565b90915550611a3e9050338261366f565b61131d6001601055565b611a51336132db565b602355565b611a5f336132db565b611a67613616565b60265447906000906001600160a01b031615611ada576026546040516001600160a01b03909116908390600081818185875af1925050503d8060008114611aca576040519150601f19603f3d011682016040523d82523d6000602084013e611acf565b606091505b505080915050611b3b565b6000546001600160a01b03166001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b30576040519150601f19603f3d011682016040523d82523d6000602084013e611b35565b606091505b50909150505b80611b885760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401611442565b5050611b946001601055565b565b826daaeb6d7670e522a718067333cd4e3b15801590611bb7575060165460ff165b15611c6957336001600160a01b03821603611bd7576115b8848484613689565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611c26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4a9190615227565b611c6957604051633b79c77360e21b8152336004820152602401611442565b61165a848484613689565b33611c7e82611e64565b6001600160a01b031614611ca45760405162461bcd60e51b81526004016114429061531e565b602a546301000000900460ff1615611cea5760405162461bcd60e51b81526020600482015260096024820152686e6f7420616c6c6f7760b81b6044820152606401611442565b61131d816136a4565b611cfc336132db565b602a805491151563010000000263ff00000019909216919091179055565b60606000611d2783611f5a565b90506000816001600160401b03811115611d4357611d43614e2f565b604051908082528060200260200182016040528015611d6c578160200160208202803683370190505b509050600060015b6001611d7f60055490565b611d89919061525a565b811015611e45576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa158015611dcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df09190615348565b6001600160a01b0316866001600160a01b031603611e3357808383611e1481615365565b945081518110611e2657611e2661537e565b6020026020010181815250505b80611e3d81615365565b915050611d74565b5090949350505050565b611e58336132db565b602861134182826153da565b600080611e7083613710565b509392505050565b611e81336132db565b80611e8a611565565b1115611ed45760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b6044820152606401611442565b601f55565b611ee2336132db565b60009182526012602052604090912055565b611efd81613446565b611f195760405162461bcd60e51b815260040161144290615499565b33611f2382611e64565b6001600160a01b031614611f495760405162461bcd60e51b81526004016114429061531e565b6000908152602f6020526040812055565b60006001600160a01b038216611fc85760405162461bcd60e51b815260206004820152602d60248201527f4552433732315073693a2062616c616e636520717565727920666f722074686560448201526c207a65726f206164647265737360981b6064820152608401611442565b600060015b60055481101561202257611fe081613446565b1561201257611fee81611e64565b6001600160a01b0316846001600160a01b0316036120125761200f82615365565b91505b61201b81615365565b9050611fcd565b5092915050565b612031613534565b611b9460006137a7565b612044336132db565b61131d816137f7565b600061205882613446565b6120745760405162461bcd60e51b815260040161144290615499565b506000908152602e602052604090205490565b61208f613534565b602455565b61209d336132db565b602a805460ff1916911515919091179055565b6120b8613616565b602a5460ff1661210a5760405162461bcd60e51b815260206004820152601760248201527f616c6c6f776c6973744d696e74206973205061757365640000000000000000006044820152606401611442565b6121173360135483612a8f565b61215e5760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401611442565b81601d5410156121c35760405162461bcd60e51b815260206004820152602a60248201527f616c6c6f776c6973744d696e743a204f766572206d6178206d696e747320706560448201526972206f6e652074696d6560b01b6064820152608401611442565b6013546000908152601b60205260409020548211156122355760405162461bcd60e51b815260206004820152602860248201527f616c6c6f776c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611442565b6022546000908152602c6020908152604080832033845290915290205461225d90839061526d565b6013546000908152601b602052604090205410156122bd5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401611442565b816019546122cb9190615280565b34146122e95760405162461bcd60e51b8152600401611442906152c1565b6020546122f4611565565b6122fe908461526d565b111561231c5760405162461bcd60e51b8152600401611442906152f8565b6022546000908152602c602090815260408083203384529091528120805484929061234890849061526d565b909155506123589050338361366f565b6113416001601055565b8161236c81611e64565b6001600160a01b0316336001600160a01b0316146123df5760405162461bcd60e51b815260206004820152602a60248201527f5265737472696374417070726f76653a206f7065726174696f6e206973206f6e604482015269363c903437b63232b91760b11b6064820152608401611442565b506000918252600d602052604090912055565b6123fb336132db565b601c55565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa92505050801561245b575060408051601f3d908101601f1916820190925261245891810190615348565b60015b6112f057506000919050565b919050565b606060008061247a84611f5a565b90506000816001600160401b0381111561249657612496614e2f565b6040519080825280602002602001820160405280156124bf578160200160208202803683370190505b50905060015b828414612529576124d581613446565b1561252157856001600160a01b03166124ed82611e64565b6001600160a01b03160361252157808285806001019650815181106125145761251461537e565b6020026020010181815250505b6001016124c5565b50949350505050565b61253b81613446565b6125575760405162461bcd60e51b815260040161144290615499565b3361256182611e64565b6001600160a01b0316146125875760405162461bcd60e51b81526004016114429061531e565b61259381602154101590565b1561131d57602a5462010000900460ff161561131d5760006125b48261383c565b6000838152602f60205260409020555050565b6125d0336132db565b601855565b6125de336132db565b806125e7611565565b11156126315760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b6044820152606401611442565b602055565b606060038054611354906151ed565b61264d613616565b6000341161266d5760405162461bcd60e51b8152600401611442906152c1565b611b946001601055565b816daaeb6d7670e522a718067333cd4e3b15801590612698575060165460ff165b1561274157604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156126f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127199190615227565b61274157604051633b79c77360e21b81526001600160a01b0382166004820152602401611442565b61153b83836138a1565b612754336132db565b602a80549115156101000261ff0019909216919091179055565b612776613534565b61131d8161391f565b612788336132db565b6016805460ff1916911515919091179055565b836daaeb6d7670e522a718067333cd4e3b158015906127bc575060165460ff165b1561287457336001600160a01b038216036127e2576127dd85858585613949565b612880565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612831573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128559190615227565b61287457604051633b79c77360e21b8152336004820152602401611442565b61288085858585613949565b5050505050565b612890336132db565b6000918252601b602052604090912055565b6128ab336132db565b602761134182826153da565b6128c0336132db565b601955565b6128ce336132db565b602155565b60606128de82613446565b6128fa5760405162461bcd60e51b815260040161144290615499565b61290682602154101590565b156129fd576000828152602f602052604081205413156129745761292861397b565b6000838152602f60205260409020546129409061398a565b6129498461398a565b602960405160200161295e9493929190615543565b6040516020818303038152906040529050919050565b602a5462010000900460ff16156129d85760006129908361383c565b905061299a61397b565b6129a38261398a565b6129ac8561398a565b60296040516020016129c19493929190615543565b604051602081830303815290604052915050919050565b6129e061397b565b6129e98361398a565b602960405160200161295e939291906155a1565b60278054612a0a906151ed565b80601f0160208091040260200160405190810160405280929190818152602001828054612a36906151ed565b8015612a835780601f10612a5857610100808354040283529160200191612a83565b820191906000526020600020905b815481529060010190602001808311612a6657829003601f168201915b50505050509050919050565b6040516bffffffffffffffffffffffff19606085901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015612ba757838181518110612ae957612ae961537e565b60200260200101518210612b4757838181518110612b0957612b0961537e565b602002602001015182604051602001612b2c929190918252602082015260400190565b60405160208183030381529060405280519060200120612b93565b81848281518110612b5a57612b5a61537e565b6020026020010151604051602001612b7c929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080612b9f81615365565b915050612ace565b506000848152601260205260409020541490509392505050565b612bca336132db565b601a55565b612bd8336132db565b602961134182826153da565b612bec613616565b60008481526030602052604090205460ff16612c4a5760405162461bcd60e51b815260206004820152601760248201527f77686974656c6973744d696e74206973205061757365640000000000000000006044820152606401611442565b612c5633858484612ed7565b612c9d5760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401611442565b60008211612cdf5760405162461bcd60e51b815260206004820152600f60248201526e596f752068617665206e6f20574c2160881b6044820152606401611442565b82821015612d405760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611442565b6000848152602b60209081526040808320338452909152902054612d6590849061526d565b821015612db45760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401611442565b82601854612dc29190615280565b3414612de05760405162461bcd60e51b8152600401611442906152c1565b602054612deb611565565b612df5908561526d565b1115612e135760405162461bcd60e51b8152600401611442906152f8565b6000848152602b6020908152604080832033845290915281208054859290612e3c90849061526d565b90915550612e4c9050338461366f565b61165a6001601055565b612e5f336132db565b600091825260306020526040909120805460ff1916911515919091179055565b60606112e0613a1c565b6000612e958383613a9c565b1515600003612ea6575060006112f0565b6001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff165b9392505050565b6040516bffffffffffffffffffffffff19606086901b16602082015260348101839052600090819060540160405160208183030381529060405280519060200120905060005b8351811015612ff657838181518110612f3857612f3861537e565b60200260200101518210612f9657838181518110612f5857612f5861537e565b602002602001015182604051602001612f7b929190918252602082015260400190565b60405160208183030381529060405280519060200120612fe2565b81848281518110612fa957612fa961537e565b6020026020010151604051602001612fcb929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080612fee81615365565b915050612f1d565b50600085815260116020526040902054149050949350505050565b613019613534565b6001600160a01b03811661307e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611442565b61131d816137a7565b613090336132db565b601355565b61309e336132db565b601f546130a9611565565b6130b3908461526d565b11156130d15760405162461bcd60e51b8152600401611442906152f8565b611341818361366f565b6130e3613534565b602555565b6130f1336132db565b61131d81613abc565b60606000613109836002615280565b61311490600261526d565b6001600160401b0381111561312b5761312b614e2f565b6040519080825280601f01601f191660200182016040528015613155576020820181803683370190505b509050600360fc1b816000815181106131705761317061537e565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061319f5761319f61537e565b60200101906001600160f81b031916908160001a90535060006131c3846002615280565b6131ce90600161526d565b90505b6001811115613246576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106132025761320261537e565b1a60f81b8282815181106132185761321861537e565b60200101906001600160f81b031916908160001a90535060049490941c9361323f816155d3565b90506131d1565b508315612ed05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611442565b6000612ed0836001600160a01b038416613b01565b60606112e0600a613b50565b60006001600160e01b0319821663152a902d60e11b14806112f057506112f082613b5d565b6001600160a01b03811660009081526017602052604090205460ff1661330c335b6001600160a01b031660146130fa565b60405160200161331c91906155ea565b604051602081830303815290604052906113415760405162461bcd60e51b81526004016114429190614d2a565b6127106001600160601b03821611156133b75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611442565b6001600160a01b03821661340d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401611442565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217601455565b600881811c60009081526020919091526040812054600160ff1b60ff84161c161561347357506000919050565b6112f082613b82565b6134868282613b9e565b6113418282613c19565b600554600090819081906134a89060081c600161526d565b9050815b818110156134ec576000818152600860205260409020546134cc81613d2b565b6134d6908661526d565b94505080806134e490615365565b9150506134ac565b50505090565b600060016005546112e0919061525a565b61350d3382613d45565b6135295760405162461bcd60e51b815260040161144290615637565b61153b838383613e0a565b6000546001600160a01b03163314611b945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611442565b6001600160a01b03811660009081526017602052604090205460ff16156135b4336132fc565b6040516020016135c4919061568b565b604051602081830303815290604052906135f15760405162461bcd60e51b81526004016114429190614d2a565b506001600160a01b03166000908152601760205260409020805460ff19166001179055565b6002601054036136685760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611442565b6002601055565b611341828260405180602001604052806000815250614011565b61153b8383836040518060200160405280600081525061279b565b60006136af82611e64565b90506136bf816000846001614052565b6136ca6008836140a1565b60405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a46113418160008460016140cd565b60008061371c83613446565b61377d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401611442565b613786836140f0565b6000818152600460205260409020546001600160a01b031694909350915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b613802600a826140fd565b506040516001600160a01b0382169033907f3b01c97343869ca2757fcc37cdb8f71683b0a7aed858e3755f4529a1db85729290600090a350565b600061384782613446565b6138635760405162461bcd60e51b815260040161144290615499565b6025546000838152602e602052604081205490919061388290426156e2565b61388c9190615702565b905060245481126112f0575060245492915050565b6138aa82614112565b806138b3575080155b6139155760405162461bcd60e51b815260206004820152602d60248201527f5265737472696374417070726f76653a2043616e206e6f7420617070726f766560448201526c103637b1b5b2b2103a37b5b2b760991b6064820152608401611442565b611341828261411e565b613928816132db565b6001600160a01b03166000908152601760205260409020805460ff19169055565b6139533383613d45565b61396f5760405162461bcd60e51b815260040161144290615637565b61165a848484846141e2565b606060288054611354906151ed565b60606000613997836141fb565b60010190506000816001600160401b038111156139b6576139b6614e2f565b6040519080825280601f01601f1916602001820160405280156139e0576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846139ea57509392505050565b6060600080613a2d8161271061174b565b91509150613a76613a3d8261398a565b613a51846001600160a01b031660146130fa565b604051602001613a62929190615730565b6040516020818303038152906040526142d3565b604051602001613a8691906157b6565b6040516020818303038152906040529250505090565b600080613aa884614437565b9050613ab48382614479565b949350505050565b613ac7600a82613295565b506040516001600160a01b0382169033907fbd0af1fe0a2c1c7bb340c17a284a291138979c8eeb797e176dbd1c415199af3c90600090a350565b6000818152600183016020526040812054613b48575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556112f0565b5060006112f0565b60606000612ed083614512565b60006001600160e01b03198216630101c11560e71b14806112f057506112f08261456d565b6000613b8d60055490565b821080156112f05750506001111590565b6001600160a01b0382161561134157613bb781836145bd565b6113415760405162461bcd60e51b815260206004820152602d60248201527f5265737472696374417070726f76653a2054686520636f6e747261637420697360448201526c103737ba1030b63637bbb2b21760991b6064820152608401611442565b6000613c2482611e64565b9050806001600160a01b0316836001600160a01b031603613c935760405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a20617070726f76616c20746f2063757272656e74206f6044820152633bb732b960e11b6064820152608401611442565b336001600160a01b0382161480613caf5750613caf8133612e89565b613d215760405162461bcd60e51b815260206004820152603b60248201527f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c00000000006064820152608401611442565b61153b83836145ca565b60005b811561246757600019820190911690600101613d2e565b6000613d5082613446565b613db45760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401611442565b6000613dbf83611e64565b9050806001600160a01b0316846001600160a01b03161480613dfa5750836001600160a01b0316613def846113d7565b6001600160a01b0316145b80613ab45750613ab48185612e89565b600080613e1683613710565b91509150846001600160a01b0316826001600160a01b031614613e905760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160448201526b3a1034b9903737ba1037bbb760a11b6064820152608401611442565b6001600160a01b038416613ef65760405162461bcd60e51b815260206004820152602760248201527f4552433732315073693a207472616e7366657220746f20746865207a65726f206044820152666164647265737360c81b6064820152608401611442565b613f038585856001614052565b613f0e6000846145ca565b6000613f1b84600161526d565b600881901c600090815260016020526040902054909150600160ff1b60ff83161c16158015613f4b575060055481105b15613f8257600081815260046020526040902080546001600160a01b0319166001600160a01b038816179055613f826001826140a1565b600084815260046020526040902080546001600160a01b0319166001600160a01b038716179055818414613fbb57613fbb6001856140a1565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461400986868660016140cd565b505050505050565b600061401c60055490565b90506140288484614638565b6140366000858386866147c5565b61165a5760405162461bcd60e51b8152600401611442906157fb565b6000828152602e60205260408120429055829061406f838361526d565b90505b42602e60008461408181615365565b955081526020019081526020016000208190555080821061407257614009565b600881901c600090815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b6001600160a01b0384161561165a576000828152600d602052604081205561165a565b60006112f06001836148fc565b6000612ed0836001600160a01b0384166149f4565b60006112f03383613a9c565b336001600160a01b038316036141765760405162461bcd60e51b815260206004820152601c60248201527f4552433732315073693a20617070726f766520746f2063616c6c6572000000006044820152606401611442565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6141ed848484613e0a565b6140368484846001856147c5565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061423a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310614266576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061428457662386f26fc10000830492506010015b6305f5e100831061429c576305f5e100830492506008015b61271083106142b057612710830492506004015b606483106142c2576064830492506002015b600a83106112f05760010192915050565b606081516000036142f257505060408051602081019091526000815290565b60006040518060600160405280604081526020016158c16040913990506000600384516002614321919061526d565b61432b91906152ad565b614336906004615280565b9050600061434582602061526d565b6001600160401b0381111561435c5761435c614e2f565b6040519080825280601f01601f191660200182016040528015614386576020820181803683370190505b509050818152600183018586518101602084015b818310156143f2576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182535060010161439a565b60038951066001811461440c576002811461441d57614429565b613d3d60f01b600119830152614429565b603d60f81b6000198301525b509398975050505050505050565b6001600160a01b0381166000908152600e60205260408120541561447157506001600160a01b03166000908152600e602052604090205490565b5050600f5490565b600c5460009060ff1661448e575060016112f0565b61449783614ae7565b80612ed05750600954604051630f8350ed60e41b81526001600160a01b038581166004830152602482018590529091169063f8350ed090604401602060405180830381865afa1580156144ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ed09190615227565b606081600001805480602002602001604051908101604052809291908181526020018280548015612a8357602002820191906000526020600020905b81548152602001906001019080831161454e5750505050509050919050565b60006001600160e01b031982166380ac58cd60e01b148061459e57506001600160e01b03198216635b5e139f60e01b145b806112f057506301ffc9a760e01b6001600160e01b03198316146112f0565b600080613aa83385614af4565b600081815260066020526040902080546001600160a01b0319166001600160a01b03841690811790915581906145ff82611e64565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061464360055490565b9050600082116146a35760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a207175616e74697479206d7573742062652067726561604482015264074657220360dc1b6064820152608401611442565b6001600160a01b0383166147055760405162461bcd60e51b815260206004820152602360248201527f4552433732315073693a206d696e7420746f20746865207a65726f206164647260448201526265737360e81b6064820152608401611442565b6147126000848385614052565b8160056000828254614724919061526d565b9091555050600081815260046020526040902080546001600160a01b0319166001600160a01b03851617905561475b6001826140a1565b61476860008483856140cd565b805b614774838361526d565b81101561165a5760405181906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4806147bd81615365565b91505061476a565b60006001600160a01b0385163b156148ef57506001835b6147e6848661526d565b8110156148e957604051630a85bd0160e11b81526001600160a01b0387169063150b7a029061481f9033908b9086908990600401615850565b6020604051808303816000875af192505050801561485a575060408051601f3d908101601f191682019092526148579181019061588d565b60015b6148b7573d808015614888576040519150601f19603f3d011682016040523d82523d6000602084013e61488d565b606091505b5080516000036148af5760405162461bcd60e51b8152600401611442906157fb565b805181602001fd5b8280156148d457506001600160e01b03198116630a85bd0160e11b145b925050806148e181615365565b9150506147dc565b506148f3565b5060015b95945050505050565b600881901c60008181526020849052604081205490919060ff808516919082181c801561493e5761492c81614b26565b60ff168203600884901b1793506149eb565b600083116149ab5760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b6064820152608401611442565b5060001990910160008181526020869052604090205490919080156149e6576149d381614b26565b60ff0360ff16600884901b1793506149eb565b61493e565b50505092915050565b60008181526001830160205260408120548015614add576000614a1860018361525a565b8554909150600090614a2c9060019061525a565b9050818114614a91576000866000018281548110614a4c57614a4c61537e565b9060005260206000200154905080876000018481548110614a6f57614a6f61537e565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080614aa257614aa26158aa565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506112f0565b60009150506112f0565b60006112f0600a83614b90565b6000818152600d602052604081205415614b1d57506000818152600d60205260409020546112f0565b612ed083614437565b60006040518061012001604052806101008152602001615901610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff614b6f85614bb2565b02901c81518110614b8257614b8261537e565b016020015160f81c92915050565b6001600160a01b03811660009081526001830160205260408120541515612ed0565b6000808211614bc057600080fd5b5060008190031690565b6020808252825182820181905260009190848201906040850190845b81811015614c0b5783516001600160a01b031683529284019291840191600101614be6565b50909695505050505050565b6001600160e01b03198116811461131d57600080fd5b600060208284031215614c3f57600080fd5b8135612ed081614c17565b6001600160a01b038116811461131d57600080fd5b600060208284031215614c7157600080fd5b8135612ed081614c4a565b600060208284031215614c8e57600080fd5b5035919050565b60008060408385031215614ca857600080fd5b8235614cb381614c4a565b915060208301356001600160601b0381168114614ccf57600080fd5b809150509250929050565b60005b83811015614cf5578181015183820152602001614cdd565b50506000910152565b60008151808452614d16816020860160208601614cda565b601f01601f19169290920160200192915050565b602081526000612ed06020830184614cfe565b60008060408385031215614d5057600080fd5b8235614d5b81614c4a565b946020939093013593505050565b600080600060608486031215614d7e57600080fd5b8335614d8981614c4a565b92506020840135614d9981614c4a565b929592945050506040919091013590565b60008060408385031215614dbd57600080fd5b50508035926020909101359150565b801515811461131d57600080fd5b600060208284031215614dec57600080fd5b8135612ed081614dcc565b6020808252825182820181905260009190848201906040850190845b81811015614c0b57835183529284019291840191600101614e13565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715614e6d57614e6d614e2f565b604052919050565b60006001600160401b03831115614e8e57614e8e614e2f565b614ea1601f8401601f1916602001614e45565b9050828152838383011115614eb557600080fd5b828260208301376000602084830101529392505050565b600060208284031215614ede57600080fd5b81356001600160401b03811115614ef457600080fd5b8201601f81018413614f0557600080fd5b613ab484823560208401614e75565b600082601f830112614f2557600080fd5b813560206001600160401b03821115614f4057614f40614e2f565b8160051b614f4f828201614e45565b9283528481018201928281019087851115614f6957600080fd5b83870192505b84831015614f8857823582529183019190830190614f6f565b979650505050505050565b60008060408385031215614fa657600080fd5b8235915060208301356001600160401b03811115614fc357600080fd5b614fcf85828601614f14565b9150509250929050565b60008060408385031215614fec57600080fd5b823591506020830135614ccf81614c4a565b6000806040838503121561501157600080fd5b823561501c81614c4a565b91506020830135614ccf81614dcc565b6000806000806080858703121561504257600080fd5b843561504d81614c4a565b9350602085013561505d81614c4a565b92506040850135915060608501356001600160401b0381111561507f57600080fd5b8501601f8101871361509057600080fd5b61509f87823560208401614e75565b91505092959194509250565b6000806000606084860312156150c057600080fd5b83356150cb81614c4a565b92506020840135915060408401356001600160401b038111156150ed57600080fd5b6150f986828701614f14565b9150509250925092565b6000806000806080858703121561511957600080fd5b84359350602085013592506040850135915060608501356001600160401b0381111561514457600080fd5b61509f87828801614f14565b6000806040838503121561516357600080fd5b823591506020830135614ccf81614dcc565b6000806040838503121561518857600080fd5b823561519381614c4a565b91506020830135614ccf81614c4a565b600080600080608085870312156151b957600080fd5b84356151c481614c4a565b9350602085013592506040850135915060608501356001600160401b0381111561514457600080fd5b600181811c9082168061520157607f821691505b60208210810361522157634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561523957600080fd5b8151612ed081614dcc565b634e487b7160e01b600052601160045260246000fd5b818103818111156112f0576112f0615244565b808201808211156112f0576112f0615244565b80820281158282048414176112f0576112f0615244565b634e487b7160e01b600052601260045260246000fd5b6000826152bc576152bc615297565b500490565b60208082526018908201527f4554482076616c7565206973206e6f7420636f72726563740000000000000000604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526010908201526f34b9b73a1037bbb732b9103a37b5b2b760811b604082015260600190565b60006020828403121561535a57600080fd5b8151612ed081614c4a565b60006001820161537757615377615244565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f82111561153b57600081815260208120601f850160051c810160208610156153bb5750805b601f850160051c820191505b81811015614009578281556001016153c7565b81516001600160401b038111156153f3576153f3614e2f565b6154078161540184546151ed565b84615394565b602080601f83116001811461543c57600084156154245750858301515b600019600386901b1c1916600185901b178555614009565b600085815260208120601f198616915b8281101561546b5788860151825594840194600190910190840161544c565b50858210156154895787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252601f908201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b600081546154dd816151ed565b600182811680156154f5576001811461550a57615539565b60ff1984168752821515830287019450615539565b8560005260208060002060005b858110156155305781548a820152908401908201615517565b50505082870194505b5050505092915050565b60008551615555818460208a01614cda565b855190830190615569818360208a01614cda565b602f60f81b91019081528451615586816001840160208901614cda565b615595600182840101866154d0565b98975050505050505050565b600084516155b3818460208901614cda565b8451908301906155c7818360208901614cda565b614f88818301866154d0565b6000816155e2576155e2615244565b506000190190565b67030b1b1b7bab73a160c51b81526000825161560d816008850160208701614cda565b721034b9903737ba1030b71037b832b930ba37b960691b6008939091019283015250601b01919050565b60208082526034908201527f4552433732315073693a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b67030b1b1b7bab73a160c51b8152600082516156ae816008850160208701614cda565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b818103600083128015838313168383128216171561202257612022615244565b60008261571157615711615297565b600160ff1b82146000198414161561572b5761572b615244565b500590565b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a000000000081526000835161576881601b850160208801614cda565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b91840191820152835161579b81602e840160208801614cda565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516157ee81601d850160208701614cda565b91909101601d0192915050565b60208082526035908201527f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260408201527418a932b1b2b4bb32b91034b6b83632b6b2b73a32b960591b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061588390830184614cfe565b9695505050505050565b60006020828403121561589f57600080fd5b8151612ed081614c17565b634e487b7160e01b600052603160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a264697066735822122076068ecd4a17bd8b1bb8448e5400f01c364d991cd4abbed0a76e9a64bca04fe964736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b4250f715995683c6ea5bc7c5e2cdf9b1601ba3f00000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0xB4250F715995683c6EA5BC7c5e2CDF9b1601ba3f
Arg [1] : _royaltyFraction (uint96): 1000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b4250f715995683c6ea5bc7c5e2cdf9b1601ba3f
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode Sourcemap
116415:17314:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132973:181;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118781:179;;;;;;;;;;-1:-1:-1;118781:179:0;;;;;:::i;:::-;;:::i;:::-;;;1228:14:1;;1221:22;1203:41;;1191:2;1176:18;118781:179:0;1063:187:1;133270:105:0;;;;;;;;;;-1:-1:-1;133270:105:0;;;;;:::i;:::-;;:::i;:::-;;120483:111;;;;;;;;;;-1:-1:-1;120483:111:0;;;;;:::i;:::-;;:::i;118603:157::-;;;;;;;;;;-1:-1:-1;118603:157:0;;;;;:::i;:::-;;:::i;75511:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;110234:33::-;;;;;;;;;;-1:-1:-1;110234:33:0;;;;;;;;77066:311;;;;;;;;;;-1:-1:-1;77066:311:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3188:32:1;;;3170:51;;3158:2;3143:18;77066:311:0;3024:203:1;131620:157:0;;;;;;;;;;-1:-1:-1;131620:157:0;;;;;:::i;:::-;;:::i;123468:103::-;;;;;;;;;;;;;:::i;:::-;;;3698:25:1;;;3686:2;3671:18;123468:103:0;3552:177:1;133162:100:0;;;;;;;;;;-1:-1:-1;133162:100:0;;;;;:::i;:::-;;:::i;90641:122::-;;;;;;;;;;;;;:::i;116746:32::-;;;;;;;;;;;;;;;;116693:48;;;;;;;;;;-1:-1:-1;116693:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;121547:126;;;;;;;;;;-1:-1:-1;121547:126:0;;;;;:::i;:::-;121646:10;;121614:7;121636:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;121636:31:0;;;;;;;;;;;121547:126;110372:49;;;;;;;;;;-1:-1:-1;110372:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;131785:163;;;;;;;;;;-1:-1:-1;131785:163:0;;;;;:::i;:::-;;:::i;122856:118::-;;;;;;;;;;-1:-1:-1;122856:118:0;;;;;:::i;:::-;;:::i;117209:38::-;;;;;;;;;;;;;:::i;120349:130::-;;;;;;;;;;-1:-1:-1;120349:130:0;;;;;:::i;:::-;;:::i;133433:115::-;;;;;;;;;;-1:-1:-1;133433:115:0;;;;;:::i;:::-;;:::i;68425:442::-;;;;;;;;;;-1:-1:-1;68425:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4825:32:1;;;4807:51;;4889:2;4874:18;;4867:34;;;;4780:18;68425:442:0;4633:274:1;122980:156:0;;;;;;;;;;-1:-1:-1;122980:156:0;;;;;:::i;:::-;;:::i;116564:38::-;;;;;;;;;;;;;;;;129250:650;;;;;;:::i;:::-;;:::i;116783:34::-;;;;;;;;;;;;;;;;120598:111;;;;;;;;;;-1:-1:-1;120598:111:0;;;;;:::i;:::-;;:::i;109788:34::-;;;;;;;;;;-1:-1:-1;109788:34:0;;;;-1:-1:-1;;;;;109788:34:0;;;128816:412;;;:::i;117297:31::-;;;;;;;;;;-1:-1:-1;117297:31:0;;;;;;;;;;;104889:143;;;;;;;;;;;;104989:42;104889:143;;116650:38;;;;;;;;;;;;;;;;131956:171;;;;;;;;;;-1:-1:-1;131956:171:0;;;;;:::i;:::-;;:::i;129920:201::-;;;;;;;;;;-1:-1:-1;129920:201:0;;;;;:::i;:::-;;:::i;130148:98::-;;;;;;;;;;-1:-1:-1;130148:98:0;;;;;:::i;:::-;;:::i;130289:481::-;;;;;;;;;;-1:-1:-1;130289:481:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;116607:38::-;;;;;;;;;;;;;;;;116898:31;;;;;;;;;;;;;;;;110452:27;;;;;;;;;;;;;;;;116934;;;;;;;;;;;;;;;;123631:103;;;;;;;;;;-1:-1:-1;123631:103:0;;;;;:::i;:::-;;:::i;99269:22::-;;;;;;;;;;;;;;;;74908:222;;;;;;;;;;-1:-1:-1;74908:222:0;;;;;:::i;:::-;;:::i;100971:113::-;;;;;;;;;;-1:-1:-1;100971:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;101055:21:0;101031:4;101055:21;;;:10;:21;;;;;;;;;100971:113;119730:179;;;;;;;;;;-1:-1:-1;119730:179:0;;;;;:::i;:::-;;:::i;123142:156::-;;;;;;;;;;-1:-1:-1;123142:156:0;;;;;:::i;:::-;;:::i;124996:225::-;;;;;;;;;;-1:-1:-1;124996:225:0;;;;;:::i;:::-;;:::i;74356:490::-;;;;;;;;;;-1:-1:-1;74356:490:0;;;;;:::i;:::-;;:::i;93312:103::-;;;;;;;;;;;;;:::i;117055:23::-;;;;;;;;;;;;;;;;132784:181;;;;;;;;;;-1:-1:-1;132784:181:0;;;;;:::i;:::-;;:::i;124013:187::-;;;;;;;;;;-1:-1:-1;124013:187:0;;;;;:::i;:::-;;:::i;125244:92::-;;;;;;;;;;-1:-1:-1;125244:92:0;;;;;:::i;:::-;;:::i;122585:110::-;;;;;;;;;;-1:-1:-1;122585:110:0;;;;;:::i;:::-;;:::i;127804:789::-;;;;;;:::i;:::-;;:::i;113260:176::-;;;;;;;;;;-1:-1:-1;113260:176:0;;;;;:::i;:::-;;:::i;117026:24::-;;;;;;;;;;;;;;;;122278:100;;;;;;;;;;-1:-1:-1;122278:100:0;;;;;:::i;:::-;;:::i;130833:243::-;;;;;;;;;;-1:-1:-1;130833:243:0;;;;;:::i;:::-;;:::i;87049:601::-;;;;;;;;;;-1:-1:-1;87049:601:0;;;;;:::i;:::-;;:::i;124596:369::-;;;;;;;;;;-1:-1:-1;124596:369:0;;;;;:::i;:::-;;:::i;92664:87::-;;;;;;;;;;-1:-1:-1;92710:7:0;92737:6;-1:-1:-1;;;;;92737:6:0;92664:87;;120745:103;;;;;;;;;;-1:-1:-1;120745:103:0;;;;;:::i;:::-;;:::i;121677:149::-;;;;;;;;;;-1:-1:-1;121677:149:0;;;;;:::i;:::-;121766:7;121788:22;;;:9;:22;;;;;;;;-1:-1:-1;;;;;121788:32:0;;;;;;;;;;;;;121677:149;119913:174;;;;;;;;;;-1:-1:-1;119913:174:0;;;;;:::i;:::-;;:::i;121830:126::-;;;;;;;;;;-1:-1:-1;121830:126:0;;;;;:::i;:::-;121929:10;;121897:7;121919:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;121919:31:0;;;;;;;;;;;121830:126;75680:104;;;;;;;;;;;;;:::i;128625:127::-;;;:::i;131436:176::-;;;;;;;;;;-1:-1:-1;131436:176:0;;;;;:::i;:::-;;:::i;122718:111::-;;;;;;;;;;-1:-1:-1;122718:111:0;;;;;:::i;:::-;;:::i;113444:135::-;;;;;;;;;;-1:-1:-1;113444:135:0;;;;;:::i;:::-;113552:10;113537:26;;;;:14;:26;;;;;:34;113444:135;133607:117;;;;;;;;;;-1:-1:-1;133607:117:0;;;;;:::i;:::-;;:::i;110295:48::-;;;;;;;;;;-1:-1:-1;110295:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;122001:106;;;;;;;;;;-1:-1:-1;122093:7:0;;122057;122079:22;;;:13;:22;;;;;;122001:106;;131306:122;;;;;;;;;;-1:-1:-1;131306:122:0;;;;;:::i;:::-;;:::i;132135:228::-;;;;;;;;;;-1:-1:-1;132135:228:0;;;;;:::i;:::-;;:::i;122131:127::-;;;;;;;;;;-1:-1:-1;122131:127:0;;;;;:::i;:::-;;:::i;117738:47::-;;;;;;;;;;-1:-1:-1;117738:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;123337:101;;;;;;;;;;-1:-1:-1;123337:101:0;;;;;:::i;:::-;;:::i;120866:103::-;;;;;;;;;;-1:-1:-1;120866:103:0;;;;;:::i;:::-;;:::i;117265:27::-;;;;;;;;;;-1:-1:-1;117265:27:0;;;;;;;;121122:107;;;;;;;;;;-1:-1:-1;121122:107:0;;;;;:::i;:::-;;:::i;125942:786::-;;;;;;;;;;-1:-1:-1;125942:786:0;;;;;:::i;:::-;;:::i;121402:141::-;;;;;;;;;;-1:-1:-1;121402:141:0;;;;;:::i;:::-;121486:7;121508:19;;;:9;:19;;;;;;;;-1:-1:-1;;;;;121508:29:0;;;;;;;;;;;;121402:141;100323:434;;;;;;;;;;-1:-1:-1;100323:434:0;;;;;:::i;:::-;;:::i;120112:88::-;;;;;;;;;;-1:-1:-1;120187:7:0;;120112:88;;116861:32;;;;;;;;;;;;;;;;116966:25;;;;;;;;;;;;;;;;120987:103;;;;;;;;;;-1:-1:-1;120987:103:0;;;;;:::i;:::-;;:::i;123740:131::-;;;;;;;;;;-1:-1:-1;123740:131:0;;;;;:::i;:::-;;:::i;116996:25::-;;;;;;;;;;;;;;;;127013:767;;;;;;:::i;:::-;;:::i;122425:137::-;;;;;;;;;;-1:-1:-1;122425:137:0;;;;;:::i;:::-;;:::i;118989:113::-;;;;;;;;;;;;;:::i;113771:309::-;;;;;;;;;;-1:-1:-1;113771:309:0;;;;;:::i;:::-;;:::i;116822:34::-;;;;;;;;;;;;;;;;99576:461;;;;;;;;;;-1:-1:-1;99576:461:0;;;;;:::i;:::-;;:::i;93570:201::-;;;;;;;;;;-1:-1:-1;93570:201:0;;;;;:::i;:::-;;:::i;104837:43::-;;;;;;;;;;-1:-1:-1;104837:43:0;;;;;;;;120225:99;;;;;;;;;;-1:-1:-1;120225:99:0;;;;;:::i;:::-;;:::i;126791:202::-;;;;;;;;;;-1:-1:-1;126791:202:0;;;;;:::i;:::-;;:::i;125359:90::-;;;;;;;;;;-1:-1:-1;125359:90:0;;;;;:::i;:::-;;:::i;132601:175::-;;;;;;;;;;-1:-1:-1;132601:175:0;;;;;:::i;:::-;;:::i;132973:181::-;133077:16;133118:28;:26;:28::i;:::-;133111:35;;132973:181;:::o;118781:179::-;118898:4;118918:36;118942:11;118918:23;:36::i;:::-;118911:43;118781:179;-1:-1:-1;;118781:179:0:o;133270:105::-;100913:32;71681:10;100913:18;:32::i;:::-;113089:3;:35;;-1:-1:-1;;;;;;113089:35:0;-1:-1:-1;;;;;113089:35:0;;;;;133270:105;:::o;133348:19::-:1;133270:105:::0;:::o;120483:111::-;100913:32;71681:10;100913:18;:32::i;:::-;120564:10:::1;:24:::0;120483:111::o;118603:157::-;100913:32;71681:10;100913:18;:32::i;:::-;118710:44:::1;118729:9;118740:13;118710:18;:44::i;:::-;118603:157:::0;;:::o;75511:100::-;75565:13;75598:5;75591:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75511:100;:::o;77066:311::-;77187:7;77234:16;77242:7;77234;:16::i;:::-;77212:113;;;;-1:-1:-1;;;77212:113:0;;13609:2:1;77212:113:0;;;13591:21:1;13648:2;13628:18;;;13621:30;13687:34;13667:18;;;13660:62;-1:-1:-1;;;13738:18:1;;;13731:45;13793:19;;77212:113:0;;;;;;;;;-1:-1:-1;77345:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;77345:24:0;;77066:311::o;131620:157::-;131716:8;104989:42;106911:45;:49;;;;:77;;-1:-1:-1;106964:24:0;;;;106911:77;106907:253;;;107010:67;;-1:-1:-1;;;107010:67:0;;107061:4;107010:67;;;14035:34:1;-1:-1:-1;;;;;14105:15:1;;14085:18;;;14078:43;104989:42:0;;107010;;13970:18:1;;107010:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;107005:144;;107105:28;;-1:-1:-1;;;107105:28:0;;-1:-1:-1;;;;;3188:32:1;;107105:28:0;;;3170:51:1;3143:18;;107105:28:0;3024:203:1;107005:144:0;131737:32:::1;131751:8;131761:7;131737:13;:32::i;:::-;131620:157:::0;;;:::o;123468:103::-;123526:7;123564:1;123548:14;73623:13;;;73541:103;123548:14;:17;;;;:::i;133162:100::-;100913:32;71681:10;100913:18;:32::i;:::-;133238:8:::1;:16:::0;133162:100::o;90641:122::-;90702:7;90746:9;:7;:9::i;:::-;90729:14;:12;:14::i;131785:163::-;131886:4;104989:42;106137:45;:49;;;;:77;;-1:-1:-1;106190:24:0;;;;106137:77;106133:567;;;106454:10;-1:-1:-1;;;;;106446:18:0;;;106442:85;;131903:37:::1;131922:4;131928:2;131932:7;131903:18;:37::i;:::-;106505:7:::0;;106442:85;106546:69;;-1:-1:-1;;;106546:69:0;;106597:4;106546:69;;;14035:34:1;106604:10:0;14085:18:1;;;14078:43;104989:42:0;;106546;;13970:18:1;;106546:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;106541:148;;106643:30;;-1:-1:-1;;;106643:30:0;;106662:10;106643:30;;;3170:51:1;3143:18;;106643:30:0;3024:203:1;106541:148:0;131903:37:::1;131922:4;131928:2;131932:7;131903:18;:37::i;:::-;131785:163:::0;;;;:::o;122856:118::-;100913:32;71681:10;100913:18;:32::i;:::-;122939:29:::1;122956:11;99389:7:::0;;99375:22;;;;:13;:22;;;;;:36;99300:119;117209:38;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;120349:130::-;100913:32;71681:10;100913:18;:32::i;:::-;120443:8:::1;120433:7;:18;;;;120472:1;120458:10;;:15;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;120349:130:0:o;133433:115::-;92550:13;:11;:13::i;:::-;133510:30:::1;133529:10;133510:18;:30::i;68425:442::-:0;68522:7;68580:27;;;:17;:27;;;;;;;;68551:56;;;;;;;;;-1:-1:-1;;;;;68551:56:0;;;;;-1:-1:-1;;;68551:56:0;;;-1:-1:-1;;;;;68551:56:0;;;;;;;;68522:7;;68620:92;;-1:-1:-1;68671:29:0;;;;;;;;;68681:19;68671:29;-1:-1:-1;;;;;68671:29:0;;;;-1:-1:-1;;;68671:29:0;;-1:-1:-1;;;;;68671:29:0;;;;;68620:92;68762:23;;;;68724:21;;69233:5;;68749:36;;-1:-1:-1;;;;;68749:36:0;:10;:36;:::i;:::-;68748:58;;;;:::i;:::-;68827:16;;;;;-1:-1:-1;68425:442:0;;-1:-1:-1;;;;68425:442:0:o;122980:156::-;100913:32;71681:10;100913:18;:32::i;:::-;99525:23;;;;:13;:23;;;;;;:37;118603:157::o;129250:650::-;57407:21;:19;:21::i;:::-;129340:19:::1;::::0;::::1;::::0;::::1;;;129332:52;;;::::0;-1:-1:-1;;;129332:52:0;;15409:2:1;129332:52:0::1;::::0;::::1;15391:21:1::0;15448:2;15428:18;;;15421:30;-1:-1:-1;;;15467:18:1;;;15460:50;15527:18;;129332:52:0::1;15207:344:1::0;129332:52:0::1;129418:7;129399:15;;:26;;129391:78;;;::::0;-1:-1:-1;;;129391:78:0;;15758:2:1;129391:78:0::1;::::0;::::1;15740:21:1::0;15797:2;15777:18;;;15770:30;15836:34;15816:18;;;15809:62;-1:-1:-1;;;15887:18:1;;;15880:37;15934:19;;129391:78:0::1;15556:403:1::0;129391:78:0::1;129501:7;129484:13;;:24;;129476:74;;;::::0;-1:-1:-1;;;129476:74:0;;16166:2:1;129476:74:0::1;::::0;::::1;16148:21:1::0;16205:2;16185:18;;;16178:30;16244:34;16224:18;;;16217:62;-1:-1:-1;;;16295:18:1;;;16288:35;16340:19;;129476:74:0::1;15964:401:1::0;129476:74:0::1;129592:10;::::0;129582:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;129604:10:::1;129582:33:::0;;;;;;;;:43:::1;::::0;129618:7;;129582:43:::1;:::i;:::-;129565:13;;:60;;129557:100;;;::::0;-1:-1:-1;;;129557:100:0;;16572:2:1;129557:100:0::1;::::0;::::1;16554:21:1::0;16611:2;16591:18;;;16584:30;16650:29;16630:18;;;16623:57;16697:18;;129557:100:0::1;16370:351:1::0;129557:100:0::1;129699:7;129685:11;;:21;;;;:::i;:::-;129672:9;:34;129664:71;;;;-1:-1:-1::0;;;129664:71:0::1;;;;;;;:::i;:::-;129780:8;;129761:13;:11;:13::i;:::-;129751:23;::::0;:7;:23:::1;:::i;:::-;129750:39;;129742:64;;;;-1:-1:-1::0;;;129742:64:0::1;;;;;;;:::i;:::-;129823:10;::::0;129813:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;129835:10:::1;129813:33:::0;;;;;;;:44;;129850:7;;129813:21;:44:::1;::::0;129850:7;;129813:44:::1;:::i;:::-;::::0;;;-1:-1:-1;129864:30:0::1;::::0;-1:-1:-1;129874:10:0::1;129886:7:::0;129864:9:::1;:30::i;:::-;57451:20:::0;56845:1;57971:7;:22;57788:213;120598:111;100913:32;71681:10;100913:18;:32::i;:::-;120679:10:::1;:24:::0;120598:111::o;128816:412::-;100913:32;71681:10;100913:18;:32::i;:::-;57407:21:::1;:19;:21::i;:::-;128960:15:::2;::::0;128915:21:::2;::::0;128893:19:::2;::::0;-1:-1:-1;;;;;128960:15:0::2;:29:::0;128957:220:::2;;129043:15;::::0;129035:55:::2;::::0;-1:-1:-1;;;;;129043:15:0;;::::2;::::0;129073:11;;129035:55:::2;::::0;;;129073:11;129043:15;129035:55:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129026:64;;;;;128957:220;;;92710:7:::0;92737:6;-1:-1:-1;;;;;92737:6:0;-1:-1:-1;;;;;129122:21:0::2;129152:11;129122:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;129113:56:0;;-1:-1:-1;;128957:220:0::2;129191:2;129183:39;;;::::0;-1:-1:-1;;;129183:39:0;;17832:2:1;129183:39:0::2;::::0;::::2;17814:21:1::0;17871:2;17851:18;;;17844:30;17910:26;17890:18;;;17883:54;17954:18;;129183:39:0::2;17630:348:1::0;129183:39:0::2;128886:342;;57451:20:::1;56845:1:::0;57971:7;:22;57788:213;57451:20:::1;128816:412::o:0;131956:171::-;132061:4;104989:42;106137:45;:49;;;;:77;;-1:-1:-1;106190:24:0;;;;106137:77;106133:567;;;106454:10;-1:-1:-1;;;;;106446:18:0;;;106442:85;;132078:41:::1;132101:4;132107:2;132111:7;132078:22;:41::i;106442:85::-:0;106546:69;;-1:-1:-1;;;106546:69:0;;106597:4;106546:69;;;14035:34:1;106604:10:0;14085:18:1;;;14078:43;104989:42:0;;106546;;13970:18:1;;106546:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;106541:148;;106643:30;;-1:-1:-1;;;106643:30:0;;106662:10;106643:30;;;3170:51:1;3143:18;;106643:30:0;3024:203:1;106541:148:0;132078:41:::1;132101:4;132107:2;132111:7;132078:22;:41::i;129920:201::-:0;130007:10;129987:16;129995:7;129987;:16::i;:::-;-1:-1:-1;;;;;129987:30:0;;129979:59;;;;-1:-1:-1;;;129979:59:0;;;;;;;:::i;:::-;130057:8;;;;;;;:17;130049:39;;;;-1:-1:-1;;;130049:39:0;;18530:2:1;130049:39:0;;;18512:21:1;18569:1;18549:18;;;18542:29;-1:-1:-1;;;18587:18:1;;;18580:39;18636:18;;130049:39:0;18328:332:1;130049:39:0;130099:14;130105:7;130099:5;:14::i;130148:98::-;100913:32;71681:10;100913:18;:32::i;:::-;130222:8:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;130222:16:0;;::::1;::::0;;;::::1;::::0;;130148:98::o;130289:481::-;130361:16;130386:23;130412:19;130422:8;130412:9;:19::i;:::-;130386:45;;130438:25;130480:15;-1:-1:-1;;;;;130466:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;130466:30:0;-1:-1:-1;130438:58:0;-1:-1:-1;130572:18:0;118536:1;130601:142;130656:1;130640:14;73623:13;;;73541:103;130640:14;:17;;;;:::i;:::-;130635:1;:23;130601:142;;;130689:18;;-1:-1:-1;;;130689:18:0;;;;;3698:25:1;;;130689:4:0;;:15;;3671:18:1;;130689::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;130677:30:0;:8;-1:-1:-1;;;;;130677:30:0;;130674:61;;130734:1;130709:8;130718:12;;;;:::i;:::-;;;130709:22;;;;;;;;:::i;:::-;;;;;;:26;;;;;130674:61;130660:3;;;;:::i;:::-;;;;130601:142;;;-1:-1:-1;130756:8:0;;130289:481;-1:-1:-1;;;;130289:481:0:o;123631:103::-;100913:32;71681:10;100913:18;:32::i;:::-;123708:13:::1;:20;123724:4:::0;123708:13;:20:::1;:::i;74908:222::-:0;75025:7;75051:13;75070:29;75091:7;75070:20;:29::i;:::-;-1:-1:-1;75050:49:0;74908:222;-1:-1:-1;;;74908:222:0:o;119730:179::-;100913:32;71681:10;100913:18;:32::i;:::-;119834:10:::1;119817:13;:11;:13::i;:::-;:27;;119809:65;;;::::0;-1:-1:-1;;;119809:65:0;;21599:2:1;119809:65:0::1;::::0;::::1;21581:21:1::0;21638:2;21618:18;;;21611:30;-1:-1:-1;;;21657:18:1;;;21650:55;21722:18;;119809:65:0::1;21397:349:1::0;119809:65:0::1;119881:9;:22:::0;119730:179::o;123142:156::-;100913:32;71681:10;100913:18;:32::i;:::-;100143:23;;;;:13;:23;;;;;;:37;118603:157::o;124996:225::-;125066:17;125074:8;125066:7;:17::i;:::-;125058:61;;;;-1:-1:-1;;;125058:61:0;;;;;;;:::i;:::-;125155:10;125134:17;125142:8;125134:7;:17::i;:::-;-1:-1:-1;;;;;125134:31:0;;125126:60;;;;-1:-1:-1;;;125126:60:0;;;;;;;:::i;:::-;125214:1;125193:18;;;:8;:18;;;;;:22;124996:225::o;74356:490::-;74478:4;-1:-1:-1;;;;;74509:19:0;;74501:77;;;;-1:-1:-1;;;74501:77:0;;22313:2:1;74501:77:0;;;22295:21:1;22352:2;22332:18;;;22325:30;22391:34;22371:18;;;22364:62;-1:-1:-1;;;22442:18:1;;;22435:43;22495:19;;74501:77:0;22111:409:1;74501:77:0;74591:10;118536:1;74612:204;73623:13;;74643:1;:18;74612:204;;;74686:10;74694:1;74686:7;:10::i;:::-;74683:122;;;74729:10;74737:1;74729:7;:10::i;:::-;-1:-1:-1;;;;;74720:19:0;:5;-1:-1:-1;;;;;74720:19:0;;74716:74;;74763:7;;;:::i;:::-;;;74716:74;74663:3;;;:::i;:::-;;;74612:204;;;-1:-1:-1;74833:5:0;74356:490;-1:-1:-1;;74356:490:0:o;93312:103::-;92550:13;:11;:13::i;:::-;93377:30:::1;93404:1;93377:18;:30::i;132784:181::-:0;100913:32;71681:10;100913:18;:32::i;:::-;132916:41:::1;132946:10;132916:29;:41::i;124013:187::-:0;124084:7;124108:17;124116:8;124108:7;:17::i;:::-;124100:61;;;;-1:-1:-1;;;124100:61:0;;;;;;;:::i;:::-;-1:-1:-1;124175:19:0;;;;:9;:19;;;;;;;124013:187::o;125244:92::-;92550:13;:11;:13::i;:::-;125314:9:::1;:16:::0;125244:92::o;122585:110::-;100913:32;71681:10;100913:18;:32::i;:::-;122666:15:::1;:23:::0;;-1:-1:-1;;122666:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;122585:110::o;127804:789::-;57407:21;:19;:21::i;:::-;127922:15:::1;::::0;::::1;;127914:51;;;::::0;-1:-1:-1;;;127914:51:0;;22727:2:1;127914:51:0::1;::::0;::::1;22709:21:1::0;22766:2;22746:18;;;22739:30;22805:25;22785:18;;;22778:53;22848:18;;127914:51:0::1;22525:347:1::0;127914:51:0::1;127980:41;127994:10;128005:7;;128014:6;127980:13;:41::i;:::-;127972:78;;;::::0;-1:-1:-1;;;127972:78:0;;23079:2:1;127972:78:0::1;::::0;::::1;23061:21:1::0;23118:2;23098:18;;;23091:30;-1:-1:-1;;;23137:18:1;;;23130:54;23201:18;;127972:78:0::1;22877:348:1::0;127972:78:0::1;128084:7;128065:15;;:26;;128057:81;;;::::0;-1:-1:-1;;;128057:81:0;;23432:2:1;128057:81:0::1;::::0;::::1;23414:21:1::0;23471:2;23451:18;;;23444:30;23510:34;23490:18;;;23483:62;-1:-1:-1;;;23561:18:1;;;23554:40;23611:19;;128057:81:0::1;23230:406:1::0;128057:81:0::1;128167:7;::::0;128153:22:::1;::::0;;;:13:::1;:22;::::0;;;;;:33;-1:-1:-1;128153:33:0::1;128145:86;;;::::0;-1:-1:-1;;;128145:86:0;;23843:2:1;128145:86:0::1;::::0;::::1;23825:21:1::0;23882:2;23862:18;;;23855:30;23921:34;23901:18;;;23894:62;-1:-1:-1;;;23972:18:1;;;23965:38;24020:19;;128145:86:0::1;23641:404:1::0;128145:86:0::1;128282:10;::::0;128272:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;128294:10:::1;128272:33:::0;;;;;;;;:43:::1;::::0;128308:7;;128272:43:::1;:::i;:::-;128260:7;::::0;128246:22:::1;::::0;;;:13:::1;:22;::::0;;;;;:69:::1;;128238:112;;;::::0;-1:-1:-1;;;128238:112:0;;24252:2:1;128238:112:0::1;::::0;::::1;24234:21:1::0;24291:2;24271:18;;;24264:30;24330:32;24310:18;;;24303:60;24380:18;;128238:112:0::1;24050:354:1::0;128238:112:0::1;128392:7;128378:11;;:21;;;;:::i;:::-;128365:9;:34;128357:71;;;;-1:-1:-1::0;;;128357:71:0::1;;;;;;;:::i;:::-;128473:8;;128454:13;:11;:13::i;:::-;128444:23;::::0;:7;:23:::1;:::i;:::-;128443:39;;128435:64;;;;-1:-1:-1::0;;;128435:64:0::1;;;;;;;:::i;:::-;128516:10;::::0;128506:21:::1;::::0;;;:9:::1;:21;::::0;;;;;;;128528:10:::1;128506:33:::0;;;;;;;:44;;128543:7;;128506:21;:44:::1;::::0;128543:7;;128506:44:::1;:::i;:::-;::::0;;;-1:-1:-1;128557:30:0::1;::::0;-1:-1:-1;128567:10:0::1;128579:7:::0;128557:9:::1;:30::i;:::-;57451:20:::0;56845:1;57971:7;:22;57788:213;113260:176;113373:7;109968:16;109976:7;109968;:16::i;:::-;-1:-1:-1;;;;;109954:30:0;:10;-1:-1:-1;;;;;109954:30:0;;109932:122;;;;-1:-1:-1;;;109932:122:0;;24611:2:1;109932:122:0;;;24593:21:1;24650:2;24630:18;;;24623:30;24689:34;24669:18;;;24662:62;-1:-1:-1;;;24740:18:1;;;24733:40;24790:19;;109932:122:0;24409:406:1;109932:122:0;-1:-1:-1;113398:22:0::1;::::0;;;:13:::1;:22;::::0;;;;;:30;113260:176::o;122278:100::-;100913:32;71681:10;100913:18;:32::i;:::-;122352:13:::1;:20:::0;122278:100::o;130833:243::-;130922:21;;-1:-1:-1;;;130922:21:0;;;;;3698:25:1;;;130902:7:0;;130922:4;;:12;;3671:18:1;;130922:21:0;;;;;;;;;;;;;;;;;;-1:-1:-1;130922:21:0;;;;;;;;-1:-1:-1;;130922:21:0;;;;;;;;;;;;:::i;:::-;;;130918:153;;-1:-1:-1;131038:1:0;;130833:243;-1:-1:-1;130833:243:0:o;130918:153::-;130833:243;;;:::o;87049:601::-;87118:16;87172:19;87206:22;87231:16;87241:5;87231:9;:16::i;:::-;87206:41;;87262:25;87304:14;-1:-1:-1;;;;;87290:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87290:29:0;-1:-1:-1;87262:57:0;-1:-1:-1;118536:1:0;87334:265;87383:14;87368:11;:29;87334:265;;87427:10;87435:1;87427:7;:10::i;:::-;87423:161;;;87480:5;-1:-1:-1;;;;;87466:19:0;:10;87474:1;87466:7;:10::i;:::-;-1:-1:-1;;;;;87466:19:0;;87462:103;;87540:1;87514:8;87523:13;;;;;;87514:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;87462:103;87399:3;;87334:265;;;-1:-1:-1;87620:8:0;87049:601;-1:-1:-1;;;;87049:601:0:o;124596:369::-;124664:17;124672:8;124664:7;:17::i;:::-;124656:61;;;;-1:-1:-1;;;124656:61:0;;;;;;;:::i;:::-;124753:10;124732:17;124740:8;124732:7;:17::i;:::-;-1:-1:-1;;;;;124732:31:0;;124724:60;;;;-1:-1:-1;;;124724:60:0;;;;;;;:::i;:::-;124794:21;124806:8;121360;;-1:-1:-1;121348:20:0;;121259:115;124794:21;124791:169;;;124830:10;;;;;;;124827:126;;;124856:15;124874:23;124888:8;124874:13;:23::i;:::-;124912:18;;;;:8;:18;;;;;:29;-1:-1:-1;124596:369:0;:::o;120745:103::-;100913:32;71681:10;100913:18;:32::i;:::-;120820:11:::1;:22:::0;120745:103::o;119913:174::-;100913:32;71681:10;100913:18;:32::i;:::-;120015:9:::1;119998:13;:11;:13::i;:::-;:26;;119990:64;;;::::0;-1:-1:-1;;;119990:64:0;;21599:2:1;119990:64:0::1;::::0;::::1;21581:21:1::0;21638:2;21618:18;;;21611:30;-1:-1:-1;;;21657:18:1;;;21650:55;21722:18;;119990:64:0::1;21397:349:1::0;119990:64:0::1;120061:8;:20:::0;119913:174::o;75680:104::-;75736:13;75769:7;75762:14;;;;;:::i;128625:127::-;57407:21;:19;:21::i;:::-;128716:1:::1;128704:9;:13;128696:50;;;;-1:-1:-1::0;;;128696:50:0::1;;;;;;;:::i;:::-;57451:20:::0;56845:1;57971:7;:22;57788:213;131436:176;131540:8;104989:42;106911:45;:49;;;;:77;;-1:-1:-1;106964:24:0;;;;106911:77;106907:253;;;107010:67;;-1:-1:-1;;;107010:67:0;;107061:4;107010:67;;;14035:34:1;-1:-1:-1;;;;;14105:15:1;;14085:18;;;14078:43;104989:42:0;;107010;;13970:18:1;;107010:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;107005:144;;107105:28;;-1:-1:-1;;;107105:28:0;;-1:-1:-1;;;;;3188:32:1;;107105:28:0;;;3170:51:1;3143:18;;107105:28:0;3024:203:1;107005:144:0;131561:43:::1;131585:8;131595;131561:23;:43::i;122718:111::-:0;100913:32;71681:10;100913:18;:32::i;:::-;122796:19:::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;122796:27:0;;::::1;::::0;;;::::1;::::0;;122718:111::o;133607:117::-;92550:13;:11;:13::i;:::-;133685:31:::1;133705:10;133685:19;:31::i;131306:122::-:0;100913:32;71681:10;100913:18;:32::i;:::-;131388:24:::1;:32:::0;;-1:-1:-1;;131388:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;131306:122::o;132135:228::-;132286:4;104989:42;106137:45;:49;;;;:77;;-1:-1:-1;106190:24:0;;;;106137:77;106133:567;;;106454:10;-1:-1:-1;;;;;106446:18:0;;;106442:85;;132308:47:::1;132331:4;132337:2;132341:7;132350:4;132308:22;:47::i;:::-;106505:7:::0;;106442:85;106546:69;;-1:-1:-1;;;106546:69:0;;106597:4;106546:69;;;14035:34:1;106604:10:0;14085:18:1;;;14078:43;104989:42:0;;106546;;13970:18:1;;106546:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;106541:148;;106643:30;;-1:-1:-1;;;106643:30:0;;106662:10;106643:30;;;3170:51:1;3143:18;;106643:30:0;3024:203:1;106541:148:0;132308:47:::1;132331:4;132337:2;132341:7;132350:4;132308:22;:47::i;:::-;132135:228:::0;;;;;:::o;122131:127::-;100913:32;71681:10;100913:18;:32::i;:::-;122222:23:::1;::::0;;;:13:::1;:23;::::0;;;;;:30;122131:127::o;123337:101::-;100913:32;71681:10;100913:18;:32::i;:::-;123416:9:::1;:16;123428:4:::0;123416:9;:16:::1;:::i;120866:103::-:0;100913:32;71681:10;100913:18;:32::i;:::-;120941:11:::1;:22:::0;120866:103::o;121122:107::-;100913:32;71681:10;100913:18;:32::i;:::-;121200:8:::1;:23:::0;121122:107::o;125942:786::-;126016:13;126046:17;126054:8;126046:7;:17::i;:::-;126038:61;;;;-1:-1:-1;;;126038:61:0;;;;;;;:::i;:::-;126109:21;126121:8;121360;;-1:-1:-1;121348:20:0;;121259:115;126109:21;126106:594;;;126166:1;126145:18;;;:8;:18;;;;;;:22;126142:201;;;126214:17;:15;:17::i;:::-;126258:18;;;;:8;:18;;;;;;126233:45;;:16;:45::i;:::-;126285:28;126303:8;126285:16;:28::i;:::-;126315:14;126197:133;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;126183:148;;125942:786;;;:::o;126142:201::-;126356:10;;;;;;;126353:235;;;126382:15;126400:23;126414:8;126400:13;:23::i;:::-;126382:41;;126469:17;:15;:17::i;:::-;126488:35;126513:8;126488:16;:35::i;:::-;126530:28;126548:8;126530:16;:28::i;:::-;126560:14;126452:123;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;126438:138;;;125942:786;;;:::o;126353:235::-;126629:17;:15;:17::i;:::-;126648:26;126665:8;126648:16;:26::i;:::-;126676:14;126612:79;;;;;;;;;;:::i;126106:594::-;126713:9;126706:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125942:786;;;:::o;100323:434::-;100470:26;;-1:-1:-1;;27209:2:1;27205:15;;;27201:53;100470:26:0;;;27189:66:1;100427:4:0;;;;27271:12:1;;100470:26:0;;;;;;;;;;;;100460:37;;;;;;100444:53;;100513:9;100508:192;100532:6;:13;100528:1;:17;100508:192;;;100583:6;100590:1;100583:9;;;;;;;;:::i;:::-;;;;;;;100575:5;:17;:113;;100670:6;100677:1;100670:9;;;;;;;;:::i;:::-;;;;;;;100681:5;100653:34;;;;;;;;27451:19:1;;;27495:2;27486:12;;27479:28;27532:2;27523:12;;27294:247;100653:34:0;;;;;;;;;;;;;100643:45;;;;;;100575:113;;;100622:5;100629:6;100636:1;100629:9;;;;;;;;:::i;:::-;;;;;;;100605:34;;;;;;;;27451:19:1;;;27495:2;27486:12;;27479:28;27532:2;27523:12;;27294:247;100605:34:0;;;;;;;;;;;;;100595:45;;;;;;100575:113;100567:121;-1:-1:-1;100547:3:0;;;;:::i;:::-;;;;100508:192;;;-1:-1:-1;100726:23:0;;;;:13;:23;;;;;;100717:32;;-1:-1:-1;100323:434:0;;;;;:::o;120987:103::-;100913:32;71681:10;100913:18;:32::i;:::-;121062:11:::1;:22:::0;120987:103::o;123740:131::-;100913:32;71681:10;100913:18;:32::i;:::-;123831:14:::1;:34;123848:17:::0;123831:14;:34:::1;:::i;127013:767::-:0;57407:21;:19;:21::i;:::-;127165:25:::1;::::0;;;:15:::1;:25;::::0;;;;;::::1;;127157:61;;;::::0;-1:-1:-1;;;127157:61:0;;27748:2:1;127157:61:0::1;::::0;::::1;27730:21:1::0;27787:2;27767:18;;;27760:30;27826:25;27806:18;;;27799:53;27869:18;;127157:61:0::1;27546:347:1::0;127157:61:0::1;127233:51;127247:10;127258:8;127268:7;127277:6;127233:13;:51::i;:::-;127225:88;;;::::0;-1:-1:-1;;;127225:88:0;;23079:2:1;127225:88:0::1;::::0;::::1;23061:21:1::0;23118:2;23098:18;;;23091:30;-1:-1:-1;;;23137:18:1;;;23130:54;23201:18;;127225:88:0::1;22877:348:1::0;127225:88:0::1;127338:1;127328:7;:11;127320:39;;;::::0;-1:-1:-1;;;127320:39:0;;28100:2:1;127320:39:0::1;::::0;::::1;28082:21:1::0;28139:2;28119:18;;;28112:30;-1:-1:-1;;;28158:18:1;;;28151:45;28213:18;;127320:39:0::1;27898:339:1::0;127320:39:0::1;127385:7;127374;:18;;127366:71;;;::::0;-1:-1:-1;;;127366:71:0;;28444:2:1;127366:71:0::1;::::0;::::1;28426:21:1::0;28483:2;28463:18;;;28456:30;28522:34;28502:18;;;28495:62;-1:-1:-1;;;28573:18:1;;;28566:38;28621:19;;127366:71:0::1;28242:404:1::0;127366:71:0::1;127463:19;::::0;;;:9:::1;:19;::::0;;;;;;;127483:10:::1;127463:31:::0;;;;;;;;:41:::1;::::0;127497:7;;127463:41:::1;:::i;:::-;127452:7;:52;;127444:95;;;::::0;-1:-1:-1;;;127444:95:0;;24252:2:1;127444:95:0::1;::::0;::::1;24234:21:1::0;24291:2;24271:18;;;24264:30;24330:32;24310:18;;;24303:60;24380:18;;127444:95:0::1;24050:354:1::0;127444:95:0::1;127581:7;127567:11;;:21;;;;:::i;:::-;127554:9;:34;127546:71;;;;-1:-1:-1::0;;;127546:71:0::1;;;;;;;:::i;:::-;127662:8;;127643:13;:11;:13::i;:::-;127633:23;::::0;:7;:23:::1;:::i;:::-;127632:39;;127624:64;;;;-1:-1:-1::0;;;127624:64:0::1;;;;;;;:::i;:::-;127695:19;::::0;;;:9:::1;:19;::::0;;;;;;;127715:10:::1;127695:31:::0;;;;;;;:42;;127730:7;;127695:19;:42:::1;::::0;127730:7;;127695:42:::1;:::i;:::-;::::0;;;-1:-1:-1;127744:30:0::1;::::0;-1:-1:-1;127754:10:0::1;127766:7:::0;127744:9:::1;:30::i;:::-;57451:20:::0;56845:1;57971:7;:22;57788:213;122425:137;100913:32;71681:10;100913:18;:32::i;:::-;122523:25:::1;::::0;;;:15:::1;:25;::::0;;;;;:33;;-1:-1:-1;;122523:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;122425:137::o;118989:113::-;119043:13;119076:20;:18;:20::i;113771:309::-;113913:4;113939:27;113950:5;113957:8;113939:10;:27::i;:::-;:36;;113970:5;113939:36;113935:81;;-1:-1:-1;113999:5:0;113992:12;;113935:81;-1:-1:-1;;;;;78021:25:0;;;77992:4;78021:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;114033:39;114026:46;113771:309;-1:-1:-1;;;113771:309:0:o;99576:461::-;99741:35;;-1:-1:-1;;28828:2:1;28824:15;;;28820:53;99741:35:0;;;28808:66:1;28890:12;;;28883:28;;;99698:4:0;;;;28927:12:1;;99741:35:0;;;;;;;;;;;;99731:46;;;;;;99715:62;;99793:9;99788:192;99812:6;:13;99808:1;:17;99788:192;;;99863:6;99870:1;99863:9;;;;;;;;:::i;:::-;;;;;;;99855:5;:17;:113;;99950:6;99957:1;99950:9;;;;;;;;:::i;:::-;;;;;;;99961:5;99933:34;;;;;;;;27451:19:1;;;27495:2;27486:12;;27479:28;27532:2;27523:12;;27294:247;99933:34:0;;;;;;;;;;;;;99923:45;;;;;;99855:113;;;99902:5;99909:6;99916:1;99909:9;;;;;;;;:::i;:::-;;;;;;;99885:34;;;;;;;;27451:19:1;;;27495:2;27486:12;;27479:28;27532:2;27523:12;;27294:247;99885:34:0;;;;;;;;;;;;;99875:45;;;;;;99855:113;99847:121;-1:-1:-1;99827:3:0;;;;:::i;:::-;;;;99788:192;;;-1:-1:-1;100006:23:0;;;;:13;:23;;;;;;99997:32;;-1:-1:-1;99576:461:0;;;;;;:::o;93570:201::-;92550:13;:11;:13::i;:::-;-1:-1:-1;;;;;93659:22:0;::::1;93651:73;;;::::0;-1:-1:-1;;;93651:73:0;;29152:2:1;93651:73:0::1;::::0;::::1;29134:21:1::0;29191:2;29171:18;;;29164:30;29230:34;29210:18;;;29203:62;-1:-1:-1;;;29281:18:1;;;29274:36;29327:19;;93651:73:0::1;28950:402:1::0;93651:73:0::1;93735:28;93754:8;93735:18;:28::i;120225:99::-:0;100913:32;71681:10;100913:18;:32::i;:::-;120300:7:::1;:18:::0;120225:99::o;126791:202::-;100913:32;71681:10;100913:18;:32::i;:::-;126925:9:::1;;126906:13;:11;:13::i;:::-;126896:23;::::0;:7;:23:::1;:::i;:::-;126895:40;;126887:65;;;;-1:-1:-1::0;;;126887:65:0::1;;;;;;;:::i;:::-;126959:28;126969:8;126979:7;126959:9;:28::i;125359:90::-:0;92550:13;:11;:13::i;:::-;125428:8:::1;:15:::0;125359:90::o;132601:175::-;100913:32;71681:10;100913:18;:32::i;:::-;132730:38:::1;132757:10;132730:26;:38::i;40201:447::-:0;40276:13;40302:19;40334:10;40338:6;40334:1;:10;:::i;:::-;:14;;40347:1;40334:14;:::i;:::-;-1:-1:-1;;;;;40324:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40324:25:0;;40302:47;;-1:-1:-1;;;40360:6:0;40367:1;40360:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;40360:15:0;;;;;;;;;-1:-1:-1;;;40386:6:0;40393:1;40386:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;40386:15:0;;;;;;;;-1:-1:-1;40417:9:0;40429:10;40433:6;40429:1;:10;:::i;:::-;:14;;40442:1;40429:14;:::i;:::-;40417:26;;40412:131;40449:1;40445;:5;40412:131;;;-1:-1:-1;;;40493:5:0;40501:3;40493:11;40484:21;;;;;;;:::i;:::-;;;;40472:6;40479:1;40472:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;40472:33:0;;;;;;;;-1:-1:-1;40530:1:0;40520:11;;;;;40452:3;;;:::i;:::-;;;40412:131;;;-1:-1:-1;40561:10:0;;40553:55;;;;-1:-1:-1;;;40553:55:0;;29700:2:1;40553:55:0;;;29682:21:1;;;29719:18;;;29712:30;29778:34;29758:18;;;29751:62;29830:18;;40553:55:0;29498:356:1;8755:152:0;8825:4;8849:50;8854:3;-1:-1:-1;;;;;8874:23:0;;8849:4;:50::i;111100:183::-;111204:16;111245:30;:21;:28;:30::i;68155:215::-;68257:4;-1:-1:-1;;;;;;68281:41:0;;-1:-1:-1;;;68281:41:0;;:81;;;68326:36;68350:11;68326:23;:36::i;101670:370::-;-1:-1:-1;;;;;101764:21:0;;;;;;:10;:21;;;;;;;;101897:46;71681:10;101925:12;-1:-1:-1;;;;;101897:46:0;101940:2;101897:19;:46::i;:::-;101825:181;;;;;;;;:::i;:::-;;;;;;;;;;;;;101742:290;;;;;-1:-1:-1;;;101742:290:0;;;;;;;;:::i;69517:332::-;69233:5;-1:-1:-1;;;;;69620:33:0;;;;69612:88;;;;-1:-1:-1;;;69612:88:0;;30677:2:1;69612:88:0;;;30659:21:1;30716:2;30696:18;;;30689:30;30755:34;30735:18;;;30728:62;-1:-1:-1;;;30806:18:1;;;30799:40;30856:19;;69612:88:0;30475:406:1;69612:88:0;-1:-1:-1;;;;;69719:22:0;;69711:60;;;;-1:-1:-1;;;69711:60:0;;31088:2:1;69711:60:0;;;31070:21:1;31127:2;31107:18;;;31100:30;31166:27;31146:18;;;31139:55;31211:18;;69711:60:0;30886:349:1;69711:60:0;69806:35;;;;;;;;;-1:-1:-1;;;;;69806:35:0;;;;;;-1:-1:-1;;;;;69806:35:0;;;;;;;;;;-1:-1:-1;;;69784:57:0;;;;:19;:57;69517:332::o;90358:207::-;90451:12;48393:10;;;90432:4;48480:20;;;;;;;;;;;;-1:-1:-1;;;48457:4:0;48449:12;;48429:33;48480:27;:32;90448:69;;-1:-1:-1;90500:5:0;;90358:207;-1:-1:-1;90358:207:0:o;90448:69::-;90535:22;90549:7;90535:13;:22::i;114670:185::-;114783:27;114798:2;114802:7;114783:14;:27::i;:::-;114821:26;114835:2;114839:7;114821:13;:26::i;90834:346::-;73623:13;;90876:14;;;;;;90976:25;;90943:1;90977:19;91000:1;90976:25;:::i;:::-;90955:46;-1:-1:-1;91028:11:0;91014:159;91045:10;91041:1;:14;91014:159;;;91077:14;55027:20;;;91094:12;55027:20;;;;;;91144:17;55027:20;91144:9;:17::i;:::-;91134:27;;;;:::i;:::-;;;91062:111;91057:3;;;;;:::i;:::-;;;;91014:159;;;;90891:289;;90834:346;:::o;73742:121::-;73797:7;118536:1;73824:13;;:31;;;;:::i;78131:379::-;78340:41;71681:10;78373:7;78340:18;:41::i;:::-;78318:143;;;;-1:-1:-1;;;78318:143:0;;;;;;;:::i;:::-;78474:28;78484:4;78490:2;78494:7;78474:9;:28::i;92829:132::-;92710:7;92737:6;-1:-1:-1;;;;;92737:6:0;71681:10;92893:23;92885:68;;;;-1:-1:-1;;;92885:68:0;;31863:2:1;92885:68:0;;;31845:21:1;;;31882:18;;;31875:30;31941:34;31921:18;;;31914:62;31993:18;;92885:68:0;31661:356:1;101090:421:0;-1:-1:-1;;;;;101181:22:0;;;;;;:10;:22;;;;;;;;101180:23;101315:46;71681:10;101343:12;71601:98;101315:46;101243:194;;;;;;;;:::i;:::-;;;;;;;;;;;;;101158:305;;;;;-1:-1:-1;;;101158:305:0;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;101474:22:0;;;;;:10;:22;;;;;:29;;-1:-1:-1;;101474:29:0;101499:4;101474:29;;;101090:421::o;57487:293::-;56889:1;57621:7;;:19;57613:63;;;;-1:-1:-1;;;57613:63:0;;32853:2:1;57613:63:0;;;32835:21:1;32892:2;32872:18;;;32865:30;32931:33;32911:18;;;32904:61;32982:18;;57613:63:0;32651:355:1;57613:63:0;56889:1;57754:7;:18;57487:293::o;81828:112::-;81905:27;81915:2;81919:8;81905:27;;;;;;;;;;;;:9;:27::i;78581:185::-;78719:39;78736:4;78742:2;78746:7;78719:39;;;;;;;;;;;;:16;:39::i;89724:321::-;89784:12;89799:16;89807:7;89799;:16::i;:::-;89784:31;;89826:51;89848:4;89862:1;89866:7;89875:1;89826:21;:51::i;:::-;89888:25;:12;89905:7;89888:16;:25::i;:::-;89939:35;;89966:7;;89962:1;;-1:-1:-1;;;;;89939:35:0;;;;;89962:1;;89939:35;89987:50;90008:4;90022:1;90026:7;90035:1;89987:20;:50::i;75138:306::-;75216:13;75231:24;75275:16;75283:7;75275;:16::i;:::-;75267:73;;;;-1:-1:-1;;;75267:73:0;;33213:2:1;75267:73:0;;;33195:21:1;33252:2;33232:18;;;33225:30;33291:34;33271:18;;;33264:62;-1:-1:-1;;;33342:18:1;;;33335:42;33394:19;;75267:73:0;33011:408:1;75267:73:0;75370:22;75384:7;75370:13;:22::i;:::-;75411:25;;;;:7;:25;;;;;;-1:-1:-1;;;;;75411:25:0;;75351:41;;-1:-1:-1;75138:306:0;-1:-1:-1;;75138:306:0:o;93931:191::-;94005:16;94024:6;;-1:-1:-1;;;;;94041:17:0;;;-1:-1:-1;;;;;;94041:17:0;;;;;;94074:40;;94024:6;;;;;;;94074:40;;94005:16;94074:40;93994:128;93931:191;:::o;110879:213::-;110989:40;:21;111018:10;110989:28;:40::i;:::-;-1:-1:-1;111045:39:0;;-1:-1:-1;;;;;111045:39:0;;;111061:10;;111045:39;;;;;110879:213;:::o;124206:361::-;124279:6;124302:17;124310:8;124302:7;:17::i;:::-;124294:61;;;;-1:-1:-1;;;124294:61:0;;;;;;;:::i;:::-;124443:8;;124362:15;124412:19;;;:9;:19;;;;;;124362:15;;124443:8;124381:51;;124388:15;124381:51;:::i;:::-;124380:72;;;;:::i;:::-;124362:90;;124482:9;;124463:8;:29;124459:81;;-1:-1:-1;124522:9:0;;124553:8;124206:361;-1:-1:-1;;124206:361:0:o;114088:325::-;114237:20;114248:8;114237:10;:20::i;:::-;:41;;;-1:-1:-1;114261:17:0;;114237:41;114215:136;;;;-1:-1:-1;;;114215:136:0;;34029:2:1;114215:136:0;;;34011:21:1;34068:2;34048:18;;;34041:30;34107:34;34087:18;;;34080:62;-1:-1:-1;;;34158:18:1;;;34151:43;34211:19;;114215:136:0;33827:409:1;114215:136:0;114362:43;114386:8;114396;114362:23;:43::i;101517:147::-;101586:30;101605:10;101586:18;:30::i;:::-;-1:-1:-1;;;;;101634:22:0;;;;;:10;:22;;;;;101627:29;;-1:-1:-1;;101627:29:0;;;101517:147::o;78837:368::-;79026:41;71681:10;79059:7;79026:18;:41::i;:::-;79004:143;;;;-1:-1:-1;;;79004:143:0;;;;;;;:::i;:::-;79158:39;79172:4;79178:2;79182:7;79191:5;79158:13;:39::i;123910:97::-;123960:13;123988;123981:20;;;;;:::i;39069:716::-;39125:13;39176:14;39193:17;39204:5;39193:10;:17::i;:::-;39213:1;39193:21;39176:38;;39229:20;39263:6;-1:-1:-1;;;;;39252:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39252:18:0;-1:-1:-1;39229:41:0;-1:-1:-1;39394:28:0;;;39410:2;39394:28;39451:288;-1:-1:-1;;39483:5:0;-1:-1:-1;;;39620:2:0;39609:14;;39604:30;39483:5;39591:44;39681:2;39672:11;;;-1:-1:-1;39702:21:0;39451:288;39702:21;-1:-1:-1;39760:6:0;39069:716;-1:-1:-1;;;39069:716:0:o;119128:567::-;119181:13;119204:16;;119249:32;119204:16;69233:5;119249:11;:32::i;:::-;119203:78;;;;119390:283;119502:33;119519:15;119502:16;:33::i;:::-;119577:51;119613:8;-1:-1:-1;;;;;119597:26:0;119625:2;119577:19;:51::i;:::-;119436:213;;;;;;;;;:::i;:::-;;;;;;;;;;;;;119390:13;:283::i;:::-;119321:361;;;;;;;;:::i;:::-;;;;;;;;;;;;;119299:390;;;;119128:567;:::o;111934:236::-;112057:4;112079:13;112095:20;112108:6;112095:12;:20::i;:::-;112079:36;;112133:29;112144:10;112156:5;112133:10;:29::i;:::-;112126:36;111934:236;-1:-1:-1;;;;111934:236:0:o;110666:205::-;110773:37;:21;110799:10;110773:25;:37::i;:::-;-1:-1:-1;110826:37:0;;-1:-1:-1;;;;;110826:37:0;;;110840:10;;110826:37;;;;;110666:205;:::o;2486:414::-;2549:4;4679:19;;;:12;;;:19;;;;;;2566:327;;-1:-1:-1;2609:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;2792:18;;2770:19;;;:12;;;:19;;;;;;:40;;;;2825:11;;2566:327;-1:-1:-1;2876:5:0;2869:12;;10759:310;10822:16;10851:22;10876:19;10884:3;10876:7;:19::i;115314:288::-;115444:4;-1:-1:-1;;;;;;115486:55:0;;-1:-1:-1;;;115486:55:0;;:108;;;115558:36;115582:11;115558:23;:36::i;80699:151::-;80764:4;80798:14;73623:13;;;73541:103;80798:14;80788:7;:24;:54;;;;-1:-1:-1;;118536:1:0;80816:26;;;80699:151::o;114421:241::-;-1:-1:-1;;;;;114529:16:0;;;114525:130;;114570:23;114581:7;114590:2;114570:10;:23::i;:::-;114562:81;;;;-1:-1:-1;;;114562:81:0;;35964:2:1;114562:81:0;;;35946:21:1;36003:2;35983:18;;;35976:30;36042:34;36022:18;;;36015:62;-1:-1:-1;;;36093:18:1;;;36086:43;36146:19;;114562:81:0;35762:409:1;76590:410:0;76671:13;76687:16;76695:7;76687;:16::i;:::-;76671:32;;76728:5;-1:-1:-1;;;;;76722:11:0;:2;-1:-1:-1;;;;;76722:11:0;;76714:60;;;;-1:-1:-1;;;76714:60:0;;36378:2:1;76714:60:0;;;36360:21:1;36417:2;36397:18;;;36390:30;36456:34;36436:18;;;36429:62;-1:-1:-1;;;36507:18:1;;;36500:34;36551:19;;76714:60:0;36176:400:1;76714:60:0;71681:10;-1:-1:-1;;;;;76809:21:0;;;;:62;;-1:-1:-1;76834:37:0;76851:5;71681:10;113771:309;:::i;76834:37::-;76787:171;;;;-1:-1:-1;;;76787:171:0;;36783:2:1;76787:171:0;;;36765:21:1;36822:2;36802:18;;;36795:30;36861:34;36841:18;;;36834:62;36932:29;36912:18;;;36905:57;36979:19;;76787:171:0;36581:423:1;76787:171:0;76971:21;76980:2;76984:7;76971:8;:21::i;91247:177::-;91299:13;91349:56;91363:4;;91349:56;;-1:-1:-1;;91400:5:0;;91395:10;;;;91404:1;91369:7;91349:56;;81017:448;81146:4;81190:16;81198:7;81190;:16::i;:::-;81168:113;;;;-1:-1:-1;;;81168:113:0;;37211:2:1;81168:113:0;;;37193:21:1;37250:2;37230:18;;;37223:30;37289:34;37269:18;;;37262:62;-1:-1:-1;;;37340:18:1;;;37333:45;37395:19;;81168:113:0;37009:411:1;81168:113:0;81292:13;81308:16;81316:7;81308;:16::i;:::-;81292:32;;81354:5;-1:-1:-1;;;;;81343:16:0;:7;-1:-1:-1;;;;;81343:16:0;;:64;;;;81400:7;-1:-1:-1;;;;;81376:31:0;:20;81388:7;81376:11;:20::i;:::-;-1:-1:-1;;;;;81376:31:0;;81343:64;:113;;;;81424:32;81441:5;81448:7;81424:16;:32::i;83440:1057::-;83565:13;83580:24;83608:29;83629:7;83608:20;:29::i;:::-;83564:73;;;;83681:4;-1:-1:-1;;;;;83672:13:0;:5;-1:-1:-1;;;;;83672:13:0;;83650:107;;;;-1:-1:-1;;;83650:107:0;;37627:2:1;83650:107:0;;;37609:21:1;37666:2;37646:18;;;37639:30;37705:34;37685:18;;;37678:62;-1:-1:-1;;;37756:18:1;;;37749:42;37808:19;;83650:107:0;37425:408:1;83650:107:0;-1:-1:-1;;;;;83776:16:0;;83768:68;;;;-1:-1:-1;;;83768:68:0;;38040:2:1;83768:68:0;;;38022:21:1;38079:2;38059:18;;;38052:30;38118:34;38098:18;;;38091:62;-1:-1:-1;;;38169:18:1;;;38162:37;38216:19;;83768:68:0;37838:403:1;83768:68:0;83849:43;83871:4;83877:2;83881:7;83890:1;83849:21;:43::i;:::-;83957:29;83974:1;83978:7;83957:8;:29::i;:::-;84002:25;84030:11;:7;84040:1;84030:11;:::i;:::-;48402:1;48393:10;;;48359:4;48480:20;;;84058:10;48480:20;;;;;;48393:10;;-1:-1:-1;;;;48457:4:0;48449:12;;48429:33;48480:27;:32;;;84057:87;;-1:-1:-1;73623:13:0;;84110:17;:34;84057:87;84054:210;;;84171:26;;;;:7;:26;;;;;:33;;-1:-1:-1;;;;;;84171:33:0;-1:-1:-1;;;;;84171:33:0;;;;;84219;-1:-1:-1;84171:26:0;84219:14;:33::i;:::-;84276:16;;;;:7;:16;;;;;:21;;-1:-1:-1;;;;;;84276:21:0;-1:-1:-1;;;;;84276:21:0;;;;;84311:27;;;84308:82;;84355:23;:10;84370:7;84355:14;:23::i;:::-;84426:7;84422:2;-1:-1:-1;;;;;84407:27:0;84416:4;-1:-1:-1;;;;;84407:27:0;;;;;;;;;;;84447:42;84468:4;84474:2;84478:7;84487:1;84447:20;:42::i;:::-;83553:944;;;83440:1057;;;:::o;81954:387::-;82085:19;82107:14;73623:13;;;73541:103;82107:14;82085:36;;82132:19;82138:2;82142:8;82132:5;:19::i;:::-;82184:68;82215:1;82219:2;82223:11;82236:8;82246:5;82184:22;:68::i;:::-;82162:171;;;;-1:-1:-1;;;82162:171:0;;;;;;;:::i;125455:481::-;125610:23;;;;:9;:23;;;;;125636:15;125610:41;;125620:12;;125722:23;125737:8;125620:12;125722:23;:::i;:::-;125708:37;;125756:97;125798:15;125770:9;:25;125780:14;;;;:::i;:::-;;;125770:25;;;;;;;;;;;:43;;;;125848:3;125833:12;:18;125756:97;;125869:61;131785:163;48906:204;49003:1;48994:10;;;48977:14;49074:20;;;;;;;;;;;;:28;;-1:-1:-1;;;49058:4:0;49050:12;;;49030:33;;;;49074:28;;;;;48906:204::o;114863:443::-;-1:-1:-1;;;;;115159:18:0;;;115155:144;;113222:22;;;;:13;:22;;;;;113215:29;115253:34;113140:112;86483:159;86546:24;86602:31;:10;86625:7;86602:22;:31::i;9083:158::-;9156:4;9180:53;9188:3;-1:-1:-1;;;;;9208:23:0;;9180:7;:53::i;111490:178::-;111597:4;111626:34;111637:10;111649;111626;:34::i;77449:330::-;71681:10;-1:-1:-1;;;;;77584:24:0;;;77576:65;;;;-1:-1:-1;;;77576:65:0;;38870:2:1;77576:65:0;;;38852:21:1;38909:2;38889:18;;;38882:30;38948;38928:18;;;38921:58;38996:18;;77576:65:0;38668:352:1;77576:65:0;71681:10;77654:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;77654:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;77654:53:0;;;;;;;;;;77723:48;;1203:41:1;;;77654:42:0;;71681:10;77723:48;;1176:18:1;77723:48:0;;;;;;;77449:330;;:::o;80087:357::-;80244:28;80254:4;80260:2;80264:7;80244:9;:28::i;:::-;80305:50;80328:4;80334:2;80338:7;80347:1;80349:5;80305:22;:50::i;35935:922::-;35988:7;;-1:-1:-1;;;36066:15:0;;36062:102;;-1:-1:-1;;;36102:15:0;;;-1:-1:-1;36146:2:0;36136:12;36062:102;36191:6;36182:5;:15;36178:102;;36227:6;36218:15;;;-1:-1:-1;36262:2:0;36252:12;36178:102;36307:6;36298:5;:15;36294:102;;36343:6;36334:15;;;-1:-1:-1;36378:2:0;36368:12;36294:102;36423:5;36414;:14;36410:99;;36458:5;36449:14;;;-1:-1:-1;36492:1:0;36482:11;36410:99;36536:5;36527;:14;36523:99;;36571:5;36562:14;;;-1:-1:-1;36605:1:0;36595:11;36523:99;36649:5;36640;:14;36636:99;;36684:5;36675:14;;;-1:-1:-1;36718:1:0;36708:11;36636:99;36762:5;36753;:14;36749:66;;36798:1;36788:11;36843:6;35935:922;-1:-1:-1;;35935:922:0:o;94913:1912::-;94971:13;95001:4;:11;95016:1;95001:16;94997:31;;-1:-1:-1;;95019:9:0;;;;;;;;;-1:-1:-1;95019:9:0;;;94913:1912::o;94997:31::-;95080:19;95102:12;;;;;;;;;;;;;;;;;95080:34;;95166:18;95212:1;95193:4;:11;95207:1;95193:15;;;;:::i;:::-;95192:21;;;;:::i;:::-;95187:27;;:1;:27;:::i;:::-;95166:48;-1:-1:-1;95297:20:0;95331:15;95166:48;95344:2;95331:15;:::i;:::-;-1:-1:-1;;;;;95320:27:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;95320:27:0;;95297:50;;95444:10;95436:6;95429:26;95539:1;95532:5;95528:13;95598:4;95649;95643:11;95634:7;95630:25;95745:2;95737:6;95733:15;95818:754;95837:6;95828:7;95825:19;95818:754;;;95937:1;95928:7;95924:15;95913:26;;95976:7;95970:14;96102:4;96094:5;96090:2;96086:14;96082:25;96072:8;96068:40;96062:47;96051:9;96043:67;96156:1;96145:9;96141:17;96128:30;;96235:4;96227:5;96223:2;96219:14;96215:25;96205:8;96201:40;96195:47;96184:9;96176:67;96289:1;96278:9;96274:17;96261:30;;96368:4;96360:5;96357:1;96352:14;96348:25;96338:8;96334:40;96328:47;96317:9;96309:67;96422:1;96411:9;96407:17;96394:30;;96501:4;96493:5;96481:25;96471:8;96467:40;96461:47;96450:9;96442:67;-1:-1:-1;96555:1:0;96540:17;95818:754;;;96645:1;96638:4;96632:11;96628:19;96666:1;96661:54;;;;96734:1;96729:52;;;;96621:160;;96661:54;-1:-1:-1;;;;;96677:17:0;;96670:43;96661:54;;96729:52;-1:-1:-1;;;;;96745:17:0;;96738:41;96621:160;-1:-1:-1;96811:6:0;;94913:1912;-1:-1:-1;;;;;;;;94913:1912:0:o;112769:253::-;-1:-1:-1;;;;;112903:22:0;;112874:7;112903:22;;;:14;:22;;;;;;:26;112899:88;;-1:-1:-1;;;;;;112953:22:0;;;;;:14;:22;;;;;;;112769:253::o;112899:88::-;-1:-1:-1;;113006:8:0;;;112769:253::o;112178:293::-;112327:14;;112300:4;;112327:14;;112322:59;;-1:-1:-1;112365:4:0;112358:11;;112322:59;112400:27;112416:10;112400:15;:27::i;:::-;:63;;;-1:-1:-1;112431:3:0;;:32;;-1:-1:-1;;;112431:32:0;;-1:-1:-1;;;;;4825:32:1;;;112431::0;;;4807:51:1;4874:18;;;4867:34;;;112431:3:0;;;;:13;;4780:18:1;;112431:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;5930:111::-;5986:16;6022:3;:11;;6015:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5930:111;;;:::o;73937:355::-;74084:4;-1:-1:-1;;;;;;74126:40:0;;-1:-1:-1;;;74126:40:0;;:105;;-1:-1:-1;;;;;;;74183:48:0;;-1:-1:-1;;;74183:48:0;74126:105;:158;;;-1:-1:-1;;;;;;;;;;65816:40:0;;;74248:36;65707:157;111676:250;111800:4;111822:13;111838:33;111851:10;111863:7;111838:12;:33::i;84615:167::-;84690:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;84690:29:0;-1:-1:-1;;;;;84690:29:0;;;;;;;;:24;;84744:16;84690:24;84744:7;:16::i;:::-;-1:-1:-1;;;;;84735:39:0;;;;;;;;;;;84615:167;;:::o;82351:748::-;82449:19;82471:14;73623:13;;;73541:103;82471:14;82449:36;;82525:1;82514:8;:12;82506:62;;;;-1:-1:-1;;;82506:62:0;;39227:2:1;82506:62:0;;;39209:21:1;39266:2;39246:18;;;39239:30;39305:34;39285:18;;;39278:62;-1:-1:-1;;;39356:18:1;;;39349:35;39401:19;;82506:62:0;39025:401:1;82506:62:0;-1:-1:-1;;;;;82587:16:0;;82579:64;;;;-1:-1:-1;;;82579:64:0;;39633:2:1;82579:64:0;;;39615:21:1;39672:2;39652:18;;;39645:30;39711:34;39691:18;;;39684:62;-1:-1:-1;;;39762:18:1;;;39755:33;39805:19;;82579:64:0;39431:399:1;82579:64:0;82664:60;82694:1;82698:2;82702:11;82715:8;82664:21;:60::i;:::-;82752:8;82735:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;82771:20:0;;;;:7;:20;;;;;:25;;-1:-1:-1;;;;;;82771:25:0;-1:-1:-1;;;;;82771:25:0;;;;;82807:27;-1:-1:-1;82771:20:0;82807:14;:27::i;:::-;82845:59;82874:1;82878:2;82882:11;82895:8;82845:20;:59::i;:::-;82969:11;82949:142;82992:22;83006:8;82992:11;:22;:::i;:::-;82982:7;:32;82949:142;;;83046:33;;83071:7;;-1:-1:-1;;;;;83046:33:0;;;83063:1;;83046:33;;83063:1;;83046:33;83016:9;;;;:::i;:::-;;;;82949:142;;85436:1039;85623:6;-1:-1:-1;;;;;85646:13:0;;17864:19;:23;85642:826;;-1:-1:-1;85682:4:0;85723:12;85701:689;85747:23;85762:8;85747:12;:23;:::i;:::-;85737:7;:33;85701:689;;;85805:72;;-1:-1:-1;;;85805:72:0;;-1:-1:-1;;;;;85805:36:0;;;;;:72;;71681:10;;85856:4;;85862:7;;85871:5;;85805:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;85805:72:0;;;;;;;;-1:-1:-1;;85805:72:0;;;;;;;;;;;;:::i;:::-;;;85801:574;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86061:6;:13;86078:1;86061:18;86057:299;;86108:63;;-1:-1:-1;;;86108:63:0;;;;;;;:::i;86057:299::-;86298:6;86292:13;86283:6;86279:2;86275:15;86268:38;85801:574;85929:1;:56;;;;-1:-1:-1;;;;;;;85934:51:0;;-1:-1:-1;;;85934:51:0;85929:56;85925:60;;85878:127;85772:9;;;;:::i;:::-;;;;85701:689;;;;86404:8;;85642:826;-1:-1:-1;86452:4:0;85642:826;85436:1039;;;;;;;:::o;53677:1234::-;53817:1;53808:10;;;53759:19;53974:20;;;;;;;;;;;53759:19;;53808:10;53898:4;53890:12;;;;54079:18;;;54072:26;54151:6;;54148:756;;54249:22;:2;:20;:22::i;:::-;54234:37;;:11;:37;54228:1;54218:6;:11;;54217:55;54203:69;;54148:756;;;54372:1;54363:6;:10;54355:75;;;;-1:-1:-1;;;54355:75:0;;40785:2:1;54355:75:0;;;40767:21:1;40824:2;40804:18;;;40797:30;40863:34;40843:18;;;40836:62;-1:-1:-1;;;40914:18:1;;;40907:50;40974:19;;54355:75:0;40583:416:1;54355:75:0;-1:-1:-1;;;54482:8:0;;;54613:12;:20;;;;;;;;;;;54482:8;;-1:-1:-1;54673:6:0;;54670:207;;54779:22;:2;:20;:22::i;:::-;54772:3;:29;54755:47;;54766:1;54756:6;:11;;54755:47;54741:61;;54829:5;;54670:207;54324:569;;;53780:1131;;;53677:1234;;;;:::o;3076:1420::-;3142:4;3281:19;;;:12;;;:19;;;;;;3317:15;;3313:1176;;3692:21;3716:14;3729:1;3716:10;:14;:::i;:::-;3765:18;;3692:38;;-1:-1:-1;3745:17:0;;3765:22;;3786:1;;3765:22;:::i;:::-;3745:42;;3821:13;3808:9;:26;3804:405;;3855:17;3875:3;:11;;3887:9;3875:22;;;;;;;;:::i;:::-;;;;;;;;;3855:42;;4029:9;4000:3;:11;;4012:13;4000:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;4114:23;;;:12;;;:23;;;;;:36;;;3804:405;4290:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;4385:3;:12;;:19;4398:5;4385:19;;;;;;;;;;;4378:26;;;4428:4;4421:11;;;;;;;3313:1176;4472:5;4465:12;;;;;111291:191;111403:4;111432:42;:21;111463:10;111432:30;:42::i;112479:282::-;112601:7;112630:22;;;:13;:22;;;;;;:26;112626:88;;-1:-1:-1;112680:22:0;;;;:13;:22;;;;;;112673:29;;112626:88;112733:20;112746:6;112733:12;:20::i;45876:201::-;45938:5;45994:16;;;;;;;;;;;;;;;;;46050:3;44392:64;46012:18;46027:2;46012:14;:18::i;:::-;:33;46011:42;;45994:60;;;;;;;;:::i;:::-;;;;;;;;45876:201;-1:-1:-1;;45876:201:0:o;9327:167::-;-1:-1:-1;;;;;9461:23:0;;9407:4;4679:19;;;:12;;;:19;;;;;;:24;;9431:55;4582:129;45103:169;45162:7;45195:1;45190:2;:6;45182:15;;;;;;-1:-1:-1;45246:1:0;:6;;;45240:13;;45103:169::o;14:658:1:-;185:2;237:21;;;307:13;;210:18;;;329:22;;;156:4;;185:2;408:15;;;;382:2;367:18;;;156:4;451:195;465:6;462:1;459:13;451:195;;;530:13;;-1:-1:-1;;;;;526:39:1;514:52;;621:15;;;;586:12;;;;562:1;480:9;451:195;;;-1:-1:-1;663:3:1;;14:658;-1:-1:-1;;;;;;14:658:1:o;677:131::-;-1:-1:-1;;;;;;751:32:1;;741:43;;731:71;;798:1;795;788:12;813:245;871:6;924:2;912:9;903:7;899:23;895:32;892:52;;;940:1;937;930:12;892:52;979:9;966:23;998:30;1022:5;998:30;:::i;1255:131::-;-1:-1:-1;;;;;1330:31:1;;1320:42;;1310:70;;1376:1;1373;1366:12;1391:247;1450:6;1503:2;1491:9;1482:7;1478:23;1474:32;1471:52;;;1519:1;1516;1509:12;1471:52;1558:9;1545:23;1577:31;1602:5;1577:31;:::i;1643:180::-;1702:6;1755:2;1743:9;1734:7;1730:23;1726:32;1723:52;;;1771:1;1768;1761:12;1723:52;-1:-1:-1;1794:23:1;;1643:180;-1:-1:-1;1643:180:1:o;1828:435::-;1895:6;1903;1956:2;1944:9;1935:7;1931:23;1927:32;1924:52;;;1972:1;1969;1962:12;1924:52;2011:9;1998:23;2030:31;2055:5;2030:31;:::i;:::-;2080:5;-1:-1:-1;2137:2:1;2122:18;;2109:32;-1:-1:-1;;;;;2172:40:1;;2160:53;;2150:81;;2227:1;2224;2217:12;2150:81;2250:7;2240:17;;;1828:435;;;;;:::o;2268:250::-;2353:1;2363:113;2377:6;2374:1;2371:13;2363:113;;;2453:11;;;2447:18;2434:11;;;2427:39;2399:2;2392:10;2363:113;;;-1:-1:-1;;2510:1:1;2492:16;;2485:27;2268:250::o;2523:271::-;2565:3;2603:5;2597:12;2630:6;2625:3;2618:19;2646:76;2715:6;2708:4;2703:3;2699:14;2692:4;2685:5;2681:16;2646:76;:::i;:::-;2776:2;2755:15;-1:-1:-1;;2751:29:1;2742:39;;;;2783:4;2738:50;;2523:271;-1:-1:-1;;2523:271:1:o;2799:220::-;2948:2;2937:9;2930:21;2911:4;2968:45;3009:2;2998:9;2994:18;2986:6;2968:45;:::i;3232:315::-;3300:6;3308;3361:2;3349:9;3340:7;3336:23;3332:32;3329:52;;;3377:1;3374;3367:12;3329:52;3416:9;3403:23;3435:31;3460:5;3435:31;:::i;:::-;3485:5;3537:2;3522:18;;;;3509:32;;-1:-1:-1;;;3232:315:1:o;3734:456::-;3811:6;3819;3827;3880:2;3868:9;3859:7;3855:23;3851:32;3848:52;;;3896:1;3893;3886:12;3848:52;3935:9;3922:23;3954:31;3979:5;3954:31;:::i;:::-;4004:5;-1:-1:-1;4061:2:1;4046:18;;4033:32;4074:33;4033:32;4074:33;:::i;:::-;3734:456;;4126:7;;-1:-1:-1;;;4180:2:1;4165:18;;;;4152:32;;3734:456::o;4380:248::-;4448:6;4456;4509:2;4497:9;4488:7;4484:23;4480:32;4477:52;;;4525:1;4522;4515:12;4477:52;-1:-1:-1;;4548:23:1;;;4618:2;4603:18;;;4590:32;;-1:-1:-1;4380:248:1:o;5645:118::-;5731:5;5724:13;5717:21;5710:5;5707:32;5697:60;;5753:1;5750;5743:12;5768:241;5824:6;5877:2;5865:9;5856:7;5852:23;5848:32;5845:52;;;5893:1;5890;5883:12;5845:52;5932:9;5919:23;5951:28;5973:5;5951:28;:::i;6014:632::-;6185:2;6237:21;;;6307:13;;6210:18;;;6329:22;;;6156:4;;6185:2;6408:15;;;;6382:2;6367:18;;;6156:4;6451:169;6465:6;6462:1;6459:13;6451:169;;;6526:13;;6514:26;;6595:15;;;;6560:12;;;;6487:1;6480:9;6451:169;;6651:127;6712:10;6707:3;6703:20;6700:1;6693:31;6743:4;6740:1;6733:15;6767:4;6764:1;6757:15;6783:275;6854:2;6848:9;6919:2;6900:13;;-1:-1:-1;;6896:27:1;6884:40;;-1:-1:-1;;;;;6939:34:1;;6975:22;;;6936:62;6933:88;;;7001:18;;:::i;:::-;7037:2;7030:22;6783:275;;-1:-1:-1;6783:275:1:o;7063:407::-;7128:5;-1:-1:-1;;;;;7154:6:1;7151:30;7148:56;;;7184:18;;:::i;:::-;7222:57;7267:2;7246:15;;-1:-1:-1;;7242:29:1;7273:4;7238:40;7222:57;:::i;:::-;7213:66;;7302:6;7295:5;7288:21;7342:3;7333:6;7328:3;7324:16;7321:25;7318:45;;;7359:1;7356;7349:12;7318:45;7408:6;7403:3;7396:4;7389:5;7385:16;7372:43;7462:1;7455:4;7446:6;7439:5;7435:18;7431:29;7424:40;7063:407;;;;;:::o;7475:451::-;7544:6;7597:2;7585:9;7576:7;7572:23;7568:32;7565:52;;;7613:1;7610;7603:12;7565:52;7653:9;7640:23;-1:-1:-1;;;;;7678:6:1;7675:30;7672:50;;;7718:1;7715;7708:12;7672:50;7741:22;;7794:4;7786:13;;7782:27;-1:-1:-1;7772:55:1;;7823:1;7820;7813:12;7772:55;7846:74;7912:7;7907:2;7894:16;7889:2;7885;7881:11;7846:74;:::i;7931:712::-;7985:5;8038:3;8031:4;8023:6;8019:17;8015:27;8005:55;;8056:1;8053;8046:12;8005:55;8092:6;8079:20;8118:4;-1:-1:-1;;;;;8137:2:1;8134:26;8131:52;;;8163:18;;:::i;:::-;8209:2;8206:1;8202:10;8232:28;8256:2;8252;8248:11;8232:28;:::i;:::-;8294:15;;;8364;;;8360:24;;;8325:12;;;;8396:15;;;8393:35;;;8424:1;8421;8414:12;8393:35;8460:2;8452:6;8448:15;8437:26;;8472:142;8488:6;8483:3;8480:15;8472:142;;;8554:17;;8542:30;;8505:12;;;;8592;;;;8472:142;;;8632:5;7931:712;-1:-1:-1;;;;;;;7931:712:1:o;8648:416::-;8741:6;8749;8802:2;8790:9;8781:7;8777:23;8773:32;8770:52;;;8818:1;8815;8808:12;8770:52;8854:9;8841:23;8831:33;;8915:2;8904:9;8900:18;8887:32;-1:-1:-1;;;;;8934:6:1;8931:30;8928:50;;;8974:1;8971;8964:12;8928:50;8997:61;9050:7;9041:6;9030:9;9026:22;8997:61;:::i;:::-;8987:71;;;8648:416;;;;;:::o;9069:315::-;9137:6;9145;9198:2;9186:9;9177:7;9173:23;9169:32;9166:52;;;9214:1;9211;9204:12;9166:52;9250:9;9237:23;9227:33;;9310:2;9299:9;9295:18;9282:32;9323:31;9348:5;9323:31;:::i;9389:382::-;9454:6;9462;9515:2;9503:9;9494:7;9490:23;9486:32;9483:52;;;9531:1;9528;9521:12;9483:52;9570:9;9557:23;9589:31;9614:5;9589:31;:::i;:::-;9639:5;-1:-1:-1;9696:2:1;9681:18;;9668:32;9709:30;9668:32;9709:30;:::i;9776:795::-;9871:6;9879;9887;9895;9948:3;9936:9;9927:7;9923:23;9919:33;9916:53;;;9965:1;9962;9955:12;9916:53;10004:9;9991:23;10023:31;10048:5;10023:31;:::i;:::-;10073:5;-1:-1:-1;10130:2:1;10115:18;;10102:32;10143:33;10102:32;10143:33;:::i;:::-;10195:7;-1:-1:-1;10249:2:1;10234:18;;10221:32;;-1:-1:-1;10304:2:1;10289:18;;10276:32;-1:-1:-1;;;;;10320:30:1;;10317:50;;;10363:1;10360;10353:12;10317:50;10386:22;;10439:4;10431:13;;10427:27;-1:-1:-1;10417:55:1;;10468:1;10465;10458:12;10417:55;10491:74;10557:7;10552:2;10539:16;10534:2;10530;10526:11;10491:74;:::i;:::-;10481:84;;;9776:795;;;;;;;:::o;10576:551::-;10678:6;10686;10694;10747:2;10735:9;10726:7;10722:23;10718:32;10715:52;;;10763:1;10760;10753:12;10715:52;10802:9;10789:23;10821:31;10846:5;10821:31;:::i;:::-;10871:5;-1:-1:-1;10923:2:1;10908:18;;10895:32;;-1:-1:-1;10978:2:1;10963:18;;10950:32;-1:-1:-1;;;;;10994:30:1;;10991:50;;;11037:1;11034;11027:12;10991:50;11060:61;11113:7;11104:6;11093:9;11089:22;11060:61;:::i;:::-;11050:71;;;10576:551;;;;;:::o;11132:553::-;11243:6;11251;11259;11267;11320:3;11308:9;11299:7;11295:23;11291:33;11288:53;;;11337:1;11334;11327:12;11288:53;11373:9;11360:23;11350:33;;11430:2;11419:9;11415:18;11402:32;11392:42;;11481:2;11470:9;11466:18;11453:32;11443:42;;11536:2;11525:9;11521:18;11508:32;-1:-1:-1;;;;;11555:6:1;11552:30;11549:50;;;11595:1;11592;11585:12;11549:50;11618:61;11671:7;11662:6;11651:9;11647:22;11618:61;:::i;11690:309::-;11755:6;11763;11816:2;11804:9;11795:7;11791:23;11787:32;11784:52;;;11832:1;11829;11822:12;11784:52;11868:9;11855:23;11845:33;;11928:2;11917:9;11913:18;11900:32;11941:28;11963:5;11941:28;:::i;12004:388::-;12072:6;12080;12133:2;12121:9;12112:7;12108:23;12104:32;12101:52;;;12149:1;12146;12139:12;12101:52;12188:9;12175:23;12207:31;12232:5;12207:31;:::i;:::-;12257:5;-1:-1:-1;12314:2:1;12299:18;;12286:32;12327:33;12286:32;12327:33;:::i;12397:620::-;12508:6;12516;12524;12532;12585:3;12573:9;12564:7;12560:23;12556:33;12553:53;;;12602:1;12599;12592:12;12553:53;12641:9;12628:23;12660:31;12685:5;12660:31;:::i;:::-;12710:5;-1:-1:-1;12762:2:1;12747:18;;12734:32;;-1:-1:-1;12813:2:1;12798:18;;12785:32;;-1:-1:-1;12868:2:1;12853:18;;12840:32;-1:-1:-1;;;;;12884:30:1;;12881:50;;;12927:1;12924;12917:12;13022:380;13101:1;13097:12;;;;13144;;;13165:61;;13219:4;13211:6;13207:17;13197:27;;13165:61;13272:2;13264:6;13261:14;13241:18;13238:38;13235:161;;13318:10;13313:3;13309:20;13306:1;13299:31;13353:4;13350:1;13343:15;13381:4;13378:1;13371:15;13235:161;;13022:380;;;:::o;14132:245::-;14199:6;14252:2;14240:9;14231:7;14227:23;14223:32;14220:52;;;14268:1;14265;14258:12;14220:52;14300:9;14294:16;14319:28;14341:5;14319:28;:::i;14382:127::-;14443:10;14438:3;14434:20;14431:1;14424:31;14474:4;14471:1;14464:15;14498:4;14495:1;14488:15;14514:128;14581:9;;;14602:11;;;14599:37;;;14616:18;;:::i;14647:125::-;14712:9;;;14733:10;;;14730:36;;;14746:18;;:::i;14777:168::-;14850:9;;;14881;;14898:15;;;14892:22;;14878:37;14868:71;;14919:18;;:::i;14950:127::-;15011:10;15006:3;15002:20;14999:1;14992:31;15042:4;15039:1;15032:15;15066:4;15063:1;15056:15;15082:120;15122:1;15148;15138:35;;15153:18;;:::i;:::-;-1:-1:-1;15187:9:1;;15082:120::o;16726:348::-;16928:2;16910:21;;;16967:2;16947:18;;;16940:30;17006:26;17001:2;16986:18;;16979:54;17065:2;17050:18;;16726:348::o;17079:336::-;17281:2;17263:21;;;17320:2;17300:18;;;17293:30;-1:-1:-1;;;17354:2:1;17339:18;;17332:42;17406:2;17391:18;;17079:336::o;17983:340::-;18185:2;18167:21;;;18224:2;18204:18;;;18197:30;-1:-1:-1;;;18258:2:1;18243:18;;18236:46;18314:2;18299:18;;17983:340::o;18665:251::-;18735:6;18788:2;18776:9;18767:7;18763:23;18759:32;18756:52;;;18804:1;18801;18794:12;18756:52;18836:9;18830:16;18855:31;18880:5;18855:31;:::i;18921:135::-;18960:3;18981:17;;;18978:43;;19001:18;;:::i;:::-;-1:-1:-1;19048:1:1;19037:13;;18921:135::o;19061:127::-;19122:10;19117:3;19113:20;19110:1;19103:31;19153:4;19150:1;19143:15;19177:4;19174:1;19167:15;19319:545;19421:2;19416:3;19413:11;19410:448;;;19457:1;19482:5;19478:2;19471:17;19527:4;19523:2;19513:19;19597:2;19585:10;19581:19;19578:1;19574:27;19568:4;19564:38;19633:4;19621:10;19618:20;19615:47;;;-1:-1:-1;19656:4:1;19615:47;19711:2;19706:3;19702:12;19699:1;19695:20;19689:4;19685:31;19675:41;;19766:82;19784:2;19777:5;19774:13;19766:82;;;19829:17;;;19810:1;19799:13;19766:82;;20040:1352;20166:3;20160:10;-1:-1:-1;;;;;20185:6:1;20182:30;20179:56;;;20215:18;;:::i;:::-;20244:97;20334:6;20294:38;20326:4;20320:11;20294:38;:::i;:::-;20288:4;20244:97;:::i;:::-;20396:4;;20460:2;20449:14;;20477:1;20472:663;;;;21179:1;21196:6;21193:89;;;-1:-1:-1;21248:19:1;;;21242:26;21193:89;-1:-1:-1;;19997:1:1;19993:11;;;19989:24;19985:29;19975:40;20021:1;20017:11;;;19972:57;21295:81;;20442:944;;20472:663;19266:1;19259:14;;;19303:4;19290:18;;-1:-1:-1;;20508:20:1;;;20626:236;20640:7;20637:1;20634:14;20626:236;;;20729:19;;;20723:26;20708:42;;20821:27;;;;20789:1;20777:14;;;;20656:19;;20626:236;;;20630:3;20890:6;20881:7;20878:19;20875:201;;;20951:19;;;20945:26;-1:-1:-1;;21034:1:1;21030:14;;;21046:3;21026:24;21022:37;21018:42;21003:58;20988:74;;20875:201;-1:-1:-1;;;;;21122:1:1;21106:14;;;21102:22;21089:36;;-1:-1:-1;20040:1352:1:o;21751:355::-;21953:2;21935:21;;;21992:2;21972:18;;;21965:30;22031:33;22026:2;22011:18;;22004:61;22097:2;22082:18;;21751:355::o;24820:722::-;24870:3;24911:5;24905:12;24940:36;24966:9;24940:36;:::i;:::-;24995:1;25012:18;;;25039:133;;;;25186:1;25181:355;;;;25005:531;;25039:133;-1:-1:-1;;25072:24:1;;25060:37;;25145:14;;25138:22;25126:35;;25117:45;;;-1:-1:-1;25039:133:1;;25181:355;25212:5;25209:1;25202:16;25241:4;25286:2;25283:1;25273:16;25311:1;25325:165;25339:6;25336:1;25333:13;25325:165;;;25417:14;;25404:11;;;25397:35;25460:16;;;;25354:10;;25325:165;;;25329:3;;;25519:6;25514:3;25510:16;25503:23;;25005:531;;;;;24820:722;;;;:::o;25547:927::-;25920:3;25958:6;25952:13;25974:66;26033:6;26028:3;26021:4;26013:6;26009:17;25974:66;:::i;:::-;26103:13;;26062:16;;;;26125:70;26103:13;26062:16;26172:4;26160:17;;26125:70;:::i;:::-;-1:-1:-1;;;26217:20:1;;26246:18;;;26289:13;;26311:78;26289:13;26376:1;26365:13;;26358:4;26346:17;;26311:78;:::i;:::-;26405:63;26465:1;26454:8;26447:5;26443:20;26439:28;26431:6;26405:63;:::i;:::-;26398:70;25547:927;-1:-1:-1;;;;;;;;25547:927:1:o;26479:576::-;26703:3;26741:6;26735:13;26757:66;26816:6;26811:3;26804:4;26796:6;26792:17;26757:66;:::i;:::-;26886:13;;26845:16;;;;26908:70;26886:13;26845:16;26955:4;26943:17;;26908:70;:::i;:::-;26994:55;27039:8;27032:5;27028:20;27020:6;26994:55;:::i;29357:136::-;29396:3;29424:5;29414:39;;29433:18;;:::i;:::-;-1:-1:-1;;;29469:18:1;;29357:136::o;29859:611::-;-1:-1:-1;;;30217:3:1;30210:23;30192:3;30262:6;30256:13;30278:74;30345:6;30341:1;30336:3;30332:11;30325:4;30317:6;30313:17;30278:74;:::i;:::-;-1:-1:-1;;;30411:1:1;30371:16;;;;30403:10;;;30396:41;-1:-1:-1;30461:2:1;30453:11;;29859:611;-1:-1:-1;29859:611:1:o;31240:416::-;31442:2;31424:21;;;31481:2;31461:18;;;31454:30;31520:34;31515:2;31500:18;;31493:62;-1:-1:-1;;;31586:2:1;31571:18;;31564:50;31646:3;31631:19;;31240:416::o;32022:624::-;-1:-1:-1;;;32380:3:1;32373:23;32355:3;32425:6;32419:13;32441:74;32508:6;32504:1;32499:3;32495:11;32488:4;32480:6;32476:17;32441:74;:::i;:::-;32578:34;32574:1;32534:16;;;;32566:10;;;32559:54;-1:-1:-1;32637:2:1;32629:11;;32022:624;-1:-1:-1;32022:624:1:o;33424:200::-;33490:9;;;33463:4;33518:9;;33546:10;;33558:12;;;33542:29;33581:12;;;33573:21;;33539:56;33536:82;;;33598:18;;:::i;33629:193::-;33668:1;33694;33684:35;;33699:18;;:::i;:::-;-1:-1:-1;;;33735:18:1;;-1:-1:-1;;33755:13:1;;33731:38;33728:64;;;33772:18;;:::i;:::-;-1:-1:-1;33806:10:1;;33629:193::o;34241:1050::-;34753:66;34748:3;34741:79;34723:3;34849:6;34843:13;34865:75;34933:6;34928:2;34923:3;34919:12;34912:4;34904:6;34900:17;34865:75;:::i;:::-;-1:-1:-1;;;34999:2:1;34959:16;;;34991:11;;;34984:71;35080:13;;35102:76;35080:13;35164:2;35156:11;;35149:4;35137:17;;35102:76;:::i;:::-;-1:-1:-1;;;35238:2:1;35197:17;;;;35230:11;;;35223:35;35282:2;35274:11;;34241:1050;-1:-1:-1;;;;34241:1050:1:o;35296:461::-;35558:31;35553:3;35546:44;35528:3;35619:6;35613:13;35635:75;35703:6;35698:2;35693:3;35689:12;35682:4;35674:6;35670:17;35635:75;:::i;:::-;35730:16;;;;35748:2;35726:25;;35296:461;-1:-1:-1;;35296:461:1:o;38246:417::-;38448:2;38430:21;;;38487:2;38467:18;;;38460:30;38526:34;38521:2;38506:18;;38499:62;-1:-1:-1;;;38592:2:1;38577:18;;38570:51;38653:3;38638:19;;38246:417::o;39835:489::-;-1:-1:-1;;;;;40104:15:1;;;40086:34;;40156:15;;40151:2;40136:18;;40129:43;40203:2;40188:18;;40181:34;;;40251:3;40246:2;40231:18;;40224:31;;;40029:4;;40272:46;;40298:19;;40290:6;40272:46;:::i;:::-;40264:54;39835:489;-1:-1:-1;;;;;;39835:489:1:o;40329:249::-;40398:6;40451:2;40439:9;40430:7;40426:23;40422:32;40419:52;;;40467:1;40464;40457:12;40419:52;40499:9;40493:16;40518:30;40542:5;40518:30;:::i;41004:127::-;41065:10;41060:3;41056:20;41053:1;41046:31;41096:4;41093:1;41086:15;41120:4;41117:1;41110:15
Swarm Source
ipfs://76068ecd4a17bd8b1bb8448e5400f01c364d991cd4abbed0a76e9a64bca04fe9
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.