Overview
MOVR Balance
MOVR Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 2279115 | 1000 days ago | IN | 0 MOVR | 0.00011653 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Futuregoldcoin
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at moonriver.moonscan.io on 2022-04-29 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/[email protected]/interfaces/IERC3156FlashBorrower.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156FlashBorrower.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC3156 FlashBorrower, as defined in * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. * * _Available since v4.1._ */ interface IERC3156FlashBorrower { /** * @dev Receive a flash loan. * @param initiator The initiator of the loan. * @param token The loan currency. * @param amount The amount of tokens lent. * @param fee The additional amount of tokens to repay. * @param data Arbitrary data structure, intended to contain user-defined parameters. * @return The keccak256 hash of "ERC3156FlashBorrower.onFlashLoan" */ function onFlashLoan( address initiator, address token, uint256 amount, uint256 fee, bytes calldata data ) external returns (bytes32); } // File: @openzeppelin/[email protected]/interfaces/IERC3156FlashLender.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156FlashLender.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC3156 FlashLender, as defined in * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. * * _Available since v4.1._ */ interface IERC3156FlashLender { /** * @dev The amount of currency available to be lended. * @param token The loan currency. * @return The amount of `token` that can be borrowed. */ function maxFlashLoan(address token) external view returns (uint256); /** * @dev The fee to be charged for a given loan. * @param token The loan currency. * @param amount The amount of tokens lent. * @return The amount of `token` to be charged for the loan, on top of the returned principal. */ function flashFee(address token, uint256 amount) external view returns (uint256); /** * @dev Initiate a flash loan. * @param receiver The receiver of the tokens in the loan, and the receiver of the callback. * @param token The loan currency. * @param amount The amount of tokens lent. * @param data Arbitrary data structure, intended to contain user-defined parameters. */ function flashLoan( IERC3156FlashBorrower receiver, address token, uint256 amount, bytes calldata data ) external returns (bool); } // File: @openzeppelin/[email protected]/interfaces/IERC3156.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156.sol) pragma solidity ^0.8.0; // File: @openzeppelin/[email protected]/utils/math/SafeCast.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol) pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits"); return uint224(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits"); return uint96(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits. */ function toUint8(uint256 value) internal pure returns (uint8) { require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128) { require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits"); return int128(value); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64) { require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits"); return int64(value); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32) { require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits"); return int32(value); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16) { require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits"); return int16(value); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits. * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8) { require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits"); return int8(value); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } } // File: @openzeppelin/[email protected]/governance/utils/IVotes.sol // OpenZeppelin Contracts (last updated v4.5.0) (governance/utils/IVotes.sol) pragma solidity ^0.8.0; /** * @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts. * * _Available since v4.5._ */ interface IVotes { /** * @dev Emitted when an account changes their delegate. */ event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /** * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes. */ event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance); /** * @dev Returns the current amount of votes that `account` has. */ function getVotes(address account) external view returns (uint256); /** * @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`). */ function getPastVotes(address account, uint256 blockNumber) external view returns (uint256); /** * @dev Returns the total supply of votes available at the end of a past block (`blockNumber`). * * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. * Votes that have not been delegated are still part of total supply, even though they would not participate in a * vote. */ function getPastTotalSupply(uint256 blockNumber) external view returns (uint256); /** * @dev Returns the delegate that `account` has chosen. */ function delegates(address account) external view returns (address); /** * @dev Delegates votes from the sender to `delegatee`. */ function delegate(address delegatee) external; /** * @dev Delegates votes from signer to `delegatee`. */ function delegateBySig( address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) external; } // File: @openzeppelin/[email protected]/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/[email protected]/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.5.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 } 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"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' 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) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ 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. 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 if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } 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 (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: @openzeppelin/[email protected]/utils/cryptography/draft-EIP712.sol // OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/draft-IERC20Permit.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/[email protected]/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/[email protected]/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @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 / b + (a % b == 0 ? 0 : 1); } } // File: @openzeppelin/[email protected]/utils/Arrays.sol // OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to array types. */ library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } } // File: @openzeppelin/[email protected]/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/[email protected]/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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/[email protected]/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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); } // File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.5.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.zeppelin.solutions/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, _allowances[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 = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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; } _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; _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; } _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 Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20FlashMint.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20FlashMint.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the ERC3156 Flash loans extension, as defined in * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. * * Adds the {flashLoan} method, which provides flash loan support at the token * level. By default there is no fee, but this can be changed by overriding {flashFee}. * * _Available since v4.1._ */ abstract contract ERC20FlashMint is ERC20, IERC3156FlashLender { bytes32 private constant _RETURN_VALUE = keccak256("ERC3156FlashBorrower.onFlashLoan"); /** * @dev Returns the maximum amount of tokens available for loan. * @param token The address of the token that is requested. * @return The amont of token that can be loaned. */ function maxFlashLoan(address token) public view virtual override returns (uint256) { return token == address(this) ? type(uint256).max - ERC20.totalSupply() : 0; } /** * @dev Returns the fee applied when doing flash loans. By default this * implementation has 0 fees. This function can be overloaded to make * the flash loan mechanism deflationary. * @param token The token to be flash loaned. * @param amount The amount of tokens to be loaned. * @return The fees applied to the corresponding flash loan. */ function flashFee(address token, uint256 amount) public view virtual override returns (uint256) { require(token == address(this), "ERC20FlashMint: wrong token"); // silence warning about unused variable without the addition of bytecode. amount; return 0; } /** * @dev Performs a flash loan. New tokens are minted and sent to the * `receiver`, who is required to implement the {IERC3156FlashBorrower} * interface. By the end of the flash loan, the receiver is expected to own * amount + fee tokens and have them approved back to the token contract itself so * they can be burned. * @param receiver The receiver of the flash loan. Should implement the * {IERC3156FlashBorrower.onFlashLoan} interface. * @param token The token to be flash loaned. Only `address(this)` is * supported. * @param amount The amount of tokens to be loaned. * @param data An arbitrary datafield that is passed to the receiver. * @return `true` is the flash loan was successful. */ function flashLoan( IERC3156FlashBorrower receiver, address token, uint256 amount, bytes calldata data ) public virtual override returns (bool) { require(amount <= maxFlashLoan(token), "ERC20FlashMint: amount exceeds maxFlashLoan"); uint256 fee = flashFee(token, amount); _mint(address(receiver), amount); require( receiver.onFlashLoan(msg.sender, token, amount, fee, data) == _RETURN_VALUE, "ERC20FlashMint: invalid return value" ); uint256 currentAllowance = allowance(address(receiver), address(this)); require(currentAllowance >= amount + fee, "ERC20FlashMint: allowance does not allow refund"); _approve(address(receiver), address(this), currentAllowance - amount - fee); _burn(address(receiver), amount + fee); return true; } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/draft-ERC20Permit.sol // OpenZeppelin Contracts v4.4.1 (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 immutable _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ constructor(string memory name) EIP712(name, "1") {} /** * @dev See {IERC20Permit-permit}. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= deadline, "ERC20Permit: expired deadline"); bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } /** * @dev See {IERC20Permit-nonces}. */ function nonces(address owner) public view virtual override returns (uint256) { return _nonces[owner].current(); } /** * @dev See {IERC20Permit-DOMAIN_SEPARATOR}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } /** * @dev "Consume a nonce": return the current value and increment. * * _Available since v4.1._ */ function _useNonce(address owner) internal virtual returns (uint256 current) { Counters.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Votes.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Votes.sol) pragma solidity ^0.8.0; /** * @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's, * and supports token supply up to 2^224^ - 1, while COMP is limited to 2^96^ - 1. * * NOTE: If exact COMP compatibility is required, use the {ERC20VotesComp} variant of this module. * * This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either * by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting * power can be queried through the public accessors {getVotes} and {getPastVotes}. * * By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it * requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked. * * _Available since v4.2._ */ abstract contract ERC20Votes is IVotes, ERC20Permit { struct Checkpoint { uint32 fromBlock; uint224 votes; } bytes32 private constant _DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); mapping(address => address) private _delegates; mapping(address => Checkpoint[]) private _checkpoints; Checkpoint[] private _totalSupplyCheckpoints; /** * @dev Get the `pos`-th checkpoint for `account`. */ function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoint memory) { return _checkpoints[account][pos]; } /** * @dev Get number of checkpoints for `account`. */ function numCheckpoints(address account) public view virtual returns (uint32) { return SafeCast.toUint32(_checkpoints[account].length); } /** * @dev Get the address `account` is currently delegating to. */ function delegates(address account) public view virtual override returns (address) { return _delegates[account]; } /** * @dev Gets the current votes balance for `account` */ function getVotes(address account) public view virtual override returns (uint256) { uint256 pos = _checkpoints[account].length; return pos == 0 ? 0 : _checkpoints[account][pos - 1].votes; } /** * @dev Retrieve the number of votes for `account` at the end of `blockNumber`. * * Requirements: * * - `blockNumber` must have been already mined */ function getPastVotes(address account, uint256 blockNumber) public view virtual override returns (uint256) { require(blockNumber < block.number, "ERC20Votes: block not yet mined"); return _checkpointsLookup(_checkpoints[account], blockNumber); } /** * @dev Retrieve the `totalSupply` at the end of `blockNumber`. Note, this value is the sum of all balances. * It is but NOT the sum of all the delegated votes! * * Requirements: * * - `blockNumber` must have been already mined */ function getPastTotalSupply(uint256 blockNumber) public view virtual override returns (uint256) { require(blockNumber < block.number, "ERC20Votes: block not yet mined"); return _checkpointsLookup(_totalSupplyCheckpoints, blockNumber); } /** * @dev Lookup a value in a list of (sorted) checkpoints. */ function _checkpointsLookup(Checkpoint[] storage ckpts, uint256 blockNumber) private view returns (uint256) { // We run a binary search to look for the earliest checkpoint taken after `blockNumber`. // // During the loop, the index of the wanted checkpoint remains in the range [low-1, high). // With each iteration, either `low` or `high` is moved towards the middle of the range to maintain the invariant. // - If the middle checkpoint is after `blockNumber`, we look in [low, mid) // - If the middle checkpoint is before or equal to `blockNumber`, we look in [mid+1, high) // Once we reach a single value (when low == high), we've found the right checkpoint at the index high-1, if not // out of bounds (in which case we're looking too far in the past and the result is 0). // Note that if the latest checkpoint available is exactly for `blockNumber`, we end up with an index that is // past the end of the array, so we technically don't find a checkpoint after `blockNumber`, but it works out // the same. uint256 high = ckpts.length; uint256 low = 0; while (low < high) { uint256 mid = Math.average(low, high); if (ckpts[mid].fromBlock > blockNumber) { high = mid; } else { low = mid + 1; } } return high == 0 ? 0 : ckpts[high - 1].votes; } /** * @dev Delegate votes from the sender to `delegatee`. */ function delegate(address delegatee) public virtual override { _delegate(_msgSender(), delegatee); } /** * @dev Delegates votes from signer to `delegatee` */ function delegateBySig( address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= expiry, "ERC20Votes: signature expired"); address signer = ECDSA.recover( _hashTypedDataV4(keccak256(abi.encode(_DELEGATION_TYPEHASH, delegatee, nonce, expiry))), v, r, s ); require(nonce == _useNonce(signer), "ERC20Votes: invalid nonce"); _delegate(signer, delegatee); } /** * @dev Maximum token supply. Defaults to `type(uint224).max` (2^224^ - 1). */ function _maxSupply() internal view virtual returns (uint224) { return type(uint224).max; } /** * @dev Snapshots the totalSupply after it has been increased. */ function _mint(address account, uint256 amount) internal virtual override { super._mint(account, amount); require(totalSupply() <= _maxSupply(), "ERC20Votes: total supply risks overflowing votes"); _writeCheckpoint(_totalSupplyCheckpoints, _add, amount); } /** * @dev Snapshots the totalSupply after it has been decreased. */ function _burn(address account, uint256 amount) internal virtual override { super._burn(account, amount); _writeCheckpoint(_totalSupplyCheckpoints, _subtract, amount); } /** * @dev Move voting power when tokens are transferred. * * Emits a {DelegateVotesChanged} event. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._afterTokenTransfer(from, to, amount); _moveVotingPower(delegates(from), delegates(to), amount); } /** * @dev Change delegation for `delegator` to `delegatee`. * * Emits events {DelegateChanged} and {DelegateVotesChanged}. */ function _delegate(address delegator, address delegatee) internal virtual { address currentDelegate = delegates(delegator); uint256 delegatorBalance = balanceOf(delegator); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveVotingPower(currentDelegate, delegatee, delegatorBalance); } function _moveVotingPower( address src, address dst, uint256 amount ) private { if (src != dst && amount > 0) { if (src != address(0)) { (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[src], _subtract, amount); emit DelegateVotesChanged(src, oldWeight, newWeight); } if (dst != address(0)) { (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[dst], _add, amount); emit DelegateVotesChanged(dst, oldWeight, newWeight); } } } function _writeCheckpoint( Checkpoint[] storage ckpts, function(uint256, uint256) view returns (uint256) op, uint256 delta ) private returns (uint256 oldWeight, uint256 newWeight) { uint256 pos = ckpts.length; oldWeight = pos == 0 ? 0 : ckpts[pos - 1].votes; newWeight = op(oldWeight, delta); if (pos > 0 && ckpts[pos - 1].fromBlock == block.number) { ckpts[pos - 1].votes = SafeCast.toUint224(newWeight); } else { ckpts.push(Checkpoint({fromBlock: SafeCast.toUint32(block.number), votes: SafeCast.toUint224(newWeight)})); } } function _add(uint256 a, uint256 b) private pure returns (uint256) { return a + b; } function _subtract(uint256 a, uint256 b) private pure returns (uint256) { return a - b; } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Snapshot.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Snapshot.sol) pragma solidity ^0.8.0; /** * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and * total supply at the time are recorded for later access. * * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting. * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be * used to create an efficient ERC20 forking mechanism. * * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id * and the account address. * * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it * return `block.number` will trigger the creation of snapshot at the begining of each new block. When overridding this * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract. * * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient * alternative consider {ERC20Votes}. * * ==== Gas Costs * * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much * smaller since identical balances in subsequent snapshots are stored as a single entry. * * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent * transfers will have normal cost until the next snapshot, and so on. */ abstract contract ERC20Snapshot is ERC20 { // Inspired by Jordi Baylina's MiniMeToken to record historical balances: // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol using Arrays for uint256[]; using Counters for Counters.Counter; // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a // Snapshot struct, but that would impede usage of functions that work on an array. struct Snapshots { uint256[] ids; uint256[] values; } mapping(address => Snapshots) private _accountBalanceSnapshots; Snapshots private _totalSupplySnapshots; // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid. Counters.Counter private _currentSnapshotId; /** * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created. */ event Snapshot(uint256 id); /** * @dev Creates a new snapshot and returns its snapshot id. * * Emits a {Snapshot} event that contains the same id. * * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a * set of accounts, for example using {AccessControl}, or it may be open to the public. * * [WARNING] * ==== * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking, * you must consider that it can potentially be used by attackers in two ways. * * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs * section above. * * We haven't measured the actual numbers; if this is something you're interested in please reach out to us. * ==== */ function _snapshot() internal virtual returns (uint256) { _currentSnapshotId.increment(); uint256 currentId = _getCurrentSnapshotId(); emit Snapshot(currentId); return currentId; } /** * @dev Get the current snapshotId */ function _getCurrentSnapshotId() internal view virtual returns (uint256) { return _currentSnapshotId.current(); } /** * @dev Retrieves the balance of `account` at the time `snapshotId` was created. */ function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]); return snapshotted ? value : balanceOf(account); } /** * @dev Retrieves the total supply at the time `snapshotId` was created. */ function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots); return snapshotted ? value : totalSupply(); } // Update balance and/or total supply snapshots before the values are modified. This is implemented // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations. function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (from == address(0)) { // mint _updateAccountSnapshot(to); _updateTotalSupplySnapshot(); } else if (to == address(0)) { // burn _updateAccountSnapshot(from); _updateTotalSupplySnapshot(); } else { // transfer _updateAccountSnapshot(from); _updateAccountSnapshot(to); } } function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) { require(snapshotId > 0, "ERC20Snapshot: id is 0"); require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id"); // When a valid snapshot is queried, there are three possibilities: // a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never // created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds // to this id is the current one. // b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the // requested id, and its value is the one to return. // c) More snapshots were created after the requested one, and the queried value was later modified. There will be // no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is // larger than the requested one. // // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does // exactly this. uint256 index = snapshots.ids.findUpperBound(snapshotId); if (index == snapshots.ids.length) { return (false, 0); } else { return (true, snapshots.values[index]); } } function _updateAccountSnapshot(address account) private { _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account)); } function _updateTotalSupplySnapshot() private { _updateSnapshot(_totalSupplySnapshots, totalSupply()); } function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private { uint256 currentId = _getCurrentSnapshotId(); if (_lastSnapshotId(snapshots.ids) < currentId) { snapshots.ids.push(currentId); snapshots.values.push(currentValue); } } function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) { if (ids.length == 0) { return 0; } else { return ids[ids.length - 1]; } } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: FutureGoldcoin.sol pragma solidity ^0.8.4; contract Futuregoldcoin is ERC20, ERC20Burnable, ERC20Snapshot, Ownable, ERC20Permit, ERC20Votes, ERC20FlashMint { constructor() ERC20("Futuregoldcoin ", "FCI") ERC20Permit("Futuregoldcoin ") { _mint(msg.sender, 1000000000000 * 10 ** decimals()); } function snapshot() public onlyOwner { _snapshot(); } function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } // The following functions are overrides required by Solidity. function _beforeTokenTransfer(address from, address to, uint256 amount) internal override(ERC20, ERC20Snapshot) { super._beforeTokenTransfer(from, to, amount); } function _afterTokenTransfer(address from, address to, uint256 amount) internal override(ERC20, ERC20Votes) { super._afterTokenTransfer(from, to, amount); } function _mint(address to, uint256 amount) internal override(ERC20, ERC20Votes) { super._mint(to, amount); } function _burn(address account, uint256 amount) internal override(ERC20, ERC20Votes) { super._burn(account, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","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":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","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"},{"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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint224","name":"votes","type":"uint224"}],"internalType":"struct ERC20Votes.Checkpoint","name":"","type":"tuple"}],"stateMutability":"view","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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"flashFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC3156FlashBorrower","name":"receiver","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashLoan","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"maxFlashLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"snapshot","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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","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"}]
Contract Creation Code
6101606040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610140523480156200003757600080fd5b506040518060400160405280600f81526020016e0233aba3ab932b3b7b63231b7b4b71608d1b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600f81526020016e0233aba3ab932b3b7b63231b7b4b71608d1b8152506040518060400160405280600381526020016246434960e81b8152508160039080519060200190620000d792919062000a0e565b508051620000ed90600490602084019062000a0e565b5050506200010a62000104620001da60201b60201c565b620001de565b815160208084019190912082518383012060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81880181905281830187905260608201869052608082019490945230818401528151808203909301835260c00190528051940193909320919290916080523060601b60c0526101205250620001d49350339250620001b0915050601290565b620001bd90600a62000b0e565b620001ce9064e8d4a5100062000bcd565b62000230565b62000c5c565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200024782826200024b60201b6200108b1760201c565b5050565b6200026282826200030260201b6200111b1760201c565b6001600160e01b0362000276620003ff8216565b1115620002e35760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b60648201526084015b60405180910390fd5b620002fc600d6200120e6200040560201b17836200041c565b50505050565b6001600160a01b0382166200035a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620002da565b6200036860008383620005f2565b80600260008282546200037c919062000aaa565b90915550506001600160a01b03821660009081526020819052604081208054839290620003ab90849062000aaa565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a362000247600083836200060f565b60025490565b600062000413828462000aaa565b90505b92915050565b8254600090819080156200047a57856200043860018362000bef565b815481106200045757634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b03166200047d565b60005b6001600160e01b031692506200049483858760201c565b9150600081118015620004e457504386620004b160018462000bef565b81548110620004d057634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff16145b15620005645762000500826200062760201b6200121a1760201c565b866200050e60018462000bef565b815481106200052d57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550620005e9565b85604051806040016040528062000586436200069660201b620012871760201c565b63ffffffff168152602001620005a7856200062760201b6200121a1760201c565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b6200060a838383620006fd60201b620012ec1760201c565b505050565b6200060a8383836200076960201b620013391760201c565b60006001600160e01b03821115620006925760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401620002da565b5090565b600063ffffffff821115620006925760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608401620002da565b620007158383836200060a60201b6200130b1760201c565b6001600160a01b03831662000739576200072f82620007b5565b6200060a620007ed565b6001600160a01b03821662000753576200072f83620007b5565b6200075e83620007b5565b6200060a82620007b5565b620007818383836200060a60201b6200130b1760201c565b6001600160a01b038381166000908152600b60205260408082205485841683529120546200060a92918216911683620007ff565b6001600160a01b03811660009081526005602090815260408083209183905290912054620007ea91906200093a565b6200093a565b50565b620007fd6006620007e460025490565b565b816001600160a01b0316836001600160a01b031614158015620008225750600081115b156200060a576001600160a01b03831615620008af576001600160a01b0383166000908152600c60209081526040822082916200086c919062000989901b6200136b17856200041c565b91509150846001600160a01b0316600080516020620036258339815191528383604051620008a4929190918252602082015260400190565b60405180910390a250505b6001600160a01b038216156200060a576001600160a01b0382166000908152600c6020908152604082208291620008f3919062000405901b6200120e17856200041c565b91509150836001600160a01b03166000805160206200362583398151915283836040516200092b929190918252602082015260400190565b60405180910390a25050505050565b60006200094662000997565b9050806200095484620009b5565b10156200060a578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b600062000413828462000bef565b6000620009b0600862000a0a60201b620013771760201c565b905090565b8054600090620009c757506000919050565b81548290620009d99060019062000bef565b81548110620009f857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b5490565b82805462000a1c9062000c09565b90600052602060002090601f01602090048101928262000a40576000855562000a8b565b82601f1062000a5b57805160ff191683800117855562000a8b565b8280016001018555821562000a8b579182015b8281111562000a8b57825182559160200191906001019062000a6e565b50620006929291505b8082111562000692576000815560010162000a94565b6000821982111562000ac05762000ac062000c46565b500190565b600181815b8085111562000b0657816000190482111562000aea5762000aea62000c46565b8085161562000af857918102915b93841c939080029062000aca565b509250929050565b60006200041360ff84168360008262000b2a5750600162000416565b8162000b395750600062000416565b816001811462000b52576002811462000b5d5762000b7d565b600191505062000416565b60ff84111562000b715762000b7162000c46565b50506001821b62000416565b5060208310610133831016604e8410600b841016171562000ba2575081810a62000416565b62000bae838362000ac5565b806000190482111562000bc55762000bc562000c46565b029392505050565b600081600019048311821515161562000bea5762000bea62000c46565b500290565b60008282101562000c045762000c0462000c46565b500390565b600181811c9082168062000c1e57607f821691505b6020821081141562000c4057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60805160a05160c05160601c60e05161010051610120516101405161296b62000cba6000396000610dc30152600061177c015260006117cb015260006117a6015260006116ff0152600061172901526000611753015261296b6000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a5780639ab24eb0116100ad578063d505accf1161007c578063d505accf14610478578063d9d98ce41461048b578063dd62ed3e1461049e578063f1127ed8146104b1578063f2fde38b146104ee57600080fd5b80639ab24eb01461042c578063a457c2d71461043f578063a9059cbb14610452578063c3cda5201461046557600080fd5b80638e539e8c116100e95780638e539e8c146103f657806395d89b41146104095780639711715a14610411578063981b24d01461041957600080fd5b8063715018a6146103b757806379cc6790146103bf5780637ecebe00146103d25780638da5cb5b146103e557600080fd5b806340c10f191161019d5780635c19a95c1161016c5780635c19a95c1461032d5780635cffe9de14610340578063613255ab146103535780636fcfff451461036657806370a082311461038e57600080fd5b806340c10f19146102ae57806342966c68146102c35780634ee2cd7e146102d6578063587cde1e146102e957600080fd5b8063313ce567116101d9578063313ce567146102715780633644e5151461028057806339509351146102885780633a46b1a81461029b57600080fd5b806306fdde031461020b578063095ea7b31461022957806318160ddd1461024c57806323b872dd1461025e575b600080fd5b610213610501565b60405161022091906127fe565b60405180910390f35b61023c610237366004612622565b610593565b6040519015158152602001610220565b6002545b604051908152602001610220565b61023c61026c366004612575565b6105ad565b60405160128152602001610220565b6102506105d1565b61023c610296366004612622565b6105e0565b6102506102a9366004612622565b61061f565b6102c16102bc366004612622565b61069e565b005b6102c16102d136600461278d565b6106d6565b6102506102e4366004612622565b6106e3565b6103156102f7366004612521565b6001600160a01b039081166000908152600b60205260409020541690565b6040516001600160a01b039091168152602001610220565b6102c161033b366004612521565b61073c565b61023c61034e3660046126f3565b610746565b610250610361366004612521565b610989565b610379610374366004612521565b6109b1565b60405163ffffffff9091168152602001610220565b61025061039c366004612521565b6001600160a01b031660009081526020819052604090205490565b6102c16109d3565b6102c16103cd366004612622565b610a09565b6102506103e0366004612521565b610a1e565b6009546001600160a01b0316610315565b61025061040436600461278d565b610a3c565b610213610a98565b6102c1610aa7565b61025061042736600461278d565b610ad9565b61025061043a366004612521565b610b04565b61023c61044d366004612622565b610b99565b61023c610460366004612622565b610c2b565b6102c161047336600461264d565b610c39565b6102c16104863660046125b5565b610d6f565b610250610499366004612622565b610ed3565b6102506104ac36600461253d565b610f36565b6104c46104bf3660046126a6565b610f61565b60408051825163ffffffff1681526020928301516001600160e01b03169281019290925201610220565b6102c16104fc366004612521565b610ff3565b606060038054610510906128d5565b80601f016020809104026020016040519081016040528092919081815260200182805461053c906128d5565b80156105895780601f1061055e57610100808354040283529160200191610589565b820191906000526020600020905b81548152906001019060200180831161056c57829003601f168201915b5050505050905090565b6000336105a181858561137b565b60019150505b92915050565b6000336105bb85828561149f565b6105c6858585611513565b506001949350505050565b60006105db6116f2565b905090565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906105a1908290869061061a908790612886565b61137b565b60004382106106755760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064015b60405180910390fd5b6001600160a01b0383166000908152600c602052604090206106979083611819565b9392505050565b6009546001600160a01b031633146106c85760405162461bcd60e51b815260040161066c90612851565b6106d282826118f2565b5050565b6106e033826118fc565b50565b6001600160a01b03821660009081526005602052604081208190819061070a908590611906565b9150915081610731576001600160a01b038516600090815260208190526040902054610733565b805b95945050505050565b6106e03382611a0b565b600061075185610989565b8411156107b45760405162461bcd60e51b815260206004820152602b60248201527f4552433230466c6173684d696e743a20616d6f756e742065786365656473206d60448201526a30bc233630b9b42637b0b760a91b606482015260840161066c565b60006107c08686610ed3565b90506107cc87866118f2565b6040516323e30c8b60e01b81527f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd9906001600160a01b038916906323e30c8b906108249033908b908b9088908c908c906004016127a5565b602060405180830381600087803b15801561083e57600080fd5b505af1158015610852573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061087691906126db565b146108cf5760405162461bcd60e51b8152602060048201526024808201527f4552433230466c6173684d696e743a20696e76616c69642072657475726e2076604482015263616c756560e01b606482015260840161066c565b60006108db8830610f36565b90506108e78287612886565b81101561094e5760405162461bcd60e51b815260206004820152602f60248201527f4552433230466c6173684d696e743a20616c6c6f77616e636520646f6573206e60448201526e1bdd08185b1b1bddc81c99599d5b99608a1b606482015260840161066c565b61096888308461095e8a866128be565b61061a91906128be565b61097b886109768489612886565b6118fc565b506001979650505050505050565b60006001600160a01b03821630146109a25760006105a7565b6002546105a7906000196128be565b6001600160a01b0381166000908152600c60205260408120546105a790611287565b6009546001600160a01b031633146109fd5760405162461bcd60e51b815260040161066c90612851565b610a076000611a84565b565b610a1482338361149f565b6106d282826118fc565b6001600160a01b0381166000908152600a60205260408120546105a7565b6000438210610a8d5760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400604482015260640161066c565b6105a7600d83611819565b606060048054610510906128d5565b6009546001600160a01b03163314610ad15760405162461bcd60e51b815260040161066c90612851565b6106e0611ad6565b6000806000610ae9846006611906565b9150915081610afa57600254610afc565b805b949350505050565b6001600160a01b0381166000908152600c60205260408120548015610b86576001600160a01b0383166000908152600c60205260409020610b466001836128be565b81548110610b6457634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316610b89565b60005b6001600160e01b03169392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c1e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161066c565b6105c6828686840361137b565b6000336105a1818585611513565b83421115610c895760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e61747572652065787069726564000000604482015260640161066c565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b038816918101919091526060810186905260808101859052600090610d0390610cfb9060a00160405160208183030381529060405280519060200120611b30565b858585611b7e565b9050610d0e81611ba6565b8614610d5c5760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000604482015260640161066c565b610d668188611a0b565b50505050505050565b83421115610dbf5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161066c565b60007f0000000000000000000000000000000000000000000000000000000000000000888888610dee8c611ba6565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610e4982611b30565b90506000610e5982878787611b7e565b9050896001600160a01b0316816001600160a01b031614610ebc5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161066c565b610ec78a8a8a61137b565b50505050505050505050565b60006001600160a01b0383163014610f2d5760405162461bcd60e51b815260206004820152601b60248201527f4552433230466c6173684d696e743a2077726f6e6720746f6b656e0000000000604482015260640161066c565b50600092915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60408051808201909152600080825260208201526001600160a01b0383166000908152600c60205260409020805463ffffffff8416908110610fb357634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b6009546001600160a01b0316331461101d5760405162461bcd60e51b815260040161066c90612851565b6001600160a01b0381166110825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066c565b6106e081611a84565b611095828261111b565b6002546001600160e01b0310156111075760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b606482015260840161066c565b611115600d61120e83611bce565b50505050565b6001600160a01b0382166111715760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161066c565b61117d60008383611d71565b806002600082825461118f9190612886565b90915550506001600160a01b038216600090815260208190526040812080548392906111bc908490612886565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36106d260008383611d7c565b60006106978284612886565b60006001600160e01b038211156112835760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b606482015260840161066c565b5090565b600063ffffffff8211156112835760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b606482015260840161066c565b6001600160a01b0383166113105761130382611d87565b61130b611db9565b505050565b6001600160a01b0382166113275761130383611d87565b61133083611d87565b61130b82611d87565b6001600160a01b038381166000908152600b602052604080822054858416835291205461130b92918216911683611dc7565b600061069782846128be565b5490565b6001600160a01b0383166113dd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161066c565b6001600160a01b03821661143e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161066c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006114ab8484610f36565b9050600019811461111557818110156115065760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161066c565b611115848484840361137b565b6001600160a01b0383166115775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161066c565b6001600160a01b0382166115d95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161066c565b6115e4838383611d71565b6001600160a01b0383166000908152602081905260409020548181101561165c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161066c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611693908490612886565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116df91815260200190565b60405180910390a3611115848484611d7c565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561174b57507f000000000000000000000000000000000000000000000000000000000000000046145b1561177557507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b8154600090815b8181101561188b5760006118348284611f04565b90508486828154811061185757634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff16111561187757809250611885565b611882816001612886565b91505b50611820565b81156118dd578461189d6001846128be565b815481106118bb57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b03166118e0565b60005b6001600160e01b031695945050505050565b6106d2828261108b565b6106d28282611f1f565b600080600084116119525760405162461bcd60e51b815260206004820152601660248201527504552433230536e617073686f743a20696420697320360541b604482015260640161066c565b61195a611f37565b8411156119a95760405162461bcd60e51b815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000604482015260640161066c565b60006119b58486611f42565b84549091508114156119ce576000809250925050611a04565b60018460010182815481106119f357634e487b7160e01b600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b6001600160a01b038281166000818152600b60208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611115828483611dc7565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611ae6600880546001019055565b6000611af0611f37565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611b2391815260200190565b60405180910390a1919050565b60006105a7611b3d6116f2565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611b8f87878787612021565b91509150611b9c8161210e565b5095945050505050565b6001600160a01b0381166000908152600a602052604090208054600181018255905b50919050565b825460009081908015611c275785611be76001836128be565b81548110611c0557634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316611c2a565b60005b6001600160e01b03169250611c4383858763ffffffff16565b9150600081118015611c8f57504386611c5d6001846128be565b81548110611c7b57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff16145b15611cfd57611c9d8261121a565b86611ca96001846128be565b81548110611cc757634e487b7160e01b600052603260045260246000fd5b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550611d68565b856040518060400160405280611d1243611287565b63ffffffff168152602001611d268561121a565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b61130b8383836112ec565b61130b838383611339565b6001600160a01b038116600090815260056020908152604080832091839052909120546106e0919061230f565b61230f565b610a076006611db460025490565b816001600160a01b0316836001600160a01b031614158015611de95750600081115b1561130b576001600160a01b03831615611e77576001600160a01b0383166000908152600c602052604081208190611e249061136b85611bce565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611e6c929190918252602082015260400190565b60405180910390a250505b6001600160a01b0382161561130b576001600160a01b0382166000908152600c602052604081208190611ead9061120e85611bce565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611ef5929190918252602082015260400190565b60405180910390a25050505050565b6000611f13600284841861289e565b61069790848416612886565b611f298282612359565b611115600d61136b83611bce565b60006105db60085490565b8154600090611f53575060006105a7565b82546000905b80821015611fbd576000611f6d8383611f04565b905084868281548110611f9057634e487b7160e01b600052603260045260246000fd5b90600052602060002001541115611fa957809150611fb7565b611fb4816001612886565b92505b50611f59565b60008211801561200057508385611fd56001856128be565b81548110611ff357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154145b15612019576120106001836128be565b925050506105a7565b5090506105a7565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156120585750600090506003612105565b8460ff16601b1415801561207057508460ff16601c14155b156120815750600090506004612105565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156120d5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166120fe57600060019250925050612105565b9150600090505b94509492505050565b600081600481111561213057634e487b7160e01b600052602160045260246000fd5b14156121395750565b600181600481111561215b57634e487b7160e01b600052602160045260246000fd5b14156121a95760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161066c565b60028160048111156121cb57634e487b7160e01b600052602160045260246000fd5b14156122195760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161066c565b600381600481111561223b57634e487b7160e01b600052602160045260246000fd5b14156122945760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161066c565b60048160048111156122b657634e487b7160e01b600052602160045260246000fd5b14156106e05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161066c565b6000612319611f37565b905080612325846124ba565b101561130b578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b6001600160a01b0382166123b95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161066c565b6123c582600083611d71565b6001600160a01b038216600090815260208190526040902054818110156124395760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161066c565b6001600160a01b03831660009081526020819052604081208383039055600280548492906124689084906128be565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361130b83600084611d7c565b80546000906124cb57506000919050565b815482906124db906001906128be565b815481106124f957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b919050565b803560ff8116811461250b57600080fd5b600060208284031215612532578081fd5b813561069781612920565b6000806040838503121561254f578081fd5b823561255a81612920565b9150602083013561256a81612920565b809150509250929050565b600080600060608486031215612589578081fd5b833561259481612920565b925060208401356125a481612920565b929592945050506040919091013590565b600080600080600080600060e0888a0312156125cf578283fd5b87356125da81612920565b965060208801356125ea81612920565b9550604088013594506060880135935061260660808901612510565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612634578182fd5b823561263f81612920565b946020939093013593505050565b60008060008060008060c08789031215612665578182fd5b863561267081612920565b9550602087013594506040870135935061268c60608801612510565b92506080870135915060a087013590509295509295509295565b600080604083850312156126b8578182fd5b82356126c381612920565b9150602083013563ffffffff8116811461256a578182fd5b6000602082840312156126ec578081fd5b5051919050565b60008060008060006080868803121561270a578081fd5b853561271581612920565b9450602086013561272581612920565b935060408601359250606086013567ffffffffffffffff80821115612748578283fd5b818801915088601f83011261275b578283fd5b813581811115612769578384fd5b89602082850101111561277a578384fd5b9699959850939650602001949392505050565b60006020828403121561279e578081fd5b5035919050565b6001600160a01b03878116825286166020820152604081018590526060810184905260a06080820181905281018290526000828460c084013781830160c090810191909152601f909201601f1916010195945050505050565b6000602080835283518082850152825b8181101561282a5785810183015185820160400152820161280e565b8181111561283b5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156128995761289961290a565b500190565b6000826128b957634e487b7160e01b81526012600452602481fd5b500490565b6000828210156128d0576128d061290a565b500390565b600181811c908216806128e957607f821691505b60208210811415611bc857634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146106e057600080fdfea2646970667358221220d67b92ebaeee215807e9b75e99030ec7dbc83588d029e8e2e8fcd22a9d83bac464736f6c63430008040033dec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a5780639ab24eb0116100ad578063d505accf1161007c578063d505accf14610478578063d9d98ce41461048b578063dd62ed3e1461049e578063f1127ed8146104b1578063f2fde38b146104ee57600080fd5b80639ab24eb01461042c578063a457c2d71461043f578063a9059cbb14610452578063c3cda5201461046557600080fd5b80638e539e8c116100e95780638e539e8c146103f657806395d89b41146104095780639711715a14610411578063981b24d01461041957600080fd5b8063715018a6146103b757806379cc6790146103bf5780637ecebe00146103d25780638da5cb5b146103e557600080fd5b806340c10f191161019d5780635c19a95c1161016c5780635c19a95c1461032d5780635cffe9de14610340578063613255ab146103535780636fcfff451461036657806370a082311461038e57600080fd5b806340c10f19146102ae57806342966c68146102c35780634ee2cd7e146102d6578063587cde1e146102e957600080fd5b8063313ce567116101d9578063313ce567146102715780633644e5151461028057806339509351146102885780633a46b1a81461029b57600080fd5b806306fdde031461020b578063095ea7b31461022957806318160ddd1461024c57806323b872dd1461025e575b600080fd5b610213610501565b60405161022091906127fe565b60405180910390f35b61023c610237366004612622565b610593565b6040519015158152602001610220565b6002545b604051908152602001610220565b61023c61026c366004612575565b6105ad565b60405160128152602001610220565b6102506105d1565b61023c610296366004612622565b6105e0565b6102506102a9366004612622565b61061f565b6102c16102bc366004612622565b61069e565b005b6102c16102d136600461278d565b6106d6565b6102506102e4366004612622565b6106e3565b6103156102f7366004612521565b6001600160a01b039081166000908152600b60205260409020541690565b6040516001600160a01b039091168152602001610220565b6102c161033b366004612521565b61073c565b61023c61034e3660046126f3565b610746565b610250610361366004612521565b610989565b610379610374366004612521565b6109b1565b60405163ffffffff9091168152602001610220565b61025061039c366004612521565b6001600160a01b031660009081526020819052604090205490565b6102c16109d3565b6102c16103cd366004612622565b610a09565b6102506103e0366004612521565b610a1e565b6009546001600160a01b0316610315565b61025061040436600461278d565b610a3c565b610213610a98565b6102c1610aa7565b61025061042736600461278d565b610ad9565b61025061043a366004612521565b610b04565b61023c61044d366004612622565b610b99565b61023c610460366004612622565b610c2b565b6102c161047336600461264d565b610c39565b6102c16104863660046125b5565b610d6f565b610250610499366004612622565b610ed3565b6102506104ac36600461253d565b610f36565b6104c46104bf3660046126a6565b610f61565b60408051825163ffffffff1681526020928301516001600160e01b03169281019290925201610220565b6102c16104fc366004612521565b610ff3565b606060038054610510906128d5565b80601f016020809104026020016040519081016040528092919081815260200182805461053c906128d5565b80156105895780601f1061055e57610100808354040283529160200191610589565b820191906000526020600020905b81548152906001019060200180831161056c57829003601f168201915b5050505050905090565b6000336105a181858561137b565b60019150505b92915050565b6000336105bb85828561149f565b6105c6858585611513565b506001949350505050565b60006105db6116f2565b905090565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906105a1908290869061061a908790612886565b61137b565b60004382106106755760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064015b60405180910390fd5b6001600160a01b0383166000908152600c602052604090206106979083611819565b9392505050565b6009546001600160a01b031633146106c85760405162461bcd60e51b815260040161066c90612851565b6106d282826118f2565b5050565b6106e033826118fc565b50565b6001600160a01b03821660009081526005602052604081208190819061070a908590611906565b9150915081610731576001600160a01b038516600090815260208190526040902054610733565b805b95945050505050565b6106e03382611a0b565b600061075185610989565b8411156107b45760405162461bcd60e51b815260206004820152602b60248201527f4552433230466c6173684d696e743a20616d6f756e742065786365656473206d60448201526a30bc233630b9b42637b0b760a91b606482015260840161066c565b60006107c08686610ed3565b90506107cc87866118f2565b6040516323e30c8b60e01b81527f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd9906001600160a01b038916906323e30c8b906108249033908b908b9088908c908c906004016127a5565b602060405180830381600087803b15801561083e57600080fd5b505af1158015610852573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061087691906126db565b146108cf5760405162461bcd60e51b8152602060048201526024808201527f4552433230466c6173684d696e743a20696e76616c69642072657475726e2076604482015263616c756560e01b606482015260840161066c565b60006108db8830610f36565b90506108e78287612886565b81101561094e5760405162461bcd60e51b815260206004820152602f60248201527f4552433230466c6173684d696e743a20616c6c6f77616e636520646f6573206e60448201526e1bdd08185b1b1bddc81c99599d5b99608a1b606482015260840161066c565b61096888308461095e8a866128be565b61061a91906128be565b61097b886109768489612886565b6118fc565b506001979650505050505050565b60006001600160a01b03821630146109a25760006105a7565b6002546105a7906000196128be565b6001600160a01b0381166000908152600c60205260408120546105a790611287565b6009546001600160a01b031633146109fd5760405162461bcd60e51b815260040161066c90612851565b610a076000611a84565b565b610a1482338361149f565b6106d282826118fc565b6001600160a01b0381166000908152600a60205260408120546105a7565b6000438210610a8d5760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400604482015260640161066c565b6105a7600d83611819565b606060048054610510906128d5565b6009546001600160a01b03163314610ad15760405162461bcd60e51b815260040161066c90612851565b6106e0611ad6565b6000806000610ae9846006611906565b9150915081610afa57600254610afc565b805b949350505050565b6001600160a01b0381166000908152600c60205260408120548015610b86576001600160a01b0383166000908152600c60205260409020610b466001836128be565b81548110610b6457634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316610b89565b60005b6001600160e01b03169392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c1e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161066c565b6105c6828686840361137b565b6000336105a1818585611513565b83421115610c895760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e61747572652065787069726564000000604482015260640161066c565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b038816918101919091526060810186905260808101859052600090610d0390610cfb9060a00160405160208183030381529060405280519060200120611b30565b858585611b7e565b9050610d0e81611ba6565b8614610d5c5760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000604482015260640161066c565b610d668188611a0b565b50505050505050565b83421115610dbf5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161066c565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610dee8c611ba6565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610e4982611b30565b90506000610e5982878787611b7e565b9050896001600160a01b0316816001600160a01b031614610ebc5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161066c565b610ec78a8a8a61137b565b50505050505050505050565b60006001600160a01b0383163014610f2d5760405162461bcd60e51b815260206004820152601b60248201527f4552433230466c6173684d696e743a2077726f6e6720746f6b656e0000000000604482015260640161066c565b50600092915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60408051808201909152600080825260208201526001600160a01b0383166000908152600c60205260409020805463ffffffff8416908110610fb357634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b6009546001600160a01b0316331461101d5760405162461bcd60e51b815260040161066c90612851565b6001600160a01b0381166110825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066c565b6106e081611a84565b611095828261111b565b6002546001600160e01b0310156111075760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b606482015260840161066c565b611115600d61120e83611bce565b50505050565b6001600160a01b0382166111715760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161066c565b61117d60008383611d71565b806002600082825461118f9190612886565b90915550506001600160a01b038216600090815260208190526040812080548392906111bc908490612886565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36106d260008383611d7c565b60006106978284612886565b60006001600160e01b038211156112835760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b606482015260840161066c565b5090565b600063ffffffff8211156112835760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b606482015260840161066c565b6001600160a01b0383166113105761130382611d87565b61130b611db9565b505050565b6001600160a01b0382166113275761130383611d87565b61133083611d87565b61130b82611d87565b6001600160a01b038381166000908152600b602052604080822054858416835291205461130b92918216911683611dc7565b600061069782846128be565b5490565b6001600160a01b0383166113dd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161066c565b6001600160a01b03821661143e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161066c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006114ab8484610f36565b9050600019811461111557818110156115065760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161066c565b611115848484840361137b565b6001600160a01b0383166115775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161066c565b6001600160a01b0382166115d95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161066c565b6115e4838383611d71565b6001600160a01b0383166000908152602081905260409020548181101561165c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161066c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611693908490612886565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116df91815260200190565b60405180910390a3611115848484611d7c565b6000306001600160a01b037f0000000000000000000000000d96a592b413bc2b5a553f87253ec7261ffacae31614801561174b57507f000000000000000000000000000000000000000000000000000000000000050546145b1561177557507f32b71e7f6c12003b28dc5ed2ca7f66292def1569fd09ed629d978948acbf04a990565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f99fbbf6555540f3bafdcd1257acd158f7c9c8f8b7404e5d5d6a3ca949aefb290828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b8154600090815b8181101561188b5760006118348284611f04565b90508486828154811061185757634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff16111561187757809250611885565b611882816001612886565b91505b50611820565b81156118dd578461189d6001846128be565b815481106118bb57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b03166118e0565b60005b6001600160e01b031695945050505050565b6106d2828261108b565b6106d28282611f1f565b600080600084116119525760405162461bcd60e51b815260206004820152601660248201527504552433230536e617073686f743a20696420697320360541b604482015260640161066c565b61195a611f37565b8411156119a95760405162461bcd60e51b815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000604482015260640161066c565b60006119b58486611f42565b84549091508114156119ce576000809250925050611a04565b60018460010182815481106119f357634e487b7160e01b600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b6001600160a01b038281166000818152600b60208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611115828483611dc7565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611ae6600880546001019055565b6000611af0611f37565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611b2391815260200190565b60405180910390a1919050565b60006105a7611b3d6116f2565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611b8f87878787612021565b91509150611b9c8161210e565b5095945050505050565b6001600160a01b0381166000908152600a602052604090208054600181018255905b50919050565b825460009081908015611c275785611be76001836128be565b81548110611c0557634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316611c2a565b60005b6001600160e01b03169250611c4383858763ffffffff16565b9150600081118015611c8f57504386611c5d6001846128be565b81548110611c7b57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff16145b15611cfd57611c9d8261121a565b86611ca96001846128be565b81548110611cc757634e487b7160e01b600052603260045260246000fd5b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550611d68565b856040518060400160405280611d1243611287565b63ffffffff168152602001611d268561121a565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b61130b8383836112ec565b61130b838383611339565b6001600160a01b038116600090815260056020908152604080832091839052909120546106e0919061230f565b61230f565b610a076006611db460025490565b816001600160a01b0316836001600160a01b031614158015611de95750600081115b1561130b576001600160a01b03831615611e77576001600160a01b0383166000908152600c602052604081208190611e249061136b85611bce565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611e6c929190918252602082015260400190565b60405180910390a250505b6001600160a01b0382161561130b576001600160a01b0382166000908152600c602052604081208190611ead9061120e85611bce565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611ef5929190918252602082015260400190565b60405180910390a25050505050565b6000611f13600284841861289e565b61069790848416612886565b611f298282612359565b611115600d61136b83611bce565b60006105db60085490565b8154600090611f53575060006105a7565b82546000905b80821015611fbd576000611f6d8383611f04565b905084868281548110611f9057634e487b7160e01b600052603260045260246000fd5b90600052602060002001541115611fa957809150611fb7565b611fb4816001612886565b92505b50611f59565b60008211801561200057508385611fd56001856128be565b81548110611ff357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154145b15612019576120106001836128be565b925050506105a7565b5090506105a7565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156120585750600090506003612105565b8460ff16601b1415801561207057508460ff16601c14155b156120815750600090506004612105565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156120d5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166120fe57600060019250925050612105565b9150600090505b94509492505050565b600081600481111561213057634e487b7160e01b600052602160045260246000fd5b14156121395750565b600181600481111561215b57634e487b7160e01b600052602160045260246000fd5b14156121a95760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161066c565b60028160048111156121cb57634e487b7160e01b600052602160045260246000fd5b14156122195760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161066c565b600381600481111561223b57634e487b7160e01b600052602160045260246000fd5b14156122945760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161066c565b60048160048111156122b657634e487b7160e01b600052602160045260246000fd5b14156106e05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161066c565b6000612319611f37565b905080612325846124ba565b101561130b578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b6001600160a01b0382166123b95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161066c565b6123c582600083611d71565b6001600160a01b038216600090815260208190526040902054818110156124395760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161066c565b6001600160a01b03831660009081526020819052604081208383039055600280548492906124689084906128be565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361130b83600084611d7c565b80546000906124cb57506000919050565b815482906124db906001906128be565b815481106124f957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b919050565b803560ff8116811461250b57600080fd5b600060208284031215612532578081fd5b813561069781612920565b6000806040838503121561254f578081fd5b823561255a81612920565b9150602083013561256a81612920565b809150509250929050565b600080600060608486031215612589578081fd5b833561259481612920565b925060208401356125a481612920565b929592945050506040919091013590565b600080600080600080600060e0888a0312156125cf578283fd5b87356125da81612920565b965060208801356125ea81612920565b9550604088013594506060880135935061260660808901612510565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612634578182fd5b823561263f81612920565b946020939093013593505050565b60008060008060008060c08789031215612665578182fd5b863561267081612920565b9550602087013594506040870135935061268c60608801612510565b92506080870135915060a087013590509295509295509295565b600080604083850312156126b8578182fd5b82356126c381612920565b9150602083013563ffffffff8116811461256a578182fd5b6000602082840312156126ec578081fd5b5051919050565b60008060008060006080868803121561270a578081fd5b853561271581612920565b9450602086013561272581612920565b935060408601359250606086013567ffffffffffffffff80821115612748578283fd5b818801915088601f83011261275b578283fd5b813581811115612769578384fd5b89602082850101111561277a578384fd5b9699959850939650602001949392505050565b60006020828403121561279e578081fd5b5035919050565b6001600160a01b03878116825286166020820152604081018590526060810184905260a06080820181905281018290526000828460c084013781830160c090810191909152601f909201601f1916010195945050505050565b6000602080835283518082850152825b8181101561282a5785810183015185820160400152820161280e565b8181111561283b5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156128995761289961290a565b500190565b6000826128b957634e487b7160e01b81526012600452602481fd5b500490565b6000828210156128d0576128d061290a565b500390565b600181811c908216806128e957607f821691505b60208210811415611bc857634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146106e057600080fdfea2646970667358221220d67b92ebaeee215807e9b75e99030ec7dbc83588d029e8e2e8fcd22a9d83bac464736f6c63430008040033
Deployed Bytecode Sourcemap
81926:1241:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45182:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47533:201;;;;;;:::i;:::-;;:::i;:::-;;;6366:14:1;;6359:22;6341:41;;6329:2;6314:18;47533:201:0;6296:92:1;46302:108:0;46390:12;;46302:108;;;6539:25:1;;;6527:2;6512:18;46302:108:0;6494:76:1;48314:295:0;;;;;;:::i;:::-;;:::i;46144:93::-;;;46227:2;21783:36:1;;21771:2;21756:18;46144:93:0;21738:87:1;61909:115:0;;;:::i;49018:240::-;;;;;;:::i;:::-;;:::i;65117:268::-;;;;;;:::i;:::-;;:::i;82276:95::-;;;;;;:::i;:::-;;:::i;:::-;;81271:91;;;;;;:::i;:::-;;:::i;76787:266::-;;;;;;:::i;:::-;;:::i;64491:128::-;;;;;;:::i;:::-;-1:-1:-1;;;;;64592:19:0;;;64565:7;64592:19;;;:10;:19;;;;;;;;64491:128;;;;-1:-1:-1;;;;;5415:32:1;;;5397:51;;5385:2;5370:18;64491:128:0;5352:102:1;67590:114:0;;;;;;:::i;:::-;;:::i;58571:893::-;;;;;;:::i;:::-;;:::i;56908:178::-;;;;;;:::i;:::-;;:::i;64247:151::-;;;;;;:::i;:::-;;:::i;:::-;;;21618:10:1;21606:23;;;21588:42;;21576:2;21561:18;64247:151:0;21543:93:1;46473:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;46574:18:0;46547:7;46574:18;;;;;;;;;;;;46473:127;38587:103;;;:::i;81681:164::-;;;;;;:::i;:::-;;:::i;61651:128::-;;;;;;:::i;:::-;;:::i;37936:87::-;38009:6;;-1:-1:-1;;;;;38009:6:0;37936:87;;65674:259;;;;;;:::i;:::-;;:::i;45401:104::-;;;:::i;82201:67::-;;;:::i;77157:234::-;;;;;;:::i;:::-;;:::i;64703:212::-;;;;;;:::i;:::-;;:::i;49761:438::-;;;;;;:::i;:::-;;:::i;46806:193::-;;;;;;:::i;:::-;;:::i;67786:591::-;;;;;;:::i;:::-;;:::i;60940:645::-;;;;;;:::i;:::-;;:::i;57485:297::-;;;;;;:::i;:::-;;:::i;47062:151::-;;;;;;:::i;:::-;;:::i;64017:150::-;;;;;;:::i;:::-;;:::i;:::-;;;;20882:13:1;;20897:10;20878:30;20860:49;;20969:4;20957:17;;;20951:24;-1:-1:-1;;;;;20947:50:1;20925:20;;;20918:80;;;;20833:18;64017:150:0;20815:189:1;38845:201:0;;;;;;:::i;:::-;;:::i;45182:100::-;45236:13;45269:5;45262:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45182:100;:::o;47533:201::-;47616:4;36734:10;47672:32;36734:10;47688:7;47697:6;47672:8;:32::i;:::-;47722:4;47715:11;;;47533:201;;;;;:::o;48314:295::-;48445:4;36734:10;48503:38;48519:4;36734:10;48534:6;48503:15;:38::i;:::-;48552:27;48562:4;48568:2;48572:6;48552:9;:27::i;:::-;-1:-1:-1;48597:4:0;;48314:295;-1:-1:-1;;;;48314:295:0:o;61909:115::-;61969:7;61996:20;:18;:20::i;:::-;61989:27;;61909:115;:::o;49018:240::-;36734:10;49106:4;49187:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;49187:27:0;;;;;;;;;;49106:4;;36734:10;49162:66;;36734:10;;49187:27;;:40;;49217:10;;49187:40;:::i;:::-;49162:8;:66::i;65117:268::-;65215:7;65257:12;65243:11;:26;65235:70;;;;-1:-1:-1;;;65235:70:0;;10415:2:1;65235:70:0;;;10397:21:1;10454:2;10434:18;;;10427:30;10493:33;10473:18;;;10466:61;10544:18;;65235:70:0;;;;;;;;;-1:-1:-1;;;;;65342:21:0;;;;;;:12;:21;;;;;65323:54;;65365:11;65323:18;:54::i;:::-;65316:61;65117:268;-1:-1:-1;;;65117:268:0:o;82276:95::-;38009:6;;-1:-1:-1;;;;;38009:6:0;36734:10;38156:23;38148:68;;;;-1:-1:-1;;;38148:68:0;;;;;;;:::i;:::-;82346:17:::1;82352:2;82356:6;82346:5;:17::i;:::-;82276:95:::0;;:::o;81271:91::-;81327:27;36734:10;81347:6;81327:5;:27::i;:::-;81271:91;:::o;76787:266::-;-1:-1:-1;;;;;76951:33:0;;76874:7;76951:33;;;:24;:33;;;;;76874:7;;;;76930:55;;76939:10;;76930:8;:55::i;:::-;76894:91;;;;77005:11;:40;;-1:-1:-1;;;;;46574:18:0;;46547:7;46574:18;;;;;;;;;;;77005:40;;;77019:5;77005:40;76998:47;76787:266;-1:-1:-1;;;;;76787:266:0:o;67590:114::-;67662:34;36734:10;67686:9;67662;:34::i;58571:893::-;58750:4;58785:19;58798:5;58785:12;:19::i;:::-;58775:6;:29;;58767:85;;;;-1:-1:-1;;;58767:85:0;;17295:2:1;58767:85:0;;;17277:21:1;17334:2;17314:18;;;17307:30;17373:34;17353:18;;;17346:62;-1:-1:-1;;;17424:18:1;;;17417:41;17475:19;;58767:85:0;17267:233:1;58767:85:0;58863:11;58877:23;58886:5;58893:6;58877:8;:23::i;:::-;58863:37;;58911:32;58925:8;58936:6;58911:5;:32::i;:::-;58976:58;;-1:-1:-1;;;58976:58:0;;56646:45;;-1:-1:-1;;;;;58976:20:0;;;;;:58;;58997:10;;59009:5;;59016:6;;59024:3;;59029:4;;;;58976:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:75;58954:161;;;;-1:-1:-1;;;58954:161:0;;14586:2:1;58954:161:0;;;14568:21:1;14625:2;14605:18;;;14598:30;14664:34;14644:18;;;14637:62;-1:-1:-1;;;14715:18:1;;;14708:34;14759:19;;58954:161:0;14558:226:1;58954:161:0;59126:24;59153:43;59171:8;59190:4;59153:9;:43::i;:::-;59126:70;-1:-1:-1;59235:12:0;59244:3;59235:6;:12;:::i;:::-;59215:16;:32;;59207:92;;;;-1:-1:-1;;;59207:92:0;;19678:2:1;59207:92:0;;;19660:21:1;19717:2;19697:18;;;19690:30;19756:34;19736:18;;;19729:62;-1:-1:-1;;;19807:18:1;;;19800:45;19862:19;;59207:92:0;19650:237:1;59207:92:0;59310:75;59327:8;59346:4;59381:3;59353:25;59372:6;59353:16;:25;:::i;:::-;:31;;;;:::i;59310:75::-;59396:38;59410:8;59421:12;59430:3;59421:6;:12;:::i;:::-;59396:5;:38::i;:::-;-1:-1:-1;59452:4:0;;58571:893;-1:-1:-1;;;;;;;58571:893:0:o;56908:178::-;56983:7;-1:-1:-1;;;;;57010:22:0;;57027:4;57010:22;:68;;57077:1;57010:68;;;46390:12;;57035:39;;-1:-1:-1;;57035:39:0;:::i;64247:151::-;-1:-1:-1;;;;;64361:21:0;;64317:6;64361:21;;;:12;:21;;;;;:28;64343:47;;:17;:47::i;38587:103::-;38009:6;;-1:-1:-1;;;;;38009:6:0;36734:10;38156:23;38148:68;;;;-1:-1:-1;;;38148:68:0;;;;;;;:::i;:::-;38652:30:::1;38679:1;38652:18;:30::i;:::-;38587:103::o:0;81681:164::-;81758:46;81774:7;36734:10;81797:6;81758:15;:46::i;:::-;81815:22;81821:7;81830:6;81815:5;:22::i;61651:128::-;-1:-1:-1;;;;;61747:14:0;;61720:7;61747:14;;;:7;:14;;;;;32585;61747:24;32493:114;65674:259;65761:7;65803:12;65789:11;:26;65781:70;;;;-1:-1:-1;;;65781:70:0;;10415:2:1;65781:70:0;;;10397:21:1;10454:2;10434:18;;;10427:30;10493:33;10473:18;;;10466:61;10544:18;;65781:70:0;10387:181:1;65781:70:0;65869:56;65888:23;65913:11;65869:18;:56::i;45401:104::-;45457:13;45490:7;45483:14;;;;;:::i;82201:67::-;38009:6;;-1:-1:-1;;;;;38009:6:0;36734:10;38156:23;38148:68;;;;-1:-1:-1;;;38148:68:0;;;;;;;:::i;:::-;82249:11:::1;:9;:11::i;77157:234::-:0;77229:7;77250:16;77268:13;77285:43;77294:10;77306:21;77285:8;:43::i;:::-;77249:79;;;;77348:11;:35;;46390:12;;77348:35;;;77362:5;77348:35;77341:42;77157:234;-1:-1:-1;;;;77157:234:0:o;64703:212::-;-1:-1:-1;;;;;64810:21:0;;64776:7;64810:21;;;:12;:21;;;;;:28;64856:8;;:51;;-1:-1:-1;;;;;64871:21:0;;;;;;:12;:21;;;;;64893:7;64899:1;64893:3;:7;:::i;:::-;64871:30;;;;;;-1:-1:-1;;;64871:30:0;;;;;;;;;;;;;;;;;;:36;;;;-1:-1:-1;;;;;64871:36:0;64856:51;;;64867:1;64856:51;-1:-1:-1;;;;;64849:58:0;;64703:212;-1:-1:-1;;;64703:212:0:o;49761:438::-;36734:10;49854:4;49937:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;49937:27:0;;;;;;;;;;49854:4;;36734:10;49983:35;;;;49975:85;;;;-1:-1:-1;;;49975:85:0;;20094:2:1;49975:85:0;;;20076:21:1;20133:2;20113:18;;;20106:30;20172:34;20152:18;;;20145:62;-1:-1:-1;;;20223:18:1;;;20216:35;20268:19;;49975:85:0;20066:227:1;49975:85:0;50096:60;50105:5;50112:7;50140:15;50121:16;:34;50096:8;:60::i;46806:193::-;46885:4;36734:10;46941:28;36734:10;46958:2;46962:6;46941:9;:28::i;67786:591::-;68013:6;67994:15;:25;;67986:67;;;;-1:-1:-1;;;67986:67:0;;10775:2:1;67986:67:0;;;10757:21:1;10814:2;10794:18;;;10787:30;10853:31;10833:18;;;10826:59;10902:18;;67986:67:0;10747:179:1;67986:67:0;68136:58;;;63697:71;68136:58;;;7402:25:1;-1:-1:-1;;;;;7463:32:1;;7443:18;;;7436:60;;;;7512:18;;;7505:34;;;7555:18;;;7548:34;;;68064:14:0;;68081:174;;68109:87;;7374:19:1;;68136:58:0;;;;;;;;;;;;68126:69;;;;;;68109:16;:87::i;:::-;68211:1;68227;68243;68081:13;:174::i;:::-;68064:191;;68283:17;68293:6;68283:9;:17::i;:::-;68274:5;:26;68266:64;;;;-1:-1:-1;;;68266:64:0;;11896:2:1;68266:64:0;;;11878:21:1;11935:2;11915:18;;;11908:30;11974:27;11954:18;;;11947:55;12019:18;;68266:64:0;11868:175:1;68266:64:0;68341:28;68351:6;68359:9;68341;:28::i;:::-;67786:591;;;;;;;:::o;60940:645::-;61184:8;61165:15;:27;;61157:69;;;;-1:-1:-1;;;61157:69:0;;13418:2:1;61157:69:0;;;13400:21:1;13457:2;13437:18;;;13430:30;13496:31;13476:18;;;13469:59;13545:18;;61157:69:0;13390:179:1;61157:69:0;61239:18;61281:16;61299:5;61306:7;61315:5;61322:16;61332:5;61322:9;:16::i;:::-;61270:79;;;;;;6862:25:1;;;;-1:-1:-1;;;;;6961:15:1;;;6941:18;;;6934:43;7013:15;;;;6993:18;;;6986:43;7045:18;;;7038:34;7088:19;;;7081:35;7132:19;;;7125:35;;;6834:19;;61270:79:0;;;;;;;;;;;;61260:90;;;;;;61239:111;;61363:12;61378:28;61395:10;61378:16;:28::i;:::-;61363:43;;61419:14;61436:28;61450:4;61456:1;61459;61462;61436:13;:28::i;:::-;61419:45;;61493:5;-1:-1:-1;;;;;61483:15:0;:6;-1:-1:-1;;;;;61483:15:0;;61475:58;;;;-1:-1:-1;;;61475:58:0;;15750:2:1;61475:58:0;;;15732:21:1;15789:2;15769:18;;;15762:30;15828:32;15808:18;;;15801:60;15878:18;;61475:58:0;15722:180:1;61475:58:0;61546:31;61555:5;61562:7;61571:5;61546:8;:31::i;:::-;60940:645;;;;;;;;;;:::o;57485:297::-;57572:7;-1:-1:-1;;;;;57600:22:0;;57617:4;57600:22;57592:62;;;;-1:-1:-1;;;57592:62:0;;14991:2:1;57592:62:0;;;14973:21:1;15030:2;15010:18;;;15003:30;15069:29;15049:18;;;15042:57;15116:18;;57592:62:0;14963:177:1;57592:62:0;-1:-1:-1;57773:1:0;57485:297;;;;:::o;47062:151::-;-1:-1:-1;;;;;47178:18:0;;;47151:7;47178:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;47062:151::o;64017:150::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;64133:21:0;;;;;;:12;:21;;;;;:26;;;;;;;;;;-1:-1:-1;;;64133:26:0;;;;;;;;;;;;;;;;;;64126:33;;;;;;;;;64133:26;;64126:33;;;;;;;;;-1:-1:-1;;;;;64126:33:0;;;;;;;;;64017:150;-1:-1:-1;;;64017:150:0:o;38845:201::-;38009:6;;-1:-1:-1;;;;;38009:6:0;36734:10;38156:23;38148:68;;;;-1:-1:-1;;;38148:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38934:22:0;::::1;38926:73;;;::::0;-1:-1:-1;;;38926:73:0;;12250:2:1;38926:73:0::1;::::0;::::1;12232:21:1::0;12289:2;12269:18;;;12262:30;12328:34;12308:18;;;12301:62;-1:-1:-1;;;12379:18:1;;;12372:36;12425:19;;38926:73:0::1;12222:228:1::0;38926:73:0::1;39010:28;39029:8;39010:18;:28::i;68683:290::-:0;68768:28;68780:7;68789:6;68768:11;:28::i;:::-;46390:12;;-1:-1:-1;;;;;;68815:29:0;68807:90;;;;-1:-1:-1;;;68807:90:0;;16109:2:1;68807:90:0;;;16091:21:1;16148:2;16128:18;;;16121:30;16187:34;16167:18;;;16160:62;-1:-1:-1;;;16238:18:1;;;16231:46;16294:19;;68807:90:0;16081:238:1;68807:90:0;68910:55;68927:23;68952:4;68958:6;68910:16;:55::i;:::-;;;68683:290;;:::o;51636:399::-;-1:-1:-1;;;;;51720:21:0;;51712:65;;;;-1:-1:-1;;;51712:65:0;;20500:2:1;51712:65:0;;;20482:21:1;20539:2;20519:18;;;20512:30;20578:33;20558:18;;;20551:61;20629:18;;51712:65:0;20472:181:1;51712:65:0;51790:49;51819:1;51823:7;51832:6;51790:20;:49::i;:::-;51868:6;51852:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;51885:18:0;;:9;:18;;;;;;;;;;:28;;51907:6;;51885:9;:28;;51907:6;;51885:28;:::i;:::-;;;;-1:-1:-1;;51929:37:0;;6539:25:1;;;-1:-1:-1;;;;;51929:37:0;;;51946:1;;51929:37;;6527:2:1;6512:18;51929:37:0;;;;;;;51979:48;52007:1;52011:7;52020:6;51979:19;:48::i;71527:98::-;71585:7;71612:5;71616:1;71612;:5;:::i;3876:195::-;3933:7;-1:-1:-1;;;;;3961:26:0;;;3953:78;;;;-1:-1:-1;;;3953:78:0;;16887:2:1;3953:78:0;;;16869:21:1;16926:2;16906:18;;;16899:30;16965:34;16945:18;;;16938:62;-1:-1:-1;;;17016:18:1;;;17009:37;17063:19;;3953:78:0;16859:229:1;3953:78:0;-1:-1:-1;4057:5:0;3876:195::o;5846:190::-;5902:6;5938:16;5929:25;;;5921:76;;;;-1:-1:-1;;;5921:76:0;;18515:2:1;5921:76:0;;;18497:21:1;18554:2;18534:18;;;18527:30;18593:34;18573:18;;;18566:62;-1:-1:-1;;;18644:18:1;;;18637:36;18690:19;;5921:76:0;18487:228:1;77608:622:0;-1:-1:-1;;;;;77812:18:0;;77808:415;;77868:26;77891:2;77868:22;:26::i;:::-;77909:28;:26;:28::i;:::-;77608:622;;;:::o;77808:415::-;-1:-1:-1;;;;;77959:16:0;;77955:268;;78013:28;78036:4;78013:22;:28::i;77955:268::-;78142:28;78165:4;78142:22;:28::i;:::-;78185:26;78208:2;78185:22;:26::i;69401:262::-;-1:-1:-1;;;;;64592:19:0;;;64565:7;64592:19;;;:10;:19;;;;;;;;;;;;;;;69599:56;;64592:19;;;;;69648:6;69599:16;:56::i;71633:103::-;71696:7;71723:5;71727:1;71723;:5;:::i;32493:114::-;32585:14;;32493:114::o;53397:380::-;-1:-1:-1;;;;;53533:19:0;;53525:68;;;;-1:-1:-1;;;53525:68:0;;18922:2:1;53525:68:0;;;18904:21:1;18961:2;18941:18;;;18934:30;19000:34;18980:18;;;18973:62;-1:-1:-1;;;19051:18:1;;;19044:34;19095:19;;53525:68:0;18894:226:1;53525:68:0;-1:-1:-1;;;;;53612:21:0;;53604:68;;;;-1:-1:-1;;;53604:68:0;;12657:2:1;53604:68:0;;;12639:21:1;12696:2;12676:18;;;12669:30;12735:34;12715:18;;;12708:62;-1:-1:-1;;;12786:18:1;;;12779:32;12828:19;;53604:68:0;12629:224:1;53604:68:0;-1:-1:-1;;;;;53685:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;53737:32;;6539:25:1;;;53737:32:0;;6512:18:1;53737:32:0;;;;;;;53397:380;;;:::o;54064:453::-;54199:24;54226:25;54236:5;54243:7;54226:9;:25::i;:::-;54199:52;;-1:-1:-1;;54266:16:0;:37;54262:248;;54348:6;54328:16;:26;;54320:68;;;;-1:-1:-1;;;54320:68:0;;13060:2:1;54320:68:0;;;13042:21:1;13099:2;13079:18;;;13072:30;13138:31;13118:18;;;13111:59;13187:18;;54320:68:0;13032:179:1;54320:68:0;54432:51;54441:5;54448:7;54476:6;54457:16;:25;54432:8;:51::i;50678:671::-;-1:-1:-1;;;;;50809:18:0;;50801:68;;;;-1:-1:-1;;;50801:68:0;;18109:2:1;50801:68:0;;;18091:21:1;18148:2;18128:18;;;18121:30;18187:34;18167:18;;;18160:62;-1:-1:-1;;;18238:18:1;;;18231:35;18283:19;;50801:68:0;18081:227:1;50801:68:0;-1:-1:-1;;;;;50888:16:0;;50880:64;;;;-1:-1:-1;;;50880:64:0;;10011:2:1;50880:64:0;;;9993:21:1;10050:2;10030:18;;;10023:30;10089:34;10069:18;;;10062:62;-1:-1:-1;;;10140:18:1;;;10133:33;10183:19;;50880:64:0;9983:225:1;50880:64:0;50957:38;50978:4;50984:2;50988:6;50957:20;:38::i;:::-;-1:-1:-1;;;;;51030:15:0;;51008:19;51030:15;;;;;;;;;;;51064:21;;;;51056:72;;;;-1:-1:-1;;;51056:72:0;;13776:2:1;51056:72:0;;;13758:21:1;13815:2;13795:18;;;13788:30;13854:34;13834:18;;;13827:62;-1:-1:-1;;;13905:18:1;;;13898:36;13951:19;;51056:72:0;13748:228:1;51056:72:0;-1:-1:-1;;;;;51164:15:0;;;:9;:15;;;;;;;;;;;51182:20;;;51164:38;;51224:13;;;;;;;;:23;;51196:6;;51164:9;51224:23;;51196:6;;51224:23;:::i;:::-;;;;;;;;51280:2;-1:-1:-1;;;;;51265:26:0;51274:4;-1:-1:-1;;;;;51265:26:0;;51284:6;51265:26;;;;6539:25:1;;6527:2;6512:18;;6494:76;51265:26:0;;;;;;;;51304:37;51324:4;51330:2;51334:6;51304:19;:37::i;27843:314::-;27896:7;27928:4;-1:-1:-1;;;;;27937:12:0;27920:29;;:66;;;;;27970:16;27953:13;:33;27920:66;27916:234;;;-1:-1:-1;28010:24:0;;27843:314::o;27916:234::-;-1:-1:-1;28346:73:0;;;28096:10;28346:73;;;;7852:25:1;;;;28108:12:0;7893:18:1;;;7886:34;28122:15:0;7936:18:1;;;7929:34;28390:13:0;7979:18:1;;;7972:34;28413:4:0;8022:19:1;;;;8015:61;;;;28346:73:0;;;;;;;;;;7824:19:1;;;;28346:73:0;;;28336:84;;;;;;61909:115::o;66022:1482::-;67155:12;;66121:7;;;67204:236;67217:4;67211:3;:10;67204:236;;;67238:11;67252:23;67265:3;67270:4;67252:12;:23::i;:::-;67238:37;;67317:11;67294:5;67300:3;67294:10;;;;;;-1:-1:-1;;;67294:10:0;;;;;;;;;;;;;;;;;;:20;;;:34;67290:139;;;67356:3;67349:10;;67290:139;;;67406:7;:3;67412:1;67406:7;:::i;:::-;67400:13;;67290:139;67204:236;;;;67459:9;;:37;;67475:5;67481:8;67488:1;67481:4;:8;:::i;:::-;67475:15;;;;;;-1:-1:-1;;;67475:15:0;;;;;;;;;;;;;;;;;;:21;;;;-1:-1:-1;;;;;67475:21:0;67459:37;;;67471:1;67459:37;-1:-1:-1;;;;;67452:44:0;;66022:1482;-1:-1:-1;;;;;66022:1482:0:o;82856:145::-;82970:23;82982:2;82986:6;82970:11;:23::i;83009:155::-;83128:28;83140:7;83149:6;83128:11;:28::i;78238:1619::-;78327:4;78333:7;78374:1;78361:10;:14;78353:49;;;;-1:-1:-1;;;78353:49:0;;19327:2:1;78353:49:0;;;19309:21:1;19366:2;19346:18;;;19339:30;-1:-1:-1;;;19385:18:1;;;19378:52;19447:18;;78353:49:0;19299:172:1;78353:49:0;78435:23;:21;:23::i;:::-;78421:10;:37;;78413:79;;;;-1:-1:-1;;;78413:79:0;;9653:2:1;78413:79:0;;;9635:21:1;9692:2;9672:18;;;9665:30;9731:31;9711:18;;;9704:59;9780:18;;78413:79:0;9625:179:1;78413:79:0;79631:13;79647:40;:9;79676:10;79647:28;:40::i;:::-;79713:20;;79631:56;;-1:-1:-1;79704:29:0;;79700:150;;;79758:5;79765:1;79750:17;;;;;;;79700:150;79808:4;79814:9;:16;;79831:5;79814:23;;;;;;-1:-1:-1;;;79814:23:0;;;;;;;;;;;;;;;;;79800:38;;;;;78238:1619;;;;;;:::o;69827:388::-;-1:-1:-1;;;;;64592:19:0;;;69912:23;64592:19;;;:10;:19;;;;;;;;;;46574:18;;;;;;;70027:21;;;;:33;;;-1:-1:-1;;;;;;70027:33:0;;;;;;;70078:54;;64592:19;;;;;46574:18;;70027:33;;64592:19;;;70078:54;;69912:23;70078:54;70145:62;70162:15;70179:9;70190:16;70145;:62::i;39206:191::-;39299:6;;;-1:-1:-1;;;;;39316:17:0;;;-1:-1:-1;;;;;;39316:17:0;;;;;;;39349:40;;39299:6;;;39316:17;39299:6;;39349:40;;39280:16;;39349:40;39206:191;;:::o;76259:223::-;76306:7;76326:30;:18;32704:19;;32722:1;32704:19;;;32615:127;76326:30;76369:17;76389:23;:21;:23::i;:::-;76369:43;;76428:19;76437:9;76428:19;;;;6539:25:1;;6527:2;6512:18;;6494:76;76428:19:0;;;;;;;;76465:9;76259:223;-1:-1:-1;76259:223:0:o;29070:167::-;29147:7;29174:55;29196:20;:18;:20::i;:::-;29218:10;24534:57;;-1:-1:-1;;;24534:57:0;;;5112:27:1;5155:11;;;5148:27;;;5191:12;;;5184:28;;;24497:7:0;;5228:12:1;;24534:57:0;;;;;;;;;;;;24524:68;;;;;;24517:75;;24404:196;;;;;22713:279;22841:7;22862:17;22881:18;22903:25;22914:4;22920:1;22923;22926;22903:10;:25::i;:::-;22861:67;;;;22939:18;22951:5;22939:11;:18::i;:::-;-1:-1:-1;22975:9:0;22713:279;-1:-1:-1;;;;;22713:279:0:o;62162:207::-;-1:-1:-1;;;;;62283:14:0;;62222:15;62283:14;;;:7;:14;;;;;32585;;32722:1;32704:19;;;;32585:14;62344:17;62162:207;;;;:::o;70874:645::-;71111:12;;71048:17;;;;71146:8;;:35;;71161:5;71167:7;71173:1;71167:3;:7;:::i;:::-;71161:14;;;;;;-1:-1:-1;;;71161:14:0;;;;;;;;;;;;;;;;;;:20;;;;-1:-1:-1;;;;;71161:20:0;71146:35;;;71157:1;71146:35;-1:-1:-1;;;;;71134:47:0;;;71204:20;71207:9;71218:5;71204:2;:20;;:::i;:::-;71192:32;;71247:1;71241:3;:7;:51;;;;-1:-1:-1;71280:12:0;71252:5;71258:7;71264:1;71258:3;:7;:::i;:::-;71252:14;;;;;;-1:-1:-1;;;71252:14:0;;;;;;;;;;;;;;;;;;:24;;;:40;71241:51;71237:275;;;71332:29;71351:9;71332:18;:29::i;:::-;71309:5;71315:7;71321:1;71315:3;:7;:::i;:::-;71309:14;;;;;;-1:-1:-1;;;71309:14:0;;;;;;;;;;;;;;;;:20;;;:52;;;;;-1:-1:-1;;;;;71309:52:0;;;;;-1:-1:-1;;;;;71309:52:0;;;;;;71237:275;;;71394:5;71405:94;;;;;;;;71428:31;71446:12;71428:17;:31::i;:::-;71405:94;;;;;;71468:29;71487:9;71468:18;:29::i;:::-;-1:-1:-1;;;;;71405:94:0;;;;;;71394:106;;;;;;;-1:-1:-1;71394:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71237:275;70874:645;;;;;;;:::o;82449:198::-;82595:44;82622:4;82628:2;82632:6;82595:26;:44::i;82655:193::-;82797:43;82823:4;82829:2;82833:6;82797:25;:43::i;79865:146::-;-1:-1:-1;;;;;79949:33:0;;;;;;:24;:33;;;;;;;;46574:18;;;;;;;;79933:70;;79949:33;79933:15;:70::i;79984:18::-;79933:15;:70::i;80019:118::-;80076:53;80092:21;80115:13;46390:12;;;46302:108;70223:643;70355:3;-1:-1:-1;;;;;70348:10:0;:3;-1:-1:-1;;;;;70348:10:0;;;:24;;;;;70371:1;70362:6;:10;70348:24;70344:515;;;-1:-1:-1;;;;;70393:17:0;;;70389:224;;-1:-1:-1;;;;;70489:17:0;;70432;70489;;;:12;:17;;;;;70432;;70472:54;;70508:9;70519:6;70472:16;:54::i;:::-;70431:95;;;;70571:3;-1:-1:-1;;;;;70550:47:0;;70576:9;70587;70550:47;;;;;;21365:25:1;;;21421:2;21406:18;;21399:34;21353:2;21338:18;;21320:119;70550:47:0;;;;;;;;70389:224;;;-1:-1:-1;;;;;70633:17:0;;;70629:219;;-1:-1:-1;;;;;70729:17:0;;70672;70729;;;:12;:17;;;;;70672;;70712:49;;70748:4;70754:6;70712:16;:49::i;:::-;70671:90;;;;70806:3;-1:-1:-1;;;;;70785:47:0;;70811:9;70822;70785:47;;;;;;21365:25:1;;;21421:2;21406:18;;21399:34;21353:2;21338:18;;21320:119;70785:47:0;;;;;;;;70629:219;;70223:643;;;:::o;33822:156::-;33884:7;33959:11;33969:1;33960:5;;;33959:11;:::i;:::-;33949:21;;33950:5;;;33949:21;:::i;69067:194::-;69152:28;69164:7;69173:6;69152:11;:28::i;:::-;69193:60;69210:23;69235:9;69246:6;69193:16;:60::i;76548:127::-;76612:7;76639:28;:18;32585:14;;32493:114;35044:918;35157:12;;35133:7;;35153:58;;-1:-1:-1;35198:1:0;35191:8;;35153:58;35264:12;;35223:11;;35289:424;35302:4;35296:3;:10;35289:424;;;35323:11;35337:23;35350:3;35355:4;35337:12;:23::i;:::-;35323:37;;35594:7;35581:5;35587:3;35581:10;;;;;;-1:-1:-1;;;35581:10:0;;;;;;;;;;;;;;;;;:20;35577:125;;;35629:3;35622:10;;35577:125;;;35679:7;:3;35685:1;35679:7;:::i;:::-;35673:13;;35577:125;35289:424;;;;35839:1;35833:3;:7;:36;;;;-1:-1:-1;35862:7:0;35844:5;35850:7;35856:1;35850:3;:7;:::i;:::-;35844:14;;;;;;-1:-1:-1;;;35844:14:0;;;;;;;;;;;;;;;;;:25;35833:36;35829:126;;;35893:7;35899:1;35893:3;:7;:::i;:::-;35886:14;;;;;;35829:126;-1:-1:-1;35940:3:0;-1:-1:-1;35933:10:0;;20942:1632;21073:7;;22007:66;21994:79;;21990:163;;;-1:-1:-1;22106:1:0;;-1:-1:-1;22110:30:0;22090:51;;21990:163;22167:1;:7;;22172:2;22167:7;;:18;;;;;22178:1;:7;;22183:2;22178:7;;22167:18;22163:102;;;-1:-1:-1;22218:1:0;;-1:-1:-1;22222:30:0;22202:51;;22163:102;22379:24;;;22362:14;22379:24;;;;;;;;;8314:25:1;;;8387:4;8375:17;;8355:18;;;8348:45;;;;8409:18;;;8402:34;;;8452:18;;;8445:34;;;22379:24:0;;8286:19:1;;22379:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22379:24:0;;-1:-1:-1;;22379:24:0;;;-1:-1:-1;;;;;;;22418:20:0;;22414:103;;22471:1;22475:29;22455:50;;;;;;;22414:103;22537:6;-1:-1:-1;22545:20:0;;-1:-1:-1;20942:1632:0;;;;;;;;:::o;15651:643::-;15729:20;15720:5;:29;;;;;;-1:-1:-1;;;15720:29:0;;;;;;;;;;15716:571;;;15651:643;:::o;15716:571::-;15827:29;15818:5;:38;;;;;;-1:-1:-1;;;15818:38:0;;;;;;;;;;15814:473;;;15873:34;;-1:-1:-1;;;15873:34:0;;9300:2:1;15873:34:0;;;9282:21:1;9339:2;9319:18;;;9312:30;9378:26;9358:18;;;9351:54;9422:18;;15873:34:0;9272:174:1;15814:473:0;15938:35;15929:5;:44;;;;;;-1:-1:-1;;;15929:44:0;;;;;;;;;;15925:362;;;15990:41;;-1:-1:-1;;;15990:41:0;;11536:2:1;15990:41:0;;;11518:21:1;11575:2;11555:18;;;11548:30;11614:33;11594:18;;;11587:61;11665:18;;15990:41:0;11508:181:1;15925:362:0;16062:30;16053:5;:39;;;;;;-1:-1:-1;;;16053:39:0;;;;;;;;;;16049:238;;;16109:44;;-1:-1:-1;;;16109:44:0;;14183:2:1;16109:44:0;;;14165:21:1;14222:2;14202:18;;;14195:30;14261:34;14241:18;;;14234:62;-1:-1:-1;;;14312:18:1;;;14305:32;14354:19;;16109:44:0;14155:224:1;16049:238:0;16184:30;16175:5;:39;;;;;;-1:-1:-1;;;16175:39:0;;;;;;;;;;16171:116;;;16231:44;;-1:-1:-1;;;16231:44:0;;15347:2:1;16231:44:0;;;15329:21:1;15386:2;15366:18;;;15359:30;15425:34;15405:18;;;15398:62;-1:-1:-1;;;15476:18:1;;;15469:32;15518:19;;16231:44:0;15319:224:1;80145:310:0;80240:17;80260:23;:21;:23::i;:::-;80240:43;-1:-1:-1;80240:43:0;80298:30;80314:9;80298:15;:30::i;:::-;:42;80294:154;;;80357:29;;;;;;;;-1:-1:-1;80357:29:0;;;;;;;;;;;;;;80401:16;;;:35;;;;;;;;;;;;;;;80145:310::o;52368:591::-;-1:-1:-1;;;;;52452:21:0;;52444:67;;;;-1:-1:-1;;;52444:67:0;;17707:2:1;52444:67:0;;;17689:21:1;17746:2;17726:18;;;17719:30;17785:34;17765:18;;;17758:62;-1:-1:-1;;;17836:18:1;;;17829:31;17877:19;;52444:67:0;17679:223:1;52444:67:0;52524:49;52545:7;52562:1;52566:6;52524:20;:49::i;:::-;-1:-1:-1;;;;;52611:18:0;;52586:22;52611:18;;;;;;;;;;;52648:24;;;;52640:71;;;;-1:-1:-1;;;52640:71:0;;11133:2:1;52640:71:0;;;11115:21:1;11172:2;11152:18;;;11145:30;11211:34;11191:18;;;11184:62;-1:-1:-1;;;11262:18:1;;;11255:32;11304:19;;52640:71:0;11105:224:1;52640:71:0;-1:-1:-1;;;;;52747:18:0;;:9;:18;;;;;;;;;;52768:23;;;52747:44;;52813:12;:22;;52785:6;;52747:9;52813:22;;52785:6;;52813:22;:::i;:::-;;;;-1:-1:-1;;52853:37:0;;6539:25:1;;;52879:1:0;;-1:-1:-1;;;;;52853:37:0;;;;;6527:2:1;6512:18;52853:37:0;;;;;;;52903:48;52923:7;52940:1;52944:6;52903:19;:48::i;80463:212::-;80557:10;;80533:7;;80553:115;;-1:-1:-1;80596:1:0;;80463:212;-1:-1:-1;80463:212:0:o;80553:115::-;80641:10;;80637:3;;80641:14;;80654:1;;80641:14;:::i;:::-;80637:19;;;;;;-1:-1:-1;;;80637:19:0;;;;;;;;;;;;;;;;;80630:26;;80463:212;;;:::o;80553:115::-;80463:212;;;:::o;14:156:1:-;80:20;;140:4;129:16;;119:27;;109:2;;160:1;157;150:12;175:257;234:6;287:2;275:9;266:7;262:23;258:32;255:2;;;308:6;300;293:22;255:2;352:9;339:23;371:31;396:5;371:31;:::i;437:398::-;505:6;513;566:2;554:9;545:7;541:23;537:32;534:2;;;587:6;579;572:22;534:2;631:9;618:23;650:31;675:5;650:31;:::i;:::-;700:5;-1:-1:-1;757:2:1;742:18;;729:32;770:33;729:32;770:33;:::i;:::-;822:7;812:17;;;524:311;;;;;:::o;840:466::-;917:6;925;933;986:2;974:9;965:7;961:23;957:32;954:2;;;1007:6;999;992:22;954:2;1051:9;1038:23;1070:31;1095:5;1070:31;:::i;:::-;1120:5;-1:-1:-1;1177:2:1;1162:18;;1149:32;1190:33;1149:32;1190:33;:::i;:::-;944:362;;1242:7;;-1:-1:-1;;;1296:2:1;1281:18;;;;1268:32;;944:362::o;1311:744::-;1422:6;1430;1438;1446;1454;1462;1470;1523:3;1511:9;1502:7;1498:23;1494:33;1491:2;;;1545:6;1537;1530:22;1491:2;1589:9;1576:23;1608:31;1633:5;1608:31;:::i;:::-;1658:5;-1:-1:-1;1715:2:1;1700:18;;1687:32;1728:33;1687:32;1728:33;:::i;:::-;1780:7;-1:-1:-1;1834:2:1;1819:18;;1806:32;;-1:-1:-1;1885:2:1;1870:18;;1857:32;;-1:-1:-1;1908:37:1;1940:3;1925:19;;1908:37;:::i;:::-;1898:47;;1992:3;1981:9;1977:19;1964:33;1954:43;;2044:3;2033:9;2029:19;2016:33;2006:43;;1481:574;;;;;;;;;;:::o;2060:325::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:2;;;2210:6;2202;2195:22;2157:2;2254:9;2241:23;2273:31;2298:5;2273:31;:::i;:::-;2323:5;2375:2;2360:18;;;;2347:32;;-1:-1:-1;;;2147:238:1:o;2390:602::-;2492:6;2500;2508;2516;2524;2532;2585:3;2573:9;2564:7;2560:23;2556:33;2553:2;;;2607:6;2599;2592:22;2553:2;2651:9;2638:23;2670:31;2695:5;2670:31;:::i;:::-;2720:5;-1:-1:-1;2772:2:1;2757:18;;2744:32;;-1:-1:-1;2823:2:1;2808:18;;2795:32;;-1:-1:-1;2846:36:1;2878:2;2863:18;;2846:36;:::i;:::-;2836:46;;2929:3;2918:9;2914:19;2901:33;2891:43;;2981:3;2970:9;2966:19;2953:33;2943:43;;2543:449;;;;;;;;:::o;2997:439::-;3064:6;3072;3125:2;3113:9;3104:7;3100:23;3096:32;3093:2;;;3146:6;3138;3131:22;3093:2;3190:9;3177:23;3209:31;3234:5;3209:31;:::i;:::-;3259:5;-1:-1:-1;3316:2:1;3301:18;;3288:32;3364:10;3351:24;;3339:37;;3329:2;;3395:6;3387;3380:22;3441:194;3511:6;3564:2;3552:9;3543:7;3539:23;3535:32;3532:2;;;3585:6;3577;3570:22;3532:2;-1:-1:-1;3613:16:1;;3522:113;-1:-1:-1;3522:113:1:o;3640:1014::-;3765:6;3773;3781;3789;3797;3850:3;3838:9;3829:7;3825:23;3821:33;3818:2;;;3872:6;3864;3857:22;3818:2;3916:9;3903:23;3935:31;3960:5;3935:31;:::i;:::-;3985:5;-1:-1:-1;4042:2:1;4027:18;;4014:32;4055:33;4014:32;4055:33;:::i;:::-;4107:7;-1:-1:-1;4161:2:1;4146:18;;4133:32;;-1:-1:-1;4216:2:1;4201:18;;4188:32;4239:18;4269:14;;;4266:2;;;4301:6;4293;4286:22;4266:2;4344:6;4333:9;4329:22;4319:32;;4389:7;4382:4;4378:2;4374:13;4370:27;4360:2;;4416:6;4408;4401:22;4360:2;4461;4448:16;4487:2;4479:6;4476:14;4473:2;;;4508:6;4500;4493:22;4473:2;4558:7;4553:2;4544:6;4540:2;4536:15;4532:24;4529:37;4526:2;;;4584:6;4576;4569:22;4526:2;3808:846;;;;-1:-1:-1;3808:846:1;;-1:-1:-1;4620:2:1;4612:11;;4642:6;3808:846;-1:-1:-1;;;3808:846:1:o;4659:190::-;4718:6;4771:2;4759:9;4750:7;4746:23;4742:32;4739:2;;;4792:6;4784;4777:22;4739:2;-1:-1:-1;4820:23:1;;4729:120;-1:-1:-1;4729:120:1:o;5459:737::-;-1:-1:-1;;;;;5766:15:1;;;5748:34;;5818:15;;5813:2;5798:18;;5791:43;5865:2;5850:18;;5843:34;;;5908:2;5893:18;;5886:34;;;5728:3;5951;5936:19;;5929:32;;;5977:19;;5970:35;;;5691:4;5998:6;6048;6042:3;6027:19;;6014:49;6083:22;;;6107:3;6079:32;;;6072:46;;;;6179:2;6158:15;;;-1:-1:-1;;6154:29:1;6139:45;6135:55;;5700:496;-1:-1:-1;;;;;5700:496:1:o;8490:603::-;8602:4;8631:2;8660;8649:9;8642:21;8692:6;8686:13;8735:6;8730:2;8719:9;8715:18;8708:34;8760:4;8773:140;8787:6;8784:1;8781:13;8773:140;;;8882:14;;;8878:23;;8872:30;8848:17;;;8867:2;8844:26;8837:66;8802:10;;8773:140;;;8931:6;8928:1;8925:13;8922:2;;;9001:4;8996:2;8987:6;8976:9;8972:22;8968:31;8961:45;8922:2;-1:-1:-1;9077:2:1;9056:15;-1:-1:-1;;9052:29:1;9037:45;;;;9084:2;9033:54;;8611:482;-1:-1:-1;;;8611:482:1:o;16324:356::-;16526:2;16508:21;;;16545:18;;;16538:30;16604:34;16599:2;16584:18;;16577:62;16671:2;16656:18;;16498:182::o;21830:128::-;21870:3;21901:1;21897:6;21894:1;21891:13;21888:2;;;21907:18;;:::i;:::-;-1:-1:-1;21943:9:1;;21878:80::o;21963:217::-;22003:1;22029;22019:2;;-1:-1:-1;;;22054:31:1;;22108:4;22105:1;22098:15;22136:4;22061:1;22126:15;22019:2;-1:-1:-1;22165:9:1;;22009:171::o;22185:125::-;22225:4;22253:1;22250;22247:8;22244:2;;;22258:18;;:::i;:::-;-1:-1:-1;22295:9:1;;22234:76::o;22315:380::-;22394:1;22390:12;;;;22437;;;22458:2;;22512:4;22504:6;22500:17;22490:27;;22458:2;22565;22557:6;22554:14;22534:18;22531:38;22528:2;;;22611:10;22606:3;22602:20;22599:1;22592:31;22646:4;22643:1;22636:15;22674:4;22671:1;22664:15;22700:127;22761:10;22756:3;22752:20;22749:1;22742:31;22792:4;22789:1;22782:15;22816:4;22813:1;22806:15;22832:131;-1:-1:-1;;;;;22907:31:1;;22897:42;;22887:2;;22953:1;22950;22943:12
Swarm Source
ipfs://d67b92ebaeee215807e9b75e99030ec7dbc83588d029e8e2e8fcd22a9d83bac4
Loading...
Loading
Loading...
Loading
OVERVIEW
FutureGoldCoin is a stable coin pegged to the US$. One to replace the US$ as the new single global reserve global currency for transactions, as a payment solution and as a store of value and currency.Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.