ERC-721
Overview
Max Total Supply
133 WLDT
Holders
39
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 WLDTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WildTigers
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-27 */ // SPDX-License-Identifier: MIT // File operator-filter-registry/src/lib/[email protected] pragma solidity ^0.8.13; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File operator-filter-registry/src/[email protected] pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed( address registrant, address operator ) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe( address registrant, address subscription ) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries( address registrant, address registrantToCopy ) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator( address registrant, address operator, bool filtered ) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators( address registrant, address[] calldata operators, bool filtered ) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash( address registrant, bytes32 codehash, bool filtered ) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes( address registrant, bytes32[] calldata codeHashes, bool filtered ) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe( address registrant, address registrantToSubscribe ) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers( address registrant ) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt( address registrant, uint256 index ) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf( address registrant, address registrantToCopy ) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered( address registrant, address operator ) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered( address registrant, address operatorWithCode ) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered( address registrant, bytes32 codeHash ) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators( address addr ) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes( address addr ) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt( address registrant, uint256 index ) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt( address registrant, uint256 index ) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File operator-filter-registry/src/[email protected] pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe( address(this), subscriptionOrRegistrantToCopy ); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries( address(this), subscriptionOrRegistrantToCopy ); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if ( !OPERATOR_FILTER_REGISTRY.isOperatorAllowed( address(this), operator ) ) { revert OperatorNotAllowed(operator); } } } } // File operator-filter-registry/src/[email protected] pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved( uint256 tokenId ) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll( address owner, address operator ) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/introspection/[email protected] // 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/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt( uint256 a, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2( uint256 value, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10( uint256 value, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256( uint256 value, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string( abi.encodePacked( value < 0 ? "-" : "", toString(SignedMath.abs(value)) ) ); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString( uint256 value, uint256 length ) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal( string memory a, string memory b ) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File @openzeppelin/contracts/token/ERC721/[email protected] // 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/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data ) internal returns (bytes memory) { return functionCallWithValue( target, data, 0, "Address: low-level call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data ) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data ) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert( bytes memory returndata, string memory errorMessage ) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File @openzeppelin/contracts/utils/[email protected] // 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/utils/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._ * _Available since v4.9 for `string`, `bytes`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot( bytes32 slot ) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot( bytes32 slot ) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot( bytes32 slot ) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot( bytes32 slot ) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot( bytes32 slot ) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot( string storage store ) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot( bytes32 slot ) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot( bytes storage store ) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } } // File solidity-bits/contracts/[email protected] /** _____ ___ ___ __ ____ _ __ / ___/____ / (_)___/ (_) /___ __ / __ )(_) /______ \__ \/ __ \/ / / __ / / __/ / / / / __ / / __/ ___/ ___/ / /_/ / / / /_/ / / /_/ /_/ / / /_/ / / /_(__ ) /____/\____/_/_/\__,_/_/\__/\__, / /_____/_/\__/____/ /____/ - npm: https://www.npmjs.com/package/solidity-bits - github: https://github.com/estarriolvetch/solidity-bits */ pragma solidity ^0.8.0; library BitScan { uint256 private constant DEBRUIJN_256 = 0x818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff; bytes private constant LOOKUP_TABLE_256 = hex"0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8"; /** @dev Isolate the least significant set bit. */ function isolateLS1B256(uint256 bb) internal pure returns (uint256) { require(bb > 0); unchecked { return bb & (0 - bb); } } /** @dev Isolate the most significant set bit. */ function isolateMS1B256(uint256 bb) internal pure returns (uint256) { require(bb > 0); unchecked { bb |= bb >> 128; bb |= bb >> 64; bb |= bb >> 32; bb |= bb >> 16; bb |= bb >> 8; bb |= bb >> 4; bb |= bb >> 2; bb |= bb >> 1; return (bb >> 1) + 1; } } /** @dev Find the index of the lest significant set bit. (trailing zero count) */ function bitScanForward256(uint256 bb) internal pure returns (uint8) { unchecked { return uint8( LOOKUP_TABLE_256[(isolateLS1B256(bb) * DEBRUIJN_256) >> 248] ); } } /** @dev Find the index of the most significant set bit. */ function bitScanReverse256(uint256 bb) internal pure returns (uint8) { unchecked { return 255 - uint8( LOOKUP_TABLE_256[ ((isolateMS1B256(bb) * DEBRUIJN_256) >> 248) ] ); } } function log2(uint256 bb) internal pure returns (uint8) { unchecked { return uint8( LOOKUP_TABLE_256[(isolateMS1B256(bb) * DEBRUIJN_256) >> 248] ); } } } // File solidity-bits/contracts/[email protected] /** _____ ___ ___ __ ____ _ __ / ___/____ / (_)___/ (_) /___ __ / __ )(_) /______ \__ \/ __ \/ / / __ / / __/ / / / / __ / / __/ ___/ ___/ / /_/ / / / /_/ / / /_/ /_/ / / /_/ / / /_(__ ) /____/\____/_/_/\__,_/_/\__/\__, / /_____/_/\__/____/ /____/ - npm: https://www.npmjs.com/package/solidity-bits - github: https://github.com/estarriolvetch/solidity-bits */ pragma solidity ^0.8.0; /** * @dev This Library is a modified version of Openzeppelin's BitMaps library. * Functions of finding the index of the closest set bit from a given index are added. * The indexing of each bucket is modifed to count from the MSB to the LSB instead of from the LSB to the MSB. * The modification of indexing makes finding the closest previous set bit more efficient in gas usage. */ /** * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential. * Largelly inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor]. */ library BitMaps { using BitScan for uint256; uint256 private constant MASK_INDEX_ZERO = (1 << 255); uint256 private constant MASK_FULL = type(uint256).max; struct BitMap { mapping(uint256 => uint256) _data; } /** * @dev Returns whether the bit at `index` is set. */ function get( BitMap storage bitmap, uint256 index ) internal view returns (bool) { uint256 bucket = index >> 8; uint256 mask = MASK_INDEX_ZERO >> (index & 0xff); return bitmap._data[bucket] & mask != 0; } /** * @dev Sets the bit at `index` to the boolean `value`. */ function setTo(BitMap storage bitmap, uint256 index, bool value) internal { if (value) { set(bitmap, index); } else { unset(bitmap, index); } } /** * @dev Sets the bit at `index`. */ function set(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = MASK_INDEX_ZERO >> (index & 0xff); bitmap._data[bucket] |= mask; } /** * @dev Unsets the bit at `index`. */ function unset(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = MASK_INDEX_ZERO >> (index & 0xff); bitmap._data[bucket] &= ~mask; } /** * @dev Consecutively sets `amount` of bits starting from the bit at `startIndex`. */ function setBatch( BitMap storage bitmap, uint256 startIndex, uint256 amount ) internal { uint256 bucket = startIndex >> 8; uint256 bucketStartIndex = (startIndex & 0xff); unchecked { if (bucketStartIndex + amount < 256) { bitmap._data[bucket] |= (MASK_FULL << (256 - amount)) >> bucketStartIndex; } else { bitmap._data[bucket] |= MASK_FULL >> bucketStartIndex; amount -= (256 - bucketStartIndex); bucket++; while (amount > 256) { bitmap._data[bucket] = MASK_FULL; amount -= 256; bucket++; } bitmap._data[bucket] |= MASK_FULL << (256 - amount); } } } /** * @dev Consecutively unsets `amount` of bits starting from the bit at `startIndex`. */ function unsetBatch( BitMap storage bitmap, uint256 startIndex, uint256 amount ) internal { uint256 bucket = startIndex >> 8; uint256 bucketStartIndex = (startIndex & 0xff); unchecked { if (bucketStartIndex + amount < 256) { bitmap._data[bucket] &= ~((MASK_FULL << (256 - amount)) >> bucketStartIndex); } else { bitmap._data[bucket] &= ~(MASK_FULL >> bucketStartIndex); amount -= (256 - bucketStartIndex); bucket++; while (amount > 256) { bitmap._data[bucket] = 0; amount -= 256; bucket++; } bitmap._data[bucket] &= ~(MASK_FULL << (256 - amount)); } } } /** * @dev Find the closest index of the set bit before `index`. */ function scanForward( BitMap storage bitmap, uint256 index ) internal view returns (uint256 setBitIndex) { uint256 bucket = index >> 8; // index within the bucket uint256 bucketIndex = (index & 0xff); // load a bitboard from the bitmap. uint256 bb = bitmap._data[bucket]; // offset the bitboard to scan from `bucketIndex`. bb = bb >> (0xff ^ bucketIndex); // bb >> (255 - bucketIndex) if (bb > 0) { unchecked { setBitIndex = (bucket << 8) | (bucketIndex - bb.bitScanForward256()); } } else { while (true) { require( bucket > 0, "BitMaps: The set bit before the index doesn't exist." ); unchecked { bucket--; } // No offset. Always scan from the least significiant bit now. bb = bitmap._data[bucket]; if (bb > 0) { unchecked { setBitIndex = (bucket << 8) | (255 - bb.bitScanForward256()); break; } } } } } function getBucket( BitMap storage bitmap, uint256 bucket ) internal view returns (uint256) { return bitmap._data[bucket]; } } // File erc721psi/contracts/[email protected] /** ______ _____ _____ ______ ___ __ _ _ _ | ____| __ \ / ____|____ |__ \/_ | || || | | |__ | |__) | | / / ) || | \| |/ | | __| | _ /| | / / / / | |\_ _/ | |____| | \ \| |____ / / / /_ | | | | |______|_| \_\\_____|/_/ |____||_| |_| - github: https://github.com/estarriolvetch/ERC721Psi - npm: https://www.npmjs.com/package/erc721psi */ pragma solidity ^0.8.0; contract ERC721Psi is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; using BitMaps for BitMaps.BitMap; BitMaps.BitMap private _batchHead; string private _name; string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) internal _owners; uint256 private _currentIndex; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal pure virtual returns (uint256) { // It will become modifiable in the future versions return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { return _currentIndex - _startTokenId(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf( address owner ) public view virtual override returns (uint) { require( owner != address(0), "ERC721Psi: balance query for the zero address" ); uint count; for (uint i = _startTokenId(); i < _nextTokenId(); ++i) { if (_exists(i)) { if (owner == ownerOf(i)) { ++count; } } } return count; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf( uint256 tokenId ) public view virtual override returns (address) { (address owner, ) = _ownerAndBatchHeadOf(tokenId); return owner; } function _ownerAndBatchHeadOf( uint256 tokenId ) internal view returns (address owner, uint256 tokenIdBatchHead) { require( _exists(tokenId), "ERC721Psi: owner query for nonexistent token" ); tokenIdBatchHead = _getBatchHead(tokenId); owner = _owners[tokenIdBatchHead]; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Psi: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); require(to != owner, "ERC721Psi: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721Psi: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved( uint256 tokenId ) public view virtual override returns (address) { require( _exists(tokenId), "ERC721Psi: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll( address operator, bool approved ) public virtual override { require(operator != _msgSender(), "ERC721Psi: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll( address owner, address operator ) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Psi: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Psi: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, 1, _data), "ERC721Psi: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _nextTokenId() && _startTokenId() <= tokenId; } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner( address spender, uint256 tokenId ) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721Psi: operator query for nonexistent token" ); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ""); } function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { uint256 nextTokenId = _nextTokenId(); _mint(to, quantity); require( _checkOnERC721Received( address(0), to, nextTokenId, quantity, _data ), "ERC721Psi: transfer to non ERC721Receiver implementer" ); } function _mint(address to, uint256 quantity) internal virtual { uint256 nextTokenId = _nextTokenId(); require(quantity > 0, "ERC721Psi: quantity must be greater 0"); require(to != address(0), "ERC721Psi: mint to the zero address"); _beforeTokenTransfers(address(0), to, nextTokenId, quantity); _currentIndex += quantity; _owners[nextTokenId] = to; _batchHead.set(nextTokenId); _afterTokenTransfers(address(0), to, nextTokenId, quantity); // Emit events for ( uint256 tokenId = nextTokenId; tokenId < nextTokenId + quantity; tokenId++ ) { emit Transfer(address(0), to, tokenId); } } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { (address owner, uint256 tokenIdBatchHead) = _ownerAndBatchHeadOf( tokenId ); require(owner == from, "ERC721Psi: transfer of token that is not own"); require(to != address(0), "ERC721Psi: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId); uint256 subsequentTokenId = tokenId + 1; if ( !_batchHead.get(subsequentTokenId) && subsequentTokenId < _nextTokenId() ) { _owners[subsequentTokenId] = from; _batchHead.set(subsequentTokenId); } _owners[tokenId] = to; if (tokenId != tokenIdBatchHead) { _batchHead.set(tokenId); } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param startTokenId uint256 the first ID of the tokens to be transferred * @param quantity uint256 amount of the tokens to be transfered. * @param _data bytes optional data to send along with the call * @return r bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 startTokenId, uint256 quantity, bytes memory _data ) private returns (bool r) { if (to.isContract()) { r = true; for ( uint256 tokenId = startTokenId; tokenId < startTokenId + quantity; tokenId++ ) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { r = r && retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721Psi: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } return r; } else { return true; } } function _getBatchHead( uint256 tokenId ) internal view returns (uint256 tokenIdBatchHead) { tokenIdBatchHead = _batchHead.scanForward(tokenId); } function totalSupply() public view virtual returns (uint256) { return _totalMinted(); } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * This function is compatiable with ERC721AQueryable. */ function tokensOfOwner( address owner ) external view virtual returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); for ( uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i ) { if (_exists(i)) { if (ownerOf(i) == owner) { tokenIds[tokenIdsIdx++] = i; } } } return tokenIds; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } 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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() 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 contracts/Tigers.sol pragma solidity ^0.8.0; contract WildTigers is DefaultOperatorFilterer, ERC721Psi, Ownable { uint256 public constant PUBLIC_MINT_PRICE = 0.025 ether; uint256 public constant WHITELIST_MINT_PRICE = 0.015 ether; uint256 public constant MAX_SUPPLY = 4444; string public baseURI = "ipfs://QmfLrkxkP32pcJF2ozyQNSDWjyf9eFw3xhFY6eqUJgpcLo/"; uint256 public mintStartTime = 1690761600; // July 31 2023 00:00:00 GMT mapping(address => uint) public whitelistedAddresses; constructor() ERC721Psi("Wild Tigers", "WLDT") {} function mint(uint256 _mintAmount) public payable { require( totalSupply() + _mintAmount <= MAX_SUPPLY, "Max supply exceeded!" ); require( block.timestamp >= mintStartTime, "Minting has not started yet!" ); if (whitelistedAddresses[msg.sender] == 1) { require( msg.value >= WHITELIST_MINT_PRICE * _mintAmount, "Insufficient funds to mint!" ); } else { require( msg.value >= PUBLIC_MINT_PRICE * _mintAmount, "Insufficient funds to mint!" ); } // _safeMint's second argument now takes in a quantity, not a tokenId. (same as ERC721A) _safeMint(msg.sender, _mintAmount); } function setMintStartTime(uint256 _mintStartTime) public onlyOwner { mintStartTime = _mintStartTime; } function addToWhitelist(address[] calldata _whitelister) public onlyOwner { for (uint256 i = 0; i < _whitelister.length; i++) { require( whitelistedAddresses[_whitelister[i]] == 0, "Address already whitelisted" ); whitelistedAddresses[_whitelister[i]] = 1; } } function removeFromWhitelist( address[] calldata _whitelister ) public onlyOwner { for (uint256 i = 0; i < _whitelister.length; i++) { require( whitelistedAddresses[_whitelister[i]] > 0, "Address not present in whitelist" ); whitelistedAddresses[_whitelister[i]] = 0; } } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _startTokenId() internal pure virtual override returns (uint256) { return 1; } function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string( abi.encodePacked(_baseURI(), Strings.toString(tokenId), ".json") ); } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function setApprovalForAll( address operator, bool approved ) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve( address operator, uint256 tokenId ) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelister","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address[]","name":"_whitelister","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_mintStartTime","type":"uint256"}],"name":"setMintStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260366080818152906200287960a03960089062000022908262000303565b506364c6f9806009553480156200003857600080fd5b50604080518082018252600b81526a57696c642054696765727360a81b6020808301919091528251808401909352600483526315d3111560e21b9083015290733cc6cdda760b79bafa08df41ecfa224f810dceb660016daaeb6d7670e522a718067333cd4e3b15620001d35780156200012157604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200010257600080fd5b505af115801562000117573d6000803e3d6000fd5b50505050620001d3565b6001600160a01b03821615620001725760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000e7565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001b957600080fd5b505af1158015620001ce573d6000803e3d6000fd5b505050505b5060019050620001e4838262000303565b506002620001f3828262000303565b505060016004555062000206336200020c565b620003cf565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200028957607f821691505b602082108103620002aa57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002fe57600081815260208120601f850160051c81016020861015620002d95750805b601f850160051c820191505b81811015620002fa57828155600101620002e5565b5050505b505050565b81516001600160401b038111156200031f576200031f6200025e565b620003378162000330845462000274565b84620002b0565b602080601f8311600181146200036f5760008415620003565750858301515b600019600386901b1c1916600185901b178555620002fa565b600085815260208120601f198616915b82811015620003a0578886015182559484019460019091019084016200037f565b5085821015620003bf5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61249a80620003df6000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd14610509578063d5b3621b14610529578063e985e9c514610549578063f2fde38b1461056957600080fd5b8063a0712d681461049b578063a22cb465146104ae578063aca9938d146104ce578063b88d4fde146104e957600080fd5b80638462151c116100d15780638462151c146104255780638da5cb5b14610452578063931e2e491461047057806395d89b411461048657600080fd5b806370a08231146103d0578063715018a6146103f05780637f6497831461040557600080fd5b806332cb6b0c1161016f578063548db1741161013e578063548db174146103605780636352211e146103805780636bde2627146103a05780636c0360eb146103bb57600080fd5b806332cb6b0c146102f35780633ccfd60b1461030957806341f434341461031e57806342842e0e1461034057600080fd5b8063081812fc116101ab578063081812fc14610264578063095ea7b31461029c57806318160ddd146102be57806323b872dd146102d357600080fd5b806301ffc9a7146101d257806306c933d81461020757806306fdde0314610242575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611db4565b610589565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610234610222366004611df4565b600a6020526000908152604090205481565b6040519081526020016101fe565b34801561024e57600080fd5b506102576105db565b6040516101fe9190611e5f565b34801561027057600080fd5b5061028461027f366004611e72565b61066d565b6040516001600160a01b0390911681526020016101fe565b3480156102a857600080fd5b506102bc6102b7366004611e8b565b6106fd565b005b3480156102ca57600080fd5b50610234610716565b3480156102df57600080fd5b506102bc6102ee366004611eb5565b610725565b3480156102ff57600080fd5b5061023461115c81565b34801561031557600080fd5b506102bc610750565b34801561032a57600080fd5b506102846daaeb6d7670e522a718067333cd4e81565b34801561034c57600080fd5b506102bc61035b366004611eb5565b6107ad565b34801561036c57600080fd5b506102bc61037b366004611ef1565b6107d2565b34801561038c57600080fd5b5061028461039b366004611e72565b6108fb565b3480156103ac57600080fd5b506102346658d15e1762800081565b3480156103c757600080fd5b5061025761090f565b3480156103dc57600080fd5b506102346103eb366004611df4565b61099d565b3480156103fc57600080fd5b506102bc610a6c565b34801561041157600080fd5b506102bc610420366004611ef1565b610aa2565b34801561043157600080fd5b50610445610440366004611df4565b610bc2565b6040516101fe9190611f66565b34801561045e57600080fd5b506007546001600160a01b0316610284565b34801561047c57600080fd5b5061023460095481565b34801561049257600080fd5b50610257610c89565b6102bc6104a9366004611e72565b610c98565b3480156104ba57600080fd5b506102bc6104c9366004611fb8565b610e2e565b3480156104da57600080fd5b5061023466354a6ba7a1800081565b3480156104f557600080fd5b506102bc610504366004612005565b610e42565b34801561051557600080fd5b50610257610524366004611e72565b610e6f565b34801561053557600080fd5b506102bc610544366004611e72565b610f16565b34801561055557600080fd5b506101f26105643660046120e1565b610f45565b34801561057557600080fd5b506102bc610584366004611df4565b610f73565b60006001600160e01b031982166380ac58cd60e01b14806105ba57506001600160e01b03198216635b5e139f60e01b145b806105d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ea90612114565b80601f016020809104026020016040519081016040528092919081815260200182805461061690612114565b80156106635780601f1061063857610100808354040283529160200191610663565b820191906000526020600020905b81548152906001019060200180831161064657829003601f168201915b5050505050905090565b60006106788261100b565b6106e15760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a20617070726f76656420717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b8161070781611027565b61071183836110e0565b505050565b60006107206111f2565b905090565b826001600160a01b038116331461073f5761073f33611027565b61074a848484611203565b50505050565b6007546001600160a01b0316331461077a5760405162461bcd60e51b81526004016106d89061214e565b6040514790339082156108fc029083906000818181858888f193505050501580156107a9573d6000803e3d6000fd5b5050565b826001600160a01b03811633146107c7576107c733611027565b61074a848484611234565b6007546001600160a01b031633146107fc5760405162461bcd60e51b81526004016106d89061214e565b60005b81811015610711576000600a600085858581811061081f5761081f612183565b90506020020160208101906108349190611df4565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116108a25760405162461bcd60e51b815260206004820181905260248201527f41646472657373206e6f742070726573656e7420696e2077686974656c69737460448201526064016106d8565b6000600a60008585858181106108ba576108ba612183565b90506020020160208101906108cf9190611df4565b6001600160a01b03168152602081019190915260400160002055806108f3816121af565b9150506107ff565b6000806109078361124f565b509392505050565b6008805461091c90612114565b80601f016020809104026020016040519081016040528092919081815260200182805461094890612114565b80156109955780601f1061096a57610100808354040283529160200191610995565b820191906000526020600020905b81548152906001019060200180831161097857829003601f168201915b505050505081565b60006001600160a01b038216610a0b5760405162461bcd60e51b815260206004820152602d60248201527f4552433732315073693a2062616c616e636520717565727920666f722074686560448201526c207a65726f206164647265737360981b60648201526084016106d8565b600060015b600454811015610a6557610a238161100b565b15610a5557610a31816108fb565b6001600160a01b0316846001600160a01b031603610a5557610a52826121af565b91505b610a5e816121af565b9050610a10565b5092915050565b6007546001600160a01b03163314610a965760405162461bcd60e51b81526004016106d89061214e565b610aa060006112e6565b565b6007546001600160a01b03163314610acc5760405162461bcd60e51b81526004016106d89061214e565b60005b8181101561071157600a6000848484818110610aed57610aed612183565b9050602002016020810190610b029190611df4565b6001600160a01b0316815260208101919091526040016000205415610b695760405162461bcd60e51b815260206004820152601b60248201527f4164647265737320616c72656164792077686974656c6973746564000000000060448201526064016106d8565b6001600a6000858585818110610b8157610b81612183565b9050602002016020810190610b969190611df4565b6001600160a01b0316815260208101919091526040016000205580610bba816121af565b915050610acf565b6060600080610bd08461099d565b905060008167ffffffffffffffff811115610bed57610bed611fef565b604051908082528060200260200182016040528015610c16578160200160208202803683370190505b50905060015b828414610c8057610c2c8161100b565b15610c7857856001600160a01b0316610c44826108fb565b6001600160a01b031603610c785780828580600101965081518110610c6b57610c6b612183565b6020026020010181815250505b600101610c1c565b50949350505050565b6060600280546105ea90612114565b61115c81610ca4610716565b610cae91906121c8565b1115610cf35760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106d8565b600954421015610d455760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e6720686173206e6f74207374617274656420796574210000000060448201526064016106d8565b336000908152600a6020526040902054600103610dc157610d6d8166354a6ba7a180006121db565b341015610dbc5760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e7421000000000060448201526064016106d8565b610e21565b610dd2816658d15e176280006121db565b341015610e215760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e7421000000000060448201526064016106d8565b610e2b3382611338565b50565b81610e3881611027565b6107118383611352565b836001600160a01b0381163314610e5c57610e5c33611027565b610e6885858585611416565b5050505050565b6060610e7a8261100b565b610ede5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d8565b610ee6611448565b610eef83611457565b604051602001610f009291906121f2565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610f405760405162461bcd60e51b81526004016106d89061214e565b600955565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6007546001600160a01b03163314610f9d5760405162461bcd60e51b81526004016106d89061214e565b6001600160a01b0381166110025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d8565b610e2b816112e6565b600061101660045490565b821080156105d55750506001111590565b6daaeb6d7670e522a718067333cd4e3b15610e2b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611094573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b89190612231565b610e2b57604051633b79c77360e21b81526001600160a01b03821660048201526024016106d8565b60006110eb826108fb565b9050806001600160a01b0316836001600160a01b03160361115a5760405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a20617070726f76616c20746f2063757272656e74206f6044820152633bb732b960e11b60648201526084016106d8565b336001600160a01b038216148061117657506111768133610f45565b6111e85760405162461bcd60e51b815260206004820152603b60248201527f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c000000000060648201526084016106d8565b61071183836114ea565b60006001600454610720919061224e565b61120d3382611558565b6112295760405162461bcd60e51b81526004016106d890612261565b610711838383611625565b61071183838360405180602001604052806000815250610e42565b60008061125b8361100b565b6112bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d8565b6112c583611811565b6000818152600360205260409020546001600160a01b031694909350915050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107a982826040518060200160405280600081525061181d565b336001600160a01b038316036113aa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732315073693a20617070726f766520746f2063616c6c65720000000060448201526064016106d8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114203383611558565b61143c5760405162461bcd60e51b81526004016106d890612261565b61074a8484848461185e565b6060600880546105ea90612114565b6060600061146483611877565b600101905060008167ffffffffffffffff81111561148457611484611fef565b6040519080825280601f01601f1916602001820160405280156114ae576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846114b857509392505050565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151f826108fb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115638261100b565b6115c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d8565b60006115d2836108fb565b9050806001600160a01b0316846001600160a01b0316148061160d5750836001600160a01b03166116028461066d565b6001600160a01b0316145b8061161d575061161d8185610f45565b949350505050565b6000806116318361124f565b91509150846001600160a01b0316826001600160a01b0316146116ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160448201526b3a1034b9903737ba1037bbb760a11b60648201526084016106d8565b6001600160a01b0384166117115760405162461bcd60e51b815260206004820152602760248201527f4552433732315073693a207472616e7366657220746f20746865207a65726f206044820152666164647265737360c81b60648201526084016106d8565b61171c6000846114ea565b60006117298460016121c8565b600881901c600090815260208190526040902054909150600160ff1b60ff83161c16158015611759575060045481105b1561178f57600081815260036020526040812080546001600160a01b0319166001600160a01b03891617905561178f908261194f565b600084815260036020526040902080546001600160a01b0319166001600160a01b0387161790558184146117c8576117c860008561194f565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60006105d5818361197b565b600061182860045490565b90506118348484611a73565b611842600085838686611be5565b61074a5760405162461bcd60e51b81526004016106d8906122b5565b611869848484611625565b611842848484600185611be5565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106118b65772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106118e2576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061190057662386f26fc10000830492506010015b6305f5e1008310611918576305f5e100830492506008015b612710831061192c57612710830492506004015b6064831061193e576064830492506002015b600a83106105d55760010192915050565b600881901c600090815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b600881901c60008181526020849052604081205490919060ff808516919082181c80156119bd576119ab81611d1c565b60ff168203600884901b179350611a6a565b60008311611a2a5760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b60648201526084016106d8565b506000199091016000818152602086905260409020549091908015611a6557611a5281611d1c565b60ff0360ff16600884901b179350611a6a565b6119bd565b50505092915050565b6000611a7e60045490565b905060008211611ade5760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a207175616e74697479206d7573742062652067726561604482015264074657220360dc1b60648201526084016106d8565b6001600160a01b038316611b405760405162461bcd60e51b815260206004820152602360248201527f4552433732315073693a206d696e7420746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106d8565b8160046000828254611b5291906121c8565b9091555050600081815260036020526040812080546001600160a01b0319166001600160a01b038616179055611b88908261194f565b805b611b9483836121c8565b81101561074a5760405181906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480611bdd816121af565b915050611b8a565b60006001600160a01b0385163b15611d0f57506001835b611c0684866121c8565b811015611d0957604051630a85bd0160e11b81526001600160a01b0387169063150b7a0290611c3f9033908b908690899060040161230a565b6020604051808303816000875af1925050508015611c7a575060408051601f3d908101601f19168201909252611c7791810190612347565b60015b611cd7573d808015611ca8576040519150601f19603f3d011682016040523d82523d6000602084013e611cad565b606091505b508051600003611ccf5760405162461bcd60e51b81526004016106d8906122b5565b805181602001fd5b828015611cf457506001600160e01b03198116630a85bd0160e11b145b92505080611d01816121af565b915050611bfc565b50611d13565b5060015b95945050505050565b60006040518061012001604052806101008152602001612365610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff611d6585611d86565b02901c81518110611d7857611d78612183565b016020015160f81c92915050565b6000808211611d9457600080fd5b5060008190031690565b6001600160e01b031981168114610e2b57600080fd5b600060208284031215611dc657600080fd5b8135611dd181611d9e565b9392505050565b80356001600160a01b0381168114611def57600080fd5b919050565b600060208284031215611e0657600080fd5b611dd182611dd8565b60005b83811015611e2a578181015183820152602001611e12565b50506000910152565b60008151808452611e4b816020860160208601611e0f565b601f01601f19169290920160200192915050565b602081526000611dd16020830184611e33565b600060208284031215611e8457600080fd5b5035919050565b60008060408385031215611e9e57600080fd5b611ea783611dd8565b946020939093013593505050565b600080600060608486031215611eca57600080fd5b611ed384611dd8565b9250611ee160208501611dd8565b9150604084013590509250925092565b60008060208385031215611f0457600080fd5b823567ffffffffffffffff80821115611f1c57600080fd5b818501915085601f830112611f3057600080fd5b813581811115611f3f57600080fd5b8660208260051b8501011115611f5457600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b81811015611f9e57835183529284019291840191600101611f82565b50909695505050505050565b8015158114610e2b57600080fd5b60008060408385031215611fcb57600080fd5b611fd483611dd8565b91506020830135611fe481611faa565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561201b57600080fd5b61202485611dd8565b935061203260208601611dd8565b925060408501359150606085013567ffffffffffffffff8082111561205657600080fd5b818701915087601f83011261206a57600080fd5b81358181111561207c5761207c611fef565b604051601f8201601f19908116603f011681019083821181831017156120a4576120a4611fef565b816040528281528a60208487010111156120bd57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120f457600080fd5b6120fd83611dd8565b915061210b60208401611dd8565b90509250929050565b600181811c9082168061212857607f821691505b60208210810361214857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016121c1576121c1612199565b5060010190565b808201808211156105d5576105d5612199565b80820281158282048414176105d5576105d5612199565b60008351612204818460208801611e0f565b835190830190612218818360208801611e0f565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561224357600080fd5b8151611dd181611faa565b818103818111156105d5576105d5612199565b60208082526034908201527f4552433732315073693a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b60208082526035908201527f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260408201527418a932b1b2b4bb32b91034b6b83632b6b2b73a32b960591b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061233d90830184611e33565b9695505050505050565b60006020828403121561235957600080fd5b8151611dd181611d9e56fe0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a26469706673582212208378f4794fc67ffa89cebb17caec3e5fb760d3785208ab45e9bcf092fb88deb064736f6c63430008120033697066733a2f2f516d664c726b786b50333270634a46326f7a79514e5344576a7966396546773378684659366571554a6770634c6f2f
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd14610509578063d5b3621b14610529578063e985e9c514610549578063f2fde38b1461056957600080fd5b8063a0712d681461049b578063a22cb465146104ae578063aca9938d146104ce578063b88d4fde146104e957600080fd5b80638462151c116100d15780638462151c146104255780638da5cb5b14610452578063931e2e491461047057806395d89b411461048657600080fd5b806370a08231146103d0578063715018a6146103f05780637f6497831461040557600080fd5b806332cb6b0c1161016f578063548db1741161013e578063548db174146103605780636352211e146103805780636bde2627146103a05780636c0360eb146103bb57600080fd5b806332cb6b0c146102f35780633ccfd60b1461030957806341f434341461031e57806342842e0e1461034057600080fd5b8063081812fc116101ab578063081812fc14610264578063095ea7b31461029c57806318160ddd146102be57806323b872dd146102d357600080fd5b806301ffc9a7146101d257806306c933d81461020757806306fdde0314610242575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611db4565b610589565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610234610222366004611df4565b600a6020526000908152604090205481565b6040519081526020016101fe565b34801561024e57600080fd5b506102576105db565b6040516101fe9190611e5f565b34801561027057600080fd5b5061028461027f366004611e72565b61066d565b6040516001600160a01b0390911681526020016101fe565b3480156102a857600080fd5b506102bc6102b7366004611e8b565b6106fd565b005b3480156102ca57600080fd5b50610234610716565b3480156102df57600080fd5b506102bc6102ee366004611eb5565b610725565b3480156102ff57600080fd5b5061023461115c81565b34801561031557600080fd5b506102bc610750565b34801561032a57600080fd5b506102846daaeb6d7670e522a718067333cd4e81565b34801561034c57600080fd5b506102bc61035b366004611eb5565b6107ad565b34801561036c57600080fd5b506102bc61037b366004611ef1565b6107d2565b34801561038c57600080fd5b5061028461039b366004611e72565b6108fb565b3480156103ac57600080fd5b506102346658d15e1762800081565b3480156103c757600080fd5b5061025761090f565b3480156103dc57600080fd5b506102346103eb366004611df4565b61099d565b3480156103fc57600080fd5b506102bc610a6c565b34801561041157600080fd5b506102bc610420366004611ef1565b610aa2565b34801561043157600080fd5b50610445610440366004611df4565b610bc2565b6040516101fe9190611f66565b34801561045e57600080fd5b506007546001600160a01b0316610284565b34801561047c57600080fd5b5061023460095481565b34801561049257600080fd5b50610257610c89565b6102bc6104a9366004611e72565b610c98565b3480156104ba57600080fd5b506102bc6104c9366004611fb8565b610e2e565b3480156104da57600080fd5b5061023466354a6ba7a1800081565b3480156104f557600080fd5b506102bc610504366004612005565b610e42565b34801561051557600080fd5b50610257610524366004611e72565b610e6f565b34801561053557600080fd5b506102bc610544366004611e72565b610f16565b34801561055557600080fd5b506101f26105643660046120e1565b610f45565b34801561057557600080fd5b506102bc610584366004611df4565b610f73565b60006001600160e01b031982166380ac58cd60e01b14806105ba57506001600160e01b03198216635b5e139f60e01b145b806105d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ea90612114565b80601f016020809104026020016040519081016040528092919081815260200182805461061690612114565b80156106635780601f1061063857610100808354040283529160200191610663565b820191906000526020600020905b81548152906001019060200180831161064657829003601f168201915b5050505050905090565b60006106788261100b565b6106e15760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a20617070726f76656420717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b8161070781611027565b61071183836110e0565b505050565b60006107206111f2565b905090565b826001600160a01b038116331461073f5761073f33611027565b61074a848484611203565b50505050565b6007546001600160a01b0316331461077a5760405162461bcd60e51b81526004016106d89061214e565b6040514790339082156108fc029083906000818181858888f193505050501580156107a9573d6000803e3d6000fd5b5050565b826001600160a01b03811633146107c7576107c733611027565b61074a848484611234565b6007546001600160a01b031633146107fc5760405162461bcd60e51b81526004016106d89061214e565b60005b81811015610711576000600a600085858581811061081f5761081f612183565b90506020020160208101906108349190611df4565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116108a25760405162461bcd60e51b815260206004820181905260248201527f41646472657373206e6f742070726573656e7420696e2077686974656c69737460448201526064016106d8565b6000600a60008585858181106108ba576108ba612183565b90506020020160208101906108cf9190611df4565b6001600160a01b03168152602081019190915260400160002055806108f3816121af565b9150506107ff565b6000806109078361124f565b509392505050565b6008805461091c90612114565b80601f016020809104026020016040519081016040528092919081815260200182805461094890612114565b80156109955780601f1061096a57610100808354040283529160200191610995565b820191906000526020600020905b81548152906001019060200180831161097857829003601f168201915b505050505081565b60006001600160a01b038216610a0b5760405162461bcd60e51b815260206004820152602d60248201527f4552433732315073693a2062616c616e636520717565727920666f722074686560448201526c207a65726f206164647265737360981b60648201526084016106d8565b600060015b600454811015610a6557610a238161100b565b15610a5557610a31816108fb565b6001600160a01b0316846001600160a01b031603610a5557610a52826121af565b91505b610a5e816121af565b9050610a10565b5092915050565b6007546001600160a01b03163314610a965760405162461bcd60e51b81526004016106d89061214e565b610aa060006112e6565b565b6007546001600160a01b03163314610acc5760405162461bcd60e51b81526004016106d89061214e565b60005b8181101561071157600a6000848484818110610aed57610aed612183565b9050602002016020810190610b029190611df4565b6001600160a01b0316815260208101919091526040016000205415610b695760405162461bcd60e51b815260206004820152601b60248201527f4164647265737320616c72656164792077686974656c6973746564000000000060448201526064016106d8565b6001600a6000858585818110610b8157610b81612183565b9050602002016020810190610b969190611df4565b6001600160a01b0316815260208101919091526040016000205580610bba816121af565b915050610acf565b6060600080610bd08461099d565b905060008167ffffffffffffffff811115610bed57610bed611fef565b604051908082528060200260200182016040528015610c16578160200160208202803683370190505b50905060015b828414610c8057610c2c8161100b565b15610c7857856001600160a01b0316610c44826108fb565b6001600160a01b031603610c785780828580600101965081518110610c6b57610c6b612183565b6020026020010181815250505b600101610c1c565b50949350505050565b6060600280546105ea90612114565b61115c81610ca4610716565b610cae91906121c8565b1115610cf35760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106d8565b600954421015610d455760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e6720686173206e6f74207374617274656420796574210000000060448201526064016106d8565b336000908152600a6020526040902054600103610dc157610d6d8166354a6ba7a180006121db565b341015610dbc5760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e7421000000000060448201526064016106d8565b610e21565b610dd2816658d15e176280006121db565b341015610e215760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e7421000000000060448201526064016106d8565b610e2b3382611338565b50565b81610e3881611027565b6107118383611352565b836001600160a01b0381163314610e5c57610e5c33611027565b610e6885858585611416565b5050505050565b6060610e7a8261100b565b610ede5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d8565b610ee6611448565b610eef83611457565b604051602001610f009291906121f2565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610f405760405162461bcd60e51b81526004016106d89061214e565b600955565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6007546001600160a01b03163314610f9d5760405162461bcd60e51b81526004016106d89061214e565b6001600160a01b0381166110025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d8565b610e2b816112e6565b600061101660045490565b821080156105d55750506001111590565b6daaeb6d7670e522a718067333cd4e3b15610e2b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611094573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b89190612231565b610e2b57604051633b79c77360e21b81526001600160a01b03821660048201526024016106d8565b60006110eb826108fb565b9050806001600160a01b0316836001600160a01b03160361115a5760405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a20617070726f76616c20746f2063757272656e74206f6044820152633bb732b960e11b60648201526084016106d8565b336001600160a01b038216148061117657506111768133610f45565b6111e85760405162461bcd60e51b815260206004820152603b60248201527f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c000000000060648201526084016106d8565b61071183836114ea565b60006001600454610720919061224e565b61120d3382611558565b6112295760405162461bcd60e51b81526004016106d890612261565b610711838383611625565b61071183838360405180602001604052806000815250610e42565b60008061125b8361100b565b6112bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d8565b6112c583611811565b6000818152600360205260409020546001600160a01b031694909350915050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107a982826040518060200160405280600081525061181d565b336001600160a01b038316036113aa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732315073693a20617070726f766520746f2063616c6c65720000000060448201526064016106d8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114203383611558565b61143c5760405162461bcd60e51b81526004016106d890612261565b61074a8484848461185e565b6060600880546105ea90612114565b6060600061146483611877565b600101905060008167ffffffffffffffff81111561148457611484611fef565b6040519080825280601f01601f1916602001820160405280156114ae576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846114b857509392505050565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151f826108fb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115638261100b565b6115c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d8565b60006115d2836108fb565b9050806001600160a01b0316846001600160a01b0316148061160d5750836001600160a01b03166116028461066d565b6001600160a01b0316145b8061161d575061161d8185610f45565b949350505050565b6000806116318361124f565b91509150846001600160a01b0316826001600160a01b0316146116ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160448201526b3a1034b9903737ba1037bbb760a11b60648201526084016106d8565b6001600160a01b0384166117115760405162461bcd60e51b815260206004820152602760248201527f4552433732315073693a207472616e7366657220746f20746865207a65726f206044820152666164647265737360c81b60648201526084016106d8565b61171c6000846114ea565b60006117298460016121c8565b600881901c600090815260208190526040902054909150600160ff1b60ff83161c16158015611759575060045481105b1561178f57600081815260036020526040812080546001600160a01b0319166001600160a01b03891617905561178f908261194f565b600084815260036020526040902080546001600160a01b0319166001600160a01b0387161790558184146117c8576117c860008561194f565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60006105d5818361197b565b600061182860045490565b90506118348484611a73565b611842600085838686611be5565b61074a5760405162461bcd60e51b81526004016106d8906122b5565b611869848484611625565b611842848484600185611be5565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106118b65772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106118e2576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061190057662386f26fc10000830492506010015b6305f5e1008310611918576305f5e100830492506008015b612710831061192c57612710830492506004015b6064831061193e576064830492506002015b600a83106105d55760010192915050565b600881901c600090815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b600881901c60008181526020849052604081205490919060ff808516919082181c80156119bd576119ab81611d1c565b60ff168203600884901b179350611a6a565b60008311611a2a5760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b60648201526084016106d8565b506000199091016000818152602086905260409020549091908015611a6557611a5281611d1c565b60ff0360ff16600884901b179350611a6a565b6119bd565b50505092915050565b6000611a7e60045490565b905060008211611ade5760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a207175616e74697479206d7573742062652067726561604482015264074657220360dc1b60648201526084016106d8565b6001600160a01b038316611b405760405162461bcd60e51b815260206004820152602360248201527f4552433732315073693a206d696e7420746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106d8565b8160046000828254611b5291906121c8565b9091555050600081815260036020526040812080546001600160a01b0319166001600160a01b038616179055611b88908261194f565b805b611b9483836121c8565b81101561074a5760405181906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480611bdd816121af565b915050611b8a565b60006001600160a01b0385163b15611d0f57506001835b611c0684866121c8565b811015611d0957604051630a85bd0160e11b81526001600160a01b0387169063150b7a0290611c3f9033908b908690899060040161230a565b6020604051808303816000875af1925050508015611c7a575060408051601f3d908101601f19168201909252611c7791810190612347565b60015b611cd7573d808015611ca8576040519150601f19603f3d011682016040523d82523d6000602084013e611cad565b606091505b508051600003611ccf5760405162461bcd60e51b81526004016106d8906122b5565b805181602001fd5b828015611cf457506001600160e01b03198116630a85bd0160e11b145b92505080611d01816121af565b915050611bfc565b50611d13565b5060015b95945050505050565b60006040518061012001604052806101008152602001612365610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff611d6585611d86565b02901c81518110611d7857611d78612183565b016020015160f81c92915050565b6000808211611d9457600080fd5b5060008190031690565b6001600160e01b031981168114610e2b57600080fd5b600060208284031215611dc657600080fd5b8135611dd181611d9e565b9392505050565b80356001600160a01b0381168114611def57600080fd5b919050565b600060208284031215611e0657600080fd5b611dd182611dd8565b60005b83811015611e2a578181015183820152602001611e12565b50506000910152565b60008151808452611e4b816020860160208601611e0f565b601f01601f19169290920160200192915050565b602081526000611dd16020830184611e33565b600060208284031215611e8457600080fd5b5035919050565b60008060408385031215611e9e57600080fd5b611ea783611dd8565b946020939093013593505050565b600080600060608486031215611eca57600080fd5b611ed384611dd8565b9250611ee160208501611dd8565b9150604084013590509250925092565b60008060208385031215611f0457600080fd5b823567ffffffffffffffff80821115611f1c57600080fd5b818501915085601f830112611f3057600080fd5b813581811115611f3f57600080fd5b8660208260051b8501011115611f5457600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b81811015611f9e57835183529284019291840191600101611f82565b50909695505050505050565b8015158114610e2b57600080fd5b60008060408385031215611fcb57600080fd5b611fd483611dd8565b91506020830135611fe481611faa565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561201b57600080fd5b61202485611dd8565b935061203260208601611dd8565b925060408501359150606085013567ffffffffffffffff8082111561205657600080fd5b818701915087601f83011261206a57600080fd5b81358181111561207c5761207c611fef565b604051601f8201601f19908116603f011681019083821181831017156120a4576120a4611fef565b816040528281528a60208487010111156120bd57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120f457600080fd5b6120fd83611dd8565b915061210b60208401611dd8565b90509250929050565b600181811c9082168061212857607f821691505b60208210810361214857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016121c1576121c1612199565b5060010190565b808201808211156105d5576105d5612199565b80820281158282048414176105d5576105d5612199565b60008351612204818460208801611e0f565b835190830190612218818360208801611e0f565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561224357600080fd5b8151611dd181611faa565b818103818111156105d5576105d5612199565b60208082526034908201527f4552433732315073693a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b60208082526035908201527f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260408201527418a932b1b2b4bb32b91034b6b83632b6b2b73a32b960591b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061233d90830184611e33565b9695505050505050565b60006020828403121561235957600080fd5b8151611dd181611d9e56fe0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a26469706673582212208378f4794fc67ffa89cebb17caec3e5fb760d3785208ab45e9bcf092fb88deb064736f6c63430008120033
Deployed Bytecode Sourcemap
83317:4067:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65896:321;;;;;;;;;;-1:-1:-1;65896:321:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;65896:321:0;;;;;;;;83741:52;;;;;;;;;;-1:-1:-1;83741:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1107:25:1;;;1095:2;1080:18;83741:52:0;961:177:1;67448:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;69064:277::-;;;;;;;;;;-1:-1:-1;69064:277:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2248:32:1;;;2230:51;;2218:2;2203:18;69064:277:0;2084:203:1;86534:182:0;;;;;;;;;;-1:-1:-1;86534:182:0;;;;;:::i;:::-;;:::i;:::-;;79007:101;;;;;;;;;;;;;:::i;86724:197::-;;;;;;;;;;-1:-1:-1;86724:197:0;;;;;:::i;:::-;;:::i;83518:41::-;;;;;;;;;;;;83555:4;83518:41;;86174:143;;;;;;;;;;;;;:::i;8231:::-;;;;;;;;;;;;186:42;8231:143;;86929:205;;;;;;;;;;-1:-1:-1;86929:205:0;;;;;:::i;:::-;;:::i;85181:381::-;;;;;;;;;;-1:-1:-1;85181:381:0;;;;;:::i;:::-;;:::i;66833:188::-;;;;;;;;;;-1:-1:-1;66833:188:0;;;;;:::i;:::-;;:::i;83391:55::-;;;;;;;;;;;;83435:11;83391:55;;83566:89;;;;;;;;;;;;;:::i;66281:490::-;;;;;;;;;;-1:-1:-1;66281:490:0;;;;;:::i;:::-;;:::i;82404:103::-;;;;;;;;;;;;;:::i;84817:356::-;;;;;;;;;;-1:-1:-1;84817:356:0;;;;;:::i;:::-;;:::i;79404:680::-;;;;;;;;;;-1:-1:-1;79404:680:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;81745:87::-;;;;;;;;;;-1:-1:-1;81818:6:0;;-1:-1:-1;;;;;81818:6:0;81745:87;;83662:41;;;;;;;;;;;;;;;;67617:104;;;;;;;;;;;;;:::i;83859:826::-;;;;;;:::i;:::-;;:::i;86325:201::-;;;;;;;;;;-1:-1:-1;86325:201:0;;;;;:::i;:::-;;:::i;83453:58::-;;;;;;;;;;;;83500:11;83453:58;;87142:239;;;;;;;;;;-1:-1:-1;87142:239:0;;;;;:::i;:::-;;:::i;85795:371::-;;;;;;;;;;-1:-1:-1;85795:371:0;;;;;:::i;:::-;;:::i;84693:116::-;;;;;;;;;;-1:-1:-1;84693:116:0;;;;;:::i;:::-;;:::i;69807:189::-;;;;;;;;;;-1:-1:-1;69807:189:0;;;;;:::i;:::-;;:::i;82662:238::-;;;;;;;;;;-1:-1:-1;82662:238:0;;;;;:::i;:::-;;:::i;65896:321::-;66014:4;-1:-1:-1;;;;;;66051:40:0;;-1:-1:-1;;;66051:40:0;;:105;;-1:-1:-1;;;;;;;66108:48:0;;-1:-1:-1;;;66108:48:0;66051:105;:158;;;-1:-1:-1;;;;;;;;;;19677:40:0;;;66173:36;66031:178;65896:321;-1:-1:-1;;65896:321:0:o;67448:100::-;67502:13;67535:5;67528:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67448:100;:::o;69064:277::-;69156:7;69198:16;69206:7;69198;:16::i;:::-;69176:113;;;;-1:-1:-1;;;69176:113:0;;6950:2:1;69176:113:0;;;6932:21:1;6989:2;6969:18;;;6962:30;7028:34;7008:18;;;7001:62;-1:-1:-1;;;7079:18:1;;;7072:45;7134:19;;69176:113:0;;;;;;;;;-1:-1:-1;69309:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;69309:24:0;;69064:277::o;86534:182::-;86655:8;10147:30;10168:8;10147:20;:30::i;:::-;86676:32:::1;86690:8;86700:7;86676:13;:32::i;:::-;86534:182:::0;;;:::o;79007:101::-;79059:7;79086:14;:12;:14::i;:::-;79079:21;;79007:101;:::o;86724:197::-;86859:4;-1:-1:-1;;;;;9873:18:0;;9881:10;9873:18;9869:83;;9908:32;9929:10;9908:20;:32::i;:::-;86876:37:::1;86895:4;86901:2;86905:7;86876:18;:37::i;:::-;86724:197:::0;;;;:::o;86174:143::-;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;86272:37:::1;::::0;86240:21:::1;::::0;86280:10:::1;::::0;86272:37;::::1;;;::::0;86240:21;;86222:15:::1;86272:37:::0;86222:15;86272:37;86240:21;86280:10;86272:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;86211:106;86174:143::o:0;86929:205::-;87068:4;-1:-1:-1;;;;;9873:18:0;;9881:10;9873:18;9869:83;;9908:32;9929:10;9908:20;:32::i;:::-;87085:41:::1;87108:4;87114:2;87118:7;87085:22;:41::i;85181:381::-:0;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;85292:9:::1;85287:268;85307:23:::0;;::::1;85287:268;;;85418:1;85378:20;:37;85399:12;;85412:1;85399:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;85378:37:0::1;-1:-1:-1::0;;;;;85378:37:0::1;;;;;;;;;;;;;:41;85352:135;;;::::0;-1:-1:-1;;;85352:135:0;;7859:2:1;85352:135:0::1;::::0;::::1;7841:21:1::0;;;7878:18;;;7871:30;7937:34;7917:18;;;7910:62;7989:18;;85352:135:0::1;7657:356:1::0;85352:135:0::1;85542:1;85502:20;:37;85523:12;;85536:1;85523:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;85502:37:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;85502:37:0;:41;85332:3;::::1;::::0;::::1;:::i;:::-;;;;85287:268;;66833:188:::0;66921:7;66942:13;66961:29;66982:7;66961:20;:29::i;:::-;-1:-1:-1;66941:49:0;66833:188;-1:-1:-1;;;66833:188:0:o;83566:89::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66281:490::-;66369:4;-1:-1:-1;;;;;66408:19:0;;66386:114;;;;-1:-1:-1;;;66386:114:0;;8492:2:1;66386:114:0;;;8474:21:1;8531:2;8511:18;;;8504:30;8570:34;8550:18;;;8543:62;-1:-1:-1;;;8621:18:1;;;8614:43;8674:19;;66386:114:0;8290:409:1;66386:114:0;66513:10;85778:1;66534:207;65584:13;;66565:1;:18;66534:207;;;66609:10;66617:1;66609:7;:10::i;:::-;66605:125;;;66653:10;66661:1;66653:7;:10::i;:::-;-1:-1:-1;;;;;66644:19:0;:5;-1:-1:-1;;;;;66644:19:0;;66640:75;;66688:7;;;:::i;:::-;;;66640:75;66585:3;;;:::i;:::-;;;66534:207;;;-1:-1:-1;66758:5:0;66281:490;-1:-1:-1;;66281:490:0:o;82404:103::-;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;82469:30:::1;82496:1;82469:18;:30::i;:::-;82404:103::o:0;84817:356::-;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;84907:9:::1;84902:264;84922:23:::0;;::::1;84902:264;;;84993:20;:37;85014:12;;85027:1;85014:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;84993:37:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;84993:37:0;;:42;84967:131:::1;;;::::0;-1:-1:-1;;;84967:131:0;;8906:2:1;84967:131:0::1;::::0;::::1;8888:21:1::0;8945:2;8925:18;;;8918:30;8984:29;8964:18;;;8957:57;9031:18;;84967:131:0::1;8704:351:1::0;84967:131:0::1;85153:1;85113:20;:37;85134:12;;85147:1;85134:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;85113:37:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;85113:37:0;:41;84947:3;::::1;::::0;::::1;:::i;:::-;;;;84902:264;;79404:680:::0;79489:16;79543:19;79577:22;79602:16;79612:5;79602:9;:16::i;:::-;79577:41;;79633:25;79675:14;79661:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;79661:29:0;-1:-1:-1;79633:57:0;-1:-1:-1;85778:1:0;79705:331;79789:14;79774:11;:29;79705:331;;79864:10;79872:1;79864:7;:10::i;:::-;79860:161;;;79917:5;-1:-1:-1;;;;;79903:19:0;:10;79911:1;79903:7;:10::i;:::-;-1:-1:-1;;;;;79903:19:0;;79899:103;;79977:1;79951:8;79960:13;;;;;;79951:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;79899:103;79822:3;;79705:331;;;-1:-1:-1;80057:8:0;79404:680;-1:-1:-1;;;;79404:680:0:o;67617:104::-;67673:13;67706:7;67699:14;;;;;:::i;83859:826::-;83555:4;83958:11;83942:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;83920:111;;;;-1:-1:-1;;;83920:111:0;;9392:2:1;83920:111:0;;;9374:21:1;9431:2;9411:18;;;9404:30;-1:-1:-1;;;9450:18:1;;;9443:50;9510:18;;83920:111:0;9190:344:1;83920:111:0;84083:13;;84064:15;:32;;84042:110;;;;-1:-1:-1;;;84042:110:0;;9741:2:1;84042:110:0;;;9723:21:1;9780:2;9760:18;;;9753:30;9819;9799:18;;;9792:58;9867:18;;84042:110:0;9539:352:1;84042:110:0;84188:10;84167:32;;;;:20;:32;;;;;;84203:1;84167:37;84163:372;;84260:34;84283:11;83500;84260:34;:::i;:::-;84247:9;:47;;84221:136;;;;-1:-1:-1;;;84221:136:0;;10271:2:1;84221:136:0;;;10253:21:1;10310:2;10290:18;;;10283:30;10349:29;10329:18;;;10322:57;10396:18;;84221:136:0;10069:351:1;84221:136:0;84163:372;;;84429:31;84449:11;83435;84429:31;:::i;:::-;84416:9;:44;;84390:133;;;;-1:-1:-1;;;84390:133:0;;10271:2:1;84390:133:0;;;10253:21:1;10310:2;10290:18;;;10283:30;10349:29;10329:18;;;10322:57;10396:18;;84390:133:0;10069:351:1;84390:133:0;84643:34;84653:10;84665:11;84643:9;:34::i;:::-;83859:826;:::o;86325:201::-;86454:8;10147:30;10168:8;10147:20;:30::i;:::-;86475:43:::1;86499:8;86509;86475:23;:43::i;87142:239::-:0;87309:4;-1:-1:-1;;;;;9873:18:0;;9881:10;9873:18;9869:83;;9908:32;9929:10;9908:20;:32::i;:::-;87326:47:::1;87349:4;87355:2;87359:7;87368:4;87326:22;:47::i;:::-;87142:239:::0;;;;;:::o;85795:371::-;85884:13;85932:16;85940:7;85932;:16::i;:::-;85910:113;;;;-1:-1:-1;;;85910:113:0;;10627:2:1;85910:113:0;;;10609:21:1;10666:2;10646:18;;;10639:30;10705:34;10685:18;;;10678:62;-1:-1:-1;;;10756:18:1;;;10749:45;10811:19;;85910:113:0;10425:411:1;85910:113:0;86096:10;:8;:10::i;:::-;86108:25;86125:7;86108:16;:25::i;:::-;86079:64;;;;;;;;;:::i;:::-;;;;;;;;;;;;;86034:124;;85795:371;;;:::o;84693:116::-;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;84771:13:::1;:30:::0;84693:116::o;69807:189::-;-1:-1:-1;;;;;69953:25:0;;;69929:4;69953:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;69807:189::o;82662:238::-;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;82765:22:0;::::1;82743:110;;;::::0;-1:-1:-1;;;82743:110:0;;11711:2:1;82743:110:0::1;::::0;::::1;11693:21:1::0;11750:2;11730:18;;;11723:30;11789:34;11769:18;;;11762:62;-1:-1:-1;;;11840:18:1;;;11833:36;11886:19;;82743:110:0::1;11509:402:1::0;82743:110:0::1;82864:28;82883:8;82864:18;:28::i;72632:151::-:0;72697:4;72731:14;65584:13;;;65502:103;72731:14;72721:7;:24;:54;;;;-1:-1:-1;;85778:1:0;72749:26;;;72632:151::o;10290:740::-;186:42;10481:45;:49;10477:546;;10798:128;;-1:-1:-1;;;10798:128:0;;10871:4;10798:128;;;12128:34:1;-1:-1:-1;;;;;12198:15:1;;12178:18;;;12171:43;186:42:0;;10798;;12063:18:1;;10798:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10775:237;;10968:28;;-1:-1:-1;;;10968:28:0;;-1:-1:-1;;;;;2248:32:1;;10968:28:0;;;2230:51:1;2203:18;;10968:28:0;2084:203:1;68588:410:0;68669:13;68685:16;68693:7;68685;:16::i;:::-;68669:32;;68726:5;-1:-1:-1;;;;;68720:11:0;:2;-1:-1:-1;;;;;68720:11:0;;68712:60;;;;-1:-1:-1;;;68712:60:0;;12677:2:1;68712:60:0;;;12659:21:1;12716:2;12696:18;;;12689:30;12755:34;12735:18;;;12728:62;-1:-1:-1;;;12806:18:1;;;12799:34;12850:19;;68712:60:0;12475:400:1;68712:60:0;49896:10;-1:-1:-1;;;;;68807:21:0;;;;:62;;-1:-1:-1;68832:37:0;68849:5;49896:10;69807:189;:::i;68832:37::-;68785:171;;;;-1:-1:-1;;;68785:171:0;;13082:2:1;68785:171:0;;;13064:21:1;13121:2;13101:18;;;13094:30;13160:34;13140:18;;;13133:62;13231:29;13211:18;;;13204:57;13278:19;;68785:171:0;12880:423:1;68785:171:0;68969:21;68978:2;68982:7;68969:8;:21::i;65703:121::-;65758:7;85778:1;65785:13;;:31;;;;:::i;70063:379::-;70272:41;49896:10;70305:7;70272:18;:41::i;:::-;70250:143;;;;-1:-1:-1;;;70250:143:0;;;;;;;:::i;:::-;70406:28;70416:4;70422:2;70426:7;70406:9;:28::i;70513:185::-;70651:39;70668:4;70674:2;70678:7;70651:39;;;;;;;;;;;;:16;:39::i;67029:352::-;67115:13;67130:24;67189:16;67197:7;67189;:16::i;:::-;67167:110;;;;-1:-1:-1;;;67167:110:0;;14064:2:1;67167:110:0;;;14046:21:1;14103:2;14083:18;;;14076:30;14142:34;14122:18;;;14115:62;-1:-1:-1;;;14193:18:1;;;14186:42;14245:19;;67167:110:0;13862:408:1;67167:110:0;67307:22;67321:7;67307:13;:22::i;:::-;67348:25;;;;:7;:25;;;;;;-1:-1:-1;;;;;67348:25:0;;67288:41;;-1:-1:-1;67029:352:0;-1:-1:-1;;67029:352:0:o;83060:191::-;83153:6;;;-1:-1:-1;;;;;83170:17:0;;;-1:-1:-1;;;;;;83170:17:0;;;;;;;83203:40;;83153:6;;;83170:17;83153:6;;83203:40;;83134:16;;83203:40;83123:128;83060:191;:::o;73745:112::-;73822:27;73832:2;73836:8;73822:27;;;;;;;;;;;;:9;:27::i;69413:323::-;49896:10;-1:-1:-1;;;;;69541:24:0;;;69533:65;;;;-1:-1:-1;;;69533:65:0;;14477:2:1;69533:65:0;;;14459:21:1;14516:2;14496:18;;;14489:30;14555;14535:18;;;14528:58;14603:18;;69533:65:0;14275:352:1;69533:65:0;49896:10;69611:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;69611:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;69611:53:0;;;;;;;;;;69680:48;;540:41:1;;;69611:42:0;;49896:10;69680:48;;513:18:1;69680:48:0;;;;;;;69413:323;;:::o;70769:368::-;70958:41;49896:10;70991:7;70958:18;:41::i;:::-;70936:143;;;;-1:-1:-1;;;70936:143:0;;;;;;;:::i;:::-;71090:39;71104:4;71110:2;71114:7;71123:5;71090:13;:39::i;85570:108::-;85630:13;85663:7;85656:14;;;;;:::i;34973:716::-;35029:13;35080:14;35097:17;35108:5;35097:10;:17::i;:::-;35117:1;35097:21;35080:38;;35133:20;35167:6;35156:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35156:18:0;-1:-1:-1;35133:41:0;-1:-1:-1;35298:28:0;;;35314:2;35298:28;35355:288;-1:-1:-1;;35387:5:0;-1:-1:-1;;;35524:2:0;35513:14;;35508:30;35387:5;35495:44;35585:2;35576:11;;;-1:-1:-1;35606:21:0;35355:288;35606:21;-1:-1:-1;35664:6:0;34973:716;-1:-1:-1;;;34973:716:0:o;76622:167::-;76697:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;76697:29:0;-1:-1:-1;;;;;76697:29:0;;;;;;;;:24;;76751:16;76697:24;76751:7;:16::i;:::-;-1:-1:-1;;;;;76742:39:0;;;;;;;;;;;76622:167;;:::o;72950:432::-;73068:4;73107:16;73115:7;73107;:16::i;:::-;73085:113;;;;-1:-1:-1;;;73085:113:0;;14966:2:1;73085:113:0;;;14948:21:1;15005:2;14985:18;;;14978:30;15044:34;15024:18;;;15017:62;-1:-1:-1;;;15095:18:1;;;15088:45;15150:19;;73085:113:0;14764:411:1;73085:113:0;73209:13;73225:16;73233:7;73225;:16::i;:::-;73209:32;;73271:5;-1:-1:-1;;;;;73260:16:0;:7;-1:-1:-1;;;;;73260:16:0;;:64;;;;73317:7;-1:-1:-1;;;;;73293:31:0;:20;73305:7;73293:11;:20::i;:::-;-1:-1:-1;;;;;73293:31:0;;73260:64;:113;;;;73341:32;73358:5;73365:7;73341:16;:32::i;:::-;73252:122;72950:432;-1:-1:-1;;;;72950:432:0:o;75449:1055::-;75574:13;75589:24;75617:53;75652:7;75617:20;:53::i;:::-;75573:97;;;;75700:4;-1:-1:-1;;;;;75691:13:0;:5;-1:-1:-1;;;;;75691:13:0;;75683:70;;;;-1:-1:-1;;;75683:70:0;;15382:2:1;75683:70:0;;;15364:21:1;15421:2;15401:18;;;15394:30;15460:34;15440:18;;;15433:62;-1:-1:-1;;;15511:18:1;;;15504:42;15563:19;;75683:70:0;15180:408:1;75683:70:0;-1:-1:-1;;;;;75772:16:0;;75764:68;;;;-1:-1:-1;;;75764:68:0;;15795:2:1;75764:68:0;;;15777:21:1;15834:2;15814:18;;;15807:30;15873:34;15853:18;;;15846:62;-1:-1:-1;;;15924:18:1;;;15917:37;15971:19;;75764:68:0;15593:403:1;75764:68:0;75953:29;75970:1;75974:7;75953:8;:29::i;:::-;75995:25;76023:11;:7;76033:1;76023:11;:::i;:::-;59166:1;59157:10;;;76066;59244:20;;;;;;;;;;;59157:10;;-1:-1:-1;;;;59221:4:0;59213:12;;59193:33;59244:27;:32;;;76065:85;;-1:-1:-1;65584:13:0;;76116:17;:34;76065:85;76047:223;;;76177:26;;;;:7;:26;;;;;:33;;-1:-1:-1;;;;;;76177:33:0;-1:-1:-1;;;;;76177:33:0;;;;;76225;;76177:26;76225:14;:33::i;:::-;76282:16;;;;:7;:16;;;;;:21;;-1:-1:-1;;;;;;76282:21:0;-1:-1:-1;;;;;76282:21:0;;;;;76318:27;;;76314:83;;76362:23;:10;76377:7;76362:14;:23::i;:::-;76433:7;76429:2;-1:-1:-1;;;;;76414:27:0;76423:4;-1:-1:-1;;;;;76414:27:0;;;;;;;;;;;75562:942;;;75449:1055;;;:::o;78825:174::-;78904:24;78960:31;78904:24;78983:7;78960:22;:31::i;73865:487::-;73996:19;74018:14;65584:13;;;65502:103;74018:14;73996:36;;74043:19;74049:2;74053:8;74043:5;:19::i;:::-;74095:168;74144:1;74165:2;74186:11;74216:8;74243:5;74095:22;:168::i;:::-;74073:271;;;;-1:-1:-1;;;74073:271:0;;;;;;;:::i;72019:358::-;72176:28;72186:4;72192:2;72196:7;72176:9;:28::i;:::-;72237:51;72260:4;72266:2;72270:7;72279:1;72282:5;72237:22;:51::i;30346:948::-;30399:7;;-1:-1:-1;;;30477:17:0;;30473:106;;-1:-1:-1;;;30515:17:0;;;-1:-1:-1;30561:2:0;30551:12;30473:106;30606:8;30597:5;:17;30593:106;;30644:8;30635:17;;;-1:-1:-1;30681:2:0;30671:12;30593:106;30726:8;30717:5;:17;30713:106;;30764:8;30755:17;;;-1:-1:-1;30801:2:0;30791:12;30713:106;30846:7;30837:5;:16;30833:103;;30883:7;30874:16;;;-1:-1:-1;30919:1:0;30909:11;30833:103;30963:7;30954:5;:16;30950:103;;31000:7;30991:16;;;-1:-1:-1;31036:1:0;31026:11;30950:103;31080:7;31071:5;:16;31067:103;;31117:7;31108:16;;;-1:-1:-1;31153:1:0;31143:11;31067:103;31197:7;31188:5;:16;31184:68;;31235:1;31225:11;31280:6;30346:948;-1:-1:-1;;30346:948:0:o;59636:204::-;59733:1;59724:10;;;59707:14;59804:20;;;;;;;;;;;;:28;;-1:-1:-1;;;59788:4:0;59780:12;;;59760:33;;;;59804:28;;;;;59636:204::o;62206:1392::-;62371:1;62362:10;;;62313:19;62528:20;;;;;;;;;;;62313:19;;62362:10;62452:4;62444:12;;;;62633:18;;;62626:26;62698:6;;62694:897;;62837:22;:2;:20;:22::i;:::-;62823:36;;:11;:36;62796:1;62786:6;:11;;62785:75;62750:110;;62694:897;;;62979:1;62970:6;:10;62940:136;;;;-1:-1:-1;;;62940:136:0;;16625:2:1;62940:136:0;;;16607:21:1;16664:2;16644:18;;;16637:30;16703:34;16683:18;;;16676:62;-1:-1:-1;;;16754:18:1;;;16747:50;16814:19;;62940:136:0;16423:416:1;62940:136:0;-1:-1:-1;;;63128:8:0;;;63259:12;:20;;;;;;;;;;;63128:8;;-1:-1:-1;63304:6:0;;63300:265;;63467:22;:2;:20;:22::i;:::-;63461:3;:28;63415:75;;63426:1;63416:6;:11;;63415:75;63372:118;;63517:5;;63300:265;62908:672;;;62334:1264;;;62206:1392;;;;:::o;74360:752::-;74433:19;74455:14;65584:13;;;65502:103;74455:14;74433:36;;74501:1;74490:8;:12;74482:62;;;;-1:-1:-1;;;74482:62:0;;17046:2:1;74482:62:0;;;17028:21:1;17085:2;17065:18;;;17058:30;17124:34;17104:18;;;17097:62;-1:-1:-1;;;17175:18:1;;;17168:35;17220:19;;74482:62:0;16844:401:1;74482:62:0;-1:-1:-1;;;;;74563:16:0;;74555:64;;;;-1:-1:-1;;;74555:64:0;;17452:2:1;74555:64:0;;;17434:21:1;17491:2;17471:18;;;17464:30;17530:34;17510:18;;;17503:62;-1:-1:-1;;;17581:18:1;;;17574:33;17624:19;;74555:64:0;17250:399:1;74555:64:0;74720:8;74703:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;74739:20:0;;;;:7;:20;;;;;:25;;-1:-1:-1;;;;;;74739:25:0;-1:-1:-1;;;;;74739:25:0;;;;;74775:27;;74739:20;74775:14;:27::i;:::-;74946:11;74909:196;74982:22;74996:8;74982:11;:22;:::i;:::-;74972:7;:32;74909:196;;;75060:33;;75085:7;;-1:-1:-1;;;;;75060:33:0;;;75077:1;;75060:33;;75077:1;;75060:33;75019:9;;;;:::i;:::-;;;;74909:196;;77443:1374;77630:6;-1:-1:-1;;;;;77653:13:0;;40362:19;:23;77649:1161;;-1:-1:-1;77689:4:0;77749:12;77708:1024;77790:23;77805:8;77790:12;:23;:::i;:::-;77780:7;:33;77708:1024;;;77901:195;;-1:-1:-1;;;77901:195:0;;-1:-1:-1;;;;;77901:36:0;;;;;:195;;49896:10;;78003:4;;78034:7;;78068:5;;77901:195;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;77901:195:0;;;;;;;;-1:-1:-1;;77901:195:0;;;;;;;;;;;;:::i;:::-;;;77876:841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78347:6;:13;78364:1;78347:18;78343:355;;78394:119;;-1:-1:-1;;;78394:119:0;;;;;;;:::i;78343:355::-;78640:6;78634:13;78625:6;78621:2;78617:15;78610:38;77876:841;78190:1;:81;;;;-1:-1:-1;;;;;;;78220:51:0;;-1:-1:-1;;;78220:51:0;78190:81;78161:110;;78114:177;77832:9;;;;:::i;:::-;;;;77708:1024;;;;78746:8;;77649:1161;-1:-1:-1;78794:4:0;77649:1161;77443:1374;;;;;;;:::o;56540:255::-;56602:5;56697:16;;;;;;;;;;;;;;;;;56753:3;55064:64;56715:18;56730:2;56715:14;:18::i;:::-;:33;56714:42;;56697:60;;;;;;;;:::i;:::-;;;;;;;;56540:255;-1:-1:-1;;56540:255:0:o;55783:169::-;55842:7;55875:1;55870:2;:6;55862:15;;;;;;-1:-1:-1;55926:1:0;:6;;;55920:13;;55783:169::o;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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:186::-;829:6;882:2;870:9;861:7;857:23;853:32;850:52;;;898:1;895;888:12;850:52;921:29;940:9;921:29;:::i;1143:250::-;1228:1;1238:113;1252:6;1249:1;1246:13;1238:113;;;1328:11;;;1322:18;1309:11;;;1302:39;1274:2;1267:10;1238:113;;;-1:-1:-1;;1385:1:1;1367:16;;1360:27;1143:250::o;1398:271::-;1440:3;1478:5;1472:12;1505:6;1500:3;1493:19;1521:76;1590:6;1583:4;1578:3;1574:14;1567:4;1560:5;1556:16;1521:76;:::i;:::-;1651:2;1630:15;-1:-1:-1;;1626:29:1;1617:39;;;;1658:4;1613:50;;1398:271;-1:-1:-1;;1398:271:1:o;1674:220::-;1823:2;1812:9;1805:21;1786:4;1843:45;1884:2;1873:9;1869:18;1861:6;1843:45;:::i;1899:180::-;1958:6;2011:2;1999:9;1990:7;1986:23;1982:32;1979:52;;;2027:1;2024;2017:12;1979:52;-1:-1:-1;2050:23:1;;1899:180;-1:-1:-1;1899:180:1:o;2292:254::-;2360:6;2368;2421:2;2409:9;2400:7;2396:23;2392:32;2389:52;;;2437:1;2434;2427:12;2389:52;2460:29;2479:9;2460:29;:::i;:::-;2450:39;2536:2;2521:18;;;;2508:32;;-1:-1:-1;;;2292:254:1:o;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;3123:615::-;3209:6;3217;3270:2;3258:9;3249:7;3245:23;3241:32;3238:52;;;3286:1;3283;3276:12;3238:52;3326:9;3313:23;3355:18;3396:2;3388:6;3385:14;3382:34;;;3412:1;3409;3402:12;3382:34;3450:6;3439:9;3435:22;3425:32;;3495:7;3488:4;3484:2;3480:13;3476:27;3466:55;;3517:1;3514;3507:12;3466:55;3557:2;3544:16;3583:2;3575:6;3572:14;3569:34;;;3599:1;3596;3589:12;3569:34;3652:7;3647:2;3637:6;3634:1;3630:14;3626:2;3622:23;3618:32;3615:45;3612:65;;;3673:1;3670;3663:12;3612:65;3704:2;3696:11;;;;;3726:6;;-1:-1:-1;3123:615:1;;-1:-1:-1;;;;3123:615:1:o;3743:632::-;3914:2;3966:21;;;4036:13;;3939:18;;;4058:22;;;3885:4;;3914:2;4137:15;;;;4111:2;4096:18;;;3885:4;4180:169;4194:6;4191:1;4188:13;4180:169;;;4255:13;;4243:26;;4324:15;;;;4289:12;;;;4216:1;4209:9;4180:169;;;-1:-1:-1;4366:3:1;;3743:632;-1:-1:-1;;;;;;3743:632:1:o;4380:118::-;4466:5;4459:13;4452:21;4445:5;4442:32;4432:60;;4488:1;4485;4478:12;4503:315;4568:6;4576;4629:2;4617:9;4608:7;4604:23;4600:32;4597:52;;;4645:1;4642;4635:12;4597:52;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4747:2;4736:9;4732:18;4719:32;4760:28;4782:5;4760:28;:::i;:::-;4807:5;4797:15;;;4503:315;;;;;:::o;4823:127::-;4884:10;4879:3;4875:20;4872:1;4865:31;4915:4;4912:1;4905:15;4939:4;4936:1;4929:15;4955:1138;5050:6;5058;5066;5074;5127:3;5115:9;5106:7;5102:23;5098:33;5095:53;;;5144:1;5141;5134:12;5095:53;5167:29;5186:9;5167:29;:::i;:::-;5157:39;;5215:38;5249:2;5238:9;5234:18;5215:38;:::i;:::-;5205:48;;5300:2;5289:9;5285:18;5272:32;5262:42;;5355:2;5344:9;5340:18;5327:32;5378:18;5419:2;5411:6;5408:14;5405:34;;;5435:1;5432;5425:12;5405:34;5473:6;5462:9;5458:22;5448:32;;5518:7;5511:4;5507:2;5503:13;5499:27;5489:55;;5540:1;5537;5530:12;5489:55;5576:2;5563:16;5598:2;5594;5591:10;5588:36;;;5604:18;;:::i;:::-;5679:2;5673:9;5647:2;5733:13;;-1:-1:-1;;5729:22:1;;;5753:2;5725:31;5721:40;5709:53;;;5777:18;;;5797:22;;;5774:46;5771:72;;;5823:18;;:::i;:::-;5863:10;5859:2;5852:22;5898:2;5890:6;5883:18;5938:7;5933:2;5928;5924;5920:11;5916:20;5913:33;5910:53;;;5959:1;5956;5949:12;5910:53;6015:2;6010;6006;6002:11;5997:2;5989:6;5985:15;5972:46;6060:1;6055:2;6050;6042:6;6038:15;6034:24;6027:35;6081:6;6071:16;;;;;;;4955:1138;;;;;;;:::o;6098:260::-;6166:6;6174;6227:2;6215:9;6206:7;6202:23;6198:32;6195:52;;;6243:1;6240;6233:12;6195:52;6266:29;6285:9;6266:29;:::i;:::-;6256:39;;6314:38;6348:2;6337:9;6333:18;6314:38;:::i;:::-;6304:48;;6098:260;;;;;:::o;6363:380::-;6442:1;6438:12;;;;6485;;;6506:61;;6560:4;6552:6;6548:17;6538:27;;6506:61;6613:2;6605:6;6602:14;6582:18;6579:38;6576:161;;6659:10;6654:3;6650:20;6647:1;6640:31;6694:4;6691:1;6684:15;6722:4;6719:1;6712:15;6576:161;;6363:380;;;:::o;7164:356::-;7366:2;7348:21;;;7385:18;;;7378:30;7444:34;7439:2;7424:18;;7417:62;7511:2;7496:18;;7164:356::o;7525:127::-;7586:10;7581:3;7577:20;7574:1;7567:31;7617:4;7614:1;7607:15;7641:4;7638:1;7631:15;8018:127;8079:10;8074:3;8070:20;8067:1;8060:31;8110:4;8107:1;8100:15;8134:4;8131:1;8124:15;8150:135;8189:3;8210:17;;;8207:43;;8230:18;;:::i;:::-;-1:-1:-1;8277:1:1;8266:13;;8150:135::o;9060:125::-;9125:9;;;9146:10;;;9143:36;;;9159:18;;:::i;9896:168::-;9969:9;;;10000;;10017:15;;;10011:22;;9997:37;9987:71;;10038:18;;:::i;10841:663::-;11121:3;11159:6;11153:13;11175:66;11234:6;11229:3;11222:4;11214:6;11210:17;11175:66;:::i;:::-;11304:13;;11263:16;;;;11326:70;11304:13;11263:16;11373:4;11361:17;;11326:70;:::i;:::-;-1:-1:-1;;;11418:20:1;;11447:22;;;11496:1;11485:13;;10841:663;-1:-1:-1;;;;10841:663:1:o;12225:245::-;12292:6;12345:2;12333:9;12324:7;12320:23;12316:32;12313:52;;;12361:1;12358;12351:12;12313:52;12393:9;12387:16;12412:28;12434:5;12412:28;:::i;13308:128::-;13375:9;;;13396:11;;;13393:37;;;13410:18;;:::i;13441:416::-;13643:2;13625:21;;;13682:2;13662:18;;;13655:30;13721:34;13716:2;13701:18;;13694:62;-1:-1:-1;;;13787:2:1;13772:18;;13765:50;13847:3;13832:19;;13441:416::o;16001:417::-;16203:2;16185:21;;;16242:2;16222:18;;;16215:30;16281:34;16276:2;16261:18;;16254:62;-1:-1:-1;;;16347:2:1;16332:18;;16325:51;16408:3;16393:19;;16001:417::o;17654:489::-;-1:-1:-1;;;;;17923:15:1;;;17905:34;;17975:15;;17970:2;17955:18;;17948:43;18022:2;18007:18;;18000:34;;;18070:3;18065:2;18050:18;;18043:31;;;17848:4;;18091:46;;18117:19;;18109:6;18091:46;:::i;:::-;18083:54;17654:489;-1:-1:-1;;;;;;17654:489:1:o;18148:249::-;18217:6;18270:2;18258:9;18249:7;18245:23;18241:32;18238:52;;;18286:1;18283;18276:12;18238:52;18318:9;18312:16;18337:30;18361:5;18337:30;:::i
Swarm Source
ipfs://8378f4794fc67ffa89cebb17caec3e5fb760d3785208ab45e9bcf092fb88deb0
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.