CRC-721
Overview
Max Total Supply
216 S.S.V1
Holders
52
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x506d8524...99F8DDFFd The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Launchpad
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2023-11-04 */ // Sources flattened with hardhat v2.12.2 https://hardhat.org // File @openzeppelin/contracts/utils/math/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File @openzeppelin/contracts/utils/[email protected] // // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File @openzeppelin/contracts/utils/[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/access/[email protected] // // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/math/[email protected] // // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @openzeppelin/contracts/utils/[email protected] // // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File @openzeppelin/contracts/utils/introspection/[email protected] // // 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.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File @openzeppelin/contracts/utils/[email protected] // // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File @openzeppelin/contracts/token/ERC721/[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/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/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/token/ERC721/[email protected] // // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/utils/cryptography/[email protected] // // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File @openzeppelin/contracts/interfaces/[email protected] // // OpenZeppelin Contracts v4.4.1 (interfaces/IERC1271.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC1271 standard signature validation method for * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271]. * * _Available since v4.1._ */ interface IERC1271 { /** * @dev Should return whether the signature provided is valid for the provided data * @param hash Hash of the data to be signed * @param signature Signature byte array associated with _data */ function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue); } // File @openzeppelin/contracts/utils/cryptography/[email protected] // // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/SignatureChecker.sol) pragma solidity ^0.8.0; /** * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA * signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like * Argent and Gnosis Safe. * * _Available since v4.1._ */ library SignatureChecker { /** * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the * signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`. * * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus * change through time. It could return true at block N and false at block N+1 (or the opposite). */ function isValidSignatureNow( address signer, bytes32 hash, bytes memory signature ) internal view returns (bool) { (address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature); if (error == ECDSA.RecoverError.NoError && recovered == signer) { return true; } (bool success, bytes memory result) = signer.staticcall( abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature) ); return (success && result.length == 32 && abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector)); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.0; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } } // File contracts/launchpad/Launchpad.sol pragma solidity ^0.8.9; // contract Launchpad is ERC721Enumerable, Ownable, EIP712 { enum TokenType { NATIVE, ERC20, ERC721 } using Counters for Counters.Counter; Counters.Counter private _tokenIds; string public baseURI; uint256 public limit; uint256 public userLimit; mapping(address => uint256) public minted; address _signer; // payees detail address[] public payees; uint256[] public payeePercents; // 2500 = 25%, total 100% // corgi fee address public corgiPayee; uint256 public corgiNativePercent = 1000; // 10% uint256 public corgiERC20Percent = 1500; // 15% uint256 public corgiERC721Fee = 3 ether; // TODO: update this for polygon string public maskLink; constructor( string memory _name, string memory _symbol, string memory _baseURI, uint256 _limit, uint256 _userLimit, address[] memory _payees, uint256[] memory _payeePercents, address signer_, address _corgiPayee ) ERC721(_name, _symbol) EIP712("Launchpad", "1.0.0") payable { baseURI = _baseURI; _signer = signer_; corgiPayee = _corgiPayee; setLimit(_limit, _userLimit); setPayees(_payees, _payeePercents); payable(corgiPayee).transfer(msg.value); } // ======================== SETTING ===================================== function setBaseURI(string memory _baseURI) public onlyOwner { baseURI = _baseURI; } function setLimit(uint256 _limit, uint256 _userLimit) public onlyOwner { limit = _limit; userLimit = _userLimit; } function setPayees( address[] memory _payees, uint256[] memory _payeePercents ) public onlyOwner { uint256 totalPercent = 0; for (uint256 i = 0; i < _payeePercents.length; i++) { totalPercent += _payeePercents[i]; } require(totalPercent == 10000, "r0"); payees = _payees; payeePercents = _payeePercents; } function maskUri(string memory _maskLink) public onlyOwner { maskLink = _maskLink; } // ======================== GETTERS ===================================== function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "nonexistent token"); if (bytes(maskLink).length > 0) { return maskLink; } return string( abi.encodePacked(baseURI, Strings.toString(tokenId), ".json") ); } // ======================== MINT ===================================== function _mint( address _from, address _to, uint256 _amount ) internal { require(_tokenIds.current() + _amount <= limit, "r1"); // check if _from is not owner if (_from != owner()) { require(minted[_from] + _amount <= userLimit, "r2"); } for (uint256 i = 0; i < _amount; i++) { _tokenIds.increment(); _safeMint(_to, _tokenIds.current()); } minted[_from] += _amount; } // WARN: ERC721 must be first function mint( address _to, uint256 _quantity, TokenType[] memory _types, address[] calldata _tokens, uint256[] calldata _tokenAmounts, uint16[] memory _nftIdsPay, bytes calldata _signature ) public payable { require( SignatureChecker.isValidSignatureNow( _signer, _hash(msg.sender, _quantity, _tokens, _tokenAmounts), _signature ), "r3" ); _payment( msg.sender, _types[0], _tokens[0], _tokenAmounts[0], _nftIdsPay, 0, _quantity ); if (_tokens.length > 1) { _payment( msg.sender, _types[1], _tokens[1], _tokenAmounts[1], _nftIdsPay, _tokenAmounts[0], _quantity ); } _mint(msg.sender, _to, _quantity); } function _payment( address _from, TokenType _type, address _token, uint256 _amount, uint16[] memory _nftIds, uint256 _index, uint256 _quantity ) internal { if (_type == TokenType.NATIVE) { _payNative(_amount); } else if (_type == TokenType.ERC20) { _payERC20(_token, _from, _amount); } else if (_type == TokenType.ERC721) { (bool success, ) = corgiPayee.call{ value: _quantity * corgiERC721Fee }(""); require(success, "r7"); _payERC721(_token, _from, _amount, _nftIds, _index); } else { revert("Invalid token type"); } } function _payNative(uint256 _amount) internal { uint256 corgiFee = (_amount * corgiNativePercent) / 10000; uint256 payeeAmount = _amount - corgiFee; // pay corgi, use call to prevent revert (bool success, ) = corgiPayee.call{value: corgiFee}(""); require(success, "r5"); // pay payees for (uint256 i = 0; i < payees.length; i++) { uint256 payeeFee = (payeeAmount * payeePercents[i]) / 10000; (success, ) = payees[i].call{value: payeeFee}(""); require(success, "r6"); } } function _payERC20( address _token, address _from, uint256 _amount ) internal { uint256 corgiFee = (_amount * corgiERC20Percent) / 10000; uint256 payeeAmount = _amount - corgiFee; // pay corgi IERC20(_token).transferFrom(_from, corgiPayee, corgiFee); // pay payees for (uint256 i = 0; i < payees.length; i++) { uint256 payeeFee = (payeeAmount * payeePercents[i]) / 10000; IERC20(_token).transferFrom(_from, payees[i], payeeFee); } } function _payERC721( address _token, address _from, uint256 _amount, uint16[] memory _nftIds, uint256 _index ) internal { for (uint256 i = _index; i < _index + _amount; i++) { IERC721(_token).transferFrom(_from, payees[0], _nftIds[i]); } } // ======================== SUPPORT ===================================== function _hash( address _from, uint256 _quantity, address[] calldata _tokens, uint256[] calldata _tokenAmounts ) private view returns (bytes32) { return _hashTypedDataV4( keccak256( abi.encode( keccak256( "MintParams(address from,uint256 quantity,address[] tokens,uint256[] tokenAmounts,uint256 value)" ), _from, _quantity, keccak256(abi.encodePacked(_tokens)), keccak256(abi.encodePacked(_tokenAmounts)), msg.value ) ) ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"uint256","name":"_limit","type":"uint256"},{"internalType":"uint256","name":"_userLimit","type":"uint256"},{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_payeePercents","type":"uint256[]"},{"internalType":"address","name":"signer_","type":"address"},{"internalType":"address","name":"_corgiPayee","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"corgiERC20Percent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"corgiERC721Fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"corgiNativePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"corgiPayee","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maskLink","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_maskLink","type":"string"}],"name":"maskUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"enum Launchpad.TokenType[]","name":"_types","type":"uint8[]"},{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"uint256[]","name":"_tokenAmounts","type":"uint256[]"},{"internalType":"uint16[]","name":"_nftIdsPay","type":"uint16[]"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","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":"uint256","name":"","type":"uint256"}],"name":"payeePercents","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payees","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"},{"internalType":"uint256","name":"_userLimit","type":"uint256"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_payeePercents","type":"uint256[]"}],"name":"setPayees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"userLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6101406040526103e86014556105dc6015556729a2241af62c000060165560405162003ecd38038062003ecd8339810160408190526200003f9162000634565b6040518060400160405280600981526020016813185d5b98da1c185960ba1b815250604051806040016040528060058152602001640312e302e360dc1b8152508a8a8160009081620000929190620007dd565b506001620000a18282620007dd565b505050620000be620000b8620001ee60201b60201c565b620001f2565b815160209283012081519183019190912060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818801819052818301969096526060810194909452608080850193909352308483018190528151808603909301835260c09485019091528151919095012090529190915261012052600c6200015b8882620007dd565b50601080546001600160a01b038085166001600160a01b031992831617909255601380549284169290911691909117905562000198868662000244565b620001a4848462000259565b6013546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015620001de573d6000803e3d6000fd5b505050505050505050506200090d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200024e62000320565b600d91909155600e55565b6200026362000320565b6000805b8251811015620002b257828181518110620002865762000286620008a9565b6020026020010151826200029b9190620008d5565b915080620002a981620008f1565b91505062000267565b508061271014620002ef5760405162461bcd60e51b8152602060048201526002602482015261072360f41b60448201526064015b60405180910390fd5b8251620003049060119060208601906200037e565b5081516200031a906012906020850190620003e8565b50505050565b600a546001600160a01b031633146200037c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002e6565b565b828054828255906000526020600020908101928215620003d6579160200282015b82811115620003d657825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200039f565b50620003e492915062000426565b5090565b828054828255906000526020600020908101928215620003d6579160200282015b82811115620003d657825182559160200191906001019062000409565b5b80821115620003e4576000815560010162000427565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156200047e576200047e6200043d565b604052919050565b600082601f8301126200049857600080fd5b81516001600160401b03811115620004b457620004b46200043d565b6020620004ca601f8301601f1916820162000453565b8281528582848701011115620004df57600080fd5b60005b83811015620004ff578581018301518282018401528201620004e2565b506000928101909101919091529392505050565b60006001600160401b038211156200052f576200052f6200043d565b5060051b60200190565b80516001600160a01b03811681146200055157600080fd5b919050565b600082601f8301126200056857600080fd5b81516020620005816200057b8362000513565b62000453565b82815260059290921b84018101918181019086841115620005a157600080fd5b8286015b84811015620005c757620005b98162000539565b8352918301918301620005a5565b509695505050505050565b600082601f830112620005e457600080fd5b81516020620005f76200057b8362000513565b82815260059290921b840181019181810190868411156200061757600080fd5b8286015b84811015620005c757805183529183019183016200061b565b60008060008060008060008060006101208a8c0312156200065457600080fd5b89516001600160401b03808211156200066c57600080fd5b6200067a8d838e0162000486565b9a5060208c01519150808211156200069157600080fd5b6200069f8d838e0162000486565b995060408c0151915080821115620006b657600080fd5b620006c48d838e0162000486565b985060608c0151975060808c0151965060a08c0151915080821115620006e957600080fd5b620006f78d838e0162000556565b955060c08c01519150808211156200070e57600080fd5b506200071d8c828d01620005d2565b9350506200072e60e08b0162000539565b91506200073f6101008b0162000539565b90509295985092959850929598565b600181811c908216806200076357607f821691505b6020821081036200078457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007d857600081815260208120601f850160051c81016020861015620007b35750805b601f850160051c820191505b81811015620007d457828155600101620007bf565b5050505b505050565b81516001600160401b03811115620007f957620007f96200043d565b62000811816200080a84546200074e565b846200078a565b602080601f831160018114620008495760008415620008305750858301515b600019600386901b1c1916600185901b178555620007d4565b600085815260208120601f198616915b828110156200087a5788860151825594840194600190910190840162000859565b5085821015620008995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b80820180821115620008eb57620008eb620008bf565b92915050565b600060018201620009065762000906620008bf565b5060010190565b60805160a05160c05160e05161010051610120516135706200095d6000396000612632015260006126810152600061265c015260006125b5015260006125df0152600061260901526135706000f3fe6080604052600436106102045760003560e01c80636c0360eb11610118578063b88d4fde116100a0578063d70b5bf11161006f578063d70b5bf1146105a4578063d8417dc8146105c4578063e985e9c5146105d9578063f2fde38b14610622578063f4e7e13e1461064257600080fd5b8063b88d4fde1461052e578063bcc7445f1461054e578063c87b56dd1461056e578063cda3353d1461058e57600080fd5b80638da5cb5b116100e75780638da5cb5b146104b257806395d89b41146104d0578063a22cb465146104e5578063a4d66daf14610505578063af822c2d1461051b57600080fd5b80636c0360eb1461045257806370a0823114610467578063715018a6146104875780638296b8801461049c57600080fd5b80632a555cc71161019b5780634a7c01ec1161016a5780634a7c01ec146103bc5780634f6ccce7146103d257806355f804b3146103f257806363037b0c146104125780636352211e1461043257600080fd5b80632a555cc7146103465780632f745c591461035c57806342842e0e1461037c57806343cc72781461039c57600080fd5b806318160ddd116101d757806318160ddd146102ba5780631e7269c5146102d9578063207add911461030657806323b872dd1461032657600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004612a2a565b610662565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025361068d565b6040516102359190612a97565b34801561026c57600080fd5b5061028061027b366004612aaa565b61071f565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004612adf565b610746565b005b3480156102c657600080fd5b506008545b604051908152602001610235565b3480156102e557600080fd5b506102cb6102f4366004612b09565b600f6020526000908152604090205481565b34801561031257600080fd5b506102b8610321366004612b24565b610860565b34801561033257600080fd5b506102b8610341366004612b46565b610873565b34801561035257600080fd5b506102cb60155481565b34801561036857600080fd5b506102cb610377366004612adf565b6108ea565b34801561038857600080fd5b506102b8610397366004612b46565b610980565b3480156103a857600080fd5b50601354610280906001600160a01b031681565b3480156103c857600080fd5b506102cb600e5481565b3480156103de57600080fd5b506102cb6103ed366004612aaa565b61099b565b3480156103fe57600080fd5b506102b861040d366004612c21565b610a2e565b34801561041e57600080fd5b5061028061042d366004612aaa565b610a46565b34801561043e57600080fd5b5061028061044d366004612aaa565b610a70565b34801561045e57600080fd5b50610253610ad5565b34801561047357600080fd5b506102cb610482366004612b09565b610b63565b34801561049357600080fd5b506102b8610be9565b3480156104a857600080fd5b506102cb60145481565b3480156104be57600080fd5b50600a546001600160a01b0316610280565b3480156104dc57600080fd5b50610253610bfd565b3480156104f157600080fd5b506102b8610500366004612c78565b610c0c565b34801561051157600080fd5b506102cb600d5481565b6102b8610529366004612e3f565b610c17565b34801561053a57600080fd5b506102b8610549366004612f3f565b610dae565b34801561055a57600080fd5b506102b8610569366004613016565b610e2c565b34801561057a57600080fd5b50610253610589366004612aaa565b610ed8565b34801561059a57600080fd5b506102cb60165481565b3480156105b057600080fd5b506102b86105bf366004612c21565b61101a565b3480156105d057600080fd5b5061025361102e565b3480156105e557600080fd5b506102296105f43660046130d6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062e57600080fd5b506102b861063d366004612b09565b61103b565b34801561064e57600080fd5b506102cb61065d366004612aaa565b6110b4565b60006001600160e01b0319821663780e9d6360e01b14806106875750610687826110d5565b92915050565b60606000805461069c90613109565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890613109565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b600061072a82611125565b506000908152600460205260409020546001600160a01b031690565b600061075182610a70565b9050806001600160a01b0316836001600160a01b0316036107c35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107df57506107df81336105f4565b6108515760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016107ba565b61085b8383611189565b505050565b6108686111f7565b600d91909155600e55565b61087d3382611251565b6108df5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b60648201526084016107ba565b61085b8383836112d0565b60006108f583610b63565b82106109575760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ba565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61085b83838360405180602001604052806000815250610dae565b60006109a660085490565b8210610a095760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ba565b60088281548110610a1c57610a1c613143565b90600052602060002001549050919050565b610a366111f7565b600c610a42828261319f565b5050565b60118181548110610a5657600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260408120546001600160a01b0316806106875760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016107ba565b600c8054610ae290613109565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0e90613109565b8015610b5b5780601f10610b3057610100808354040283529160200191610b5b565b820191906000526020600020905b815481529060010190602001808311610b3e57829003601f168201915b505050505081565b60006001600160a01b038216610bcd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016107ba565b506001600160a01b031660009081526003602052604090205490565b610bf16111f7565b610bfb60006114bd565b565b60606001805461069c90613109565b610a4233838361150f565b601054610c71906001600160a01b0316610c35338c8b8b8b8b6115dd565b84848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506116b692505050565b610ca25760405162461bcd60e51b8152602060048201526002602482015261723360f01b60448201526064016107ba565b610d0c3389600081518110610cb957610cb9613143565b602002602001015189896000818110610cd457610cd4613143565b9050602002016020810190610ce99190612b09565b88886000818110610cfc57610cfc613143565b905060200201358760008f61180f565b6001861115610d9757610d973389600181518110610d2c57610d2c613143565b602002602001015189896001818110610d4757610d47613143565b9050602002016020810190610d5c9190612b09565b88886001818110610d6f57610d6f613143565b90506020020135878a8a6000818110610d8a57610d8a613143565b905060200201358f61180f565b610da2338b8b61196b565b50505050505050505050565b610db83383611251565b610e1a5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b60648201526084016107ba565b610e2684848484611a94565b50505050565b610e346111f7565b6000805b8251811015610e7a57828181518110610e5357610e53613143565b602002602001015182610e669190613275565b915080610e7281613288565b915050610e38565b508061271014610eb15760405162461bcd60e51b8152602060048201526002602482015261072360f41b60448201526064016107ba565b8251610ec490601190602086019061295f565b508151610e269060129060208501906129c4565b6000818152600260205260409020546060906001600160a01b0316610f3f5760405162461bcd60e51b815260206004820152601160248201527f6e6f6e6578697374656e7420746f6b656e00000000000000000000000000000060448201526064016107ba565b600060178054610f4e90613109565b90501115610fe85760178054610f6390613109565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8f90613109565b8015610fdc5780601f10610fb157610100808354040283529160200191610fdc565b820191906000526020600020905b815481529060010190602001808311610fbf57829003601f168201915b50505050509050919050565b600c610ff383611ac7565b6040516020016110049291906132a1565b6040516020818303038152906040529050919050565b6110226111f7565b6017610a42828261319f565b60178054610ae290613109565b6110436111f7565b6001600160a01b0381166110a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ba565b6110b1816114bd565b50565b601281815481106110c457600080fd5b600091825260209091200154905081565b60006001600160e01b031982166380ac58cd60e01b148061110657506001600160e01b03198216635b5e139f60e01b145b8061068757506301ffc9a760e01b6001600160e01b0319831614610687565b6000818152600260205260409020546001600160a01b03166110b15760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016107ba565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111be82610a70565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546001600160a01b03163314610bfb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ba565b60008061125d83610a70565b9050806001600160a01b0316846001600160a01b031614806112a457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112c85750836001600160a01b03166112bd8461071f565b6001600160a01b0316145b949350505050565b826001600160a01b03166112e382610a70565b6001600160a01b0316146113475760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107ba565b6001600160a01b0382166113a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ba565b6113b68383836001611b5a565b826001600160a01b03166113c982610a70565b6001600160a01b03161461142d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107ba565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036115705760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ba565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006116ab7f9ae2a55fde6a9674250342c0e5a8a89b164fe9b8f8ea2819853c37c0e5c1a11288888888604051602001611618929190613338565b604051602081830303815290604052805190602001208787604051602001611641929190613378565b60408051601f198184030181528282528051602091820120908301969096526001600160a01b03909416938101939093526060830191909152608082015260a08101919091523460c082015260e00160405160208183030381529060405280519060200120611ca2565b979650505050505050565b60008060006116c58585611cf0565b909250905060008160048111156116de576116de6133a1565b1480156116fc5750856001600160a01b0316826001600160a01b0316145b1561170c57600192505050611808565b600080876001600160a01b0316631626ba7e60e01b88886040516024016117349291906133b7565b60408051601f198184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990941693909317909252905161178791906133d0565b600060405180830381855afa9150503d80600081146117c2576040519150601f19603f3d011682016040523d82523d6000602084013e6117c7565b606091505b50915091508180156117da575080516020145b801561180157508051630b135d3f60e11b906117ff90830160209081019084016133ec565b145b9450505050505b9392505050565b6000866002811115611823576118236133a1565b036118365761183184611d35565b611962565b600186600281111561184a5761184a6133a1565b0361185a57611831858886611eeb565b600286600281111561186e5761186e6133a1565b0361191a576013546016546000916001600160a01b0316906118909084613405565b604051600081818185875af1925050503d80600081146118cc576040519150601f19603f3d011682016040523d82523d6000602084013e6118d1565b606091505b50509050806119075760405162461bcd60e51b8152602060048201526002602482015261723760f01b60448201526064016107ba565b61191486898787876120a3565b50611962565b60405162461bcd60e51b815260206004820152601260248201527f496e76616c696420746f6b656e2074797065000000000000000000000000000060448201526064016107ba565b50505050505050565b600d5481611978600b5490565b6119829190613275565b11156119b55760405162461bcd60e51b8152602060048201526002602482015261723160f01b60448201526064016107ba565b600a546001600160a01b03848116911614611a2457600e546001600160a01b0384166000908152600f60205260409020546119f1908390613275565b1115611a245760405162461bcd60e51b8152602060048201526002602482015261391960f11b60448201526064016107ba565b60005b81811015611a6157611a3d600b80546001019055565b611a4f83611a4a600b5490565b612193565b80611a5981613288565b915050611a27565b506001600160a01b0383166000908152600f602052604081208054839290611a8a908490613275565b9091555050505050565b611a9f8484846112d0565b611aab848484846121ad565b610e265760405162461bcd60e51b81526004016107ba9061341c565b60606000611ad4836122ae565b600101905060008167ffffffffffffffff811115611af457611af4612b82565b6040519080825280601f01601f191660200182016040528015611b1e576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b2857509392505050565b611b6684848484612390565b6001811115611bdd5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f72746564000000000000000000000060648201526084016107ba565b816001600160a01b038516611c3957611c3481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c5c565b836001600160a01b0316856001600160a01b031614611c5c57611c5c8582612418565b6001600160a01b038416611c7857611c73816124b5565b611c9b565b846001600160a01b0316846001600160a01b031614611c9b57611c9b8482612564565b5050505050565b6000610687611caf6125a8565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604103611d265760208301516040840151606085015160001a611d1a878285856126cf565b94509450505050611d2e565b506000905060025b9250929050565b600061271060145483611d489190613405565b611d529190613479565b90506000611d60828461349b565b6013546040519192506000916001600160a01b039091169084908381818185875af1925050503d8060008114611db2576040519150601f19603f3d011682016040523d82523d6000602084013e611db7565b606091505b5050905080611ded5760405162461bcd60e51b8152602060048201526002602482015261723560f01b60448201526064016107ba565b60005b601154811015611c9b57600061271060128381548110611e1257611e12613143565b906000526020600020015485611e289190613405565b611e329190613479565b905060118281548110611e4757611e47613143565b60009182526020822001546040516001600160a01b039091169183919081818185875af1925050503d8060008114611e9b576040519150601f19603f3d011682016040523d82523d6000602084013e611ea0565b606091505b50508093505082611ed85760405162461bcd60e51b8152602060048201526002602482015261391b60f11b60448201526064016107ba565b5080611ee381613288565b915050611df0565b600061271060155483611efe9190613405565b611f089190613479565b90506000611f16828461349b565b6013546040516323b872dd60e01b81526001600160a01b0387811660048301529182166024820152604481018590529192508616906323b872dd906064016020604051808303816000875af1158015611f73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f9791906134ae565b5060005b60115481101561209b57600061271060128381548110611fbd57611fbd613143565b906000526020600020015484611fd39190613405565b611fdd9190613479565b9050866001600160a01b03166323b872dd876011858154811061200257612002613143565b60009182526020909120015460405160e084901b6001600160e01b03191681526001600160a01b03928316600482015291166024820152604481018490526064016020604051808303816000875af1158015612062573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208691906134ae565b5050808061209390613288565b915050611f9b565b505050505050565b805b6120af8483613275565b81101561209b57856001600160a01b03166323b872dd8660116000815481106120da576120da613143565b9060005260206000200160009054906101000a90046001600160a01b031686858151811061210a5761210a613143565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015261ffff166044820152606401600060405180830381600087803b15801561216857600080fd5b505af115801561217c573d6000803e3d6000fd5b50505050808061218b90613288565b9150506120a5565b610a42828260405180602001604052806000815250612793565b60006001600160a01b0384163b156122a357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121f19033908990889088906004016134cb565b6020604051808303816000875af192505050801561222c575060408051601f3d908101601f1916820190925261222991810190613507565b60015b612289573d80801561225a576040519150601f19603f3d011682016040523d82523d6000602084013e61225f565b606091505b5080516000036122815760405162461bcd60e51b81526004016107ba9061341c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c8565b506001949350505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106122f7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612323576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061234157662386f26fc10000830492506010015b6305f5e1008310612359576305f5e100830492506008015b612710831061236d57612710830492506004015b6064831061237f576064830492506002015b600a83106106875760010192915050565b6001811115610e26576001600160a01b038416156123d6576001600160a01b038416600090815260036020526040812080548392906123d090849061349b565b90915550505b6001600160a01b03831615610e26576001600160a01b0383166000908152600360205260408120805483929061240d908490613275565b909155505050505050565b6000600161242584610b63565b61242f919061349b565b600083815260076020526040902054909150808214612482576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124c79060019061349b565b600083815260096020526040812054600880549394509092849081106124ef576124ef613143565b90600052602060002001549050806008838154811061251057612510613143565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061254857612548613524565b6001900381819060005260206000200160009055905550505050565b600061256f83610b63565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561260157507f000000000000000000000000000000000000000000000000000000000000000046145b1561262b57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612706575060009050600361278a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561275a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166127835760006001925092505061278a565b9150600090505b94509492505050565b61279d83836127c6565b6127aa60008484846121ad565b61085b5760405162461bcd60e51b81526004016107ba9061341c565b6001600160a01b03821661281c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ba565b6000818152600260205260409020546001600160a01b0316156128815760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ba565b61288f600083836001611b5a565b6000818152600260205260409020546001600160a01b0316156128f45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ba565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280548282559060005260206000209081019282156129b4579160200282015b828111156129b457825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019061297f565b506129c09291506129ff565b5090565b8280548282559060005260206000209081019282156129b4579160200282015b828111156129b45782518255916020019190600101906129e4565b5b808211156129c05760008155600101612a00565b6001600160e01b0319811681146110b157600080fd5b600060208284031215612a3c57600080fd5b813561180881612a14565b60005b83811015612a62578181015183820152602001612a4a565b50506000910152565b60008151808452612a83816020860160208601612a47565b601f01601f19169290920160200192915050565b6020815260006118086020830184612a6b565b600060208284031215612abc57600080fd5b5035919050565b80356001600160a01b0381168114612ada57600080fd5b919050565b60008060408385031215612af257600080fd5b612afb83612ac3565b946020939093013593505050565b600060208284031215612b1b57600080fd5b61180882612ac3565b60008060408385031215612b3757600080fd5b50508035926020909101359150565b600080600060608486031215612b5b57600080fd5b612b6484612ac3565b9250612b7260208501612ac3565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612bc157612bc1612b82565b604052919050565b600067ffffffffffffffff831115612be357612be3612b82565b612bf6601f8401601f1916602001612b98565b9050828152838383011115612c0a57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c3357600080fd5b813567ffffffffffffffff811115612c4a57600080fd5b8201601f81018413612c5b57600080fd5b6112c884823560208401612bc9565b80151581146110b157600080fd5b60008060408385031215612c8b57600080fd5b612c9483612ac3565b91506020830135612ca481612c6a565b809150509250929050565b600067ffffffffffffffff821115612cc957612cc9612b82565b5060051b60200190565b600082601f830112612ce457600080fd5b81356020612cf9612cf483612caf565b612b98565b82815260059290921b84018101918181019086841115612d1857600080fd5b8286015b84811015612d4157803560038110612d345760008081fd5b8352918301918301612d1c565b509695505050505050565b60008083601f840112612d5e57600080fd5b50813567ffffffffffffffff811115612d7657600080fd5b6020830191508360208260051b8501011115611d2e57600080fd5b600082601f830112612da257600080fd5b81356020612db2612cf483612caf565b82815260059290921b84018101918181019086841115612dd157600080fd5b8286015b84811015612d4157803561ffff81168114612df05760008081fd5b8352918301918301612dd5565b60008083601f840112612e0f57600080fd5b50813567ffffffffffffffff811115612e2757600080fd5b602083019150836020828501011115611d2e57600080fd5b60008060008060008060008060008060e08b8d031215612e5e57600080fd5b612e678b612ac3565b995060208b0135985060408b013567ffffffffffffffff80821115612e8b57600080fd5b612e978e838f01612cd3565b995060608d0135915080821115612ead57600080fd5b612eb98e838f01612d4c565b909950975060808d0135915080821115612ed257600080fd5b612ede8e838f01612d4c565b909750955060a08d0135915080821115612ef757600080fd5b612f038e838f01612d91565b945060c08d0135915080821115612f1957600080fd5b50612f268d828e01612dfd565b915080935050809150509295989b9194979a5092959850565b60008060008060808587031215612f5557600080fd5b612f5e85612ac3565b9350612f6c60208601612ac3565b925060408501359150606085013567ffffffffffffffff811115612f8f57600080fd5b8501601f81018713612fa057600080fd5b612faf87823560208401612bc9565b91505092959194509250565b600082601f830112612fcc57600080fd5b81356020612fdc612cf483612caf565b82815260059290921b84018101918181019086841115612ffb57600080fd5b8286015b84811015612d415780358352918301918301612fff565b6000806040838503121561302957600080fd5b823567ffffffffffffffff8082111561304157600080fd5b818501915085601f83011261305557600080fd5b81356020613065612cf483612caf565b82815260059290921b8401810191818101908984111561308457600080fd5b948201945b838610156130a95761309a86612ac3565b82529482019490820190613089565b965050860135925050808211156130bf57600080fd5b506130cc85828601612fbb565b9150509250929050565b600080604083850312156130e957600080fd5b6130f283612ac3565b915061310060208401612ac3565b90509250929050565b600181811c9082168061311d57607f821691505b60208210810361313d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b601f82111561085b57600081815260208120601f850160051c810160208610156131805750805b601f850160051c820191505b8181101561209b5782815560010161318c565b815167ffffffffffffffff8111156131b9576131b9612b82565b6131cd816131c78454613109565b84613159565b602080601f83116001811461320257600084156131ea5750858301515b600019600386901b1c1916600185901b17855561209b565b600085815260208120601f198616915b8281101561323157888601518255948401946001909101908401613212565b508582101561324f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156106875761068761325f565b60006001820161329a5761329a61325f565b5060010190565b60008084546132af81613109565b600182811680156132c757600181146132dc5761330b565b60ff198416875282151583028701945061330b565b8860005260208060002060005b858110156133025781548a8201529084019082016132e9565b50505082870194505b50505050835161331f818360208801612a47565b64173539b7b760d91b9101908152600501949350505050565b60008184825b8581101561336d576001600160a01b0361335783612ac3565b168352602092830192919091019060010161333e565b509095945050505050565b60006001600160fb1b0383111561338e57600080fd5b8260051b80858437919091019392505050565b634e487b7160e01b600052602160045260246000fd5b8281526040602082015260006112c86040830184612a6b565b600082516133e2818460208701612a47565b9190910192915050565b6000602082840312156133fe57600080fd5b5051919050565b80820281158282048414176106875761068761325f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60008261349657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156106875761068761325f565b6000602082840312156134c057600080fd5b815161180881612c6a565b60006001600160a01b038087168352808616602084015250836040830152608060608301526134fd6080830184612a6b565b9695505050505050565b60006020828403121561351957600080fd5b815161180881612a14565b634e487b7160e01b600052603160045260246000fdfea26469706673582212201f02e7f593fb43fc7198626dbeeeb5a19efeab0766f5461ec1029a16aea08d6a64736f6c634300081100330000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000063000000000000000000000000000000000000000000000000000000000000006300000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000280000000000000000000000000a3cc55b34dceab3c3ee85bfbe94b140f645177cd0000000000000000000000006b7fbb0a0ec0099eed6549ec54d3f79463711dfe0000000000000000000000000000000000000000000000000000000000000008442656494c444f4700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024444000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006768747470733a2f2f707572706c652d686973746f7269632d616e7465617465722d3130322e6d7970696e6174612e636c6f75642f697066732f516d5a73473345756741716667714e43764a5769585a4d536e413871395276754e45504c55666a654a34674b6551000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a2591760a797ad0d6fe173901b60c43317c3239200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000002710
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636c0360eb11610118578063b88d4fde116100a0578063d70b5bf11161006f578063d70b5bf1146105a4578063d8417dc8146105c4578063e985e9c5146105d9578063f2fde38b14610622578063f4e7e13e1461064257600080fd5b8063b88d4fde1461052e578063bcc7445f1461054e578063c87b56dd1461056e578063cda3353d1461058e57600080fd5b80638da5cb5b116100e75780638da5cb5b146104b257806395d89b41146104d0578063a22cb465146104e5578063a4d66daf14610505578063af822c2d1461051b57600080fd5b80636c0360eb1461045257806370a0823114610467578063715018a6146104875780638296b8801461049c57600080fd5b80632a555cc71161019b5780634a7c01ec1161016a5780634a7c01ec146103bc5780634f6ccce7146103d257806355f804b3146103f257806363037b0c146104125780636352211e1461043257600080fd5b80632a555cc7146103465780632f745c591461035c57806342842e0e1461037c57806343cc72781461039c57600080fd5b806318160ddd116101d757806318160ddd146102ba5780631e7269c5146102d9578063207add911461030657806323b872dd1461032657600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004612a2a565b610662565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025361068d565b6040516102359190612a97565b34801561026c57600080fd5b5061028061027b366004612aaa565b61071f565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004612adf565b610746565b005b3480156102c657600080fd5b506008545b604051908152602001610235565b3480156102e557600080fd5b506102cb6102f4366004612b09565b600f6020526000908152604090205481565b34801561031257600080fd5b506102b8610321366004612b24565b610860565b34801561033257600080fd5b506102b8610341366004612b46565b610873565b34801561035257600080fd5b506102cb60155481565b34801561036857600080fd5b506102cb610377366004612adf565b6108ea565b34801561038857600080fd5b506102b8610397366004612b46565b610980565b3480156103a857600080fd5b50601354610280906001600160a01b031681565b3480156103c857600080fd5b506102cb600e5481565b3480156103de57600080fd5b506102cb6103ed366004612aaa565b61099b565b3480156103fe57600080fd5b506102b861040d366004612c21565b610a2e565b34801561041e57600080fd5b5061028061042d366004612aaa565b610a46565b34801561043e57600080fd5b5061028061044d366004612aaa565b610a70565b34801561045e57600080fd5b50610253610ad5565b34801561047357600080fd5b506102cb610482366004612b09565b610b63565b34801561049357600080fd5b506102b8610be9565b3480156104a857600080fd5b506102cb60145481565b3480156104be57600080fd5b50600a546001600160a01b0316610280565b3480156104dc57600080fd5b50610253610bfd565b3480156104f157600080fd5b506102b8610500366004612c78565b610c0c565b34801561051157600080fd5b506102cb600d5481565b6102b8610529366004612e3f565b610c17565b34801561053a57600080fd5b506102b8610549366004612f3f565b610dae565b34801561055a57600080fd5b506102b8610569366004613016565b610e2c565b34801561057a57600080fd5b50610253610589366004612aaa565b610ed8565b34801561059a57600080fd5b506102cb60165481565b3480156105b057600080fd5b506102b86105bf366004612c21565b61101a565b3480156105d057600080fd5b5061025361102e565b3480156105e557600080fd5b506102296105f43660046130d6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062e57600080fd5b506102b861063d366004612b09565b61103b565b34801561064e57600080fd5b506102cb61065d366004612aaa565b6110b4565b60006001600160e01b0319821663780e9d6360e01b14806106875750610687826110d5565b92915050565b60606000805461069c90613109565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890613109565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b600061072a82611125565b506000908152600460205260409020546001600160a01b031690565b600061075182610a70565b9050806001600160a01b0316836001600160a01b0316036107c35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107df57506107df81336105f4565b6108515760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016107ba565b61085b8383611189565b505050565b6108686111f7565b600d91909155600e55565b61087d3382611251565b6108df5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b60648201526084016107ba565b61085b8383836112d0565b60006108f583610b63565b82106109575760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ba565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61085b83838360405180602001604052806000815250610dae565b60006109a660085490565b8210610a095760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ba565b60088281548110610a1c57610a1c613143565b90600052602060002001549050919050565b610a366111f7565b600c610a42828261319f565b5050565b60118181548110610a5657600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260408120546001600160a01b0316806106875760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016107ba565b600c8054610ae290613109565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0e90613109565b8015610b5b5780601f10610b3057610100808354040283529160200191610b5b565b820191906000526020600020905b815481529060010190602001808311610b3e57829003601f168201915b505050505081565b60006001600160a01b038216610bcd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016107ba565b506001600160a01b031660009081526003602052604090205490565b610bf16111f7565b610bfb60006114bd565b565b60606001805461069c90613109565b610a4233838361150f565b601054610c71906001600160a01b0316610c35338c8b8b8b8b6115dd565b84848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506116b692505050565b610ca25760405162461bcd60e51b8152602060048201526002602482015261723360f01b60448201526064016107ba565b610d0c3389600081518110610cb957610cb9613143565b602002602001015189896000818110610cd457610cd4613143565b9050602002016020810190610ce99190612b09565b88886000818110610cfc57610cfc613143565b905060200201358760008f61180f565b6001861115610d9757610d973389600181518110610d2c57610d2c613143565b602002602001015189896001818110610d4757610d47613143565b9050602002016020810190610d5c9190612b09565b88886001818110610d6f57610d6f613143565b90506020020135878a8a6000818110610d8a57610d8a613143565b905060200201358f61180f565b610da2338b8b61196b565b50505050505050505050565b610db83383611251565b610e1a5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b60648201526084016107ba565b610e2684848484611a94565b50505050565b610e346111f7565b6000805b8251811015610e7a57828181518110610e5357610e53613143565b602002602001015182610e669190613275565b915080610e7281613288565b915050610e38565b508061271014610eb15760405162461bcd60e51b8152602060048201526002602482015261072360f41b60448201526064016107ba565b8251610ec490601190602086019061295f565b508151610e269060129060208501906129c4565b6000818152600260205260409020546060906001600160a01b0316610f3f5760405162461bcd60e51b815260206004820152601160248201527f6e6f6e6578697374656e7420746f6b656e00000000000000000000000000000060448201526064016107ba565b600060178054610f4e90613109565b90501115610fe85760178054610f6390613109565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8f90613109565b8015610fdc5780601f10610fb157610100808354040283529160200191610fdc565b820191906000526020600020905b815481529060010190602001808311610fbf57829003601f168201915b50505050509050919050565b600c610ff383611ac7565b6040516020016110049291906132a1565b6040516020818303038152906040529050919050565b6110226111f7565b6017610a42828261319f565b60178054610ae290613109565b6110436111f7565b6001600160a01b0381166110a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ba565b6110b1816114bd565b50565b601281815481106110c457600080fd5b600091825260209091200154905081565b60006001600160e01b031982166380ac58cd60e01b148061110657506001600160e01b03198216635b5e139f60e01b145b8061068757506301ffc9a760e01b6001600160e01b0319831614610687565b6000818152600260205260409020546001600160a01b03166110b15760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016107ba565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111be82610a70565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546001600160a01b03163314610bfb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ba565b60008061125d83610a70565b9050806001600160a01b0316846001600160a01b031614806112a457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112c85750836001600160a01b03166112bd8461071f565b6001600160a01b0316145b949350505050565b826001600160a01b03166112e382610a70565b6001600160a01b0316146113475760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107ba565b6001600160a01b0382166113a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ba565b6113b68383836001611b5a565b826001600160a01b03166113c982610a70565b6001600160a01b03161461142d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107ba565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036115705760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ba565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006116ab7f9ae2a55fde6a9674250342c0e5a8a89b164fe9b8f8ea2819853c37c0e5c1a11288888888604051602001611618929190613338565b604051602081830303815290604052805190602001208787604051602001611641929190613378565b60408051601f198184030181528282528051602091820120908301969096526001600160a01b03909416938101939093526060830191909152608082015260a08101919091523460c082015260e00160405160208183030381529060405280519060200120611ca2565b979650505050505050565b60008060006116c58585611cf0565b909250905060008160048111156116de576116de6133a1565b1480156116fc5750856001600160a01b0316826001600160a01b0316145b1561170c57600192505050611808565b600080876001600160a01b0316631626ba7e60e01b88886040516024016117349291906133b7565b60408051601f198184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990941693909317909252905161178791906133d0565b600060405180830381855afa9150503d80600081146117c2576040519150601f19603f3d011682016040523d82523d6000602084013e6117c7565b606091505b50915091508180156117da575080516020145b801561180157508051630b135d3f60e11b906117ff90830160209081019084016133ec565b145b9450505050505b9392505050565b6000866002811115611823576118236133a1565b036118365761183184611d35565b611962565b600186600281111561184a5761184a6133a1565b0361185a57611831858886611eeb565b600286600281111561186e5761186e6133a1565b0361191a576013546016546000916001600160a01b0316906118909084613405565b604051600081818185875af1925050503d80600081146118cc576040519150601f19603f3d011682016040523d82523d6000602084013e6118d1565b606091505b50509050806119075760405162461bcd60e51b8152602060048201526002602482015261723760f01b60448201526064016107ba565b61191486898787876120a3565b50611962565b60405162461bcd60e51b815260206004820152601260248201527f496e76616c696420746f6b656e2074797065000000000000000000000000000060448201526064016107ba565b50505050505050565b600d5481611978600b5490565b6119829190613275565b11156119b55760405162461bcd60e51b8152602060048201526002602482015261723160f01b60448201526064016107ba565b600a546001600160a01b03848116911614611a2457600e546001600160a01b0384166000908152600f60205260409020546119f1908390613275565b1115611a245760405162461bcd60e51b8152602060048201526002602482015261391960f11b60448201526064016107ba565b60005b81811015611a6157611a3d600b80546001019055565b611a4f83611a4a600b5490565b612193565b80611a5981613288565b915050611a27565b506001600160a01b0383166000908152600f602052604081208054839290611a8a908490613275565b9091555050505050565b611a9f8484846112d0565b611aab848484846121ad565b610e265760405162461bcd60e51b81526004016107ba9061341c565b60606000611ad4836122ae565b600101905060008167ffffffffffffffff811115611af457611af4612b82565b6040519080825280601f01601f191660200182016040528015611b1e576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b2857509392505050565b611b6684848484612390565b6001811115611bdd5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f72746564000000000000000000000060648201526084016107ba565b816001600160a01b038516611c3957611c3481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c5c565b836001600160a01b0316856001600160a01b031614611c5c57611c5c8582612418565b6001600160a01b038416611c7857611c73816124b5565b611c9b565b846001600160a01b0316846001600160a01b031614611c9b57611c9b8482612564565b5050505050565b6000610687611caf6125a8565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604103611d265760208301516040840151606085015160001a611d1a878285856126cf565b94509450505050611d2e565b506000905060025b9250929050565b600061271060145483611d489190613405565b611d529190613479565b90506000611d60828461349b565b6013546040519192506000916001600160a01b039091169084908381818185875af1925050503d8060008114611db2576040519150601f19603f3d011682016040523d82523d6000602084013e611db7565b606091505b5050905080611ded5760405162461bcd60e51b8152602060048201526002602482015261723560f01b60448201526064016107ba565b60005b601154811015611c9b57600061271060128381548110611e1257611e12613143565b906000526020600020015485611e289190613405565b611e329190613479565b905060118281548110611e4757611e47613143565b60009182526020822001546040516001600160a01b039091169183919081818185875af1925050503d8060008114611e9b576040519150601f19603f3d011682016040523d82523d6000602084013e611ea0565b606091505b50508093505082611ed85760405162461bcd60e51b8152602060048201526002602482015261391b60f11b60448201526064016107ba565b5080611ee381613288565b915050611df0565b600061271060155483611efe9190613405565b611f089190613479565b90506000611f16828461349b565b6013546040516323b872dd60e01b81526001600160a01b0387811660048301529182166024820152604481018590529192508616906323b872dd906064016020604051808303816000875af1158015611f73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f9791906134ae565b5060005b60115481101561209b57600061271060128381548110611fbd57611fbd613143565b906000526020600020015484611fd39190613405565b611fdd9190613479565b9050866001600160a01b03166323b872dd876011858154811061200257612002613143565b60009182526020909120015460405160e084901b6001600160e01b03191681526001600160a01b03928316600482015291166024820152604481018490526064016020604051808303816000875af1158015612062573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208691906134ae565b5050808061209390613288565b915050611f9b565b505050505050565b805b6120af8483613275565b81101561209b57856001600160a01b03166323b872dd8660116000815481106120da576120da613143565b9060005260206000200160009054906101000a90046001600160a01b031686858151811061210a5761210a613143565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015261ffff166044820152606401600060405180830381600087803b15801561216857600080fd5b505af115801561217c573d6000803e3d6000fd5b50505050808061218b90613288565b9150506120a5565b610a42828260405180602001604052806000815250612793565b60006001600160a01b0384163b156122a357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121f19033908990889088906004016134cb565b6020604051808303816000875af192505050801561222c575060408051601f3d908101601f1916820190925261222991810190613507565b60015b612289573d80801561225a576040519150601f19603f3d011682016040523d82523d6000602084013e61225f565b606091505b5080516000036122815760405162461bcd60e51b81526004016107ba9061341c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c8565b506001949350505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106122f7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612323576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061234157662386f26fc10000830492506010015b6305f5e1008310612359576305f5e100830492506008015b612710831061236d57612710830492506004015b6064831061237f576064830492506002015b600a83106106875760010192915050565b6001811115610e26576001600160a01b038416156123d6576001600160a01b038416600090815260036020526040812080548392906123d090849061349b565b90915550505b6001600160a01b03831615610e26576001600160a01b0383166000908152600360205260408120805483929061240d908490613275565b909155505050505050565b6000600161242584610b63565b61242f919061349b565b600083815260076020526040902054909150808214612482576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124c79060019061349b565b600083815260096020526040812054600880549394509092849081106124ef576124ef613143565b90600052602060002001549050806008838154811061251057612510613143565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061254857612548613524565b6001900381819060005260206000200160009055905550505050565b600061256f83610b63565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000306001600160a01b037f000000000000000000000000506d852417261172c5be0b4f376111299f8ddffd1614801561260157507f000000000000000000000000000000000000000000000000000000000000001946145b1561262b57507fb7ef948bf77c097b3e79bfb6bd96a3107ff289e3d5c483b7bda4597b0a2e123d90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f392961903cf69c37e2f3ff817043cf175b66be5bbfff4d21d91c249332406325828401527f06c015bd22b4c69690933c1058878ebdfef31f9aaae40bbe86d8a09fe1b2972c60608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612706575060009050600361278a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561275a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166127835760006001925092505061278a565b9150600090505b94509492505050565b61279d83836127c6565b6127aa60008484846121ad565b61085b5760405162461bcd60e51b81526004016107ba9061341c565b6001600160a01b03821661281c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ba565b6000818152600260205260409020546001600160a01b0316156128815760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ba565b61288f600083836001611b5a565b6000818152600260205260409020546001600160a01b0316156128f45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ba565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280548282559060005260206000209081019282156129b4579160200282015b828111156129b457825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019061297f565b506129c09291506129ff565b5090565b8280548282559060005260206000209081019282156129b4579160200282015b828111156129b45782518255916020019190600101906129e4565b5b808211156129c05760008155600101612a00565b6001600160e01b0319811681146110b157600080fd5b600060208284031215612a3c57600080fd5b813561180881612a14565b60005b83811015612a62578181015183820152602001612a4a565b50506000910152565b60008151808452612a83816020860160208601612a47565b601f01601f19169290920160200192915050565b6020815260006118086020830184612a6b565b600060208284031215612abc57600080fd5b5035919050565b80356001600160a01b0381168114612ada57600080fd5b919050565b60008060408385031215612af257600080fd5b612afb83612ac3565b946020939093013593505050565b600060208284031215612b1b57600080fd5b61180882612ac3565b60008060408385031215612b3757600080fd5b50508035926020909101359150565b600080600060608486031215612b5b57600080fd5b612b6484612ac3565b9250612b7260208501612ac3565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612bc157612bc1612b82565b604052919050565b600067ffffffffffffffff831115612be357612be3612b82565b612bf6601f8401601f1916602001612b98565b9050828152838383011115612c0a57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c3357600080fd5b813567ffffffffffffffff811115612c4a57600080fd5b8201601f81018413612c5b57600080fd5b6112c884823560208401612bc9565b80151581146110b157600080fd5b60008060408385031215612c8b57600080fd5b612c9483612ac3565b91506020830135612ca481612c6a565b809150509250929050565b600067ffffffffffffffff821115612cc957612cc9612b82565b5060051b60200190565b600082601f830112612ce457600080fd5b81356020612cf9612cf483612caf565b612b98565b82815260059290921b84018101918181019086841115612d1857600080fd5b8286015b84811015612d4157803560038110612d345760008081fd5b8352918301918301612d1c565b509695505050505050565b60008083601f840112612d5e57600080fd5b50813567ffffffffffffffff811115612d7657600080fd5b6020830191508360208260051b8501011115611d2e57600080fd5b600082601f830112612da257600080fd5b81356020612db2612cf483612caf565b82815260059290921b84018101918181019086841115612dd157600080fd5b8286015b84811015612d4157803561ffff81168114612df05760008081fd5b8352918301918301612dd5565b60008083601f840112612e0f57600080fd5b50813567ffffffffffffffff811115612e2757600080fd5b602083019150836020828501011115611d2e57600080fd5b60008060008060008060008060008060e08b8d031215612e5e57600080fd5b612e678b612ac3565b995060208b0135985060408b013567ffffffffffffffff80821115612e8b57600080fd5b612e978e838f01612cd3565b995060608d0135915080821115612ead57600080fd5b612eb98e838f01612d4c565b909950975060808d0135915080821115612ed257600080fd5b612ede8e838f01612d4c565b909750955060a08d0135915080821115612ef757600080fd5b612f038e838f01612d91565b945060c08d0135915080821115612f1957600080fd5b50612f268d828e01612dfd565b915080935050809150509295989b9194979a5092959850565b60008060008060808587031215612f5557600080fd5b612f5e85612ac3565b9350612f6c60208601612ac3565b925060408501359150606085013567ffffffffffffffff811115612f8f57600080fd5b8501601f81018713612fa057600080fd5b612faf87823560208401612bc9565b91505092959194509250565b600082601f830112612fcc57600080fd5b81356020612fdc612cf483612caf565b82815260059290921b84018101918181019086841115612ffb57600080fd5b8286015b84811015612d415780358352918301918301612fff565b6000806040838503121561302957600080fd5b823567ffffffffffffffff8082111561304157600080fd5b818501915085601f83011261305557600080fd5b81356020613065612cf483612caf565b82815260059290921b8401810191818101908984111561308457600080fd5b948201945b838610156130a95761309a86612ac3565b82529482019490820190613089565b965050860135925050808211156130bf57600080fd5b506130cc85828601612fbb565b9150509250929050565b600080604083850312156130e957600080fd5b6130f283612ac3565b915061310060208401612ac3565b90509250929050565b600181811c9082168061311d57607f821691505b60208210810361313d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b601f82111561085b57600081815260208120601f850160051c810160208610156131805750805b601f850160051c820191505b8181101561209b5782815560010161318c565b815167ffffffffffffffff8111156131b9576131b9612b82565b6131cd816131c78454613109565b84613159565b602080601f83116001811461320257600084156131ea5750858301515b600019600386901b1c1916600185901b17855561209b565b600085815260208120601f198616915b8281101561323157888601518255948401946001909101908401613212565b508582101561324f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156106875761068761325f565b60006001820161329a5761329a61325f565b5060010190565b60008084546132af81613109565b600182811680156132c757600181146132dc5761330b565b60ff198416875282151583028701945061330b565b8860005260208060002060005b858110156133025781548a8201529084019082016132e9565b50505082870194505b50505050835161331f818360208801612a47565b64173539b7b760d91b9101908152600501949350505050565b60008184825b8581101561336d576001600160a01b0361335783612ac3565b168352602092830192919091019060010161333e565b509095945050505050565b60006001600160fb1b0383111561338e57600080fd5b8260051b80858437919091019392505050565b634e487b7160e01b600052602160045260246000fd5b8281526040602082015260006112c86040830184612a6b565b600082516133e2818460208701612a47565b9190910192915050565b6000602082840312156133fe57600080fd5b5051919050565b80820281158282048414176106875761068761325f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60008261349657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156106875761068761325f565b6000602082840312156134c057600080fd5b815161180881612c6a565b60006001600160a01b038087168352808616602084015250836040830152608060608301526134fd6080830184612a6b565b9695505050505050565b60006020828403121561351957600080fd5b815161180881612a14565b634e487b7160e01b600052603160045260246000fdfea26469706673582212201f02e7f593fb43fc7198626dbeeeb5a19efeab0766f5461ec1029a16aea08d6a64736f6c63430008110033
Deployed Bytecode Sourcemap
90017:7545:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65236:224;;;;;;;;;;-1:-1:-1;65236:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;65236:224:0;;;;;;;;48200:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49712:171::-;;;;;;;;;;-1:-1:-1;49712:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:55:1;;;1679:74;;1667:2;1652:18;49712:171:0;1533:226:1;49230:416:0;;;;;;;;;;-1:-1:-1;49230:416:0;;;;;:::i;:::-;;:::i;:::-;;65876:113;;;;;;;;;;-1:-1:-1;65964:10:0;:17;65876:113;;;2370:25:1;;;2358:2;2343:18;65876:113:0;2224:177:1;90333:41:0;;;;;;;;;;-1:-1:-1;90333:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;91583:137;;;;;;;;;;-1:-1:-1;91583:137:0;;;;;:::i;:::-;;:::i;50412:335::-;;;;;;;;;;-1:-1:-1;50412:335:0;;;;;:::i;:::-;;:::i;90628:39::-;;;;;;;;;;;;;;;;65544:256;;;;;;;;;;-1:-1:-1;65544:256:0;;;;;:::i;:::-;;:::i;50818:185::-;;;;;;;;;;-1:-1:-1;50818:185:0;;;;;:::i;:::-;;:::i;90542:25::-;;;;;;;;;;-1:-1:-1;90542:25:0;;;;-1:-1:-1;;;;;90542:25:0;;;90300:24;;;;;;;;;;;;;;;;66066:233;;;;;;;;;;-1:-1:-1;66066:233:0;;;;;:::i;:::-;;:::i;91477:98::-;;;;;;;;;;-1:-1:-1;91477:98:0;;;;;:::i;:::-;;:::i;90429:23::-;;;;;;;;;;-1:-1:-1;90429:23:0;;;;;:::i;:::-;;:::i;47910:223::-;;;;;;;;;;-1:-1:-1;47910:223:0;;;;;:::i;:::-;;:::i;90245:21::-;;;;;;;;;;;;;:::i;47641:207::-;;;;;;;;;;-1:-1:-1;47641:207:0;;;;;:::i;:::-;;:::i;18106:103::-;;;;;;;;;;;;;:::i;90574:40::-;;;;;;;;;;;;;;;;17458:87;;;;;;;;;;-1:-1:-1;17531:6:0;;-1:-1:-1;;;;;17531:6:0;17458:87;;48369:104;;;;;;;;;;;;;:::i;49955:155::-;;;;;;;;;;-1:-1:-1;49955:155:0;;;;;:::i;:::-;;:::i;90273:20::-;;;;;;;;;;;;;;;;93362:1070;;;;;;:::i;:::-;;:::i;51074:322::-;;;;;;;;;;-1:-1:-1;51074:322:0;;;;;:::i;:::-;;:::i;91728:400::-;;;;;;;;;;-1:-1:-1;91728:400:0;;;;;:::i;:::-;;:::i;92319:410::-;;;;;;;;;;-1:-1:-1;92319:410:0;;;;;:::i;:::-;;:::i;90681:39::-;;;;;;;;;;;;;;;;92136:96;;;;;;;;;;-1:-1:-1;92136:96:0;;;;;:::i;:::-;;:::i;90762:22::-;;;;;;;;;;;;;:::i;50181:164::-;;;;;;;;;;-1:-1:-1;50181:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;50302:25:0;;;50278:4;50302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50181:164;18364:201;;;;;;;;;;-1:-1:-1;18364:201:0;;;;;:::i;:::-;;:::i;90459:30::-;;;;;;;;;;-1:-1:-1;90459:30:0;;;;;:::i;:::-;;:::i;65236:224::-;65338:4;-1:-1:-1;;;;;;65362:50:0;;-1:-1:-1;;;65362:50:0;;:90;;;65416:36;65440:11;65416:23;:36::i;:::-;65355:97;65236:224;-1:-1:-1;;65236:224:0:o;48200:100::-;48254:13;48287:5;48280:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48200:100;:::o;49712:171::-;49788:7;49808:23;49823:7;49808:14;:23::i;:::-;-1:-1:-1;49851:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;49851:24:0;;49712:171::o;49230:416::-;49311:13;49327:23;49342:7;49327:14;:23::i;:::-;49311:39;;49375:5;-1:-1:-1;;;;;49369:11:0;:2;-1:-1:-1;;;;;49369:11:0;;49361:57;;;;-1:-1:-1;;;49361:57:0;;12542:2:1;49361:57:0;;;12524:21:1;12581:2;12561:18;;;12554:30;12620:34;12600:18;;;12593:62;-1:-1:-1;;;12671:18:1;;;12664:31;12712:19;;49361:57:0;;;;;;;;;16080:10;-1:-1:-1;;;;;49453:21:0;;;;:62;;-1:-1:-1;49478:37:0;49495:5;16080:10;50181:164;:::i;49478:37::-;49431:173;;;;-1:-1:-1;;;49431:173:0;;12944:2:1;49431:173:0;;;12926:21:1;12983:2;12963:18;;;12956:30;13022:34;13002:18;;;12995:62;13093:31;13073:18;;;13066:59;13142:19;;49431:173:0;12742:425:1;49431:173:0;49617:21;49626:2;49630:7;49617:8;:21::i;:::-;49300:346;49230:416;;:::o;91583:137::-;17344:13;:11;:13::i;:::-;91665:5:::1;:14:::0;;;;91690:9:::1;:22:::0;91583:137::o;50412:335::-;50607:41;16080:10;50640:7;50607:18;:41::i;:::-;50599:99;;;;-1:-1:-1;;;50599:99:0;;13374:2:1;50599:99:0;;;13356:21:1;13413:2;13393:18;;;13386:30;13452:34;13432:18;;;13425:62;-1:-1:-1;;;13503:18:1;;;13496:43;13556:19;;50599:99:0;13172:409:1;50599:99:0;50711:28;50721:4;50727:2;50731:7;50711:9;:28::i;65544:256::-;65641:7;65677:23;65694:5;65677:16;:23::i;:::-;65669:5;:31;65661:87;;;;-1:-1:-1;;;65661:87:0;;13788:2:1;65661:87:0;;;13770:21:1;13827:2;13807:18;;;13800:30;13866:34;13846:18;;;13839:62;-1:-1:-1;;;13917:18:1;;;13910:41;13968:19;;65661:87:0;13586:407:1;65661:87:0;-1:-1:-1;;;;;;65766:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;65544:256::o;50818:185::-;50956:39;50973:4;50979:2;50983:7;50956:39;;;;;;;;;;;;:16;:39::i;66066:233::-;66141:7;66177:30;65964:10;:17;;65876:113;66177:30;66169:5;:38;66161:95;;;;-1:-1:-1;;;66161:95:0;;14200:2:1;66161:95:0;;;14182:21:1;14239:2;14219:18;;;14212:30;14278:34;14258:18;;;14251:62;-1:-1:-1;;;14329:18:1;;;14322:42;14381:19;;66161:95:0;13998:408:1;66161:95:0;66274:10;66285:5;66274:17;;;;;;;;:::i;:::-;;;;;;;;;66267:24;;66066:233;;;:::o;91477:98::-;17344:13;:11;:13::i;:::-;91549:7:::1;:18;91559:8:::0;91549:7;:18:::1;:::i;:::-;;91477:98:::0;:::o;90429:23::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;90429:23:0;;-1:-1:-1;90429:23:0;:::o;47910:223::-;47982:7;52797:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52797:16:0;;48046:56;;;;-1:-1:-1;;;48046:56:0;;16949:2:1;48046:56:0;;;16931:21:1;16988:2;16968:18;;;16961:30;17027:26;17007:18;;;17000:54;17071:18;;48046:56:0;16747:348:1;90245:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47641:207::-;47713:7;-1:-1:-1;;;;;47741:19:0;;47733:73;;;;-1:-1:-1;;;47733:73:0;;17302:2:1;47733:73:0;;;17284:21:1;17341:2;17321:18;;;17314:30;17380:34;17360:18;;;17353:62;-1:-1:-1;;;17431:18:1;;;17424:39;17480:19;;47733:73:0;17100:405:1;47733:73:0;-1:-1:-1;;;;;;47824:16:0;;;;;:9;:16;;;;;;;47641:207::o;18106:103::-;17344:13;:11;:13::i;:::-;18171:30:::1;18198:1;18171:18;:30::i;:::-;18106:103::o:0;48369:104::-;48425:13;48458:7;48451:14;;;;;:::i;49955:155::-;50050:52;16080:10;50083:8;50093;50050:18;:52::i;93362:1070::-;93725:7;;93670:177;;-1:-1:-1;;;;;93725:7:0;93751:52;93757:10;93769:9;93780:7;;93789:13;;93751:5;:52::i;:::-;93822:10;;93670:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;93670:36:0;;-1:-1:-1;;;93670:177:0:i;:::-;93648:229;;;;-1:-1:-1;;;93648:229:0;;17712:2:1;93648:229:0;;;17694:21:1;17751:1;17731:18;;;17724:29;-1:-1:-1;;;17769:18:1;;;17762:32;17811:18;;93648:229:0;17510:325:1;93648:229:0;93890:189;93913:10;93938:6;93945:1;93938:9;;;;;;;;:::i;:::-;;;;;;;93962:7;;93970:1;93962:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;93987:13;;94001:1;93987:16;;;;;;;:::i;:::-;;;;;;;94018:10;94043:1;94059:9;93890:8;:189::i;:::-;94113:1;94096:18;;94092:287;;;94131:236;94158:10;94187:6;94194:1;94187:9;;;;;;;;:::i;:::-;;;;;;;94215:7;;94223:1;94215:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;94244:13;;94258:1;94244:16;;;;;;;:::i;:::-;;;;;;;94279:10;94308:13;;94322:1;94308:16;;;;;;;:::i;:::-;;;;;;;94343:9;94131:8;:236::i;:::-;94391:33;94397:10;94409:3;94414:9;94391:5;:33::i;:::-;93362:1070;;;;;;;;;;:::o;51074:322::-;51248:41;16080:10;51281:7;51248:18;:41::i;:::-;51240:99;;;;-1:-1:-1;;;51240:99:0;;13374:2:1;51240:99:0;;;13356:21:1;13413:2;13393:18;;;13386:30;13452:34;13432:18;;;13425:62;-1:-1:-1;;;13503:18:1;;;13496:43;13556:19;;51240:99:0;13172:409:1;51240:99:0;51350:38;51364:4;51370:2;51374:7;51383:4;51350:13;:38::i;:::-;51074:322;;;;:::o;91728:400::-;17344:13;:11;:13::i;:::-;91859:20:::1;91899:9:::0;91894:112:::1;91918:14;:21;91914:1;:25;91894:112;;;91977:14;91992:1;91977:17;;;;;;;;:::i;:::-;;;;;;;91961:33;;;;;:::i;:::-;::::0;-1:-1:-1;91941:3:0;::::1;::::0;::::1;:::i;:::-;;;;91894:112;;;;92024:12;92040:5;92024:21;92016:36;;;::::0;-1:-1:-1;;;92016:36:0;;18444:2:1;92016:36:0::1;::::0;::::1;18426:21:1::0;18483:1;18463:18;;;18456:29;-1:-1:-1;;;18501:18:1;;;18494:32;18543:18;;92016:36:0::1;18242:325:1::0;92016:36:0::1;92063:16:::0;;::::1;::::0;:6:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;92090:30:0;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;92319:410::-:0;53199:4;52797:16;;;:7;:16;;;;;;92428:13;;-1:-1:-1;;;;;52797:16:0;92459:46;;;;-1:-1:-1;;;92459:46:0;;18774:2:1;92459:46:0;;;18756:21:1;18813:2;18793:18;;;18786:30;18852:19;18832:18;;;18825:47;18889:18;;92459:46:0;18572:341:1;92459:46:0;92545:1;92526:8;92520:22;;;;;:::i;:::-;;;:26;92516:72;;;92568:8;92561:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92319:410;;;:::o;92516:72::-;92662:7;92671:25;92688:7;92671:16;:25::i;:::-;92645:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;92600:121;;92319:410;;;:::o;92136:96::-;17344:13;:11;:13::i;:::-;92204:8:::1;:20;92215:9:::0;92204:8;:20:::1;:::i;90762:22::-:0;;;;;;;:::i;18364:201::-;17344:13;:11;:13::i;:::-;-1:-1:-1;;;;;18453:22:0;::::1;18445:73;;;::::0;-1:-1:-1;;;18445:73:0;;20312:2:1;18445:73:0::1;::::0;::::1;20294:21:1::0;20351:2;20331:18;;;20324:30;20390:34;20370:18;;;20363:62;-1:-1:-1;;;20441:18:1;;;20434:36;20487:19;;18445:73:0::1;20110:402:1::0;18445:73:0::1;18529:28;18548:8;18529:18;:28::i;:::-;18364:201:::0;:::o;90459:30::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;90459:30:0;:::o;47272:305::-;47374:4;-1:-1:-1;;;;;;47411:40:0;;-1:-1:-1;;;47411:40:0;;:105;;-1:-1:-1;;;;;;;47468:48:0;;-1:-1:-1;;;47468:48:0;47411:105;:158;;;-1:-1:-1;;;;;;;;;;44979:40:0;;;47533:36;44870:157;59531:135;53199:4;52797:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52797:16:0;59605:53;;;;-1:-1:-1;;;59605:53:0;;16949:2:1;59605:53:0;;;16931:21:1;16988:2;16968:18;;;16961:30;17027:26;17007:18;;;17000:54;17071:18;;59605:53:0;16747:348:1;58810:174:0;58885:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;58885:29:0;-1:-1:-1;;;;;58885:29:0;;;;;;;;:24;;58939:23;58885:24;58939:14;:23::i;:::-;-1:-1:-1;;;;;58930:46:0;;;;;;;;;;;58810:174;;:::o;17623:132::-;17531:6;;-1:-1:-1;;;;;17531:6:0;16080:10;17687:23;17679:68;;;;-1:-1:-1;;;17679:68:0;;20719:2:1;17679:68:0;;;20701:21:1;;;20738:18;;;20731:30;20797:34;20777:18;;;20770:62;20849:18;;17679:68:0;20517:356:1;53429:264:0;53522:4;53539:13;53555:23;53570:7;53555:14;:23::i;:::-;53539:39;;53608:5;-1:-1:-1;;;;;53597:16:0;:7;-1:-1:-1;;;;;53597:16:0;;:52;;;-1:-1:-1;;;;;;50302:25:0;;;50278:4;50302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;53617:32;53597:87;;;;53677:7;-1:-1:-1;;;;;53653:31:0;:20;53665:7;53653:11;:20::i;:::-;-1:-1:-1;;;;;53653:31:0;;53597:87;53589:96;53429:264;-1:-1:-1;;;;53429:264:0:o;57428:1263::-;57587:4;-1:-1:-1;;;;;57560:31:0;:23;57575:7;57560:14;:23::i;:::-;-1:-1:-1;;;;;57560:31:0;;57552:81;;;;-1:-1:-1;;;57552:81:0;;21080:2:1;57552:81:0;;;21062:21:1;21119:2;21099:18;;;21092:30;21158:34;21138:18;;;21131:62;-1:-1:-1;;;21209:18:1;;;21202:35;21254:19;;57552:81:0;20878:401:1;57552:81:0;-1:-1:-1;;;;;57652:16:0;;57644:65;;;;-1:-1:-1;;;57644:65:0;;21486:2:1;57644:65:0;;;21468:21:1;21525:2;21505:18;;;21498:30;21564:34;21544:18;;;21537:62;-1:-1:-1;;;21615:18:1;;;21608:34;21659:19;;57644:65:0;21284:400:1;57644:65:0;57722:42;57743:4;57749:2;57753:7;57762:1;57722:20;:42::i;:::-;57894:4;-1:-1:-1;;;;;57867:31:0;:23;57882:7;57867:14;:23::i;:::-;-1:-1:-1;;;;;57867:31:0;;57859:81;;;;-1:-1:-1;;;57859:81:0;;21080:2:1;57859:81:0;;;21062:21:1;21119:2;21099:18;;;21092:30;21158:34;21138:18;;;21131:62;-1:-1:-1;;;21209:18:1;;;21202:35;21254:19;;57859:81:0;20878:401:1;57859:81:0;58012:24;;;;:15;:24;;;;;;;;58005:31;;-1:-1:-1;;;;;;58005:31:0;;;;;;-1:-1:-1;;;;;58488:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;58488:20:0;;;58523:13;;;;;;;;;:18;;58005:31;58523:18;;;58563:16;;;:7;:16;;;;;;:21;;;;;;;;;;58602:27;;58028:7;;58602:27;;;49300:346;49230:416;;:::o;18725:191::-;18818:6;;;-1:-1:-1;;;;;18835:17:0;;;-1:-1:-1;;;;;;18835:17:0;;;;;;;18868:40;;18818:6;;;18835:17;18818:6;;18868:40;;18799:16;;18868:40;18788:128;18725:191;:::o;59127:315::-;59282:8;-1:-1:-1;;;;;59273:17:0;:5;-1:-1:-1;;;;;59273:17:0;;59265:55;;;;-1:-1:-1;;;59265:55:0;;21891:2:1;59265:55:0;;;21873:21:1;21930:2;21910:18;;;21903:30;21969:27;21949:18;;;21942:55;22014:18;;59265:55:0;21689:349:1;59265:55:0;-1:-1:-1;;;;;59331:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;59331:46:0;;;;;;;;;;59393:41;;540::1;;;59393::0;;513:18:1;59393:41:0;;;;;;;59127:315;;;:::o;96774:785::-;96950:7;96990:561;97094:164;97285:5;97317:9;97380:7;;97363:25;;;;;;;;;:::i;:::-;;;;;;;;;;;;;97353:36;;;;;;97443:13;;97426:31;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;97426:31:0;;;;;;;;;97416:42;;97426:31;97416:42;;;;97057:460;;;23271:25:1;;;;-1:-1:-1;;;;;23332:55:1;;;23312:18;;;23305:83;;;;23404:18;;;23397:34;;;;23447:18;;;23440:34;23490:19;;;23483:35;;;;97485:9:0;23534:19:1;;;23527:35;23243:19;;97057:460:0;;;;;;;;;;;;97025:511;;;;;;96990:16;:561::i;:::-;96970:581;96774:785;-1:-1:-1;;;;;;;96774:785:0:o;84589:683::-;84729:4;84747:17;84766:24;84794:33;84811:4;84817:9;84794:16;:33::i;:::-;84746:81;;-1:-1:-1;84746:81:0;-1:-1:-1;84851:26:0;84842:5;:35;;;;;;;;:::i;:::-;;:58;;;;;84894:6;-1:-1:-1;;;;;84881:19:0;:9;-1:-1:-1;;;;;84881:19:0;;84842:58;84838:102;;;84924:4;84917:11;;;;;;84838:102;84953:12;84967:19;84990:6;-1:-1:-1;;;;;84990:17:0;85045:34;;;85081:4;85087:9;85022:75;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;85022:75:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;85022:75:0;;;;;;;;;;84990:118;;;;85022:75;84990:118;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84952:156;;;;85127:7;:43;;;;;85151:6;:13;85168:2;85151:19;85127:43;:136;;;;-1:-1:-1;85187:29:0;;-1:-1:-1;;;85228:34:0;85187:29;;;;;;;;;;;;:::i;:::-;:76;85127:136;85119:145;;;;;;84589:683;;;;;;:::o;94440:746::-;94686:16;94677:5;:25;;;;;;;;:::i;:::-;;94673:506;;94719:19;94730:7;94719:10;:19::i;:::-;94673:506;;;94769:15;94760:5;:24;;;;;;;;:::i;:::-;;94756:423;;94801:33;94811:6;94819:5;94826:7;94801:9;:33::i;94756:423::-;94865:16;94856:5;:25;;;;;;;;:::i;:::-;;94852:327;;94917:10;;94970:14;;94899:12;;-1:-1:-1;;;;;94917:10:0;;94958:26;;:9;:26;:::i;:::-;94917:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94898:105;;;95026:7;95018:22;;;;-1:-1:-1;;;95018:22:0;;25065:2:1;95018:22:0;;;25047:21:1;25104:1;25084:18;;;25077:29;-1:-1:-1;;;25122:18:1;;;25115:32;25164:18;;95018:22:0;24863:325:1;95018:22:0;95055:51;95066:6;95074:5;95081:7;95090;95099:6;95055:10;:51::i;:::-;94883:235;94852:327;;;95139:28;;-1:-1:-1;;;95139:28:0;;25395:2:1;95139:28:0;;;25377:21:1;25434:2;25414:18;;;25407:30;25473:20;25453:18;;;25446:48;25511:18;;95139:28:0;25193:342:1;94852:327:0;94440:746;;;;;;;:::o;92813:506::-;92968:5;;92957:7;92935:19;:9;26950:14;;26858:114;92935:19;:29;;;;:::i;:::-;:38;;92927:53;;;;-1:-1:-1;;;92927:53:0;;25742:2:1;92927:53:0;;;25724:21:1;25781:1;25761:18;;;25754:29;-1:-1:-1;;;25799:18:1;;;25792:32;25841:18;;92927:53:0;25540:325:1;92927:53:0;17531:6;;-1:-1:-1;;;;;93035:16:0;;;17531:6;;93035:16;93031:98;;93101:9;;-1:-1:-1;;;;;93074:13:0;;;;;;:6;:13;;;;;;:23;;93090:7;;93074:23;:::i;:::-;:36;;93066:51;;;;-1:-1:-1;;;93066:51:0;;26072:2:1;93066:51:0;;;26054:21:1;26111:1;26091:18;;;26084:29;-1:-1:-1;;;26129:18:1;;;26122:32;26171:18;;93066:51:0;25870:325:1;93066:51:0;93146:9;93141:136;93165:7;93161:1;:11;93141:136;;;93194:21;:9;27069:19;;27087:1;27069:19;;;26980:127;93194:21;93230:35;93240:3;93245:19;:9;26950:14;;26858:114;93245:19;93230:9;:35::i;:::-;93174:3;;;;:::i;:::-;;;;93141:136;;;-1:-1:-1;;;;;;93287:13:0;;;;;;:6;:13;;;;;:24;;93304:7;;93287:13;:24;;93304:7;;93287:24;:::i;:::-;;;;-1:-1:-1;;;;;92813:506:0:o;52277:313::-;52433:28;52443:4;52449:2;52453:7;52433:9;:28::i;:::-;52480:47;52503:4;52509:2;52513:7;52522:4;52480:22;:47::i;:::-;52472:110;;;;-1:-1:-1;;;52472:110:0;;;;;;;:::i;13416:716::-;13472:13;13523:14;13540:17;13551:5;13540:10;:17::i;:::-;13560:1;13540:21;13523:38;;13576:20;13610:6;13599:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13599:18:0;-1:-1:-1;13576:41:0;-1:-1:-1;13741:28:0;;;13757:2;13741:28;13798:288;-1:-1:-1;;13830:5:0;-1:-1:-1;;;13967:2:0;13956:14;;13951:30;13830:5;13938:44;14028:2;14019:11;;;-1:-1:-1;14049:21:0;13798:288;14049:21;-1:-1:-1;14107:6:0;13416:716;-1:-1:-1;;;13416:716:0:o;66373:915::-;66550:61;66577:4;66583:2;66587:12;66601:9;66550:26;:61::i;:::-;66640:1;66628:9;:13;66624:222;;;66771:63;;-1:-1:-1;;;66771:63:0;;26953:2:1;66771:63:0;;;26935:21:1;26992:2;26972:18;;;26965:30;27031:34;27011:18;;;27004:62;27102:23;27082:18;;;27075:51;27143:19;;66771:63:0;26751:417:1;66624:222:0;66876:12;-1:-1:-1;;;;;66905:18:0;;66901:187;;66940:40;66972:7;68115:10;:17;;68088:24;;;;:15;:24;;;;;:44;;;68143:24;;;;;;;;;;;;68011:164;66940:40;66901:187;;;67010:2;-1:-1:-1;;;;;67002:10:0;:4;-1:-1:-1;;;;;67002:10:0;;66998:90;;67029:47;67062:4;67068:7;67029:32;:47::i;:::-;-1:-1:-1;;;;;67102:16:0;;67098:183;;67135:45;67172:7;67135:36;:45::i;:::-;67098:183;;;67208:4;-1:-1:-1;;;;;67202:10:0;:2;-1:-1:-1;;;;;67202:10:0;;67198:83;;67229:40;67257:2;67261:7;67229:27;:40::i;:::-;66539:749;66373:915;;;;:::o;89748:167::-;89825:7;89852:55;89874:20;:18;:20::i;:::-;89896:10;82758:57;;-1:-1:-1;;;82758:57:0;;;30417:27:1;30460:11;;;30453:27;;;30496:12;;;30489:28;;;82721:7:0;;30533:12:1;;82758:57:0;;;;;;;;;;;;82748:68;;;;;;82741:75;;82628:196;;;;;76277:747;76358:7;76367:12;76396:9;:16;76416:2;76396:22;76392:625;;76740:4;76725:20;;76719:27;76790:4;76775:20;;76769:27;76848:4;76833:20;;76827:27;76435:9;76819:36;76891:25;76902:4;76819:36;76719:27;76769;76891:10;:25::i;:::-;76884:32;;;;;;;;;76392:625;-1:-1:-1;76965:1:0;;-1:-1:-1;76969:35:0;76392:625;76277:747;;;;;:::o;95194:590::-;95251:16;95303:5;95281:18;;95271:7;:28;;;;:::i;:::-;95270:38;;;;:::i;:::-;95251:57;-1:-1:-1;95319:19:0;95341:18;95251:57;95341:7;:18;:::i;:::-;95441:10;;:36;;95319:40;;-1:-1:-1;95423:12:0;;-1:-1:-1;;;;;95441:10:0;;;;95464:8;;95423:12;95441:36;95423:12;95441:36;95464:8;95441:10;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95422:55;;;95496:7;95488:22;;;;-1:-1:-1;;;95488:22:0;;27730:2:1;95488:22:0;;;27712:21:1;27769:1;27749:18;;;27742:29;-1:-1:-1;;;27787:18:1;;;27780:32;27829:18;;95488:22:0;27528:325:1;95488:22:0;95551:9;95546:231;95570:6;:13;95566:17;;95546:231;;;95605:16;95659:5;95639:13;95653:1;95639:16;;;;;;;;:::i;:::-;;;;;;;;;95625:11;:30;;;;:::i;:::-;95624:40;;;;:::i;:::-;95605:59;;95693:6;95700:1;95693:9;;;;;;;;:::i;:::-;;;;;;;;;;:35;;-1:-1:-1;;;;;95693:9:0;;;;95715:8;;95693:35;;:9;:35;95715:8;95693:9;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95679:49;;;;;95751:7;95743:22;;;;-1:-1:-1;;;95743:22:0;;28060:2:1;95743:22:0;;;28042:21:1;28099:1;28079:18;;;28072:29;-1:-1:-1;;;28117:18:1;;;28110:32;28159:18;;95743:22:0;27858:325:1;95743:22:0;-1:-1:-1;95585:3:0;;;;:::i;:::-;;;;95546:231;;95792:562;95913:16;95964:5;95943:17;;95933:7;:27;;;;:::i;:::-;95932:37;;;;:::i;:::-;95913:56;-1:-1:-1;95980:19:0;96002:18;95913:56;96002:7;:18;:::i;:::-;96090:10;;96055:56;;-1:-1:-1;;;96055:56:0;;-1:-1:-1;;;;;28469:15:1;;;96055:56:0;;;28451:34:1;96090:10:0;;;28501:18:1;;;28494:43;28553:18;;;28546:34;;;95980:40:0;;-1:-1:-1;96055:27:0;;;;;28363:18:1;;96055:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;96152:9;96147:200;96171:6;:13;96167:17;;96147:200;;;96206:16;96260:5;96240:13;96254:1;96240:16;;;;;;;;:::i;:::-;;;;;;;;;96226:11;:30;;;;:::i;:::-;96225:40;;;;:::i;:::-;96206:59;;96287:6;-1:-1:-1;;;;;96280:27:0;;96308:5;96315:6;96322:1;96315:9;;;;;;;;:::i;:::-;;;;;;;;;;;96280:55;;;;;;-1:-1:-1;;;;;;96280:55:0;;;-1:-1:-1;;;;;28469:15:1;;;96280:55:0;;;28451:34:1;96315:9:0;;28501:18:1;;;28494:43;28553:18;;;28546:34;;;28363:18;;96280:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;96191:156;96186:3;;;;;:::i;:::-;;;;96147:200;;;;95902:452;;95792:562;;;:::o;96362:325::-;96560:6;96543:137;96572:16;96581:7;96572:6;:16;:::i;:::-;96568:1;:20;96543:137;;;96618:6;-1:-1:-1;;;;;96610:28:0;;96639:5;96646:6;96653:1;96646:9;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;96646:9:0;96657:7;96665:1;96657:10;;;;;;;;:::i;:::-;;;;;;;;;;;96610:58;;-1:-1:-1;;;;;;96610:58:0;;;;;;;-1:-1:-1;;;;;29121:15:1;;;96610:58:0;;;29103:34:1;29173:15;;;;29153:18;;;29146:43;29237:6;29225:19;29205:18;;;29198:47;29015:18;;96610:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96590:3;;;;;:::i;:::-;;;;96543:137;;54035:110;54111:26;54121:2;54125:7;54111:26;;;;;;;;;;;;:9;:26::i;60230:853::-;60384:4;-1:-1:-1;;;;;60405:13:0;;35031:19;:23;60401:675;;60441:71;;-1:-1:-1;;;60441:71:0;;-1:-1:-1;;;;;60441:36:0;;;;;:71;;16080:10;;60492:4;;60498:7;;60507:4;;60441:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60441:71:0;;;;;;;;-1:-1:-1;;60441:71:0;;;;;;;;;;;;:::i;:::-;;;60437:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60682:6;:13;60699:1;60682:18;60678:328;;60725:60;;-1:-1:-1;;;60725:60:0;;;;;;;:::i;60678:328::-;60956:6;60950:13;60941:6;60937:2;60933:15;60926:38;60437:584;-1:-1:-1;;;;;;60563:51:0;-1:-1:-1;;;60563:51:0;;-1:-1:-1;60556:58:0;;60401:675;-1:-1:-1;61060:4:0;60230:853;;;;;;:::o;10273:922::-;10326:7;;10413:6;10404:15;;10400:102;;10449:6;10440:15;;;-1:-1:-1;10484:2:0;10474:12;10400:102;10529:6;10520:5;:15;10516:102;;10565:6;10556:15;;;-1:-1:-1;10600:2:0;10590:12;10516:102;10645:6;10636:5;:15;10632:102;;10681:6;10672:15;;;-1:-1:-1;10716:2:0;10706:12;10632:102;10761:5;10752;:14;10748:99;;10796:5;10787:14;;;-1:-1:-1;10830:1:0;10820:11;10748:99;10874:5;10865;:14;10861:99;;10909:5;10900:14;;;-1:-1:-1;10943:1:0;10933:11;10861:99;10987:5;10978;:14;10974:99;;11022:5;11013:14;;;-1:-1:-1;11056:1:0;11046:11;10974:99;11100:5;11091;:14;11087:66;;11136:1;11126:11;11181:6;10273:922;-1:-1:-1;;10273:922:0:o;61815:410::-;62005:1;61993:9;:13;61989:229;;;-1:-1:-1;;;;;62027:18:0;;;62023:87;;-1:-1:-1;;;;;62066:15:0;;;;;;:9;:15;;;;;:28;;62085:9;;62066:15;:28;;62085:9;;62066:28;:::i;:::-;;;;-1:-1:-1;;62023:87:0;-1:-1:-1;;;;;62128:16:0;;;62124:83;;-1:-1:-1;;;;;62165:13:0;;;;;;:9;:13;;;;;:26;;62182:9;;62165:13;:26;;62182:9;;62165:26;:::i;:::-;;;;-1:-1:-1;;61815:410:0;;;;:::o;68802:988::-;69068:22;69118:1;69093:22;69110:4;69093:16;:22::i;:::-;:26;;;;:::i;:::-;69130:18;69151:26;;;:17;:26;;;;;;69068:51;;-1:-1:-1;69284:28:0;;;69280:328;;-1:-1:-1;;;;;69351:18:0;;69329:19;69351:18;;;:12;:18;;;;;;;;:34;;;;;;;;;69402:30;;;;;;:44;;;69519:30;;:17;:30;;;;;:43;;;69280:328;-1:-1:-1;69704:26:0;;;;:17;:26;;;;;;;;69697:33;;;-1:-1:-1;;;;;69748:18:0;;;;;:12;:18;;;;;:34;;;;;;;69741:41;68802:988::o;70085:1079::-;70363:10;:17;70338:22;;70363:21;;70383:1;;70363:21;:::i;:::-;70395:18;70416:24;;;:15;:24;;;;;;70789:10;:26;;70338:46;;-1:-1:-1;70416:24:0;;70338:46;;70789:26;;;;;;:::i;:::-;;;;;;;;;70767:48;;70853:11;70828:10;70839;70828:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;70933:28;;;:15;:28;;;;;;;:41;;;71105:24;;;;;71098:31;71140:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;70156:1008;;;70085:1079;:::o;67589:221::-;67674:14;67691:20;67708:2;67691:16;:20::i;:::-;-1:-1:-1;;;;;67722:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;67767:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;67589:221:0:o;88521:314::-;88574:7;88606:4;-1:-1:-1;;;;;88615:12:0;88598:29;;:66;;;;;88648:16;88631:13;:33;88598:66;88594:234;;;-1:-1:-1;88688:24:0;;88521:314::o;88594:234::-;-1:-1:-1;89024:73:0;;;88774:10;89024:73;;;;31218:25:1;;;;88786:12:0;31259:18:1;;;31252:34;88800:15:0;31302:18:1;;;31295:34;89068:13:0;31345:18:1;;;31338:34;89091:4:0;31388:19:1;;;;31381:84;;;;89024:73:0;;;;;;;;;;31190:19:1;;;;89024:73:0;;;89014:84;;;;;;88521:314::o;79278:1520::-;79409:7;;80343:66;80330:79;;80326:163;;;-1:-1:-1;80442:1:0;;-1:-1:-1;80446:30:0;80426:51;;80326:163;80603:24;;;80586:14;80603:24;;;;;;;;;30783:25:1;;;30856:4;30844:17;;30824:18;;;30817:45;;;;30878:18;;;30871:34;;;30921:18;;;30914:34;;;80603:24:0;;30755:19:1;;80603:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;80603:24:0;;-1:-1:-1;;80603:24:0;;;-1:-1:-1;;;;;;;80642:20:0;;80638:103;;80695:1;80699:29;80679:50;;;;;;;80638:103;80761:6;-1:-1:-1;80769:20:0;;-1:-1:-1;79278:1520:0;;;;;;;;:::o;54372:319::-;54501:18;54507:2;54511:7;54501:5;:18::i;:::-;54552:53;54583:1;54587:2;54591:7;54600:4;54552:22;:53::i;:::-;54530:153;;;;-1:-1:-1;;;54530:153:0;;;;;;;:::i;55027:942::-;-1:-1:-1;;;;;55107:16:0;;55099:61;;;;-1:-1:-1;;;55099:61:0;;31678:2:1;55099:61:0;;;31660:21:1;;;31697:18;;;31690:30;31756:34;31736:18;;;31729:62;31808:18;;55099:61:0;31476:356:1;55099:61:0;53199:4;52797:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52797:16:0;53223:31;55171:58;;;;-1:-1:-1;;;55171:58:0;;32039:2:1;55171:58:0;;;32021:21:1;32078:2;32058:18;;;32051:30;32117;32097:18;;;32090:58;32165:18;;55171:58:0;31837:352:1;55171:58:0;55242:48;55271:1;55275:2;55279:7;55288:1;55242:20;:48::i;:::-;53199:4;52797:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52797:16:0;53223:31;55380:58;;;;-1:-1:-1;;;55380:58:0;;32039:2:1;55380:58:0;;;32021:21:1;32078:2;32058:18;;;32051:30;32117;32097:18;;;32090:58;32165:18;;55380:58:0;31837:352:1;55380:58:0;-1:-1:-1;;;;;55787:13:0;;;;;;:9;:13;;;;;;;;:18;;55804:1;55787:18;;;55829:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;55829:21:0;;;;;55868:33;55837:7;;55787:13;;55868:33;;55787:13;;55868:33;91549:18:::1;91477:98:::0;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1764:196::-;1832:20;;-1:-1:-1;;;;;1881:54:1;;1871:65;;1861:93;;1950:1;1947;1940:12;1861:93;1764:196;;;:::o;1965:254::-;2033:6;2041;2094:2;2082:9;2073:7;2069:23;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;2133:29;2152:9;2133:29;:::i;:::-;2123:39;2209:2;2194:18;;;;2181:32;;-1:-1:-1;;;1965:254:1:o;2406:186::-;2465:6;2518:2;2506:9;2497:7;2493:23;2489:32;2486:52;;;2534:1;2531;2524:12;2486:52;2557:29;2576:9;2557:29;:::i;2597:248::-;2665:6;2673;2726:2;2714:9;2705:7;2701:23;2697:32;2694:52;;;2742:1;2739;2732:12;2694:52;-1:-1:-1;;2765:23:1;;;2835:2;2820:18;;;2807:32;;-1:-1:-1;2597:248:1:o;2850:328::-;2927:6;2935;2943;2996:2;2984:9;2975:7;2971:23;2967:32;2964:52;;;3012:1;3009;3002:12;2964:52;3035:29;3054:9;3035:29;:::i;:::-;3025:39;;3083:38;3117:2;3106:9;3102:18;3083:38;:::i;:::-;3073:48;;3168:2;3157:9;3153:18;3140:32;3130:42;;2850:328;;;;;:::o;3183:127::-;3244:10;3239:3;3235:20;3232:1;3225:31;3275:4;3272:1;3265:15;3299:4;3296:1;3289:15;3315:275;3386:2;3380:9;3451:2;3432:13;;-1:-1:-1;;3428:27:1;3416:40;;3486:18;3471:34;;3507:22;;;3468:62;3465:88;;;3533:18;;:::i;:::-;3569:2;3562:22;3315:275;;-1:-1:-1;3315:275:1:o;3595:407::-;3660:5;3694:18;3686:6;3683:30;3680:56;;;3716:18;;:::i;:::-;3754:57;3799:2;3778:15;;-1:-1:-1;;3774:29:1;3805:4;3770:40;3754:57;:::i;:::-;3745:66;;3834:6;3827:5;3820:21;3874:3;3865:6;3860:3;3856:16;3853:25;3850:45;;;3891:1;3888;3881:12;3850:45;3940:6;3935:3;3928:4;3921:5;3917:16;3904:43;3994:1;3987:4;3978:6;3971:5;3967:18;3963:29;3956:40;3595:407;;;;;:::o;4007:451::-;4076:6;4129:2;4117:9;4108:7;4104:23;4100:32;4097:52;;;4145:1;4142;4135:12;4097:52;4185:9;4172:23;4218:18;4210:6;4207:30;4204:50;;;4250:1;4247;4240:12;4204:50;4273:22;;4326:4;4318:13;;4314:27;-1:-1:-1;4304:55:1;;4355:1;4352;4345:12;4304:55;4378:74;4444:7;4439:2;4426:16;4421:2;4417;4413:11;4378:74;:::i;4463:118::-;4549:5;4542:13;4535:21;4528:5;4525:32;4515:60;;4571:1;4568;4561:12;4586:315;4651:6;4659;4712:2;4700:9;4691:7;4687:23;4683:32;4680:52;;;4728:1;4725;4718:12;4680:52;4751:29;4770:9;4751:29;:::i;:::-;4741:39;;4830:2;4819:9;4815:18;4802:32;4843:28;4865:5;4843:28;:::i;:::-;4890:5;4880:15;;;4586:315;;;;;:::o;4906:190::-;4973:4;5006:18;4998:6;4995:30;4992:56;;;5028:18;;:::i;:::-;-1:-1:-1;5073:1:1;5069:14;5085:4;5065:25;;4906:190::o;5101:830::-;5162:5;5215:3;5208:4;5200:6;5196:17;5192:27;5182:55;;5233:1;5230;5223:12;5182:55;5269:6;5256:20;5295:4;5319:67;5335:50;5382:2;5335:50;:::i;:::-;5319:67;:::i;:::-;5420:15;;;5506:1;5502:10;;;;5490:23;;5486:32;;;5451:12;;;;5530:15;;;5527:35;;;5558:1;5555;5548:12;5527:35;5594:2;5586:6;5582:15;5606:296;5622:6;5617:3;5614:15;5606:296;;;5702:3;5689:17;5739:1;5732:5;5729:12;5719:110;;5783:1;5812:2;5808;5801:14;5719:110;5842:18;;5880:12;;;;5639;;5606:296;;;-1:-1:-1;5920:5:1;5101:830;-1:-1:-1;;;;;;5101:830:1:o;5936:367::-;5999:8;6009:6;6063:3;6056:4;6048:6;6044:17;6040:27;6030:55;;6081:1;6078;6071:12;6030:55;-1:-1:-1;6104:20:1;;6147:18;6136:30;;6133:50;;;6179:1;6176;6169:12;6133:50;6216:4;6208:6;6204:17;6192:29;;6276:3;6269:4;6259:6;6256:1;6252:14;6244:6;6240:27;6236:38;6233:47;6230:67;;;6293:1;6290;6283:12;6308:839;6361:5;6414:3;6407:4;6399:6;6395:17;6391:27;6381:55;;6432:1;6429;6422:12;6381:55;6468:6;6455:20;6494:4;6518:67;6534:50;6581:2;6534:50;:::i;6518:67::-;6619:15;;;6705:1;6701:10;;;;6689:23;;6685:32;;;6650:12;;;;6729:15;;;6726:35;;;6757:1;6754;6747:12;6726:35;6793:2;6785:6;6781:15;6805:313;6821:6;6816:3;6813:15;6805:313;;;6901:3;6888:17;6949:6;6942:5;6938:18;6931:5;6928:29;6918:127;;6999:1;7028:2;7024;7017:14;6918:127;7058:18;;7096:12;;;;6838;;6805:313;;7152:347;7203:8;7213:6;7267:3;7260:4;7252:6;7248:17;7244:27;7234:55;;7285:1;7282;7275:12;7234:55;-1:-1:-1;7308:20:1;;7351:18;7340:30;;7337:50;;;7383:1;7380;7373:12;7337:50;7420:4;7412:6;7408:17;7396:29;;7472:3;7465:4;7456:6;7448;7444:19;7440:30;7437:39;7434:59;;;7489:1;7486;7479:12;7504:1677;7745:6;7753;7761;7769;7777;7785;7793;7801;7809;7817;7870:3;7858:9;7849:7;7845:23;7841:33;7838:53;;;7887:1;7884;7877:12;7838:53;7910:29;7929:9;7910:29;:::i;:::-;7900:39;;7986:2;7975:9;7971:18;7958:32;7948:42;;8041:2;8030:9;8026:18;8013:32;8064:18;8105:2;8097:6;8094:14;8091:34;;;8121:1;8118;8111:12;8091:34;8144:68;8204:7;8195:6;8184:9;8180:22;8144:68;:::i;:::-;8134:78;;8265:2;8254:9;8250:18;8237:32;8221:48;;8294:2;8284:8;8281:16;8278:36;;;8310:1;8307;8300:12;8278:36;8349:72;8413:7;8402:8;8391:9;8387:24;8349:72;:::i;:::-;8440:8;;-1:-1:-1;8323:98:1;-1:-1:-1;8528:3:1;8513:19;;8500:33;;-1:-1:-1;8545:16:1;;;8542:36;;;8574:1;8571;8564:12;8542:36;8613:72;8677:7;8666:8;8655:9;8651:24;8613:72;:::i;:::-;8704:8;;-1:-1:-1;8587:98:1;-1:-1:-1;8792:3:1;8777:19;;8764:33;;-1:-1:-1;8809:16:1;;;8806:36;;;8838:1;8835;8828:12;8806:36;8861:62;8915:7;8904:8;8893:9;8889:24;8861:62;:::i;:::-;8851:72;;8976:3;8965:9;8961:19;8948:33;8932:49;;9006:2;8996:8;8993:16;8990:36;;;9022:1;9019;9012:12;8990:36;;9061:60;9113:7;9102:8;9091:9;9087:24;9061:60;:::i;:::-;9035:86;;9140:8;9130:18;;;9167:8;9157:18;;;7504:1677;;;;;;;;;;;;;:::o;9186:667::-;9281:6;9289;9297;9305;9358:3;9346:9;9337:7;9333:23;9329:33;9326:53;;;9375:1;9372;9365:12;9326:53;9398:29;9417:9;9398:29;:::i;:::-;9388:39;;9446:38;9480:2;9469:9;9465:18;9446:38;:::i;:::-;9436:48;;9531:2;9520:9;9516:18;9503:32;9493:42;;9586:2;9575:9;9571:18;9558:32;9613:18;9605:6;9602:30;9599:50;;;9645:1;9642;9635:12;9599:50;9668:22;;9721:4;9713:13;;9709:27;-1:-1:-1;9699:55:1;;9750:1;9747;9740:12;9699:55;9773:74;9839:7;9834:2;9821:16;9816:2;9812;9808:11;9773:74;:::i;:::-;9763:84;;;9186:667;;;;;;;:::o;9858:669::-;9912:5;9965:3;9958:4;9950:6;9946:17;9942:27;9932:55;;9983:1;9980;9973:12;9932:55;10019:6;10006:20;10045:4;10069:67;10085:50;10132:2;10085:50;:::i;10069:67::-;10170:15;;;10256:1;10252:10;;;;10240:23;;10236:32;;;10201:12;;;;10280:15;;;10277:35;;;10308:1;10305;10298:12;10277:35;10344:2;10336:6;10332:15;10356:142;10372:6;10367:3;10364:15;10356:142;;;10438:17;;10426:30;;10476:12;;;;10389;;10356:142;;10532:1153;10650:6;10658;10711:2;10699:9;10690:7;10686:23;10682:32;10679:52;;;10727:1;10724;10717:12;10679:52;10767:9;10754:23;10796:18;10837:2;10829:6;10826:14;10823:34;;;10853:1;10850;10843:12;10823:34;10891:6;10880:9;10876:22;10866:32;;10936:7;10929:4;10925:2;10921:13;10917:27;10907:55;;10958:1;10955;10948:12;10907:55;10994:2;10981:16;11016:4;11040:67;11056:50;11103:2;11056:50;:::i;11040:67::-;11141:15;;;11223:1;11219:10;;;;11211:19;;11207:28;;;11172:12;;;;11247:19;;;11244:39;;;11279:1;11276;11269:12;11244:39;11303:11;;;;11323:148;11339:6;11334:3;11331:15;11323:148;;;11405:23;11424:3;11405:23;:::i;:::-;11393:36;;11356:12;;;;11449;;;;11323:148;;;11490:5;-1:-1:-1;;11533:18:1;;11520:32;;-1:-1:-1;;11564:16:1;;;11561:36;;;11593:1;11590;11583:12;11561:36;;11616:63;11671:7;11660:8;11649:9;11645:24;11616:63;:::i;:::-;11606:73;;;10532:1153;;;;;:::o;11690:260::-;11758:6;11766;11819:2;11807:9;11798:7;11794:23;11790:32;11787:52;;;11835:1;11832;11825:12;11787:52;11858:29;11877:9;11858:29;:::i;:::-;11848:39;;11906:38;11940:2;11929:9;11925:18;11906:38;:::i;:::-;11896:48;;11690:260;;;;;:::o;11955:380::-;12034:1;12030:12;;;;12077;;;12098:61;;12152:4;12144:6;12140:17;12130:27;;12098:61;12205:2;12197:6;12194:14;12174:18;12171:38;12168:161;;12251:10;12246:3;12242:20;12239:1;12232:31;12286:4;12283:1;12276:15;12314:4;12311:1;12304:15;12168:161;;11955:380;;;:::o;14411:127::-;14472:10;14467:3;14463:20;14460:1;14453:31;14503:4;14500:1;14493:15;14527:4;14524:1;14517:15;14669:545;14771:2;14766:3;14763:11;14760:448;;;14807:1;14832:5;14828:2;14821:17;14877:4;14873:2;14863:19;14947:2;14935:10;14931:19;14928:1;14924:27;14918:4;14914:38;14983:4;14971:10;14968:20;14965:47;;;-1:-1:-1;15006:4:1;14965:47;15061:2;15056:3;15052:12;15049:1;15045:20;15039:4;15035:31;15025:41;;15116:82;15134:2;15127:5;15124:13;15116:82;;;15179:17;;;15160:1;15149:13;15116:82;;15390:1352;15516:3;15510:10;15543:18;15535:6;15532:30;15529:56;;;15565:18;;:::i;:::-;15594:97;15684:6;15644:38;15676:4;15670:11;15644:38;:::i;:::-;15638:4;15594:97;:::i;:::-;15746:4;;15810:2;15799:14;;15827:1;15822:663;;;;16529:1;16546:6;16543:89;;;-1:-1:-1;16598:19:1;;;16592:26;16543:89;-1:-1:-1;;15347:1:1;15343:11;;;15339:24;15335:29;15325:40;15371:1;15367:11;;;15322:57;16645:81;;15792:944;;15822:663;14616:1;14609:14;;;14653:4;14640:18;;-1:-1:-1;;15858:20:1;;;15976:236;15990:7;15987:1;15984:14;15976:236;;;16079:19;;;16073:26;16058:42;;16171:27;;;;16139:1;16127:14;;;;16006:19;;15976:236;;;15980:3;16240:6;16231:7;16228:19;16225:201;;;16301:19;;;16295:26;-1:-1:-1;;16384:1:1;16380:14;;;16396:3;16376:24;16372:37;16368:42;16353:58;16338:74;;16225:201;-1:-1:-1;;;;;16472:1:1;16456:14;;;16452:22;16439:36;;-1:-1:-1;15390:1352:1:o;17840:127::-;17901:10;17896:3;17892:20;17889:1;17882:31;17932:4;17929:1;17922:15;17956:4;17953:1;17946:15;17972:125;18037:9;;;18058:10;;;18055:36;;;18071:18;;:::i;18102:135::-;18141:3;18162:17;;;18159:43;;18182:18;;:::i;:::-;-1:-1:-1;18229:1:1;18218:13;;18102:135::o;18918:1187::-;19195:3;19224:1;19257:6;19251:13;19287:36;19313:9;19287:36;:::i;:::-;19342:1;19359:18;;;19386:133;;;;19533:1;19528:356;;;;19352:532;;19386:133;-1:-1:-1;;19419:24:1;;19407:37;;19492:14;;19485:22;19473:35;;19464:45;;;-1:-1:-1;19386:133:1;;19528:356;19559:6;19556:1;19549:17;19589:4;19634:2;19631:1;19621:16;19659:1;19673:165;19687:6;19684:1;19681:13;19673:165;;;19765:14;;19752:11;;;19745:35;19808:16;;;;19702:10;;19673:165;;;19677:3;;;19867:6;19862:3;19858:16;19851:23;;19352:532;;;;;19915:6;19909:13;19931:68;19990:8;19985:3;19978:4;19970:6;19966:17;19931:68;:::i;:::-;-1:-1:-1;;;20021:18:1;;20048:22;;;20097:1;20086:13;;18918:1187;-1:-1:-1;;;;18918:1187:1:o;22043:574::-;22214:3;22245;22292:6;22214:3;22326:264;22340:6;22337:1;22334:13;22326:264;;;-1:-1:-1;;;;;22407:26:1;22426:6;22407:26;:::i;:::-;22403:75;22389:90;;22502:4;22528:14;;;;22565:15;;;;;22362:1;22355:9;22326:264;;;-1:-1:-1;22606:5:1;;22043:574;-1:-1:-1;;;;;22043:574:1:o;22622:357::-;22793:3;-1:-1:-1;;;;;22814:31:1;;22811:51;;;22858:1;22855;22848:12;22811:51;22892:6;22889:1;22885:14;22934:6;22926;22921:3;22908:33;22957:16;;;;;22622:357;-1:-1:-1;;;22622:357:1:o;23573:127::-;23634:10;23629:3;23625:20;23622:1;23615:31;23665:4;23662:1;23655:15;23689:4;23686:1;23679:15;23705:289;23880:6;23869:9;23862:25;23923:2;23918;23907:9;23903:18;23896:30;23843:4;23943:45;23984:2;23973:9;23969:18;23961:6;23943:45;:::i;23999:287::-;24128:3;24166:6;24160:13;24182:66;24241:6;24236:3;24229:4;24221:6;24217:17;24182:66;:::i;:::-;24264:16;;;;;23999:287;-1:-1:-1;;23999:287:1:o;24291:184::-;24361:6;24414:2;24402:9;24393:7;24389:23;24385:32;24382:52;;;24430:1;24427;24420:12;24382:52;-1:-1:-1;24453:16:1;;24291:184;-1:-1:-1;24291:184:1:o;24480:168::-;24553:9;;;24584;;24601:15;;;24595:22;;24581:37;24571:71;;24622:18;;:::i;26200:414::-;26402:2;26384:21;;;26441:2;26421:18;;;26414:30;26480:34;26475:2;26460:18;;26453:62;26551:20;26546:2;26531:18;;26524:48;26604:3;26589:19;;26200:414::o;27173:217::-;27213:1;27239;27229:132;;27283:10;27278:3;27274:20;27271:1;27264:31;27318:4;27315:1;27308:15;27346:4;27343:1;27336:15;27229:132;-1:-1:-1;27375:9:1;;27173:217::o;27395:128::-;27462:9;;;27483:11;;;27480:37;;;27497:18;;:::i;28591:245::-;28658:6;28711:2;28699:9;28690:7;28686:23;28682:32;28679:52;;;28727:1;28724;28717:12;28679:52;28759:9;28753:16;28778:28;28800:5;28778:28;:::i;29256:512::-;29450:4;-1:-1:-1;;;;;29560:2:1;29552:6;29548:15;29537:9;29530:34;29612:2;29604:6;29600:15;29595:2;29584:9;29580:18;29573:43;;29652:6;29647:2;29636:9;29632:18;29625:34;29695:3;29690:2;29679:9;29675:18;29668:31;29716:46;29757:3;29746:9;29742:19;29734:6;29716:46;:::i;:::-;29708:54;29256:512;-1:-1:-1;;;;;;29256:512:1:o;29773:249::-;29842:6;29895:2;29883:9;29874:7;29870:23;29866:32;29863:52;;;29911:1;29908;29901:12;29863:52;29943:9;29937:16;29962:30;29986:5;29962:30;:::i;30027:127::-;30088:10;30083:3;30079:20;30076:1;30069:31;30119:4;30116:1;30109:15;30143:4;30140:1;30133:15
Swarm Source
ipfs://1f02e7f593fb43fc7198626dbeeeb5a19efeab0766f5461ec1029a16aea08d6a
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.