Polygon Sponsored slots available. Book your slot here!
ERC-20
Overview
Max Total Supply
1,000,000,000 INDI
Holders
120
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Indicium
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2023-03-12 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/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/contracts/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/contracts/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/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/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/contracts/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/contracts/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/contracts/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/contracts/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: contracts/Indicium.sol pragma solidity ^0.8.9; contract Indicium is ERC20, ERC20Burnable, Pausable, Ownable, ERC20Permit { constructor() ERC20("Indicium", "INDI") ERC20Permit("Indicium") { _mint(msg.sender, 1000000000 * 10 ** decimals()); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function mint(address to, uint256 amount) public onlyOwner { _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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":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":"DOMAIN_SEPARATOR","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":"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101406040523480156200001257600080fd5b506040518060400160405280600881526020017f496e64696369756d000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f496e64696369756d0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f494e4449000000000000000000000000000000000000000000000000000000008152508160039081620000fd9190620007e3565b5080600490816200010f9190620007e3565b5050506000600560006101000a81548160ff0219169083151502179055506200014d620001416200024660201b60201c565b6200024e60201b60201c565b60008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001b68184846200031460201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508061012081815250505050505050506200024033620002156200035060201b60201c565b600a62000223919062000a5a565b633b9aca0062000234919062000aab565b6200035960201b60201c565b62000d11565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600083838346306040516020016200033195949392919062000b67565b6040516020818303038152906040528051906020012090509392505050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c29062000c25565b60405180910390fd5b620003df60008383620004c660201b60201c565b8060026000828254620003f3919062000c47565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004a6919062000c82565b60405180910390a3620004c260008383620004f360201b60201c565b5050565b620004d6620004f860201b60201c565b620004ee8383836200054d60201b62000a5e1760201c565b505050565b505050565b620005086200055260201b60201c565b156200054b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005429062000cef565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005eb57607f821691505b602082108103620006015762000600620005a3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200066b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200062c565b6200067786836200062c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006c4620006be620006b8846200068f565b62000699565b6200068f565b9050919050565b6000819050919050565b620006e083620006a3565b620006f8620006ef82620006cb565b84845462000639565b825550505050565b600090565b6200070f62000700565b6200071c818484620006d5565b505050565b5b8181101562000744576200073860008262000705565b60018101905062000722565b5050565b601f82111562000793576200075d8162000607565b62000768846200061c565b8101602085101562000778578190505b6200079062000787856200061c565b83018262000721565b50505b505050565b600082821c905092915050565b6000620007b86000198460080262000798565b1980831691505092915050565b6000620007d38383620007a5565b9150826002028217905092915050565b620007ee8262000569565b67ffffffffffffffff8111156200080a576200080962000574565b5b620008168254620005d2565b6200082382828562000748565b600060209050601f8311600181146200085b576000841562000846578287015190505b620008528582620007c5565b865550620008c2565b601f1984166200086b8662000607565b60005b8281101562000895578489015182556001820191506020850194506020810190506200086e565b86831015620008b55784890151620008b1601f891682620007a5565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009585780860481111562000930576200092f620008ca565b5b6001851615620009405780820291505b80810290506200095085620008f9565b945062000910565b94509492505050565b60008262000973576001905062000a46565b8162000983576000905062000a46565b81600181146200099c5760028114620009a757620009dd565b600191505062000a46565b60ff841115620009bc57620009bb620008ca565b5b8360020a915084821115620009d657620009d5620008ca565b5b5062000a46565b5060208310610133831016604e8410600b841016171562000a175782820a90508381111562000a115762000a10620008ca565b5b62000a46565b62000a26848484600162000906565b9250905081840481111562000a405762000a3f620008ca565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a67826200068f565b915062000a748362000a4d565b925062000aa37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000961565b905092915050565b600062000ab8826200068f565b915062000ac5836200068f565b925082820262000ad5816200068f565b9150828204841483151762000aef5762000aee620008ca565b5b5092915050565b6000819050919050565b62000b0b8162000af6565b82525050565b62000b1c816200068f565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b4f8262000b22565b9050919050565b62000b618162000b42565b82525050565b600060a08201905062000b7e600083018862000b00565b62000b8d602083018762000b00565b62000b9c604083018662000b00565b62000bab606083018562000b11565b62000bba608083018462000b56565b9695505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c0d601f8362000bc4565b915062000c1a8262000bd5565b602082019050919050565b6000602082019050818103600083015262000c408162000bfe565b9050919050565b600062000c54826200068f565b915062000c61836200068f565b925082820190508082111562000c7c5762000c7b620008ca565b5b92915050565b600060208201905062000c99600083018462000b11565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000cd760108362000bc4565b915062000ce48262000c9f565b602082019050919050565b6000602082019050818103600083015262000d0a8162000cc8565b9050919050565b60805160a05160c05160e0516101005161012051612a6062000d616000396000610fe4015260006110260152600061100501526000610f3a01526000610f9001526000610fb90152612a606000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c357806395d89b411161007c57806395d89b4114610368578063a457c2d714610386578063a9059cbb146103b6578063d505accf146103e6578063dd62ed3e14610402578063f2fde38b146104325761014d565b806370a08231146102ba578063715018a6146102ea57806379cc6790146102f45780637ecebe00146103105780638456cb59146103405780638da5cb5b1461034a5761014d565b80633644e515116101155780633644e5151461020c578063395093511461022a5780633f4ba83a1461025a57806340c10f191461026457806342966c68146102805780635c975abb1461029c5761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be578063313ce567146101ee575b600080fd5b61015a61044e565b6040516101679190611a39565b60405180910390f35b61018a60048036038101906101859190611af4565b6104e0565b6040516101979190611b4f565b60405180910390f35b6101a8610503565b6040516101b59190611b79565b60405180910390f35b6101d860048036038101906101d39190611b94565b61050d565b6040516101e59190611b4f565b60405180910390f35b6101f661053c565b6040516102039190611c03565b60405180910390f35b610214610545565b6040516102219190611c37565b60405180910390f35b610244600480360381019061023f9190611af4565b610554565b6040516102519190611b4f565b60405180910390f35b61026261058b565b005b61027e60048036038101906102799190611af4565b61059d565b005b61029a60048036038101906102959190611c52565b6105b3565b005b6102a46105c7565b6040516102b19190611b4f565b60405180910390f35b6102d460048036038101906102cf9190611c7f565b6105de565b6040516102e19190611b79565b60405180910390f35b6102f2610626565b005b61030e60048036038101906103099190611af4565b61063a565b005b61032a60048036038101906103259190611c7f565b61065a565b6040516103379190611b79565b60405180910390f35b6103486106aa565b005b6103526106bc565b60405161035f9190611cbb565b60405180910390f35b6103706106e6565b60405161037d9190611a39565b60405180910390f35b6103a0600480360381019061039b9190611af4565b610778565b6040516103ad9190611b4f565b60405180910390f35b6103d060048036038101906103cb9190611af4565b6107ef565b6040516103dd9190611b4f565b60405180910390f35b61040060048036038101906103fb9190611d2e565b610812565b005b61041c60048036038101906104179190611dd0565b610954565b6040516104299190611b79565b60405180910390f35b61044c60048036038101906104479190611c7f565b6109db565b005b60606003805461045d90611e3f565b80601f016020809104026020016040519081016040528092919081815260200182805461048990611e3f565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b6000806104eb610a63565b90506104f8818585610a6b565b600191505092915050565b6000600254905090565b600080610518610a63565b9050610525858285610c34565b610530858585610cc0565b60019150509392505050565b60006012905090565b600061054f610f36565b905090565b60008061055f610a63565b90506105808185856105718589610954565b61057b9190611e9f565b610a6b565b600191505092915050565b610593611050565b61059b6110ce565b565b6105a5611050565b6105af8282611131565b5050565b6105c46105be610a63565b82611287565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61062e611050565b6106386000611454565b565b61064c82610646610a63565b83610c34565b6106568282611287565b5050565b60006106a3600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061151a565b9050919050565b6106b2611050565b6106ba611528565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106f590611e3f565b80601f016020809104026020016040519081016040528092919081815260200182805461072190611e3f565b801561076e5780601f106107435761010080835404028352916020019161076e565b820191906000526020600020905b81548152906001019060200180831161075157829003601f168201915b5050505050905090565b600080610783610a63565b905060006107918286610954565b9050838110156107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd90611f45565b60405180910390fd5b6107e38286868403610a6b565b60019250505092915050565b6000806107fa610a63565b9050610807818585610cc0565b600191505092915050565b83421115610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c90611fb1565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886108848c61158b565b8960405160200161089a96959493929190611fd1565b60405160208183030381529060405280519060200120905060006108bd826115e9565b905060006108cd82878787611603565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461093d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109349061207e565b60405180910390fd5b6109488a8a8a610a6b565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109e3611050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4990612110565b60405180910390fd5b610a5b81611454565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad1906121a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090612234565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c279190611b79565b60405180910390a3505050565b6000610c408484610954565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cba5781811015610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906122a0565b60405180910390fd5b610cb98484848403610a6b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2690612332565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d95906123c4565b60405180910390fd5b610da983838361162e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690612456565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f1d9190611b79565b60405180910390a3610f30848484611646565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015610fb257507f000000000000000000000000000000000000000000000000000000000000000046145b15610fdf577f0000000000000000000000000000000000000000000000000000000000000000905061104d565b61104a7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061164b565b90505b90565b611058610a63565b73ffffffffffffffffffffffffffffffffffffffff166110766106bc565b73ffffffffffffffffffffffffffffffffffffffff16146110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c3906124c2565b60405180910390fd5b565b6110d6611685565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61111a610a63565b6040516111279190611cbb565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111979061252e565b60405180910390fd5b6111ac6000838361162e565b80600260008282546111be9190611e9f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161126f9190611b79565b60405180910390a361128360008383611646565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906125c0565b60405180910390fd5b6113028260008361162e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90612652565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161143b9190611b79565b60405180910390a361144f83600084611646565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6115306116ce565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611574610a63565b6040516115819190611cbb565b60405180910390a1565b600080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506115d88161151a565b91506115e381611718565b50919050565b60006115fc6115f6610f36565b8361172e565b9050919050565b600080600061161487878787611761565b9150915061162181611843565b8192505050949350505050565b6116366116ce565b611641838383610a5e565b505050565b505050565b60008383834630604051602001611666959493929190612672565b6040516020818303038152906040528051906020012090509392505050565b61168d6105c7565b6116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390612711565b60405180910390fd5b565b6116d66105c7565b15611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d9061277d565b60405180910390fd5b565b6001816000016000828254019250508190555050565b60008282604051602001611743929190612815565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561179c57600060039150915061183a565b6000600187878787604051600081526020016040526040516117c1949392919061284c565b6020604051602081039080840390855afa1580156117e3573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118315760006001925092505061183a565b80600092509250505b94509492505050565b6000600481111561185757611856612891565b5b81600481111561186a57611869612891565b5b03156119a6576001600481111561188457611883612891565b5b81600481111561189757611896612891565b5b036118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce9061290c565b60405180910390fd5b600260048111156118eb576118ea612891565b5b8160048111156118fe576118fd612891565b5b0361193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590612978565b60405180910390fd5b6003600481111561195257611951612891565b5b81600481111561196557611964612891565b5b036119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c90612a0a565b60405180910390fd5b5b50565b600081519050919050565b600082825260208201905092915050565b60005b838110156119e35780820151818401526020810190506119c8565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a0b826119a9565b611a1581856119b4565b9350611a258185602086016119c5565b611a2e816119ef565b840191505092915050565b60006020820190508181036000830152611a538184611a00565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a8b82611a60565b9050919050565b611a9b81611a80565b8114611aa657600080fd5b50565b600081359050611ab881611a92565b92915050565b6000819050919050565b611ad181611abe565b8114611adc57600080fd5b50565b600081359050611aee81611ac8565b92915050565b60008060408385031215611b0b57611b0a611a5b565b5b6000611b1985828601611aa9565b9250506020611b2a85828601611adf565b9150509250929050565b60008115159050919050565b611b4981611b34565b82525050565b6000602082019050611b646000830184611b40565b92915050565b611b7381611abe565b82525050565b6000602082019050611b8e6000830184611b6a565b92915050565b600080600060608486031215611bad57611bac611a5b565b5b6000611bbb86828701611aa9565b9350506020611bcc86828701611aa9565b9250506040611bdd86828701611adf565b9150509250925092565b600060ff82169050919050565b611bfd81611be7565b82525050565b6000602082019050611c186000830184611bf4565b92915050565b6000819050919050565b611c3181611c1e565b82525050565b6000602082019050611c4c6000830184611c28565b92915050565b600060208284031215611c6857611c67611a5b565b5b6000611c7684828501611adf565b91505092915050565b600060208284031215611c9557611c94611a5b565b5b6000611ca384828501611aa9565b91505092915050565b611cb581611a80565b82525050565b6000602082019050611cd06000830184611cac565b92915050565b611cdf81611be7565b8114611cea57600080fd5b50565b600081359050611cfc81611cd6565b92915050565b611d0b81611c1e565b8114611d1657600080fd5b50565b600081359050611d2881611d02565b92915050565b600080600080600080600060e0888a031215611d4d57611d4c611a5b565b5b6000611d5b8a828b01611aa9565b9750506020611d6c8a828b01611aa9565b9650506040611d7d8a828b01611adf565b9550506060611d8e8a828b01611adf565b9450506080611d9f8a828b01611ced565b93505060a0611db08a828b01611d19565b92505060c0611dc18a828b01611d19565b91505092959891949750929550565b60008060408385031215611de757611de6611a5b565b5b6000611df585828601611aa9565b9250506020611e0685828601611aa9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e5757607f821691505b602082108103611e6a57611e69611e10565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611eaa82611abe565b9150611eb583611abe565b9250828201905080821115611ecd57611ecc611e70565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f2f6025836119b4565b9150611f3a82611ed3565b604082019050919050565b60006020820190508181036000830152611f5e81611f22565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000611f9b601d836119b4565b9150611fa682611f65565b602082019050919050565b60006020820190508181036000830152611fca81611f8e565b9050919050565b600060c082019050611fe66000830189611c28565b611ff36020830188611cac565b6120006040830187611cac565b61200d6060830186611b6a565b61201a6080830185611b6a565b61202760a0830184611b6a565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000612068601e836119b4565b915061207382612032565b602082019050919050565b600060208201905081810360008301526120978161205b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006120fa6026836119b4565b91506121058261209e565b604082019050919050565b60006020820190508181036000830152612129816120ed565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061218c6024836119b4565b915061219782612130565b604082019050919050565b600060208201905081810360008301526121bb8161217f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061221e6022836119b4565b9150612229826121c2565b604082019050919050565b6000602082019050818103600083015261224d81612211565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061228a601d836119b4565b915061229582612254565b602082019050919050565b600060208201905081810360008301526122b98161227d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061231c6025836119b4565b9150612327826122c0565b604082019050919050565b6000602082019050818103600083015261234b8161230f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123ae6023836119b4565b91506123b982612352565b604082019050919050565b600060208201905081810360008301526123dd816123a1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006124406026836119b4565b915061244b826123e4565b604082019050919050565b6000602082019050818103600083015261246f81612433565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006124ac6020836119b4565b91506124b782612476565b602082019050919050565b600060208201905081810360008301526124db8161249f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612518601f836119b4565b9150612523826124e2565b602082019050919050565b600060208201905081810360008301526125478161250b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006125aa6021836119b4565b91506125b58261254e565b604082019050919050565b600060208201905081810360008301526125d98161259d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061263c6022836119b4565b9150612647826125e0565b604082019050919050565b6000602082019050818103600083015261266b8161262f565b9050919050565b600060a0820190506126876000830188611c28565b6126946020830187611c28565b6126a16040830186611c28565b6126ae6060830185611b6a565b6126bb6080830184611cac565b9695505050505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006126fb6014836119b4565b9150612706826126c5565b602082019050919050565b6000602082019050818103600083015261272a816126ee565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006127676010836119b4565b915061277282612731565b602082019050919050565b600060208201905081810360008301526127968161275a565b9050919050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b60006127de60028361279d565b91506127e9826127a8565b600282019050919050565b6000819050919050565b61280f61280a82611c1e565b6127f4565b82525050565b6000612820826127d1565b915061282c82856127fe565b60208201915061283c82846127fe565b6020820191508190509392505050565b60006080820190506128616000830187611c28565b61286e6020830186611bf4565b61287b6040830185611c28565b6128886060830184611c28565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006128f66018836119b4565b9150612901826128c0565b602082019050919050565b60006020820190508181036000830152612925816128e9565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000612962601f836119b4565b915061296d8261292c565b602082019050919050565b6000602082019050818103600083015261299181612955565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006129f46022836119b4565b91506129ff82612998565b604082019050919050565b60006020820190508181036000830152612a23816129e7565b905091905056fea2646970667358221220152604b241789a1e52f4111a6b8546d130574bb3466b557fd2ea55f1c69739bc64736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c357806395d89b411161007c57806395d89b4114610368578063a457c2d714610386578063a9059cbb146103b6578063d505accf146103e6578063dd62ed3e14610402578063f2fde38b146104325761014d565b806370a08231146102ba578063715018a6146102ea57806379cc6790146102f45780637ecebe00146103105780638456cb59146103405780638da5cb5b1461034a5761014d565b80633644e515116101155780633644e5151461020c578063395093511461022a5780633f4ba83a1461025a57806340c10f191461026457806342966c68146102805780635c975abb1461029c5761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be578063313ce567146101ee575b600080fd5b61015a61044e565b6040516101679190611a39565b60405180910390f35b61018a60048036038101906101859190611af4565b6104e0565b6040516101979190611b4f565b60405180910390f35b6101a8610503565b6040516101b59190611b79565b60405180910390f35b6101d860048036038101906101d39190611b94565b61050d565b6040516101e59190611b4f565b60405180910390f35b6101f661053c565b6040516102039190611c03565b60405180910390f35b610214610545565b6040516102219190611c37565b60405180910390f35b610244600480360381019061023f9190611af4565b610554565b6040516102519190611b4f565b60405180910390f35b61026261058b565b005b61027e60048036038101906102799190611af4565b61059d565b005b61029a60048036038101906102959190611c52565b6105b3565b005b6102a46105c7565b6040516102b19190611b4f565b60405180910390f35b6102d460048036038101906102cf9190611c7f565b6105de565b6040516102e19190611b79565b60405180910390f35b6102f2610626565b005b61030e60048036038101906103099190611af4565b61063a565b005b61032a60048036038101906103259190611c7f565b61065a565b6040516103379190611b79565b60405180910390f35b6103486106aa565b005b6103526106bc565b60405161035f9190611cbb565b60405180910390f35b6103706106e6565b60405161037d9190611a39565b60405180910390f35b6103a0600480360381019061039b9190611af4565b610778565b6040516103ad9190611b4f565b60405180910390f35b6103d060048036038101906103cb9190611af4565b6107ef565b6040516103dd9190611b4f565b60405180910390f35b61040060048036038101906103fb9190611d2e565b610812565b005b61041c60048036038101906104179190611dd0565b610954565b6040516104299190611b79565b60405180910390f35b61044c60048036038101906104479190611c7f565b6109db565b005b60606003805461045d90611e3f565b80601f016020809104026020016040519081016040528092919081815260200182805461048990611e3f565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b6000806104eb610a63565b90506104f8818585610a6b565b600191505092915050565b6000600254905090565b600080610518610a63565b9050610525858285610c34565b610530858585610cc0565b60019150509392505050565b60006012905090565b600061054f610f36565b905090565b60008061055f610a63565b90506105808185856105718589610954565b61057b9190611e9f565b610a6b565b600191505092915050565b610593611050565b61059b6110ce565b565b6105a5611050565b6105af8282611131565b5050565b6105c46105be610a63565b82611287565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61062e611050565b6106386000611454565b565b61064c82610646610a63565b83610c34565b6106568282611287565b5050565b60006106a3600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061151a565b9050919050565b6106b2611050565b6106ba611528565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106f590611e3f565b80601f016020809104026020016040519081016040528092919081815260200182805461072190611e3f565b801561076e5780601f106107435761010080835404028352916020019161076e565b820191906000526020600020905b81548152906001019060200180831161075157829003601f168201915b5050505050905090565b600080610783610a63565b905060006107918286610954565b9050838110156107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd90611f45565b60405180910390fd5b6107e38286868403610a6b565b60019250505092915050565b6000806107fa610a63565b9050610807818585610cc0565b600191505092915050565b83421115610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c90611fb1565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886108848c61158b565b8960405160200161089a96959493929190611fd1565b60405160208183030381529060405280519060200120905060006108bd826115e9565b905060006108cd82878787611603565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461093d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109349061207e565b60405180910390fd5b6109488a8a8a610a6b565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109e3611050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4990612110565b60405180910390fd5b610a5b81611454565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad1906121a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090612234565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c279190611b79565b60405180910390a3505050565b6000610c408484610954565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cba5781811015610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906122a0565b60405180910390fd5b610cb98484848403610a6b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2690612332565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d95906123c4565b60405180910390fd5b610da983838361162e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690612456565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f1d9190611b79565b60405180910390a3610f30848484611646565b50505050565b60007f00000000000000000000000005542dd4e3c21412aa2f17f5b7d1fedf9aad9f4573ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015610fb257507f000000000000000000000000000000000000000000000000000000000000008946145b15610fdf577f489678190e3883e4a9c849fbc6bf1e4aa031c2ec764bdd8dfab2c0b1aaea24a4905061104d565b61104a7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7ffcba2ac68efa727c930aa008df71beadb8076635a3f17a12b8bcdcbde129752f7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc661164b565b90505b90565b611058610a63565b73ffffffffffffffffffffffffffffffffffffffff166110766106bc565b73ffffffffffffffffffffffffffffffffffffffff16146110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c3906124c2565b60405180910390fd5b565b6110d6611685565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61111a610a63565b6040516111279190611cbb565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111979061252e565b60405180910390fd5b6111ac6000838361162e565b80600260008282546111be9190611e9f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161126f9190611b79565b60405180910390a361128360008383611646565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906125c0565b60405180910390fd5b6113028260008361162e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90612652565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161143b9190611b79565b60405180910390a361144f83600084611646565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6115306116ce565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611574610a63565b6040516115819190611cbb565b60405180910390a1565b600080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506115d88161151a565b91506115e381611718565b50919050565b60006115fc6115f6610f36565b8361172e565b9050919050565b600080600061161487878787611761565b9150915061162181611843565b8192505050949350505050565b6116366116ce565b611641838383610a5e565b505050565b505050565b60008383834630604051602001611666959493929190612672565b6040516020818303038152906040528051906020012090509392505050565b61168d6105c7565b6116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390612711565b60405180910390fd5b565b6116d66105c7565b15611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d9061277d565b60405180910390fd5b565b6001816000016000828254019250508190555050565b60008282604051602001611743929190612815565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561179c57600060039150915061183a565b6000600187878787604051600081526020016040526040516117c1949392919061284c565b6020604051602081039080840390855afa1580156117e3573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118315760006001925092505061183a565b80600092509250505b94509492505050565b6000600481111561185757611856612891565b5b81600481111561186a57611869612891565b5b03156119a6576001600481111561188457611883612891565b5b81600481111561189757611896612891565b5b036118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce9061290c565b60405180910390fd5b600260048111156118eb576118ea612891565b5b8160048111156118fe576118fd612891565b5b0361193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590612978565b60405180910390fd5b6003600481111561195257611951612891565b5b81600481111561196557611964612891565b5b036119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c90612a0a565b60405180910390fd5b5b50565b600081519050919050565b600082825260208201905092915050565b60005b838110156119e35780820151818401526020810190506119c8565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a0b826119a9565b611a1581856119b4565b9350611a258185602086016119c5565b611a2e816119ef565b840191505092915050565b60006020820190508181036000830152611a538184611a00565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a8b82611a60565b9050919050565b611a9b81611a80565b8114611aa657600080fd5b50565b600081359050611ab881611a92565b92915050565b6000819050919050565b611ad181611abe565b8114611adc57600080fd5b50565b600081359050611aee81611ac8565b92915050565b60008060408385031215611b0b57611b0a611a5b565b5b6000611b1985828601611aa9565b9250506020611b2a85828601611adf565b9150509250929050565b60008115159050919050565b611b4981611b34565b82525050565b6000602082019050611b646000830184611b40565b92915050565b611b7381611abe565b82525050565b6000602082019050611b8e6000830184611b6a565b92915050565b600080600060608486031215611bad57611bac611a5b565b5b6000611bbb86828701611aa9565b9350506020611bcc86828701611aa9565b9250506040611bdd86828701611adf565b9150509250925092565b600060ff82169050919050565b611bfd81611be7565b82525050565b6000602082019050611c186000830184611bf4565b92915050565b6000819050919050565b611c3181611c1e565b82525050565b6000602082019050611c4c6000830184611c28565b92915050565b600060208284031215611c6857611c67611a5b565b5b6000611c7684828501611adf565b91505092915050565b600060208284031215611c9557611c94611a5b565b5b6000611ca384828501611aa9565b91505092915050565b611cb581611a80565b82525050565b6000602082019050611cd06000830184611cac565b92915050565b611cdf81611be7565b8114611cea57600080fd5b50565b600081359050611cfc81611cd6565b92915050565b611d0b81611c1e565b8114611d1657600080fd5b50565b600081359050611d2881611d02565b92915050565b600080600080600080600060e0888a031215611d4d57611d4c611a5b565b5b6000611d5b8a828b01611aa9565b9750506020611d6c8a828b01611aa9565b9650506040611d7d8a828b01611adf565b9550506060611d8e8a828b01611adf565b9450506080611d9f8a828b01611ced565b93505060a0611db08a828b01611d19565b92505060c0611dc18a828b01611d19565b91505092959891949750929550565b60008060408385031215611de757611de6611a5b565b5b6000611df585828601611aa9565b9250506020611e0685828601611aa9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e5757607f821691505b602082108103611e6a57611e69611e10565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611eaa82611abe565b9150611eb583611abe565b9250828201905080821115611ecd57611ecc611e70565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f2f6025836119b4565b9150611f3a82611ed3565b604082019050919050565b60006020820190508181036000830152611f5e81611f22565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000611f9b601d836119b4565b9150611fa682611f65565b602082019050919050565b60006020820190508181036000830152611fca81611f8e565b9050919050565b600060c082019050611fe66000830189611c28565b611ff36020830188611cac565b6120006040830187611cac565b61200d6060830186611b6a565b61201a6080830185611b6a565b61202760a0830184611b6a565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000612068601e836119b4565b915061207382612032565b602082019050919050565b600060208201905081810360008301526120978161205b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006120fa6026836119b4565b91506121058261209e565b604082019050919050565b60006020820190508181036000830152612129816120ed565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061218c6024836119b4565b915061219782612130565b604082019050919050565b600060208201905081810360008301526121bb8161217f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061221e6022836119b4565b9150612229826121c2565b604082019050919050565b6000602082019050818103600083015261224d81612211565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061228a601d836119b4565b915061229582612254565b602082019050919050565b600060208201905081810360008301526122b98161227d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061231c6025836119b4565b9150612327826122c0565b604082019050919050565b6000602082019050818103600083015261234b8161230f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123ae6023836119b4565b91506123b982612352565b604082019050919050565b600060208201905081810360008301526123dd816123a1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006124406026836119b4565b915061244b826123e4565b604082019050919050565b6000602082019050818103600083015261246f81612433565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006124ac6020836119b4565b91506124b782612476565b602082019050919050565b600060208201905081810360008301526124db8161249f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612518601f836119b4565b9150612523826124e2565b602082019050919050565b600060208201905081810360008301526125478161250b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006125aa6021836119b4565b91506125b58261254e565b604082019050919050565b600060208201905081810360008301526125d98161259d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061263c6022836119b4565b9150612647826125e0565b604082019050919050565b6000602082019050818103600083015261266b8161262f565b9050919050565b600060a0820190506126876000830188611c28565b6126946020830187611c28565b6126a16040830186611c28565b6126ae6060830185611b6a565b6126bb6080830184611cac565b9695505050505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006126fb6014836119b4565b9150612706826126c5565b602082019050919050565b6000602082019050818103600083015261272a816126ee565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006127676010836119b4565b915061277282612731565b602082019050919050565b600060208201905081810360008301526127968161275a565b9050919050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b60006127de60028361279d565b91506127e9826127a8565b600282019050919050565b6000819050919050565b61280f61280a82611c1e565b6127f4565b82525050565b6000612820826127d1565b915061282c82856127fe565b60208201915061283c82846127fe565b6020820191508190509392505050565b60006080820190506128616000830187611c28565b61286e6020830186611bf4565b61287b6040830185611c28565b6128886060830184611c28565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006128f66018836119b4565b9150612901826128c0565b602082019050919050565b60006020820190508181036000830152612925816128e9565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000612962601f836119b4565b915061296d8261292c565b602082019050919050565b6000602082019050818103600083015261299181612955565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006129f46022836119b4565b91506129ff82612998565b604082019050919050565b60006020820190508181036000830152612a23816129e7565b905091905056fea2646970667358221220152604b241789a1e52f4111a6b8546d130574bb3466b557fd2ea55f1c69739bc64736f6c63430008120033
Deployed Bytecode Sourcemap
60142:667:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44430:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46781:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45550:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47562:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45392:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58437:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48266:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60431:65;;;:::i;:::-;;60504:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59487:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37690:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45721:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35200:103;;;:::i;:::-;;59897:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58179:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60362:61;;;:::i;:::-;;34552:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44649:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49007:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46054:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57468:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46310:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35458:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44430:100;44484:13;44517:5;44510:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44430:100;:::o;46781:201::-;46864:4;46881:13;46897:12;:10;:12::i;:::-;46881:28;;46920:32;46929:5;46936:7;46945:6;46920:8;:32::i;:::-;46970:4;46963:11;;;46781:201;;;;:::o;45550:108::-;45611:7;45638:12;;45631:19;;45550:108;:::o;47562:295::-;47693:4;47710:15;47728:12;:10;:12::i;:::-;47710:30;;47751:38;47767:4;47773:7;47782:6;47751:15;:38::i;:::-;47800:27;47810:4;47816:2;47820:6;47800:9;:27::i;:::-;47845:4;47838:11;;;47562:295;;;;;:::o;45392:93::-;45450:5;45475:2;45468:9;;45392:93;:::o;58437:115::-;58497:7;58524:20;:18;:20::i;:::-;58517:27;;58437:115;:::o;48266:238::-;48354:4;48371:13;48387:12;:10;:12::i;:::-;48371:28;;48410:64;48419:5;48426:7;48463:10;48435:25;48445:5;48452:7;48435:9;:25::i;:::-;:38;;;;:::i;:::-;48410:8;:64::i;:::-;48492:4;48485:11;;;48266:238;;;;:::o;60431:65::-;34438:13;:11;:13::i;:::-;60478:10:::1;:8;:10::i;:::-;60431:65::o:0;60504:95::-;34438:13;:11;:13::i;:::-;60574:17:::1;60580:2;60584:6;60574:5;:17::i;:::-;60504:95:::0;;:::o;59487:91::-;59543:27;59549:12;:10;:12::i;:::-;59563:6;59543:5;:27::i;:::-;59487:91;:::o;37690:86::-;37737:4;37761:7;;;;;;;;;;;37754:14;;37690:86;:::o;45721:127::-;45795:7;45822:9;:18;45832:7;45822:18;;;;;;;;;;;;;;;;45815:25;;45721:127;;;:::o;35200:103::-;34438:13;:11;:13::i;:::-;35265:30:::1;35292:1;35265:18;:30::i;:::-;35200:103::o:0;59897:164::-;59974:46;59990:7;59999:12;:10;:12::i;:::-;60013:6;59974:15;:46::i;:::-;60031:22;60037:7;60046:6;60031:5;:22::i;:::-;59897:164;;:::o;58179:128::-;58248:7;58275:24;:7;:14;58283:5;58275:14;;;;;;;;;;;;;;;:22;:24::i;:::-;58268:31;;58179:128;;;:::o;60362:61::-;34438:13;:11;:13::i;:::-;60407:8:::1;:6;:8::i;:::-;60362:61::o:0;34552:87::-;34598:7;34625:6;;;;;;;;;;;34618:13;;34552:87;:::o;44649:104::-;44705:13;44738:7;44731:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44649:104;:::o;49007:436::-;49100:4;49117:13;49133:12;:10;:12::i;:::-;49117:28;;49156:24;49183:25;49193:5;49200:7;49183:9;:25::i;:::-;49156:52;;49247:15;49227:16;:35;;49219:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;49340:60;49349:5;49356:7;49384:15;49365:16;:34;49340:8;:60::i;:::-;49431:4;49424:11;;;;49007:436;;;;:::o;46054:193::-;46133:4;46150:13;46166:12;:10;:12::i;:::-;46150:28;;46189;46199:5;46206:2;46210:6;46189:9;:28::i;:::-;46235:4;46228:11;;;46054:193;;;;:::o;57468:645::-;57712:8;57693:15;:27;;57685:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;57767:18;56643:95;57827:5;57834:7;57843:5;57850:16;57860:5;57850:9;:16::i;:::-;57868:8;57798:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57788:90;;;;;;57767:111;;57891:12;57906:28;57923:10;57906:16;:28::i;:::-;57891:43;;57947:14;57964:28;57978:4;57984:1;57987;57990;57964:13;:28::i;:::-;57947:45;;58021:5;58011:15;;:6;:15;;;58003:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;58074:31;58083:5;58090:7;58099:5;58074:8;:31::i;:::-;57674:439;;;57468:645;;;;;;;:::o;46310:151::-;46399:7;46426:11;:18;46438:5;46426:18;;;;;;;;;;;;;;;:27;46445:7;46426:27;;;;;;;;;;;;;;;;46419:34;;46310:151;;;;:::o;35458:201::-;34438:13;:11;:13::i;:::-;35567:1:::1;35547:22;;:8;:22;;::::0;35539:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;35623:28;35642:8;35623:18;:28::i;:::-;35458:201:::0;:::o;54758:125::-;;;;:::o;33103:98::-;33156:7;33183:10;33176:17;;33103:98;:::o;53034:380::-;53187:1;53170:19;;:5;:19;;;53162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53268:1;53249:21;;:7;:21;;;53241:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53352:6;53322:11;:18;53334:5;53322:18;;;;;;;;;;;;;;;:27;53341:7;53322:27;;;;;;;;;;;;;;;:36;;;;53390:7;53374:32;;53383:5;53374:32;;;53399:6;53374:32;;;;;;:::i;:::-;;;;;;;;53034:380;;;:::o;53705:453::-;53840:24;53867:25;53877:5;53884:7;53867:9;:25::i;:::-;53840:52;;53927:17;53907:16;:37;53903:248;;53989:6;53969:16;:26;;53961:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54073:51;54082:5;54089:7;54117:6;54098:16;:25;54073:8;:51::i;:::-;53903:248;53829:329;53705:453;;;:::o;49913:840::-;50060:1;50044:18;;:4;:18;;;50036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50137:1;50123:16;;:2;:16;;;50115:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;50192:38;50213:4;50219:2;50223:6;50192:20;:38::i;:::-;50243:19;50265:9;:15;50275:4;50265:15;;;;;;;;;;;;;;;;50243:37;;50314:6;50299:11;:21;;50291:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;50431:6;50417:11;:20;50399:9;:15;50409:4;50399:15;;;;;;;;;;;;;;;:38;;;;50634:6;50617:9;:13;50627:2;50617:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;50684:2;50669:26;;50678:4;50669:26;;;50688:6;50669:26;;;;;;:::i;:::-;;;;;;;;50708:37;50728:4;50734:2;50738:6;50708:19;:37::i;:::-;50025:728;49913:840;;;:::o;28658:314::-;28711:7;28752:12;28735:29;;28743:4;28735:29;;;:66;;;;;28785:16;28768:13;:33;28735:66;28731:234;;;28825:24;28818:31;;;;28731:234;28889:64;28911:10;28923:12;28937:15;28889:21;:64::i;:::-;28882:71;;28658:314;;:::o;34717:132::-;34792:12;:10;:12::i;:::-;34781:23;;:7;:5;:7::i;:::-;:23;;;34773:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34717:132::o;38545:120::-;37554:16;:14;:16::i;:::-;38614:5:::1;38604:7;;:15;;;;;;;;;;;;;;;;;;38635:22;38644:12;:10;:12::i;:::-;38635:22;;;;;;:::i;:::-;;;;;;;;38545:120::o:0;51040:548::-;51143:1;51124:21;;:7;:21;;;51116:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51194:49;51223:1;51227:7;51236:6;51194:20;:49::i;:::-;51272:6;51256:12;;:22;;;;;;;:::i;:::-;;;;;;;;51449:6;51427:9;:18;51437:7;51427:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;51503:7;51482:37;;51499:1;51482:37;;;51512:6;51482:37;;;;;;:::i;:::-;;;;;;;;51532:48;51560:1;51564:7;51573:6;51532:19;:48::i;:::-;51040:548;;:::o;51921:675::-;52024:1;52005:21;;:7;:21;;;51997:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;52077:49;52098:7;52115:1;52119:6;52077:20;:49::i;:::-;52139:22;52164:9;:18;52174:7;52164:18;;;;;;;;;;;;;;;;52139:43;;52219:6;52201:14;:24;;52193:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;52338:6;52321:14;:23;52300:9;:18;52310:7;52300:18;;;;;;;;;;;;;;;:44;;;;52455:6;52439:12;;:22;;;;;;;;;;;52516:1;52490:37;;52499:7;52490:37;;;52520:6;52490:37;;;;;;:::i;:::-;;;;;;;;52540:48;52560:7;52577:1;52581:6;52540:19;:48::i;:::-;51986:610;51921:675;;:::o;35819:191::-;35893:16;35912:6;;;;;;;;;;;35893:25;;35938:8;35929:6;;:17;;;;;;;;;;;;;;;;;;35993:8;35962:40;;35983:8;35962:40;;;;;;;;;;;;35882:128;35819:191;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;38286:118::-;37295:19;:17;:19::i;:::-;38356:4:::1;38346:7;;:14;;;;;;;;;;;;;;;;;;38376:20;38383:12;:10;:12::i;:::-;38376:20;;;;;;:::i;:::-;;;;;;;;38286:118::o:0;58690:207::-;58750:15;58778:30;58811:7;:14;58819:5;58811:14;;;;;;;;;;;;;;;58778:47;;58846:15;:5;:13;:15::i;:::-;58836:25;;58872:17;:5;:15;:17::i;:::-;58767:130;58690:207;;;:::o;29885:167::-;29962:7;29989:55;30011:20;:18;:20::i;:::-;30033:10;29989:21;:55::i;:::-;29982:62;;29885:167;;;:::o;23531:279::-;23659:7;23680:17;23699:18;23721:25;23732:4;23738:1;23741;23744;23721:10;:25::i;:::-;23679:67;;;;23757:18;23769:5;23757:11;:18::i;:::-;23793:9;23786:16;;;;23531:279;;;;;;:::o;60607:199::-;37295:19;:17;:19::i;:::-;60754:44:::1;60781:4;60787:2;60791:6;60754:26;:44::i;:::-;60607:199:::0;;;:::o;55487:124::-;;;;:::o;28980:263::-;29124:7;29172:8;29182;29192:11;29205:13;29228:4;29161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29151:84;;;;;;29144:91;;28980:263;;;;;:::o;38034:108::-;38101:8;:6;:8::i;:::-;38093:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;38034:108::o;37849:::-;37920:8;:6;:8::i;:::-;37919:9;37911:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;37849:108::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;25222:196::-;25315:7;25381:15;25398:10;25352:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25342:68;;;;;;25335:75;;25222:196;;;;:::o;21872:1520::-;22003:7;22012:12;22937:66;22932:1;22924:10;;:79;22920:163;;;23036:1;23040:30;23020:51;;;;;;22920:163;23180:14;23197:24;23207:4;23213:1;23216;23219;23197:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23180:41;;23254:1;23236:20;;:6;:20;;;23232:103;;23289:1;23293:29;23273:50;;;;;;;23232:103;23355:6;23363:20;23347:37;;;;;21872:1520;;;;;;;;:::o;17264:521::-;17342:20;17333:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;17329:449;17379:7;17329:449;17440:29;17431:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;17427:351;;17486:34;;;;;;;;;;:::i;:::-;;;;;;;;17427:351;17551:35;17542:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;17538:240;;17603:41;;;;;;;;;;:::i;:::-;;;;;;;;17538:240;17675:30;17666:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;17662:116;;17722:44;;;;;;;;;;:::i;:::-;;;;;;;;17662:116;17264:521;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:77::-;4890:7;4919:5;4908:16;;4853:77;;;:::o;4936:118::-;5023:24;5041:5;5023:24;:::i;:::-;5018:3;5011:37;4936:118;;:::o;5060:222::-;5153:4;5191:2;5180:9;5176:18;5168:26;;5204:71;5272:1;5261:9;5257:17;5248:6;5204:71;:::i;:::-;5060:222;;;;:::o;5288:329::-;5347:6;5396:2;5384:9;5375:7;5371:23;5367:32;5364:119;;;5402:79;;:::i;:::-;5364:119;5522:1;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5493:117;5288:329;;;;:::o;5623:::-;5682:6;5731:2;5719:9;5710:7;5706:23;5702:32;5699:119;;;5737:79;;:::i;:::-;5699:119;5857:1;5882:53;5927:7;5918:6;5907:9;5903:22;5882:53;:::i;:::-;5872:63;;5828:117;5623:329;;;;:::o;5958:118::-;6045:24;6063:5;6045:24;:::i;:::-;6040:3;6033:37;5958:118;;:::o;6082:222::-;6175:4;6213:2;6202:9;6198:18;6190:26;;6226:71;6294:1;6283:9;6279:17;6270:6;6226:71;:::i;:::-;6082:222;;;;:::o;6310:118::-;6381:22;6397:5;6381:22;:::i;:::-;6374:5;6371:33;6361:61;;6418:1;6415;6408:12;6361:61;6310:118;:::o;6434:135::-;6478:5;6516:6;6503:20;6494:29;;6532:31;6557:5;6532:31;:::i;:::-;6434:135;;;;:::o;6575:122::-;6648:24;6666:5;6648:24;:::i;:::-;6641:5;6638:35;6628:63;;6687:1;6684;6677:12;6628:63;6575:122;:::o;6703:139::-;6749:5;6787:6;6774:20;6765:29;;6803:33;6830:5;6803:33;:::i;:::-;6703:139;;;;:::o;6848:1199::-;6959:6;6967;6975;6983;6991;6999;7007;7056:3;7044:9;7035:7;7031:23;7027:33;7024:120;;;7063:79;;:::i;:::-;7024:120;7183:1;7208:53;7253:7;7244:6;7233:9;7229:22;7208:53;:::i;:::-;7198:63;;7154:117;7310:2;7336:53;7381:7;7372:6;7361:9;7357:22;7336:53;:::i;:::-;7326:63;;7281:118;7438:2;7464:53;7509:7;7500:6;7489:9;7485:22;7464:53;:::i;:::-;7454:63;;7409:118;7566:2;7592:53;7637:7;7628:6;7617:9;7613:22;7592:53;:::i;:::-;7582:63;;7537:118;7694:3;7721:51;7764:7;7755:6;7744:9;7740:22;7721:51;:::i;:::-;7711:61;;7665:117;7821:3;7848:53;7893:7;7884:6;7873:9;7869:22;7848:53;:::i;:::-;7838:63;;7792:119;7950:3;7977:53;8022:7;8013:6;8002:9;7998:22;7977:53;:::i;:::-;7967:63;;7921:119;6848:1199;;;;;;;;;;:::o;8053:474::-;8121:6;8129;8178:2;8166:9;8157:7;8153:23;8149:32;8146:119;;;8184:79;;:::i;:::-;8146:119;8304:1;8329:53;8374:7;8365:6;8354:9;8350:22;8329:53;:::i;:::-;8319:63;;8275:117;8431:2;8457:53;8502:7;8493:6;8482:9;8478:22;8457:53;:::i;:::-;8447:63;;8402:118;8053:474;;;;;:::o;8533:180::-;8581:77;8578:1;8571:88;8678:4;8675:1;8668:15;8702:4;8699:1;8692:15;8719:320;8763:6;8800:1;8794:4;8790:12;8780:22;;8847:1;8841:4;8837:12;8868:18;8858:81;;8924:4;8916:6;8912:17;8902:27;;8858:81;8986:2;8978:6;8975:14;8955:18;8952:38;8949:84;;9005:18;;:::i;:::-;8949:84;8770:269;8719:320;;;:::o;9045:180::-;9093:77;9090:1;9083:88;9190:4;9187:1;9180:15;9214:4;9211:1;9204:15;9231:191;9271:3;9290:20;9308:1;9290:20;:::i;:::-;9285:25;;9324:20;9342:1;9324:20;:::i;:::-;9319:25;;9367:1;9364;9360:9;9353:16;;9388:3;9385:1;9382:10;9379:36;;;9395:18;;:::i;:::-;9379:36;9231:191;;;;:::o;9428:224::-;9568:34;9564:1;9556:6;9552:14;9545:58;9637:7;9632:2;9624:6;9620:15;9613:32;9428:224;:::o;9658:366::-;9800:3;9821:67;9885:2;9880:3;9821:67;:::i;:::-;9814:74;;9897:93;9986:3;9897:93;:::i;:::-;10015:2;10010:3;10006:12;9999:19;;9658:366;;;:::o;10030:419::-;10196:4;10234:2;10223:9;10219:18;10211:26;;10283:9;10277:4;10273:20;10269:1;10258:9;10254:17;10247:47;10311:131;10437:4;10311:131;:::i;:::-;10303:139;;10030:419;;;:::o;10455:179::-;10595:31;10591:1;10583:6;10579:14;10572:55;10455:179;:::o;10640:366::-;10782:3;10803:67;10867:2;10862:3;10803:67;:::i;:::-;10796:74;;10879:93;10968:3;10879:93;:::i;:::-;10997:2;10992:3;10988:12;10981:19;;10640:366;;;:::o;11012:419::-;11178:4;11216:2;11205:9;11201:18;11193:26;;11265:9;11259:4;11255:20;11251:1;11240:9;11236:17;11229:47;11293:131;11419:4;11293:131;:::i;:::-;11285:139;;11012:419;;;:::o;11437:775::-;11670:4;11708:3;11697:9;11693:19;11685:27;;11722:71;11790:1;11779:9;11775:17;11766:6;11722:71;:::i;:::-;11803:72;11871:2;11860:9;11856:18;11847:6;11803:72;:::i;:::-;11885;11953:2;11942:9;11938:18;11929:6;11885:72;:::i;:::-;11967;12035:2;12024:9;12020:18;12011:6;11967:72;:::i;:::-;12049:73;12117:3;12106:9;12102:19;12093:6;12049:73;:::i;:::-;12132;12200:3;12189:9;12185:19;12176:6;12132:73;:::i;:::-;11437:775;;;;;;;;;:::o;12218:180::-;12358:32;12354:1;12346:6;12342:14;12335:56;12218:180;:::o;12404:366::-;12546:3;12567:67;12631:2;12626:3;12567:67;:::i;:::-;12560:74;;12643:93;12732:3;12643:93;:::i;:::-;12761:2;12756:3;12752:12;12745:19;;12404:366;;;:::o;12776:419::-;12942:4;12980:2;12969:9;12965:18;12957:26;;13029:9;13023:4;13019:20;13015:1;13004:9;13000:17;12993:47;13057:131;13183:4;13057:131;:::i;:::-;13049:139;;12776:419;;;:::o;13201:225::-;13341:34;13337:1;13329:6;13325:14;13318:58;13410:8;13405:2;13397:6;13393:15;13386:33;13201:225;:::o;13432:366::-;13574:3;13595:67;13659:2;13654:3;13595:67;:::i;:::-;13588:74;;13671:93;13760:3;13671:93;:::i;:::-;13789:2;13784:3;13780:12;13773:19;;13432:366;;;:::o;13804:419::-;13970:4;14008:2;13997:9;13993:18;13985:26;;14057:9;14051:4;14047:20;14043:1;14032:9;14028:17;14021:47;14085:131;14211:4;14085:131;:::i;:::-;14077:139;;13804:419;;;:::o;14229:223::-;14369:34;14365:1;14357:6;14353:14;14346:58;14438:6;14433:2;14425:6;14421:15;14414:31;14229:223;:::o;14458:366::-;14600:3;14621:67;14685:2;14680:3;14621:67;:::i;:::-;14614:74;;14697:93;14786:3;14697:93;:::i;:::-;14815:2;14810:3;14806:12;14799:19;;14458:366;;;:::o;14830:419::-;14996:4;15034:2;15023:9;15019:18;15011:26;;15083:9;15077:4;15073:20;15069:1;15058:9;15054:17;15047:47;15111:131;15237:4;15111:131;:::i;:::-;15103:139;;14830:419;;;:::o;15255:221::-;15395:34;15391:1;15383:6;15379:14;15372:58;15464:4;15459:2;15451:6;15447:15;15440:29;15255:221;:::o;15482:366::-;15624:3;15645:67;15709:2;15704:3;15645:67;:::i;:::-;15638:74;;15721:93;15810:3;15721:93;:::i;:::-;15839:2;15834:3;15830:12;15823:19;;15482:366;;;:::o;15854:419::-;16020:4;16058:2;16047:9;16043:18;16035:26;;16107:9;16101:4;16097:20;16093:1;16082:9;16078:17;16071:47;16135:131;16261:4;16135:131;:::i;:::-;16127:139;;15854:419;;;:::o;16279:179::-;16419:31;16415:1;16407:6;16403:14;16396:55;16279:179;:::o;16464:366::-;16606:3;16627:67;16691:2;16686:3;16627:67;:::i;:::-;16620:74;;16703:93;16792:3;16703:93;:::i;:::-;16821:2;16816:3;16812:12;16805:19;;16464:366;;;:::o;16836:419::-;17002:4;17040:2;17029:9;17025:18;17017:26;;17089:9;17083:4;17079:20;17075:1;17064:9;17060:17;17053:47;17117:131;17243:4;17117:131;:::i;:::-;17109:139;;16836:419;;;:::o;17261:224::-;17401:34;17397:1;17389:6;17385:14;17378:58;17470:7;17465:2;17457:6;17453:15;17446:32;17261:224;:::o;17491:366::-;17633:3;17654:67;17718:2;17713:3;17654:67;:::i;:::-;17647:74;;17730:93;17819:3;17730:93;:::i;:::-;17848:2;17843:3;17839:12;17832:19;;17491:366;;;:::o;17863:419::-;18029:4;18067:2;18056:9;18052:18;18044:26;;18116:9;18110:4;18106:20;18102:1;18091:9;18087:17;18080:47;18144:131;18270:4;18144:131;:::i;:::-;18136:139;;17863:419;;;:::o;18288:222::-;18428:34;18424:1;18416:6;18412:14;18405:58;18497:5;18492:2;18484:6;18480:15;18473:30;18288:222;:::o;18516:366::-;18658:3;18679:67;18743:2;18738:3;18679:67;:::i;:::-;18672:74;;18755:93;18844:3;18755:93;:::i;:::-;18873:2;18868:3;18864:12;18857:19;;18516:366;;;:::o;18888:419::-;19054:4;19092:2;19081:9;19077:18;19069:26;;19141:9;19135:4;19131:20;19127:1;19116:9;19112:17;19105:47;19169:131;19295:4;19169:131;:::i;:::-;19161:139;;18888:419;;;:::o;19313:225::-;19453:34;19449:1;19441:6;19437:14;19430:58;19522:8;19517:2;19509:6;19505:15;19498:33;19313:225;:::o;19544:366::-;19686:3;19707:67;19771:2;19766:3;19707:67;:::i;:::-;19700:74;;19783:93;19872:3;19783:93;:::i;:::-;19901:2;19896:3;19892:12;19885:19;;19544:366;;;:::o;19916:419::-;20082:4;20120:2;20109:9;20105:18;20097:26;;20169:9;20163:4;20159:20;20155:1;20144:9;20140:17;20133:47;20197:131;20323:4;20197:131;:::i;:::-;20189:139;;19916:419;;;:::o;20341:182::-;20481:34;20477:1;20469:6;20465:14;20458:58;20341:182;:::o;20529:366::-;20671:3;20692:67;20756:2;20751:3;20692:67;:::i;:::-;20685:74;;20768:93;20857:3;20768:93;:::i;:::-;20886:2;20881:3;20877:12;20870:19;;20529:366;;;:::o;20901:419::-;21067:4;21105:2;21094:9;21090:18;21082:26;;21154:9;21148:4;21144:20;21140:1;21129:9;21125:17;21118:47;21182:131;21308:4;21182:131;:::i;:::-;21174:139;;20901:419;;;:::o;21326:181::-;21466:33;21462:1;21454:6;21450:14;21443:57;21326:181;:::o;21513:366::-;21655:3;21676:67;21740:2;21735:3;21676:67;:::i;:::-;21669:74;;21752:93;21841:3;21752:93;:::i;:::-;21870:2;21865:3;21861:12;21854:19;;21513:366;;;:::o;21885:419::-;22051:4;22089:2;22078:9;22074:18;22066:26;;22138:9;22132:4;22128:20;22124:1;22113:9;22109:17;22102:47;22166:131;22292:4;22166:131;:::i;:::-;22158:139;;21885:419;;;:::o;22310:220::-;22450:34;22446:1;22438:6;22434:14;22427:58;22519:3;22514:2;22506:6;22502:15;22495:28;22310:220;:::o;22536:366::-;22678:3;22699:67;22763:2;22758:3;22699:67;:::i;:::-;22692:74;;22775:93;22864:3;22775:93;:::i;:::-;22893:2;22888:3;22884:12;22877:19;;22536:366;;;:::o;22908:419::-;23074:4;23112:2;23101:9;23097:18;23089:26;;23161:9;23155:4;23151:20;23147:1;23136:9;23132:17;23125:47;23189:131;23315:4;23189:131;:::i;:::-;23181:139;;22908:419;;;:::o;23333:221::-;23473:34;23469:1;23461:6;23457:14;23450:58;23542:4;23537:2;23529:6;23525:15;23518:29;23333:221;:::o;23560:366::-;23702:3;23723:67;23787:2;23782:3;23723:67;:::i;:::-;23716:74;;23799:93;23888:3;23799:93;:::i;:::-;23917:2;23912:3;23908:12;23901:19;;23560:366;;;:::o;23932:419::-;24098:4;24136:2;24125:9;24121:18;24113:26;;24185:9;24179:4;24175:20;24171:1;24160:9;24156:17;24149:47;24213:131;24339:4;24213:131;:::i;:::-;24205:139;;23932:419;;;:::o;24357:664::-;24562:4;24600:3;24589:9;24585:19;24577:27;;24614:71;24682:1;24671:9;24667:17;24658:6;24614:71;:::i;:::-;24695:72;24763:2;24752:9;24748:18;24739:6;24695:72;:::i;:::-;24777;24845:2;24834:9;24830:18;24821:6;24777:72;:::i;:::-;24859;24927:2;24916:9;24912:18;24903:6;24859:72;:::i;:::-;24941:73;25009:3;24998:9;24994:19;24985:6;24941:73;:::i;:::-;24357:664;;;;;;;;:::o;25027:170::-;25167:22;25163:1;25155:6;25151:14;25144:46;25027:170;:::o;25203:366::-;25345:3;25366:67;25430:2;25425:3;25366:67;:::i;:::-;25359:74;;25442:93;25531:3;25442:93;:::i;:::-;25560:2;25555:3;25551:12;25544:19;;25203:366;;;:::o;25575:419::-;25741:4;25779:2;25768:9;25764:18;25756:26;;25828:9;25822:4;25818:20;25814:1;25803:9;25799:17;25792:47;25856:131;25982:4;25856:131;:::i;:::-;25848:139;;25575:419;;;:::o;26000:166::-;26140:18;26136:1;26128:6;26124:14;26117:42;26000:166;:::o;26172:366::-;26314:3;26335:67;26399:2;26394:3;26335:67;:::i;:::-;26328:74;;26411:93;26500:3;26411:93;:::i;:::-;26529:2;26524:3;26520:12;26513:19;;26172:366;;;:::o;26544:419::-;26710:4;26748:2;26737:9;26733:18;26725:26;;26797:9;26791:4;26787:20;26783:1;26772:9;26768:17;26761:47;26825:131;26951:4;26825:131;:::i;:::-;26817:139;;26544:419;;;:::o;26969:148::-;27071:11;27108:3;27093:18;;26969:148;;;;:::o;27123:214::-;27263:66;27259:1;27251:6;27247:14;27240:90;27123:214;:::o;27343:400::-;27503:3;27524:84;27606:1;27601:3;27524:84;:::i;:::-;27517:91;;27617:93;27706:3;27617:93;:::i;:::-;27735:1;27730:3;27726:11;27719:18;;27343:400;;;:::o;27749:79::-;27788:7;27817:5;27806:16;;27749:79;;;:::o;27834:157::-;27939:45;27959:24;27977:5;27959:24;:::i;:::-;27939:45;:::i;:::-;27934:3;27927:58;27834:157;;:::o;27997:663::-;28238:3;28260:148;28404:3;28260:148;:::i;:::-;28253:155;;28418:75;28489:3;28480:6;28418:75;:::i;:::-;28518:2;28513:3;28509:12;28502:19;;28531:75;28602:3;28593:6;28531:75;:::i;:::-;28631:2;28626:3;28622:12;28615:19;;28651:3;28644:10;;27997:663;;;;;:::o;28666:545::-;28839:4;28877:3;28866:9;28862:19;28854:27;;28891:71;28959:1;28948:9;28944:17;28935:6;28891:71;:::i;:::-;28972:68;29036:2;29025:9;29021:18;29012:6;28972:68;:::i;:::-;29050:72;29118:2;29107:9;29103:18;29094:6;29050:72;:::i;:::-;29132;29200:2;29189:9;29185:18;29176:6;29132:72;:::i;:::-;28666:545;;;;;;;:::o;29217:180::-;29265:77;29262:1;29255:88;29362:4;29359:1;29352:15;29386:4;29383:1;29376:15;29403:174;29543:26;29539:1;29531:6;29527:14;29520:50;29403:174;:::o;29583:366::-;29725:3;29746:67;29810:2;29805:3;29746:67;:::i;:::-;29739:74;;29822:93;29911:3;29822:93;:::i;:::-;29940:2;29935:3;29931:12;29924:19;;29583:366;;;:::o;29955:419::-;30121:4;30159:2;30148:9;30144:18;30136:26;;30208:9;30202:4;30198:20;30194:1;30183:9;30179:17;30172:47;30236:131;30362:4;30236:131;:::i;:::-;30228:139;;29955:419;;;:::o;30380:181::-;30520:33;30516:1;30508:6;30504:14;30497:57;30380:181;:::o;30567:366::-;30709:3;30730:67;30794:2;30789:3;30730:67;:::i;:::-;30723:74;;30806:93;30895:3;30806:93;:::i;:::-;30924:2;30919:3;30915:12;30908:19;;30567:366;;;:::o;30939:419::-;31105:4;31143:2;31132:9;31128:18;31120:26;;31192:9;31186:4;31182:20;31178:1;31167:9;31163:17;31156:47;31220:131;31346:4;31220:131;:::i;:::-;31212:139;;30939:419;;;:::o;31364:221::-;31504:34;31500:1;31492:6;31488:14;31481:58;31573:4;31568:2;31560:6;31556:15;31549:29;31364:221;:::o;31591:366::-;31733:3;31754:67;31818:2;31813:3;31754:67;:::i;:::-;31747:74;;31830:93;31919:3;31830:93;:::i;:::-;31948:2;31943:3;31939:12;31932:19;;31591:366;;;:::o;31963:419::-;32129:4;32167:2;32156:9;32152:18;32144:26;;32216:9;32210:4;32206:20;32202:1;32191:9;32187:17;32180:47;32244:131;32370:4;32244:131;:::i;:::-;32236:139;;31963:419;;;:::o
Swarm Source
ipfs://152604b241789a1e52f4111a6b8546d130574bb3466b557fd2ea55f1c69739bc
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.