Token oskol_the_bird
Overview ERC-721
Total Supply:
80 NFTC
Holders:
1 addresses
Transfers:
-
Profile Summary
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
oskolthebird
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-18 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/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/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/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: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 1 (e.g. 1, 2, 3, 4..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal _nextTokenId; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _nextTokenId = 1; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { return _nextTokenId - 1; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index + 1; } /** * @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 override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr > 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _nextTokenId && tokenId > 0; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _nextTokenId; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _nextTokenId + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } _nextTokenId = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/oskolthebird.sol pragma solidity ^0.8.0; contract oskolthebird is ERC721A, Ownable, ReentrancyGuard{ uint256 public constant maxSupply = 555; uint public _price = 0.001 ether; uint256 public maxBuyPerTx = 5; bool public paused; constructor() ERC721A("oskol_the_bird", "NFTC") { paused = true; } // Read the price function getPrice() view public returns (uint256){ return _price; } // Write a new price function setPrice(uint256 _newPrice) external onlyOwner() { _price = _newPrice; } // Mint function mint(uint256 _mintAmount) external payable mintCompliance(_mintAmount) { require(paused == false, "Must Unpause"); require(msg.value >= _price * _mintAmount, "Not enough funds"); _safeMint(msg.sender, _mintAmount); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxBuyPerTx, "Invalid buy amount"); require(totalSupply() + _mintAmount <= maxSupply, "Sold out!"); _; } // Mint for Dev function devMint(uint256 _qty) external onlyOwner { require(paused == true, "Must paused"); _safeMint(msg.sender, _qty); } // Withdraw ETH function withdraw() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } // Metadata URI string private _baseTokenURI; // Read Metadata URI function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } // Write Metadata URI function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } // Pause & Unpause minting function setPaused(bool _paused) external onlyOwner { paused = _paused; } }
[{"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_price","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":"_qty","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266038d7ea4c680006009556005600a553480156200002157600080fd5b506040518060400160405280600e81526020016d1bdcdadbdb17dd1a1957d89a5c9960921b815250604051806040016040528060048152602001634e46544360e01b8152508160019081620000779190620001aa565b506002620000868282620001aa565b50506001600055506200009933620000b3565b60016008819055600b805460ff1916909117905562000276565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013057607f821691505b6020821081036200015157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a557600081815260208120601f850160051c81016020861015620001805750805b601f850160051c820191505b81811015620001a1578281556001016200018c565b5050505b505050565b81516001600160401b03811115620001c657620001c662000105565b620001de81620001d784546200011b565b8462000157565b602080601f831160018114620002165760008415620001fd5750858301515b600019600386901b1c1916600185901b178555620001a1565b600085815260208120601f198616915b82811015620002475788860151825594840194600190910190840162000226565b5085821015620002665787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611d4980620002866000396000f3fe6080604052600436106101c25760003560e01c80635c975abb116100f757806398d5fdca11610095578063c87b56dd11610064578063c87b56dd146104c6578063d5abeb01146104e6578063e985e9c5146104fc578063f2fde38b1461051c57600080fd5b806398d5fdca1461045e578063a0712d6814610473578063a22cb46514610486578063b88d4fde146104a657600080fd5b8063715018a6116100d1578063715018a6146103f65780638da5cb5b1461040b57806391b7f5ed1461042957806395d89b411461044957600080fd5b80635c975abb1461039c5780636352211e146103b657806370a08231146103d657600080fd5b8063235b6ea1116101645780633ccfd60b1161013e5780633ccfd60b1461032757806342842e0e1461033c5780634f6ccce71461035c57806355f804b31461037c57600080fd5b8063235b6ea1146102d157806323b872dd146102e7578063375a069a1461030757600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806316c38b3c14610278578063177320a61461029857806318160ddd146102bc57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461176a565b61053c565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161058e565b6040516101f391906117d7565b34801561022a57600080fd5b5061023e6102393660046117ea565b610620565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b5061027661027136600461181f565b6106ae565b005b34801561028457600080fd5b50610276610293366004611859565b6107c5565b3480156102a457600080fd5b506102ae600a5481565b6040519081526020016101f3565b3480156102c857600080fd5b506102ae6107e0565b3480156102dd57600080fd5b506102ae60095481565b3480156102f357600080fd5b50610276610302366004611874565b6107f6565b34801561031357600080fd5b506102766103223660046117ea565b610801565b34801561033357600080fd5b5061027661085b565b34801561034857600080fd5b50610276610357366004611874565b61088f565b34801561036857600080fd5b506102ae6103773660046117ea565b6108aa565b34801561038857600080fd5b506102766103973660046118b0565b610919565b3480156103a857600080fd5b50600b546101e79060ff1681565b3480156103c257600080fd5b5061023e6103d13660046117ea565b61092e565b3480156103e257600080fd5b506102ae6103f1366004611922565b610940565b34801561040257600080fd5b506102766109d1565b34801561041757600080fd5b506007546001600160a01b031661023e565b34801561043557600080fd5b506102766104443660046117ea565b6109e5565b34801561045557600080fd5b506102116109f2565b34801561046a57600080fd5b506009546102ae565b6102766104813660046117ea565b610a01565b34801561049257600080fd5b506102766104a136600461193d565b610b45565b3480156104b257600080fd5b506102766104c1366004611986565b610c09565b3480156104d257600080fd5b506102116104e13660046117ea565b610c42565b3480156104f257600080fd5b506102ae61022b81565b34801561050857600080fd5b506101e7610517366004611a62565b610d0d565b34801561052857600080fd5b50610276610537366004611922565b610d3b565b60006001600160e01b031982166380ac58cd60e01b148061056d57506001600160e01b03198216635b5e139f60e01b145b8061058857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461059d90611a8c565b80601f01602080910402602001604051908101604052809291908181526020018280546105c990611a8c565b80156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b5050505050905090565b600061062b82610db1565b6106925760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106b98261092e565b9050806001600160a01b0316836001600160a01b0316036107275760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610689565b336001600160a01b038216148061074357506107438133610d0d565b6107b55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610689565b6107c0838383610dc4565b505050565b6107cd610e20565b600b805460ff1916911515919091179055565b600060016000546107f19190611adc565b905090565b6107c0838383610e7a565b610809610e20565b600b5460ff16151560011461084e5760405162461bcd60e51b815260206004820152600b60248201526a135d5cdd081c185d5cd95960aa1b6044820152606401610689565b610858338261115d565b50565b610863610e20565b60405133904780156108fc02916000818181858888f19350505050158015610858573d6000803e3d6000fd5b6107c083838360405180602001604052806000815250610c09565b60006108b46107e0565b821061090e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610689565b610588826001611aef565b610921610e20565b600c6107c0828483611b50565b600061093982611177565b5192915050565b60006001600160a01b0382166109ac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610689565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6109d9610e20565b6109e360006112b3565b565b6109ed610e20565b600955565b60606002805461059d90611a8c565b80600081118015610a145750600a548111155b610a555760405162461bcd60e51b8152602060048201526012602482015271125b9d985b1a5908189d5e48185b5bdd5b9d60721b6044820152606401610689565b61022b81610a616107e0565b610a6b9190611aef565b1115610aa55760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610689565b600b5460ff1615610ae75760405162461bcd60e51b815260206004820152600c60248201526b4d75737420556e706175736560a01b6044820152606401610689565b81600954610af59190611c10565b341015610b375760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b6044820152606401610689565b610b41338361115d565b5050565b336001600160a01b03831603610b9d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610689565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c14848484610e7a565b610c2084848484611305565b610c3c5760405162461bcd60e51b815260040161068990611c27565b50505050565b6060610c4d82610db1565b610cb15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610689565b6000610cbb611407565b90508051600003610cdb5760405180602001604052806000815250610d06565b80610ce584611416565b604051602001610cf6929190611c7a565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b610d43610e20565b6001600160a01b038116610da85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610689565b610858816112b3565b6000805482108015610588575050151590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6007546001600160a01b031633146109e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610689565b6000610e8582611177565b80519091506000906001600160a01b0316336001600160a01b03161480610ebc575033610eb184610620565b6001600160a01b0316145b80610ece57508151610ece9033610d0d565b905080610f385760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610689565b846001600160a01b031682600001516001600160a01b031614610fac5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610689565b6001600160a01b0384166110105760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610689565b6110206000848460000151610dc4565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611113576110c681610db1565b15611113578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610b418282604051806020016040528060008152506114a9565b604080518082019091526000808252602082015261119482610db1565b6111f35760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610689565b815b8015611252576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611248579392505050565b50600019016111f5565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610689565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156113fb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611349903390899088908890600401611cb9565b6020604051808303816000875af1925050508015611384575060408051601f3d908101601f1916820190925261138191810190611cf6565b60015b6113e1573d8080156113b2576040519150601f19603f3d011682016040523d82523d6000602084013e6113b7565b606091505b5080516000036113d95760405162461bcd60e51b815260040161068990611c27565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113ff565b5060015b949350505050565b6060600c805461059d90611a8c565b60606000611423836114b6565b600101905060008167ffffffffffffffff81111561144357611443611970565b6040519080825280601f01601f19166020018201604052801561146d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461147757509392505050565b6107c0838383600161158e565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106114f55772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611521576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061153f57662386f26fc10000830492506010015b6305f5e1008310611557576305f5e100830492506008015b612710831061156b57612710830492506004015b6064831061157d576064830492506002015b600a83106105885760010192915050565b6000546001600160a01b0385166115f15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610689565b836000036116525760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610689565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b8581101561174b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561173f576117236000888488611305565b61173f5760405162461bcd60e51b815260040161068990611c27565b600191820191016116d0565b50600055611156565b6001600160e01b03198116811461085857600080fd5b60006020828403121561177c57600080fd5b8135610d0681611754565b60005b838110156117a257818101518382015260200161178a565b50506000910152565b600081518084526117c3816020860160208601611787565b601f01601f19169290920160200192915050565b602081526000610d0660208301846117ab565b6000602082840312156117fc57600080fd5b5035919050565b80356001600160a01b038116811461181a57600080fd5b919050565b6000806040838503121561183257600080fd5b61183b83611803565b946020939093013593505050565b8035801515811461181a57600080fd5b60006020828403121561186b57600080fd5b610d0682611849565b60008060006060848603121561188957600080fd5b61189284611803565b92506118a060208501611803565b9150604084013590509250925092565b600080602083850312156118c357600080fd5b823567ffffffffffffffff808211156118db57600080fd5b818501915085601f8301126118ef57600080fd5b8135818111156118fe57600080fd5b86602082850101111561191057600080fd5b60209290920196919550909350505050565b60006020828403121561193457600080fd5b610d0682611803565b6000806040838503121561195057600080fd5b61195983611803565b915061196760208401611849565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561199c57600080fd5b6119a585611803565b93506119b360208601611803565b925060408501359150606085013567ffffffffffffffff808211156119d757600080fd5b818701915087601f8301126119eb57600080fd5b8135818111156119fd576119fd611970565b604051601f8201601f19908116603f01168101908382118183101715611a2557611a25611970565b816040528281528a6020848701011115611a3e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a7557600080fd5b611a7e83611803565b915061196760208401611803565b600181811c90821680611aa057607f821691505b602082108103611ac057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561058857610588611ac6565b8082018082111561058857610588611ac6565b601f8211156107c057600081815260208120601f850160051c81016020861015611b295750805b601f850160051c820191505b81811015611b4857828155600101611b35565b505050505050565b67ffffffffffffffff831115611b6857611b68611970565b611b7c83611b768354611a8c565b83611b02565b6000601f841160018114611bb05760008515611b985750838201355b600019600387901b1c1916600186901b178355611156565b600083815260209020601f19861690835b82811015611be15786850135825560209485019460019092019101611bc1565b5086821015611bfe5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b808202811582820484141761058857610588611ac6565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611c8c818460208801611787565b835190830190611ca0818360208801611787565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cec908301846117ab565b9695505050505050565b600060208284031215611d0857600080fd5b8151610d068161175456fea26469706673582212209d52bf5b0c42ddb84fd5f38d7ec340c5877c67e18ca10dbf71e56073583f252a64736f6c63430008120033
Deployed ByteCode Sourcemap
55526:1821:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42371:305;;;;;;;;;;-1:-1:-1;42371:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;42371:305:0;;;;;;;;44189:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45759:214::-;;;;;;;;;;-1:-1:-1;45759:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;45759:214:0;1533:203:1;45280:413:0;;;;;;;;;;-1:-1:-1;45280:413:0;;;;;:::i;:::-;;:::i;:::-;;57261:83;;;;;;;;;;-1:-1:-1;57261:83:0;;;;;:::i;:::-;;:::i;55676:30::-;;;;;;;;;;;;;;;;;;;2674:25:1;;;2662:2;2647:18;55676:30:0;2528:177:1;41943:96:0;;;;;;;;;;;;;:::i;55637:32::-;;;;;;;;;;;;;;;;46635:162;;;;;;;;;;-1:-1:-1;46635:162:0;;;;;:::i;:::-;;:::i;56597:145::-;;;;;;;;;;-1:-1:-1;56597:145:0;;;;;:::i;:::-;;:::i;56771:107::-;;;;;;;;;;;;;:::i;46868:177::-;;;;;;;;;;-1:-1:-1;46868:177:0;;;;;:::i;:::-;;:::i;42116:183::-;;;;;;;;;;-1:-1:-1;42116:183:0;;;;;:::i;:::-;;:::i;57115:106::-;;;;;;;;;;-1:-1:-1;57115:106:0;;;;;:::i;:::-;;:::i;55713:18::-;;;;;;;;;;-1:-1:-1;55713:18:0;;;;;;;;43998:124;;;;;;;;;;-1:-1:-1;43998:124:0;;;;;:::i;:::-;;:::i;42740:221::-;;;;;;;;;;-1:-1:-1;42740:221:0;;;;;:::i;:::-;;:::i;20956:103::-;;;;;;;;;;;;;:::i;20308:87::-;;;;;;;;;;-1:-1:-1;20381:6:0;;-1:-1:-1;;;;;20381:6:0;20308:87;;55970:95;;;;;;;;;;-1:-1:-1;55970:95:0;;;;;:::i;:::-;;:::i;44358:104::-;;;;;;;;;;;;;:::i;55855:81::-;;;;;;;;;;-1:-1:-1;55922:6:0;;55855:81;;56090:257;;;;;;:::i;:::-;;:::i;46045:288::-;;;;;;;;;;-1:-1:-1;46045:288:0;;;;;:::i;:::-;;:::i;47116:355::-;;;;;;;;;;-1:-1:-1;47116:355:0;;;;;:::i;:::-;;:::i;44533:343::-;;;;;;;;;;-1:-1:-1;44533:343:0;;;;;:::i;:::-;;:::i;55591:39::-;;;;;;;;;;;;55627:3;55591:39;;46404:164;;;;;;;;;;-1:-1:-1;46404:164:0;;;;;:::i;:::-;;:::i;21214:201::-;;;;;;;;;;-1:-1:-1;21214:201:0;;;;;:::i;:::-;;:::i;42371:305::-;42473:4;-1:-1:-1;;;;;;42510:40:0;;-1:-1:-1;;;42510:40:0;;:105;;-1:-1:-1;;;;;;;42567:48:0;;-1:-1:-1;;;42567:48:0;42510:105;:158;;;-1:-1:-1;;;;;;;;;;34146:40:0;;;42632:36;42490:178;42371:305;-1:-1:-1;;42371:305:0:o;44189:100::-;44243:13;44276:5;44269:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44189:100;:::o;45759:214::-;45827:7;45855:16;45863:7;45855;:16::i;:::-;45847:74;;;;-1:-1:-1;;;45847:74:0;;6217:2:1;45847:74:0;;;6199:21:1;6256:2;6236:18;;;6229:30;6295:34;6275:18;;;6268:62;-1:-1:-1;;;6346:18:1;;;6339:43;6399:19;;45847:74:0;;;;;;;;;-1:-1:-1;45941:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45941:24:0;;45759:214::o;45280:413::-;45353:13;45369:24;45385:7;45369:15;:24::i;:::-;45353:40;;45418:5;-1:-1:-1;;;;;45412:11:0;:2;-1:-1:-1;;;;;45412:11:0;;45404:58;;;;-1:-1:-1;;;45404:58:0;;6631:2:1;45404:58:0;;;6613:21:1;6670:2;6650:18;;;6643:30;6709:34;6689:18;;;6682:62;-1:-1:-1;;;6760:18:1;;;6753:32;6802:19;;45404:58:0;6429:398:1;45404:58:0;18939:10;-1:-1:-1;;;;;45497:21:0;;;;:62;;-1:-1:-1;45522:37:0;45539:5;18939:10;46404:164;:::i;45522:37::-;45475:169;;;;-1:-1:-1;;;45475:169:0;;7034:2:1;45475:169:0;;;7016:21:1;7073:2;7053:18;;;7046:30;7112:34;7092:18;;;7085:62;7183:27;7163:18;;;7156:55;7228:19;;45475:169:0;6832:421:1;45475:169:0;45657:28;45666:2;45670:7;45679:5;45657:8;:28::i;:::-;45342:351;45280:413;;:::o;57261:83::-;20194:13;:11;:13::i;:::-;57320:6:::1;:16:::0;;-1:-1:-1;;57320:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57261:83::o;41943:96::-;41988:7;42030:1;42015:12;;:16;;;;:::i;:::-;42008:23;;41943:96;:::o;46635:162::-;46761:28;46771:4;46777:2;46781:7;46761:9;:28::i;56597:145::-;20194:13;:11;:13::i;:::-;56666:6:::1;::::0;::::1;;:14;;:6:::0;:14:::1;56658:38;;;::::0;-1:-1:-1;;;56658:38:0;;7725:2:1;56658:38:0::1;::::0;::::1;7707:21:1::0;7764:2;7744:18;;;7737:30;-1:-1:-1;;;7783:18:1;;;7776:41;7834:18;;56658:38:0::1;7523:335:1::0;56658:38:0::1;56707:27;56717:10;56729:4;56707:9;:27::i;:::-;56597:145:::0;:::o;56771:107::-;20194:13;:11;:13::i;:::-;56819:51:::1;::::0;56827:10:::1;::::0;56848:21:::1;56819:51:::0;::::1;;;::::0;::::1;::::0;;;56848:21;56827:10;56819:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;46868:177:::0;46998:39;47015:4;47021:2;47025:7;46998:39;;;;;;;;;;;;:16;:39::i;42116:183::-;42175:7;42211:13;:11;:13::i;:::-;42203:5;:21;42195:69;;;;-1:-1:-1;;;42195:69:0;;8065:2:1;42195:69:0;;;8047:21:1;8104:2;8084:18;;;8077:30;8143:34;8123:18;;;8116:62;-1:-1:-1;;;8194:18:1;;;8187:33;8237:19;;42195:69:0;7863:399:1;42195:69:0;42282:9;:5;42290:1;42282:9;:::i;57115:106::-;20194:13;:11;:13::i;:::-;57190::::1;:23;57206:7:::0;;57190:13;:23:::1;:::i;43998:124::-:0;44062:7;44089:20;44101:7;44089:11;:20::i;:::-;:25;;43998:124;-1:-1:-1;;43998:124:0:o;42740:221::-;42804:7;-1:-1:-1;;;;;42832:19:0;;42824:75;;;;-1:-1:-1;;;42824:75:0;;10657:2:1;42824:75:0;;;10639:21:1;10696:2;10676:18;;;10669:30;10735:34;10715:18;;;10708:62;-1:-1:-1;;;10786:18:1;;;10779:41;10837:19;;42824:75:0;10455:407:1;42824:75:0;-1:-1:-1;;;;;;42925:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;42925:27:0;;42740:221::o;20956:103::-;20194:13;:11;:13::i;:::-;21021:30:::1;21048:1;21021:18;:30::i;:::-;20956:103::o:0;55970:95::-;20194:13;:11;:13::i;:::-;56039:6:::1;:18:::0;55970:95::o;44358:104::-;44414:13;44447:7;44440:14;;;;;:::i;56090:257::-;56157:11;56429:1;56415:11;:15;:45;;;;;56449:11;;56434;:26;;56415:45;56407:76;;;;-1:-1:-1;;;56407:76:0;;11069:2:1;56407:76:0;;;11051:21:1;11108:2;11088:18;;;11081:30;-1:-1:-1;;;11127:18:1;;;11120:48;11185:18;;56407:76:0;10867:342:1;56407:76:0;55627:3;56514:11;56498:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;56490:62;;;;-1:-1:-1;;;56490:62:0;;11416:2:1;56490:62:0;;;11398:21:1;11455:1;11435:18;;;11428:29;-1:-1:-1;;;11473:18:1;;;11466:39;11522:18;;56490:62:0;11214:332:1;56490:62:0;56189:6:::1;::::0;::::1;;:15;56181:40;;;::::0;-1:-1:-1;;;56181:40:0;;11753:2:1;56181:40:0::1;::::0;::::1;11735:21:1::0;11792:2;11772:18;;;11765:30;-1:-1:-1;;;11811:18:1;;;11804:42;11863:18;;56181:40:0::1;11551:336:1::0;56181:40:0::1;56262:11;56253:6;;:20;;;;:::i;:::-;56240:9;:33;;56232:62;;;::::0;-1:-1:-1;;;56232:62:0;;12267:2:1;56232:62:0::1;::::0;::::1;12249:21:1::0;12306:2;12286:18;;;12279:30;-1:-1:-1;;;12325:18:1;;;12318:46;12381:18;;56232:62:0::1;12065:340:1::0;56232:62:0::1;56305:34;56315:10;56327:11;56305:9;:34::i;:::-;56090:257:::0;;:::o;46045:288::-;18939:10;-1:-1:-1;;;;;46140:24:0;;;46132:63;;;;-1:-1:-1;;;46132:63:0;;12612:2:1;46132:63:0;;;12594:21:1;12651:2;12631:18;;;12624:30;12690:28;12670:18;;;12663:56;12736:18;;46132:63:0;12410:350:1;46132:63:0;18939:10;46208:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;46208:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;46208:53:0;;;;;;;;;;46277:48;;540:41:1;;;46208:42:0;;18939:10;46277:48;;513:18:1;46277:48:0;;;;;;;46045:288;;:::o;47116:355::-;47275:28;47285:4;47291:2;47295:7;47275:9;:28::i;:::-;47336:48;47359:4;47365:2;47369:7;47378:5;47336:22;:48::i;:::-;47314:149;;;;-1:-1:-1;;;47314:149:0;;;;;;;:::i;:::-;47116:355;;;;:::o;44533:343::-;44606:13;44640:16;44648:7;44640;:16::i;:::-;44632:76;;;;-1:-1:-1;;;44632:76:0;;13387:2:1;44632:76:0;;;13369:21:1;13426:2;13406:18;;;13399:30;13465:34;13445:18;;;13438:62;-1:-1:-1;;;13516:18:1;;;13509:45;13571:19;;44632:76:0;13185:411:1;44632:76:0;44721:21;44745:10;:8;:10::i;:::-;44721:34;;44779:7;44773:21;44798:1;44773:26;:95;;;;;;;;;;;;;;;;;44826:7;44835:18;:7;:16;:18::i;:::-;44809:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44773:95;44766:102;44533:343;-1:-1:-1;;;44533:343:0:o;46404:164::-;-1:-1:-1;;;;;46525:25:0;;;46501:4;46525:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46404:164::o;21214:201::-;20194:13;:11;:13::i;:::-;-1:-1:-1;;;;;21303:22:0;::::1;21295:73;;;::::0;-1:-1:-1;;;21295:73:0;;14471:2:1;21295:73:0::1;::::0;::::1;14453:21:1::0;14510:2;14490:18;;;14483:30;14549:34;14529:18;;;14522:62;-1:-1:-1;;;14600:18:1;;;14593:36;14646:19;;21295:73:0::1;14269:402:1::0;21295:73:0::1;21379:28;21398:8;21379:18;:28::i;47726:126::-:0;47783:4;47817:12;;47807:7;:22;:37;;;;-1:-1:-1;;47833:11:0;;;47726:126::o;52661:196::-;52776:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52776:29:0;-1:-1:-1;;;;;52776:29:0;;;;;;;;;52821:28;;52776:24;;52821:28;;;;;;;52661:196;;;:::o;20473:132::-;20381:6;;-1:-1:-1;;;;;20381:6:0;18939:10;20537:23;20529:68;;;;-1:-1:-1;;;20529:68:0;;14878:2:1;20529:68:0;;;14860:21:1;;;14897:18;;;14890:30;14956:34;14936:18;;;14929:62;15008:18;;20529:68:0;14676:356:1;50541:2002:0;50656:35;50694:20;50706:7;50694:11;:20::i;:::-;50769:18;;50656:58;;-1:-1:-1;50727:22:0;;-1:-1:-1;;;;;50753:34:0;18939:10;-1:-1:-1;;;;;50753:34:0;;:87;;;-1:-1:-1;18939:10:0;50804:20;50816:7;50804:11;:20::i;:::-;-1:-1:-1;;;;;50804:36:0;;50753:87;:154;;;-1:-1:-1;50874:18:0;;50857:50;;18939:10;46404:164;:::i;50857:50::-;50727:181;;50929:17;50921:80;;;;-1:-1:-1;;;50921:80:0;;15239:2:1;50921:80:0;;;15221:21:1;15278:2;15258:18;;;15251:30;15317:34;15297:18;;;15290:62;-1:-1:-1;;;15368:18:1;;;15361:48;15426:19;;50921:80:0;15037:414:1;50921:80:0;51044:4;-1:-1:-1;;;;;51022:26:0;:13;:18;;;-1:-1:-1;;;;;51022:26:0;;51014:77;;;;-1:-1:-1;;;51014:77:0;;15658:2:1;51014:77:0;;;15640:21:1;15697:2;15677:18;;;15670:30;15736:34;15716:18;;;15709:62;-1:-1:-1;;;15787:18:1;;;15780:36;15833:19;;51014:77:0;15456:402:1;51014:77:0;-1:-1:-1;;;;;51110:16:0;;51102:66;;;;-1:-1:-1;;;51102:66:0;;16065:2:1;51102:66:0;;;16047:21:1;16104:2;16084:18;;;16077:30;16143:34;16123:18;;;16116:62;-1:-1:-1;;;16194:18:1;;;16187:35;16239:19;;51102:66:0;15863:401:1;51102:66:0;51289:49;51306:1;51310:7;51319:13;:18;;;51289:8;:49::i;:::-;-1:-1:-1;;;;;51634:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;51634:31:0;;;-1:-1:-1;;;;;51634:31:0;;;-1:-1:-1;;51634:31:0;;;;;;;51680:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;51680:29:0;;;;;;;;;;;;;51726:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;51771:61:0;;;;-1:-1:-1;;;51816:15:0;51771:61;;;;;;52106:11;;;52136:24;;;;;:29;52106:11;;52136:29;52132:295;;52204:20;52212:11;52204:7;:20::i;:::-;52200:212;;;52281:18;;;52249:24;;;:11;:24;;;;;;;;:50;;52364:28;;;;52322:70;;-1:-1:-1;;;52322:70:0;-1:-1:-1;;;;;;52322:70:0;;;-1:-1:-1;;;;;52249:50:0;;;52322:70;;;;;;;52200:212;51609:829;52474:7;52470:2;-1:-1:-1;;;;;52455:27:0;52464:4;-1:-1:-1;;;;;52455:27:0;;;;;;;;;;;52493:42;50645:1898;;50541:2002;;;:::o;47860:104::-;47929:27;47939:2;47943:8;47929:27;;;;;;;;;;;;:9;:27::i;43400:536::-;-1:-1:-1;;;;;;;;;;;;;;;;;43503:16:0;43511:7;43503;:16::i;:::-;43495:71;;;;-1:-1:-1;;;43495:71:0;;16471:2:1;43495:71:0;;;16453:21:1;16510:2;16490:18;;;16483:30;16549:34;16529:18;;;16522:62;-1:-1:-1;;;16600:18:1;;;16593:40;16650:19;;43495:71:0;16269:406:1;43495:71:0;43624:7;43604:244;43633:8;;43604:244;;43670:31;43704:17;;;:11;:17;;;;;;;;;43670:51;;;;;;;;;-1:-1:-1;;;;;43670:51:0;;;;;-1:-1:-1;;;43670:51:0;;;;;;;;;;;;43744:28;43740:93;;43804:9;43400:536;-1:-1:-1;;;43400:536:0:o;43740:93::-;-1:-1:-1;;;43643:6:0;43604:244;;;-1:-1:-1;43871:57:0;;-1:-1:-1;;;43871:57:0;;16882:2:1;43871:57:0;;;16864:21:1;16921:2;16901:18;;;16894:30;16960:34;16940:18;;;16933:62;-1:-1:-1;;;17011:18:1;;;17004:45;17066:19;;43871:57:0;16680:411:1;21575:191:0;21668:6;;;-1:-1:-1;;;;;21685:17:0;;;-1:-1:-1;;;;;;21685:17:0;;;;;;;21718:40;;21668:6;;;21685:17;21668:6;;21718:40;;21649:16;;21718:40;21638:128;21575:191;:::o;53422:804::-;53577:4;-1:-1:-1;;;;;53598:13:0;;23301:19;:23;53594:625;;53634:72;;-1:-1:-1;;;53634:72:0;;-1:-1:-1;;;;;53634:36:0;;;;;:72;;18939:10;;53685:4;;53691:7;;53700:5;;53634:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53634:72:0;;;;;;;;-1:-1:-1;;53634:72:0;;;;;;;;;;;;:::i;:::-;;;53630:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53880:6;:13;53897:1;53880:18;53876:273;;53923:61;;-1:-1:-1;;;53923:61:0;;;;;;;:::i;53876:273::-;54099:6;54093:13;54084:6;54080:2;54076:15;54069:38;53630:534;-1:-1:-1;;;;;;53757:55:0;-1:-1:-1;;;53757:55:0;;-1:-1:-1;53750:62:0;;53594:625;-1:-1:-1;54203:4:0;53594:625;53422:804;;;;;;:::o;56968:114::-;57028:13;57061;57054:20;;;;;:::i;16286:716::-;16342:13;16393:14;16410:17;16421:5;16410:10;:17::i;:::-;16430:1;16410:21;16393:38;;16446:20;16480:6;16469:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16469:18:0;-1:-1:-1;16446:41:0;-1:-1:-1;16611:28:0;;;16627:2;16611:28;16668:288;-1:-1:-1;;16700:5:0;-1:-1:-1;;;16837:2:0;16826:14;;16821:30;16700:5;16808:44;16898:2;16889:11;;;-1:-1:-1;16919:21:0;16668:288;16919:21;-1:-1:-1;16977:6:0;16286:716;-1:-1:-1;;;16286:716:0:o;48327:163::-;48450:32;48456:2;48460:8;48470:5;48477:4;48450:5;:32::i;13152:922::-;13205:7;;-1:-1:-1;;;13283:15:0;;13279:102;;-1:-1:-1;;;13319:15:0;;;-1:-1:-1;13363:2:0;13353:12;13279:102;13408:6;13399:5;:15;13395:102;;13444:6;13435:15;;;-1:-1:-1;13479:2:0;13469:12;13395:102;13524:6;13515:5;:15;13511:102;;13560:6;13551:15;;;-1:-1:-1;13595:2:0;13585:12;13511:102;13640:5;13631;:14;13627:99;;13675:5;13666:14;;;-1:-1:-1;13709:1:0;13699:11;13627:99;13753:5;13744;:14;13740:99;;13788:5;13779:14;;;-1:-1:-1;13822:1:0;13812:11;13740:99;13866:5;13857;:14;13853:99;;13901:5;13892:14;;;-1:-1:-1;13935:1:0;13925:11;13853:99;13979:5;13970;:14;13966:66;;14015:1;14005:11;14060:6;13152:922;-1:-1:-1;;13152:922:0:o;48749:1538::-;48888:20;48911:12;-1:-1:-1;;;;;48942:16:0;;48934:62;;;;-1:-1:-1;;;48934:62:0;;18178:2:1;48934:62:0;;;18160:21:1;18217:2;18197:18;;;18190:30;18256:34;18236:18;;;18229:62;-1:-1:-1;;;18307:18:1;;;18300:31;18348:19;;48934:62:0;17976:397:1;48934:62:0;49015:8;49027:1;49015:13;49007:66;;;;-1:-1:-1;;;49007:66:0;;18580:2:1;49007:66:0;;;18562:21:1;18619:2;18599:18;;;18592:30;18658:34;18638:18;;;18631:62;-1:-1:-1;;;18709:18:1;;;18702:38;18757:19;;49007:66:0;18378:404:1;49007:66:0;-1:-1:-1;;;;;49425:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;49425:45:0;;-1:-1:-1;;;;;49425:45:0;;;;;;;;;;49485:50;;;;;;;;;;;;;;49552:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;49602:66:0;;;;-1:-1:-1;;;49652:15:0;49602:66;;;;;;;49552:25;;49737:415;49757:8;49753:1;:12;49737:415;;;49796:38;;49821:12;;-1:-1:-1;;;;;49796:38:0;;;49813:1;;49796:38;;49813:1;;49796:38;49857:4;49853:249;;;49920:59;49951:1;49955:2;49959:12;49973:5;49920:22;:59::i;:::-;49886:196;;;;-1:-1:-1;;;49886:196:0;;;;;;;:::i;:::-;50122:14;;;;;49767:3;49737:415;;;-1:-1:-1;50168:12:0;:27;50219:60;47116:355;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:160::-;2243:20;;2299:13;;2292:21;2282:32;;2272:60;;2328:1;2325;2318:12;2343:180;2399:6;2452:2;2440:9;2431:7;2427:23;2423:32;2420:52;;;2468:1;2465;2458:12;2420:52;2491:26;2507:9;2491:26;:::i;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:592::-;3114:6;3122;3175:2;3163:9;3154:7;3150:23;3146:32;3143:52;;;3191:1;3188;3181:12;3143:52;3231:9;3218:23;3260:18;3301:2;3293:6;3290:14;3287:34;;;3317:1;3314;3307:12;3287:34;3355:6;3344:9;3340:22;3330:32;;3400:7;3393:4;3389:2;3385:13;3381:27;3371:55;;3422:1;3419;3412:12;3371:55;3462:2;3449:16;3488:2;3480:6;3477:14;3474:34;;;3504:1;3501;3494:12;3474:34;3549:7;3544:2;3535:6;3531:2;3527:15;3523:24;3520:37;3517:57;;;3570:1;3567;3560:12;3517:57;3601:2;3593:11;;;;;3623:6;;-1:-1:-1;3043:592:1;;-1:-1:-1;;;;3043:592:1:o;3640:186::-;3699:6;3752:2;3740:9;3731:7;3727:23;3723:32;3720:52;;;3768:1;3765;3758:12;3720:52;3791:29;3810:9;3791:29;:::i;3831:254::-;3896:6;3904;3957:2;3945:9;3936:7;3932:23;3928:32;3925:52;;;3973:1;3970;3963:12;3925:52;3996:29;4015:9;3996:29;:::i;:::-;3986:39;;4044:35;4075:2;4064:9;4060:18;4044:35;:::i;:::-;4034:45;;3831:254;;;;;:::o;4090:127::-;4151:10;4146:3;4142:20;4139:1;4132:31;4182:4;4179:1;4172:15;4206:4;4203:1;4196:15;4222:1138;4317:6;4325;4333;4341;4394:3;4382:9;4373:7;4369:23;4365:33;4362:53;;;4411:1;4408;4401:12;4362:53;4434:29;4453:9;4434:29;:::i;:::-;4424:39;;4482:38;4516:2;4505:9;4501:18;4482:38;:::i;:::-;4472:48;;4567:2;4556:9;4552:18;4539:32;4529:42;;4622:2;4611:9;4607:18;4594:32;4645:18;4686:2;4678:6;4675:14;4672:34;;;4702:1;4699;4692:12;4672:34;4740:6;4729:9;4725:22;4715:32;;4785:7;4778:4;4774:2;4770:13;4766:27;4756:55;;4807:1;4804;4797:12;4756:55;4843:2;4830:16;4865:2;4861;4858:10;4855:36;;;4871:18;;:::i;:::-;4946:2;4940:9;4914:2;5000:13;;-1:-1:-1;;4996:22:1;;;5020:2;4992:31;4988:40;4976:53;;;5044:18;;;5064:22;;;5041:46;5038:72;;;5090:18;;:::i;:::-;5130:10;5126:2;5119:22;5165:2;5157:6;5150:18;5205:7;5200:2;5195;5191;5187:11;5183:20;5180:33;5177:53;;;5226:1;5223;5216:12;5177:53;5282:2;5277;5273;5269:11;5264:2;5256:6;5252:15;5239:46;5327:1;5322:2;5317;5309:6;5305:15;5301:24;5294:35;5348:6;5338:16;;;;;;;4222:1138;;;;;;;:::o;5365:260::-;5433:6;5441;5494:2;5482:9;5473:7;5469:23;5465:32;5462:52;;;5510:1;5507;5500:12;5462:52;5533:29;5552:9;5533:29;:::i;:::-;5523:39;;5581:38;5615:2;5604:9;5600:18;5581:38;:::i;5630:380::-;5709:1;5705:12;;;;5752;;;5773:61;;5827:4;5819:6;5815:17;5805:27;;5773:61;5880:2;5872:6;5869:14;5849:18;5846:38;5843:161;;5926:10;5921:3;5917:20;5914:1;5907:31;5961:4;5958:1;5951:15;5989:4;5986:1;5979:15;5843:161;;5630:380;;;:::o;7258:127::-;7319:10;7314:3;7310:20;7307:1;7300:31;7350:4;7347:1;7340:15;7374:4;7371:1;7364:15;7390:128;7457:9;;;7478:11;;;7475:37;;;7492:18;;:::i;8267:125::-;8332:9;;;8353:10;;;8350:36;;;8366:18;;:::i;8523:545::-;8625:2;8620:3;8617:11;8614:448;;;8661:1;8686:5;8682:2;8675:17;8731:4;8727:2;8717:19;8801:2;8789:10;8785:19;8782:1;8778:27;8772:4;8768:38;8837:4;8825:10;8822:20;8819:47;;;-1:-1:-1;8860:4:1;8819:47;8915:2;8910:3;8906:12;8903:1;8899:20;8893:4;8889:31;8879:41;;8970:82;8988:2;8981:5;8978:13;8970:82;;;9033:17;;;9014:1;9003:13;8970:82;;;8974:3;;;8523:545;;;:::o;9244:1206::-;9368:18;9363:3;9360:27;9357:53;;;9390:18;;:::i;:::-;9419:94;9509:3;9469:38;9501:4;9495:11;9469:38;:::i;:::-;9463:4;9419:94;:::i;:::-;9539:1;9564:2;9559:3;9556:11;9581:1;9576:616;;;;10236:1;10253:3;10250:93;;;-1:-1:-1;10309:19:1;;;10296:33;10250:93;-1:-1:-1;;9201:1:1;9197:11;;;9193:24;9189:29;9179:40;9225:1;9221:11;;;9176:57;10356:78;;9549:895;;9576:616;8470:1;8463:14;;;8507:4;8494:18;;-1:-1:-1;;9612:17:1;;;9713:9;9735:229;9749:7;9746:1;9743:14;9735:229;;;9838:19;;;9825:33;9810:49;;9945:4;9930:20;;;;9898:1;9886:14;;;;9765:12;9735:229;;;9739:3;9992;9983:7;9980:16;9977:159;;;10116:1;10112:6;10106:3;10100;10097:1;10093:11;10089:21;10085:34;10081:39;10068:9;10063:3;10059:19;10046:33;10042:79;10034:6;10027:95;9977:159;;;10179:1;10173:3;10170:1;10166:11;10162:19;10156:4;10149:33;9549:895;;9244:1206;;;:::o;11892:168::-;11965:9;;;11996;;12013:15;;;12007:22;;11993:37;11983:71;;12034:18;;:::i;12765:415::-;12967:2;12949:21;;;13006:2;12986:18;;;12979:30;13045:34;13040:2;13025:18;;13018:62;-1:-1:-1;;;13111:2:1;13096:18;;13089:49;13170:3;13155:19;;12765:415::o;13601:663::-;13881:3;13919:6;13913:13;13935:66;13994:6;13989:3;13982:4;13974:6;13970:17;13935:66;:::i;:::-;14064:13;;14023:16;;;;14086:70;14064:13;14023:16;14133:4;14121:17;;14086:70;:::i;:::-;-1:-1:-1;;;14178:20:1;;14207:22;;;14256:1;14245:13;;13601:663;-1:-1:-1;;;;13601:663:1:o;17096:489::-;-1:-1:-1;;;;;17365:15:1;;;17347:34;;17417:15;;17412:2;17397:18;;17390:43;17464:2;17449:18;;17442:34;;;17512:3;17507:2;17492:18;;17485:31;;;17290:4;;17533:46;;17559:19;;17551:6;17533:46;:::i;:::-;17525:54;17096:489;-1:-1:-1;;;;;;17096:489:1:o;17590:249::-;17659:6;17712:2;17700:9;17691:7;17687:23;17683:32;17680:52;;;17728:1;17725;17718:12;17680:52;17760:9;17754:16;17779:30;17803:5;17779:30;:::i
Swarm Source
ipfs://9d52bf5b0c42ddb84fd5f38d7ec340c5877c67e18ca10dbf71e56073583f252a