Source Code
Overview
MOVR Balance
MOVR Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 293 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer From | 6454254 | 668 days ago | IN | 0 MOVR | 0.00033373 | ||||
| Permit | 6454254 | 668 days ago | IN | 0 MOVR | 0.00042456 | ||||
| Transfer | 6454252 | 668 days ago | IN | 0 MOVR | 0.00008999 | ||||
| Transfer | 1529659 | 1433 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1529657 | 1433 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1529656 | 1433 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1529655 | 1433 days ago | IN | 0 MOVR | 0.00006096 | ||||
| Transfer | 1529654 | 1433 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1529651 | 1433 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1529650 | 1433 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1529647 | 1433 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1529644 | 1433 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1529642 | 1433 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1529640 | 1433 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1529640 | 1433 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1523819 | 1434 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1523818 | 1434 days ago | IN | 0 MOVR | 0.00006096 | ||||
| Transfer | 1523817 | 1434 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1523816 | 1434 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1523811 | 1434 days ago | IN | 0 MOVR | 0.00006096 | ||||
| Transfer | 1523810 | 1434 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1523809 | 1434 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1523807 | 1434 days ago | IN | 0 MOVR | 0.00004106 | ||||
| Transfer | 1523806 | 1434 days ago | IN | 0 MOVR | 0.00006096 | ||||
| Transfer | 1523804 | 1434 days ago | IN | 0 MOVR | 0.00004106 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Loading...
Loading
Contract Name:
GlobalTransactionPaymentSolution
Compiler Version
v0.8.2+commit.661d1103
Contract Source Code (Solidity)
/** *Submitted for verification at moonriver.moonscan.io on 2022-01-31 */ // 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]/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 v4.4.1 (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; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 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 v4.4.1 (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 v4.4.1 (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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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 v4.4.1 (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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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 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 v4.4.1 (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 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) { 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 v4.4.1 (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. * Enabling self-delegation can easily be done by overriding the {delegates} function. Keep in mind however that this * will significantly increase the base gas cost of transfers. * * _Available since v4.2._ */ abstract contract ERC20Votes is 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 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 an account's voting power. */ event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance); /** * @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 returns (address) { return _delegates[account]; } /** * @dev Gets the current votes balance for `account` */ function getVotes(address account) public view 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 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 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 { _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 { 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 v4.4.1 (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 { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } } // File: gtps.sol pragma solidity ^0.8.2; contract GlobalTransactionPaymentSolution is ERC20, ERC20Burnable, ERC20Snapshot, Ownable, ERC20Permit, ERC20Votes, ERC20FlashMint { constructor() ERC20("Global Transaction Payment Solution", "GTPS") ERC20Permit("Global Transaction Payment Solution") { _mint(msg.sender, 472236648286964 * 6 ** 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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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
6101606040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610140523480156200003757600080fd5b50604051806060016040528060238152602001620036ac6023913980604051806040016040528060018152602001603160f81b815250604051806060016040528060238152602001620036ac60239139604051806040016040528060048152602001634754505360e01b8152508160039080519060200190620000bc92919062000a1a565b508051620000d290600490602084019062000a1a565b505050620000ef620000e96200019060201b60201c565b62000194565b815160208084019190912082519183019190912060e08290526101008190524660a0527f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f62000140818484620001e6565b6080523060601b60c05261012052506200018a935033925062000164915050601290565b6200017190600662000b28565b62000184906601ad7f29abcaf462000c13565b62000230565b62000ca2565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090505b9392505050565b6200024782826200024b60201b6200112f1760201c565b5050565b6200026282826200030260201b620011bf1760201c565b6001600160e01b0362000276620003ff8216565b1115620002e35760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b60648201526084015b60405180910390fd5b620002fc600d620012b26200040560201b178362000413565b50505050565b6001600160a01b0382166200035a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620002da565b6200036860008383620005f7565b80600260008282546200037c919062000ac0565b90915550506001600160a01b03821660009081526020819052604081208054839290620003ab90849062000ac0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3620002476000838362000614565b60025490565b600062000229828462000ac0565b8254600090819080156200047157856200042f60018362000c35565b815481106200044e57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b031662000474565b60005b6001600160e01b031692506200048b83858760201c565b9150600081118015620004db57504386620004a860018462000c35565b81548110620004c757634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff16145b156200055b57620004f7826200062c60201b620012be1760201c565b866200050560018462000c35565b815481106200052457634e487b7160e01b600052603260045260246000fd5b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550620005ee565b8560405180604001604052806200057d436200069f60201b6200132b1760201c565b63ffffffff1681526020016200059e856200062c60201b620012be1760201c565b6001600160e01b039081169091528254600181018455600093845260209384902083519101805493909401519091166401000000000263ffffffff91821663ffffffff1990931692909217161790555b50935093915050565b6200060f8383836200070660201b620013901760201c565b505050565b6200060f8383836200077860201b620013dd1760201c565b60006001600160e01b03821115620006975760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401620002da565b50805b919050565b600063ffffffff821115620006975760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608401620002da565b6200071e8383836200060f60201b62000ae21760201c565b6001600160a01b03831662000748576200073882620007c4565b62000742620007f7565b6200060f565b6001600160a01b03821662000762576200073883620007c4565b6200076d83620007c4565b6200060f82620007c4565b620007908383836200060f60201b62000ae21760201c565b6001600160a01b038381166000908152600b60205260408082205485841683529120546200060f9291821691168362000809565b6001600160a01b03811660009081526005602090815260408083209183905290912054620007f491905b62000944565b50565b620008076006620007ee60025490565b565b816001600160a01b0316836001600160a01b0316141580156200082c5750600081115b156200060f576001600160a01b03831615620008b9576001600160a01b0383166000908152600c602090815260408220829162000876919062000993901b620013f8178562000413565b91509150846001600160a01b0316600080516020620036cf8339815191528383604051620008ae929190918252602082015260400190565b60405180910390a250505b6001600160a01b038216156200060f576001600160a01b0382166000908152600c6020908152604082208291620008fd919062000405901b620012b2178562000413565b91509150836001600160a01b0316600080516020620036cf833981519152838360405162000935929190918252602082015260400190565b60405180910390a25050505050565b600062000950620009a1565b9050806200095e84620009bf565b10156200060f578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b600062000229828462000c35565b6000620009ba600862000a1660201b620014041760201c565b905090565b8054600090620009d2575060006200069a565b81548290620009e49060019062000c35565b8154811062000a0357634e487b7160e01b600052603260045260246000fd5b906000526020600020015490506200069a565b5490565b82805462000a289062000c4f565b90600052602060002090601f01602090048101928262000a4c576000855562000a97565b82601f1062000a6757805160ff191683800117855562000a97565b8280016001018555821562000a97579182015b8281111562000a9757825182559160200191906001019062000a7a565b5062000aa592915062000aa9565b5090565b5b8082111562000aa5576000815560010162000aaa565b6000821982111562000ad65762000ad662000c8c565b500190565b80825b600180861162000aef575062000b1f565b81870482111562000b045762000b0462000c8c565b8086161562000b1257918102915b9490941c93800262000ade565b94509492505050565b60006200022960001960ff85168460008262000b475750600162000229565b8162000b565750600062000229565b816001811462000b6f576002811462000b7a5762000bae565b600191505062000229565b60ff84111562000b8e5762000b8e62000c8c565b6001841b91508482111562000ba75762000ba762000c8c565b5062000229565b5060208310610133831016604e8410600b841016171562000be6575081810a8381111562000be05762000be062000c8c565b62000229565b62000bf5848484600162000adb565b80860482111562000c0a5762000c0a62000c8c565b02949350505050565b600081600019048311821515161562000c305762000c3062000c8c565b500290565b60008282101562000c4a5762000c4a62000c8c565b500390565b60028104600182168062000c6457607f821691505b6020821081141562000c8657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60805160a05160c05160601c60e0516101005161012051610140516129ac62000d006000396000610e9201526000611797015260006117e6015260006117c101526000611718015260006117420152600061176c01526129ac6000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a5780639ab24eb0116100ad578063d505accf1161007c578063d505accf1461045f578063d9d98ce414610472578063dd62ed3e14610485578063f1127ed8146104be578063f2fde38b146104fb57610206565b80639ab24eb014610413578063a457c2d714610426578063a9059cbb14610439578063c3cda5201461044c57610206565b80638e539e8c116100e95780638e539e8c146103dd57806395d89b41146103f05780639711715a146103f8578063981b24d01461040057610206565b8063715018a61461039e57806379cc6790146103a65780637ecebe00146103b95780638da5cb5b146103cc57610206565b806340c10f191161019d5780635c19a95c1161016c5780635c19a95c146103145780635cffe9de14610327578063613255ab1461033a5780636fcfff451461034d57806370a082311461037557610206565b806340c10f19146102ae57806342966c68146102c35780634ee2cd7e146102d6578063587cde1e146102e957610206565b8063313ce567116101d9578063313ce567146102715780633644e5151461028057806339509351146102885780633a46b1a81461029b57610206565b806306fdde031461020b578063095ea7b31461022957806318160ddd1461024c57806323b872dd1461025e575b600080fd5b61021361050e565b604051610220919061283f565b60405180910390f35b61023c610237366004612663565b6105a1565b6040519015158152602001610220565b6002545b604051908152602001610220565b61023c61026c3660046125b6565b6105b8565b60405160128152602001610220565b610250610667565b61023c610296366004612663565b610676565b6102506102a9366004612663565b6106b2565b6102c16102bc366004612663565b61072c565b005b6102c16102d13660046127ce565b610764565b6102506102e4366004612663565b610771565b6102fc6102f7366004612562565b6107ca565b6040516001600160a01b039091168152602001610220565b6102c1610322366004612562565b6107eb565b61023c610335366004612734565b6107f5565b610250610348366004612562565b6109e1565b61036061035b366004612562565b610a09565b60405163ffffffff9091168152602001610220565b610250610383366004612562565b6001600160a01b031660009081526020819052604090205490565b6102c1610a2b565b6102c16103b4366004612663565b610a61565b6102506103c7366004612562565b610ae7565b6009546001600160a01b03166102fc565b6102506103eb3660046127ce565b610b05565b610213610b61565b6102c1610b70565b61025061040e3660046127ce565b610ba2565b610250610421366004612562565b610bcd565b61023c610434366004612663565b610c62565b61023c610447366004612663565b610cfb565b6102c161045a36600461268e565b610d08565b6102c161046d3660046125f6565b610e3e565b610250610480366004612663565b610fa2565b61025061049336600461257e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104d16104cc3660046126e7565b611005565b60408051825163ffffffff1681526020928301516001600160e01b03169281019290925201610220565b6102c1610509366004612562565b611097565b60606003805461051d90612916565b80601f016020809104026020016040519081016040528092919081815260200182805461054990612916565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b505050505090505b90565b60006105ae338484611408565b5060015b92915050565b60006105c584848461152c565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561064f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61065c8533858403611408565b506001949350505050565b600061067161170b565b905090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105ae9185906106ad9086906128c7565b611408565b60004382106107035760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152606401610646565b6001600160a01b0383166000908152600c602052604090206107259083611836565b9392505050565b6009546001600160a01b031633146107565760405162461bcd60e51b815260040161064690612892565b610760828261190f565b5050565b61076e3382611919565b50565b6001600160a01b038216600090815260056020526040812081908190610798908590611923565b91509150816107bf576001600160a01b0385166000908152602081905260409020546107c1565b805b95945050505050565b6001600160a01b038082166000908152600b6020526040902054165b919050565b61076e3382611a28565b6000806108028686610fa2565b905061080e878661190f565b6040516323e30c8b60e01b81527f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd9906001600160a01b038916906323e30c8b906108669033908b908b9088908c908c906004016127e6565b602060405180830381600087803b15801561088057600080fd5b505af1158015610894573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b8919061271c565b146109115760405162461bcd60e51b8152602060048201526024808201527f4552433230466c6173684d696e743a20696e76616c69642072657475726e2076604482015263616c756560e01b6064820152608401610646565b6001600160a01b038716600090815260016020908152604080832030845290915290205461093f82876128c7565b8110156109a65760405162461bcd60e51b815260206004820152602f60248201527f4552433230466c6173684d696e743a20616c6c6f77616e636520646f6573206e60448201526e1bdd08185b1b1bddc81c99599d5b99608a1b6064820152608401610646565b6109c08830846109b68a866128ff565b6106ad91906128ff565b6109d3886109ce84896128c7565b611919565b506001979650505050505050565b60006001600160a01b03821630146109fa5760006105b2565b6002546105b2906000196128ff565b6001600160a01b0381166000908152600c60205260408120546105b29061132b565b6009546001600160a01b03163314610a555760405162461bcd60e51b815260040161064690612892565b610a5f6000611abe565b565b6000610a6d8333610493565b905081811015610acb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610646565b610ad88333848403611408565b610ae28383611919565b505050565b6001600160a01b0381166000908152600a60205260408120546105b2565b6000438210610b565760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152606401610646565b6105b2600d83611836565b60606004805461051d90612916565b6009546001600160a01b03163314610b9a5760405162461bcd60e51b815260040161064690612892565b61076e611b10565b6000806000610bb2846006611923565b9150915081610bc357600254610bc5565b805b949350505050565b6001600160a01b0381166000908152600c60205260408120548015610c4f576001600160a01b0383166000908152600c60205260409020610c0f6001836128ff565b81548110610c2d57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316610c52565b60005b6001600160e01b03169392505050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ce45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610646565b610cf13385858403611408565b5060019392505050565b60006105ae33848461152c565b83421115610d585760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e617475726520657870697265640000006044820152606401610646565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b038816918101919091526060810186905260808101859052600090610dd290610dca9060a00160405160208183030381529060405280519060200120611b6a565b858585611bb8565b9050610ddd81611be0565b8614610e2b5760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e6365000000000000006044820152606401610646565b610e358188611a28565b50505050505050565b83421115610e8e5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610646565b60007f0000000000000000000000000000000000000000000000000000000000000000888888610ebd8c611be0565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610f1882611b6a565b90506000610f2882878787611bb8565b9050896001600160a01b0316816001600160a01b031614610f8b5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610646565b610f968a8a8a611408565b50505050505050505050565b60006001600160a01b0383163014610ffc5760405162461bcd60e51b815260206004820152601b60248201527f4552433230466c6173684d696e743a2077726f6e6720746f6b656e00000000006044820152606401610646565b50600092915050565b60408051808201909152600080825260208201526001600160a01b0383166000908152600c60205260409020805463ffffffff841690811061105757634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b6009546001600160a01b031633146110c15760405162461bcd60e51b815260040161064690612892565b6001600160a01b0381166111265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610646565b61076e81611abe565b61113982826111bf565b6002546001600160e01b0310156111ab5760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b6064820152608401610646565b6111b9600d6112b283611c08565b50505050565b6001600160a01b0382166112155760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610646565b61122160008383611db9565b806002600082825461123391906128c7565b90915550506001600160a01b038216600090815260208190526040812080548392906112609084906128c7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361076060008383611dc4565b600061072582846128c7565b60006001600160e01b038211156113275760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401610646565b5090565b600063ffffffff8211156113275760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608401610646565b6001600160a01b0383166113b4576113a782611dcf565b6113af611dfd565b610ae2565b6001600160a01b0382166113cb576113a783611dcf565b6113d483611dcf565b610ae282611dcf565b610ae26113e9846107ca565b6113f2846107ca565b83611e0b565b600061072582846128ff565b5490565b6001600160a01b03831661146a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610646565b6001600160a01b0382166114cb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610646565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115905760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610646565b6001600160a01b0382166115f25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610646565b6115fd838383611db9565b6001600160a01b038316600090815260208190526040902054818110156116755760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610646565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906116ac9084906128c7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116f891815260200190565b60405180910390a36111b9848484611dc4565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561176457507f000000000000000000000000000000000000000000000000000000000000000046145b1561179057507f000000000000000000000000000000000000000000000000000000000000000061059e565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012061059e565b8154600090815b818110156118a85760006118518284611f48565b90508486828154811061187457634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff161115611894578092506118a2565b61189f8160016128c7565b91505b5061183d565b81156118fa57846118ba6001846128ff565b815481106118d857634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b03166118fd565b60005b6001600160e01b031695945050505050565b610760828261112f565b6107608282611f63565b6000806000841161196f5760405162461bcd60e51b815260206004820152601660248201527504552433230536e617073686f743a20696420697320360541b6044820152606401610646565b611977611f7b565b8411156119c65760405162461bcd60e51b815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006044820152606401610646565b60006119d28486611f86565b84549091508114156119eb576000809250925050611a21565b6001846001018281548110611a1057634e487b7160e01b600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b6000611a33836107ca565b90506000611a56846001600160a01b031660009081526020819052604090205490565b6001600160a01b038581166000818152600b602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46111b9828483611e0b565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611b20600880546001019055565b6000611b2a611f7b565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611b5d91815260200190565b60405180910390a1905090565b60006105b2611b7761170b565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611bc987878787612065565b91509150611bd681612152565b5095945050505050565b6001600160a01b0381166000908152600a602052604090208054600181018255905b50919050565b825460009081908015611c615785611c216001836128ff565b81548110611c3f57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316611c64565b60005b6001600160e01b03169250611c7d83858763ffffffff16565b9150600081118015611cc957504386611c976001846128ff565b81548110611cb557634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff16145b15611d3757611cd7826112be565b86611ce36001846128ff565b81548110611d0157634e487b7160e01b600052603260045260246000fd5b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550611db0565b856040518060400160405280611d4c4361132b565b63ffffffff168152602001611d60856112be565b6001600160e01b039081169091528254600181018455600093845260209384902083519101805493909401519091166401000000000263ffffffff91821663ffffffff1990931692909217161790555b50935093915050565b610ae2838383611390565b610ae28383836113dd565b6001600160a01b0381166000908152600560209081526040808320918390529091205461076e91905b612355565b610a5f6006611df860025490565b816001600160a01b0316836001600160a01b031614158015611e2d5750600081115b15610ae2576001600160a01b03831615611ebb576001600160a01b0383166000908152600c602052604081208190611e68906113f885611c08565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611eb0929190918252602082015260400190565b60405180910390a250505b6001600160a01b03821615610ae2576001600160a01b0382166000908152600c602052604081208190611ef1906112b285611c08565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611f39929190918252602082015260400190565b60405180910390a25050505050565b6000611f5760028484186128df565b610725908484166128c7565b611f6d828261239f565b6111b9600d6113f883611c08565b600061067160085490565b8154600090611f97575060006105b2565b82546000905b80821015612001576000611fb18383611f48565b905084868281548110611fd457634e487b7160e01b600052603260045260246000fd5b90600052602060002001541115611fed57809150611ffb565b611ff88160016128c7565b92505b50611f9d565b600082118015612044575083856120196001856128ff565b8154811061203757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154145b1561205d576120546001836128ff565b925050506105b2565b5090506105b2565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561209c5750600090506003612149565b8460ff16601b141580156120b457508460ff16601c14155b156120c55750600090506004612149565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612119573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661214257600060019250925050612149565b9150600090505b94509492505050565b600081600481111561217457634e487b7160e01b600052602160045260246000fd5b141561217f5761076e565b60018160048111156121a157634e487b7160e01b600052602160045260246000fd5b14156121ef5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610646565b600281600481111561221157634e487b7160e01b600052602160045260246000fd5b141561225f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610646565b600381600481111561228157634e487b7160e01b600052602160045260246000fd5b14156122da5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610646565b60048160048111156122fc57634e487b7160e01b600052602160045260246000fd5b141561076e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610646565b600061235f611f7b565b90508061236b84612500565b1015610ae2578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b6001600160a01b0382166123ff5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610646565b61240b82600083611db9565b6001600160a01b0382166000908152602081905260409020548181101561247f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610646565b6001600160a01b03831660009081526020819052604081208383039055600280548492906124ae9084906128ff565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610ae283600084611dc4565b8054600090612511575060006107e6565b81548290612521906001906128ff565b8154811061253f57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490506107e6565b803560ff811681146107e657600080fd5b600060208284031215612573578081fd5b813561072581612961565b60008060408385031215612590578081fd5b823561259b81612961565b915060208301356125ab81612961565b809150509250929050565b6000806000606084860312156125ca578081fd5b83356125d581612961565b925060208401356125e581612961565b929592945050506040919091013590565b600080600080600080600060e0888a031215612610578283fd5b873561261b81612961565b9650602088013561262b81612961565b9550604088013594506060880135935061264760808901612551565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612675578182fd5b823561268081612961565b946020939093013593505050565b60008060008060008060c087890312156126a6578182fd5b86356126b181612961565b955060208701359450604087013593506126cd60608801612551565b92506080870135915060a087013590509295509295509295565b600080604083850312156126f9578182fd5b823561270481612961565b9150602083013563ffffffff811681146125ab578182fd5b60006020828403121561272d578081fd5b5051919050565b60008060008060006080868803121561274b578081fd5b853561275681612961565b9450602086013561276681612961565b935060408601359250606086013567ffffffffffffffff80821115612789578283fd5b818801915088601f83011261279c578283fd5b8135818111156127aa578384fd5b8960208285010111156127bb578384fd5b9699959850939650602001949392505050565b6000602082840312156127df578081fd5b5035919050565b6001600160a01b03878116825286166020820152604081018590526060810184905260a06080820181905281018290526000828460c084013781830160c090810191909152601f909201601f1916010195945050505050565b6000602080835283518082850152825b8181101561286b5785810183015185820160400152820161284f565b8181111561287c5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156128da576128da61294b565b500190565b6000826128fa57634e487b7160e01b81526012600452602481fd5b500490565b6000828210156129115761291161294b565b500390565b60028104600182168061292a57607f821691505b60208210811415611c0257634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461076e57600080fdfea26469706673582212208dc8715c2c6e9d78f5065b01e573422f7413d152db3a676145b73d84646110a864736f6c63430008020033476c6f62616c205472616e73616374696f6e205061796d656e7420536f6c7574696f6edec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a5780639ab24eb0116100ad578063d505accf1161007c578063d505accf1461045f578063d9d98ce414610472578063dd62ed3e14610485578063f1127ed8146104be578063f2fde38b146104fb57610206565b80639ab24eb014610413578063a457c2d714610426578063a9059cbb14610439578063c3cda5201461044c57610206565b80638e539e8c116100e95780638e539e8c146103dd57806395d89b41146103f05780639711715a146103f8578063981b24d01461040057610206565b8063715018a61461039e57806379cc6790146103a65780637ecebe00146103b95780638da5cb5b146103cc57610206565b806340c10f191161019d5780635c19a95c1161016c5780635c19a95c146103145780635cffe9de14610327578063613255ab1461033a5780636fcfff451461034d57806370a082311461037557610206565b806340c10f19146102ae57806342966c68146102c35780634ee2cd7e146102d6578063587cde1e146102e957610206565b8063313ce567116101d9578063313ce567146102715780633644e5151461028057806339509351146102885780633a46b1a81461029b57610206565b806306fdde031461020b578063095ea7b31461022957806318160ddd1461024c57806323b872dd1461025e575b600080fd5b61021361050e565b604051610220919061283f565b60405180910390f35b61023c610237366004612663565b6105a1565b6040519015158152602001610220565b6002545b604051908152602001610220565b61023c61026c3660046125b6565b6105b8565b60405160128152602001610220565b610250610667565b61023c610296366004612663565b610676565b6102506102a9366004612663565b6106b2565b6102c16102bc366004612663565b61072c565b005b6102c16102d13660046127ce565b610764565b6102506102e4366004612663565b610771565b6102fc6102f7366004612562565b6107ca565b6040516001600160a01b039091168152602001610220565b6102c1610322366004612562565b6107eb565b61023c610335366004612734565b6107f5565b610250610348366004612562565b6109e1565b61036061035b366004612562565b610a09565b60405163ffffffff9091168152602001610220565b610250610383366004612562565b6001600160a01b031660009081526020819052604090205490565b6102c1610a2b565b6102c16103b4366004612663565b610a61565b6102506103c7366004612562565b610ae7565b6009546001600160a01b03166102fc565b6102506103eb3660046127ce565b610b05565b610213610b61565b6102c1610b70565b61025061040e3660046127ce565b610ba2565b610250610421366004612562565b610bcd565b61023c610434366004612663565b610c62565b61023c610447366004612663565b610cfb565b6102c161045a36600461268e565b610d08565b6102c161046d3660046125f6565b610e3e565b610250610480366004612663565b610fa2565b61025061049336600461257e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104d16104cc3660046126e7565b611005565b60408051825163ffffffff1681526020928301516001600160e01b03169281019290925201610220565b6102c1610509366004612562565b611097565b60606003805461051d90612916565b80601f016020809104026020016040519081016040528092919081815260200182805461054990612916565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b505050505090505b90565b60006105ae338484611408565b5060015b92915050565b60006105c584848461152c565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561064f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61065c8533858403611408565b506001949350505050565b600061067161170b565b905090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105ae9185906106ad9086906128c7565b611408565b60004382106107035760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152606401610646565b6001600160a01b0383166000908152600c602052604090206107259083611836565b9392505050565b6009546001600160a01b031633146107565760405162461bcd60e51b815260040161064690612892565b610760828261190f565b5050565b61076e3382611919565b50565b6001600160a01b038216600090815260056020526040812081908190610798908590611923565b91509150816107bf576001600160a01b0385166000908152602081905260409020546107c1565b805b95945050505050565b6001600160a01b038082166000908152600b6020526040902054165b919050565b61076e3382611a28565b6000806108028686610fa2565b905061080e878661190f565b6040516323e30c8b60e01b81527f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd9906001600160a01b038916906323e30c8b906108669033908b908b9088908c908c906004016127e6565b602060405180830381600087803b15801561088057600080fd5b505af1158015610894573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b8919061271c565b146109115760405162461bcd60e51b8152602060048201526024808201527f4552433230466c6173684d696e743a20696e76616c69642072657475726e2076604482015263616c756560e01b6064820152608401610646565b6001600160a01b038716600090815260016020908152604080832030845290915290205461093f82876128c7565b8110156109a65760405162461bcd60e51b815260206004820152602f60248201527f4552433230466c6173684d696e743a20616c6c6f77616e636520646f6573206e60448201526e1bdd08185b1b1bddc81c99599d5b99608a1b6064820152608401610646565b6109c08830846109b68a866128ff565b6106ad91906128ff565b6109d3886109ce84896128c7565b611919565b506001979650505050505050565b60006001600160a01b03821630146109fa5760006105b2565b6002546105b2906000196128ff565b6001600160a01b0381166000908152600c60205260408120546105b29061132b565b6009546001600160a01b03163314610a555760405162461bcd60e51b815260040161064690612892565b610a5f6000611abe565b565b6000610a6d8333610493565b905081811015610acb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610646565b610ad88333848403611408565b610ae28383611919565b505050565b6001600160a01b0381166000908152600a60205260408120546105b2565b6000438210610b565760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152606401610646565b6105b2600d83611836565b60606004805461051d90612916565b6009546001600160a01b03163314610b9a5760405162461bcd60e51b815260040161064690612892565b61076e611b10565b6000806000610bb2846006611923565b9150915081610bc357600254610bc5565b805b949350505050565b6001600160a01b0381166000908152600c60205260408120548015610c4f576001600160a01b0383166000908152600c60205260409020610c0f6001836128ff565b81548110610c2d57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316610c52565b60005b6001600160e01b03169392505050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ce45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610646565b610cf13385858403611408565b5060019392505050565b60006105ae33848461152c565b83421115610d585760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e617475726520657870697265640000006044820152606401610646565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b038816918101919091526060810186905260808101859052600090610dd290610dca9060a00160405160208183030381529060405280519060200120611b6a565b858585611bb8565b9050610ddd81611be0565b8614610e2b5760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e6365000000000000006044820152606401610646565b610e358188611a28565b50505050505050565b83421115610e8e5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610646565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610ebd8c611be0565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610f1882611b6a565b90506000610f2882878787611bb8565b9050896001600160a01b0316816001600160a01b031614610f8b5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610646565b610f968a8a8a611408565b50505050505050505050565b60006001600160a01b0383163014610ffc5760405162461bcd60e51b815260206004820152601b60248201527f4552433230466c6173684d696e743a2077726f6e6720746f6b656e00000000006044820152606401610646565b50600092915050565b60408051808201909152600080825260208201526001600160a01b0383166000908152600c60205260409020805463ffffffff841690811061105757634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b6009546001600160a01b031633146110c15760405162461bcd60e51b815260040161064690612892565b6001600160a01b0381166111265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610646565b61076e81611abe565b61113982826111bf565b6002546001600160e01b0310156111ab5760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b6064820152608401610646565b6111b9600d6112b283611c08565b50505050565b6001600160a01b0382166112155760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610646565b61122160008383611db9565b806002600082825461123391906128c7565b90915550506001600160a01b038216600090815260208190526040812080548392906112609084906128c7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361076060008383611dc4565b600061072582846128c7565b60006001600160e01b038211156113275760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401610646565b5090565b600063ffffffff8211156113275760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608401610646565b6001600160a01b0383166113b4576113a782611dcf565b6113af611dfd565b610ae2565b6001600160a01b0382166113cb576113a783611dcf565b6113d483611dcf565b610ae282611dcf565b610ae26113e9846107ca565b6113f2846107ca565b83611e0b565b600061072582846128ff565b5490565b6001600160a01b03831661146a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610646565b6001600160a01b0382166114cb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610646565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115905760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610646565b6001600160a01b0382166115f25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610646565b6115fd838383611db9565b6001600160a01b038316600090815260208190526040902054818110156116755760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610646565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906116ac9084906128c7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116f891815260200190565b60405180910390a36111b9848484611dc4565b6000306001600160a01b037f0000000000000000000000009427a2a738affbc5880f0646b5251069c022e5251614801561176457507f000000000000000000000000000000000000000000000000000000000000050546145b1561179057507fdd98947c110900b9bbcd3bb506875fae45e1aa3ba6301eab37dc70531707c9f561059e565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527fe5469277bd5e2305b8e546b555192e176071007a9d1309475adcd3851b0667d6828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012061059e565b8154600090815b818110156118a85760006118518284611f48565b90508486828154811061187457634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff161115611894578092506118a2565b61189f8160016128c7565b91505b5061183d565b81156118fa57846118ba6001846128ff565b815481106118d857634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b03166118fd565b60005b6001600160e01b031695945050505050565b610760828261112f565b6107608282611f63565b6000806000841161196f5760405162461bcd60e51b815260206004820152601660248201527504552433230536e617073686f743a20696420697320360541b6044820152606401610646565b611977611f7b565b8411156119c65760405162461bcd60e51b815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006044820152606401610646565b60006119d28486611f86565b84549091508114156119eb576000809250925050611a21565b6001846001018281548110611a1057634e487b7160e01b600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b6000611a33836107ca565b90506000611a56846001600160a01b031660009081526020819052604090205490565b6001600160a01b038581166000818152600b602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46111b9828483611e0b565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611b20600880546001019055565b6000611b2a611f7b565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611b5d91815260200190565b60405180910390a1905090565b60006105b2611b7761170b565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611bc987878787612065565b91509150611bd681612152565b5095945050505050565b6001600160a01b0381166000908152600a602052604090208054600181018255905b50919050565b825460009081908015611c615785611c216001836128ff565b81548110611c3f57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015464010000000090046001600160e01b0316611c64565b60005b6001600160e01b03169250611c7d83858763ffffffff16565b9150600081118015611cc957504386611c976001846128ff565b81548110611cb557634e487b7160e01b600052603260045260246000fd5b60009182526020909120015463ffffffff16145b15611d3757611cd7826112be565b86611ce36001846128ff565b81548110611d0157634e487b7160e01b600052603260045260246000fd5b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550611db0565b856040518060400160405280611d4c4361132b565b63ffffffff168152602001611d60856112be565b6001600160e01b039081169091528254600181018455600093845260209384902083519101805493909401519091166401000000000263ffffffff91821663ffffffff1990931692909217161790555b50935093915050565b610ae2838383611390565b610ae28383836113dd565b6001600160a01b0381166000908152600560209081526040808320918390529091205461076e91905b612355565b610a5f6006611df860025490565b816001600160a01b0316836001600160a01b031614158015611e2d5750600081115b15610ae2576001600160a01b03831615611ebb576001600160a01b0383166000908152600c602052604081208190611e68906113f885611c08565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611eb0929190918252602082015260400190565b60405180910390a250505b6001600160a01b03821615610ae2576001600160a01b0382166000908152600c602052604081208190611ef1906112b285611c08565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611f39929190918252602082015260400190565b60405180910390a25050505050565b6000611f5760028484186128df565b610725908484166128c7565b611f6d828261239f565b6111b9600d6113f883611c08565b600061067160085490565b8154600090611f97575060006105b2565b82546000905b80821015612001576000611fb18383611f48565b905084868281548110611fd457634e487b7160e01b600052603260045260246000fd5b90600052602060002001541115611fed57809150611ffb565b611ff88160016128c7565b92505b50611f9d565b600082118015612044575083856120196001856128ff565b8154811061203757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154145b1561205d576120546001836128ff565b925050506105b2565b5090506105b2565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561209c5750600090506003612149565b8460ff16601b141580156120b457508460ff16601c14155b156120c55750600090506004612149565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612119573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661214257600060019250925050612149565b9150600090505b94509492505050565b600081600481111561217457634e487b7160e01b600052602160045260246000fd5b141561217f5761076e565b60018160048111156121a157634e487b7160e01b600052602160045260246000fd5b14156121ef5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610646565b600281600481111561221157634e487b7160e01b600052602160045260246000fd5b141561225f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610646565b600381600481111561228157634e487b7160e01b600052602160045260246000fd5b14156122da5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610646565b60048160048111156122fc57634e487b7160e01b600052602160045260246000fd5b141561076e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610646565b600061235f611f7b565b90508061236b84612500565b1015610ae2578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b6001600160a01b0382166123ff5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610646565b61240b82600083611db9565b6001600160a01b0382166000908152602081905260409020548181101561247f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610646565b6001600160a01b03831660009081526020819052604081208383039055600280548492906124ae9084906128ff565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610ae283600084611dc4565b8054600090612511575060006107e6565b81548290612521906001906128ff565b8154811061253f57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490506107e6565b803560ff811681146107e657600080fd5b600060208284031215612573578081fd5b813561072581612961565b60008060408385031215612590578081fd5b823561259b81612961565b915060208301356125ab81612961565b809150509250929050565b6000806000606084860312156125ca578081fd5b83356125d581612961565b925060208401356125e581612961565b929592945050506040919091013590565b600080600080600080600060e0888a031215612610578283fd5b873561261b81612961565b9650602088013561262b81612961565b9550604088013594506060880135935061264760808901612551565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612675578182fd5b823561268081612961565b946020939093013593505050565b60008060008060008060c087890312156126a6578182fd5b86356126b181612961565b955060208701359450604087013593506126cd60608801612551565b92506080870135915060a087013590509295509295509295565b600080604083850312156126f9578182fd5b823561270481612961565b9150602083013563ffffffff811681146125ab578182fd5b60006020828403121561272d578081fd5b5051919050565b60008060008060006080868803121561274b578081fd5b853561275681612961565b9450602086013561276681612961565b935060408601359250606086013567ffffffffffffffff80821115612789578283fd5b818801915088601f83011261279c578283fd5b8135818111156127aa578384fd5b8960208285010111156127bb578384fd5b9699959850939650602001949392505050565b6000602082840312156127df578081fd5b5035919050565b6001600160a01b03878116825286166020820152604081018590526060810184905260a06080820181905281018290526000828460c084013781830160c090810191909152601f909201601f1916010195945050505050565b6000602080835283518082850152825b8181101561286b5785810183015185820160400152820161284f565b8181111561287c5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156128da576128da61294b565b500190565b6000826128fa57634e487b7160e01b81526012600452602481fd5b500490565b6000828210156129115761291161294b565b500390565b60028104600182168061292a57607f821691505b60208210811415611c0257634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461076e57600080fdfea26469706673582212208dc8715c2c6e9d78f5065b01e573422f7413d152db3a676145b73d84646110a864736f6c63430008020033
Deployed Bytecode Sourcemap
79514:1324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43035:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45202:169;;;;;;:::i;:::-;;:::i;:::-;;;6366:14:1;;6359:22;6341:41;;6329:2;6314:18;45202:169:0;6296:92:1;44155:108:0;44243:12;;44155:108;;;6539:25:1;;;6527:2;6512:18;44155:108:0;6494:76:1;45853:492:0;;;;;;:::i;:::-;;:::i;43997:93::-;;;44080:2;21827:36:1;;21815:2;21800:18;43997:93:0;21782:87:1;58809:115:0;;;:::i;46754:215::-;;;;;;:::i;:::-;;:::i;62578:251::-;;;;;;:::i;:::-;;:::i;79947:95::-;;;;;;:::i;:::-;;:::i;:::-;;78665:91;;;;;;:::i;:::-;;:::i;74196:266::-;;;;;;:::i;:::-;;:::i;61978:119::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5415:32:1;;;5397:51;;5385:2;5370:18;61978:119:0;5352:102:1;65017:105:0;;;;;;:::i;:::-;;:::i;55567:797::-;;;;;;:::i;:::-;;:::i;53912:170::-;;;;;;:::i;:::-;;:::i;61734:151::-;;;;;;:::i;:::-;;:::i;:::-;;;21662:10:1;21650:23;;;21632:42;;21620:2;21605:18;61734:151:0;21587:93:1;44326:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;44427:18:0;44400:7;44427:18;;;;;;;;;;;;44326:127;36438:103;;;:::i;79075:368::-;;;;;;:::i;:::-;;:::i;58551:128::-;;;;;;:::i;:::-;;:::i;35787:87::-;35860:6;;-1:-1:-1;;;;;35860:6:0;35787:87;;63118:242;;;;;;:::i;:::-;;:::i;43254:104::-;;;:::i;79872:67::-;;;:::i;74566:234::-;;;;;;:::i;:::-;;:::i;62181:195::-;;;;;;:::i;:::-;;:::i;47472:413::-;;;;;;:::i;:::-;;:::i;44666:175::-;;;;;;:::i;:::-;;:::i;65204:582::-;;;;;;:::i;:::-;;:::i;57840:645::-;;;;;;:::i;:::-;;:::i;54481:297::-;;;;;;:::i;:::-;;:::i;44904:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;45020:18:0;;;44993:7;45020:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;44904:151;61504:150;;;;;;:::i;:::-;;:::i;:::-;;;;20926:13:1;;20941:10;20922:30;20904:49;;21013:4;21001:17;;;20995:24;-1:-1:-1;;;;;20991:50:1;20969:20;;;20962:80;;;;20877:18;61504:150:0;20859:189:1;36696:201:0;;;;;;:::i;:::-;;:::i;43035:100::-;43089:13;43122:5;43115:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43035:100;;:::o;45202:169::-;45285:4;45302:39;34585:10;45325:7;45334:6;45302:8;:39::i;:::-;-1:-1:-1;45359:4:0;45202:169;;;;;:::o;45853:492::-;45993:4;46010:36;46020:6;46028:9;46039:6;46010:9;:36::i;:::-;-1:-1:-1;;;;;46086:19:0;;46059:24;46086:19;;;:11;:19;;;;;;;;34585:10;46086:33;;;;;;;;46138:26;;;;46130:79;;;;-1:-1:-1;;;46130:79:0;;15751:2:1;46130:79:0;;;15733:21:1;15790:2;15770:18;;;15763:30;15829:34;15809:18;;;15802:62;-1:-1:-1;;;15880:18:1;;;15873:38;15928:19;;46130:79:0;;;;;;;;;46245:57;46254:6;34585:10;46295:6;46276:16;:25;46245:8;:57::i;:::-;-1:-1:-1;46333:4:0;;45853:492;-1:-1:-1;;;;45853:492:0:o;58809:115::-;58869:7;58896:20;:18;:20::i;:::-;58889:27;;58809:115;:::o;46754:215::-;34585:10;46842:4;46891:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;46891:34:0;;;;;;;;;;46842:4;;46859:80;;46882:7;;46891:47;;46928:10;;46891:47;:::i;:::-;46859:8;:80::i;62578:251::-;62659:7;62701:12;62687:11;:26;62679:70;;;;-1:-1:-1;;;62679:70:0;;10415:2:1;62679:70:0;;;10397:21:1;10454:2;10434:18;;;10427:30;10493:33;10473:18;;;10466:61;10544:18;;62679:70:0;10387:181:1;62679:70:0;-1:-1:-1;;;;;62786:21:0;;;;;;:12;:21;;;;;62767:54;;62809:11;62767:18;:54::i;:::-;62760:61;62578:251;-1:-1:-1;;;62578:251:0:o;79947:95::-;35860:6;;-1:-1:-1;;;;;35860:6:0;34585:10;36007:23;35999:68;;;;-1:-1:-1;;;35999:68:0;;;;;;;:::i;:::-;80017:17:::1;80023:2;80027:6;80017:5;:17::i;:::-;79947:95:::0;;:::o;78665:91::-;78721:27;34585:10;78741:6;78721:5;:27::i;:::-;78665:91;:::o;74196:266::-;-1:-1:-1;;;;;74360:33:0;;74283:7;74360:33;;;:24;:33;;;;;74283:7;;;;74339:55;;74348:10;;74339:8;:55::i;:::-;74303:91;;;;74414:11;:40;;-1:-1:-1;;;;;44427:18:0;;44400:7;44427:18;;;;;;;;;;;74414:40;;;74428:5;74414:40;74407:47;74196:266;-1:-1:-1;;;;;74196:266:0:o;61978:119::-;-1:-1:-1;;;;;62070:19:0;;;62043:7;62070:19;;;:10;:19;;;;;;;61978:119;;;;:::o;65017:105::-;65080:34;34585:10;65104:9;65080;:34::i;55567:797::-;55746:4;55763:11;55777:23;55786:5;55793:6;55777:8;:23::i;:::-;55763:37;;55811:32;55825:8;55836:6;55811:5;:32::i;:::-;55876:58;;-1:-1:-1;;;55876:58:0;;53650:45;;-1:-1:-1;;;;;55876:20:0;;;;;:58;;55897:10;;55909:5;;55916:6;;55924:3;;55929:4;;;;55876:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:75;55854:161;;;;-1:-1:-1;;;55854:161:0;;14228:2:1;55854:161:0;;;14210:21:1;14267:2;14247:18;;;14240:30;14306:34;14286:18;;;14279:62;-1:-1:-1;;;14357:18:1;;;14350:34;14401:19;;55854:161:0;14200:226:1;55854:161:0;-1:-1:-1;;;;;45020:18:0;;56026:24;45020:18;;;:11;:18;;;;;;;;56090:4;45020:27;;;;;;;;56135:12;56144:3;56135:6;:12;:::i;:::-;56115:16;:32;;56107:92;;;;-1:-1:-1;;;56107:92:0;;19722:2:1;56107:92:0;;;19704:21:1;19761:2;19741:18;;;19734:30;19800:34;19780:18;;;19773:62;-1:-1:-1;;;19851:18:1;;;19844:45;19906:19;;56107:92:0;19694:237:1;56107:92:0;56210:75;56227:8;56246:4;56281:3;56253:25;56272:6;56253:16;:25;:::i;:::-;:31;;;;:::i;56210:75::-;56296:38;56310:8;56321:12;56330:3;56321:6;:12;:::i;:::-;56296:5;:38::i;:::-;-1:-1:-1;56352:4:0;;55567:797;-1:-1:-1;;;;;;;55567:797:0:o;53912:170::-;53979:7;-1:-1:-1;;;;;54006:22:0;;54023:4;54006:22;:68;;54073:1;54006:68;;;44243:12;;54031:39;;-1:-1:-1;;54031:39:0;:::i;61734:151::-;-1:-1:-1;;;;;61848:21:0;;61804:6;61848:21;;;:12;:21;;;;;:28;61830:47;;:17;:47::i;36438:103::-;35860:6;;-1:-1:-1;;;;;35860:6:0;34585:10;36007:23;35999:68;;;;-1:-1:-1;;;35999:68:0;;;;;;;:::i;:::-;36503:30:::1;36530:1;36503:18;:30::i;:::-;36438:103::o:0;79075:368::-;79152:24;79179:32;79189:7;34585:10;79198:12;34505:98;79179:32;79152:59;;79250:6;79230:16;:26;;79222:75;;;;-1:-1:-1;;;79222:75:0;;17346:2:1;79222:75:0;;;17328:21:1;17385:2;17365:18;;;17358:30;17424:34;17404:18;;;17397:62;-1:-1:-1;;;17475:18:1;;;17468:34;17519:19;;79222:75:0;17318:226:1;79222:75:0;79333:58;79342:7;34585:10;79384:6;79365:16;:25;79333:8;:58::i;:::-;79413:22;79419:7;79428:6;79413:5;:22::i;:::-;79075:368;;;:::o;58551:128::-;-1:-1:-1;;;;;58647:14:0;;58620:7;58647:14;;;:7;:14;;;;;30451;58647:24;30359:114;63118:242;63188:7;63230:12;63216:11;:26;63208:70;;;;-1:-1:-1;;;63208:70:0;;10415:2:1;63208:70:0;;;10397:21:1;10454:2;10434:18;;;10427:30;10493:33;10473:18;;;10466:61;10544:18;;63208:70:0;10387:181:1;63208:70:0;63296:56;63315:23;63340:11;63296:18;:56::i;43254:104::-;43310:13;43343:7;43336:14;;;;;:::i;79872:67::-;35860:6;;-1:-1:-1;;;;;35860:6:0;34585:10;36007:23;35999:68;;;;-1:-1:-1;;;35999:68:0;;;;;;;:::i;:::-;79920:11:::1;:9;:11::i;74566:234::-:0;74638:7;74659:16;74677:13;74694:43;74703:10;74715:21;74694:8;:43::i;:::-;74658:79;;;;74757:11;:35;;44243:12;;74757:35;;;74771:5;74757:35;74750:42;74566:234;-1:-1:-1;;;;74566:234:0:o;62181:195::-;-1:-1:-1;;;;;62271:21:0;;62237:7;62271:21;;;:12;:21;;;;;:28;62317:8;;:51;;-1:-1:-1;;;;;62332:21:0;;;;;;:12;:21;;;;;62354:7;62360:1;62354:3;:7;:::i;:::-;62332:30;;;;;;-1:-1:-1;;;62332:30:0;;;;;;;;;;;;;;;;;;:36;;;;-1:-1:-1;;;;;62332:36:0;62317:51;;;62328:1;62317:51;-1:-1:-1;;;;;62310:58:0;;62181:195;-1:-1:-1;;;62181:195:0:o;47472:413::-;34585:10;47565:4;47609:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;47609:34:0;;;;;;;;;;47662:35;;;;47654:85;;;;-1:-1:-1;;;47654:85:0;;20138:2:1;47654:85:0;;;20120:21:1;20177:2;20157:18;;;20150:30;20216:34;20196:18;;;20189:62;-1:-1:-1;;;20267:18:1;;;20260:35;20312:19;;47654:85:0;20110:227:1;47654:85:0;47775:67;34585:10;47798:7;47826:15;47807:16;:34;47775:8;:67::i;:::-;-1:-1:-1;47873:4:0;;47472:413;-1:-1:-1;;;47472:413:0:o;44666:175::-;44752:4;44769:42;34585:10;44793:9;44804:6;44769:9;:42::i;65204:582::-;65422:6;65403:15;:25;;65395:67;;;;-1:-1:-1;;;65395:67:0;;10775:2:1;65395:67:0;;;10757:21:1;10814:2;10794:18;;;10787:30;10853:31;10833:18;;;10826:59;10902:18;;65395:67:0;10747:179:1;65395:67:0;65545:58;;;60755:71;65545:58;;;7402:25:1;-1:-1:-1;;;;;7463:32:1;;7443:18;;;7436:60;;;;7512:18;;;7505:34;;;7555:18;;;7548:34;;;65473:14:0;;65490:174;;65518:87;;7374:19:1;;65545:58:0;;;;;;;;;;;;65535:69;;;;;;65518:16;:87::i;:::-;65620:1;65636;65652;65490:13;:174::i;:::-;65473:191;;65692:17;65702:6;65692:9;:17::i;:::-;65683:5;:26;65675:64;;;;-1:-1:-1;;;65675:64:0;;11896:2:1;65675:64:0;;;11878:21:1;11935:2;11915:18;;;11908:30;11974:27;11954:18;;;11947:55;12019:18;;65675:64:0;11868:175:1;65675:64:0;65750:28;65760:6;65768:9;65750;:28::i;:::-;65204:582;;;;;;;:::o;57840:645::-;58084:8;58065:15;:27;;58057:69;;;;-1:-1:-1;;;58057:69:0;;13060:2:1;58057:69:0;;;13042:21:1;13099:2;13079:18;;;13072:30;13138:31;13118:18;;;13111:59;13187:18;;58057:69:0;13032:179:1;58057:69:0;58139:18;58181:16;58199:5;58206:7;58215:5;58222:16;58232:5;58222:9;:16::i;:::-;58170: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;;58170:79:0;;;;;;;;;;;;58160:90;;;;;;58139:111;;58263:12;58278:28;58295:10;58278:16;:28::i;:::-;58263:43;;58319:14;58336:28;58350:4;58356:1;58359;58362;58336:13;:28::i;:::-;58319:45;;58393:5;-1:-1:-1;;;;;58383:15:0;:6;-1:-1:-1;;;;;58383:15:0;;58375:58;;;;-1:-1:-1;;;58375:58:0;;15392:2:1;58375:58:0;;;15374:21:1;15431:2;15411:18;;;15404:30;15470:32;15450:18;;;15443:60;15520:18;;58375:58:0;15364:180:1;58375:58:0;58446:31;58455:5;58462:7;58471:5;58446:8;:31::i;:::-;57840:645;;;;;;;;;;:::o;54481:297::-;54568:7;-1:-1:-1;;;;;54596:22:0;;54613:4;54596:22;54588:62;;;;-1:-1:-1;;;54588:62:0;;14633:2:1;54588:62:0;;;14615:21:1;14672:2;14652:18;;;14645:30;14711:29;14691:18;;;14684:57;14758:18;;54588:62:0;14605:177:1;54588:62:0;-1:-1:-1;54769:1:0;54481:297;;;;:::o;61504:150::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;61620:21:0;;;;;;:12;:21;;;;;:26;;;;;;;;;;-1:-1:-1;;;61620:26:0;;;;;;;;;;;;;;;;;;61613:33;;;;;;;;;61620:26;;61613:33;;;;;;;;;-1:-1:-1;;;;;61613:33:0;;;;;;;;;61504:150;-1:-1:-1;;;61504:150:0:o;36696:201::-;35860:6;;-1:-1:-1;;;;;35860:6:0;34585:10;36007:23;35999:68;;;;-1:-1:-1;;;35999:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36785:22:0;::::1;36777:73;;;::::0;-1:-1:-1;;;36777:73:0;;12250:2:1;36777: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;;36777:73:0::1;12222:228:1::0;36777:73:0::1;36861:28;36880:8;36861:18;:28::i;66092:290::-:0;66177:28;66189:7;66198:6;66177:11;:28::i;:::-;44243:12;;-1:-1:-1;;;;;;66224:29:0;66216:90;;;;-1:-1:-1;;;66216:90:0;;16160:2:1;66216:90:0;;;16142:21:1;16199:2;16179:18;;;16172:30;16238:34;16218:18;;;16211:62;-1:-1:-1;;;16289:18:1;;;16282:46;16345:19;;66216:90:0;16132:238:1;66216:90:0;66319:55;66336:23;66361:4;66367:6;66319:16;:55::i;:::-;;;66092:290;;:::o;49395:399::-;-1:-1:-1;;;;;49479:21:0;;49471:65;;;;-1:-1:-1;;;49471:65:0;;20544:2:1;49471:65:0;;;20526:21:1;20583:2;20563:18;;;20556:30;20622:33;20602:18;;;20595:61;20673:18;;49471:65:0;20516:181:1;49471:65:0;49549:49;49578:1;49582:7;49591:6;49549:20;:49::i;:::-;49627:6;49611:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;49644:18:0;;:9;:18;;;;;;;;;;:28;;49666:6;;49644:9;:28;;49666:6;;49644:28;:::i;:::-;;;;-1:-1:-1;;49688:37:0;;6539:25:1;;;-1:-1:-1;;;;;49688:37:0;;;49705:1;;49688:37;;6527:2:1;6512:18;49688:37:0;;;;;;;49738:48;49766:1;49770:7;49779:6;49738:19;:48::i;68936:98::-;68994:7;69021:5;69025:1;69021;:5;:::i;3876:195::-;3933:7;-1:-1:-1;;;;;3961:26:0;;;3953:78;;;;-1:-1:-1;;;3953:78:0;;16938:2:1;3953:78:0;;;16920:21:1;16977:2;16957:18;;;16950:30;17016:34;16996:18;;;16989:62;-1:-1:-1;;;17067:18:1;;;17060:37;17114:19;;3953:78:0;16910: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;;18559:2:1;5921:76:0;;;18541:21:1;18598:2;18578:18;;;18571:30;18637:34;18617:18;;;18610:62;-1:-1:-1;;;18688:18:1;;;18681:36;18734:19;;5921:76:0;18531:228:1;75017:622:0;-1:-1:-1;;;;;75221:18:0;;75217:415;;75277:26;75300:2;75277:22;:26::i;:::-;75318:28;:26;:28::i;:::-;75217:415;;;-1:-1:-1;;;;;75368:16:0;;75364:268;;75422:28;75445:4;75422:22;:28::i;75364:268::-;75551:28;75574:4;75551:22;:28::i;:::-;75594:26;75617:2;75594:22;:26::i;66810:262::-;67008:56;67025:15;67035:4;67025:9;:15::i;:::-;67042:13;67052:2;67042:9;:13::i;:::-;67057:6;67008:16;:56::i;69042:103::-;69105:7;69132:5;69136:1;69132;:5;:::i;30359:114::-;30451:14;;30359:114::o;51156:380::-;-1:-1:-1;;;;;51292:19:0;;51284:68;;;;-1:-1:-1;;;51284:68:0;;18966:2:1;51284:68:0;;;18948:21:1;19005:2;18985:18;;;18978:30;19044:34;19024:18;;;19017:62;-1:-1:-1;;;19095:18:1;;;19088:34;19139:19;;51284:68:0;18938:226:1;51284:68:0;-1:-1:-1;;;;;51371:21:0;;51363:68;;;;-1:-1:-1;;;51363:68:0;;12657:2:1;51363: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;;51363:68:0;12629:224:1;51363:68:0;-1:-1:-1;;;;;51444:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;51496:32;;6539:25:1;;;51496:32:0;;6512:18:1;51496:32:0;;;;;;;51156:380;;;:::o;48375:733::-;-1:-1:-1;;;;;48515:20:0;;48507:70;;;;-1:-1:-1;;;48507:70:0;;18153:2:1;48507:70:0;;;18135:21:1;18192:2;18172:18;;;18165:30;18231:34;18211:18;;;18204:62;-1:-1:-1;;;18282:18:1;;;18275:35;18327:19;;48507:70:0;18125:227:1;48507:70:0;-1:-1:-1;;;;;48596:23:0;;48588:71;;;;-1:-1:-1;;;48588:71:0;;10011:2:1;48588:71: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;;48588:71:0;9983:225:1;48588:71:0;48672:47;48693:6;48701:9;48712:6;48672:20;:47::i;:::-;-1:-1:-1;;;;;48756:17:0;;48732:21;48756:17;;;;;;;;;;;48792:23;;;;48784:74;;;;-1:-1:-1;;;48784:74:0;;13418:2:1;48784:74:0;;;13400:21:1;13457:2;13437:18;;;13430:30;13496:34;13476:18;;;13469:62;-1:-1:-1;;;13547:18:1;;;13540:36;13593:19;;48784:74:0;13390:228:1;48784:74:0;-1:-1:-1;;;;;48894:17:0;;;:9;:17;;;;;;;;;;;48914:22;;;48894:42;;48958:20;;;;;;;;:30;;48930:6;;48894:9;48958:30;;48930:6;;48958:30;:::i;:::-;;;;;;;;49023:9;-1:-1:-1;;;;;49006:35:0;49015:6;-1:-1:-1;;;;;49006:35:0;;49034:6;49006:35;;;;6539:25:1;;6527:2;6512:18;;6494:76;49006:35:0;;;;;;;;49054:46;49074:6;49082:9;49093:6;49054:19;:46::i;25709:314::-;25762:7;25794:4;-1:-1:-1;;;;;25803:12:0;25786:29;;:66;;;;;25836:16;25819:13;:33;25786:66;25782:234;;;-1:-1:-1;25876:24:0;25869:31;;25782:234;-1:-1:-1;26212:73:0;;;25962:10;26212:73;;;;7852:25:1;;;;25974:12:0;7893:18:1;;;7886:34;25988:15:0;7936:18:1;;;7929:34;26256:13:0;7979:18:1;;;7972:34;26279:4:0;8022:19:1;;;;8015:61;;;;26212:73:0;;;;;;;;;;7824:19:1;;;;26212:73:0;;;26202:84;;;;;25933:71;;63449:1482;64582:12;;63548:7;;;64631:236;64644:4;64638:3;:10;64631:236;;;64665:11;64679:23;64692:3;64697:4;64679:12;:23::i;:::-;64665:37;;64744:11;64721:5;64727:3;64721:10;;;;;;-1:-1:-1;;;64721:10:0;;;;;;;;;;;;;;;;;;:20;;;:34;64717:139;;;64783:3;64776:10;;64717:139;;;64833:7;:3;64839:1;64833:7;:::i;:::-;64827:13;;64717:139;64631:236;;;;64886:9;;:37;;64902:5;64908:8;64915:1;64908:4;:8;:::i;:::-;64902:15;;;;;;-1:-1:-1;;;64902:15:0;;;;;;;;;;;;;;;;;;:21;;;;-1:-1:-1;;;;;64902:21:0;64886:37;;;64898:1;64886:37;-1:-1:-1;;;;;64879:44:0;;63449:1482;-1:-1:-1;;;;;63449:1482:0:o;80527:145::-;80641:23;80653:2;80657:6;80641:11;:23::i;80680:155::-;80799:28;80811:7;80820:6;80799:11;:28::i;75647:1619::-;75736:4;75742:7;75783:1;75770:10;:14;75762:49;;;;-1:-1:-1;;;75762:49:0;;19371:2:1;75762:49:0;;;19353:21:1;19410:2;19390:18;;;19383:30;-1:-1:-1;;;19429:18:1;;;19422:52;19491:18;;75762:49:0;19343:172:1;75762:49:0;75844:23;:21;:23::i;:::-;75830:10;:37;;75822:79;;;;-1:-1:-1;;;75822:79:0;;9653:2:1;75822:79:0;;;9635:21:1;9692:2;9672:18;;;9665:30;9731:31;9711:18;;;9704:59;9780:18;;75822:79:0;9625:179:1;75822:79:0;77040:13;77056:40;:9;77085:10;77056:28;:40::i;:::-;77122:20;;77040:56;;-1:-1:-1;77113:29:0;;77109:150;;;77167:5;77174:1;77159:17;;;;;;;77109:150;77217:4;77223:9;:16;;77240:5;77223:23;;;;;;-1:-1:-1;;;77223:23:0;;;;;;;;;;;;;;;;;77209:38;;;;;75647:1619;;;;;;:::o;67236:388::-;67321:23;67347:20;67357:9;67347;:20::i;:::-;67321:46;;67378:24;67405:20;67415:9;-1:-1:-1;;;;;44427:18:0;44400:7;44427:18;;;;;;;;;;;;44326:127;67405:20;-1:-1:-1;;;;;67436:21:0;;;;;;;:10;:21;;;;;;:33;;-1:-1:-1;;;;;;67436:33:0;;;;;;;;;;67487:54;;67378:47;;-1:-1:-1;67436:33:0;67487:54;;;;;;67436:21;67487:54;67554:62;67571:15;67588:9;67599:16;67554;:62::i;37057:191::-;37150:6;;;-1:-1:-1;;;;;37167:17:0;;;-1:-1:-1;;;;;;37167:17:0;;;;;;;37200:40;;37150:6;;;37167:17;37150:6;;37200:40;;37131:16;;37200:40;37057:191;;:::o;73668:223::-;73715:7;73735:30;:18;30570:19;;30588:1;30570:19;;;30481:127;73735:30;73778:17;73798:23;:21;:23::i;:::-;73778:43;;73837:19;73846:9;73837:19;;;;6539:25:1;;6527:2;6512:18;;6494:76;73837:19:0;;;;;;;;73874:9;-1:-1:-1;73668:223:0;:::o;26936:167::-;27013:7;27040:55;27062:20;:18;:20::i;:::-;27084:10;22400:57;;-1:-1:-1;;;22400:57:0;;;5112:27:1;5155:11;;;5148:27;;;5191:12;;;5184:28;;;22363:7:0;;5228:12:1;;22400:57:0;;;;;;;;;;;;22390:68;;;;;;22383:75;;22270:196;;;;;20579:279;20707:7;20728:17;20747:18;20769:25;20780:4;20786:1;20789;20792;20769:10;:25::i;:::-;20727:67;;;;20805:18;20817:5;20805:11;:18::i;:::-;-1:-1:-1;20841:9:0;20579:279;-1:-1:-1;;;;;20579:279:0:o;59062:207::-;-1:-1:-1;;;;;59183:14:0;;59122:15;59183:14;;;:7;:14;;;;;30451;;30588:1;30570:19;;;;30451:14;59244:17;59062:207;;;;:::o;68283:645::-;68520:12;;68457:17;;;;68555:8;;:35;;68570:5;68576:7;68582:1;68576:3;:7;:::i;:::-;68570:14;;;;;;-1:-1:-1;;;68570:14:0;;;;;;;;;;;;;;;;;;:20;;;;-1:-1:-1;;;;;68570:20:0;68555:35;;;68566:1;68555:35;-1:-1:-1;;;;;68543:47:0;;;68613:20;68616:9;68627:5;68613:2;:20;;:::i;:::-;68601:32;;68656:1;68650:3;:7;:51;;;;-1:-1:-1;68689:12:0;68661:5;68667:7;68673:1;68667:3;:7;:::i;:::-;68661:14;;;;;;-1:-1:-1;;;68661:14:0;;;;;;;;;;;;;;;;;;:24;;;:40;68650:51;68646:275;;;68741:29;68760:9;68741:18;:29::i;:::-;68718:5;68724:7;68730:1;68724:3;:7;:::i;:::-;68718:14;;;;;;-1:-1:-1;;;68718:14:0;;;;;;;;;;;;;;;;:20;;;:52;;;;;-1:-1:-1;;;;;68718:52:0;;;;;-1:-1:-1;;;;;68718:52:0;;;;;;68646:275;;;68803:5;68814:94;;;;;;;;68837:31;68855:12;68837:17;:31::i;:::-;68814:94;;;;;;68877:29;68896:9;68877:18;:29::i;:::-;-1:-1:-1;;;;;68814:94:0;;;;;;68803:106;;;;;;;-1:-1:-1;68803:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;68803:106:0;;;;;;;;;;;68646:275;68283:645;;;;;;;:::o;80120:198::-;80266:44;80293:4;80299:2;80303:6;80266:26;:44::i;80326:193::-;80468:43;80494:4;80500:2;80504:6;80468:25;:43::i;77274:146::-;-1:-1:-1;;;;;77358:33:0;;;;;;:24;:33;;;;;;;;44427:18;;;;;;;;77342:70;;77358:33;77393:18;77342:15;:70::i;77428:118::-;77485:53;77501:21;77524:13;44243:12;;44155:108;;67632:643;67764:3;-1:-1:-1;;;;;67757:10:0;:3;-1:-1:-1;;;;;67757:10:0;;;:24;;;;;67780:1;67771:6;:10;67757:24;67753:515;;;-1:-1:-1;;;;;67802:17:0;;;67798:224;;-1:-1:-1;;;;;67898:17:0;;67841;67898;;;:12;:17;;;;;67841;;67881:54;;67917:9;67928:6;67881:16;:54::i;:::-;67840:95;;;;67980:3;-1:-1:-1;;;;;67959:47:0;;67985:9;67996;67959:47;;;;;;21409:25:1;;;21465:2;21450:18;;21443:34;21397:2;21382:18;;21364:119;67959:47:0;;;;;;;;67798:224;;;-1:-1:-1;;;;;68042:17:0;;;68038:219;;-1:-1:-1;;;;;68138:17:0;;68081;68138;;;:12;:17;;;;;68081;;68121:49;;68157:4;68163:6;68121:16;:49::i;:::-;68080:90;;;;68215:3;-1:-1:-1;;;;;68194:47:0;;68220:9;68231;68194:47;;;;;;21409:25:1;;;21465:2;21450:18;;21443:34;21397:2;21382:18;;21364:119;68194:47:0;;;;;;;;68038:219;;67632:643;;;:::o;31673:156::-;31735:7;31810:11;31820:1;31811:5;;;31810:11;:::i;:::-;31800:21;;31801:5;;;31800:21;:::i;66476:194::-;66561:28;66573:7;66582:6;66561:11;:28::i;:::-;66602:60;66619:23;66644:9;66655:6;66602:16;:60::i;73957:127::-;74021:7;74048:28;:18;30451:14;;30359:114;32895:918;33008:12;;32984:7;;33004:58;;-1:-1:-1;33049:1:0;33042:8;;33004:58;33115:12;;33074:11;;33140:424;33153:4;33147:3;:10;33140:424;;;33174:11;33188:23;33201:3;33206:4;33188:12;:23::i;:::-;33174:37;;33445:7;33432:5;33438:3;33432:10;;;;;;-1:-1:-1;;;33432:10:0;;;;;;;;;;;;;;;;;:20;33428:125;;;33480:3;33473:10;;33428:125;;;33530:7;:3;33536:1;33530:7;:::i;:::-;33524:13;;33428:125;33140:424;;;;33690:1;33684:3;:7;:36;;;;-1:-1:-1;33713:7:0;33695:5;33701:7;33707:1;33701:3;:7;:::i;:::-;33695:14;;;;;;-1:-1:-1;;;33695:14:0;;;;;;;;;;;;;;;;;:25;33684:36;33680:126;;;33744:7;33750:1;33744:3;:7;:::i;:::-;33737:14;;;;;;33680:126;-1:-1:-1;33791:3:0;-1:-1:-1;33784:10:0;;18808:1632;18939:7;;19873:66;19860:79;;19856:163;;;-1:-1:-1;19972:1:0;;-1:-1:-1;19976:30:0;19956:51;;19856:163;20033:1;:7;;20038:2;20033:7;;:18;;;;;20044:1;:7;;20049:2;20044:7;;20033:18;20029:102;;;-1:-1:-1;20084:1:0;;-1:-1:-1;20088:30:0;20068:51;;20029:102;20245:24;;;20228:14;20245:24;;;;;;;;;8314:25:1;;;8387:4;8375:17;;8355:18;;;8348:45;;;;8409:18;;;8402:34;;;8452:18;;;8445:34;;;20245:24:0;;8286:19:1;;20245:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20245:24:0;;-1:-1:-1;;20245:24:0;;;-1:-1:-1;;;;;;;20284:20:0;;20280:103;;20337:1;20341:29;20321:50;;;;;;;20280:103;20403:6;-1:-1:-1;20411:20:0;;-1:-1:-1;18808:1632:0;;;;;;;;:::o;13470:643::-;13548:20;13539:5;:29;;;;;;-1:-1:-1;;;13539:29:0;;;;;;;;;;13535:571;;;13585:7;;13535:571;13646:29;13637:5;:38;;;;;;-1:-1:-1;;;13637:38:0;;;;;;;;;;13633:473;;;13692:34;;-1:-1:-1;;;13692:34:0;;9300:2:1;13692:34:0;;;9282:21:1;9339:2;9319:18;;;9312:30;9378:26;9358:18;;;9351:54;9422:18;;13692:34:0;9272:174:1;13633:473:0;13757:35;13748:5;:44;;;;;;-1:-1:-1;;;13748:44:0;;;;;;;;;;13744:362;;;13809:41;;-1:-1:-1;;;13809:41:0;;11536:2:1;13809:41:0;;;11518:21:1;11575:2;11555:18;;;11548:30;11614:33;11594:18;;;11587:61;11665:18;;13809:41:0;11508:181:1;13744:362:0;13881:30;13872:5;:39;;;;;;-1:-1:-1;;;13872:39:0;;;;;;;;;;13868:238;;;13928:44;;-1:-1:-1;;;13928:44:0;;13825:2:1;13928:44:0;;;13807:21:1;13864:2;13844:18;;;13837:30;13903:34;13883:18;;;13876:62;-1:-1:-1;;;13954:18:1;;;13947:32;13996:19;;13928:44:0;13797:224:1;13868:238:0;14003:30;13994:5;:39;;;;;;-1:-1:-1;;;13994:39:0;;;;;;;;;;13990:116;;;14050:44;;-1:-1:-1;;;14050:44:0;;14989:2:1;14050:44:0;;;14971:21:1;15028:2;15008:18;;;15001:30;15067:34;15047:18;;;15040:62;-1:-1:-1;;;15118:18:1;;;15111:32;15160:19;;14050:44:0;14961:224:1;77554:310:0;77649:17;77669:23;:21;:23::i;:::-;77649:43;-1:-1:-1;77649:43:0;77707:30;77723:9;77707:15;:30::i;:::-;:42;77703:154;;;77766:29;;;;;;;;-1:-1:-1;77766:29:0;;;;;;;;;;;;;;77810:16;;;:35;;;;;;;;;;;;;;;77554:310::o;50127:591::-;-1:-1:-1;;;;;50211:21:0;;50203:67;;;;-1:-1:-1;;;50203:67:0;;17751:2:1;50203:67:0;;;17733:21:1;17790:2;17770:18;;;17763:30;17829:34;17809:18;;;17802:62;-1:-1:-1;;;17880:18:1;;;17873:31;17921:19;;50203:67:0;17723:223:1;50203:67:0;50283:49;50304:7;50321:1;50325:6;50283:20;:49::i;:::-;-1:-1:-1;;;;;50370:18:0;;50345:22;50370:18;;;;;;;;;;;50407:24;;;;50399:71;;;;-1:-1:-1;;;50399:71:0;;11133:2:1;50399: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;;50399:71:0;11105:224:1;50399:71:0;-1:-1:-1;;;;;50506:18:0;;:9;:18;;;;;;;;;;50527:23;;;50506:44;;50572:12;:22;;50544:6;;50506:9;50572:22;;50544:6;;50572:22;:::i;:::-;;;;-1:-1:-1;;50612:37:0;;6539:25:1;;;50638:1:0;;-1:-1:-1;;;;;50612:37:0;;;;;6527:2:1;6512:18;50612:37:0;;;;;;;50662:48;50682:7;50699:1;50703:6;50662:19;:48::i;77872:212::-;77966:10;;77942:7;;77962:115;;-1:-1:-1;78005:1:0;77998:8;;77962:115;78050:10;;78046:3;;78050:14;;78063:1;;78050:14;:::i;:::-;78046:19;;;;;;-1:-1:-1;;;78046:19:0;;;;;;;;;;;;;;;;;78039:26;;;;14:156:1;80:20;;140:4;129:16;;119:27;;109:2;;160:1;157;150:12;175:257;;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::-;;;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::-;;;;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::-;;;;;;;;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::-;;;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::-;;;;;;;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::-;;;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;;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::-;;;;;;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::-;;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;;;5459:737;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::-;;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;16375:356::-;16577:2;16559:21;;;16596:18;;;16589:30;16655:34;16650:2;16635:18;;16628:62;16722:2;16707:18;;16549:182::o;21874:128::-;;21945:1;21941:6;21938:1;21935:13;21932:2;;;21951:18;;:::i;:::-;-1:-1:-1;21987:9:1;;21922:80::o;22007:217::-;;22073:1;22063:2;;-1:-1:-1;;;22098:31:1;;22152:4;22149:1;22142:15;22180:4;22105:1;22170:15;22063:2;-1:-1:-1;22209:9:1;;22053:171::o;22229:125::-;;22297:1;22294;22291:8;22288:2;;;22302:18;;:::i;:::-;-1:-1:-1;22339:9:1;;22278:76::o;22359:380::-;22444:1;22434:12;;22491:1;22481:12;;;22502:2;;22556:4;22548:6;22544:17;22534:27;;22502:2;22609;22601:6;22598:14;22578:18;22575:38;22572:2;;;22655:10;22650:3;22646:20;22643:1;22636:31;22690:4;22687:1;22680:15;22718:4;22715:1;22708:15;22744:127;22805:10;22800:3;22796:20;22793:1;22786:31;22836:4;22833:1;22826:15;22860:4;22857:1;22850:15;22876:131;-1:-1:-1;;;;;22951:31:1;;22941:42;;22931:2;;22997:1;22994;22987:12
Swarm Source
ipfs://8dc8715c2c6e9d78f5065b01e573422f7413d152db3a676145b73d84646110a8
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in MOVR
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
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.