Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
134 INV
Holders
30
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 INVLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Invaderlings
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-16 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _burn(tokenId); } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/Invaderlings.sol pragma solidity ^0.8.9; contract Invaderlings is ERC721, ERC721Enumerable, Pausable, Ownable, ERC721Burnable { using Counters for Counters.Counter; uint256 public constant MAX_SUPPLY = 5000; uint256 public constant MAX_MINT = 5; string private origBaseUri = "ipfs://QmPChWqC76k6nPVhPrrbF3DnKXhs8SpMxceneDqk9x83Ub"; Counters.Counter private _tokenIdCounter; constructor() ERC721("Invaderlings", "INV") { } function contractURI() public pure returns (string memory) { return "ipfs://QmV7x8ALu34WDgzvTUE8Ntv3Hywsbnov2bZHYg6FhSB44n"; } function _baseURI() internal view override returns (string memory) { return origBaseUri; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return string(abi.encodePacked(baseURI,'/', Strings.toString(tokenId), '.json')); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function updateBaseUri(string memory newUri) public onlyOwner { origBaseUri = newUri; } function mint(uint256 amount) public whenNotPaused { require(amount > 0, "Amount must be greater than 0"); require(amount <= MAX_MINT, "Amount must be less than or equal to 5"); require(totalSupply() + amount < MAX_SUPPLY, "Purchase would exceed max supply of Invaderlings"); for (uint256 i = 0; i < amount; i++) { _safeMint(msg.sender, _tokenIdCounter.current()); _tokenIdCounter.increment(); } } function safeMint(address to) public onlyOwner { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(to, tokenId); } function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize) internal whenNotPaused override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId, batchSize); } // The following functions are overrides required by Solidity. function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"updateBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280603581526020016200422c60359139600b908051906020019062000035929190620001f3565b503480156200004357600080fd5b506040518060400160405280600c81526020017f496e76616465726c696e677300000000000000000000000000000000000000008152506040518060400160405280600381526020017f494e5600000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c8929190620001f3565b508060019080519060200190620000e1929190620001f3565b5050506000600a60006101000a81548160ff0219169083151502179055506200011f620001136200012560201b60201c565b6200012d60201b60201c565b62000308565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020190620002d2565b90600052602060002090601f01602090048101928262000225576000855562000271565b82601f106200024057805160ff191683800117855562000271565b8280016001018555821562000271579182015b828111156200027057825182559160200191906001019062000253565b5b50905062000280919062000284565b5090565b5b808211156200029f57600081600090555060010162000285565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002eb57607f821691505b60208210811415620003025762000301620002a3565b5b50919050565b613f1480620003186000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a0712d68116100a2578063e8a3d48511610071578063e8a3d485146104f2578063e985e9c514610510578063f0292a0314610540578063f2fde38b1461055e576101cf565b8063a0712d681461046e578063a22cb4651461048a578063b88d4fde146104a6578063c87b56dd146104c2576101cf565b8063715018a6116100de578063715018a61461041e5780638456cb59146104285780638da5cb5b1461043257806395d89b4114610450576101cf565b80635c975abb146103a05780636352211e146103be57806370a08231146103ee576101cf565b806332cb6b0c1161017157806340d097c31161014b57806340d097c31461031c57806342842e0e1461033857806342966c68146103545780634f6ccce714610370576101cf565b806332cb6b0c146102d857806339f7e37f146102f65780633f4ba83a14610312576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c5780632f745c59146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e991906129bd565b61057a565b6040516101fb9190612a05565b60405180910390f35b61020c61058c565b6040516102199190612ab9565b60405180910390f35b61023c60048036038101906102379190612b11565b61061e565b6040516102499190612b7f565b60405180910390f35b61026c60048036038101906102679190612bc6565b610664565b005b61027661077c565b6040516102839190612c15565b60405180910390f35b6102a660048036038101906102a19190612c30565b610789565b005b6102c260048036038101906102bd9190612bc6565b6107e9565b6040516102cf9190612c15565b60405180910390f35b6102e061088e565b6040516102ed9190612c15565b60405180910390f35b610310600480360381019061030b9190612db8565b610894565b005b61031a6108b6565b005b61033660048036038101906103319190612e01565b6108c8565b005b610352600480360381019061034d9190612c30565b6108f6565b005b61036e60048036038101906103699190612b11565b610916565b005b61038a60048036038101906103859190612b11565b610972565b6040516103979190612c15565b60405180910390f35b6103a86109e3565b6040516103b59190612a05565b60405180910390f35b6103d860048036038101906103d39190612b11565b6109fa565b6040516103e59190612b7f565b60405180910390f35b61040860048036038101906104039190612e01565b610a81565b6040516104159190612c15565b60405180910390f35b610426610b39565b005b610430610b4d565b005b61043a610b5f565b6040516104479190612b7f565b60405180910390f35b610458610b89565b6040516104659190612ab9565b60405180910390f35b61048860048036038101906104839190612b11565b610c1b565b005b6104a4600480360381019061049f9190612e5a565b610d3f565b005b6104c060048036038101906104bb9190612f3b565b610d55565b005b6104dc60048036038101906104d79190612b11565b610db7565b6040516104e99190612ab9565b60405180910390f35b6104fa610e00565b6040516105079190612ab9565b60405180910390f35b61052a60048036038101906105259190612fbe565b610e20565b6040516105379190612a05565b60405180910390f35b610548610eb4565b6040516105559190612c15565b60405180910390f35b61057860048036038101906105739190612e01565b610eb9565b005b600061058582610f3d565b9050919050565b60606000805461059b9061302d565b80601f01602080910402602001604051908101604052809291908181526020018280546105c79061302d565b80156106145780601f106105e957610100808354040283529160200191610614565b820191906000526020600020905b8154815290600101906020018083116105f757829003601f168201915b5050505050905090565b600061062982610fb7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061066f826109fa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d7906130d1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106ff611002565b73ffffffffffffffffffffffffffffffffffffffff16148061072e575061072d81610728611002565b610e20565b5b61076d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076490613163565b60405180910390fd5b610777838361100a565b505050565b6000600880549050905090565b61079a610794611002565b826110c3565b6107d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d0906131f5565b60405180910390fd5b6107e4838383611158565b505050565b60006107f483610a81565b8210610835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082c90613287565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61138881565b61089c611452565b80600b90805190602001906108b29291906128ae565b5050565b6108be611452565b6108c66114d0565b565b6108d0611452565b60006108dc600c611533565b90506108e8600c611541565b6108f28282611557565b5050565b61091183838360405180602001604052806000815250610d55565b505050565b610927610921611002565b826110c3565b610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095d906131f5565b60405180910390fd5b61096f81611575565b50565b600061097c61077c565b82106109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490613319565b60405180910390fd5b600882815481106109d1576109d0613339565b5b90600052602060002001549050919050565b6000600a60009054906101000a900460ff16905090565b600080610a06836116c3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f906133b4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990613446565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b41611452565b610b4b6000611700565b565b610b55611452565b610b5d6117c6565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b989061302d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc49061302d565b8015610c115780601f10610be657610100808354040283529160200191610c11565b820191906000526020600020905b815481529060010190602001808311610bf457829003601f168201915b5050505050905090565b610c23611829565b60008111610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d906134b2565b60405180910390fd5b6005811115610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190613544565b60405180910390fd5b61138881610cb661077c565b610cc09190613593565b10610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf79061365b565b60405180910390fd5b60005b81811015610d3b57610d1e33610d19600c611533565b611557565b610d28600c611541565b8080610d339061367b565b915050610d03565b5050565b610d51610d4a611002565b8383611873565b5050565b610d66610d60611002565b836110c3565b610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c906131f5565b60405180910390fd5b610db1848484846119e0565b50505050565b6060610dc282610fb7565b6000610dcc611a3c565b905080610dd884611ace565b604051602001610de9929190613798565b604051602081830303815290604052915050919050565b6060604051806060016040528060358152602001613eaa60359139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600581565b610ec1611452565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890613844565b60405180910390fd5b610f3a81611700565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fb05750610faf82611ba6565b5b9050919050565b610fc081611c88565b610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff6906133b4565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661107d836109fa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806110cf836109fa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061111157506111108185610e20565b5b8061114f57508373ffffffffffffffffffffffffffffffffffffffff166111378461061e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611178826109fa565b73ffffffffffffffffffffffffffffffffffffffff16146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c5906138d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590613968565b60405180910390fd5b61124b8383836001611cc9565b8273ffffffffffffffffffffffffffffffffffffffff1661126b826109fa565b73ffffffffffffffffffffffffffffffffffffffff16146112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b8906138d6565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461144d8383836001611ce3565b505050565b61145a611002565b73ffffffffffffffffffffffffffffffffffffffff16611478610b5f565b73ffffffffffffffffffffffffffffffffffffffff16146114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c5906139d4565b60405180910390fd5b565b6114d8611ce9565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61151c611002565b6040516115299190612b7f565b60405180910390a1565b600081600001549050919050565b6001816000016000828254019250508190555050565b611571828260405180602001604052806000815250611d32565b5050565b6000611580826109fa565b9050611590816000846001611cc9565b611599826109fa565b90506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116bf816000846001611ce3565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117ce611829565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611812611002565b60405161181f9190612b7f565b60405180910390a1565b6118316109e3565b15611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890613a40565b60405180910390fd5b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990613aac565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d39190612a05565b60405180910390a3505050565b6119eb848484611158565b6119f784848484611d8d565b611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90613b3e565b60405180910390fd5b50505050565b6060600b8054611a4b9061302d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a779061302d565b8015611ac45780601f10611a9957610100808354040283529160200191611ac4565b820191906000526020600020905b815481529060010190602001808311611aa757829003601f168201915b5050505050905090565b606060006001611add84611f24565b01905060008167ffffffffffffffff811115611afc57611afb612c8d565b5b6040519080825280601f01601f191660200182016040528015611b2e5781602001600182028036833780820191505090505b509050600082602001820190505b600115611b9b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b8557611b84613b5e565b5b0494506000851415611b9657611b9b565b611b3c565b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c7157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c815750611c8082612077565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611caa836116c3565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611cd1611829565b611cdd848484846120e1565b50505050565b50505050565b611cf16109e3565b611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790613bd9565b60405180910390fd5b565b611d3c8383612241565b611d496000848484611d8d565b611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f90613b3e565b60405180910390fd5b505050565b6000611dae8473ffffffffffffffffffffffffffffffffffffffff1661245f565b15611f17578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dd7611002565b8786866040518563ffffffff1660e01b8152600401611df99493929190613c4e565b602060405180830381600087803b158015611e1357600080fd5b505af1925050508015611e4457506040513d601f19601f82011682018060405250810190611e419190613caf565b60015b611ec7573d8060008114611e74576040519150601f19603f3d011682016040523d82523d6000602084013e611e79565b606091505b50600081511415611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690613b3e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f1c565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611f82577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611f7857611f77613b5e565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611fbf576d04ee2d6d415b85acef81000000008381611fb557611fb4613b5e565b5b0492506020810190505b662386f26fc100008310611fee57662386f26fc100008381611fe457611fe3613b5e565b5b0492506010810190505b6305f5e1008310612017576305f5e100838161200d5761200c613b5e565b5b0492506008810190505b612710831061203c57612710838161203257612031613b5e565b5b0492506004810190505b6064831061205f576064838161205557612054613b5e565b5b0492506002810190505b600a831061206e576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120ed84848484612482565b6001811115612131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212890613d4e565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561217957612174816125a8565b6121b8565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146121b7576121b685826125f1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121fb576121f68161275e565b61223a565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461223957612238848261282f565b5b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a890613dba565b60405180910390fd5b6122ba81611c88565b156122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190613e26565b60405180910390fd5b612308600083836001611cc9565b61231181611c88565b15612351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234890613e26565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461245b600083836001611ce3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60018111156125a257600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146125165780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461250e9190613e46565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125a15780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125999190613593565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125fe84610a81565b6126089190613e46565b90506000600760008481526020019081526020016000205490508181146126ed576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127729190613e46565b90506000600960008481526020019081526020016000205490506000600883815481106127a2576127a1613339565b5b9060005260206000200154905080600883815481106127c4576127c3613339565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061281357612812613e7a565b5b6001900381819060005260206000200160009055905550505050565b600061283a83610a81565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546128ba9061302d565b90600052602060002090601f0160209004810192826128dc5760008555612923565b82601f106128f557805160ff1916838001178555612923565b82800160010185558215612923579182015b82811115612922578251825591602001919060010190612907565b5b5090506129309190612934565b5090565b5b8082111561294d576000816000905550600101612935565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61299a81612965565b81146129a557600080fd5b50565b6000813590506129b781612991565b92915050565b6000602082840312156129d3576129d261295b565b5b60006129e1848285016129a8565b91505092915050565b60008115159050919050565b6129ff816129ea565b82525050565b6000602082019050612a1a60008301846129f6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a5a578082015181840152602081019050612a3f565b83811115612a69576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a8b82612a20565b612a958185612a2b565b9350612aa5818560208601612a3c565b612aae81612a6f565b840191505092915050565b60006020820190508181036000830152612ad38184612a80565b905092915050565b6000819050919050565b612aee81612adb565b8114612af957600080fd5b50565b600081359050612b0b81612ae5565b92915050565b600060208284031215612b2757612b2661295b565b5b6000612b3584828501612afc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b6982612b3e565b9050919050565b612b7981612b5e565b82525050565b6000602082019050612b946000830184612b70565b92915050565b612ba381612b5e565b8114612bae57600080fd5b50565b600081359050612bc081612b9a565b92915050565b60008060408385031215612bdd57612bdc61295b565b5b6000612beb85828601612bb1565b9250506020612bfc85828601612afc565b9150509250929050565b612c0f81612adb565b82525050565b6000602082019050612c2a6000830184612c06565b92915050565b600080600060608486031215612c4957612c4861295b565b5b6000612c5786828701612bb1565b9350506020612c6886828701612bb1565b9250506040612c7986828701612afc565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cc582612a6f565b810181811067ffffffffffffffff82111715612ce457612ce3612c8d565b5b80604052505050565b6000612cf7612951565b9050612d038282612cbc565b919050565b600067ffffffffffffffff821115612d2357612d22612c8d565b5b612d2c82612a6f565b9050602081019050919050565b82818337600083830152505050565b6000612d5b612d5684612d08565b612ced565b905082815260208101848484011115612d7757612d76612c88565b5b612d82848285612d39565b509392505050565b600082601f830112612d9f57612d9e612c83565b5b8135612daf848260208601612d48565b91505092915050565b600060208284031215612dce57612dcd61295b565b5b600082013567ffffffffffffffff811115612dec57612deb612960565b5b612df884828501612d8a565b91505092915050565b600060208284031215612e1757612e1661295b565b5b6000612e2584828501612bb1565b91505092915050565b612e37816129ea565b8114612e4257600080fd5b50565b600081359050612e5481612e2e565b92915050565b60008060408385031215612e7157612e7061295b565b5b6000612e7f85828601612bb1565b9250506020612e9085828601612e45565b9150509250929050565b600067ffffffffffffffff821115612eb557612eb4612c8d565b5b612ebe82612a6f565b9050602081019050919050565b6000612ede612ed984612e9a565b612ced565b905082815260208101848484011115612efa57612ef9612c88565b5b612f05848285612d39565b509392505050565b600082601f830112612f2257612f21612c83565b5b8135612f32848260208601612ecb565b91505092915050565b60008060008060808587031215612f5557612f5461295b565b5b6000612f6387828801612bb1565b9450506020612f7487828801612bb1565b9350506040612f8587828801612afc565b925050606085013567ffffffffffffffff811115612fa657612fa5612960565b5b612fb287828801612f0d565b91505092959194509250565b60008060408385031215612fd557612fd461295b565b5b6000612fe385828601612bb1565b9250506020612ff485828601612bb1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061304557607f821691505b6020821081141561305957613058612ffe565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006130bb602183612a2b565b91506130c68261305f565b604082019050919050565b600060208201905081810360008301526130ea816130ae565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061314d603d83612a2b565b9150613158826130f1565b604082019050919050565b6000602082019050818103600083015261317c81613140565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006131df602d83612a2b565b91506131ea82613183565b604082019050919050565b6000602082019050818103600083015261320e816131d2565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613271602b83612a2b565b915061327c82613215565b604082019050919050565b600060208201905081810360008301526132a081613264565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613303602c83612a2b565b915061330e826132a7565b604082019050919050565b60006020820190508181036000830152613332816132f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061339e601883612a2b565b91506133a982613368565b602082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613430602983612a2b565b915061343b826133d4565b604082019050919050565b6000602082019050818103600083015261345f81613423565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b600061349c601d83612a2b565b91506134a782613466565b602082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e206f72206571756160008201527f6c20746f20350000000000000000000000000000000000000000000000000000602082015250565b600061352e602683612a2b565b9150613539826134d2565b604082019050919050565b6000602082019050818103600083015261355d81613521565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061359e82612adb565b91506135a983612adb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135de576135dd613564565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620496e76616465726c696e677300000000000000000000000000000000602082015250565b6000613645603083612a2b565b9150613650826135e9565b604082019050919050565b6000602082019050818103600083015261367481613638565b9050919050565b600061368682612adb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136b9576136b8613564565b5b600182019050919050565b600081905092915050565b60006136da82612a20565b6136e481856136c4565b93506136f4818560208601612a3c565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006137366001836136c4565b915061374182613700565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006137826005836136c4565b915061378d8261374c565b600582019050919050565b60006137a482856136cf565b91506137af82613729565b91506137bb82846136cf565b91506137c682613775565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061382e602683612a2b565b9150613839826137d2565b604082019050919050565b6000602082019050818103600083015261385d81613821565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006138c0602583612a2b565b91506138cb82613864565b604082019050919050565b600060208201905081810360008301526138ef816138b3565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613952602483612a2b565b915061395d826138f6565b604082019050919050565b6000602082019050818103600083015261398181613945565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139be602083612a2b565b91506139c982613988565b602082019050919050565b600060208201905081810360008301526139ed816139b1565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613a2a601083612a2b565b9150613a35826139f4565b602082019050919050565b60006020820190508181036000830152613a5981613a1d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613a96601983612a2b565b9150613aa182613a60565b602082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613b28603283612a2b565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613bc3601483612a2b565b9150613bce82613b8d565b602082019050919050565b60006020820190508181036000830152613bf281613bb6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c2082613bf9565b613c2a8185613c04565b9350613c3a818560208601612a3c565b613c4381612a6f565b840191505092915050565b6000608082019050613c636000830187612b70565b613c706020830186612b70565b613c7d6040830185612c06565b8181036060830152613c8f8184613c15565b905095945050505050565b600081519050613ca981612991565b92915050565b600060208284031215613cc557613cc461295b565b5b6000613cd384828501613c9a565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000613d38603583612a2b565b9150613d4382613cdc565b604082019050919050565b60006020820190508181036000830152613d6781613d2b565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613da4602083612a2b565b9150613daf82613d6e565b602082019050919050565b60006020820190508181036000830152613dd381613d97565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613e10601c83612a2b565b9150613e1b82613dda565b602082019050919050565b60006020820190508181036000830152613e3f81613e03565b9050919050565b6000613e5182612adb565b9150613e5c83612adb565b925082821015613e6f57613e6e613564565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe697066733a2f2f516d56377838414c7533345744677a76545545384e74763348797773626e6f7632625a485967364668534234346ea2646970667358221220c0f1af439ada9907a5f892617a718bbe895e5b35f64ed7b9fc4d1802be307e0364736f6c63430008090033697066733a2f2f516d50436857714337366b366e505668507272624633446e4b5868733853704d7863656e6544716b397838335562
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a0712d68116100a2578063e8a3d48511610071578063e8a3d485146104f2578063e985e9c514610510578063f0292a0314610540578063f2fde38b1461055e576101cf565b8063a0712d681461046e578063a22cb4651461048a578063b88d4fde146104a6578063c87b56dd146104c2576101cf565b8063715018a6116100de578063715018a61461041e5780638456cb59146104285780638da5cb5b1461043257806395d89b4114610450576101cf565b80635c975abb146103a05780636352211e146103be57806370a08231146103ee576101cf565b806332cb6b0c1161017157806340d097c31161014b57806340d097c31461031c57806342842e0e1461033857806342966c68146103545780634f6ccce714610370576101cf565b806332cb6b0c146102d857806339f7e37f146102f65780633f4ba83a14610312576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c5780632f745c59146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e991906129bd565b61057a565b6040516101fb9190612a05565b60405180910390f35b61020c61058c565b6040516102199190612ab9565b60405180910390f35b61023c60048036038101906102379190612b11565b61061e565b6040516102499190612b7f565b60405180910390f35b61026c60048036038101906102679190612bc6565b610664565b005b61027661077c565b6040516102839190612c15565b60405180910390f35b6102a660048036038101906102a19190612c30565b610789565b005b6102c260048036038101906102bd9190612bc6565b6107e9565b6040516102cf9190612c15565b60405180910390f35b6102e061088e565b6040516102ed9190612c15565b60405180910390f35b610310600480360381019061030b9190612db8565b610894565b005b61031a6108b6565b005b61033660048036038101906103319190612e01565b6108c8565b005b610352600480360381019061034d9190612c30565b6108f6565b005b61036e60048036038101906103699190612b11565b610916565b005b61038a60048036038101906103859190612b11565b610972565b6040516103979190612c15565b60405180910390f35b6103a86109e3565b6040516103b59190612a05565b60405180910390f35b6103d860048036038101906103d39190612b11565b6109fa565b6040516103e59190612b7f565b60405180910390f35b61040860048036038101906104039190612e01565b610a81565b6040516104159190612c15565b60405180910390f35b610426610b39565b005b610430610b4d565b005b61043a610b5f565b6040516104479190612b7f565b60405180910390f35b610458610b89565b6040516104659190612ab9565b60405180910390f35b61048860048036038101906104839190612b11565b610c1b565b005b6104a4600480360381019061049f9190612e5a565b610d3f565b005b6104c060048036038101906104bb9190612f3b565b610d55565b005b6104dc60048036038101906104d79190612b11565b610db7565b6040516104e99190612ab9565b60405180910390f35b6104fa610e00565b6040516105079190612ab9565b60405180910390f35b61052a60048036038101906105259190612fbe565b610e20565b6040516105379190612a05565b60405180910390f35b610548610eb4565b6040516105559190612c15565b60405180910390f35b61057860048036038101906105739190612e01565b610eb9565b005b600061058582610f3d565b9050919050565b60606000805461059b9061302d565b80601f01602080910402602001604051908101604052809291908181526020018280546105c79061302d565b80156106145780601f106105e957610100808354040283529160200191610614565b820191906000526020600020905b8154815290600101906020018083116105f757829003601f168201915b5050505050905090565b600061062982610fb7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061066f826109fa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d7906130d1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106ff611002565b73ffffffffffffffffffffffffffffffffffffffff16148061072e575061072d81610728611002565b610e20565b5b61076d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076490613163565b60405180910390fd5b610777838361100a565b505050565b6000600880549050905090565b61079a610794611002565b826110c3565b6107d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d0906131f5565b60405180910390fd5b6107e4838383611158565b505050565b60006107f483610a81565b8210610835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082c90613287565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61138881565b61089c611452565b80600b90805190602001906108b29291906128ae565b5050565b6108be611452565b6108c66114d0565b565b6108d0611452565b60006108dc600c611533565b90506108e8600c611541565b6108f28282611557565b5050565b61091183838360405180602001604052806000815250610d55565b505050565b610927610921611002565b826110c3565b610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095d906131f5565b60405180910390fd5b61096f81611575565b50565b600061097c61077c565b82106109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490613319565b60405180910390fd5b600882815481106109d1576109d0613339565b5b90600052602060002001549050919050565b6000600a60009054906101000a900460ff16905090565b600080610a06836116c3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f906133b4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990613446565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b41611452565b610b4b6000611700565b565b610b55611452565b610b5d6117c6565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b989061302d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc49061302d565b8015610c115780601f10610be657610100808354040283529160200191610c11565b820191906000526020600020905b815481529060010190602001808311610bf457829003601f168201915b5050505050905090565b610c23611829565b60008111610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d906134b2565b60405180910390fd5b6005811115610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190613544565b60405180910390fd5b61138881610cb661077c565b610cc09190613593565b10610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf79061365b565b60405180910390fd5b60005b81811015610d3b57610d1e33610d19600c611533565b611557565b610d28600c611541565b8080610d339061367b565b915050610d03565b5050565b610d51610d4a611002565b8383611873565b5050565b610d66610d60611002565b836110c3565b610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c906131f5565b60405180910390fd5b610db1848484846119e0565b50505050565b6060610dc282610fb7565b6000610dcc611a3c565b905080610dd884611ace565b604051602001610de9929190613798565b604051602081830303815290604052915050919050565b6060604051806060016040528060358152602001613eaa60359139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600581565b610ec1611452565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890613844565b60405180910390fd5b610f3a81611700565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fb05750610faf82611ba6565b5b9050919050565b610fc081611c88565b610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff6906133b4565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661107d836109fa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806110cf836109fa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061111157506111108185610e20565b5b8061114f57508373ffffffffffffffffffffffffffffffffffffffff166111378461061e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611178826109fa565b73ffffffffffffffffffffffffffffffffffffffff16146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c5906138d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590613968565b60405180910390fd5b61124b8383836001611cc9565b8273ffffffffffffffffffffffffffffffffffffffff1661126b826109fa565b73ffffffffffffffffffffffffffffffffffffffff16146112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b8906138d6565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461144d8383836001611ce3565b505050565b61145a611002565b73ffffffffffffffffffffffffffffffffffffffff16611478610b5f565b73ffffffffffffffffffffffffffffffffffffffff16146114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c5906139d4565b60405180910390fd5b565b6114d8611ce9565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61151c611002565b6040516115299190612b7f565b60405180910390a1565b600081600001549050919050565b6001816000016000828254019250508190555050565b611571828260405180602001604052806000815250611d32565b5050565b6000611580826109fa565b9050611590816000846001611cc9565b611599826109fa565b90506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116bf816000846001611ce3565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117ce611829565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611812611002565b60405161181f9190612b7f565b60405180910390a1565b6118316109e3565b15611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890613a40565b60405180910390fd5b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990613aac565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d39190612a05565b60405180910390a3505050565b6119eb848484611158565b6119f784848484611d8d565b611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90613b3e565b60405180910390fd5b50505050565b6060600b8054611a4b9061302d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a779061302d565b8015611ac45780601f10611a9957610100808354040283529160200191611ac4565b820191906000526020600020905b815481529060010190602001808311611aa757829003601f168201915b5050505050905090565b606060006001611add84611f24565b01905060008167ffffffffffffffff811115611afc57611afb612c8d565b5b6040519080825280601f01601f191660200182016040528015611b2e5781602001600182028036833780820191505090505b509050600082602001820190505b600115611b9b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b8557611b84613b5e565b5b0494506000851415611b9657611b9b565b611b3c565b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c7157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c815750611c8082612077565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611caa836116c3565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611cd1611829565b611cdd848484846120e1565b50505050565b50505050565b611cf16109e3565b611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790613bd9565b60405180910390fd5b565b611d3c8383612241565b611d496000848484611d8d565b611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f90613b3e565b60405180910390fd5b505050565b6000611dae8473ffffffffffffffffffffffffffffffffffffffff1661245f565b15611f17578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dd7611002565b8786866040518563ffffffff1660e01b8152600401611df99493929190613c4e565b602060405180830381600087803b158015611e1357600080fd5b505af1925050508015611e4457506040513d601f19601f82011682018060405250810190611e419190613caf565b60015b611ec7573d8060008114611e74576040519150601f19603f3d011682016040523d82523d6000602084013e611e79565b606091505b50600081511415611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690613b3e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f1c565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611f82577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611f7857611f77613b5e565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611fbf576d04ee2d6d415b85acef81000000008381611fb557611fb4613b5e565b5b0492506020810190505b662386f26fc100008310611fee57662386f26fc100008381611fe457611fe3613b5e565b5b0492506010810190505b6305f5e1008310612017576305f5e100838161200d5761200c613b5e565b5b0492506008810190505b612710831061203c57612710838161203257612031613b5e565b5b0492506004810190505b6064831061205f576064838161205557612054613b5e565b5b0492506002810190505b600a831061206e576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120ed84848484612482565b6001811115612131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212890613d4e565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561217957612174816125a8565b6121b8565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146121b7576121b685826125f1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121fb576121f68161275e565b61223a565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461223957612238848261282f565b5b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a890613dba565b60405180910390fd5b6122ba81611c88565b156122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190613e26565b60405180910390fd5b612308600083836001611cc9565b61231181611c88565b15612351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234890613e26565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461245b600083836001611ce3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60018111156125a257600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146125165780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461250e9190613e46565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125a15780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125999190613593565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125fe84610a81565b6126089190613e46565b90506000600760008481526020019081526020016000205490508181146126ed576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127729190613e46565b90506000600960008481526020019081526020016000205490506000600883815481106127a2576127a1613339565b5b9060005260206000200154905080600883815481106127c4576127c3613339565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061281357612812613e7a565b5b6001900381819060005260206000200160009055905550505050565b600061283a83610a81565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546128ba9061302d565b90600052602060002090601f0160209004810192826128dc5760008555612923565b82601f106128f557805160ff1916838001178555612923565b82800160010185558215612923579182015b82811115612922578251825591602001919060010190612907565b5b5090506129309190612934565b5090565b5b8082111561294d576000816000905550600101612935565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61299a81612965565b81146129a557600080fd5b50565b6000813590506129b781612991565b92915050565b6000602082840312156129d3576129d261295b565b5b60006129e1848285016129a8565b91505092915050565b60008115159050919050565b6129ff816129ea565b82525050565b6000602082019050612a1a60008301846129f6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a5a578082015181840152602081019050612a3f565b83811115612a69576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a8b82612a20565b612a958185612a2b565b9350612aa5818560208601612a3c565b612aae81612a6f565b840191505092915050565b60006020820190508181036000830152612ad38184612a80565b905092915050565b6000819050919050565b612aee81612adb565b8114612af957600080fd5b50565b600081359050612b0b81612ae5565b92915050565b600060208284031215612b2757612b2661295b565b5b6000612b3584828501612afc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b6982612b3e565b9050919050565b612b7981612b5e565b82525050565b6000602082019050612b946000830184612b70565b92915050565b612ba381612b5e565b8114612bae57600080fd5b50565b600081359050612bc081612b9a565b92915050565b60008060408385031215612bdd57612bdc61295b565b5b6000612beb85828601612bb1565b9250506020612bfc85828601612afc565b9150509250929050565b612c0f81612adb565b82525050565b6000602082019050612c2a6000830184612c06565b92915050565b600080600060608486031215612c4957612c4861295b565b5b6000612c5786828701612bb1565b9350506020612c6886828701612bb1565b9250506040612c7986828701612afc565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cc582612a6f565b810181811067ffffffffffffffff82111715612ce457612ce3612c8d565b5b80604052505050565b6000612cf7612951565b9050612d038282612cbc565b919050565b600067ffffffffffffffff821115612d2357612d22612c8d565b5b612d2c82612a6f565b9050602081019050919050565b82818337600083830152505050565b6000612d5b612d5684612d08565b612ced565b905082815260208101848484011115612d7757612d76612c88565b5b612d82848285612d39565b509392505050565b600082601f830112612d9f57612d9e612c83565b5b8135612daf848260208601612d48565b91505092915050565b600060208284031215612dce57612dcd61295b565b5b600082013567ffffffffffffffff811115612dec57612deb612960565b5b612df884828501612d8a565b91505092915050565b600060208284031215612e1757612e1661295b565b5b6000612e2584828501612bb1565b91505092915050565b612e37816129ea565b8114612e4257600080fd5b50565b600081359050612e5481612e2e565b92915050565b60008060408385031215612e7157612e7061295b565b5b6000612e7f85828601612bb1565b9250506020612e9085828601612e45565b9150509250929050565b600067ffffffffffffffff821115612eb557612eb4612c8d565b5b612ebe82612a6f565b9050602081019050919050565b6000612ede612ed984612e9a565b612ced565b905082815260208101848484011115612efa57612ef9612c88565b5b612f05848285612d39565b509392505050565b600082601f830112612f2257612f21612c83565b5b8135612f32848260208601612ecb565b91505092915050565b60008060008060808587031215612f5557612f5461295b565b5b6000612f6387828801612bb1565b9450506020612f7487828801612bb1565b9350506040612f8587828801612afc565b925050606085013567ffffffffffffffff811115612fa657612fa5612960565b5b612fb287828801612f0d565b91505092959194509250565b60008060408385031215612fd557612fd461295b565b5b6000612fe385828601612bb1565b9250506020612ff485828601612bb1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061304557607f821691505b6020821081141561305957613058612ffe565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006130bb602183612a2b565b91506130c68261305f565b604082019050919050565b600060208201905081810360008301526130ea816130ae565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061314d603d83612a2b565b9150613158826130f1565b604082019050919050565b6000602082019050818103600083015261317c81613140565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006131df602d83612a2b565b91506131ea82613183565b604082019050919050565b6000602082019050818103600083015261320e816131d2565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613271602b83612a2b565b915061327c82613215565b604082019050919050565b600060208201905081810360008301526132a081613264565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613303602c83612a2b565b915061330e826132a7565b604082019050919050565b60006020820190508181036000830152613332816132f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061339e601883612a2b565b91506133a982613368565b602082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613430602983612a2b565b915061343b826133d4565b604082019050919050565b6000602082019050818103600083015261345f81613423565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b600061349c601d83612a2b565b91506134a782613466565b602082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e206f72206571756160008201527f6c20746f20350000000000000000000000000000000000000000000000000000602082015250565b600061352e602683612a2b565b9150613539826134d2565b604082019050919050565b6000602082019050818103600083015261355d81613521565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061359e82612adb565b91506135a983612adb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135de576135dd613564565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620496e76616465726c696e677300000000000000000000000000000000602082015250565b6000613645603083612a2b565b9150613650826135e9565b604082019050919050565b6000602082019050818103600083015261367481613638565b9050919050565b600061368682612adb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136b9576136b8613564565b5b600182019050919050565b600081905092915050565b60006136da82612a20565b6136e481856136c4565b93506136f4818560208601612a3c565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006137366001836136c4565b915061374182613700565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006137826005836136c4565b915061378d8261374c565b600582019050919050565b60006137a482856136cf565b91506137af82613729565b91506137bb82846136cf565b91506137c682613775565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061382e602683612a2b565b9150613839826137d2565b604082019050919050565b6000602082019050818103600083015261385d81613821565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006138c0602583612a2b565b91506138cb82613864565b604082019050919050565b600060208201905081810360008301526138ef816138b3565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613952602483612a2b565b915061395d826138f6565b604082019050919050565b6000602082019050818103600083015261398181613945565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139be602083612a2b565b91506139c982613988565b602082019050919050565b600060208201905081810360008301526139ed816139b1565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613a2a601083612a2b565b9150613a35826139f4565b602082019050919050565b60006020820190508181036000830152613a5981613a1d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613a96601983612a2b565b9150613aa182613a60565b602082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613b28603283612a2b565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613bc3601483612a2b565b9150613bce82613b8d565b602082019050919050565b60006020820190508181036000830152613bf281613bb6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c2082613bf9565b613c2a8185613c04565b9350613c3a818560208601612a3c565b613c4381612a6f565b840191505092915050565b6000608082019050613c636000830187612b70565b613c706020830186612b70565b613c7d6040830185612c06565b8181036060830152613c8f8184613c15565b905095945050505050565b600081519050613ca981612991565b92915050565b600060208284031215613cc557613cc461295b565b5b6000613cd384828501613c9a565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000613d38603583612a2b565b9150613d4382613cdc565b604082019050919050565b60006020820190508181036000830152613d6781613d2b565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613da4602083612a2b565b9150613daf82613d6e565b602082019050919050565b60006020820190508181036000830152613dd381613d97565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613e10601c83612a2b565b9150613e1b82613dda565b602082019050919050565b60006020820190508181036000830152613e3f81613e03565b9050919050565b6000613e5182612adb565b9150613e5c83612adb565b925082821015613e6f57613e6e613564565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe697066733a2f2f516d56377838414c7533345744677a76545545384e74763348797773626e6f7632625a485967364668534234346ea2646970667358221220c0f1af439ada9907a5f892617a718bbe895e5b35f64ed7b9fc4d1802be307e0364736f6c63430008090033
Deployed Bytecode Sourcemap
67414:2409:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69624:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44672:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46184:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45702:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62037:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46884:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61705:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67550:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68521:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68448:65;;;:::i;:::-;;69113:180;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47290:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60122:242;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62227:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21930:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44382:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44113:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19440:103;;;:::i;:::-;;68379:61;;;:::i;:::-;;18792:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44841:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68630:475;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46427:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47546:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68105:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67845:140;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46653:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67598:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19698:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69624:196;69747:4;69776:36;69800:11;69776:23;:36::i;:::-;69769:43;;69624:196;;;:::o;44672:100::-;44726:13;44759:5;44752:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44672:100;:::o;46184:171::-;46260:7;46280:23;46295:7;46280:14;:23::i;:::-;46323:15;:24;46339:7;46323:24;;;;;;;;;;;;;;;;;;;;;46316:31;;46184:171;;;:::o;45702:416::-;45783:13;45799:23;45814:7;45799:14;:23::i;:::-;45783:39;;45847:5;45841:11;;:2;:11;;;;45833:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45941:5;45925:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45950:37;45967:5;45974:12;:10;:12::i;:::-;45950:16;:37::i;:::-;45925:62;45903:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;46089:21;46098:2;46102:7;46089:8;:21::i;:::-;45772:346;45702:416;;:::o;62037:113::-;62098:7;62125:10;:17;;;;62118:24;;62037:113;:::o;46884:335::-;47079:41;47098:12;:10;:12::i;:::-;47112:7;47079:18;:41::i;:::-;47071:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;47183:28;47193:4;47199:2;47203:7;47183:9;:28::i;:::-;46884:335;;;:::o;61705:256::-;61802:7;61838:23;61855:5;61838:16;:23::i;:::-;61830:5;:31;61822:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;61927:12;:19;61940:5;61927:19;;;;;;;;;;;;;;;:26;61947:5;61927:26;;;;;;;;;;;;61920:33;;61705:256;;;;:::o;67550:41::-;67587:4;67550:41;:::o;68521:101::-;18678:13;:11;:13::i;:::-;68608:6:::1;68594:11;:20;;;;;;;;;;;;:::i;:::-;;68521:101:::0;:::o;68448:65::-;18678:13;:11;:13::i;:::-;68495:10:::1;:8;:10::i;:::-;68448:65::o:0;69113:180::-;18678:13;:11;:13::i;:::-;69171:15:::1;69189:25;:15;:23;:25::i;:::-;69171:43;;69225:27;:15;:25;:27::i;:::-;69263:22;69273:2;69277:7;69263:9;:22::i;:::-;69160:133;69113:180:::0;:::o;47290:185::-;47428:39;47445:4;47451:2;47455:7;47428:39;;;;;;;;;;;;:16;:39::i;:::-;47290:185;;;:::o;60122:242::-;60240:41;60259:12;:10;:12::i;:::-;60273:7;60240:18;:41::i;:::-;60232:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;60342:14;60348:7;60342:5;:14::i;:::-;60122:242;:::o;62227:233::-;62302:7;62338:30;:28;:30::i;:::-;62330:5;:38;62322:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;62435:10;62446:5;62435:17;;;;;;;;:::i;:::-;;;;;;;;;;62428:24;;62227:233;;;:::o;21930:86::-;21977:4;22001:7;;;;;;;;;;;21994:14;;21930:86;:::o;44382:223::-;44454:7;44474:13;44490:17;44499:7;44490:8;:17::i;:::-;44474:33;;44543:1;44526:19;;:5;:19;;;;44518:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;44592:5;44585:12;;;44382:223;;;:::o;44113:207::-;44185:7;44230:1;44213:19;;:5;:19;;;;44205:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44296:9;:16;44306:5;44296:16;;;;;;;;;;;;;;;;44289:23;;44113:207;;;:::o;19440:103::-;18678:13;:11;:13::i;:::-;19505:30:::1;19532:1;19505:18;:30::i;:::-;19440:103::o:0;68379:61::-;18678:13;:11;:13::i;:::-;68424:8:::1;:6;:8::i;:::-;68379:61::o:0;18792:87::-;18838:7;18865:6;;;;;;;;;;;18858:13;;18792:87;:::o;44841:104::-;44897:13;44930:7;44923:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44841:104;:::o;68630:475::-;21535:19;:17;:19::i;:::-;68709:1:::1;68700:6;:10;68692:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;67633:1;68763:6;:18;;68755:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;67587:4;68859:6;68843:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;68835:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;68949:9;68944:154;68968:6;68964:1;:10;68944:154;;;68996:48;69006:10;69018:25;:15;:23;:25::i;:::-;68996:9;:48::i;:::-;69059:27;:15;:25;:27::i;:::-;68976:3;;;;;:::i;:::-;;;;68944:154;;;;68630:475:::0;:::o;46427:155::-;46522:52;46541:12;:10;:12::i;:::-;46555:8;46565;46522:18;:52::i;:::-;46427:155;;:::o;47546:322::-;47720:41;47739:12;:10;:12::i;:::-;47753:7;47720:18;:41::i;:::-;47712:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;47822:38;47836:4;47842:2;47846:7;47855:4;47822:13;:38::i;:::-;47546:322;;;;:::o;68105:266::-;68178:13;68204:23;68219:7;68204:14;:23::i;:::-;68238:21;68262:10;:8;:10::i;:::-;68238:34;;68314:7;68327:25;68344:7;68327:16;:25::i;:::-;68297:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68283:80;;;68105:266;;;:::o;67845:140::-;67889:13;67915:62;;;;;;;;;;;;;;;;;;;67845:140;:::o;46653:164::-;46750:4;46774:18;:25;46793:5;46774:25;;;;;;;;;;;;;;;:35;46800:8;46774:35;;;;;;;;;;;;;;;;;;;;;;;;;46767:42;;46653:164;;;;:::o;67598:36::-;67633:1;67598:36;:::o;19698:201::-;18678:13;:11;:13::i;:::-;19807:1:::1;19787:22;;:8;:22;;;;19779:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19863:28;19882:8;19863:18;:28::i;:::-;19698:201:::0;:::o;61397:224::-;61499:4;61538:35;61523:50;;;:11;:50;;;;:90;;;;61577:36;61601:11;61577:23;:36::i;:::-;61523:90;61516:97;;61397:224;;;:::o;56003:135::-;56085:16;56093:7;56085;:16::i;:::-;56077:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;56003:135;:::o;17343:98::-;17396:7;17423:10;17416:17;;17343:98;:::o;55282:174::-;55384:2;55357:15;:24;55373:7;55357:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;55440:7;55436:2;55402:46;;55411:23;55426:7;55411:14;:23::i;:::-;55402:46;;;;;;;;;;;;55282:174;;:::o;49901:264::-;49994:4;50011:13;50027:23;50042:7;50027:14;:23::i;:::-;50011:39;;50080:5;50069:16;;:7;:16;;;:52;;;;50089:32;50106:5;50113:7;50089:16;:32::i;:::-;50069:52;:87;;;;50149:7;50125:31;;:20;50137:7;50125:11;:20::i;:::-;:31;;;50069:87;50061:96;;;49901:264;;;;:::o;53900:1263::-;54059:4;54032:31;;:23;54047:7;54032:14;:23::i;:::-;:31;;;54024:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;54138:1;54124:16;;:2;:16;;;;54116:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;54194:42;54215:4;54221:2;54225:7;54234:1;54194:20;:42::i;:::-;54366:4;54339:31;;:23;54354:7;54339:14;:23::i;:::-;:31;;;54331:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;54484:15;:24;54500:7;54484:24;;;;;;;;;;;;54477:31;;;;;;;;;;;54979:1;54960:9;:15;54970:4;54960:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;55012:1;54995:9;:13;55005:2;54995:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;55054:2;55035:7;:16;55043:7;55035:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;55093:7;55089:2;55074:27;;55083:4;55074:27;;;;;;;;;;;;55114:41;55134:4;55140:2;55144:7;55153:1;55114:19;:41::i;:::-;53900:1263;;;:::o;18957:132::-;19032:12;:10;:12::i;:::-;19021:23;;:7;:5;:7::i;:::-;:23;;;19013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18957:132::o;22785:120::-;21794:16;:14;:16::i;:::-;22854:5:::1;22844:7;;:15;;;;;;;;;;;;;;;;;;22875:22;22884:12;:10;:12::i;:::-;22875:22;;;;;;:::i;:::-;;;;;;;;22785:120::o:0;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;50507:110::-;50583:26;50593:2;50597:7;50583:26;;;;;;;;;;;;:9;:26::i;:::-;50507:110;;:::o;52780:783::-;52840:13;52856:23;52871:7;52856:14;:23::i;:::-;52840:39;;52892:51;52913:5;52928:1;52932:7;52941:1;52892:20;:51::i;:::-;53056:23;53071:7;53056:14;:23::i;:::-;53048:31;;53127:15;:24;53143:7;53127:24;;;;;;;;;;;;53120:31;;;;;;;;;;;53392:1;53372:9;:16;53382:5;53372:16;;;;;;;;;;;;;;;;:21;;;;;;;;;;;53422:7;:16;53430:7;53422:16;;;;;;;;;;;;53415:23;;;;;;;;;;;53484:7;53480:1;53456:36;;53465:5;53456:36;;;;;;;;;;;;53505:50;53525:5;53540:1;53544:7;53553:1;53505:19;:50::i;:::-;52829:734;52780:783;:::o;49176:117::-;49242:7;49269;:16;49277:7;49269:16;;;;;;;;;;;;;;;;;;;;;49262:23;;49176:117;;;:::o;20059:191::-;20133:16;20152:6;;;;;;;;;;;20133:25;;20178:8;20169:6;;:17;;;;;;;;;;;;;;;;;;20233:8;20202:40;;20223:8;20202:40;;;;;;;;;;;;20122:128;20059:191;:::o;22526:118::-;21535:19;:17;:19::i;:::-;22596:4:::1;22586:7;;:14;;;;;;;;;;;;;;;;;;22616:20;22623:12;:10;:12::i;:::-;22616:20;;;;;;:::i;:::-;;;;;;;;22526:118::o:0;22089:108::-;22160:8;:6;:8::i;:::-;22159:9;22151:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;22089:108::o;55599:315::-;55754:8;55745:17;;:5;:17;;;;55737:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;55841:8;55803:18;:25;55822:5;55803:25;;;;;;;;;;;;;;;:35;55829:8;55803:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;55887:8;55865:41;;55880:5;55865:41;;;55897:8;55865:41;;;;;;:::i;:::-;;;;;;;;55599:315;;;:::o;48749:313::-;48905:28;48915:4;48921:2;48925:7;48905:9;:28::i;:::-;48952:47;48975:4;48981:2;48985:7;48994:4;48952:22;:47::i;:::-;48944:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;48749:313;;;;:::o;67993:104::-;68045:13;68078:11;68071:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67993:104;:::o;14770:716::-;14826:13;14877:14;14914:1;14894:17;14905:5;14894:10;:17::i;:::-;:21;14877:38;;14930:20;14964:6;14953:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14930:41;;14986:11;15115:6;15111:2;15107:15;15099:6;15095:28;15088:35;;15152:288;15159:4;15152:288;;;15184:5;;;;;;;;15326:8;15321:2;15314:5;15310:14;15305:30;15300:3;15292:44;15382:2;15373:11;;;;;;:::i;:::-;;;;;15416:1;15407:5;:10;15403:21;;;15419:5;;15403:21;15152:288;;;15461:6;15454:13;;;;;14770:716;;;:::o;43744:305::-;43846:4;43898:25;43883:40;;;:11;:40;;;;:105;;;;43955:33;43940:48;;;:11;:48;;;;43883:105;:158;;;;44005:36;44029:11;44005:23;:36::i;:::-;43883:158;43863:178;;43744:305;;;:::o;49606:128::-;49671:4;49724:1;49695:31;;:17;49704:7;49695:8;:17::i;:::-;:31;;;;49688:38;;49606:128;;;:::o;69301:245::-;21535:19;:17;:19::i;:::-;69482:56:::1;69509:4;69515:2;69519:7;69528:9;69482:26;:56::i;:::-;69301:245:::0;;;;:::o;59419:158::-;;;;;:::o;22274:108::-;22341:8;:6;:8::i;:::-;22333:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;22274:108::o;50844:319::-;50973:18;50979:2;50983:7;50973:5;:18::i;:::-;51024:53;51055:1;51059:2;51063:7;51072:4;51024:22;:53::i;:::-;51002:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;50844:319;;;:::o;56702:853::-;56856:4;56877:15;:2;:13;;;:15::i;:::-;56873:675;;;56929:2;56913:36;;;56950:12;:10;:12::i;:::-;56964:4;56970:7;56979:4;56913:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;56909:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57171:1;57154:6;:13;:18;57150:328;;;57197:60;;;;;;;;;;:::i;:::-;;;;;;;;57150:328;57428:6;57422:13;57413:6;57409:2;57405:15;57398:38;56909:584;57045:41;;;57035:51;;;:6;:51;;;;57028:58;;;;;56873:675;57532:4;57525:11;;56702:853;;;;;;;:::o;11636:922::-;11689:7;11709:14;11726:1;11709:18;;11776:6;11767:5;:15;11763:102;;11812:6;11803:15;;;;;;:::i;:::-;;;;;11847:2;11837:12;;;;11763:102;11892:6;11883:5;:15;11879:102;;11928:6;11919:15;;;;;;:::i;:::-;;;;;11963:2;11953:12;;;;11879:102;12008:6;11999:5;:15;11995:102;;12044:6;12035:15;;;;;;:::i;:::-;;;;;12079:2;12069:12;;;;11995:102;12124:5;12115;:14;12111:99;;12159:5;12150:14;;;;;;:::i;:::-;;;;;12193:1;12183:11;;;;12111:99;12237:5;12228;:14;12224:99;;12272:5;12263:14;;;;;;:::i;:::-;;;;;12306:1;12296:11;;;;12224:99;12350:5;12341;:14;12337:99;;12385:5;12376:14;;;;;;:::i;:::-;;;;;12419:1;12409:11;;;;12337:99;12463:5;12454;:14;12450:66;;12499:1;12489:11;;;;12450:66;12544:6;12537:13;;;11636:922;;;:::o;35176:157::-;35261:4;35300:25;35285:40;;;:11;:40;;;;35278:47;;35176:157;;;:::o;62534:915::-;62711:61;62738:4;62744:2;62748:12;62762:9;62711:26;:61::i;:::-;62801:1;62789:9;:13;62785:222;;;62932:63;;;;;;;;;;:::i;:::-;;;;;;;;62785:222;63019:15;63037:12;63019:30;;63082:1;63066:18;;:4;:18;;;63062:187;;;63101:40;63133:7;63101:31;:40::i;:::-;63062:187;;;63171:2;63163:10;;:4;:10;;;63159:90;;63190:47;63223:4;63229:7;63190:32;:47::i;:::-;63159:90;63062:187;63277:1;63263:16;;:2;:16;;;63259:183;;;63296:45;63333:7;63296:36;:45::i;:::-;63259:183;;;63369:4;63363:10;;:2;:10;;;63359:83;;63390:40;63418:2;63422:7;63390:27;:40::i;:::-;63359:83;63259:183;62700:749;62534:915;;;;:::o;51499:942::-;51593:1;51579:16;;:2;:16;;;;51571:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;51652:16;51660:7;51652;:16::i;:::-;51651:17;51643:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;51714:48;51743:1;51747:2;51751:7;51760:1;51714:20;:48::i;:::-;51861:16;51869:7;51861;:16::i;:::-;51860:17;51852:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52276:1;52259:9;:13;52269:2;52259:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;52320:2;52301:7;:16;52309:7;52301:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;52365:7;52361:2;52340:33;;52357:1;52340:33;;;;;;;;;;;;52386:47;52414:1;52418:2;52422:7;52431:1;52386:19;:47::i;:::-;51499:942;;:::o;24145:326::-;24205:4;24462:1;24440:7;:19;;;:23;24433:30;;24145:326;;;:::o;58287:410::-;58477:1;58465:9;:13;58461:229;;;58515:1;58499:18;;:4;:18;;;58495:87;;58557:9;58538;:15;58548:4;58538:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;58495:87;58614:1;58600:16;;:2;:16;;;58596:83;;58654:9;58637;:13;58647:2;58637:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;58596:83;58461:229;58287:410;;;;:::o;64172:164::-;64276:10;:17;;;;64249:15;:24;64265:7;64249:24;;;;;;;;;;;:44;;;;64304:10;64320:7;64304:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64172:164;:::o;64963:988::-;65229:22;65279:1;65254:22;65271:4;65254:16;:22::i;:::-;:26;;;;:::i;:::-;65229:51;;65291:18;65312:17;:26;65330:7;65312:26;;;;;;;;;;;;65291:47;;65459:14;65445:10;:28;65441:328;;65490:19;65512:12;:18;65525:4;65512:18;;;;;;;;;;;;;;;:34;65531:14;65512:34;;;;;;;;;;;;65490:56;;65596:11;65563:12;:18;65576:4;65563:18;;;;;;;;;;;;;;;:30;65582:10;65563:30;;;;;;;;;;;:44;;;;65713:10;65680:17;:30;65698:11;65680:30;;;;;;;;;;;:43;;;;65475:294;65441:328;65865:17;:26;65883:7;65865:26;;;;;;;;;;;65858:33;;;65909:12;:18;65922:4;65909:18;;;;;;;;;;;;;;;:34;65928:14;65909:34;;;;;;;;;;;65902:41;;;65044:907;;64963:988;;:::o;66246:1079::-;66499:22;66544:1;66524:10;:17;;;;:21;;;;:::i;:::-;66499:46;;66556:18;66577:15;:24;66593:7;66577:24;;;;;;;;;;;;66556:45;;66928:19;66950:10;66961:14;66950:26;;;;;;;;:::i;:::-;;;;;;;;;;66928:48;;67014:11;66989:10;67000;66989:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;67125:10;67094:15;:28;67110:11;67094:28;;;;;;;;;;;:41;;;;67266:15;:24;67282:7;67266:24;;;;;;;;;;;67259:31;;;67301:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66317:1008;;;66246:1079;:::o;63750:221::-;63835:14;63852:20;63869:2;63852:16;:20::i;:::-;63835:37;;63910:7;63883:12;:16;63896:2;63883:16;;;;;;;;;;;;;;;:24;63900:6;63883:24;;;;;;;;;;;:34;;;;63957:6;63928:17;:26;63946:7;63928:26;;;;;;;;;;;:35;;;;63824:147;63750:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:220::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:3;12837:2;12829:6;12825:15;12818:28;12633:220;:::o;12859:366::-;13001:3;13022:67;13086:2;13081:3;13022:67;:::i;:::-;13015:74;;13098:93;13187:3;13098:93;:::i;:::-;13216:2;13211:3;13207:12;13200:19;;12859:366;;;:::o;13231:419::-;13397:4;13435:2;13424:9;13420:18;13412:26;;13484:9;13478:4;13474:20;13470:1;13459:9;13455:17;13448:47;13512:131;13638:4;13512:131;:::i;:::-;13504:139;;13231:419;;;:::o;13656:248::-;13796:34;13792:1;13784:6;13780:14;13773:58;13865:31;13860:2;13852:6;13848:15;13841:56;13656:248;:::o;13910:366::-;14052:3;14073:67;14137:2;14132:3;14073:67;:::i;:::-;14066:74;;14149:93;14238:3;14149:93;:::i;:::-;14267:2;14262:3;14258:12;14251:19;;13910:366;;;:::o;14282:419::-;14448:4;14486:2;14475:9;14471:18;14463:26;;14535:9;14529:4;14525:20;14521:1;14510:9;14506:17;14499:47;14563:131;14689:4;14563:131;:::i;:::-;14555:139;;14282:419;;;:::o;14707:232::-;14847:34;14843:1;14835:6;14831:14;14824:58;14916:15;14911:2;14903:6;14899:15;14892:40;14707:232;:::o;14945:366::-;15087:3;15108:67;15172:2;15167:3;15108:67;:::i;:::-;15101:74;;15184:93;15273:3;15184:93;:::i;:::-;15302:2;15297:3;15293:12;15286:19;;14945:366;;;:::o;15317:419::-;15483:4;15521:2;15510:9;15506:18;15498:26;;15570:9;15564:4;15560:20;15556:1;15545:9;15541:17;15534:47;15598:131;15724:4;15598:131;:::i;:::-;15590:139;;15317:419;;;:::o;15742:230::-;15882:34;15878:1;15870:6;15866:14;15859:58;15951:13;15946:2;15938:6;15934:15;15927:38;15742:230;:::o;15978:366::-;16120:3;16141:67;16205:2;16200:3;16141:67;:::i;:::-;16134:74;;16217:93;16306:3;16217:93;:::i;:::-;16335:2;16330:3;16326:12;16319:19;;15978:366;;;:::o;16350:419::-;16516:4;16554:2;16543:9;16539:18;16531:26;;16603:9;16597:4;16593:20;16589:1;16578:9;16574:17;16567:47;16631:131;16757:4;16631:131;:::i;:::-;16623:139;;16350:419;;;:::o;16775:231::-;16915:34;16911:1;16903:6;16899:14;16892:58;16984:14;16979:2;16971:6;16967:15;16960:39;16775:231;:::o;17012:366::-;17154:3;17175:67;17239:2;17234:3;17175:67;:::i;:::-;17168:74;;17251:93;17340:3;17251:93;:::i;:::-;17369:2;17364:3;17360:12;17353:19;;17012:366;;;:::o;17384:419::-;17550:4;17588:2;17577:9;17573:18;17565:26;;17637:9;17631:4;17627:20;17623:1;17612:9;17608:17;17601:47;17665:131;17791:4;17665:131;:::i;:::-;17657:139;;17384:419;;;:::o;17809:180::-;17857:77;17854:1;17847:88;17954:4;17951:1;17944:15;17978:4;17975:1;17968:15;17995:174;18135:26;18131:1;18123:6;18119:14;18112:50;17995:174;:::o;18175:366::-;18317:3;18338:67;18402:2;18397:3;18338:67;:::i;:::-;18331:74;;18414:93;18503:3;18414:93;:::i;:::-;18532:2;18527:3;18523:12;18516:19;;18175:366;;;:::o;18547:419::-;18713:4;18751:2;18740:9;18736:18;18728:26;;18800:9;18794:4;18790:20;18786:1;18775:9;18771:17;18764:47;18828:131;18954:4;18828:131;:::i;:::-;18820:139;;18547:419;;;:::o;18972:228::-;19112:34;19108:1;19100:6;19096:14;19089:58;19181:11;19176:2;19168:6;19164:15;19157:36;18972:228;:::o;19206:366::-;19348:3;19369:67;19433:2;19428:3;19369:67;:::i;:::-;19362:74;;19445:93;19534:3;19445:93;:::i;:::-;19563:2;19558:3;19554:12;19547:19;;19206:366;;;:::o;19578:419::-;19744:4;19782:2;19771:9;19767:18;19759:26;;19831:9;19825:4;19821:20;19817:1;19806:9;19802:17;19795:47;19859:131;19985:4;19859:131;:::i;:::-;19851:139;;19578:419;;;:::o;20003:179::-;20143:31;20139:1;20131:6;20127:14;20120:55;20003:179;:::o;20188:366::-;20330:3;20351:67;20415:2;20410:3;20351:67;:::i;:::-;20344:74;;20427:93;20516:3;20427:93;:::i;:::-;20545:2;20540:3;20536:12;20529:19;;20188:366;;;:::o;20560:419::-;20726:4;20764:2;20753:9;20749:18;20741:26;;20813:9;20807:4;20803:20;20799:1;20788:9;20784:17;20777:47;20841:131;20967:4;20841:131;:::i;:::-;20833:139;;20560:419;;;:::o;20985:225::-;21125:34;21121:1;21113:6;21109:14;21102:58;21194:8;21189:2;21181:6;21177:15;21170:33;20985:225;:::o;21216:366::-;21358:3;21379:67;21443:2;21438:3;21379:67;:::i;:::-;21372:74;;21455:93;21544:3;21455:93;:::i;:::-;21573:2;21568:3;21564:12;21557:19;;21216:366;;;:::o;21588:419::-;21754:4;21792:2;21781:9;21777:18;21769:26;;21841:9;21835:4;21831:20;21827:1;21816:9;21812:17;21805:47;21869:131;21995:4;21869:131;:::i;:::-;21861:139;;21588:419;;;:::o;22013:180::-;22061:77;22058:1;22051:88;22158:4;22155:1;22148:15;22182:4;22179:1;22172:15;22199:305;22239:3;22258:20;22276:1;22258:20;:::i;:::-;22253:25;;22292:20;22310:1;22292:20;:::i;:::-;22287:25;;22446:1;22378:66;22374:74;22371:1;22368:81;22365:107;;;22452:18;;:::i;:::-;22365:107;22496:1;22493;22489:9;22482:16;;22199:305;;;;:::o;22510:235::-;22650:34;22646:1;22638:6;22634:14;22627:58;22719:18;22714:2;22706:6;22702:15;22695:43;22510:235;:::o;22751:366::-;22893:3;22914:67;22978:2;22973:3;22914:67;:::i;:::-;22907:74;;22990:93;23079:3;22990:93;:::i;:::-;23108:2;23103:3;23099:12;23092:19;;22751:366;;;:::o;23123:419::-;23289:4;23327:2;23316:9;23312:18;23304:26;;23376:9;23370:4;23366:20;23362:1;23351:9;23347:17;23340:47;23404:131;23530:4;23404:131;:::i;:::-;23396:139;;23123:419;;;:::o;23548:233::-;23587:3;23610:24;23628:5;23610:24;:::i;:::-;23601:33;;23656:66;23649:5;23646:77;23643:103;;;23726:18;;:::i;:::-;23643:103;23773:1;23766:5;23762:13;23755:20;;23548:233;;;:::o;23787:148::-;23889:11;23926:3;23911:18;;23787:148;;;;:::o;23941:377::-;24047:3;24075:39;24108:5;24075:39;:::i;:::-;24130:89;24212:6;24207:3;24130:89;:::i;:::-;24123:96;;24228:52;24273:6;24268:3;24261:4;24254:5;24250:16;24228:52;:::i;:::-;24305:6;24300:3;24296:16;24289:23;;24051:267;23941:377;;;;:::o;24324:151::-;24464:3;24460:1;24452:6;24448:14;24441:27;24324:151;:::o;24481:400::-;24641:3;24662:84;24744:1;24739:3;24662:84;:::i;:::-;24655:91;;24755:93;24844:3;24755:93;:::i;:::-;24873:1;24868:3;24864:11;24857:18;;24481:400;;;:::o;24887:155::-;25027:7;25023:1;25015:6;25011:14;25004:31;24887:155;:::o;25048:400::-;25208:3;25229:84;25311:1;25306:3;25229:84;:::i;:::-;25222:91;;25322:93;25411:3;25322:93;:::i;:::-;25440:1;25435:3;25431:11;25424:18;;25048:400;;;:::o;25454:967::-;25836:3;25858:95;25949:3;25940:6;25858:95;:::i;:::-;25851:102;;25970:148;26114:3;25970:148;:::i;:::-;25963:155;;26135:95;26226:3;26217:6;26135:95;:::i;:::-;26128:102;;26247:148;26391:3;26247:148;:::i;:::-;26240:155;;26412:3;26405:10;;25454:967;;;;;:::o;26427:225::-;26567:34;26563:1;26555:6;26551:14;26544:58;26636:8;26631:2;26623:6;26619:15;26612:33;26427:225;:::o;26658:366::-;26800:3;26821:67;26885:2;26880:3;26821:67;:::i;:::-;26814:74;;26897:93;26986:3;26897:93;:::i;:::-;27015:2;27010:3;27006:12;26999:19;;26658:366;;;:::o;27030:419::-;27196:4;27234:2;27223:9;27219:18;27211:26;;27283:9;27277:4;27273:20;27269:1;27258:9;27254:17;27247:47;27311:131;27437:4;27311:131;:::i;:::-;27303:139;;27030:419;;;:::o;27455:224::-;27595:34;27591:1;27583:6;27579:14;27572:58;27664:7;27659:2;27651:6;27647:15;27640:32;27455:224;:::o;27685:366::-;27827:3;27848:67;27912:2;27907:3;27848:67;:::i;:::-;27841:74;;27924:93;28013:3;27924:93;:::i;:::-;28042:2;28037:3;28033:12;28026:19;;27685:366;;;:::o;28057:419::-;28223:4;28261:2;28250:9;28246:18;28238:26;;28310:9;28304:4;28300:20;28296:1;28285:9;28281:17;28274:47;28338:131;28464:4;28338:131;:::i;:::-;28330:139;;28057:419;;;:::o;28482:223::-;28622:34;28618:1;28610:6;28606:14;28599:58;28691:6;28686:2;28678:6;28674:15;28667:31;28482:223;:::o;28711:366::-;28853:3;28874:67;28938:2;28933:3;28874:67;:::i;:::-;28867:74;;28950:93;29039:3;28950:93;:::i;:::-;29068:2;29063:3;29059:12;29052:19;;28711:366;;;:::o;29083:419::-;29249:4;29287:2;29276:9;29272:18;29264:26;;29336:9;29330:4;29326:20;29322:1;29311:9;29307:17;29300:47;29364:131;29490:4;29364:131;:::i;:::-;29356:139;;29083:419;;;:::o;29508:182::-;29648:34;29644:1;29636:6;29632:14;29625:58;29508:182;:::o;29696:366::-;29838:3;29859:67;29923:2;29918:3;29859:67;:::i;:::-;29852:74;;29935:93;30024:3;29935:93;:::i;:::-;30053:2;30048:3;30044:12;30037:19;;29696:366;;;:::o;30068:419::-;30234:4;30272:2;30261:9;30257:18;30249:26;;30321:9;30315:4;30311:20;30307:1;30296:9;30292:17;30285:47;30349:131;30475:4;30349:131;:::i;:::-;30341:139;;30068:419;;;:::o;30493:166::-;30633:18;30629:1;30621:6;30617:14;30610:42;30493:166;:::o;30665:366::-;30807:3;30828:67;30892:2;30887:3;30828:67;:::i;:::-;30821:74;;30904:93;30993:3;30904:93;:::i;:::-;31022:2;31017:3;31013:12;31006:19;;30665:366;;;:::o;31037:419::-;31203:4;31241:2;31230:9;31226:18;31218:26;;31290:9;31284:4;31280:20;31276:1;31265:9;31261:17;31254:47;31318:131;31444:4;31318:131;:::i;:::-;31310:139;;31037:419;;;:::o;31462:175::-;31602:27;31598:1;31590:6;31586:14;31579:51;31462:175;:::o;31643:366::-;31785:3;31806:67;31870:2;31865:3;31806:67;:::i;:::-;31799:74;;31882:93;31971:3;31882:93;:::i;:::-;32000:2;31995:3;31991:12;31984:19;;31643:366;;;:::o;32015:419::-;32181:4;32219:2;32208:9;32204:18;32196:26;;32268:9;32262:4;32258:20;32254:1;32243:9;32239:17;32232:47;32296:131;32422:4;32296:131;:::i;:::-;32288:139;;32015:419;;;:::o;32440:237::-;32580:34;32576:1;32568:6;32564:14;32557:58;32649:20;32644:2;32636:6;32632:15;32625:45;32440:237;:::o;32683:366::-;32825:3;32846:67;32910:2;32905:3;32846:67;:::i;:::-;32839:74;;32922:93;33011:3;32922:93;:::i;:::-;33040:2;33035:3;33031:12;33024:19;;32683:366;;;:::o;33055:419::-;33221:4;33259:2;33248:9;33244:18;33236:26;;33308:9;33302:4;33298:20;33294:1;33283:9;33279:17;33272:47;33336:131;33462:4;33336:131;:::i;:::-;33328:139;;33055:419;;;:::o;33480:180::-;33528:77;33525:1;33518:88;33625:4;33622:1;33615:15;33649:4;33646:1;33639:15;33666:170;33806:22;33802:1;33794:6;33790:14;33783:46;33666:170;:::o;33842:366::-;33984:3;34005:67;34069:2;34064:3;34005:67;:::i;:::-;33998:74;;34081:93;34170:3;34081:93;:::i;:::-;34199:2;34194:3;34190:12;34183:19;;33842:366;;;:::o;34214:419::-;34380:4;34418:2;34407:9;34403:18;34395:26;;34467:9;34461:4;34457:20;34453:1;34442:9;34438:17;34431:47;34495:131;34621:4;34495:131;:::i;:::-;34487:139;;34214:419;;;:::o;34639:98::-;34690:6;34724:5;34718:12;34708:22;;34639:98;;;:::o;34743:168::-;34826:11;34860:6;34855:3;34848:19;34900:4;34895:3;34891:14;34876:29;;34743:168;;;;:::o;34917:360::-;35003:3;35031:38;35063:5;35031:38;:::i;:::-;35085:70;35148:6;35143:3;35085:70;:::i;:::-;35078:77;;35164:52;35209:6;35204:3;35197:4;35190:5;35186:16;35164:52;:::i;:::-;35241:29;35263:6;35241:29;:::i;:::-;35236:3;35232:39;35225:46;;35007:270;34917:360;;;;:::o;35283:640::-;35478:4;35516:3;35505:9;35501:19;35493:27;;35530:71;35598:1;35587:9;35583:17;35574:6;35530:71;:::i;:::-;35611:72;35679:2;35668:9;35664:18;35655:6;35611:72;:::i;:::-;35693;35761:2;35750:9;35746:18;35737:6;35693:72;:::i;:::-;35812:9;35806:4;35802:20;35797:2;35786:9;35782:18;35775:48;35840:76;35911:4;35902:6;35840:76;:::i;:::-;35832:84;;35283:640;;;;;;;:::o;35929:141::-;35985:5;36016:6;36010:13;36001:22;;36032:32;36058:5;36032:32;:::i;:::-;35929:141;;;;:::o;36076:349::-;36145:6;36194:2;36182:9;36173:7;36169:23;36165:32;36162:119;;;36200:79;;:::i;:::-;36162:119;36320:1;36345:63;36400:7;36391:6;36380:9;36376:22;36345:63;:::i;:::-;36335:73;;36291:127;36076:349;;;;:::o;36431:240::-;36571:34;36567:1;36559:6;36555:14;36548:58;36640:23;36635:2;36627:6;36623:15;36616:48;36431:240;:::o;36677:366::-;36819:3;36840:67;36904:2;36899:3;36840:67;:::i;:::-;36833:74;;36916:93;37005:3;36916:93;:::i;:::-;37034:2;37029:3;37025:12;37018:19;;36677:366;;;:::o;37049:419::-;37215:4;37253:2;37242:9;37238:18;37230:26;;37302:9;37296:4;37292:20;37288:1;37277:9;37273:17;37266:47;37330:131;37456:4;37330:131;:::i;:::-;37322:139;;37049:419;;;:::o;37474:182::-;37614:34;37610:1;37602:6;37598:14;37591:58;37474:182;:::o;37662:366::-;37804:3;37825:67;37889:2;37884:3;37825:67;:::i;:::-;37818:74;;37901:93;37990:3;37901:93;:::i;:::-;38019:2;38014:3;38010:12;38003:19;;37662:366;;;:::o;38034:419::-;38200:4;38238:2;38227:9;38223:18;38215:26;;38287:9;38281:4;38277:20;38273:1;38262:9;38258:17;38251:47;38315:131;38441:4;38315:131;:::i;:::-;38307:139;;38034:419;;;:::o;38459:178::-;38599:30;38595:1;38587:6;38583:14;38576:54;38459:178;:::o;38643:366::-;38785:3;38806:67;38870:2;38865:3;38806:67;:::i;:::-;38799:74;;38882:93;38971:3;38882:93;:::i;:::-;39000:2;38995:3;38991:12;38984:19;;38643:366;;;:::o;39015:419::-;39181:4;39219:2;39208:9;39204:18;39196:26;;39268:9;39262:4;39258:20;39254:1;39243:9;39239:17;39232:47;39296:131;39422:4;39296:131;:::i;:::-;39288:139;;39015:419;;;:::o;39440:191::-;39480:4;39500:20;39518:1;39500:20;:::i;:::-;39495:25;;39534:20;39552:1;39534:20;:::i;:::-;39529:25;;39573:1;39570;39567:8;39564:34;;;39578:18;;:::i;:::-;39564:34;39623:1;39620;39616:9;39608:17;;39440:191;;;;:::o;39637:180::-;39685:77;39682:1;39675:88;39782:4;39779:1;39772:15;39806:4;39803:1;39796:15
Swarm Source
ipfs://c0f1af439ada9907a5f892617a718bbe895e5b35f64ed7b9fc4d1802be307e03
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.