ERC-20
Overview
Max Total Supply
1,000,000 BKD
Holders
15
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
100 BKDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BitKongDollar
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-10 */ // File: @openzeppelin/[email protected]/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/draft-IERC20Permit.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/[email protected]/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/[email protected]/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/[email protected]/utils/cryptography/ECDSA.sol // 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/[email protected]/utils/cryptography/EIP712.sol // 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: @openzeppelin/[email protected]/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File: @openzeppelin/[email protected]/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/[email protected]/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/[email protected]/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol // 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/[email protected]/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/[email protected]/token/ERC20/extensions/draft-ERC20Permit.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/extensions/draft-ERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * _Available since v3.4._ */ abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 { using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private constant _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`. * However, to ensure consistency with the upgradeable transpiler, we will continue * to reserve a slot. * @custom:oz-renamed-from _PERMIT_TYPEHASH */ // solhint-disable-next-line var-name-mixedcase bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT; /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ constructor(string memory name) EIP712(name, "1") {} /** * @dev See {IERC20Permit-permit}. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= deadline, "ERC20Permit: expired deadline"); bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } /** * @dev See {IERC20Permit-nonces}. */ function nonces(address owner) public view virtual override returns (uint256) { return _nonces[owner].current(); } /** * @dev See {IERC20Permit-DOMAIN_SEPARATOR}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } /** * @dev "Consume a nonce": return the current value and increment. * * _Available since v4.1._ */ function _useNonce(address owner) internal virtual returns (uint256 current) { Counters.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: contract-cb013e67f9.sol pragma solidity ^0.8.9; /// @custom:security-contact [email protected] contract BitKongDollar is ERC20, ERC20Burnable, Pausable, AccessControl, ERC20Permit { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); constructor() ERC20("BitKong Dollar", "BKD") ERC20Permit("BitKong Dollar") { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(PAUSER_ROLE, msg.sender); _mint(msg.sender, 1000000 * 10 ** decimals()); _grantRole(MINTER_ROLE, msg.sender); } function pause() public onlyRole(PAUSER_ROLE) { _pause(); } function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) { _mint(to, amount); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101406040523480156200001257600080fd5b506040518060400160405280600e81526020017f4269744b6f6e6720446f6c6c6172000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600e81526020017f4269744b6f6e6720446f6c6c61720000000000000000000000000000000000008152506040518060400160405280600381526020017f424b4400000000000000000000000000000000000000000000000000000000008152508160039081620000fd9190620008d2565b5080600490816200010f9190620008d2565b5050506000600560006101000a81548160ff02191690831515021790555060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001968184846200029e60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050806101208181525050505050505050620001f56000801b33620002da60201b60201c565b620002277f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620002da60201b60201c565b62000266336200023c620003cc60201b60201c565b600a6200024a919062000b49565b620f42406200025a919062000b9a565b620003d560201b60201c565b620002987f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620002da60201b60201c565b62000e00565b60008383834630604051602001620002bb95949392919062000c56565b6040516020818303038152906040528051906020012090509392505050565b620002ec82826200054260201b60201c565b620003c85760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200036d620005ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000447576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043e9062000d14565b60405180910390fd5b6200045b60008383620005b560201b60201c565b80600260008282546200046f919062000d36565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000522919062000d71565b60405180910390a36200053e60008383620005e260201b60201c565b5050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b620005c5620005e760201b60201c565b620005dd8383836200063c60201b62000d9b1760201c565b505050565b505050565b620005f76200064160201b60201c565b156200063a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006319062000dde565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006da57607f821691505b602082108103620006f057620006ef62000692565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200075a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200071b565b6200076686836200071b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007b3620007ad620007a7846200077e565b62000788565b6200077e565b9050919050565b6000819050919050565b620007cf8362000792565b620007e7620007de82620007ba565b84845462000728565b825550505050565b600090565b620007fe620007ef565b6200080b818484620007c4565b505050565b5b81811015620008335762000827600082620007f4565b60018101905062000811565b5050565b601f82111562000882576200084c81620006f6565b62000857846200070b565b8101602085101562000867578190505b6200087f62000876856200070b565b83018262000810565b50505b505050565b600082821c905092915050565b6000620008a76000198460080262000887565b1980831691505092915050565b6000620008c2838362000894565b9150826002028217905092915050565b620008dd8262000658565b67ffffffffffffffff811115620008f957620008f862000663565b5b620009058254620006c1565b6200091282828562000837565b600060209050601f8311600181146200094a576000841562000935578287015190505b620009418582620008b4565b865550620009b1565b601f1984166200095a86620006f6565b60005b8281101562000984578489015182556001820191506020850194506020810190506200095d565b86831015620009a45784890151620009a0601f89168262000894565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a475780860481111562000a1f5762000a1e620009b9565b5b600185161562000a2f5780820291505b808102905062000a3f85620009e8565b9450620009ff565b94509492505050565b60008262000a62576001905062000b35565b8162000a72576000905062000b35565b816001811462000a8b576002811462000a965762000acc565b600191505062000b35565b60ff84111562000aab5762000aaa620009b9565b5b8360020a91508482111562000ac55762000ac4620009b9565b5b5062000b35565b5060208310610133831016604e8410600b841016171562000b065782820a90508381111562000b005762000aff620009b9565b5b62000b35565b62000b158484846001620009f5565b9250905081840481111562000b2f5762000b2e620009b9565b5b81810290505b9392505050565b600060ff82169050919050565b600062000b56826200077e565b915062000b638362000b3c565b925062000b927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a50565b905092915050565b600062000ba7826200077e565b915062000bb4836200077e565b925082820262000bc4816200077e565b9150828204841483151762000bde5762000bdd620009b9565b5b5092915050565b6000819050919050565b62000bfa8162000be5565b82525050565b62000c0b816200077e565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c3e8262000c11565b9050919050565b62000c508162000c31565b82525050565b600060a08201905062000c6d600083018862000bef565b62000c7c602083018762000bef565b62000c8b604083018662000bef565b62000c9a606083018562000c00565b62000ca9608083018462000c45565b9695505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cfc601f8362000cb3565b915062000d098262000cc4565b602082019050919050565b6000602082019050818103600083015262000d2f8162000ced565b9050919050565b600062000d43826200077e565b915062000d50836200077e565b925082820190508082111562000d6b5762000d6a620009b9565b5b92915050565b600060208201905062000d88600083018462000c00565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000dc660108362000cb3565b915062000dd38262000d8e565b602082019050919050565b6000602082019050818103600083015262000df98162000db7565b9050919050565b60805160a05160c05160e051610100516101205161344662000e506000396000611480015260006114c2015260006114a1015260006113d60152600061142c0152600061145501526134466000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d539139314610542578063d547741f14610560578063dd62ed3e1461057c578063e63ab1e9146105ac576101cf565b8063a217fddf146104a8578063a457c2d7146104c6578063a9059cbb146104f6578063d505accf14610526576101cf565b80637ecebe00116100de5780637ecebe00146104205780638456cb591461045057806391d148541461045a57806395d89b411461048a576101cf565b80635c975abb146103b657806370a08231146103d457806379cc679014610404576101cf565b8063313ce56711610171578063395093511161014b57806339509351146103445780633f4ba83a1461037457806340c10f191461037e57806342966c681461039a576101cf565b8063313ce567146102ec5780633644e5151461030a57806336568abe14610328576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e9919061212e565b6105ca565b6040516101fb9190612176565b60405180910390f35b61020c610644565b6040516102199190612221565b60405180910390f35b61023c600480360381019061023791906122d7565b6106d6565b6040516102499190612176565b60405180910390f35b61025a6106f9565b6040516102679190612326565b60405180910390f35b61028a60048036038101906102859190612341565b610703565b6040516102979190612176565b60405180910390f35b6102ba60048036038101906102b591906123ca565b610732565b6040516102c79190612406565b60405180910390f35b6102ea60048036038101906102e59190612421565b610752565b005b6102f4610773565b604051610301919061247d565b60405180910390f35b61031261077c565b60405161031f9190612406565b60405180910390f35b610342600480360381019061033d9190612421565b61078b565b005b61035e600480360381019061035991906122d7565b61080e565b60405161036b9190612176565b60405180910390f35b61037c610845565b005b610398600480360381019061039391906122d7565b61087a565b005b6103b460048036038101906103af9190612498565b6108b3565b005b6103be6108c7565b6040516103cb9190612176565b60405180910390f35b6103ee60048036038101906103e991906124c5565b6108de565b6040516103fb9190612326565b60405180910390f35b61041e600480360381019061041991906122d7565b610926565b005b61043a600480360381019061043591906124c5565b610946565b6040516104479190612326565b60405180910390f35b610458610996565b005b610474600480360381019061046f9190612421565b6109cb565b6040516104819190612176565b60405180910390f35b610492610a36565b60405161049f9190612221565b60405180910390f35b6104b0610ac8565b6040516104bd9190612406565b60405180910390f35b6104e060048036038101906104db91906122d7565b610acf565b6040516104ed9190612176565b60405180910390f35b610510600480360381019061050b91906122d7565b610b46565b60405161051d9190612176565b60405180910390f35b610540600480360381019061053b919061251e565b610b69565b005b61054a610cab565b6040516105579190612406565b60405180910390f35b61057a60048036038101906105759190612421565b610ccf565b005b610596600480360381019061059191906125c0565b610cf0565b6040516105a39190612326565b60405180910390f35b6105b4610d77565b6040516105c19190612406565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063d575061063c82610da0565b5b9050919050565b6060600380546106539061262f565b80601f016020809104026020016040519081016040528092919081815260200182805461067f9061262f565b80156106cc5780601f106106a1576101008083540402835291602001916106cc565b820191906000526020600020905b8154815290600101906020018083116106af57829003601f168201915b5050505050905090565b6000806106e1610e0a565b90506106ee818585610e12565b600191505092915050565b6000600254905090565b60008061070e610e0a565b905061071b858285610fdb565b610726858585611067565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b61075b82610732565b610764816112dd565b61076e83836112f1565b505050565b60006012905090565b60006107866113d2565b905090565b610793610e0a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f7906126d2565b60405180910390fd5b61080a82826114ec565b5050565b600080610819610e0a565b905061083a81858561082b8589610cf0565b6108359190612721565b610e12565b600191505092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61086f816112dd565b6108776115ce565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108a4816112dd565b6108ae8383611631565b505050565b6108c46108be610e0a565b82611787565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093882610932610e0a565b83610fdb565b6109428282611787565b5050565b600061098f600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611954565b9050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109c0816112dd565b6109c8611962565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610a459061262f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a719061262f565b8015610abe5780601f10610a9357610100808354040283529160200191610abe565b820191906000526020600020905b815481529060010190602001808311610aa157829003601f168201915b5050505050905090565b6000801b81565b600080610ada610e0a565b90506000610ae88286610cf0565b905083811015610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b24906127c7565b60405180910390fd5b610b3a8286868403610e12565b60019250505092915050565b600080610b51610e0a565b9050610b5e818585611067565b600191505092915050565b83421115610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390612833565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610bdb8c6119c5565b89604051602001610bf196959493929190612862565b6040516020818303038152906040528051906020012090506000610c1482611a23565b90506000610c2482878787611a3d565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b9061290f565b60405180910390fd5b610c9f8a8a8a610e12565b50505050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610cd882610732565b610ce1816112dd565b610ceb83836114ec565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906129a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790612a33565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fce9190612326565b60405180910390a3505050565b6000610fe78484610cf0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110615781811015611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90612a9f565b60405180910390fd5b6110608484848403610e12565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90612b31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90612bc3565b60405180910390fd5b611150838383611a68565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90612c55565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c49190612326565b60405180910390a36112d7848484611a80565b50505050565b6112ee816112e9610e0a565b611a85565b50565b6112fb82826109cb565b6113ce5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611373610e0a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561144e57507f000000000000000000000000000000000000000000000000000000000000000046145b1561147b577f000000000000000000000000000000000000000000000000000000000000000090506114e9565b6114e67f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611b0a565b90505b90565b6114f682826109cb565b156115ca5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061156f610e0a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6115d6611b44565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61161a610e0a565b6040516116279190612c75565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790612cdc565b60405180910390fd5b6116ac60008383611a68565b80600260008282546116be9190612721565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161176f9190612326565b60405180910390a361178360008383611a80565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90612d6e565b60405180910390fd5b61180282600083611a68565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f90612e00565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161193b9190612326565b60405180910390a361194f83600084611a80565b505050565b600081600001549050919050565b61196a611b8d565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119ae610e0a565b6040516119bb9190612c75565b60405180910390a1565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611a1281611954565b9150611a1d81611bd7565b50919050565b6000611a36611a306113d2565b83611bed565b9050919050565b6000806000611a4e87878787611c20565b91509150611a5b81611d02565b8192505050949350505050565b611a70611b8d565b611a7b838383610d9b565b505050565b505050565b611a8f82826109cb565b611b0657611a9c81611e68565b611aaa8360001c6020611e95565b604051602001611abb929190612ef4565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd9190612221565b60405180910390fd5b5050565b60008383834630604051602001611b25959493929190612f2e565b6040516020818303038152906040528051906020012090509392505050565b611b4c6108c7565b611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290612fcd565b60405180910390fd5b565b611b956108c7565b15611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90613039565b60405180910390fd5b565b6001816000016000828254019250508190555050565b60008282604051602001611c029291906130c6565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611c5b576000600391509150611cf9565b600060018787878760405160008152602001604052604051611c8094939291906130fd565b6020604051602081039080840390855afa158015611ca2573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cf057600060019250925050611cf9565b80600092509250505b94509492505050565b60006004811115611d1657611d15613142565b5b816004811115611d2957611d28613142565b5b0315611e655760016004811115611d4357611d42613142565b5b816004811115611d5657611d55613142565b5b03611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d906131bd565b60405180910390fd5b60026004811115611daa57611da9613142565b5b816004811115611dbd57611dbc613142565b5b03611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613229565b60405180910390fd5b60036004811115611e1157611e10613142565b5b816004811115611e2457611e23613142565b5b03611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b906132bb565b60405180910390fd5b5b50565b6060611e8e8273ffffffffffffffffffffffffffffffffffffffff16601460ff16611e95565b9050919050565b606060006002836002611ea891906132db565b611eb29190612721565b67ffffffffffffffff811115611ecb57611eca61331d565b5b6040519080825280601f01601f191660200182016040528015611efd5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611f3557611f3461334c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611f9957611f9861334c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611fd991906132db565b611fe39190612721565b90505b6001811115612083577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106120255761202461334c565b5b1a60f81b82828151811061203c5761203b61334c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061207c9061337b565b9050611fe6565b50600084146120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be906133f0565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61210b816120d6565b811461211657600080fd5b50565b60008135905061212881612102565b92915050565b600060208284031215612144576121436120d1565b5b600061215284828501612119565b91505092915050565b60008115159050919050565b6121708161215b565b82525050565b600060208201905061218b6000830184612167565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121cb5780820151818401526020810190506121b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006121f382612191565b6121fd818561219c565b935061220d8185602086016121ad565b612216816121d7565b840191505092915050565b6000602082019050818103600083015261223b81846121e8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061226e82612243565b9050919050565b61227e81612263565b811461228957600080fd5b50565b60008135905061229b81612275565b92915050565b6000819050919050565b6122b4816122a1565b81146122bf57600080fd5b50565b6000813590506122d1816122ab565b92915050565b600080604083850312156122ee576122ed6120d1565b5b60006122fc8582860161228c565b925050602061230d858286016122c2565b9150509250929050565b612320816122a1565b82525050565b600060208201905061233b6000830184612317565b92915050565b60008060006060848603121561235a576123596120d1565b5b60006123688682870161228c565b93505060206123798682870161228c565b925050604061238a868287016122c2565b9150509250925092565b6000819050919050565b6123a781612394565b81146123b257600080fd5b50565b6000813590506123c48161239e565b92915050565b6000602082840312156123e0576123df6120d1565b5b60006123ee848285016123b5565b91505092915050565b61240081612394565b82525050565b600060208201905061241b60008301846123f7565b92915050565b60008060408385031215612438576124376120d1565b5b6000612446858286016123b5565b92505060206124578582860161228c565b9150509250929050565b600060ff82169050919050565b61247781612461565b82525050565b6000602082019050612492600083018461246e565b92915050565b6000602082840312156124ae576124ad6120d1565b5b60006124bc848285016122c2565b91505092915050565b6000602082840312156124db576124da6120d1565b5b60006124e98482850161228c565b91505092915050565b6124fb81612461565b811461250657600080fd5b50565b600081359050612518816124f2565b92915050565b600080600080600080600060e0888a03121561253d5761253c6120d1565b5b600061254b8a828b0161228c565b975050602061255c8a828b0161228c565b965050604061256d8a828b016122c2565b955050606061257e8a828b016122c2565b945050608061258f8a828b01612509565b93505060a06125a08a828b016123b5565b92505060c06125b18a828b016123b5565b91505092959891949750929550565b600080604083850312156125d7576125d66120d1565b5b60006125e58582860161228c565b92505060206125f68582860161228c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061264757607f821691505b60208210810361265a57612659612600565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006126bc602f8361219c565b91506126c782612660565b604082019050919050565b600060208201905081810360008301526126eb816126af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061272c826122a1565b9150612737836122a1565b925082820190508082111561274f5761274e6126f2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127b160258361219c565b91506127bc82612755565b604082019050919050565b600060208201905081810360008301526127e0816127a4565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b600061281d601d8361219c565b9150612828826127e7565b602082019050919050565b6000602082019050818103600083015261284c81612810565b9050919050565b61285c81612263565b82525050565b600060c08201905061287760008301896123f7565b6128846020830188612853565b6128916040830187612853565b61289e6060830186612317565b6128ab6080830185612317565b6128b860a0830184612317565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b60006128f9601e8361219c565b9150612904826128c3565b602082019050919050565b60006020820190508181036000830152612928816128ec565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061298b60248361219c565b91506129968261292f565b604082019050919050565b600060208201905081810360008301526129ba8161297e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a1d60228361219c565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a89601d8361219c565b9150612a9482612a53565b602082019050919050565b60006020820190508181036000830152612ab881612a7c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b1b60258361219c565b9150612b2682612abf565b604082019050919050565b60006020820190508181036000830152612b4a81612b0e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612bad60238361219c565b9150612bb882612b51565b604082019050919050565b60006020820190508181036000830152612bdc81612ba0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612c3f60268361219c565b9150612c4a82612be3565b604082019050919050565b60006020820190508181036000830152612c6e81612c32565b9050919050565b6000602082019050612c8a6000830184612853565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612cc6601f8361219c565b9150612cd182612c90565b602082019050919050565b60006020820190508181036000830152612cf581612cb9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d5860218361219c565b9150612d6382612cfc565b604082019050919050565b60006020820190508181036000830152612d8781612d4b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612dea60228361219c565b9150612df582612d8e565b604082019050919050565b60006020820190508181036000830152612e1981612ddd565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612e61601783612e20565b9150612e6c82612e2b565b601782019050919050565b6000612e8282612191565b612e8c8185612e20565b9350612e9c8185602086016121ad565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000612ede601183612e20565b9150612ee982612ea8565b601182019050919050565b6000612eff82612e54565b9150612f0b8285612e77565b9150612f1682612ed1565b9150612f228284612e77565b91508190509392505050565b600060a082019050612f4360008301886123f7565b612f5060208301876123f7565b612f5d60408301866123f7565b612f6a6060830185612317565b612f776080830184612853565b9695505050505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612fb760148361219c565b9150612fc282612f81565b602082019050919050565b60006020820190508181036000830152612fe681612faa565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061302360108361219c565b915061302e82612fed565b602082019050919050565b6000602082019050818103600083015261305281613016565b9050919050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061308f600283612e20565b915061309a82613059565b600282019050919050565b6000819050919050565b6130c06130bb82612394565b6130a5565b82525050565b60006130d182613082565b91506130dd82856130af565b6020820191506130ed82846130af565b6020820191508190509392505050565b600060808201905061311260008301876123f7565b61311f602083018661246e565b61312c60408301856123f7565b61313960608301846123f7565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006131a760188361219c565b91506131b282613171565b602082019050919050565b600060208201905081810360008301526131d68161319a565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613213601f8361219c565b915061321e826131dd565b602082019050919050565b6000602082019050818103600083015261324281613206565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006132a560228361219c565b91506132b082613249565b604082019050919050565b600060208201905081810360008301526132d481613298565b9050919050565b60006132e6826122a1565b91506132f1836122a1565b92508282026132ff816122a1565b91508282048414831517613316576133156126f2565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613386826122a1565b915060008203613399576133986126f2565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006133da60208361219c565b91506133e5826133a4565b602082019050919050565b60006020820190508181036000830152613409816133cd565b905091905056fea2646970667358221220b423bf6e36d360c8c9e79983350f45bb0334803cf273e99922932a84ae51be9564736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d539139314610542578063d547741f14610560578063dd62ed3e1461057c578063e63ab1e9146105ac576101cf565b8063a217fddf146104a8578063a457c2d7146104c6578063a9059cbb146104f6578063d505accf14610526576101cf565b80637ecebe00116100de5780637ecebe00146104205780638456cb591461045057806391d148541461045a57806395d89b411461048a576101cf565b80635c975abb146103b657806370a08231146103d457806379cc679014610404576101cf565b8063313ce56711610171578063395093511161014b57806339509351146103445780633f4ba83a1461037457806340c10f191461037e57806342966c681461039a576101cf565b8063313ce567146102ec5780633644e5151461030a57806336568abe14610328576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e9919061212e565b6105ca565b6040516101fb9190612176565b60405180910390f35b61020c610644565b6040516102199190612221565b60405180910390f35b61023c600480360381019061023791906122d7565b6106d6565b6040516102499190612176565b60405180910390f35b61025a6106f9565b6040516102679190612326565b60405180910390f35b61028a60048036038101906102859190612341565b610703565b6040516102979190612176565b60405180910390f35b6102ba60048036038101906102b591906123ca565b610732565b6040516102c79190612406565b60405180910390f35b6102ea60048036038101906102e59190612421565b610752565b005b6102f4610773565b604051610301919061247d565b60405180910390f35b61031261077c565b60405161031f9190612406565b60405180910390f35b610342600480360381019061033d9190612421565b61078b565b005b61035e600480360381019061035991906122d7565b61080e565b60405161036b9190612176565b60405180910390f35b61037c610845565b005b610398600480360381019061039391906122d7565b61087a565b005b6103b460048036038101906103af9190612498565b6108b3565b005b6103be6108c7565b6040516103cb9190612176565b60405180910390f35b6103ee60048036038101906103e991906124c5565b6108de565b6040516103fb9190612326565b60405180910390f35b61041e600480360381019061041991906122d7565b610926565b005b61043a600480360381019061043591906124c5565b610946565b6040516104479190612326565b60405180910390f35b610458610996565b005b610474600480360381019061046f9190612421565b6109cb565b6040516104819190612176565b60405180910390f35b610492610a36565b60405161049f9190612221565b60405180910390f35b6104b0610ac8565b6040516104bd9190612406565b60405180910390f35b6104e060048036038101906104db91906122d7565b610acf565b6040516104ed9190612176565b60405180910390f35b610510600480360381019061050b91906122d7565b610b46565b60405161051d9190612176565b60405180910390f35b610540600480360381019061053b919061251e565b610b69565b005b61054a610cab565b6040516105579190612406565b60405180910390f35b61057a60048036038101906105759190612421565b610ccf565b005b610596600480360381019061059191906125c0565b610cf0565b6040516105a39190612326565b60405180910390f35b6105b4610d77565b6040516105c19190612406565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063d575061063c82610da0565b5b9050919050565b6060600380546106539061262f565b80601f016020809104026020016040519081016040528092919081815260200182805461067f9061262f565b80156106cc5780601f106106a1576101008083540402835291602001916106cc565b820191906000526020600020905b8154815290600101906020018083116106af57829003601f168201915b5050505050905090565b6000806106e1610e0a565b90506106ee818585610e12565b600191505092915050565b6000600254905090565b60008061070e610e0a565b905061071b858285610fdb565b610726858585611067565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b61075b82610732565b610764816112dd565b61076e83836112f1565b505050565b60006012905090565b60006107866113d2565b905090565b610793610e0a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f7906126d2565b60405180910390fd5b61080a82826114ec565b5050565b600080610819610e0a565b905061083a81858561082b8589610cf0565b6108359190612721565b610e12565b600191505092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61086f816112dd565b6108776115ce565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108a4816112dd565b6108ae8383611631565b505050565b6108c46108be610e0a565b82611787565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093882610932610e0a565b83610fdb565b6109428282611787565b5050565b600061098f600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611954565b9050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109c0816112dd565b6109c8611962565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610a459061262f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a719061262f565b8015610abe5780601f10610a9357610100808354040283529160200191610abe565b820191906000526020600020905b815481529060010190602001808311610aa157829003601f168201915b5050505050905090565b6000801b81565b600080610ada610e0a565b90506000610ae88286610cf0565b905083811015610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b24906127c7565b60405180910390fd5b610b3a8286868403610e12565b60019250505092915050565b600080610b51610e0a565b9050610b5e818585611067565b600191505092915050565b83421115610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390612833565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610bdb8c6119c5565b89604051602001610bf196959493929190612862565b6040516020818303038152906040528051906020012090506000610c1482611a23565b90506000610c2482878787611a3d565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b9061290f565b60405180910390fd5b610c9f8a8a8a610e12565b50505050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610cd882610732565b610ce1816112dd565b610ceb83836114ec565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906129a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790612a33565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fce9190612326565b60405180910390a3505050565b6000610fe78484610cf0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110615781811015611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90612a9f565b60405180910390fd5b6110608484848403610e12565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90612b31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90612bc3565b60405180910390fd5b611150838383611a68565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90612c55565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c49190612326565b60405180910390a36112d7848484611a80565b50505050565b6112ee816112e9610e0a565b611a85565b50565b6112fb82826109cb565b6113ce5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611373610e0a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60007f000000000000000000000000be3359ac36f06311c3adc32cb6c368f41dea8b4a73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561144e57507f000000000000000000000000000000000000000000000000000000000000000146145b1561147b577f0fa3629ce3836e6d8753b438a547ce1bb249260b146e19859e19fd652f4aeddb90506114e9565b6114e67f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f9d28592917e6072693caec756af0b26a48a92811b03cd851bf01502c1cd2183c7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611b0a565b90505b90565b6114f682826109cb565b156115ca5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061156f610e0a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6115d6611b44565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61161a610e0a565b6040516116279190612c75565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790612cdc565b60405180910390fd5b6116ac60008383611a68565b80600260008282546116be9190612721565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161176f9190612326565b60405180910390a361178360008383611a80565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90612d6e565b60405180910390fd5b61180282600083611a68565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f90612e00565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161193b9190612326565b60405180910390a361194f83600084611a80565b505050565b600081600001549050919050565b61196a611b8d565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119ae610e0a565b6040516119bb9190612c75565b60405180910390a1565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611a1281611954565b9150611a1d81611bd7565b50919050565b6000611a36611a306113d2565b83611bed565b9050919050565b6000806000611a4e87878787611c20565b91509150611a5b81611d02565b8192505050949350505050565b611a70611b8d565b611a7b838383610d9b565b505050565b505050565b611a8f82826109cb565b611b0657611a9c81611e68565b611aaa8360001c6020611e95565b604051602001611abb929190612ef4565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd9190612221565b60405180910390fd5b5050565b60008383834630604051602001611b25959493929190612f2e565b6040516020818303038152906040528051906020012090509392505050565b611b4c6108c7565b611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290612fcd565b60405180910390fd5b565b611b956108c7565b15611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90613039565b60405180910390fd5b565b6001816000016000828254019250508190555050565b60008282604051602001611c029291906130c6565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611c5b576000600391509150611cf9565b600060018787878760405160008152602001604052604051611c8094939291906130fd565b6020604051602081039080840390855afa158015611ca2573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cf057600060019250925050611cf9565b80600092509250505b94509492505050565b60006004811115611d1657611d15613142565b5b816004811115611d2957611d28613142565b5b0315611e655760016004811115611d4357611d42613142565b5b816004811115611d5657611d55613142565b5b03611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d906131bd565b60405180910390fd5b60026004811115611daa57611da9613142565b5b816004811115611dbd57611dbc613142565b5b03611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613229565b60405180910390fd5b60036004811115611e1157611e10613142565b5b816004811115611e2457611e23613142565b5b03611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b906132bb565b60405180910390fd5b5b50565b6060611e8e8273ffffffffffffffffffffffffffffffffffffffff16601460ff16611e95565b9050919050565b606060006002836002611ea891906132db565b611eb29190612721565b67ffffffffffffffff811115611ecb57611eca61331d565b5b6040519080825280601f01601f191660200182016040528015611efd5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611f3557611f3461334c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611f9957611f9861334c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611fd991906132db565b611fe39190612721565b90505b6001811115612083577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106120255761202461334c565b5b1a60f81b82828151811061203c5761203b61334c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061207c9061337b565b9050611fe6565b50600084146120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be906133f0565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61210b816120d6565b811461211657600080fd5b50565b60008135905061212881612102565b92915050565b600060208284031215612144576121436120d1565b5b600061215284828501612119565b91505092915050565b60008115159050919050565b6121708161215b565b82525050565b600060208201905061218b6000830184612167565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121cb5780820151818401526020810190506121b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006121f382612191565b6121fd818561219c565b935061220d8185602086016121ad565b612216816121d7565b840191505092915050565b6000602082019050818103600083015261223b81846121e8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061226e82612243565b9050919050565b61227e81612263565b811461228957600080fd5b50565b60008135905061229b81612275565b92915050565b6000819050919050565b6122b4816122a1565b81146122bf57600080fd5b50565b6000813590506122d1816122ab565b92915050565b600080604083850312156122ee576122ed6120d1565b5b60006122fc8582860161228c565b925050602061230d858286016122c2565b9150509250929050565b612320816122a1565b82525050565b600060208201905061233b6000830184612317565b92915050565b60008060006060848603121561235a576123596120d1565b5b60006123688682870161228c565b93505060206123798682870161228c565b925050604061238a868287016122c2565b9150509250925092565b6000819050919050565b6123a781612394565b81146123b257600080fd5b50565b6000813590506123c48161239e565b92915050565b6000602082840312156123e0576123df6120d1565b5b60006123ee848285016123b5565b91505092915050565b61240081612394565b82525050565b600060208201905061241b60008301846123f7565b92915050565b60008060408385031215612438576124376120d1565b5b6000612446858286016123b5565b92505060206124578582860161228c565b9150509250929050565b600060ff82169050919050565b61247781612461565b82525050565b6000602082019050612492600083018461246e565b92915050565b6000602082840312156124ae576124ad6120d1565b5b60006124bc848285016122c2565b91505092915050565b6000602082840312156124db576124da6120d1565b5b60006124e98482850161228c565b91505092915050565b6124fb81612461565b811461250657600080fd5b50565b600081359050612518816124f2565b92915050565b600080600080600080600060e0888a03121561253d5761253c6120d1565b5b600061254b8a828b0161228c565b975050602061255c8a828b0161228c565b965050604061256d8a828b016122c2565b955050606061257e8a828b016122c2565b945050608061258f8a828b01612509565b93505060a06125a08a828b016123b5565b92505060c06125b18a828b016123b5565b91505092959891949750929550565b600080604083850312156125d7576125d66120d1565b5b60006125e58582860161228c565b92505060206125f68582860161228c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061264757607f821691505b60208210810361265a57612659612600565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006126bc602f8361219c565b91506126c782612660565b604082019050919050565b600060208201905081810360008301526126eb816126af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061272c826122a1565b9150612737836122a1565b925082820190508082111561274f5761274e6126f2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127b160258361219c565b91506127bc82612755565b604082019050919050565b600060208201905081810360008301526127e0816127a4565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b600061281d601d8361219c565b9150612828826127e7565b602082019050919050565b6000602082019050818103600083015261284c81612810565b9050919050565b61285c81612263565b82525050565b600060c08201905061287760008301896123f7565b6128846020830188612853565b6128916040830187612853565b61289e6060830186612317565b6128ab6080830185612317565b6128b860a0830184612317565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b60006128f9601e8361219c565b9150612904826128c3565b602082019050919050565b60006020820190508181036000830152612928816128ec565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061298b60248361219c565b91506129968261292f565b604082019050919050565b600060208201905081810360008301526129ba8161297e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a1d60228361219c565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a89601d8361219c565b9150612a9482612a53565b602082019050919050565b60006020820190508181036000830152612ab881612a7c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b1b60258361219c565b9150612b2682612abf565b604082019050919050565b60006020820190508181036000830152612b4a81612b0e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612bad60238361219c565b9150612bb882612b51565b604082019050919050565b60006020820190508181036000830152612bdc81612ba0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612c3f60268361219c565b9150612c4a82612be3565b604082019050919050565b60006020820190508181036000830152612c6e81612c32565b9050919050565b6000602082019050612c8a6000830184612853565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612cc6601f8361219c565b9150612cd182612c90565b602082019050919050565b60006020820190508181036000830152612cf581612cb9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d5860218361219c565b9150612d6382612cfc565b604082019050919050565b60006020820190508181036000830152612d8781612d4b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612dea60228361219c565b9150612df582612d8e565b604082019050919050565b60006020820190508181036000830152612e1981612ddd565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612e61601783612e20565b9150612e6c82612e2b565b601782019050919050565b6000612e8282612191565b612e8c8185612e20565b9350612e9c8185602086016121ad565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000612ede601183612e20565b9150612ee982612ea8565b601182019050919050565b6000612eff82612e54565b9150612f0b8285612e77565b9150612f1682612ed1565b9150612f228284612e77565b91508190509392505050565b600060a082019050612f4360008301886123f7565b612f5060208301876123f7565b612f5d60408301866123f7565b612f6a6060830185612317565b612f776080830184612853565b9695505050505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612fb760148361219c565b9150612fc282612f81565b602082019050919050565b60006020820190508181036000830152612fe681612faa565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061302360108361219c565b915061302e82612fed565b602082019050919050565b6000602082019050818103600083015261305281613016565b9050919050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061308f600283612e20565b915061309a82613059565b600282019050919050565b6000819050919050565b6130c06130bb82612394565b6130a5565b82525050565b60006130d182613082565b91506130dd82856130af565b6020820191506130ed82846130af565b6020820191508190509392505050565b600060808201905061311260008301876123f7565b61311f602083018661246e565b61312c60408301856123f7565b61313960608301846123f7565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006131a760188361219c565b91506131b282613171565b602082019050919050565b600060208201905081810360008301526131d68161319a565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613213601f8361219c565b915061321e826131dd565b602082019050919050565b6000602082019050818103600083015261324281613206565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006132a560228361219c565b91506132b082613249565b604082019050919050565b600060208201905081810360008301526132d481613298565b9050919050565b60006132e6826122a1565b91506132f1836122a1565b92508282026132ff816122a1565b91508282048414831517613316576133156126f2565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613386826122a1565b915060008203613399576133986126f2565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006133da60208361219c565b91506133e5826133a4565b602082019050919050565b60006020820190508181036000830152613409816133cd565b905091905056fea2646970667358221220b423bf6e36d360c8c9e79983350f45bb0334803cf273e99922932a84ae51be9564736f6c63430008120033
Deployed Bytecode Sourcemap
70829:1007:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40947:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55053:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57404:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56173:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58185:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42770:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43211:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56015:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69066:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44355:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58889:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71434:77;;;:::i;:::-;;71519:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70122:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48295:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56344:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70532:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68808:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71353:73;;;:::i;:::-;;41243:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55272:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40348:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59630:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56677:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68097:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70990:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43651:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56933:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70921:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40947:204;41032:4;41071:32;41056:47;;;:11;:47;;;;:87;;;;41107:36;41131:11;41107:23;:36::i;:::-;41056:87;41049:94;;40947:204;;;:::o;55053:100::-;55107:13;55140:5;55133:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55053:100;:::o;57404:201::-;57487:4;57504:13;57520:12;:10;:12::i;:::-;57504:28;;57543:32;57552:5;57559:7;57568:6;57543:8;:32::i;:::-;57593:4;57586:11;;;57404:201;;;;:::o;56173:108::-;56234:7;56261:12;;56254:19;;56173:108;:::o;58185:295::-;58316:4;58333:15;58351:12;:10;:12::i;:::-;58333:30;;58374:38;58390:4;58396:7;58405:6;58374:15;:38::i;:::-;58423:27;58433:4;58439:2;58443:6;58423:9;:27::i;:::-;58468:4;58461:11;;;58185:295;;;;;:::o;42770:131::-;42844:7;42871:6;:12;42878:4;42871:12;;;;;;;;;;;:22;;;42864:29;;42770:131;;;:::o;43211:147::-;43294:18;43307:4;43294:12;:18::i;:::-;40839:16;40850:4;40839:10;:16::i;:::-;43325:25:::1;43336:4;43342:7;43325:10;:25::i;:::-;43211:147:::0;;;:::o;56015:93::-;56073:5;56098:2;56091:9;;56015:93;:::o;69066:115::-;69126:7;69153:20;:18;:20::i;:::-;69146:27;;69066:115;:::o;44355:218::-;44462:12;:10;:12::i;:::-;44451:23;;:7;:23;;;44443:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;44539:26;44551:4;44557:7;44539:11;:26::i;:::-;44355:218;;:::o;58889:238::-;58977:4;58994:13;59010:12;:10;:12::i;:::-;58994:28;;59033:64;59042:5;59049:7;59086:10;59058:25;59068:5;59075:7;59058:9;:25::i;:::-;:38;;;;:::i;:::-;59033:8;:64::i;:::-;59115:4;59108:11;;;58889:238;;;;:::o;71434:77::-;70959:24;40839:16;40850:4;40839:10;:16::i;:::-;71493:10:::1;:8;:10::i;:::-;71434:77:::0;:::o;71519:107::-;71028:24;40839:16;40850:4;40839:10;:16::i;:::-;71601:17:::1;71607:2;71611:6;71601:5;:17::i;:::-;71519:107:::0;;;:::o;70122:91::-;70178:27;70184:12;:10;:12::i;:::-;70198:6;70178:5;:27::i;:::-;70122:91;:::o;48295:86::-;48342:4;48366:7;;;;;;;;;;;48359:14;;48295:86;:::o;56344:127::-;56418:7;56445:9;:18;56455:7;56445:18;;;;;;;;;;;;;;;;56438:25;;56344:127;;;:::o;70532:164::-;70609:46;70625:7;70634:12;:10;:12::i;:::-;70648:6;70609:15;:46::i;:::-;70666:22;70672:7;70681:6;70666:5;:22::i;:::-;70532:164;;:::o;68808:128::-;68877:7;68904:24;:7;:14;68912:5;68904:14;;;;;;;;;;;;;;;:22;:24::i;:::-;68897:31;;68808:128;;;:::o;71353:73::-;70959:24;40839:16;40850:4;40839:10;:16::i;:::-;71410:8:::1;:6;:8::i;:::-;71353:73:::0;:::o;41243:147::-;41329:4;41353:6;:12;41360:4;41353:12;;;;;;;;;;;:20;;:29;41374:7;41353:29;;;;;;;;;;;;;;;;;;;;;;;;;41346:36;;41243:147;;;;:::o;55272:104::-;55328:13;55361:7;55354:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55272:104;:::o;40348:49::-;40393:4;40348:49;;;:::o;59630:436::-;59723:4;59740:13;59756:12;:10;:12::i;:::-;59740:28;;59779:24;59806:25;59816:5;59823:7;59806:9;:25::i;:::-;59779:52;;59870:15;59850:16;:35;;59842:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;59963:60;59972:5;59979:7;60007:15;59988:16;:34;59963:8;:60::i;:::-;60054:4;60047:11;;;;59630:436;;;;:::o;56677:193::-;56756:4;56773:13;56789:12;:10;:12::i;:::-;56773:28;;56812;56822:5;56829:2;56833:6;56812:9;:28::i;:::-;56858:4;56851:11;;;56677:193;;;;:::o;68097:645::-;68341:8;68322:15;:27;;68314:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;68396:18;67272:95;68456:5;68463:7;68472:5;68479:16;68489:5;68479:9;:16::i;:::-;68497:8;68427:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68417:90;;;;;;68396:111;;68520:12;68535:28;68552:10;68535:16;:28::i;:::-;68520:43;;68576:14;68593:28;68607:4;68613:1;68616;68619;68593:13;:28::i;:::-;68576:45;;68650:5;68640:15;;:6;:15;;;68632:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;68703:31;68712:5;68719:7;68728:5;68703:8;:31::i;:::-;68303:439;;;68097:645;;;;;;;:::o;70990:62::-;71028:24;70990:62;:::o;43651:149::-;43735:18;43748:4;43735:12;:18::i;:::-;40839:16;40850:4;40839:10;:16::i;:::-;43766:26:::1;43778:4;43784:7;43766:11;:26::i;:::-;43651:149:::0;;;:::o;56933:151::-;57022:7;57049:11;:18;57061:5;57049:18;;;;;;;;;;;;;;;:27;57068:7;57049:27;;;;;;;;;;;;;;;;57042:34;;56933:151;;;;:::o;70921:62::-;70959:24;70921:62;:::o;65381:125::-;;;;:::o;5636:157::-;5721:4;5760:25;5745:40;;;:11;:40;;;;5738:47;;5636:157;;;:::o;38150:98::-;38203:7;38230:10;38223:17;;38150:98;:::o;63657:380::-;63810:1;63793:19;;:5;:19;;;63785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63891:1;63872:21;;:7;:21;;;63864:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63975:6;63945:11;:18;63957:5;63945:18;;;;;;;;;;;;;;;:27;63964:7;63945:27;;;;;;;;;;;;;;;:36;;;;64013:7;63997:32;;64006:5;63997:32;;;64022:6;63997:32;;;;;;:::i;:::-;;;;;;;;63657:380;;;:::o;64328:453::-;64463:24;64490:25;64500:5;64507:7;64490:9;:25::i;:::-;64463:52;;64550:17;64530:16;:37;64526:248;;64612:6;64592:16;:26;;64584:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64696:51;64705:5;64712:7;64740:6;64721:16;:25;64696:8;:51::i;:::-;64526:248;64452:329;64328:453;;;:::o;60536:840::-;60683:1;60667:18;;:4;:18;;;60659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60760:1;60746:16;;:2;:16;;;60738:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;60815:38;60836:4;60842:2;60846:6;60815:20;:38::i;:::-;60866:19;60888:9;:15;60898:4;60888:15;;;;;;;;;;;;;;;;60866:37;;60937:6;60922:11;:21;;60914:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;61054:6;61040:11;:20;61022:9;:15;61032:4;61022:15;;;;;;;;;;;;;;;:38;;;;61257:6;61240:9;:13;61250:2;61240:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;61307:2;61292:26;;61301:4;61292:26;;;61311:6;61292:26;;;;;;:::i;:::-;;;;;;;;61331:37;61351:4;61357:2;61361:6;61331:19;:37::i;:::-;60648:728;60536:840;;;:::o;41694:105::-;41761:30;41772:4;41778:12;:10;:12::i;:::-;41761:10;:30::i;:::-;41694:105;:::o;45952:238::-;46036:22;46044:4;46050:7;46036;:22::i;:::-;46031:152;;46107:4;46075:6;:12;46082:4;46075:12;;;;;;;;;;;:20;;:29;46096:7;46075:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;46158:12;:10;:12::i;:::-;46131:40;;46149:7;46131:40;;46143:4;46131:40;;;;;;;;;;46031:152;45952:238;;:::o;33017:314::-;33070:7;33111:12;33094:29;;33102:4;33094:29;;;:66;;;;;33144:16;33127:13;:33;33094:66;33090:234;;;33184:24;33177:31;;;;33090:234;33248:64;33270:10;33282:12;33296:15;33248:21;:64::i;:::-;33241:71;;33017:314;;:::o;46370:239::-;46454:22;46462:4;46468:7;46454;:22::i;:::-;46450:152;;;46525:5;46493:6;:12;46500:4;46493:12;;;;;;;;;;;:20;;:29;46514:7;46493:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;46577:12;:10;:12::i;:::-;46550:40;;46568:7;46550:40;;46562:4;46550:40;;;;;;;;;;46450:152;46370:239;;:::o;49150:120::-;48159:16;:14;:16::i;:::-;49219:5:::1;49209:7;;:15;;;;;;;;;;;;;;;;;;49240:22;49249:12;:10;:12::i;:::-;49240:22;;;;;;:::i;:::-;;;;;;;;49150:120::o:0;61663:548::-;61766:1;61747:21;;:7;:21;;;61739:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61817:49;61846:1;61850:7;61859:6;61817:20;:49::i;:::-;61895:6;61879:12;;:22;;;;;;;:::i;:::-;;;;;;;;62072:6;62050:9;:18;62060:7;62050:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;62126:7;62105:37;;62122:1;62105:37;;;62135:6;62105:37;;;;;;:::i;:::-;;;;;;;;62155:48;62183:1;62187:7;62196:6;62155:19;:48::i;:::-;61663:548;;:::o;62544:675::-;62647:1;62628:21;;:7;:21;;;62620:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;62700:49;62721:7;62738:1;62742:6;62700:20;:49::i;:::-;62762:22;62787:9;:18;62797:7;62787:18;;;;;;;;;;;;;;;;62762:43;;62842:6;62824:14;:24;;62816:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;62961:6;62944:14;:23;62923:9;:18;62933:7;62923:18;;;;;;;;;;;;;;;:44;;;;63078:6;63062:12;;:22;;;;;;;;;;;63139:1;63113:37;;63122:7;63113:37;;;63143:6;63113:37;;;;;;:::i;:::-;;;;;;;;63163:48;63183:7;63200:1;63204:6;63163:19;:48::i;:::-;62609:610;62544:675;;:::o;878:114::-;943:7;970;:14;;;963:21;;878:114;;;:::o;48891:118::-;47900:19;:17;:19::i;:::-;48961:4:::1;48951:7;;:14;;;;;;;;;;;;;;;;;;48981:20;48988:12;:10;:12::i;:::-;48981:20;;;;;;:::i;:::-;;;;;;;;48891:118::o:0;69319:207::-;69379:15;69407:30;69440:7;:14;69448:5;69440:14;;;;;;;;;;;;;;;69407:47;;69475:15;:5;:13;:15::i;:::-;69465:25;;69501:17;:5;:15;:17::i;:::-;69396:130;69319:207;;;:::o;34244:167::-;34321:7;34348:55;34370:20;:18;:20::i;:::-;34392:10;34348:21;:55::i;:::-;34341:62;;34244:167;;;:::o;27884:279::-;28012:7;28033:17;28052:18;28074:25;28085:4;28091:1;28094;28097;28074:10;:25::i;:::-;28032:67;;;;28110:18;28122:5;28110:11;:18::i;:::-;28146:9;28139:16;;;;27884:279;;;;;;:::o;71634:199::-;47900:19;:17;:19::i;:::-;71781:44:::1;71808:4;71814:2;71818:6;71781:26;:44::i;:::-;71634:199:::0;;;:::o;66110:124::-;;;;:::o;42089:492::-;42178:22;42186:4;42192:7;42178;:22::i;:::-;42173:401;;42366:28;42386:7;42366:19;:28::i;:::-;42467:38;42495:4;42487:13;;42502:2;42467:19;:38::i;:::-;42271:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42217:345;;;;;;;;;;;:::i;:::-;;;;;;;;42173:401;42089:492;;:::o;33339:263::-;33483:7;33531:8;33541;33551:11;33564:13;33587:4;33520:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33510:84;;;;;;33503:91;;33339:263;;;;;:::o;48639:108::-;48706:8;:6;:8::i;:::-;48698:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;48639:108::o;48454:::-;48525:8;:6;:8::i;:::-;48524:9;48516:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;48454:108::o;1000:127::-;1107:1;1089:7;:14;;;:19;;;;;;;;;;;1000:127;:::o;29575:196::-;29668:7;29734:15;29751:10;29705:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29695:68;;;;;;29688:75;;29575:196;;;;:::o;26225:1520::-;26356:7;26365:12;27290:66;27285:1;27277:10;;:79;27273:163;;;27389:1;27393:30;27373:51;;;;;;27273:163;27533:14;27550:24;27560:4;27566:1;27569;27572;27550:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27533:41;;27607:1;27589:20;;:6;:20;;;27585:103;;27642:1;27646:29;27626:50;;;;;;;27585:103;27708:6;27716:20;27700:37;;;;;26225:1520;;;;;;;;:::o;21617:521::-;21695:20;21686:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;21682:449;21732:7;21682:449;21793:29;21784:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;21780:351;;21839:34;;;;;;;;;;:::i;:::-;;;;;;;;21780:351;21904:35;21895:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;21891:240;;21956:41;;;;;;;;;;:::i;:::-;;;;;;;;21891:240;22028:30;22019:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;22015:116;;22075:44;;;;;;;;;;:::i;:::-;;;;;;;;22015:116;21617:521;;:::o;20853:151::-;20911:13;20944:52;20972:4;20956:22;;19008:2;20944:52;;:11;:52::i;:::-;20937:59;;20853:151;;;:::o;20249:447::-;20324:13;20350:19;20395:1;20386:6;20382:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20372:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20350:47;;20408:15;:6;20415:1;20408:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;20434;:6;20441:1;20434:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;20465:9;20490:1;20481:6;20477:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20465:26;;20460:131;20497:1;20493;:5;20460:131;;;20532:8;20549:3;20541:5;:11;20532:21;;;;;;;:::i;:::-;;;;;20520:6;20527:1;20520:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;20578:1;20568:11;;;;;20500:3;;;;:::i;:::-;;;20460:131;;;;20618:1;20609:5;:10;20601:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;20681:6;20667:21;;;20249:447;;;;:::o;88:117:1:-;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:126::-;2897:7;2937:42;2930:5;2926:54;2915:65;;2860:126;;;:::o;2992:96::-;3029:7;3058:24;3076:5;3058:24;:::i;:::-;3047:35;;2992:96;;;:::o;3094:122::-;3167:24;3185:5;3167:24;:::i;:::-;3160:5;3157:35;3147:63;;3206:1;3203;3196:12;3147:63;3094:122;:::o;3222:139::-;3268:5;3306:6;3293:20;3284:29;;3322:33;3349:5;3322:33;:::i;:::-;3222:139;;;;:::o;3367:77::-;3404:7;3433:5;3422:16;;3367:77;;;:::o;3450:122::-;3523:24;3541:5;3523:24;:::i;:::-;3516:5;3513:35;3503:63;;3562:1;3559;3552:12;3503:63;3450:122;:::o;3578:139::-;3624:5;3662:6;3649:20;3640:29;;3678:33;3705:5;3678:33;:::i;:::-;3578:139;;;;:::o;3723:474::-;3791:6;3799;3848:2;3836:9;3827:7;3823:23;3819:32;3816:119;;;3854:79;;:::i;:::-;3816:119;3974:1;3999:53;4044:7;4035:6;4024:9;4020:22;3999:53;:::i;:::-;3989:63;;3945:117;4101:2;4127:53;4172:7;4163:6;4152:9;4148:22;4127:53;:::i;:::-;4117:63;;4072:118;3723:474;;;;;:::o;4203:118::-;4290:24;4308:5;4290:24;:::i;:::-;4285:3;4278:37;4203:118;;:::o;4327:222::-;4420:4;4458:2;4447:9;4443:18;4435:26;;4471:71;4539:1;4528:9;4524:17;4515:6;4471:71;:::i;:::-;4327:222;;;;:::o;4555:619::-;4632:6;4640;4648;4697:2;4685:9;4676:7;4672:23;4668:32;4665:119;;;4703:79;;:::i;:::-;4665:119;4823:1;4848:53;4893:7;4884:6;4873:9;4869:22;4848:53;:::i;:::-;4838:63;;4794:117;4950:2;4976:53;5021:7;5012:6;5001:9;4997:22;4976:53;:::i;:::-;4966:63;;4921:118;5078:2;5104:53;5149:7;5140:6;5129:9;5125:22;5104:53;:::i;:::-;5094:63;;5049:118;4555:619;;;;;:::o;5180:77::-;5217:7;5246:5;5235:16;;5180:77;;;:::o;5263:122::-;5336:24;5354:5;5336:24;:::i;:::-;5329:5;5326:35;5316:63;;5375:1;5372;5365:12;5316:63;5263:122;:::o;5391:139::-;5437:5;5475:6;5462:20;5453:29;;5491:33;5518:5;5491:33;:::i;:::-;5391:139;;;;:::o;5536:329::-;5595:6;5644:2;5632:9;5623:7;5619:23;5615:32;5612:119;;;5650:79;;:::i;:::-;5612:119;5770:1;5795:53;5840:7;5831:6;5820:9;5816:22;5795:53;:::i;:::-;5785:63;;5741:117;5536:329;;;;:::o;5871:118::-;5958:24;5976:5;5958:24;:::i;:::-;5953:3;5946:37;5871:118;;:::o;5995:222::-;6088:4;6126:2;6115:9;6111:18;6103:26;;6139:71;6207:1;6196:9;6192:17;6183:6;6139:71;:::i;:::-;5995:222;;;;:::o;6223:474::-;6291:6;6299;6348:2;6336:9;6327:7;6323:23;6319:32;6316:119;;;6354:79;;:::i;:::-;6316:119;6474:1;6499:53;6544:7;6535:6;6524:9;6520:22;6499:53;:::i;:::-;6489:63;;6445:117;6601:2;6627:53;6672:7;6663:6;6652:9;6648:22;6627:53;:::i;:::-;6617:63;;6572:118;6223:474;;;;;:::o;6703:86::-;6738:7;6778:4;6771:5;6767:16;6756:27;;6703:86;;;:::o;6795:112::-;6878:22;6894:5;6878:22;:::i;:::-;6873:3;6866:35;6795:112;;:::o;6913:214::-;7002:4;7040:2;7029:9;7025:18;7017:26;;7053:67;7117:1;7106:9;7102:17;7093:6;7053:67;:::i;:::-;6913:214;;;;:::o;7133:329::-;7192:6;7241:2;7229:9;7220:7;7216:23;7212:32;7209:119;;;7247:79;;:::i;:::-;7209:119;7367:1;7392:53;7437:7;7428:6;7417:9;7413:22;7392:53;:::i;:::-;7382:63;;7338:117;7133:329;;;;:::o;7468:::-;7527:6;7576:2;7564:9;7555:7;7551:23;7547:32;7544:119;;;7582:79;;:::i;:::-;7544:119;7702:1;7727:53;7772:7;7763:6;7752:9;7748:22;7727:53;:::i;:::-;7717:63;;7673:117;7468:329;;;;:::o;7803:118::-;7874:22;7890:5;7874:22;:::i;:::-;7867:5;7864:33;7854:61;;7911:1;7908;7901:12;7854:61;7803:118;:::o;7927:135::-;7971:5;8009:6;7996:20;7987:29;;8025:31;8050:5;8025:31;:::i;:::-;7927:135;;;;:::o;8068:1199::-;8179:6;8187;8195;8203;8211;8219;8227;8276:3;8264:9;8255:7;8251:23;8247:33;8244:120;;;8283:79;;:::i;:::-;8244:120;8403:1;8428:53;8473:7;8464:6;8453:9;8449:22;8428:53;:::i;:::-;8418:63;;8374:117;8530:2;8556:53;8601:7;8592:6;8581:9;8577:22;8556:53;:::i;:::-;8546:63;;8501:118;8658:2;8684:53;8729:7;8720:6;8709:9;8705:22;8684:53;:::i;:::-;8674:63;;8629:118;8786:2;8812:53;8857:7;8848:6;8837:9;8833:22;8812:53;:::i;:::-;8802:63;;8757:118;8914:3;8941:51;8984:7;8975:6;8964:9;8960:22;8941:51;:::i;:::-;8931:61;;8885:117;9041:3;9068:53;9113:7;9104:6;9093:9;9089:22;9068:53;:::i;:::-;9058:63;;9012:119;9170:3;9197:53;9242:7;9233:6;9222:9;9218:22;9197:53;:::i;:::-;9187:63;;9141:119;8068:1199;;;;;;;;;;:::o;9273:474::-;9341:6;9349;9398:2;9386:9;9377:7;9373:23;9369:32;9366:119;;;9404:79;;:::i;:::-;9366:119;9524:1;9549:53;9594:7;9585:6;9574:9;9570:22;9549:53;:::i;:::-;9539:63;;9495:117;9651:2;9677:53;9722:7;9713:6;9702:9;9698:22;9677:53;:::i;:::-;9667:63;;9622:118;9273:474;;;;;:::o;9753:180::-;9801:77;9798:1;9791:88;9898:4;9895:1;9888:15;9922:4;9919:1;9912:15;9939:320;9983:6;10020:1;10014:4;10010:12;10000:22;;10067:1;10061:4;10057:12;10088:18;10078:81;;10144:4;10136:6;10132:17;10122:27;;10078:81;10206:2;10198:6;10195:14;10175:18;10172:38;10169:84;;10225:18;;:::i;:::-;10169:84;9990:269;9939:320;;;:::o;10265:234::-;10405:34;10401:1;10393:6;10389:14;10382:58;10474:17;10469:2;10461:6;10457:15;10450:42;10265:234;:::o;10505:366::-;10647:3;10668:67;10732:2;10727:3;10668:67;:::i;:::-;10661:74;;10744:93;10833:3;10744:93;:::i;:::-;10862:2;10857:3;10853:12;10846:19;;10505:366;;;:::o;10877:419::-;11043:4;11081:2;11070:9;11066:18;11058:26;;11130:9;11124:4;11120:20;11116:1;11105:9;11101:17;11094:47;11158:131;11284:4;11158:131;:::i;:::-;11150:139;;10877:419;;;:::o;11302:180::-;11350:77;11347:1;11340:88;11447:4;11444:1;11437:15;11471:4;11468:1;11461:15;11488:191;11528:3;11547:20;11565:1;11547:20;:::i;:::-;11542:25;;11581:20;11599:1;11581:20;:::i;:::-;11576:25;;11624:1;11621;11617:9;11610:16;;11645:3;11642:1;11639:10;11636:36;;;11652:18;;:::i;:::-;11636:36;11488:191;;;;:::o;11685:224::-;11825:34;11821:1;11813:6;11809:14;11802:58;11894:7;11889:2;11881:6;11877:15;11870:32;11685:224;:::o;11915:366::-;12057:3;12078:67;12142:2;12137:3;12078:67;:::i;:::-;12071:74;;12154:93;12243:3;12154:93;:::i;:::-;12272:2;12267:3;12263:12;12256:19;;11915:366;;;:::o;12287:419::-;12453:4;12491:2;12480:9;12476:18;12468:26;;12540:9;12534:4;12530:20;12526:1;12515:9;12511:17;12504:47;12568:131;12694:4;12568:131;:::i;:::-;12560:139;;12287:419;;;:::o;12712:179::-;12852:31;12848:1;12840:6;12836:14;12829:55;12712:179;:::o;12897:366::-;13039:3;13060:67;13124:2;13119:3;13060:67;:::i;:::-;13053:74;;13136:93;13225:3;13136:93;:::i;:::-;13254:2;13249:3;13245:12;13238:19;;12897:366;;;:::o;13269:419::-;13435:4;13473:2;13462:9;13458:18;13450:26;;13522:9;13516:4;13512:20;13508:1;13497:9;13493:17;13486:47;13550:131;13676:4;13550:131;:::i;:::-;13542:139;;13269:419;;;:::o;13694:118::-;13781:24;13799:5;13781:24;:::i;:::-;13776:3;13769:37;13694:118;;:::o;13818:775::-;14051:4;14089:3;14078:9;14074:19;14066:27;;14103:71;14171:1;14160:9;14156:17;14147:6;14103:71;:::i;:::-;14184:72;14252:2;14241:9;14237:18;14228:6;14184:72;:::i;:::-;14266;14334:2;14323:9;14319:18;14310:6;14266:72;:::i;:::-;14348;14416:2;14405:9;14401:18;14392:6;14348:72;:::i;:::-;14430:73;14498:3;14487:9;14483:19;14474:6;14430:73;:::i;:::-;14513;14581:3;14570:9;14566:19;14557:6;14513:73;:::i;:::-;13818:775;;;;;;;;;:::o;14599:180::-;14739:32;14735:1;14727:6;14723:14;14716:56;14599:180;:::o;14785:366::-;14927:3;14948:67;15012:2;15007:3;14948:67;:::i;:::-;14941:74;;15024:93;15113:3;15024:93;:::i;:::-;15142:2;15137:3;15133:12;15126:19;;14785:366;;;:::o;15157:419::-;15323:4;15361:2;15350:9;15346:18;15338:26;;15410:9;15404:4;15400:20;15396:1;15385:9;15381:17;15374:47;15438:131;15564:4;15438:131;:::i;:::-;15430:139;;15157:419;;;:::o;15582:223::-;15722:34;15718:1;15710:6;15706:14;15699:58;15791:6;15786:2;15778:6;15774:15;15767:31;15582:223;:::o;15811:366::-;15953:3;15974:67;16038:2;16033:3;15974:67;:::i;:::-;15967:74;;16050:93;16139:3;16050:93;:::i;:::-;16168:2;16163:3;16159:12;16152:19;;15811:366;;;:::o;16183:419::-;16349:4;16387:2;16376:9;16372:18;16364:26;;16436:9;16430:4;16426:20;16422:1;16411:9;16407:17;16400:47;16464:131;16590:4;16464:131;:::i;:::-;16456:139;;16183:419;;;:::o;16608:221::-;16748:34;16744:1;16736:6;16732:14;16725:58;16817:4;16812:2;16804:6;16800:15;16793:29;16608:221;:::o;16835:366::-;16977:3;16998:67;17062:2;17057:3;16998:67;:::i;:::-;16991:74;;17074:93;17163:3;17074:93;:::i;:::-;17192:2;17187:3;17183:12;17176:19;;16835:366;;;:::o;17207:419::-;17373:4;17411:2;17400:9;17396:18;17388:26;;17460:9;17454:4;17450:20;17446:1;17435:9;17431:17;17424:47;17488:131;17614:4;17488:131;:::i;:::-;17480:139;;17207:419;;;:::o;17632:179::-;17772:31;17768:1;17760:6;17756:14;17749:55;17632:179;:::o;17817:366::-;17959:3;17980:67;18044:2;18039:3;17980:67;:::i;:::-;17973:74;;18056:93;18145:3;18056:93;:::i;:::-;18174:2;18169:3;18165:12;18158:19;;17817:366;;;:::o;18189:419::-;18355:4;18393:2;18382:9;18378:18;18370:26;;18442:9;18436:4;18432:20;18428:1;18417:9;18413:17;18406:47;18470:131;18596:4;18470:131;:::i;:::-;18462:139;;18189:419;;;:::o;18614:224::-;18754:34;18750:1;18742:6;18738:14;18731:58;18823:7;18818:2;18810:6;18806:15;18799:32;18614:224;:::o;18844:366::-;18986:3;19007:67;19071:2;19066:3;19007:67;:::i;:::-;19000:74;;19083:93;19172:3;19083:93;:::i;:::-;19201:2;19196:3;19192:12;19185:19;;18844:366;;;:::o;19216:419::-;19382:4;19420:2;19409:9;19405:18;19397:26;;19469:9;19463:4;19459:20;19455:1;19444:9;19440:17;19433:47;19497:131;19623:4;19497:131;:::i;:::-;19489:139;;19216:419;;;:::o;19641:222::-;19781:34;19777:1;19769:6;19765:14;19758:58;19850:5;19845:2;19837:6;19833:15;19826:30;19641:222;:::o;19869:366::-;20011:3;20032:67;20096:2;20091:3;20032:67;:::i;:::-;20025:74;;20108:93;20197:3;20108:93;:::i;:::-;20226:2;20221:3;20217:12;20210:19;;19869:366;;;:::o;20241:419::-;20407:4;20445:2;20434:9;20430:18;20422:26;;20494:9;20488:4;20484:20;20480:1;20469:9;20465:17;20458:47;20522:131;20648:4;20522:131;:::i;:::-;20514:139;;20241:419;;;:::o;20666:225::-;20806:34;20802:1;20794:6;20790:14;20783:58;20875:8;20870:2;20862:6;20858:15;20851:33;20666:225;:::o;20897:366::-;21039:3;21060:67;21124:2;21119:3;21060:67;:::i;:::-;21053:74;;21136:93;21225:3;21136:93;:::i;:::-;21254:2;21249:3;21245:12;21238:19;;20897:366;;;:::o;21269:419::-;21435:4;21473:2;21462:9;21458:18;21450:26;;21522:9;21516:4;21512:20;21508:1;21497:9;21493:17;21486:47;21550:131;21676:4;21550:131;:::i;:::-;21542:139;;21269:419;;;:::o;21694:222::-;21787:4;21825:2;21814:9;21810:18;21802:26;;21838:71;21906:1;21895:9;21891:17;21882:6;21838:71;:::i;:::-;21694:222;;;;:::o;21922:181::-;22062:33;22058:1;22050:6;22046:14;22039:57;21922:181;:::o;22109:366::-;22251:3;22272:67;22336:2;22331:3;22272:67;:::i;:::-;22265:74;;22348:93;22437:3;22348:93;:::i;:::-;22466:2;22461:3;22457:12;22450:19;;22109:366;;;:::o;22481:419::-;22647:4;22685:2;22674:9;22670:18;22662:26;;22734:9;22728:4;22724:20;22720:1;22709:9;22705:17;22698:47;22762:131;22888:4;22762:131;:::i;:::-;22754:139;;22481:419;;;:::o;22906:220::-;23046:34;23042:1;23034:6;23030:14;23023:58;23115:3;23110:2;23102:6;23098:15;23091:28;22906:220;:::o;23132:366::-;23274:3;23295:67;23359:2;23354:3;23295:67;:::i;:::-;23288:74;;23371:93;23460:3;23371:93;:::i;:::-;23489:2;23484:3;23480:12;23473:19;;23132:366;;;:::o;23504:419::-;23670:4;23708:2;23697:9;23693:18;23685:26;;23757:9;23751:4;23747:20;23743:1;23732:9;23728:17;23721:47;23785:131;23911:4;23785:131;:::i;:::-;23777:139;;23504:419;;;:::o;23929:221::-;24069:34;24065:1;24057:6;24053:14;24046:58;24138:4;24133:2;24125:6;24121:15;24114:29;23929:221;:::o;24156:366::-;24298:3;24319:67;24383:2;24378:3;24319:67;:::i;:::-;24312:74;;24395:93;24484:3;24395:93;:::i;:::-;24513:2;24508:3;24504:12;24497:19;;24156:366;;;:::o;24528:419::-;24694:4;24732:2;24721:9;24717:18;24709:26;;24781:9;24775:4;24771:20;24767:1;24756:9;24752:17;24745:47;24809:131;24935:4;24809:131;:::i;:::-;24801:139;;24528:419;;;:::o;24953:148::-;25055:11;25092:3;25077:18;;24953:148;;;;:::o;25107:173::-;25247:25;25243:1;25235:6;25231:14;25224:49;25107:173;:::o;25286:402::-;25446:3;25467:85;25549:2;25544:3;25467:85;:::i;:::-;25460:92;;25561:93;25650:3;25561:93;:::i;:::-;25679:2;25674:3;25670:12;25663:19;;25286:402;;;:::o;25694:390::-;25800:3;25828:39;25861:5;25828:39;:::i;:::-;25883:89;25965:6;25960:3;25883:89;:::i;:::-;25876:96;;25981:65;26039:6;26034:3;26027:4;26020:5;26016:16;25981:65;:::i;:::-;26071:6;26066:3;26062:16;26055:23;;25804:280;25694:390;;;;:::o;26090:167::-;26230:19;26226:1;26218:6;26214:14;26207:43;26090:167;:::o;26263:402::-;26423:3;26444:85;26526:2;26521:3;26444:85;:::i;:::-;26437:92;;26538:93;26627:3;26538:93;:::i;:::-;26656:2;26651:3;26647:12;26640:19;;26263:402;;;:::o;26671:967::-;27053:3;27075:148;27219:3;27075:148;:::i;:::-;27068:155;;27240:95;27331:3;27322:6;27240:95;:::i;:::-;27233:102;;27352:148;27496:3;27352:148;:::i;:::-;27345:155;;27517:95;27608:3;27599:6;27517:95;:::i;:::-;27510:102;;27629:3;27622:10;;26671:967;;;;;:::o;27644:664::-;27849:4;27887:3;27876:9;27872:19;27864:27;;27901:71;27969:1;27958:9;27954:17;27945:6;27901:71;:::i;:::-;27982:72;28050:2;28039:9;28035:18;28026:6;27982:72;:::i;:::-;28064;28132:2;28121:9;28117:18;28108:6;28064:72;:::i;:::-;28146;28214:2;28203:9;28199:18;28190:6;28146:72;:::i;:::-;28228:73;28296:3;28285:9;28281:19;28272:6;28228:73;:::i;:::-;27644:664;;;;;;;;:::o;28314:170::-;28454:22;28450:1;28442:6;28438:14;28431:46;28314:170;:::o;28490:366::-;28632:3;28653:67;28717:2;28712:3;28653:67;:::i;:::-;28646:74;;28729:93;28818:3;28729:93;:::i;:::-;28847:2;28842:3;28838:12;28831:19;;28490:366;;;:::o;28862:419::-;29028:4;29066:2;29055:9;29051:18;29043:26;;29115:9;29109:4;29105:20;29101:1;29090:9;29086:17;29079:47;29143:131;29269:4;29143:131;:::i;:::-;29135:139;;28862:419;;;:::o;29287:166::-;29427:18;29423:1;29415:6;29411:14;29404:42;29287:166;:::o;29459:366::-;29601:3;29622:67;29686:2;29681:3;29622:67;:::i;:::-;29615:74;;29698:93;29787:3;29698:93;:::i;:::-;29816:2;29811:3;29807:12;29800:19;;29459:366;;;:::o;29831:419::-;29997:4;30035:2;30024:9;30020:18;30012:26;;30084:9;30078:4;30074:20;30070:1;30059:9;30055:17;30048:47;30112:131;30238:4;30112:131;:::i;:::-;30104:139;;29831:419;;;:::o;30256:214::-;30396:66;30392:1;30384:6;30380:14;30373:90;30256:214;:::o;30476:400::-;30636:3;30657:84;30739:1;30734:3;30657:84;:::i;:::-;30650:91;;30750:93;30839:3;30750:93;:::i;:::-;30868:1;30863:3;30859:11;30852:18;;30476:400;;;:::o;30882:79::-;30921:7;30950:5;30939:16;;30882:79;;;:::o;30967:157::-;31072:45;31092:24;31110:5;31092:24;:::i;:::-;31072:45;:::i;:::-;31067:3;31060:58;30967:157;;:::o;31130:663::-;31371:3;31393:148;31537:3;31393:148;:::i;:::-;31386:155;;31551:75;31622:3;31613:6;31551:75;:::i;:::-;31651:2;31646:3;31642:12;31635:19;;31664:75;31735:3;31726:6;31664:75;:::i;:::-;31764:2;31759:3;31755:12;31748:19;;31784:3;31777:10;;31130:663;;;;;:::o;31799:545::-;31972:4;32010:3;31999:9;31995:19;31987:27;;32024:71;32092:1;32081:9;32077:17;32068:6;32024:71;:::i;:::-;32105:68;32169:2;32158:9;32154:18;32145:6;32105:68;:::i;:::-;32183:72;32251:2;32240:9;32236:18;32227:6;32183:72;:::i;:::-;32265;32333:2;32322:9;32318:18;32309:6;32265:72;:::i;:::-;31799:545;;;;;;;:::o;32350:180::-;32398:77;32395:1;32388:88;32495:4;32492:1;32485:15;32519:4;32516:1;32509:15;32536:174;32676:26;32672:1;32664:6;32660:14;32653:50;32536:174;:::o;32716:366::-;32858:3;32879:67;32943:2;32938:3;32879:67;:::i;:::-;32872:74;;32955:93;33044:3;32955:93;:::i;:::-;33073:2;33068:3;33064:12;33057:19;;32716:366;;;:::o;33088:419::-;33254:4;33292:2;33281:9;33277:18;33269:26;;33341:9;33335:4;33331:20;33327:1;33316:9;33312:17;33305:47;33369:131;33495:4;33369:131;:::i;:::-;33361:139;;33088:419;;;:::o;33513:181::-;33653:33;33649:1;33641:6;33637:14;33630:57;33513:181;:::o;33700:366::-;33842:3;33863:67;33927:2;33922:3;33863:67;:::i;:::-;33856:74;;33939:93;34028:3;33939:93;:::i;:::-;34057:2;34052:3;34048:12;34041:19;;33700:366;;;:::o;34072:419::-;34238:4;34276:2;34265:9;34261:18;34253:26;;34325:9;34319:4;34315:20;34311:1;34300:9;34296:17;34289:47;34353:131;34479:4;34353:131;:::i;:::-;34345:139;;34072:419;;;:::o;34497:221::-;34637:34;34633:1;34625:6;34621:14;34614:58;34706:4;34701:2;34693:6;34689:15;34682:29;34497:221;:::o;34724:366::-;34866:3;34887:67;34951:2;34946:3;34887:67;:::i;:::-;34880:74;;34963:93;35052:3;34963:93;:::i;:::-;35081:2;35076:3;35072:12;35065:19;;34724:366;;;:::o;35096:419::-;35262:4;35300:2;35289:9;35285:18;35277:26;;35349:9;35343:4;35339:20;35335:1;35324:9;35320:17;35313:47;35377:131;35503:4;35377:131;:::i;:::-;35369:139;;35096:419;;;:::o;35521:410::-;35561:7;35584:20;35602:1;35584:20;:::i;:::-;35579:25;;35618:20;35636:1;35618:20;:::i;:::-;35613:25;;35673:1;35670;35666:9;35695:30;35713:11;35695:30;:::i;:::-;35684:41;;35874:1;35865:7;35861:15;35858:1;35855:22;35835:1;35828:9;35808:83;35785:139;;35904:18;;:::i;:::-;35785:139;35569:362;35521:410;;;;:::o;35937:180::-;35985:77;35982:1;35975:88;36082:4;36079:1;36072:15;36106:4;36103:1;36096:15;36123:180;36171:77;36168:1;36161:88;36268:4;36265:1;36258:15;36292:4;36289:1;36282:15;36309:171;36348:3;36371:24;36389:5;36371:24;:::i;:::-;36362:33;;36417:4;36410:5;36407:15;36404:41;;36425:18;;:::i;:::-;36404:41;36472:1;36465:5;36461:13;36454:20;;36309:171;;;:::o;36486:182::-;36626:34;36622:1;36614:6;36610:14;36603:58;36486:182;:::o;36674:366::-;36816:3;36837:67;36901:2;36896:3;36837:67;:::i;:::-;36830:74;;36913:93;37002:3;36913:93;:::i;:::-;37031:2;37026:3;37022:12;37015:19;;36674:366;;;:::o;37046:419::-;37212:4;37250:2;37239:9;37235:18;37227:26;;37299:9;37293:4;37289:20;37285:1;37274:9;37270:17;37263:47;37327:131;37453:4;37327:131;:::i;:::-;37319:139;;37046:419;;;:::o
Swarm Source
ipfs://b423bf6e36d360c8c9e79983350f45bb0334803cf273e99922932a84ae51be95
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.