Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- BuyAndBurn
- Optimization enabled
- false
- Compiler version
- v0.8.25+commit.b61c2a91
- EVM Version
- paris
- Verified at
- 2024-04-03T13:40:19.784878Z
contracts/BuyAndBurn.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.25;
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol";
import "./interfaces/IInternetMoneyRouter.sol";
import "./interfaces/IPermaGIFF.sol";
contract BuyAndBurn is Initializable, UUPSUpgradeable, OwnableUpgradeable, PausableUpgradeable, ReentrancyGuardUpgradeable {
using ECDSAUpgradeable for bytes32;
struct Signature {
bytes32 r;
bytes32 s;
uint8 v;
}
IInternetMoneyRouter public internetMoneyRouter;
IPermaGIFF public permaGiff;
/// The timestamp of the last action i.e. last time exec was called
uint256 public lastActionTs;
/// how often can users call the public exec method. This value is in seconds
uint256 public frequence;
/// min PLS balance the contract should have so exec can be called and be swapped
uint256 public swapAmount;
/// The operator which is the signer of all access tokens that are required by the exec function
address public operator;
/// Stores all the access tokens that have been already used to avoid replay attacks
mapping(bytes32 => bool) public usedAccessTokens;
event SettingUpdated(uint256 frequence, uint256 swapAmount);
event BoughtAndBurnt(address indexed account, uint256 ts, uint256 amount);
modifier onlyIfAllowed {
require(address(this).balance >= swapAmount, "Not enough PLS balance");
require(block.timestamp - lastActionTs >= frequence, "Too often");
_;
lastActionTs = block.timestamp;
}
modifier onlyValidAccessToken(bytes32 nonce, Signature memory sig) {
bytes32 accessToken = keccak256(abi.encodePacked(
address(this),
block.chainid,
_msgSender(),
swapAmount,
nonce
));
require(!usedAccessTokens[accessToken], "Access token already used");
address signer = accessToken.toEthSignedMessageHash().recover(sig.v, sig.r, sig.s);
require(signer == operator, "Invalid access token signer");
usedAccessTokens[accessToken] = true;
_;
}
/// @custom:oz-upgrades-unsafe-allow constructor
constructor() {
_disableInitializers();
}
// Function to allow contract to receive PLS
receive() external payable {}
/// @notice Initializer
///
/// @param owner the owner of this contract
/// @param _internetMoneyRouter the internetMoneyRouter contract address
function initialize(
address owner,
IInternetMoneyRouter _internetMoneyRouter
) external initializer {
__Ownable_init();
__Pausable_init();
transferOwnership(owner);
internetMoneyRouter = _internetMoneyRouter;
}
/// To authorize the owner to upgrade the contract we implement
/// _authorizeUpgrade with the onlyOwner modifier.
function _authorizeUpgrade(address) internal override onlyOwner {}
function pause() external onlyOwner {
_pause();
}
function unpause() external onlyOwner {
_unpause();
}
/// @notice sets the permaGiff token account
/// @dev only onwer can call this function
function setPermaGiff(IPermaGIFF _permaGiff) external onlyOwner {
permaGiff = _permaGiff;
}
/// @notice updates the operator account that signs the access tokens
/// @dev only onwer can call this function
function setOperator(address _operator) external onlyOwner {
operator = _operator;
}
/// @notice updates the setting of the contract
/// @dev only onwer can call this function
///
/// @param _frequence how often can users call the public exec method
/// @param _swapAmount min PLS balance the contract should have so exec can be called and be swapped
function updateSettings(uint256 _frequence, uint256 _swapAmount) external onlyOwner {
frequence = _frequence;
swapAmount = _swapAmount;
emit SettingUpdated(frequence, swapAmount);
}
/// @notice allows anyone to call this function as long as the criteria are met.
///
/// @param dexId The dexId param used by the InternetMoneyRouter
/// @param piteasCalldata The calldata we receive from the Piteas Quote Endpoint
/// @param nonce replay-attack nonce protection
/// @param sig The signature from the operator that commits to the amount (swapAmount). We need this
/// since anyone could call the Piteas API and request a quote for arbitraty PLS amount. This way we can
/// be sure that the quote was requested by out back-end and was signed by an operator we control.
function exec(
uint256 dexId,
bytes calldata piteasCalldata,
bytes32 nonce,
Signature memory sig
) public onlyIfAllowed onlyValidAccessToken(nonce, sig) nonReentrant {
uint256 balanceBefore = permaGiff.balanceOf(address(this));
internetMoneyRouter.swapPiteas(dexId, piteasCalldata);
uint256 balanceAfter = permaGiff.balanceOf(address(this));
uint256 permaGiffReceived = balanceAfter - balanceBefore;
permaGiff.burn(permaGiffReceived);
emit BoughtAndBurnt(_msgSender(), block.timestamp, permaGiffReceived);
}
}
@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import {Initializable} from "../proxy/utils/Initializable.sol";
/**
* @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 OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling 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);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}
@openzeppelin/contracts-upgradeable/interfaces/IERC1967Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol)
pragma solidity ^0.8.0;
/**
* @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
*
* _Available since v4.8.3._
*/
interface IERC1967Upgradeable {
/**
* @dev Emitted when the implementation is upgraded.
*/
event Upgraded(address indexed implementation);
/**
* @dev Emitted when the admin account has changed.
*/
event AdminChanged(address previousAdmin, address newAdmin);
/**
* @dev Emitted when the beacon is changed.
*/
event BeaconUpgraded(address indexed beacon);
}
@openzeppelin/contracts-upgradeable/interfaces/draft-IERC1822Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)
pragma solidity ^0.8.0;
/**
* @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
* proxy whose upgrades are fully controlled by the current implementation.
*/
interface IERC1822ProxiableUpgradeable {
/**
* @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
* address.
*
* IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
* function revert if invoked through a proxy.
*/
function proxiableUUID() external view returns (bytes32);
}
@openzeppelin/contracts-upgradeable/proxy/ERC1967/ERC1967UpgradeUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/ERC1967/ERC1967Upgrade.sol)
pragma solidity ^0.8.2;
import "../beacon/IBeaconUpgradeable.sol";
import "../../interfaces/IERC1967Upgradeable.sol";
import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../utils/StorageSlotUpgradeable.sol";
import {Initializable} from "../utils/Initializable.sol";
/**
* @dev This abstract contract provides getters and event emitting update functions for
* https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
*
* _Available since v4.1._
*/
abstract contract ERC1967UpgradeUpgradeable is Initializable, IERC1967Upgradeable {
// This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1
bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
function __ERC1967Upgrade_init() internal onlyInitializing {
}
function __ERC1967Upgrade_init_unchained() internal onlyInitializing {
}
/**
* @dev Returns the current implementation address.
*/
function _getImplementation() internal view returns (address) {
return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 implementation slot.
*/
function _setImplementation(address newImplementation) private {
require(AddressUpgradeable.isContract(newImplementation), "ERC1967: new implementation is not a contract");
StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
}
/**
* @dev Perform implementation upgrade
*
* Emits an {Upgraded} event.
*/
function _upgradeTo(address newImplementation) internal {
_setImplementation(newImplementation);
emit Upgraded(newImplementation);
}
/**
* @dev Perform implementation upgrade with additional setup call.
*
* Emits an {Upgraded} event.
*/
function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {
_upgradeTo(newImplementation);
if (data.length > 0 || forceCall) {
AddressUpgradeable.functionDelegateCall(newImplementation, data);
}
}
/**
* @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.
*
* Emits an {Upgraded} event.
*/
function _upgradeToAndCallUUPS(address newImplementation, bytes memory data, bool forceCall) internal {
// Upgrades from old implementations will perform a rollback test. This test requires the new
// implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing
// this special case will break upgrade paths from old UUPS implementation to new ones.
if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) {
_setImplementation(newImplementation);
} else {
try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) {
require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID");
} catch {
revert("ERC1967Upgrade: new implementation is not UUPS");
}
_upgradeToAndCall(newImplementation, data, forceCall);
}
}
/**
* @dev Storage slot with the admin of the contract.
* This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
/**
* @dev Returns the current admin.
*/
function _getAdmin() internal view returns (address) {
return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 admin slot.
*/
function _setAdmin(address newAdmin) private {
require(newAdmin != address(0), "ERC1967: new admin is the zero address");
StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
}
/**
* @dev Changes the admin of the proxy.
*
* Emits an {AdminChanged} event.
*/
function _changeAdmin(address newAdmin) internal {
emit AdminChanged(_getAdmin(), newAdmin);
_setAdmin(newAdmin);
}
/**
* @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
* This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
*/
bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;
/**
* @dev Returns the current beacon.
*/
function _getBeacon() internal view returns (address) {
return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value;
}
/**
* @dev Stores a new beacon in the EIP1967 beacon slot.
*/
function _setBeacon(address newBeacon) private {
require(AddressUpgradeable.isContract(newBeacon), "ERC1967: new beacon is not a contract");
require(
AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()),
"ERC1967: beacon implementation is not a contract"
);
StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon;
}
/**
* @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does
* not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).
*
* Emits a {BeaconUpgraded} event.
*/
function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal {
_setBeacon(newBeacon);
emit BeaconUpgraded(newBeacon);
if (data.length > 0 || forceCall) {
AddressUpgradeable.functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data);
}
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}
@openzeppelin/contracts-upgradeable/proxy/beacon/IBeaconUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)
pragma solidity ^0.8.0;
/**
* @dev This is the interface that {BeaconProxy} expects of its beacon.
*/
interface IBeaconUpgradeable {
/**
* @dev Must return an address that can be used as a delegate call target.
*
* {BeaconProxy} will check that this address is a contract.
*/
function implementation() external view returns (address);
}
@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```solidity
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
*
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized != type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}
@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/UUPSUpgradeable.sol)
pragma solidity ^0.8.0;
import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../ERC1967/ERC1967UpgradeUpgradeable.sol";
import {Initializable} from "./Initializable.sol";
/**
* @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an
* {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.
*
* A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is
* reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing
* `UUPSUpgradeable` with a custom implementation of upgrades.
*
* The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.
*
* _Available since v4.1._
*/
abstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable {
/// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
address private immutable __self = address(this);
/**
* @dev Check that the execution is being performed through a delegatecall call and that the execution context is
* a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case
* for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a
* function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to
* fail.
*/
modifier onlyProxy() {
require(address(this) != __self, "Function must be called through delegatecall");
require(_getImplementation() == __self, "Function must be called through active proxy");
_;
}
/**
* @dev Check that the execution is not being performed through a delegate call. This allows a function to be
* callable on the implementing contract but not through proxies.
*/
modifier notDelegated() {
require(address(this) == __self, "UUPSUpgradeable: must not be called through delegatecall");
_;
}
function __UUPSUpgradeable_init() internal onlyInitializing {
}
function __UUPSUpgradeable_init_unchained() internal onlyInitializing {
}
/**
* @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the
* implementation. It is used to validate the implementation's compatibility when performing an upgrade.
*
* IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
* function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.
*/
function proxiableUUID() external view virtual override notDelegated returns (bytes32) {
return _IMPLEMENTATION_SLOT;
}
/**
* @dev Upgrade the implementation of the proxy to `newImplementation`.
*
* Calls {_authorizeUpgrade}.
*
* Emits an {Upgraded} event.
*
* @custom:oz-upgrades-unsafe-allow-reachable delegatecall
*/
function upgradeTo(address newImplementation) public virtual onlyProxy {
_authorizeUpgrade(newImplementation);
_upgradeToAndCallUUPS(newImplementation, new bytes(0), false);
}
/**
* @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call
* encoded in `data`.
*
* Calls {_authorizeUpgrade}.
*
* Emits an {Upgraded} event.
*
* @custom:oz-upgrades-unsafe-allow-reachable delegatecall
*/
function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {
_authorizeUpgrade(newImplementation);
_upgradeToAndCallUUPS(newImplementation, data, true);
}
/**
* @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by
* {upgradeTo} and {upgradeToAndCall}.
*
* Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.
*
* ```solidity
* function _authorizeUpgrade(address) internal override onlyOwner {}
* ```
*/
function _authorizeUpgrade(address newImplementation) internal virtual;
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}
@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import {Initializable} from "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
function __Pausable_init() internal onlyInitializing {
__Pausable_init_unchained();
}
function __Pausable_init_unchained() internal onlyInitializing {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}
@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
import {Initializable} from "../proxy/utils/Initializable.sol";
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuardUpgradeable is Initializable {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
function __ReentrancyGuard_init() internal onlyInitializing {
__ReentrancyGuard_init_unchained();
}
function __ReentrancyGuard_init_unchained() internal onlyInitializing {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}
@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
import {Initializable} from "../proxy/utils/Initializable.sol";
/**
* @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 ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}
@openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.0;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC1967 implementation slot:
* ```solidity
* contract ERC1967 {
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*
* _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._
* _Available since v4.9 for `string`, `bytes`._
*/
library StorageSlotUpgradeable {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 value;
}
struct StringSlot {
string value;
}
struct BytesSlot {
bytes value;
}
/**
* @dev Returns an `AddressSlot` with member `value` located at `slot`.
*/
function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` representation of the string storage pointer `store`.
*/
function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
/**
* @dev Returns an `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
*/
function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
}
@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/MathUpgradeable.sol";
import "./math/SignedMathUpgradeable.sol";
/**
* @dev String operations.
*/
library StringsUpgradeable {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = MathUpgradeable.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMathUpgradeable.abs(value))));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, MathUpgradeable.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return keccak256(bytes(a)) == keccak256(bytes(b));
}
}
@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
import "../StringsUpgradeable.sol";
/**
* @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 ECDSAUpgradeable {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV // Deprecated in v4.8
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
/// @solidity memory-safe-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
uint8 v = uint8((uint256(vs) >> 255) + 27);
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, "\x19Ethereum Signed Message:\n32")
mstore(0x1c, hash)
message := keccak256(0x00, 0x3c)
}
}
/**
* @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", StringsUpgradeable.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 data) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, "\x19\x01")
mstore(add(ptr, 0x02), domainSeparator)
mstore(add(ptr, 0x22), structHash)
data := keccak256(ptr, 0x42)
}
}
/**
* @dev Returns an Ethereum Signed Data with intended validator, created from a
* `validator` and `data` according to the version 0 of EIP-191.
*
* See {recover}.
*/
function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x00", validator, data));
}
}
@openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library MathUpgradeable {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}
@openzeppelin/contracts-upgradeable/utils/math/SignedMathUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMathUpgradeable {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}
@openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}
contracts/interfaces/IInternetMoneyRouter.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.25;
interface IInternetMoneyRouter {
function swapPiteas(uint256 dexId, bytes calldata piteasCalldata) external payable;
}
contracts/interfaces/IPermaGIFF.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.25;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IPermaGIFF is IERC20 {
function burn(uint256 amount) external;
}
Compiler Settings
{"outputSelection":{"*":{"*":["*"],"":["*"]}},"optimizer":{"runs":200,"enabled":false},"libraries":{},"evmVersion":"paris"}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"AdminChanged","inputs":[{"type":"address","name":"previousAdmin","internalType":"address","indexed":false},{"type":"address","name":"newAdmin","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"BeaconUpgraded","inputs":[{"type":"address","name":"beacon","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"BoughtAndBurnt","inputs":[{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"uint256","name":"ts","internalType":"uint256","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Initialized","inputs":[{"type":"uint8","name":"version","internalType":"uint8","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"SettingUpdated","inputs":[{"type":"uint256","name":"frequence","internalType":"uint256","indexed":false},{"type":"uint256","name":"swapAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Upgraded","inputs":[{"type":"address","name":"implementation","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"exec","inputs":[{"type":"uint256","name":"dexId","internalType":"uint256"},{"type":"bytes","name":"piteasCalldata","internalType":"bytes"},{"type":"bytes32","name":"nonce","internalType":"bytes32"},{"type":"tuple","name":"sig","internalType":"struct BuyAndBurn.Signature","components":[{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"},{"type":"uint8","name":"v","internalType":"uint8"}]}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"frequence","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"_internetMoneyRouter","internalType":"contract IInternetMoneyRouter"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IInternetMoneyRouter"}],"name":"internetMoneyRouter","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"lastActionTs","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"operator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IPermaGIFF"}],"name":"permaGiff","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"proxiableUUID","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setOperator","inputs":[{"type":"address","name":"_operator","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setPermaGiff","inputs":[{"type":"address","name":"_permaGiff","internalType":"contract IPermaGIFF"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"swapAmount","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unpause","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateSettings","inputs":[{"type":"uint256","name":"_frequence","internalType":"uint256"},{"type":"uint256","name":"_swapAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"upgradeTo","inputs":[{"type":"address","name":"newImplementation","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"upgradeToAndCall","inputs":[{"type":"address","name":"newImplementation","internalType":"address"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"usedAccessTokens","inputs":[{"type":"bytes32","name":"","internalType":"bytes32"}]},{"type":"receive","stateMutability":"payable"}]
Contract Creation Code
0x60a06040523073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1681525034801561004357600080fd5b5061005261005760201b60201c565b6101f1565b600060019054906101000a900460ff16156100a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161009e9061019a565b60405180910390fd5b60ff801660008054906101000a900460ff1660ff16146101155760ff6000806101000a81548160ff021916908360ff1602179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860ff60405161010c91906101d6565b60405180910390a15b565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320696e69746960008201527f616c697a696e6700000000000000000000000000000000000000000000000000602082015250565b6000610184602783610117565b915061018f82610128565b604082019050919050565b600060208201905081810360008301526101b381610177565b9050919050565b600060ff82169050919050565b6101d0816101ba565b82525050565b60006020820190506101eb60008301846101c7565b92915050565b60805161330361022860003960008181610552015281816105e0015281816108c7015281816109550152610a0501526133036000f3fe60806040526004361061012e5760003560e01c806352d1902d116100ab5780638da5cb5b1161006f5780638da5cb5b1461037e578063a437fc67146103a9578063b2bca627146103d2578063b3ab15fb146103fd578063d961ec9514610426578063f2fde38b1461045157610135565b806352d1902d146102cf578063570ca735146102fa5780635c975abb14610325578063715018a6146103505780638456cb591461036757610135565b80633f4ba83a116100f25780633f4ba83a1461020b5780634093403a14610222578063485cc9551461025f578063495ba635146102885780634f1ef286146102b357610135565b8063015af8ee1461013a5780630eae4536146101635780632e8fa8211461018c578063320132a6146101b75780633659cfe6146101e257610135565b3661013557005b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190611d60565b61047a565b005b34801561016f57600080fd5b5061018a60048036038101906101859190611e10565b6104d5565b005b34801561019857600080fd5b506101a1610522565b6040516101ae9190611e4c565b60405180910390f35b3480156101c357600080fd5b506101cc610529565b6040516101d99190611ec6565b60405180910390f35b3480156101ee57600080fd5b5061020960048036038101906102049190611f0d565b610550565b005b34801561021757600080fd5b506102206106d8565b005b34801561022e57600080fd5b5061024960048036038101906102449190611f70565b6106ea565b6040516102569190611fb8565b60405180910390f35b34801561026b57600080fd5b5061028660048036038101906102819190612011565b61070b565b005b34801561029457600080fd5b5061029d61089e565b6040516102aa9190612072565b60405180910390f35b6102cd60048036038101906102c891906121d3565b6108c5565b005b3480156102db57600080fd5b506102e4610a01565b6040516102f1919061223e565b60405180910390f35b34801561030657600080fd5b5061030f610aba565b60405161031c9190612268565b60405180910390f35b34801561033157600080fd5b5061033a610ae1565b6040516103479190611fb8565b60405180910390f35b34801561035c57600080fd5b50610365610af8565b005b34801561037357600080fd5b5061037c610b0c565b005b34801561038a57600080fd5b50610393610b1e565b6040516103a09190612268565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190612385565b610b48565b005b3480156103de57600080fd5b506103e761105f565b6040516103f49190611e4c565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190611f0d565b611066565b005b34801561043257600080fd5b5061043b6110b3565b6040516104489190611e4c565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190611f0d565b6110ba565b005b61048261113d565b816101308190555080610131819055507ff3e4c1a93650c97dbf12747464077358c6b0f8f4b91443502bcb0cffb106c19e61013054610131546040516104c992919061240d565b60405180910390a15050565b6104dd61113d565b8061012e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6101315481565b61012d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16036105de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d5906124b9565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661061d6111bb565b73ffffffffffffffffffffffffffffffffffffffff1614610673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066a9061254b565b60405180910390fd5b61067c81611212565b6106d581600067ffffffffffffffff81111561069b5761069a6120a8565b5b6040519080825280601f01601f1916602001820160405280156106cd5781602001600182028036833780820191505090505b50600061121d565b50565b6106e061113d565b6106e861138b565b565b6101336020528060005260406000206000915054906101000a900460ff1681565b60008060019054906101000a900460ff1615905080801561073c5750600160008054906101000a900460ff1660ff16105b80610769575061074b306113ee565b1580156107685750600160008054906101000a900460ff1660ff16145b5b6107a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079f906125dd565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156107e5576001600060016101000a81548160ff0219169083151502179055505b6107ed611411565b6107f561146a565b6107fe836110ba565b8161012d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080156108995760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516108909190612638565b60405180910390a15b505050565b61012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1603610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a906124b9565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166109926111bb565b73ffffffffffffffffffffffffffffffffffffffff16146109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df9061254b565b60405180910390fd5b6109f182611212565b6109fd8282600161121d565b5050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a88906126c5565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b61013260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060c960009054906101000a900460ff16905090565b610b0061113d565b610b0a60006114c3565b565b610b1461113d565b610b1c611589565b565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61013154471015610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590612731565b60405180910390fd5b6101305461012f5442610ba19190612780565b1015610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd990612800565b60405180910390fd5b818160003046610bf06115ec565b6101315486604051602001610c099594939291906128aa565b604051602081830303815290604052805190602001209050610133600082815260200190815260200160002060009054906101000a900460ff1615610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90612955565b60405180910390fd5b6000610cb0836040015184600001518560200151610ca0866115f4565b61162a909392919063ffffffff16565b905061013260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906129c1565b60405180910390fd5b6001610133600084815260200190815260200160002060006101000a81548160ff021916908315150217905550610d78611655565b600061012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610dd69190612268565b602060405180830381865afa158015610df3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1791906129f6565b905061012d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663574b64a78b8b8b6040518463ffffffff1660e01b8152600401610e7993929190612a61565b600060405180830381600087803b158015610e9357600080fd5b505af1158015610ea7573d6000803e3d6000fd5b50505050600061012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f099190612268565b602060405180830381865afa158015610f26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4a91906129f6565b905060008282610f5a9190612780565b905061012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b8152600401610fb89190611e4c565b600060405180830381600087803b158015610fd257600080fd5b505af1158015610fe6573d6000803e3d6000fd5b50505050610ff26115ec565b73ffffffffffffffffffffffffffffffffffffffff167f5193fe3b7a9564dca5970c8b10def87cd842eddeffe4003191e5c6ddb1414626428360405161103992919061240d565b60405180910390a250505061104c6116a4565b505050504261012f819055505050505050565b61012f5481565b61106e61113d565b8061013260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6101305481565b6110c261113d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890612b05565b60405180910390fd5b61113a816114c3565b50565b6111456115ec565b73ffffffffffffffffffffffffffffffffffffffff16611163610b1e565b73ffffffffffffffffffffffffffffffffffffffff16146111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090612b71565b60405180910390fd5b565b60006111e97f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6116ae565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61121a61113d565b50565b6112497f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914360001b6116b8565b60000160009054906101000a900460ff161561126d57611268836116c2565b611386565b8273ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156112d557506040513d601f19601f820116820180604052508101906112d29190612ba6565b60015b611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90612c45565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b8114611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137090612cd7565b60405180910390fd5b5061138583838361177b565b5b505050565b6113936117a7565b600060c960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113d76115ec565b6040516113e49190612268565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16611460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145790612d69565b60405180910390fd5b6114686117f0565b565b600060019054906101000a900460ff166114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090612d69565b60405180910390fd5b6114c1611851565b565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115916118bd565b600160c960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115d56115ec565b6040516115e29190612268565b60405180910390a1565b600033905090565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b600080600061163b87878787611907565b91509150611648816119e9565b8192505050949350505050565b600260fb540361169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190612dd5565b60405180910390fd5b600260fb81905550565b600160fb81905550565b6000819050919050565b6000819050919050565b6116cb816113ee565b61170a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170190612e67565b60405180910390fd5b806117377f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6116ae565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61178483611b4f565b6000825111806117915750805b156117a2576117a08383611b9e565b505b505050565b6117af610ae1565b6117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590612ed3565b60405180910390fd5b565b600060019054906101000a900460ff1661183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690612d69565b60405180910390fd5b61184f61184a6115ec565b6114c3565b565b600060019054906101000a900460ff166118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790612d69565b60405180910390fd5b600060c960006101000a81548160ff021916908315150217905550565b6118c5610ae1565b15611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90612f3f565b60405180910390fd5b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156119425760006003915091506119e0565b6000600187878787604051600081526020016040526040516119679493929190612f6e565b6020604051602081039080840390855afa158015611989573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119d7576000600192509250506119e0565b80600092509250505b94509492505050565b600060048111156119fd576119fc612fb3565b5b816004811115611a1057611a0f612fb3565b5b0315611b4c5760016004811115611a2a57611a29612fb3565b5b816004811115611a3d57611a3c612fb3565b5b03611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a749061302e565b60405180910390fd5b60026004811115611a9157611a90612fb3565b5b816004811115611aa457611aa3612fb3565b5b03611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb9061309a565b60405180910390fd5b60036004811115611af857611af7612fb3565b5b816004811115611b0b57611b0a612fb3565b5b03611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b429061312c565b60405180910390fd5b5b50565b611b58816116c2565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b6060611bc383836040518060600160405280602781526020016132a760279139611bcb565b905092915050565b60606000808573ffffffffffffffffffffffffffffffffffffffff1685604051611bf591906131bd565b600060405180830381855af49150503d8060008114611c30576040519150601f19603f3d011682016040523d82523d6000602084013e611c35565b606091505b5091509150611c4686838387611c51565b925050509392505050565b60608315611cb3576000835103611cab57611c6b856113ee565b611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190613220565b60405180910390fd5b5b829050611cbe565b611cbd8383611cc6565b5b949350505050565b600082511115611cd95781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d9190613284565b60405180910390fd5b6000604051905090565b600080fd5b600080fd5b6000819050919050565b611d3d81611d2a565b8114611d4857600080fd5b50565b600081359050611d5a81611d34565b92915050565b60008060408385031215611d7757611d76611d20565b5b6000611d8585828601611d4b565b9250506020611d9685828601611d4b565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611dcb82611da0565b9050919050565b6000611ddd82611dc0565b9050919050565b611ded81611dd2565b8114611df857600080fd5b50565b600081359050611e0a81611de4565b92915050565b600060208284031215611e2657611e25611d20565b5b6000611e3484828501611dfb565b91505092915050565b611e4681611d2a565b82525050565b6000602082019050611e616000830184611e3d565b92915050565b6000819050919050565b6000611e8c611e87611e8284611da0565b611e67565b611da0565b9050919050565b6000611e9e82611e71565b9050919050565b6000611eb082611e93565b9050919050565b611ec081611ea5565b82525050565b6000602082019050611edb6000830184611eb7565b92915050565b611eea81611dc0565b8114611ef557600080fd5b50565b600081359050611f0781611ee1565b92915050565b600060208284031215611f2357611f22611d20565b5b6000611f3184828501611ef8565b91505092915050565b6000819050919050565b611f4d81611f3a565b8114611f5857600080fd5b50565b600081359050611f6a81611f44565b92915050565b600060208284031215611f8657611f85611d20565b5b6000611f9484828501611f5b565b91505092915050565b60008115159050919050565b611fb281611f9d565b82525050565b6000602082019050611fcd6000830184611fa9565b92915050565b6000611fde82611dc0565b9050919050565b611fee81611fd3565b8114611ff957600080fd5b50565b60008135905061200b81611fe5565b92915050565b6000806040838503121561202857612027611d20565b5b600061203685828601611ef8565b925050602061204785828601611ffc565b9150509250929050565b600061205c82611e93565b9050919050565b61206c81612051565b82525050565b60006020820190506120876000830184612063565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6120e082612097565b810181811067ffffffffffffffff821117156120ff576120fe6120a8565b5b80604052505050565b6000612112611d16565b905061211e82826120d7565b919050565b600067ffffffffffffffff82111561213e5761213d6120a8565b5b61214782612097565b9050602081019050919050565b82818337600083830152505050565b600061217661217184612123565b612108565b90508281526020810184848401111561219257612191612092565b5b61219d848285612154565b509392505050565b600082601f8301126121ba576121b961208d565b5b81356121ca848260208601612163565b91505092915050565b600080604083850312156121ea576121e9611d20565b5b60006121f885828601611ef8565b925050602083013567ffffffffffffffff81111561221957612218611d25565b5b612225858286016121a5565b9150509250929050565b61223881611f3a565b82525050565b6000602082019050612253600083018461222f565b92915050565b61226281611dc0565b82525050565b600060208201905061227d6000830184612259565b92915050565b600080fd5b600080fd5b60008083601f8401126122a3576122a261208d565b5b8235905067ffffffffffffffff8111156122c0576122bf612283565b5b6020830191508360018202830111156122dc576122db612288565b5b9250929050565b600080fd5b600060ff82169050919050565b6122fe816122e8565b811461230957600080fd5b50565b60008135905061231b816122f5565b92915050565b600060608284031215612337576123366122e3565b5b6123416060612108565b9050600061235184828501611f5b565b600083015250602061236584828501611f5b565b60208301525060406123798482850161230c565b60408301525092915050565b600080600080600060c086880312156123a1576123a0611d20565b5b60006123af88828901611d4b565b955050602086013567ffffffffffffffff8111156123d0576123cf611d25565b5b6123dc8882890161228d565b945094505060406123ef88828901611f5b565b925050606061240088828901612321565b9150509295509295909350565b60006040820190506124226000830185611e3d565b61242f6020830184611e3d565b9392505050565b600082825260208201905092915050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f64656c656761746563616c6c0000000000000000000000000000000000000000602082015250565b60006124a3602c83612436565b91506124ae82612447565b604082019050919050565b600060208201905081810360008301526124d281612496565b9050919050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f6163746976652070726f78790000000000000000000000000000000000000000602082015250565b6000612535602c83612436565b9150612540826124d9565b604082019050919050565b6000602082019050818103600083015261256481612528565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006125c7602e83612436565b91506125d28261256b565b604082019050919050565b600060208201905081810360008301526125f6816125ba565b9050919050565b6000819050919050565b600061262261261d612618846125fd565b611e67565b6122e8565b9050919050565b61263281612607565b82525050565b600060208201905061264d6000830184612629565b92915050565b7f555550535570677261646561626c653a206d757374206e6f742062652063616c60008201527f6c6564207468726f7567682064656c656761746563616c6c0000000000000000602082015250565b60006126af603883612436565b91506126ba82612653565b604082019050919050565b600060208201905081810360008301526126de816126a2565b9050919050565b7f4e6f7420656e6f75676820504c532062616c616e636500000000000000000000600082015250565b600061271b601683612436565b9150612726826126e5565b602082019050919050565b6000602082019050818103600083015261274a8161270e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061278b82611d2a565b915061279683611d2a565b92508282039050818111156127ae576127ad612751565b5b92915050565b7f546f6f206f6674656e0000000000000000000000000000000000000000000000600082015250565b60006127ea600983612436565b91506127f5826127b4565b602082019050919050565b60006020820190508181036000830152612819816127dd565b9050919050565b60008160601b9050919050565b600061283882612820565b9050919050565b600061284a8261282d565b9050919050565b61286261285d82611dc0565b61283f565b82525050565b6000819050919050565b61288361287e82611d2a565b612868565b82525050565b6000819050919050565b6128a461289f82611f3a565b612889565b82525050565b60006128b68288612851565b6014820191506128c68287612872565b6020820191506128d68286612851565b6014820191506128e68285612872565b6020820191506128f68284612893565b6020820191508190509695505050505050565b7f41636365737320746f6b656e20616c7265616479207573656400000000000000600082015250565b600061293f601983612436565b915061294a82612909565b602082019050919050565b6000602082019050818103600083015261296e81612932565b9050919050565b7f496e76616c69642061636365737320746f6b656e207369676e65720000000000600082015250565b60006129ab601b83612436565b91506129b682612975565b602082019050919050565b600060208201905081810360008301526129da8161299e565b9050919050565b6000815190506129f081611d34565b92915050565b600060208284031215612a0c57612a0b611d20565b5b6000612a1a848285016129e1565b91505092915050565b600082825260208201905092915050565b6000612a408385612a23565b9350612a4d838584612154565b612a5683612097565b840190509392505050565b6000604082019050612a766000830186611e3d565b8181036020830152612a89818486612a34565b9050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612aef602683612436565b9150612afa82612a93565b604082019050919050565b60006020820190508181036000830152612b1e81612ae2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b5b602083612436565b9150612b6682612b25565b602082019050919050565b60006020820190508181036000830152612b8a81612b4e565b9050919050565b600081519050612ba081611f44565b92915050565b600060208284031215612bbc57612bbb611d20565b5b6000612bca84828501612b91565b91505092915050565b7f45524331393637557067726164653a206e657720696d706c656d656e7461746960008201527f6f6e206973206e6f742055555053000000000000000000000000000000000000602082015250565b6000612c2f602e83612436565b9150612c3a82612bd3565b604082019050919050565b60006020820190508181036000830152612c5e81612c22565b9050919050565b7f45524331393637557067726164653a20756e737570706f727465642070726f7860008201527f6961626c65555549440000000000000000000000000000000000000000000000602082015250565b6000612cc1602983612436565b9150612ccc82612c65565b604082019050919050565b60006020820190508181036000830152612cf081612cb4565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000612d53602b83612436565b9150612d5e82612cf7565b604082019050919050565b60006020820190508181036000830152612d8281612d46565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612dbf601f83612436565b9150612dca82612d89565b602082019050919050565b60006020820190508181036000830152612dee81612db2565b9050919050565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b6000612e51602d83612436565b9150612e5c82612df5565b604082019050919050565b60006020820190508181036000830152612e8081612e44565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612ebd601483612436565b9150612ec882612e87565b602082019050919050565b60006020820190508181036000830152612eec81612eb0565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612f29601083612436565b9150612f3482612ef3565b602082019050919050565b60006020820190508181036000830152612f5881612f1c565b9050919050565b612f68816122e8565b82525050565b6000608082019050612f83600083018761222f565b612f906020830186612f5f565b612f9d604083018561222f565b612faa606083018461222f565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613018601883612436565b915061302382612fe2565b602082019050919050565b600060208201905081810360008301526130478161300b565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613084601f83612436565b915061308f8261304e565b602082019050919050565b600060208201905081810360008301526130b381613077565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613116602283612436565b9150613121826130ba565b604082019050919050565b6000602082019050818103600083015261314581613109565b9050919050565b600081519050919050565b600081905092915050565b60005b83811015613180578082015181840152602081019050613165565b60008484015250505050565b60006131978261314c565b6131a18185613157565b93506131b1818560208601613162565b80840191505092915050565b60006131c9828461318c565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061320a601d83612436565b9150613215826131d4565b602082019050919050565b60006020820190508181036000830152613239816131fd565b9050919050565b600081519050919050565b600061325682613240565b6132608185612436565b9350613270818560208601613162565b61327981612097565b840191505092915050565b6000602082019050818103600083015261329e818461324b565b90509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220a5c3a49c4fb16355a0cdf979399f3b028a82d0a766bb32d2462d6a53004223fe64736f6c63430008190033
Deployed ByteCode
0x60806040526004361061012e5760003560e01c806352d1902d116100ab5780638da5cb5b1161006f5780638da5cb5b1461037e578063a437fc67146103a9578063b2bca627146103d2578063b3ab15fb146103fd578063d961ec9514610426578063f2fde38b1461045157610135565b806352d1902d146102cf578063570ca735146102fa5780635c975abb14610325578063715018a6146103505780638456cb591461036757610135565b80633f4ba83a116100f25780633f4ba83a1461020b5780634093403a14610222578063485cc9551461025f578063495ba635146102885780634f1ef286146102b357610135565b8063015af8ee1461013a5780630eae4536146101635780632e8fa8211461018c578063320132a6146101b75780633659cfe6146101e257610135565b3661013557005b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190611d60565b61047a565b005b34801561016f57600080fd5b5061018a60048036038101906101859190611e10565b6104d5565b005b34801561019857600080fd5b506101a1610522565b6040516101ae9190611e4c565b60405180910390f35b3480156101c357600080fd5b506101cc610529565b6040516101d99190611ec6565b60405180910390f35b3480156101ee57600080fd5b5061020960048036038101906102049190611f0d565b610550565b005b34801561021757600080fd5b506102206106d8565b005b34801561022e57600080fd5b5061024960048036038101906102449190611f70565b6106ea565b6040516102569190611fb8565b60405180910390f35b34801561026b57600080fd5b5061028660048036038101906102819190612011565b61070b565b005b34801561029457600080fd5b5061029d61089e565b6040516102aa9190612072565b60405180910390f35b6102cd60048036038101906102c891906121d3565b6108c5565b005b3480156102db57600080fd5b506102e4610a01565b6040516102f1919061223e565b60405180910390f35b34801561030657600080fd5b5061030f610aba565b60405161031c9190612268565b60405180910390f35b34801561033157600080fd5b5061033a610ae1565b6040516103479190611fb8565b60405180910390f35b34801561035c57600080fd5b50610365610af8565b005b34801561037357600080fd5b5061037c610b0c565b005b34801561038a57600080fd5b50610393610b1e565b6040516103a09190612268565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190612385565b610b48565b005b3480156103de57600080fd5b506103e761105f565b6040516103f49190611e4c565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190611f0d565b611066565b005b34801561043257600080fd5b5061043b6110b3565b6040516104489190611e4c565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190611f0d565b6110ba565b005b61048261113d565b816101308190555080610131819055507ff3e4c1a93650c97dbf12747464077358c6b0f8f4b91443502bcb0cffb106c19e61013054610131546040516104c992919061240d565b60405180910390a15050565b6104dd61113d565b8061012e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6101315481565b61012d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f0000000000000000000000006d1d569d808e08ffd689a57fd9e52b782bcbe59073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16036105de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d5906124b9565b60405180910390fd5b7f0000000000000000000000006d1d569d808e08ffd689a57fd9e52b782bcbe59073ffffffffffffffffffffffffffffffffffffffff1661061d6111bb565b73ffffffffffffffffffffffffffffffffffffffff1614610673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066a9061254b565b60405180910390fd5b61067c81611212565b6106d581600067ffffffffffffffff81111561069b5761069a6120a8565b5b6040519080825280601f01601f1916602001820160405280156106cd5781602001600182028036833780820191505090505b50600061121d565b50565b6106e061113d565b6106e861138b565b565b6101336020528060005260406000206000915054906101000a900460ff1681565b60008060019054906101000a900460ff1615905080801561073c5750600160008054906101000a900460ff1660ff16105b80610769575061074b306113ee565b1580156107685750600160008054906101000a900460ff1660ff16145b5b6107a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079f906125dd565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156107e5576001600060016101000a81548160ff0219169083151502179055505b6107ed611411565b6107f561146a565b6107fe836110ba565b8161012d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080156108995760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516108909190612638565b60405180910390a15b505050565b61012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f0000000000000000000000006d1d569d808e08ffd689a57fd9e52b782bcbe59073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1603610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a906124b9565b60405180910390fd5b7f0000000000000000000000006d1d569d808e08ffd689a57fd9e52b782bcbe59073ffffffffffffffffffffffffffffffffffffffff166109926111bb565b73ffffffffffffffffffffffffffffffffffffffff16146109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df9061254b565b60405180910390fd5b6109f182611212565b6109fd8282600161121d565b5050565b60007f0000000000000000000000006d1d569d808e08ffd689a57fd9e52b782bcbe59073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a88906126c5565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b61013260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060c960009054906101000a900460ff16905090565b610b0061113d565b610b0a60006114c3565b565b610b1461113d565b610b1c611589565b565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61013154471015610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590612731565b60405180910390fd5b6101305461012f5442610ba19190612780565b1015610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd990612800565b60405180910390fd5b818160003046610bf06115ec565b6101315486604051602001610c099594939291906128aa565b604051602081830303815290604052805190602001209050610133600082815260200190815260200160002060009054906101000a900460ff1615610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90612955565b60405180910390fd5b6000610cb0836040015184600001518560200151610ca0866115f4565b61162a909392919063ffffffff16565b905061013260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906129c1565b60405180910390fd5b6001610133600084815260200190815260200160002060006101000a81548160ff021916908315150217905550610d78611655565b600061012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610dd69190612268565b602060405180830381865afa158015610df3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1791906129f6565b905061012d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663574b64a78b8b8b6040518463ffffffff1660e01b8152600401610e7993929190612a61565b600060405180830381600087803b158015610e9357600080fd5b505af1158015610ea7573d6000803e3d6000fd5b50505050600061012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f099190612268565b602060405180830381865afa158015610f26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4a91906129f6565b905060008282610f5a9190612780565b905061012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b8152600401610fb89190611e4c565b600060405180830381600087803b158015610fd257600080fd5b505af1158015610fe6573d6000803e3d6000fd5b50505050610ff26115ec565b73ffffffffffffffffffffffffffffffffffffffff167f5193fe3b7a9564dca5970c8b10def87cd842eddeffe4003191e5c6ddb1414626428360405161103992919061240d565b60405180910390a250505061104c6116a4565b505050504261012f819055505050505050565b61012f5481565b61106e61113d565b8061013260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6101305481565b6110c261113d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890612b05565b60405180910390fd5b61113a816114c3565b50565b6111456115ec565b73ffffffffffffffffffffffffffffffffffffffff16611163610b1e565b73ffffffffffffffffffffffffffffffffffffffff16146111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090612b71565b60405180910390fd5b565b60006111e97f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6116ae565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61121a61113d565b50565b6112497f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914360001b6116b8565b60000160009054906101000a900460ff161561126d57611268836116c2565b611386565b8273ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156112d557506040513d601f19601f820116820180604052508101906112d29190612ba6565b60015b611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90612c45565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b8114611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137090612cd7565b60405180910390fd5b5061138583838361177b565b5b505050565b6113936117a7565b600060c960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113d76115ec565b6040516113e49190612268565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16611460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145790612d69565b60405180910390fd5b6114686117f0565b565b600060019054906101000a900460ff166114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090612d69565b60405180910390fd5b6114c1611851565b565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115916118bd565b600160c960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115d56115ec565b6040516115e29190612268565b60405180910390a1565b600033905090565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b600080600061163b87878787611907565b91509150611648816119e9565b8192505050949350505050565b600260fb540361169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190612dd5565b60405180910390fd5b600260fb81905550565b600160fb81905550565b6000819050919050565b6000819050919050565b6116cb816113ee565b61170a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170190612e67565b60405180910390fd5b806117377f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6116ae565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61178483611b4f565b6000825111806117915750805b156117a2576117a08383611b9e565b505b505050565b6117af610ae1565b6117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590612ed3565b60405180910390fd5b565b600060019054906101000a900460ff1661183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690612d69565b60405180910390fd5b61184f61184a6115ec565b6114c3565b565b600060019054906101000a900460ff166118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790612d69565b60405180910390fd5b600060c960006101000a81548160ff021916908315150217905550565b6118c5610ae1565b15611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90612f3f565b60405180910390fd5b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156119425760006003915091506119e0565b6000600187878787604051600081526020016040526040516119679493929190612f6e565b6020604051602081039080840390855afa158015611989573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119d7576000600192509250506119e0565b80600092509250505b94509492505050565b600060048111156119fd576119fc612fb3565b5b816004811115611a1057611a0f612fb3565b5b0315611b4c5760016004811115611a2a57611a29612fb3565b5b816004811115611a3d57611a3c612fb3565b5b03611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a749061302e565b60405180910390fd5b60026004811115611a9157611a90612fb3565b5b816004811115611aa457611aa3612fb3565b5b03611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb9061309a565b60405180910390fd5b60036004811115611af857611af7612fb3565b5b816004811115611b0b57611b0a612fb3565b5b03611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b429061312c565b60405180910390fd5b5b50565b611b58816116c2565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b6060611bc383836040518060600160405280602781526020016132a760279139611bcb565b905092915050565b60606000808573ffffffffffffffffffffffffffffffffffffffff1685604051611bf591906131bd565b600060405180830381855af49150503d8060008114611c30576040519150601f19603f3d011682016040523d82523d6000602084013e611c35565b606091505b5091509150611c4686838387611c51565b925050509392505050565b60608315611cb3576000835103611cab57611c6b856113ee565b611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190613220565b60405180910390fd5b5b829050611cbe565b611cbd8383611cc6565b5b949350505050565b600082511115611cd95781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d9190613284565b60405180910390fd5b6000604051905090565b600080fd5b600080fd5b6000819050919050565b611d3d81611d2a565b8114611d4857600080fd5b50565b600081359050611d5a81611d34565b92915050565b60008060408385031215611d7757611d76611d20565b5b6000611d8585828601611d4b565b9250506020611d9685828601611d4b565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611dcb82611da0565b9050919050565b6000611ddd82611dc0565b9050919050565b611ded81611dd2565b8114611df857600080fd5b50565b600081359050611e0a81611de4565b92915050565b600060208284031215611e2657611e25611d20565b5b6000611e3484828501611dfb565b91505092915050565b611e4681611d2a565b82525050565b6000602082019050611e616000830184611e3d565b92915050565b6000819050919050565b6000611e8c611e87611e8284611da0565b611e67565b611da0565b9050919050565b6000611e9e82611e71565b9050919050565b6000611eb082611e93565b9050919050565b611ec081611ea5565b82525050565b6000602082019050611edb6000830184611eb7565b92915050565b611eea81611dc0565b8114611ef557600080fd5b50565b600081359050611f0781611ee1565b92915050565b600060208284031215611f2357611f22611d20565b5b6000611f3184828501611ef8565b91505092915050565b6000819050919050565b611f4d81611f3a565b8114611f5857600080fd5b50565b600081359050611f6a81611f44565b92915050565b600060208284031215611f8657611f85611d20565b5b6000611f9484828501611f5b565b91505092915050565b60008115159050919050565b611fb281611f9d565b82525050565b6000602082019050611fcd6000830184611fa9565b92915050565b6000611fde82611dc0565b9050919050565b611fee81611fd3565b8114611ff957600080fd5b50565b60008135905061200b81611fe5565b92915050565b6000806040838503121561202857612027611d20565b5b600061203685828601611ef8565b925050602061204785828601611ffc565b9150509250929050565b600061205c82611e93565b9050919050565b61206c81612051565b82525050565b60006020820190506120876000830184612063565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6120e082612097565b810181811067ffffffffffffffff821117156120ff576120fe6120a8565b5b80604052505050565b6000612112611d16565b905061211e82826120d7565b919050565b600067ffffffffffffffff82111561213e5761213d6120a8565b5b61214782612097565b9050602081019050919050565b82818337600083830152505050565b600061217661217184612123565b612108565b90508281526020810184848401111561219257612191612092565b5b61219d848285612154565b509392505050565b600082601f8301126121ba576121b961208d565b5b81356121ca848260208601612163565b91505092915050565b600080604083850312156121ea576121e9611d20565b5b60006121f885828601611ef8565b925050602083013567ffffffffffffffff81111561221957612218611d25565b5b612225858286016121a5565b9150509250929050565b61223881611f3a565b82525050565b6000602082019050612253600083018461222f565b92915050565b61226281611dc0565b82525050565b600060208201905061227d6000830184612259565b92915050565b600080fd5b600080fd5b60008083601f8401126122a3576122a261208d565b5b8235905067ffffffffffffffff8111156122c0576122bf612283565b5b6020830191508360018202830111156122dc576122db612288565b5b9250929050565b600080fd5b600060ff82169050919050565b6122fe816122e8565b811461230957600080fd5b50565b60008135905061231b816122f5565b92915050565b600060608284031215612337576123366122e3565b5b6123416060612108565b9050600061235184828501611f5b565b600083015250602061236584828501611f5b565b60208301525060406123798482850161230c565b60408301525092915050565b600080600080600060c086880312156123a1576123a0611d20565b5b60006123af88828901611d4b565b955050602086013567ffffffffffffffff8111156123d0576123cf611d25565b5b6123dc8882890161228d565b945094505060406123ef88828901611f5b565b925050606061240088828901612321565b9150509295509295909350565b60006040820190506124226000830185611e3d565b61242f6020830184611e3d565b9392505050565b600082825260208201905092915050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f64656c656761746563616c6c0000000000000000000000000000000000000000602082015250565b60006124a3602c83612436565b91506124ae82612447565b604082019050919050565b600060208201905081810360008301526124d281612496565b9050919050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f6163746976652070726f78790000000000000000000000000000000000000000602082015250565b6000612535602c83612436565b9150612540826124d9565b604082019050919050565b6000602082019050818103600083015261256481612528565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006125c7602e83612436565b91506125d28261256b565b604082019050919050565b600060208201905081810360008301526125f6816125ba565b9050919050565b6000819050919050565b600061262261261d612618846125fd565b611e67565b6122e8565b9050919050565b61263281612607565b82525050565b600060208201905061264d6000830184612629565b92915050565b7f555550535570677261646561626c653a206d757374206e6f742062652063616c60008201527f6c6564207468726f7567682064656c656761746563616c6c0000000000000000602082015250565b60006126af603883612436565b91506126ba82612653565b604082019050919050565b600060208201905081810360008301526126de816126a2565b9050919050565b7f4e6f7420656e6f75676820504c532062616c616e636500000000000000000000600082015250565b600061271b601683612436565b9150612726826126e5565b602082019050919050565b6000602082019050818103600083015261274a8161270e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061278b82611d2a565b915061279683611d2a565b92508282039050818111156127ae576127ad612751565b5b92915050565b7f546f6f206f6674656e0000000000000000000000000000000000000000000000600082015250565b60006127ea600983612436565b91506127f5826127b4565b602082019050919050565b60006020820190508181036000830152612819816127dd565b9050919050565b60008160601b9050919050565b600061283882612820565b9050919050565b600061284a8261282d565b9050919050565b61286261285d82611dc0565b61283f565b82525050565b6000819050919050565b61288361287e82611d2a565b612868565b82525050565b6000819050919050565b6128a461289f82611f3a565b612889565b82525050565b60006128b68288612851565b6014820191506128c68287612872565b6020820191506128d68286612851565b6014820191506128e68285612872565b6020820191506128f68284612893565b6020820191508190509695505050505050565b7f41636365737320746f6b656e20616c7265616479207573656400000000000000600082015250565b600061293f601983612436565b915061294a82612909565b602082019050919050565b6000602082019050818103600083015261296e81612932565b9050919050565b7f496e76616c69642061636365737320746f6b656e207369676e65720000000000600082015250565b60006129ab601b83612436565b91506129b682612975565b602082019050919050565b600060208201905081810360008301526129da8161299e565b9050919050565b6000815190506129f081611d34565b92915050565b600060208284031215612a0c57612a0b611d20565b5b6000612a1a848285016129e1565b91505092915050565b600082825260208201905092915050565b6000612a408385612a23565b9350612a4d838584612154565b612a5683612097565b840190509392505050565b6000604082019050612a766000830186611e3d565b8181036020830152612a89818486612a34565b9050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612aef602683612436565b9150612afa82612a93565b604082019050919050565b60006020820190508181036000830152612b1e81612ae2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b5b602083612436565b9150612b6682612b25565b602082019050919050565b60006020820190508181036000830152612b8a81612b4e565b9050919050565b600081519050612ba081611f44565b92915050565b600060208284031215612bbc57612bbb611d20565b5b6000612bca84828501612b91565b91505092915050565b7f45524331393637557067726164653a206e657720696d706c656d656e7461746960008201527f6f6e206973206e6f742055555053000000000000000000000000000000000000602082015250565b6000612c2f602e83612436565b9150612c3a82612bd3565b604082019050919050565b60006020820190508181036000830152612c5e81612c22565b9050919050565b7f45524331393637557067726164653a20756e737570706f727465642070726f7860008201527f6961626c65555549440000000000000000000000000000000000000000000000602082015250565b6000612cc1602983612436565b9150612ccc82612c65565b604082019050919050565b60006020820190508181036000830152612cf081612cb4565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000612d53602b83612436565b9150612d5e82612cf7565b604082019050919050565b60006020820190508181036000830152612d8281612d46565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612dbf601f83612436565b9150612dca82612d89565b602082019050919050565b60006020820190508181036000830152612dee81612db2565b9050919050565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b6000612e51602d83612436565b9150612e5c82612df5565b604082019050919050565b60006020820190508181036000830152612e8081612e44565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612ebd601483612436565b9150612ec882612e87565b602082019050919050565b60006020820190508181036000830152612eec81612eb0565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612f29601083612436565b9150612f3482612ef3565b602082019050919050565b60006020820190508181036000830152612f5881612f1c565b9050919050565b612f68816122e8565b82525050565b6000608082019050612f83600083018761222f565b612f906020830186612f5f565b612f9d604083018561222f565b612faa606083018461222f565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613018601883612436565b915061302382612fe2565b602082019050919050565b600060208201905081810360008301526130478161300b565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613084601f83612436565b915061308f8261304e565b602082019050919050565b600060208201905081810360008301526130b381613077565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613116602283612436565b9150613121826130ba565b604082019050919050565b6000602082019050818103600083015261314581613109565b9050919050565b600081519050919050565b600081905092915050565b60005b83811015613180578082015181840152602081019050613165565b60008484015250505050565b60006131978261314c565b6131a18185613157565b93506131b1818560208601613162565b80840191505092915050565b60006131c9828461318c565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061320a601d83612436565b9150613215826131d4565b602082019050919050565b60006020820190508181036000830152613239816131fd565b9050919050565b600081519050919050565b600061325682613240565b6132608185612436565b9350613270818560208601613162565b61327981612097565b840191505092915050565b6000602082019050818103600083015261329e818461324b565b90509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220a5c3a49c4fb16355a0cdf979399f3b028a82d0a766bb32d2462d6a53004223fe64736f6c63430008190033