Source Code
Latest 25 from a total of 384 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Claim To | 24507776 | 4 days ago | IN | 0 ETH | 0.00000353 | ||||
| Claim To | 24483512 | 7 days ago | IN | 0 ETH | 0.00012954 | ||||
| Claim To | 24472849 | 8 days ago | IN | 0 ETH | 0.0000135 | ||||
| Claim To | 24098223 | 61 days ago | IN | 0 ETH | 0.00001089 | ||||
| Claim To | 23898410 | 89 days ago | IN | 0 ETH | 0.00028302 | ||||
| Claim To | 23882187 | 91 days ago | IN | 0 ETH | 0.00028452 | ||||
| Claim To | 23878335 | 92 days ago | IN | 0 ETH | 0.00028383 | ||||
| Claim To | 23676579 | 120 days ago | IN | 0 ETH | 0.00033605 | ||||
| Claim To | 23576065 | 134 days ago | IN | 0 ETH | 0.00019595 | ||||
| Claim To | 23549362 | 138 days ago | IN | 0 ETH | 0.00058137 | ||||
| Claim To | 23532616 | 140 days ago | IN | 0 ETH | 0.00022868 | ||||
| Claim To | 23495493 | 145 days ago | IN | 0 ETH | 0.00001602 | ||||
| Claim To | 23428780 | 155 days ago | IN | 0 ETH | 0.00001828 | ||||
| Claim To | 23206650 | 186 days ago | IN | 0 ETH | 0.0001635 | ||||
| Claim To | 23032420 | 210 days ago | IN | 0 ETH | 0.00042485 | ||||
| Claim To | 22723278 | 253 days ago | IN | 0 ETH | 0.00031751 | ||||
| Claim To | 22348600 | 306 days ago | IN | 0 ETH | 0.00009815 | ||||
| Claim To | 22305073 | 312 days ago | IN | 0 ETH | 0.00011765 | ||||
| Claim To | 22211130 | 325 days ago | IN | 0 ETH | 0.00011903 | ||||
| Claim To | 22027174 | 350 days ago | IN | 0 ETH | 0.00018261 | ||||
| Claim To | 22003174 | 354 days ago | IN | 0 ETH | 0.0001318 | ||||
| Claim To | 21918798 | 366 days ago | IN | 0 ETH | 0.00017764 | ||||
| Claim To | 21903436 | 368 days ago | IN | 0 ETH | 0.0002242 | ||||
| Claim To | 21840215 | 377 days ago | IN | 0 ETH | 0.00017573 | ||||
| Claim To | 21810960 | 381 days ago | IN | 0 ETH | 0.00015013 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| 0x60c06040 | 20109985 | 618 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Vesting
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.16;
import "@chainlink/contracts/src/v0.8/KeeperCompatible.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "contracts/vesting/IVesting.sol";
import "contracts/vesting/Releaser.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
/**
* @title Vesting
*/
contract Vesting is IVesting, Pausable, AccessControl, ReentrancyGuard, KeeperCompatibleInterface {
using SafeERC20 for IERC20;
using SafeERC20 for IERC20Metadata;
using EnumerableSet for EnumerableSet.AddressSet;
bytes32 public constant AIRDROPPER = keccak256("AIRDROPPER");
uint256 public tge;
/// @notice The redund period in seconds after TGE
uint256 public refundPeriod;
Releaser private releaser;
IERC20 private immutable token;
IERC20Metadata public immutable refundToken;
uint256 private _totalShares;
uint256 private _totalReleased;
mapping(address => uint256) private _shares;
mapping(address => uint256) private _released;
EnumerableSet.AddressSet private _refundees;
uint256 public claimFee;
address payable public feeReserve;
address public refundReserve;
EnumerableSet.AddressSet private _autoAirdrops;
uint256 public airdropFee;
/// @dev The bool to determine if auto compounding is active
bool private iterationActive = false;
/// @dev The index of the address to start the auroAirdrop iteration from
uint256 private autoAirdropIndex;
/// @dev The number of addresses to iterate through in each auroAirdrop iteration
uint256 private addressCountPerIteartion = 50;
event PaymentReleased(address to, uint256 amount);
event Airdropped(address to, uint256 amount);
modifier onlyInRefundPeriod() {
require(
(block.timestamp < refundPeriod + tge) && (block.timestamp >= tge),
"Refund is not open"
);
_;
}
constructor(
address _token,
address _refundToken,
address _refundReserve,
address _feeReserve,
uint256 _tge,
uint256 _cliff,
uint256 _durationInSec,
uint256 _periodInSeconds,
uint256 _refundPeriod
) {
require(_token != address(0), "Token address cannot be 0");
require(_durationInSec > 0, "Duration cannot be 0");
require(_refundReserve != address(0), "Refund reserve cannot be the zero address");
require(_feeReserve != address(0), "Fee reserve cannot be the zero address");
releaser = new Releaser(address(this), _token, _cliff, _durationInSec, _periodInSeconds);
token = IERC20(_token);
refundToken = IERC20Metadata(_refundToken);
refundReserve = _refundReserve;
feeReserve = payable(_feeReserve);
tge = _tge;
refundPeriod = _refundPeriod;
airdropFee = 10 * refundToken.decimals();
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
_grantRole(AIRDROPPER, msg.sender);
}
function updateIterationNumber(uint256 iteration) external onlyRole(DEFAULT_ADMIN_ROLE) {
addressCountPerIteartion = iteration;
}
function setRefundPeriod(uint256 _refundPeriod) external onlyRole(DEFAULT_ADMIN_ROLE) {
refundPeriod = _refundPeriod;
}
function updateReleaser(address _releaser) external onlyRole(DEFAULT_ADMIN_ROLE) {
require(_releaser != address(0), "Vesting: releaser cannot be the zero address");
releaser = Releaser(_releaser);
}
function setRefundReserve(address _refundReserve) external onlyRole(DEFAULT_ADMIN_ROLE) {
require(_refundReserve != address(0), "Vesting: refund reserve cannot be the zero address");
refundReserve = _refundReserve;
}
function setFeeReserve(address _feeReserve) external onlyRole(DEFAULT_ADMIN_ROLE) {
require(_feeReserve != address(0), "Vesting: fee reserve cannot be the zero address");
feeReserve = payable(_feeReserve);
}
function setClaimFee(uint256 _fee) external onlyRole(DEFAULT_ADMIN_ROLE) {
claimFee = _fee;
}
function setAirdropFee(uint256 _fee) external onlyRole(DEFAULT_ADMIN_ROLE) {
airdropFee = _fee;
}
function emergencyWithdraw(
uint256 _amount,
bool _fromReleaser
) external onlyRole(DEFAULT_ADMIN_ROLE) {
if (_fromReleaser) {
releaser.emergencyWithdraw(msg.sender, _amount);
} else {
token.safeTransfer(msg.sender, _amount);
}
}
function replaceWallet(
address _oldWallet,
address _newWallet
) external onlyRole(DEFAULT_ADMIN_ROLE) {
require(_oldWallet != address(0), "Vesting: old wallet is the zero address");
require(_newWallet != address(0), "Vesting: new wallet is the zero address");
require(_shares[_oldWallet] > 0, "Vesting: old wallet has no shares");
uint256 oldShares = _shares[_oldWallet];
_shares[_oldWallet] = 0;
_shares[_newWallet] = oldShares;
uint256 oldReleased = _released[_oldWallet];
_released[_oldWallet] = 0;
_released[_newWallet] = oldReleased;
emit SharesUpdated(_oldWallet, 0);
emit SharesUpdated(_newWallet, oldShares);
}
function updateTimes(
uint256 _tge,
uint256 _cliff,
uint256 _durationInSec,
uint256 _periodInSeconds
) external onlyRole(DEFAULT_ADMIN_ROLE) {
if (_tge > 0) {
tge = _tge;
}
if (_cliff > 0) {
releaser.updateStartTime(_cliff);
}
if (_durationInSec > 0) {
releaser.updateDuration(_durationInSec);
}
if (_periodInSeconds > 0) {
releaser.updatePeriods(_periodInSeconds);
}
}
function airdrop(address[] memory _accounts) external onlyRole(AIRDROPPER) {
releaser.release();
for (uint256 i = 0; i < _accounts.length; i++) {
uint256 payment = releasable(_accounts[i]);
if (payment > 0) {
_release(_accounts[i], _accounts[i]);
emit Claimed(_accounts[i], payment);
}
}
}
function removeAutoAirdrop(address _account) external onlyRole(DEFAULT_ADMIN_ROLE) {
require(_autoAirdrops.contains(_account), "Vesting: account has not requested airdrop");
_autoAirdrops.remove(_account);
}
function requestAutoAirdrop() external nonReentrant {
require(
!_autoAirdrops.contains(msg.sender),
"Vesting: account has already requested airdrop"
);
require(_shares[msg.sender] > 0, "Vesting: account has no shares");
_autoAirdrops.add(msg.sender);
refundToken.safeTransferFrom(msg.sender, feeReserve, airdropFee);
}
/**
* @dev See {IVesting-claim}.
*/
function claim() external payable nonReentrant whenNotPaused {
require(block.timestamp >= tge, "Vesting: TGE has not happened yet");
require(msg.value >= claimFee, "Vesting: claim fee is not enough");
releaser.release();
uint256 payment = releasable(msg.sender);
_release(msg.sender, msg.sender);
if (msg.value > 0) {
(bool sent, ) = feeReserve.call{value: msg.value}("");
require(sent, "Failed to send fee");
}
emit Claimed(msg.sender, payment);
}
function claimTo(address _receiver) external payable nonReentrant whenNotPaused {
require(block.timestamp >= tge, "Vesting: TGE has not happened yet");
require(msg.value >= claimFee, "Vesting: claim fee is not enough");
releaser.release();
uint256 payment = releasable(msg.sender);
_release(msg.sender, _receiver);
if (msg.value > 0) {
(bool sent, ) = feeReserve.call{value: msg.value}("");
require(sent, "Failed to send fee");
}
emit Claimed(msg.sender, payment);
}
function getRefund() external nonReentrant whenNotPaused onlyInRefundPeriod {
require(claimedOf(msg.sender) == 0, "Vesting: account has already claimed");
require(!_refundees.contains(msg.sender), "Vesting: account has already been refunded");
require(_shares[msg.sender] > 0, "Vesting: account has no shares");
_refundUser(msg.sender);
}
/**
* @dev Function to remove shares from an arrayof accounts and transfer the tokens to the admin.
* emits {Refunded} event.
* @param _accounts addresses of the accounts.
*/
function refundUsers(address[] memory _accounts) external onlyRole(DEFAULT_ADMIN_ROLE) {
for (uint256 i = 0; i < _accounts.length; i++) {
if (_refundees.contains(_accounts[i])) {
continue;
} else {
_refundUser(_accounts[i]);
}
}
}
// ACCESS CONTROL FUNCTIONS
function pause() external onlyRole(DEFAULT_ADMIN_ROLE) {
_pause();
}
function unpause() external onlyRole(DEFAULT_ADMIN_ROLE) {
_unpause();
}
function batchSetShares(address[] memory _accounts, uint256[] memory _shares_) external {
require(_accounts.length == _shares_.length, "Vesting: arrays length mismatch");
for (uint256 i = 0; i < _accounts.length; i++) {
setShares(_accounts[i], _shares_[i]);
}
}
function batchAddShares(address[] memory _accounts, uint256[] memory _shares_) external {
require(_accounts.length == _shares_.length, "Vesting: arrays length mismatch");
for (uint256 i = 0; i < _accounts.length; i++) {
addShares(_accounts[i], _shares_[i]);
}
}
function batchRemoveShares(address[] memory _accounts) external {
for (uint256 i = 0; i < _accounts.length; i++) {
removeShares(_accounts[i]);
}
}
function checkUpkeep(
bytes calldata /* checkData */
) external view override returns (bool upkeepNeeded, bytes memory performData) {
upkeepNeeded = iterationActive;
return (upkeepNeeded, "");
// We don't use the checkData in this example. The checkData is defined when the Upkeep was registered.
}
function performUpkeep(bytes calldata /* performData */) external override {
//We highly recommend revalidating the upkeep in the performUpkeep function
if (iterationActive) {
autoAirdrop();
}
// We don't use the performData in this example. The performData is generated by the Keeper's call to your checkUpkeep function
}
function autoAirdrop() public {
uint256 usersLeft = _autoAirdrops.length() - autoAirdropIndex;
uint256 startIndex = autoAirdropIndex;
uint256 remaingCount;
if (usersLeft > addressCountPerIteartion) {
iterationActive = true;
autoAirdropIndex = autoAirdropIndex + addressCountPerIteartion;
remaingCount = addressCountPerIteartion;
} else {
iterationActive = false;
remaingCount = usersLeft;
autoAirdropIndex = 0;
}
for (uint256 i = startIndex; i < startIndex + remaingCount; i++) {
address user = _autoAirdrops.at(i);
_autoAirdrop(user);
}
}
/**
* @dev See {IVesting-claimableOf}.
*/
function claimableOf(address _account) external view returns (uint256) {
return releasable(_account);
}
/**
* @dev Function to get the vesting releaser contract.
* @return address of the releaser contract.
*/
function getReleaser() external view returns (address) {
return address(releaser);
}
/**
* @dev Function to get the vesting token contract.
* @return address of the token contract.
*/
function getTokenAddress() external view returns (address) {
return address(token);
}
/**
* @dev Getter for the amount of shares held by an account.
*/
function shares(address account) external view returns (uint256) {
return _shares[account];
}
function getTotalShares() external view returns (uint256) {
return _totalShares;
}
function getRefundeeNumber() external view returns (uint256) {
return _refundees.length();
}
function getRefundees(uint _start, uint _end) external view returns (address[] memory) {
uint256 refundeesCount = _refundees.length();
require(_start >= 0, "Vesting: start is negative");
require(_start < refundeesCount, "Vesting: start is greater than refundees length");
if (_end > refundeesCount) {
_end = refundeesCount;
}
address[] memory _refs = new address[](_end - _start);
for (uint i = _start; i < _end; i++) {
_refs[i - _start] = _refundees.at(i);
}
return _refs;
}
function getAutoAirdropNumber() external view returns (uint256) {
return _autoAirdrops.length();
}
function getAutoAirdrops(uint _start, uint _end) external view returns (address[] memory) {
uint256 airdropsCount = _autoAirdrops.length();
require(_start >= 0, "Vesting: start is negative");
require(_start < airdropsCount, "Vesting: start is greater than airdrops length");
if (_end > airdropsCount) {
_end = airdropsCount;
}
address[] memory _drops = new address[](_end - _start);
for (uint i = _start; i < _end; i++) {
_drops[i - _start] = _autoAirdrops.at(i);
}
return _drops;
}
/**
* @dev See {IVesting-setShares}.
*/
function setShares(address _account, uint256 shares_) public onlyRole(DEFAULT_ADMIN_ROLE) {
require(_account != address(0), "Vesting: account is the zero address");
require(shares_ > 0, "Vesting: shares are 0");
uint256 oldShares = _shares[_account];
_shares[_account] = shares_;
_totalShares = _totalShares + shares_ - oldShares;
emit SharesUpdated(_account, shares_);
}
/**
* @dev See {IVesting-addShares}.
*/
function addShares(address _account, uint256 _amount) public onlyRole(DEFAULT_ADMIN_ROLE) {
require(_account != address(0), "Vesting: account is the zero address");
require(_amount > 0, "Vesting: shares are 0");
_shares[_account] += _amount;
_totalShares += _amount;
emit SharesAdded(_account, _amount);
}
/**
* @dev See {IVesting-removeShares}.
*/
function removeShares(address _account) public onlyRole(DEFAULT_ADMIN_ROLE) {
_removeShares(_account);
}
/**
* @dev See {IVesting-totalClaimableOf}.
*/
function totalClaimableOf(address _account) public view returns (uint256) {
uint256 totalAmount = token.balanceOf(address(this)) +
token.balanceOf(address(releaser)) +
_totalReleased;
return _shareOf(_account, totalAmount);
}
/**
* @dev See {IVesting-claimedOf}.
*/
function claimedOf(address _account) public view returns (uint256) {
return _released[_account];
}
function _autoAirdrop(address _account) internal {
require(_autoAirdrops.contains(_account), "Vesting: account has not requested airdrop");
require(_shares[_account] > 0, "Vesting: account has no shares");
releaser.release();
uint256 payment = releasable(_account);
if (payment > 0) {
_release(_account, _account);
emit Airdropped(_account, payment);
}
}
/**
* @dev Function to remove shares from an account and transfer the tokens to the admin.
* emits {Refunded} event.
* @param _account address of the account.
*/
function _refundUser(address _account) internal {
require(releaser.released() == 0, "Cliff has ended");
if (claimedOf(_account) > 0) {
return;
} else {
_refundees.add(_account);
// releaser.release();
uint256 payment = releasable(_account);
uint256 notClaimed = totalClaimableOf(_account);
uint256 share = _shares[_account];
_removeShares(_account);
releaser.emergencyWithdraw(refundReserve, notClaimed - payment);
token.safeTransfer(refundReserve, payment);
refundToken.safeTransferFrom(refundReserve, _account, share);
emit Refunded(_account, notClaimed);
}
}
/**
* @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
* percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
* contract.
*/
function _release(address account, address _receiver) internal virtual {
require(_shares[account] > 0, "Vesting: account has no shares");
uint256 payment = releasable(account);
require(payment != 0, "Vesting: account is not due payment");
_released[account] += payment;
_totalReleased += payment;
token.safeTransfer(_receiver, payment);
emit PaymentReleased(_receiver, payment);
}
function _removeShares(address _account) internal {
require(_account != address(0), "Vesting: account is the zero address");
uint256 oldShares = _shares[_account];
_shares[_account] = 0;
_totalShares -= oldShares;
emit SharesUpdated(_account, 0);
}
/**
* @dev Getter for the amount of shares in tokens with respect to total amounts.
* @param _account address of the account.
* @param _amount amount of total tokens.
* @return amount of tokens account can receive.
*/
function _shareOf(address _account, uint256 _amount) internal view returns (uint256) {
return (_amount * _shares[_account]) / _totalShares;
}
/**
* @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
* IERC20 contract.
*/
function releasable(address account) internal view returns (uint256) {
uint256 totalReceived = token.balanceOf(address(this)) +
_totalReleased +
releaser.releasable();
return _pendingPayment(account, totalReceived, _released[account]);
}
/**
* @dev internal logic for computing the pending payment of an `account` given the token historical balances and
* already released amounts.
*/
function _pendingPayment(
address account,
uint256 totalReceived,
uint256 alreadyReleased
) private view returns (uint256) {
return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
}
function canRequestRefund() external view override returns (bool) {
return
(block.timestamp < refundPeriod + tge) &&
(block.timestamp >= tge) &&
(_shares[msg.sender] > 0) &&
(!_refundees.contains(msg.sender)) &&
(claimedOf(msg.sender) == 0);
}
function canRequestRefundOf(address _account) external view returns (bool) {
return
(block.timestamp < refundPeriod + tge) &&
(block.timestamp >= tge) &&
(_shares[_account] > 0) &&
(!_refundees.contains(_account)) &&
(claimedOf(_account) == 0);
}
function hasRequestedRefund(address _account) external view override returns (bool) {
return _refundees.contains(_account);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract AutomationBase {
error OnlySimulatedBackend();
/**
* @notice method that allows it to be simulated via eth_call by checking that
* the sender is the zero address.
*/
function preventExecution() internal view {
if (tx.origin != address(0)) {
revert OnlySimulatedBackend();
}
}
/**
* @notice modifier that allows it to be simulated via eth_call by checking
* that the sender is the zero address.
*/
modifier cannotExecute() {
preventExecution();
_;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./AutomationBase.sol";
import "./interfaces/AutomationCompatibleInterface.sol";
abstract contract AutomationCompatible is AutomationBase, AutomationCompatibleInterface {}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface AutomationCompatibleInterface {
/**
* @notice method that is simulated by the keepers to see if any work actually
* needs to be performed. This method does does not actually need to be
* executable, and since it is only ever simulated it can consume lots of gas.
* @dev To ensure that it is never called, you may want to add the
* cannotExecute modifier from KeeperBase to your implementation of this
* method.
* @param checkData specified in the upkeep registration so it is always the
* same for a registered upkeep. This can easily be broken down into specific
* arguments using `abi.decode`, so multiple upkeeps can be registered on the
* same contract and easily differentiated by the contract.
* @return upkeepNeeded boolean to indicate whether the keeper should call
* performUpkeep or not.
* @return performData bytes that the keeper should call performUpkeep with, if
* upkeep is needed. If you would like to encode data to decode later, try
* `abi.encode`.
*/
function checkUpkeep(bytes calldata checkData) external returns (bool upkeepNeeded, bytes memory performData);
/**
* @notice method that is actually executed by the keepers, via the registry.
* The data returned by the checkUpkeep simulation will be passed into
* this method to actually be executed.
* @dev The input to this method should not be trusted, and the caller of the
* method should not even be restricted to any single registry. Anyone should
* be able call it, and the input should be validated, there is no guarantee
* that the data passed in is the performData returned from checkUpkeep. This
* could happen due to malicious keepers, racing keepers, or simply a state
* change while the performUpkeep transaction is waiting for confirmation.
* Always validate the data passed in.
* @param performData is the data which was passed back from the checkData
* simulation. If it is encoded, it can easily be decoded into other types by
* calling `abi.decode`. This data should not be trusted, and should be
* validated against the contract's current state.
*/
function performUpkeep(bytes calldata performData) external;
}// SPDX-License-Identifier: MIT
/**
* @notice This is a deprecated interface. Please use AutomationCompatible directly.
*/
pragma solidity ^0.8.0;
import {AutomationCompatible as KeeperCompatible} from "./AutomationCompatible.sol";
import {AutomationBase as KeeperBase} from "./AutomationBase.sol";
import {AutomationCompatibleInterface as KeeperCompatibleInterface} from "./interfaces/AutomationCompatibleInterface.sol";// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)
pragma solidity ^0.8.0;
import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```solidity
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```solidity
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
* to enforce additional security measures for this role.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address => bool) members;
bytes32 adminRole;
}
mapping(bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with a standardized message including the required role.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*
* _Available since v4.1._
*/
modifier onlyRole(bytes32 role) {
_checkRole(role);
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
return _roles[role].members[account];
}
/**
* @dev Revert with a standard message if `_msgSender()` is missing `role`.
* Overriding this function changes the behavior of the {onlyRole} modifier.
*
* Format of the revert message is described in {_checkRole}.
*
* _Available since v4.6._
*/
function _checkRole(bytes32 role) internal view virtual {
_checkRole(role, _msgSender());
}
/**
* @dev Revert with a standard message if `account` is missing `role`.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*/
function _checkRole(bytes32 role, address account) internal view virtual {
if (!hasRole(role, account)) {
revert(
string(
abi.encodePacked(
"AccessControl: account ",
Strings.toHexString(account),
" is missing role ",
Strings.toHexString(uint256(role), 32)
)
)
);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleGranted} event.
*/
function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleRevoked} event.
*/
function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been revoked `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*
* May emit a {RoleRevoked} event.
*/
function renounceRole(bytes32 role, address account) public virtual override {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* May emit a {RoleGranted} event.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*
* NOTE: This function is deprecated in favor of {_grantRole}.
*/
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Grants `role` to `account`.
*
* Internal function without access restriction.
*
* May emit a {RoleGranted} event.
*/
function _grantRole(bytes32 role, address account) internal virtual {
if (!hasRole(role, account)) {
_roles[role].members[account] = true;
emit RoleGranted(role, account, _msgSender());
}
}
/**
* @dev Revokes `role` from `account`.
*
* Internal function without access restriction.
*
* May emit a {RoleRevoked} event.
*/
function _revokeRole(bytes32 role, address account) internal virtual {
if (hasRole(role, account)) {
_roles[role].members[account] = false;
emit RoleRevoked(role, account, _msgSender());
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
pragma solidity ^0.8.0;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.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 Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. 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);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.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 Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @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 ReentrancyGuard {
// 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;
constructor() {
_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;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// 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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
* Revert on invalid signature.
*/
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*
* This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
// and not revert is the subcall reverts.
(bool success, bytes memory returndata) = address(token).call(data);
return
success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
}
}// 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 Address {
/**
* @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);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// 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 Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// 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);
}
}
}// 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 SignedMath {
/**
* @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);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.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, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
/**
* @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));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
pragma solidity ^0.8.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```solidity
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*
* [WARNING]
* ====
* Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
* unusable.
* See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
*
* In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
* array of EnumerableSet.
* ====
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping(bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
if (lastIndex != toDeleteIndex) {
bytes32 lastValue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastValue;
// Update the index for the moved value
set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
bytes32[] memory store = _values(set._inner);
bytes32[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
}// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.16;
interface ILegacyVesting {
event Claimed(address account, uint256 amount);
event Refunded(address account, uint256 amount);
event RefundRequested(address account);
event SharesAdded(address account, uint256 amount);
event SharesUpdated(address account, uint256 newShares);
/**
* @dev Transfers currently claimable tokens to the sender
* emits {Claimed} event.
*/
function claim() external payable;
/**
* @dev Returns `true` if users can request a refund
*/
function canRequestRefund() external view returns (bool);
/**
* @dev checks if `_acount` has requested a refund
*/
function hasRequestedRefund(address _account) external view returns (bool);
/**
* @dev Gets and stores a refund request for the sender
* emits {RefundRequested} event.
*/
function getRefund() external;
/**
* @notice Sets `_amount` shares to `_account` independent of their previous shares.
* @dev Even if `_account` has shares, it will be set to `_amount`.
* emits {SharesUpdated} event.
* @param _account The account to set shares to
* @param _amount The amount of shares to set
*/
function setShares(address _account, uint256 _amount) external;
/**
* @notice Adds `_amount` shares to `_account`.
* @dev If `_account` has no shares, it will be added to the list of shareholders.
* emits {SharesAdded} event.
* @param _account The account to add shares to
* @param _amount The amount of shares to add
*/
function addShares(address _account, uint256 _amount) external;
/**
* @notice Removes `_amount` shares from `_account`.
* @dev If `_account` has no shares, it will be removed from the list of shareholders.
* emits {SharesUpdated} event.
* @param _account The account to remove shares from
*/
function removeShares(address _account) external;
/**
* @dev Returns amount of tokens that can be claimed by `_account`
*/
function claimableOf(address _account) external view returns (uint256);
/**
* @dev Returns total amount of tokens that can be claimed by `_account`
*/
function totalClaimableOf(address _account) external view returns (uint256);
/**
* @dev Returns amount of tokens that has been claimed by `_account`
*/
function claimedOf(address _account) external view returns (uint256);
}// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.16;
import "contracts/vesting/ILegacyVesting.sol";
interface IVesting is ILegacyVesting {
/**
* @dev Transfers currently claimable tokens to the `_receiver`
* emits {Claimed} event.
*/
function claimTo(address _receiver) external payable;
}// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.16;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/**
* @title Releaser
*/
contract Releaser is Ownable {
using SafeERC20 for IERC20;
IERC20 private immutable _token;
address private immutable _beneficiary;
uint256 private _erc20Released;
uint256 private _start;
uint256 private _duration;
uint256 private _periods;
event ERC20Released(address _token, uint256 _amount);
/**
* @dev Set the beneficiary, start timestamp and vesting duration of the vesting wallet.
*/
constructor(
address beneficiaryAddress,
address erc20Token,
uint256 startTimestamp,
uint256 durationSeconds,
uint256 periodInSeconds
) {
require(erc20Token != address(0), "Releaser: token cannot be the zero address");
require(beneficiaryAddress != address(0), "Releaser: beneficiary is zero address");
//require(startTimestamp >= block.timestamp, "Releaser: start is before current time");
require(durationSeconds > 0, "Releaser: duration should be larger than 0");
require(periodInSeconds > 0, "Releaser: period should be larger than 0");
require(
durationSeconds >= periodInSeconds,
"Releaser: duration should be larger than period"
);
_token = IERC20(erc20Token);
_beneficiary = beneficiaryAddress;
_start = startTimestamp;
_duration = durationSeconds;
_periods = periodInSeconds;
}
function updateStartTime(uint256 startTimestamp) external onlyOwner {
_start = startTimestamp;
}
function updateDuration(uint256 durationSeconds) external onlyOwner {
require(durationSeconds > 0, "Releaser: duration should be larger than 0");
require(durationSeconds >= _periods, "Releaser: duration should be larger than period");
_duration = durationSeconds;
}
function updatePeriods(uint256 periodInSeconds) external onlyOwner {
require(_duration >= periodInSeconds, "Releaser: duration should be larger than period");
_periods = periodInSeconds;
}
/**
* @dev Release the tokens that have already vested.
*
* Emits a {ERC20Released} event.
*/
function release() external virtual {
uint256 _releasable = vestedAmount(block.timestamp) - released();
_erc20Released += _releasable;
emit ERC20Released(ERC20token(), _releasable);
_token.safeTransfer(beneficiary(), _releasable);
}
/**
* @dev Withdraw the tokens that have already vested.
* Only in emergency or refund period.
* @param _to Address to withdraw tokens to. This will be the owner of main Vesting contract.
* @param _amount Amount of tokens to withdraw.
*/
function emergencyWithdraw(address _to, uint256 _amount) external onlyOwner {
_token.safeTransfer(_to, _amount);
}
/**
* @dev Calculates the amount of tokens that has already vested.
*/
function vestedAmount(uint256 timestamp) public view virtual returns (uint256) {
if (timestamp < start()) {
return 0;
} else {
uint256 periodsPassed = (timestamp - start()) / _periods;
uint256 scheduled = start() + (periodsPassed * _periods);
return _vestingSchedule(_token.balanceOf(address(this)) + released(), scheduled);
}
}
/**
* @dev Getter for the token address.
*/
function ERC20token() public view virtual returns (address) {
return address(_token);
}
/**
* @dev Getter for the beneficiary address.
*/
function beneficiary() public view virtual returns (address) {
return _beneficiary;
}
/**
* @dev Getter for the start timestamp.
*/
function start() public view virtual returns (uint256) {
return _start;
}
/**
* @dev Getter for the vesting duration.
*/
function duration() public view virtual returns (uint256) {
return _duration;
}
/**
* @dev Getter for the vesting periods.
*/
function periods() public view virtual returns (uint256) {
return _periods;
}
/**
* @dev Amount of token already released
*/
function released() public view virtual returns (uint256) {
return _erc20Released;
}
function releasable() public view virtual returns (uint256) {
return vestedAmount(block.timestamp) - released();
}
/**
* @dev Virtual implementation of the vesting formula. This returns the amount vested, as a function of time, for
* an asset given its total historical allocation.
*/
function _vestingSchedule(
uint256 _totalAllocation,
uint256 _timestamp
) internal view virtual returns (uint256) {
if (_timestamp < start()) {
return 0;
} else if (_timestamp > start() + duration()) {
return _totalAllocation;
} else {
return (_totalAllocation * (_timestamp - start())) / duration();
}
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_refundToken","type":"address"},{"internalType":"address","name":"_refundReserve","type":"address"},{"internalType":"address","name":"_feeReserve","type":"address"},{"internalType":"uint256","name":"_tge","type":"uint256"},{"internalType":"uint256","name":"_cliff","type":"uint256"},{"internalType":"uint256","name":"_durationInSec","type":"uint256"},{"internalType":"uint256","name":"_periodInSeconds","type":"uint256"},{"internalType":"uint256","name":"_refundPeriod","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Airdropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"RefundRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Refunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SharesAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"newShares","type":"uint256"}],"name":"SharesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"AIRDROPPER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"addShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"autoAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"uint256[]","name":"_shares_","type":"uint256[]"}],"name":"batchAddShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"batchRemoveShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"uint256[]","name":"_shares_","type":"uint256[]"}],"name":"batchSetShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canRequestRefund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"canRequestRefundOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"checkUpkeep","outputs":[{"internalType":"bool","name":"upkeepNeeded","type":"bool"},{"internalType":"bytes","name":"performData","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"claimTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"claimableOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"claimedOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_fromReleaser","type":"bool"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeReserve","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAutoAirdropNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"getAutoAirdrops","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRefund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRefundeeNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"getRefundees","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReleaser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"hasRequestedRefund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"performUpkeep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"refundPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundReserve","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundToken","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"refundUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeAutoAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oldWallet","type":"address"},{"internalType":"address","name":"_newWallet","type":"address"}],"name":"replaceWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestAutoAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setAirdropFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setClaimFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeReserve","type":"address"}],"name":"setFeeReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_refundPeriod","type":"uint256"}],"name":"setRefundPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_refundReserve","type":"address"}],"name":"setRefundReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"shares_","type":"uint256"}],"name":"setShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"totalClaimableOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"iteration","type":"uint256"}],"name":"updateIterationNumber","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_releaser","type":"address"}],"name":"updateReleaser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tge","type":"uint256"},{"internalType":"uint256","name":"_cliff","type":"uint256"},{"internalType":"uint256","name":"_durationInSec","type":"uint256"},{"internalType":"uint256","name":"_periodInSeconds","type":"uint256"}],"name":"updateTimes","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c06040526012805460ff1916905560326014553480156200002057600080fd5b5060405162004f0d38038062004f0d8339810160408190526200004391620003ee565b6000805460ff1916905560016002556001600160a01b038916620000ae5760405162461bcd60e51b815260206004820152601960248201527f546f6b656e20616464726573732063616e6e6f7420626520300000000000000060448201526064015b60405180910390fd5b60008311620001005760405162461bcd60e51b815260206004820152601460248201527f4475726174696f6e2063616e6e6f7420626520300000000000000000000000006044820152606401620000a5565b6001600160a01b0387166200016a5760405162461bcd60e51b815260206004820152602960248201527f526566756e6420726573657276652063616e6e6f7420626520746865207a65726044820152686f206164647265737360b81b6064820152608401620000a5565b6001600160a01b038616620001d15760405162461bcd60e51b815260206004820152602660248201527f46656520726573657276652063616e6e6f7420626520746865207a65726f206160448201526564647265737360d01b6064820152608401620000a5565b3089858585604051620001e490620003c3565b6001600160a01b03958616815294909316602085015260408401919091526060830152608082015260a001604051809103906000f0801580156200022c573d6000803e3d6000fd5b50600580546001600160a01b03199081166001600160a01b03938416179091558a821660805289821660a0819052600e805483168b8516179055600d8054909216928916929092179055600386905560048281556040805163313ce56760e01b8152905163313ce567928281019260209291908290030181865afa158015620002b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002df91906200047c565b620002ec90600a620004a8565b60ff16601155620002ff6000336200033a565b6200032b7f78f12a009c29082657d0c0b71e1da642df0932969e5ac25f5190d1e8802d5ff5336200033a565b505050505050505050620004e0565b60008281526001602090815260408083206001600160a01b038516845290915290205460ff16620003bf5760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45b5050565b610eec806200402183390190565b80516001600160a01b0381168114620003e957600080fd5b919050565b60008060008060008060008060006101208a8c0312156200040e57600080fd5b620004198a620003d1565b98506200042960208b01620003d1565b97506200043960408b01620003d1565b96506200044960608b01620003d1565b955060808a0151945060a08a0151935060c08a0151925060e08a015191506101008a015190509295985092959850929598565b6000602082840312156200048f57600080fd5b815160ff81168114620004a157600080fd5b9392505050565b600060ff821660ff84168160ff0481118215151615620004d857634e487b7160e01b600052601160045260246000fd5b029392505050565b60805160a051613ae36200053e600039600081816106ea01528181611f990152612c4001526000818161044101528181610e5c01528181610ede01528181611e3301528181612670015281816128120152612c050152613ae36000f3fe6080604052600436106103815760003560e01c8063789ff0e1116101d1578063a6a3b5b411610102578063cc107a1e116100a0578063d6d5e1011161006f578063d6d5e10114610a64578063e3e1fb0f14610a84578063e50b2bc214610aa4578063fa54cebd14610ac457600080fd5b8063cc107a1e146109e4578063ce7c2ac2146109f9578063d5002f2e14610a2f578063d547741f14610a4457600080fd5b8063b6168acf116100dc578063b6168acf1461094e578063baa3f7ee1461096e578063bb5b3edc146109a4578063c69b7e69146109c457600080fd5b8063a6a3b5b41461090d578063a7497fa514610923578063b2d5ae441461093957600080fd5b806391d148541161016f57806399d32fc41161014957806399d32fc4146108af5780639ce40383146108c5578063a217fddf146108e5578063a262f5f8146108fa57600080fd5b806391d1485414610859578063922555b414610879578063986244551461089957600080fd5b80638903ab9d116101ab5780638903ab9d146107e45780638bccbf62146108045780638dba908c146108245780638e7e54151461084457600080fd5b8063789ff0e1146107915780638456cb59146107b1578063851c17a7146107c657600080fd5b80633cc02171116102b65780634e71d92d116102545780635cb732be116102235780635cb732be146106d857806366093ce31461070c5780636e04ff0d1461072c578063729ad39e1461077157600080fd5b80634e71d92d1461066b57806351d8804f14610673578063596298b5146106a05780635c975abb146106c057600080fd5b80634585e33b116102905780634585e33b146105eb5780634792ad351461060b5780634a426ea41461062b5780634a5dc0281461064b57600080fd5b80633cc02171146105a15780633eef2ec1146105b65780633f4ba83a146105d657600080fd5b806329a06ff51161032357806331f94a28116102fd57806331f94a281461051857806333cd801a1461053857806336568abe1461054d578063368a5e341461056d57600080fd5b806329a06ff5146104b85780632e75ab50146104d85780632f2ff15d146104f857600080fd5b80630db194571161035f5780630db19457146103fd5780630e81073c1461041257806310fe9ae814610432578063248a9ca31461047957600080fd5b806301ffc9a7146103865780630a21b1ac146103bb5780630ac26fa0146103dd575b600080fd5b34801561039257600080fd5b506103a66103a1366004613338565b610ae4565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103db6103d6366004613362565b610b1b565b005b3480156103e957600080fd5b506103a66103f8366004613397565b610b2c565b34801561040957600080fd5b506103a6610b39565b34801561041e57600080fd5b506103db61042d3660046133b2565b610ba7565b34801561043e57600080fd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020016103b2565b34801561048557600080fd5b506104aa610494366004613362565b6000908152600160208190526040909120015490565b6040519081526020016103b2565b3480156104c457600080fd5b506103db6104d3366004613362565b610cae565b3480156104e457600080fd5b506103db6104f3366004613362565b610cbf565b34801561050457600080fd5b506103db6105133660046133dc565b610cd0565b34801561052457600080fd5b506103db610533366004613397565b610cfb565b34801561054457600080fd5b506104aa610d9a565b34801561055957600080fd5b506103db6105683660046133dc565b610da6565b34801561057957600080fd5b506104aa7f78f12a009c29082657d0c0b71e1da642df0932969e5ac25f5190d1e8802d5ff581565b3480156105ad57600080fd5b506104aa610e24565b3480156105c257600080fd5b506104aa6105d1366004613397565b610e30565b3480156105e257600080fd5b506103db610f78565b3480156105f757600080fd5b506103db610606366004613408565b610f8e565b34801561061757600080fd5b506103db610626366004613557565b610fa1565b34801561063757600080fd5b506103db610646366004613557565b61104c565b34801561065757600080fd5b506103db610666366004613362565b6110f7565b6103db611108565b34801561067f57600080fd5b5061069361068e366004613612565b6112f1565b6040516103b29190613634565b3480156106ac57600080fd5b506103db6106bb366004613681565b611427565b3480156106cc57600080fd5b5060005460ff166103a6565b3480156106e457600080fd5b506104617f000000000000000000000000000000000000000000000000000000000000000081565b34801561071857600080fd5b506103a6610727366004613397565b611467565b34801561073857600080fd5b50610763610747366004613408565b505060125460408051602081019091526000815260ff90911691565b6040516103b2929190613706565b34801561077d57600080fd5b506103db61078c366004613681565b6114e4565b34801561079d57600080fd5b50600d54610461906001600160a01b031681565b3480156107bd57600080fd5b506103db611650565b3480156107d257600080fd5b506005546001600160a01b0316610461565b3480156107f057600080fd5b506104aa6107ff366004613397565b611663565b34801561081057600080fd5b506103db61081f3660046133b2565b61166e565b34801561083057600080fd5b5061069361083f366004613612565b611750565b34801561085057600080fd5b506103db61187c565b34801561086557600080fd5b506103a66108743660046133dc565b611929565b34801561088557600080fd5b506103db610894366004613397565b611954565b3480156108a557600080fd5b506104aa60115481565b3480156108bb57600080fd5b506104aa600c5481565b3480156108d157600080fd5b506103db6108e0366004613397565b611968565b3480156108f157600080fd5b506104aa600081565b6103db610908366004613397565b6119a5565b34801561091957600080fd5b506104aa60045481565b34801561092f57600080fd5b506104aa60035481565b34801561094557600080fd5b506103db611b8c565b34801561095a57600080fd5b506103db610969366004613397565b611d10565b34801561097a57600080fd5b506104aa610989366004613397565b6001600160a01b031660009081526009602052604090205490565b3480156109b057600080fd5b506103db6109bf36600461372f565b611dac565b3480156109d057600080fd5b506103db6109df366004613681565b611e5a565b3480156109f057600080fd5b506103db611ed6565b348015610a0557600080fd5b506104aa610a14366004613397565b6001600160a01b031660009081526008602052604090205490565b348015610a3b57600080fd5b506006546104aa565b348015610a5057600080fd5b506103db610a5f3660046133dc565b611fc7565b348015610a7057600080fd5b506103db610a7f366004613397565b611fed565b348015610a9057600080fd5b50600e54610461906001600160a01b031681565b348015610ab057600080fd5b506103db610abf36600461375f565b612086565b348015610ad057600080fd5b506103db610adf366004613789565b612267565b60006001600160e01b03198216637965db0b60e01b1480610b1557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000610b26816123b4565b50600455565b6000610b15600a836123be565b6000600354600454610b4b91906137d1565b42108015610b5b57506003544210155b8015610b7557503360009081526008602052604090205415155b8015610b895750610b87600a336123be565b155b8015610ba2575033600090815260096020526040902054155b905090565b6000610bb2816123b4565b6001600160a01b038316610be15760405162461bcd60e51b8152600401610bd8906137e4565b60405180910390fd5b60008211610c295760405162461bcd60e51b8152602060048201526015602482015274056657374696e673a2073686172657320617265203605c1b6044820152606401610bd8565b6001600160a01b03831660009081526008602052604081208054849290610c519084906137d1565b925050819055508160066000828254610c6a91906137d1565b90915550506040517fcede7a9903c07d938c75644b6e38f7950ae1d362fca0fc61c99f2496ec9e992190610ca19085908590613828565b60405180910390a1505050565b6000610cb9816123b4565b50601155565b6000610cca816123b4565b50600c55565b60008281526001602081905260409091200154610cec816123b4565b610cf683836123e0565b505050565b6000610d06816123b4565b6001600160a01b038216610d775760405162461bcd60e51b815260206004820152603260248201527f56657374696e673a20726566756e6420726573657276652063616e6e6f7420626044820152716520746865207a65726f206164647265737360701b6064820152608401610bd8565b50600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610ba2600a61244b565b6001600160a01b0381163314610e165760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610bd8565b610e208282612455565b5050565b6000610ba2600f61244b565b6007546005546040516370a0823160e01b81526001600160a01b039182166004820152600092839290917f0000000000000000000000000000000000000000000000000000000000000000909116906370a0823190602401602060405180830381865afa158015610ea5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec99190613841565b6040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610f2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f519190613841565b610f5b91906137d1565b610f6591906137d1565b9050610f7183826124bc565b9392505050565b6000610f83816123b4565b610f8b6124ef565b50565b60125460ff1615610e2057610e2061187c565b8051825114610ff25760405162461bcd60e51b815260206004820152601f60248201527f56657374696e673a20617272617973206c656e677468206d69736d61746368006044820152606401610bd8565b60005b8251811015610cf65761103a8382815181106110135761101361385a565b602002602001015183838151811061102d5761102d61385a565b602002602001015161166e565b8061104481613870565b915050610ff5565b805182511461109d5760405162461bcd60e51b815260206004820152601f60248201527f56657374696e673a20617272617973206c656e677468206d69736d61746368006044820152606401610bd8565b60005b8251811015610cf6576110e58382815181106110be576110be61385a565b60200260200101518383815181106110d8576110d861385a565b6020026020010151610ba7565b806110ef81613870565b9150506110a0565b6000611102816123b4565b50601455565b611110612541565b611118612598565b60035442101561113a5760405162461bcd60e51b8152600401610bd890613889565b600c5434101561118c5760405162461bcd60e51b815260206004820181905260248201527f56657374696e673a20636c61696d20666565206973206e6f7420656e6f7567686044820152606401610bd8565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156111dc57600080fd5b505af11580156111f0573d6000803e3d6000fd5b5050505060006111ff336125de565b905061120b3333612720565b34156112ab57600d546040516000916001600160a01b03169034908381818185875af1925050503d806000811461125e576040519150601f19603f3d011682016040523d82523d6000602084013e611263565b606091505b50509050806112a95760405162461bcd60e51b81526020600482015260126024820152714661696c656420746f2073656e642066656560701b6044820152606401610bd8565b505b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a33826040516112dc929190613828565b60405180910390a1506112ef6001600255565b565b606060006112ff600a61244b565b90508084106113685760405162461bcd60e51b815260206004820152602f60248201527f56657374696e673a2073746172742069732067726561746572207468616e207260448201526e0cacceadcc8cacae640d8cadccee8d608b1b6064820152608401610bd8565b80831115611374578092505b600061138085856138ca565b67ffffffffffffffff8111156113985761139861347a565b6040519080825280602002602001820160405280156113c1578160200160208202803683370190505b509050845b8481101561141e576113d9600a8261286a565b826113e488846138ca565b815181106113f4576113f461385a565b6001600160a01b03909216602092830291909101909101528061141681613870565b9150506113c6565b50949350505050565b60005b8151811015610e20576114558282815181106114485761144861385a565b6020026020010151611954565b8061145f81613870565b91505061142a565b600060035460045461147991906137d1565b4210801561148957506003544210155b80156114ac57506001600160a01b03821660009081526008602052604090205415155b80156114c057506114be600a836123be565b155b8015610b155750506001600160a01b03166000908152600960205260409020541590565b7f78f12a009c29082657d0c0b71e1da642df0932969e5ac25f5190d1e8802d5ff561150e816123b4565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561155e57600080fd5b505af1158015611572573d6000803e3d6000fd5b5050505060005b8251811015610cf65760006115a68483815181106115995761159961385a565b60200260200101516125de565b9050801561163d576115ea8483815181106115c3576115c361385a565b60200260200101518584815181106115dd576115dd61385a565b6020026020010151612720565b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a84838151811061161d5761161d61385a565b602002602001015182604051611634929190613828565b60405180910390a15b508061164881613870565b915050611579565b600061165b816123b4565b610f8b612876565b6000610b15826125de565b6000611679816123b4565b6001600160a01b03831661169f5760405162461bcd60e51b8152600401610bd8906137e4565b600082116116e75760405162461bcd60e51b8152602060048201526015602482015274056657374696e673a2073686172657320617265203605c1b6044820152606401610bd8565b6001600160a01b038316600090815260086020526040902080549083905560065481906117159085906137d1565b61171f91906138ca565b600655604051600080516020613a8e833981519152906117429086908690613828565b60405180910390a150505050565b6060600061175e600f61244b565b90508084106117c65760405162461bcd60e51b815260206004820152602e60248201527f56657374696e673a2073746172742069732067726561746572207468616e206160448201526d0d2e4c8e4dee0e640d8cadccee8d60931b6064820152608401610bd8565b808311156117d2578092505b60006117de85856138ca565b67ffffffffffffffff8111156117f6576117f661347a565b60405190808252806020026020018201604052801561181f578160200160208202803683370190505b509050845b8481101561141e57611837600f8261286a565b8261184288846138ca565b815181106118525761185261385a565b6001600160a01b03909216602092830291909101909101528061187481613870565b915050611824565b600060135461188b600f61244b565b61189591906138ca565b90506000601354905060006014548311156118d3576012805460ff191660011790556014546013546118c791906137d1565b601355506014546118e5565b506012805460ff191690556000601355815b815b6118f182846137d1565b811015611923576000611905600f8361286a565b9050611910816128b3565b508061191b81613870565b9150506118e7565b50505050565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600061195f816123b4565b610e20826129d1565b6000611973816123b4565b61197e600f836123be565b61199a5760405162461bcd60e51b8152600401610bd8906138dd565b610cf6600f83612a4e565b6119ad612541565b6119b5612598565b6003544210156119d75760405162461bcd60e51b8152600401610bd890613889565b600c54341015611a295760405162461bcd60e51b815260206004820181905260248201527f56657374696e673a20636c61696d20666565206973206e6f7420656e6f7567686044820152606401610bd8565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a7957600080fd5b505af1158015611a8d573d6000803e3d6000fd5b505050506000611a9c336125de565b9050611aa83383612720565b3415611b4857600d546040516000916001600160a01b03169034908381818185875af1925050503d8060008114611afb576040519150601f19603f3d011682016040523d82523d6000602084013e611b00565b606091505b5050905080611b465760405162461bcd60e51b81526020600482015260126024820152714661696c656420746f2073656e642066656560701b6044820152606401610bd8565b505b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a3382604051611b79929190613828565b60405180910390a150610f8b6001600255565b611b94612541565b611b9c612598565b600354600454611bac91906137d1565b42108015611bbc57506003544210155b611bfd5760405162461bcd60e51b81526020600482015260126024820152712932b33ab7321034b9903737ba1037b832b760711b6044820152606401610bd8565b3360009081526009602052604090205415611c665760405162461bcd60e51b8152602060048201526024808201527f56657374696e673a206163636f756e742068617320616c726561647920636c616044820152631a5b595960e21b6064820152608401610bd8565b611c71600a336123be565b15611cd15760405162461bcd60e51b815260206004820152602a60248201527f56657374696e673a206163636f756e742068617320616c7265616479206265656044820152691b881c99599d5b99195960b21b6064820152608401610bd8565b33600090815260086020526040902054611cfd5760405162461bcd60e51b8152600401610bd890613927565b611d0633612a63565b6112ef6001600255565b6000611d1b816123b4565b6001600160a01b038216611d895760405162461bcd60e51b815260206004820152602f60248201527f56657374696e673a2066656520726573657276652063616e6e6f74206265207460448201526e6865207a65726f206164647265737360881b6064820152608401610bd8565b50600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000611db7816123b4565b8115611e26576005546040516395ccea6760e01b81526001600160a01b03909116906395ccea6790611def9033908790600401613828565b600060405180830381600087803b158015611e0957600080fd5b505af1158015611e1d573d6000803e3d6000fd5b50505050505050565b610cf66001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163385612c9b565b6000611e65816123b4565b60005b8251811015610cf657611e9e838281518110611e8657611e8661385a565b6020026020010151600a6123be90919063ffffffff16565b611ec457611ec4838281518110611eb757611eb761385a565b6020026020010151612a63565b80611ece81613870565b915050611e68565b611ede612541565b611ee9600f336123be565b15611f4d5760405162461bcd60e51b815260206004820152602e60248201527f56657374696e673a206163636f756e742068617320616c72656164792072657160448201526d07565737465642061697264726f760941b6064820152608401610bd8565b33600090815260086020526040902054611f795760405162461bcd60e51b8152600401610bd890613927565b611f84600f33612cf1565b50600d54601154611d06916001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169233929190911690612d06565b60008281526001602081905260409091200154611fe3816123b4565b610cf68383612455565b6000611ff8816123b4565b6001600160a01b0382166120635760405162461bcd60e51b815260206004820152602c60248201527f56657374696e673a2072656c65617365722063616e6e6f74206265207468652060448201526b7a65726f206164647265737360a01b6064820152608401610bd8565b50600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000612091816123b4565b6001600160a01b0383166120f75760405162461bcd60e51b815260206004820152602760248201527f56657374696e673a206f6c642077616c6c657420697320746865207a65726f206044820152666164647265737360c81b6064820152608401610bd8565b6001600160a01b03821661215d5760405162461bcd60e51b815260206004820152602760248201527f56657374696e673a206e65772077616c6c657420697320746865207a65726f206044820152666164647265737360c81b6064820152608401610bd8565b6001600160a01b0383166000908152600860205260409020546121cc5760405162461bcd60e51b815260206004820152602160248201527f56657374696e673a206f6c642077616c6c657420686173206e6f2073686172656044820152607360f81b6064820152608401610bd8565b6001600160a01b038084166000818152600860209081526040808320805490849055948716808452818420869055938352600990915280822080549083905592825280822083905551600080516020613a8e8339815191529161223191889190613828565b60405180910390a1600080516020613a8e8339815191528483604051612258929190613828565b60405180910390a15050505050565b6000612272816123b4565b841561227e5760038590555b83156122e3576005546040516306bcf02f60e01b8152600481018690526001600160a01b03909116906306bcf02f90602401600060405180830381600087803b1580156122ca57600080fd5b505af11580156122de573d6000803e3d6000fd5b505050505b821561234857600554604051631b50ad0960e01b8152600481018590526001600160a01b0390911690631b50ad0990602401600060405180830381600087803b15801561232f57600080fd5b505af1158015612343573d6000803e3d6000fd5b505050505b81156123ad5760055460405163bc78f6a960e01b8152600481018490526001600160a01b039091169063bc78f6a990602401600060405180830381600087803b15801561239457600080fd5b505af11580156123a8573d6000803e3d6000fd5b505050505b5050505050565b610f8b8133612d3e565b6001600160a01b03811660009081526001830160205260408120541515610f71565b6123ea8282611929565b610e205760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6000610b15825490565b61245f8282611929565b15610e205760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6006546001600160a01b0383166000908152600860205260408120549091906124e5908461395e565b610f71919061397d565b6124f7612d97565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60028054036125925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bd8565b60028055565b60005460ff16156112ef5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610bd8565b600080600560009054906101000a90046001600160a01b03166001600160a01b031663fbccedae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612634573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126589190613841565b6007546040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156126bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126e39190613841565b6126ed91906137d1565b6126f791906137d1565b6001600160a01b038416600090815260096020526040902054909150610f719084908390612de0565b6001600160a01b0382166000908152600860205260409020546127555760405162461bcd60e51b8152600401610bd890613927565b6000612760836125de565b9050806000036127be5760405162461bcd60e51b815260206004820152602360248201527f56657374696e673a206163636f756e74206973206e6f7420647565207061796d604482015262195b9d60ea1b6064820152608401610bd8565b6001600160a01b038316600090815260096020526040812080548392906127e69084906137d1565b9250508190555080600760008282546127ff91906137d1565b9091555061283990506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168383612c9b565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610ca1929190613828565b6000610f718383612e26565b61287e612598565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586125243390565b6128be600f826123be565b6128da5760405162461bcd60e51b8152600401610bd8906138dd565b6001600160a01b03811660009081526008602052604090205461290f5760405162461bcd60e51b8152600401610bd890613927565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561295f57600080fd5b505af1158015612973573d6000803e3d6000fd5b505050506000612982826125de565b90508015610e20576129948283612720565b7f7bd6d4be1decdc27a9ed9c7ccdf5bb7cc38e31b3647b958c6b37162a2296c0fa82826040516129c5929190613828565b60405180910390a15050565b6001600160a01b0381166129f75760405162461bcd60e51b8152600401610bd8906137e4565b6001600160a01b03811660009081526008602052604081208054908290556006805491928392612a289084906138ca565b9091555050604051600080516020613a8e833981519152906129c5908490600090613828565b6000610f71836001600160a01b038416612e50565b600560009054906101000a90046001600160a01b03166001600160a01b031663961325216040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ab6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ada9190613841565b15612b195760405162461bcd60e51b815260206004820152600f60248201526e10db1a5999881a185cc8195b991959608a1b6044820152606401610bd8565b6001600160a01b03811660009081526009602052604090205415612b3a5750565b612b45600a82612cf1565b506000612b51826125de565b90506000612b5e83610e30565b6001600160a01b038416600090815260086020526040902054909150612b83846129d1565b600554600e546001600160a01b03918216916395ccea679116612ba686866138ca565b6040518363ffffffff1660e01b8152600401612bc3929190613828565b600060405180830381600087803b158015612bdd57600080fd5b505af1158015612bf1573d6000803e3d6000fd5b5050600e54612c2f92506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692501685612c9b565b600e54612c6a906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811691168684612d06565b7fd7dee2702d63ad89917b6a4da9981c90c4d24f8c2bdfd64c604ecae57d8d06518483604051611742929190613828565b610cf68363a9059cbb60e01b8484604051602401612cba929190613828565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612f43565b6000610f71836001600160a01b038416613018565b6040516001600160a01b03808516602483015283166044820152606481018290526119239085906323b872dd60e01b90608401612cba565b612d488282611929565b610e2057612d5581613067565b612d60836020613079565b604051602001612d7192919061399f565b60408051601f198184030181529082905262461bcd60e51b8252610bd891600401613a14565b60005460ff166112ef5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610bd8565b6006546001600160a01b03841660009081526008602052604081205490918391612e0a908661395e565b612e14919061397d565b612e1e91906138ca565b949350505050565b6000826000018281548110612e3d57612e3d61385a565b9060005260206000200154905092915050565b60008181526001830160205260408120548015612f39576000612e746001836138ca565b8554909150600090612e88906001906138ca565b9050818114612eed576000866000018281548110612ea857612ea861385a565b9060005260206000200154905080876000018481548110612ecb57612ecb61385a565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612efe57612efe613a27565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610b15565b6000915050610b15565b6000612f98826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166132159092919063ffffffff16565b9050805160001480612fb9575080806020019051810190612fb99190613a3d565b610cf65760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bd8565b600081815260018301602052604081205461305f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b15565b506000610b15565b6060610b156001600160a01b03831660145b6060600061308883600261395e565b6130939060026137d1565b67ffffffffffffffff8111156130ab576130ab61347a565b6040519080825280601f01601f1916602001820160405280156130d5576020820181803683370190505b509050600360fc1b816000815181106130f0576130f061385a565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061311f5761311f61385a565b60200101906001600160f81b031916908160001a905350600061314384600261395e565b61314e9060016137d1565b90505b60018111156131c6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106131825761318261385a565b1a60f81b8282815181106131985761319861385a565b60200101906001600160f81b031916908160001a90535060049490941c936131bf81613a5a565b9050613151565b508315610f715760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bd8565b6060612e1e848460008585600080866001600160a01b0316858760405161323c9190613a71565b60006040518083038185875af1925050503d8060008114613279576040519150601f19603f3d011682016040523d82523d6000602084013e61327e565b606091505b509150915061328f8783838761329a565b979650505050505050565b60608315613309578251600003613302576001600160a01b0385163b6133025760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bd8565b5081612e1e565b612e1e838381511561331e5781518083602001fd5b8060405162461bcd60e51b8152600401610bd89190613a14565b60006020828403121561334a57600080fd5b81356001600160e01b031981168114610f7157600080fd5b60006020828403121561337457600080fd5b5035919050565b80356001600160a01b038116811461339257600080fd5b919050565b6000602082840312156133a957600080fd5b610f718261337b565b600080604083850312156133c557600080fd5b6133ce8361337b565b946020939093013593505050565b600080604083850312156133ef57600080fd5b823591506133ff6020840161337b565b90509250929050565b6000806020838503121561341b57600080fd5b823567ffffffffffffffff8082111561343357600080fd5b818501915085601f83011261344757600080fd5b81358181111561345657600080fd5b86602082850101111561346857600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156134b9576134b961347a565b604052919050565b600067ffffffffffffffff8211156134db576134db61347a565b5060051b60200190565b600082601f8301126134f657600080fd5b8135602061350b613506836134c1565b613490565b82815260059290921b8401810191818101908684111561352a57600080fd5b8286015b8481101561354c5761353f8161337b565b835291830191830161352e565b509695505050505050565b6000806040838503121561356a57600080fd5b823567ffffffffffffffff8082111561358257600080fd5b61358e868387016134e5565b93506020915081850135818111156135a557600080fd5b85019050601f810186136135b857600080fd5b80356135c6613506826134c1565b81815260059190911b820183019083810190888311156135e557600080fd5b928401925b82841015613603578335825292840192908401906135ea565b80955050505050509250929050565b6000806040838503121561362557600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b818110156136755783516001600160a01b031683529284019291840191600101613650565b50909695505050505050565b60006020828403121561369357600080fd5b813567ffffffffffffffff8111156136aa57600080fd5b612e1e848285016134e5565b60005b838110156136d15781810151838201526020016136b9565b50506000910152565b600081518084526136f28160208601602086016136b6565b601f01601f19169290920160200192915050565b8215158152604060208201526000612e1e60408301846136da565b8015158114610f8b57600080fd5b6000806040838503121561374257600080fd5b82359150602083013561375481613721565b809150509250929050565b6000806040838503121561377257600080fd5b61377b8361337b565b91506133ff6020840161337b565b6000806000806080858703121561379f57600080fd5b5050823594602084013594506040840135936060013592509050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b1557610b156137bb565b60208082526024908201527f56657374696e673a206163636f756e7420697320746865207a65726f206164646040820152637265737360e01b606082015260800190565b6001600160a01b03929092168252602082015260400190565b60006020828403121561385357600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060018201613882576138826137bb565b5060010190565b60208082526021908201527f56657374696e673a2054474520686173206e6f742068617070656e65642079656040820152601d60fa1b606082015260800190565b81810381811115610b1557610b156137bb565b6020808252602a908201527f56657374696e673a206163636f756e7420686173206e6f742072657175657374604082015269065642061697264726f760b41b606082015260800190565b6020808252601e908201527f56657374696e673a206163636f756e7420686173206e6f207368617265730000604082015260600190565b6000816000190483118215151615613978576139786137bb565b500290565b60008261399a57634e487b7160e01b600052601260045260246000fd5b500490565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516139d78160178501602088016136b6565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613a088160288401602088016136b6565b01602801949350505050565b602081526000610f7160208301846136da565b634e487b7160e01b600052603160045260246000fd5b600060208284031215613a4f57600080fd5b8151610f7181613721565b600081613a6957613a696137bb565b506000190190565b60008251613a838184602087016136b6565b919091019291505056fee6382c9ed5c0c33bb05042f73cf6cbe9cb25639f9a711e094ee563bc9cb80e2ca2646970667358221220bff8404a73d613988f734b5f603dd7ed5ebe5794ab425531ec7c8df26751c9fb64736f6c6343000810003360c06040523480156200001157600080fd5b5060405162000eec38038062000eec8339810160408190526200003491620002b5565b6200003f3362000248565b6001600160a01b038416620000ae5760405162461bcd60e51b815260206004820152602a60248201527f52656c65617365723a20746f6b656e2063616e6e6f7420626520746865207a65604482015269726f206164647265737360b01b60648201526084015b60405180910390fd5b6001600160a01b038516620001145760405162461bcd60e51b815260206004820152602560248201527f52656c65617365723a2062656e6566696369617279206973207a65726f206164604482015264647265737360d81b6064820152608401620000a5565b60008211620001685760405162461bcd60e51b815260206004820152602a602482015260008051602062000ecc8339815191526044820152690676572207468616e20360b41b6064820152608401620000a5565b60008111620001cb5760405162461bcd60e51b815260206004820152602860248201527f52656c65617365723a20706572696f642073686f756c64206265206c61726765604482015267072207468616e20360c41b6064820152608401620000a5565b80821015620002245760405162461bcd60e51b815260206004820152602f602482015260008051602062000ecc83398151915260448201526e19d95c881d1a185b881c195c9a5bd9608a1b6064820152608401620000a5565b6001600160a01b039384166080529390921660a05260025560035560045562000308565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b0381168114620002b057600080fd5b919050565b600080600080600060a08688031215620002ce57600080fd5b620002d98662000298565b9450620002e96020870162000298565b6040870151606088015160809098015196999198509695945092505050565b60805160a051610b7b620003516000396000818161015901526104c10152600081816101b401528181610353015281816104520152818161049701526104fe0152610b7b6000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063920616f511610097578063bc78f6a911610066578063bc78f6a9146101fb578063be9a65551461020e578063f2fde38b14610216578063fbccedae1461022957600080fd5b8063920616f5146101b257806395ccea67146101d857806396132521146101eb578063a4caeb42146101f357600080fd5b806338af3eed116100d357806338af3eed14610157578063715018a61461019157806386d1a69f146101995780638da5cb5b146101a157600080fd5b806306bcf02f146101055780630fb5a6b41461011a5780631b50ad09146101315780631bfce85314610144575b600080fd5b61011861011336600461094f565b610231565b005b6003545b6040519081526020015b60405180910390f35b61011861013f36600461094f565b61023e565b61011e61015236600461094f565b6102d5565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610128565b6101186103e3565b6101186103f7565b6000546001600160a01b0316610179565b7f0000000000000000000000000000000000000000000000000000000000000000610179565b6101186101e636600461097f565b6104e9565b60015461011e565b60045461011e565b61011861020936600461094f565b610529565b60025461011e565b6101186102243660046109a9565b610558565b61011e6105ce565b6102396105f1565b600255565b6102466105f1565b600081116102ae5760405162461bcd60e51b815260206004820152602a60248201527f52656c65617365723a206475726174696f6e2073686f756c64206265206c61726044820152690676572207468616e20360b41b60648201526084015b60405180910390fd5b6004548110156102d05760405162461bcd60e51b81526004016102a5906109cb565b600355565b60006102e060025490565b8210156102ef57506000919050565b60006004546102fd60025490565b6103079085610a30565b6103119190610a43565b90506000600454826103239190610a65565b6002546103309190610a84565b90506103d661033e60015490565b6040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156103a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c69190610a97565b6103d09190610a84565b8261064b565b949350505050565b919050565b6103eb6105f1565b6103f560006106b0565b565b600061040260015490565b61040b426102d5565b6104159190610a30565b905080600160008282546104299190610a84565b909155507fc0e523490dd523c33b1878c9eb14ff46991e3f5b2cd33710918618f2a39cba1b90507f0000000000000000000000000000000000000000000000000000000000000000604080516001600160a01b039092168252602082018490520160405180910390a16104e67f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03167f000000000000000000000000000000000000000000000000000000000000000083610700565b50565b6104f16105f1565b6105256001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168383610700565b5050565b6105316105f1565b8060035410156105535760405162461bcd60e51b81526004016102a5906109cb565b600455565b6105606105f1565b6001600160a01b0381166105c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102a5565b6104e6816106b0565b60006105d960015490565b6105e2426102d5565b6105ec9190610a30565b905090565b6000546001600160a01b031633146103f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102a5565b600061065660025490565b821015610665575060006106aa565b6003546002546106759190610a84565b8211156106835750816106aa565b6003546002546106939084610a30565b61069d9085610a65565b6106a79190610a43565b90505b92915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610752908490610757565b505050565b60006107ac826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661082c9092919063ffffffff16565b90508051600014806107cd5750808060200190518101906107cd9190610ab0565b6107525760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102a5565b60606103d6848460008585600080866001600160a01b031685876040516108539190610af6565b60006040518083038185875af1925050503d8060008114610890576040519150601f19603f3d011682016040523d82523d6000602084013e610895565b606091505b50915091506108a6878383876108b1565b979650505050505050565b60608315610920578251600003610919576001600160a01b0385163b6109195760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102a5565b50816103d6565b6103d683838151156109355781518083602001fd5b8060405162461bcd60e51b81526004016102a59190610b12565b60006020828403121561096157600080fd5b5035919050565b80356001600160a01b03811681146103de57600080fd5b6000806040838503121561099257600080fd5b61099b83610968565b946020939093013593505050565b6000602082840312156109bb57600080fd5b6109c482610968565b9392505050565b6020808252602f908201527f52656c65617365723a206475726174696f6e2073686f756c64206265206c617260408201526e19d95c881d1a185b881c195c9a5bd9608a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b818103818111156106aa576106aa610a1a565b600082610a6057634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610a7f57610a7f610a1a565b500290565b808201808211156106aa576106aa610a1a565b600060208284031215610aa957600080fd5b5051919050565b600060208284031215610ac257600080fd5b815180151581146109c457600080fd5b60005b83811015610aed578181015183820152602001610ad5565b50506000910152565b60008251610b08818460208701610ad2565b9190910192915050565b6020815260008251806020840152610b31816040850160208701610ad2565b601f01601f1916919091016040019291505056fea264697066735822122084c46328368693bde20e121cf14b3bca66737a5f78ead8f8f7d3898b14ab14ac64736f6c6343000810003352656c65617365723a206475726174696f6e2073686f756c64206265206c6172000000000000000000000000b2a25f7d864636e44bc1bf7a316897652bf07463000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000eca95b8dbe5d466635dd8f298417f31275140934000000000000000000000000eca95b8dbe5d466635dd8f298417f3127514093400000000000000000000000000000000000000000000000000000000667044e400000000000000000000000000000000000000000000000000000000667044e400000000000000000000000000000000000000000000000000000000009e34000000000000000000000000000000000000000000000000000000000000093a800000000000000000000000000000000000000000000000000000000000093a76
Deployed Bytecode
0x6080604052600436106103815760003560e01c8063789ff0e1116101d1578063a6a3b5b411610102578063cc107a1e116100a0578063d6d5e1011161006f578063d6d5e10114610a64578063e3e1fb0f14610a84578063e50b2bc214610aa4578063fa54cebd14610ac457600080fd5b8063cc107a1e146109e4578063ce7c2ac2146109f9578063d5002f2e14610a2f578063d547741f14610a4457600080fd5b8063b6168acf116100dc578063b6168acf1461094e578063baa3f7ee1461096e578063bb5b3edc146109a4578063c69b7e69146109c457600080fd5b8063a6a3b5b41461090d578063a7497fa514610923578063b2d5ae441461093957600080fd5b806391d148541161016f57806399d32fc41161014957806399d32fc4146108af5780639ce40383146108c5578063a217fddf146108e5578063a262f5f8146108fa57600080fd5b806391d1485414610859578063922555b414610879578063986244551461089957600080fd5b80638903ab9d116101ab5780638903ab9d146107e45780638bccbf62146108045780638dba908c146108245780638e7e54151461084457600080fd5b8063789ff0e1146107915780638456cb59146107b1578063851c17a7146107c657600080fd5b80633cc02171116102b65780634e71d92d116102545780635cb732be116102235780635cb732be146106d857806366093ce31461070c5780636e04ff0d1461072c578063729ad39e1461077157600080fd5b80634e71d92d1461066b57806351d8804f14610673578063596298b5146106a05780635c975abb146106c057600080fd5b80634585e33b116102905780634585e33b146105eb5780634792ad351461060b5780634a426ea41461062b5780634a5dc0281461064b57600080fd5b80633cc02171146105a15780633eef2ec1146105b65780633f4ba83a146105d657600080fd5b806329a06ff51161032357806331f94a28116102fd57806331f94a281461051857806333cd801a1461053857806336568abe1461054d578063368a5e341461056d57600080fd5b806329a06ff5146104b85780632e75ab50146104d85780632f2ff15d146104f857600080fd5b80630db194571161035f5780630db19457146103fd5780630e81073c1461041257806310fe9ae814610432578063248a9ca31461047957600080fd5b806301ffc9a7146103865780630a21b1ac146103bb5780630ac26fa0146103dd575b600080fd5b34801561039257600080fd5b506103a66103a1366004613338565b610ae4565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103db6103d6366004613362565b610b1b565b005b3480156103e957600080fd5b506103a66103f8366004613397565b610b2c565b34801561040957600080fd5b506103a6610b39565b34801561041e57600080fd5b506103db61042d3660046133b2565b610ba7565b34801561043e57600080fd5b507f000000000000000000000000b2a25f7d864636e44bc1bf7a316897652bf074635b6040516001600160a01b0390911681526020016103b2565b34801561048557600080fd5b506104aa610494366004613362565b6000908152600160208190526040909120015490565b6040519081526020016103b2565b3480156104c457600080fd5b506103db6104d3366004613362565b610cae565b3480156104e457600080fd5b506103db6104f3366004613362565b610cbf565b34801561050457600080fd5b506103db6105133660046133dc565b610cd0565b34801561052457600080fd5b506103db610533366004613397565b610cfb565b34801561054457600080fd5b506104aa610d9a565b34801561055957600080fd5b506103db6105683660046133dc565b610da6565b34801561057957600080fd5b506104aa7f78f12a009c29082657d0c0b71e1da642df0932969e5ac25f5190d1e8802d5ff581565b3480156105ad57600080fd5b506104aa610e24565b3480156105c257600080fd5b506104aa6105d1366004613397565b610e30565b3480156105e257600080fd5b506103db610f78565b3480156105f757600080fd5b506103db610606366004613408565b610f8e565b34801561061757600080fd5b506103db610626366004613557565b610fa1565b34801561063757600080fd5b506103db610646366004613557565b61104c565b34801561065757600080fd5b506103db610666366004613362565b6110f7565b6103db611108565b34801561067f57600080fd5b5061069361068e366004613612565b6112f1565b6040516103b29190613634565b3480156106ac57600080fd5b506103db6106bb366004613681565b611427565b3480156106cc57600080fd5b5060005460ff166103a6565b3480156106e457600080fd5b506104617f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec781565b34801561071857600080fd5b506103a6610727366004613397565b611467565b34801561073857600080fd5b50610763610747366004613408565b505060125460408051602081019091526000815260ff90911691565b6040516103b2929190613706565b34801561077d57600080fd5b506103db61078c366004613681565b6114e4565b34801561079d57600080fd5b50600d54610461906001600160a01b031681565b3480156107bd57600080fd5b506103db611650565b3480156107d257600080fd5b506005546001600160a01b0316610461565b3480156107f057600080fd5b506104aa6107ff366004613397565b611663565b34801561081057600080fd5b506103db61081f3660046133b2565b61166e565b34801561083057600080fd5b5061069361083f366004613612565b611750565b34801561085057600080fd5b506103db61187c565b34801561086557600080fd5b506103a66108743660046133dc565b611929565b34801561088557600080fd5b506103db610894366004613397565b611954565b3480156108a557600080fd5b506104aa60115481565b3480156108bb57600080fd5b506104aa600c5481565b3480156108d157600080fd5b506103db6108e0366004613397565b611968565b3480156108f157600080fd5b506104aa600081565b6103db610908366004613397565b6119a5565b34801561091957600080fd5b506104aa60045481565b34801561092f57600080fd5b506104aa60035481565b34801561094557600080fd5b506103db611b8c565b34801561095a57600080fd5b506103db610969366004613397565b611d10565b34801561097a57600080fd5b506104aa610989366004613397565b6001600160a01b031660009081526009602052604090205490565b3480156109b057600080fd5b506103db6109bf36600461372f565b611dac565b3480156109d057600080fd5b506103db6109df366004613681565b611e5a565b3480156109f057600080fd5b506103db611ed6565b348015610a0557600080fd5b506104aa610a14366004613397565b6001600160a01b031660009081526008602052604090205490565b348015610a3b57600080fd5b506006546104aa565b348015610a5057600080fd5b506103db610a5f3660046133dc565b611fc7565b348015610a7057600080fd5b506103db610a7f366004613397565b611fed565b348015610a9057600080fd5b50600e54610461906001600160a01b031681565b348015610ab057600080fd5b506103db610abf36600461375f565b612086565b348015610ad057600080fd5b506103db610adf366004613789565b612267565b60006001600160e01b03198216637965db0b60e01b1480610b1557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000610b26816123b4565b50600455565b6000610b15600a836123be565b6000600354600454610b4b91906137d1565b42108015610b5b57506003544210155b8015610b7557503360009081526008602052604090205415155b8015610b895750610b87600a336123be565b155b8015610ba2575033600090815260096020526040902054155b905090565b6000610bb2816123b4565b6001600160a01b038316610be15760405162461bcd60e51b8152600401610bd8906137e4565b60405180910390fd5b60008211610c295760405162461bcd60e51b8152602060048201526015602482015274056657374696e673a2073686172657320617265203605c1b6044820152606401610bd8565b6001600160a01b03831660009081526008602052604081208054849290610c519084906137d1565b925050819055508160066000828254610c6a91906137d1565b90915550506040517fcede7a9903c07d938c75644b6e38f7950ae1d362fca0fc61c99f2496ec9e992190610ca19085908590613828565b60405180910390a1505050565b6000610cb9816123b4565b50601155565b6000610cca816123b4565b50600c55565b60008281526001602081905260409091200154610cec816123b4565b610cf683836123e0565b505050565b6000610d06816123b4565b6001600160a01b038216610d775760405162461bcd60e51b815260206004820152603260248201527f56657374696e673a20726566756e6420726573657276652063616e6e6f7420626044820152716520746865207a65726f206164647265737360701b6064820152608401610bd8565b50600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610ba2600a61244b565b6001600160a01b0381163314610e165760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610bd8565b610e208282612455565b5050565b6000610ba2600f61244b565b6007546005546040516370a0823160e01b81526001600160a01b039182166004820152600092839290917f000000000000000000000000b2a25f7d864636e44bc1bf7a316897652bf07463909116906370a0823190602401602060405180830381865afa158015610ea5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec99190613841565b6040516370a0823160e01b81523060048201527f000000000000000000000000b2a25f7d864636e44bc1bf7a316897652bf074636001600160a01b0316906370a0823190602401602060405180830381865afa158015610f2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f519190613841565b610f5b91906137d1565b610f6591906137d1565b9050610f7183826124bc565b9392505050565b6000610f83816123b4565b610f8b6124ef565b50565b60125460ff1615610e2057610e2061187c565b8051825114610ff25760405162461bcd60e51b815260206004820152601f60248201527f56657374696e673a20617272617973206c656e677468206d69736d61746368006044820152606401610bd8565b60005b8251811015610cf65761103a8382815181106110135761101361385a565b602002602001015183838151811061102d5761102d61385a565b602002602001015161166e565b8061104481613870565b915050610ff5565b805182511461109d5760405162461bcd60e51b815260206004820152601f60248201527f56657374696e673a20617272617973206c656e677468206d69736d61746368006044820152606401610bd8565b60005b8251811015610cf6576110e58382815181106110be576110be61385a565b60200260200101518383815181106110d8576110d861385a565b6020026020010151610ba7565b806110ef81613870565b9150506110a0565b6000611102816123b4565b50601455565b611110612541565b611118612598565b60035442101561113a5760405162461bcd60e51b8152600401610bd890613889565b600c5434101561118c5760405162461bcd60e51b815260206004820181905260248201527f56657374696e673a20636c61696d20666565206973206e6f7420656e6f7567686044820152606401610bd8565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156111dc57600080fd5b505af11580156111f0573d6000803e3d6000fd5b5050505060006111ff336125de565b905061120b3333612720565b34156112ab57600d546040516000916001600160a01b03169034908381818185875af1925050503d806000811461125e576040519150601f19603f3d011682016040523d82523d6000602084013e611263565b606091505b50509050806112a95760405162461bcd60e51b81526020600482015260126024820152714661696c656420746f2073656e642066656560701b6044820152606401610bd8565b505b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a33826040516112dc929190613828565b60405180910390a1506112ef6001600255565b565b606060006112ff600a61244b565b90508084106113685760405162461bcd60e51b815260206004820152602f60248201527f56657374696e673a2073746172742069732067726561746572207468616e207260448201526e0cacceadcc8cacae640d8cadccee8d608b1b6064820152608401610bd8565b80831115611374578092505b600061138085856138ca565b67ffffffffffffffff8111156113985761139861347a565b6040519080825280602002602001820160405280156113c1578160200160208202803683370190505b509050845b8481101561141e576113d9600a8261286a565b826113e488846138ca565b815181106113f4576113f461385a565b6001600160a01b03909216602092830291909101909101528061141681613870565b9150506113c6565b50949350505050565b60005b8151811015610e20576114558282815181106114485761144861385a565b6020026020010151611954565b8061145f81613870565b91505061142a565b600060035460045461147991906137d1565b4210801561148957506003544210155b80156114ac57506001600160a01b03821660009081526008602052604090205415155b80156114c057506114be600a836123be565b155b8015610b155750506001600160a01b03166000908152600960205260409020541590565b7f78f12a009c29082657d0c0b71e1da642df0932969e5ac25f5190d1e8802d5ff561150e816123b4565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561155e57600080fd5b505af1158015611572573d6000803e3d6000fd5b5050505060005b8251811015610cf65760006115a68483815181106115995761159961385a565b60200260200101516125de565b9050801561163d576115ea8483815181106115c3576115c361385a565b60200260200101518584815181106115dd576115dd61385a565b6020026020010151612720565b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a84838151811061161d5761161d61385a565b602002602001015182604051611634929190613828565b60405180910390a15b508061164881613870565b915050611579565b600061165b816123b4565b610f8b612876565b6000610b15826125de565b6000611679816123b4565b6001600160a01b03831661169f5760405162461bcd60e51b8152600401610bd8906137e4565b600082116116e75760405162461bcd60e51b8152602060048201526015602482015274056657374696e673a2073686172657320617265203605c1b6044820152606401610bd8565b6001600160a01b038316600090815260086020526040902080549083905560065481906117159085906137d1565b61171f91906138ca565b600655604051600080516020613a8e833981519152906117429086908690613828565b60405180910390a150505050565b6060600061175e600f61244b565b90508084106117c65760405162461bcd60e51b815260206004820152602e60248201527f56657374696e673a2073746172742069732067726561746572207468616e206160448201526d0d2e4c8e4dee0e640d8cadccee8d60931b6064820152608401610bd8565b808311156117d2578092505b60006117de85856138ca565b67ffffffffffffffff8111156117f6576117f661347a565b60405190808252806020026020018201604052801561181f578160200160208202803683370190505b509050845b8481101561141e57611837600f8261286a565b8261184288846138ca565b815181106118525761185261385a565b6001600160a01b03909216602092830291909101909101528061187481613870565b915050611824565b600060135461188b600f61244b565b61189591906138ca565b90506000601354905060006014548311156118d3576012805460ff191660011790556014546013546118c791906137d1565b601355506014546118e5565b506012805460ff191690556000601355815b815b6118f182846137d1565b811015611923576000611905600f8361286a565b9050611910816128b3565b508061191b81613870565b9150506118e7565b50505050565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600061195f816123b4565b610e20826129d1565b6000611973816123b4565b61197e600f836123be565b61199a5760405162461bcd60e51b8152600401610bd8906138dd565b610cf6600f83612a4e565b6119ad612541565b6119b5612598565b6003544210156119d75760405162461bcd60e51b8152600401610bd890613889565b600c54341015611a295760405162461bcd60e51b815260206004820181905260248201527f56657374696e673a20636c61696d20666565206973206e6f7420656e6f7567686044820152606401610bd8565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a7957600080fd5b505af1158015611a8d573d6000803e3d6000fd5b505050506000611a9c336125de565b9050611aa83383612720565b3415611b4857600d546040516000916001600160a01b03169034908381818185875af1925050503d8060008114611afb576040519150601f19603f3d011682016040523d82523d6000602084013e611b00565b606091505b5050905080611b465760405162461bcd60e51b81526020600482015260126024820152714661696c656420746f2073656e642066656560701b6044820152606401610bd8565b505b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a3382604051611b79929190613828565b60405180910390a150610f8b6001600255565b611b94612541565b611b9c612598565b600354600454611bac91906137d1565b42108015611bbc57506003544210155b611bfd5760405162461bcd60e51b81526020600482015260126024820152712932b33ab7321034b9903737ba1037b832b760711b6044820152606401610bd8565b3360009081526009602052604090205415611c665760405162461bcd60e51b8152602060048201526024808201527f56657374696e673a206163636f756e742068617320616c726561647920636c616044820152631a5b595960e21b6064820152608401610bd8565b611c71600a336123be565b15611cd15760405162461bcd60e51b815260206004820152602a60248201527f56657374696e673a206163636f756e742068617320616c7265616479206265656044820152691b881c99599d5b99195960b21b6064820152608401610bd8565b33600090815260086020526040902054611cfd5760405162461bcd60e51b8152600401610bd890613927565b611d0633612a63565b6112ef6001600255565b6000611d1b816123b4565b6001600160a01b038216611d895760405162461bcd60e51b815260206004820152602f60248201527f56657374696e673a2066656520726573657276652063616e6e6f74206265207460448201526e6865207a65726f206164647265737360881b6064820152608401610bd8565b50600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000611db7816123b4565b8115611e26576005546040516395ccea6760e01b81526001600160a01b03909116906395ccea6790611def9033908790600401613828565b600060405180830381600087803b158015611e0957600080fd5b505af1158015611e1d573d6000803e3d6000fd5b50505050505050565b610cf66001600160a01b037f000000000000000000000000b2a25f7d864636e44bc1bf7a316897652bf07463163385612c9b565b6000611e65816123b4565b60005b8251811015610cf657611e9e838281518110611e8657611e8661385a565b6020026020010151600a6123be90919063ffffffff16565b611ec457611ec4838281518110611eb757611eb761385a565b6020026020010151612a63565b80611ece81613870565b915050611e68565b611ede612541565b611ee9600f336123be565b15611f4d5760405162461bcd60e51b815260206004820152602e60248201527f56657374696e673a206163636f756e742068617320616c72656164792072657160448201526d07565737465642061697264726f760941b6064820152608401610bd8565b33600090815260086020526040902054611f795760405162461bcd60e51b8152600401610bd890613927565b611f84600f33612cf1565b50600d54601154611d06916001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec781169233929190911690612d06565b60008281526001602081905260409091200154611fe3816123b4565b610cf68383612455565b6000611ff8816123b4565b6001600160a01b0382166120635760405162461bcd60e51b815260206004820152602c60248201527f56657374696e673a2072656c65617365722063616e6e6f74206265207468652060448201526b7a65726f206164647265737360a01b6064820152608401610bd8565b50600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000612091816123b4565b6001600160a01b0383166120f75760405162461bcd60e51b815260206004820152602760248201527f56657374696e673a206f6c642077616c6c657420697320746865207a65726f206044820152666164647265737360c81b6064820152608401610bd8565b6001600160a01b03821661215d5760405162461bcd60e51b815260206004820152602760248201527f56657374696e673a206e65772077616c6c657420697320746865207a65726f206044820152666164647265737360c81b6064820152608401610bd8565b6001600160a01b0383166000908152600860205260409020546121cc5760405162461bcd60e51b815260206004820152602160248201527f56657374696e673a206f6c642077616c6c657420686173206e6f2073686172656044820152607360f81b6064820152608401610bd8565b6001600160a01b038084166000818152600860209081526040808320805490849055948716808452818420869055938352600990915280822080549083905592825280822083905551600080516020613a8e8339815191529161223191889190613828565b60405180910390a1600080516020613a8e8339815191528483604051612258929190613828565b60405180910390a15050505050565b6000612272816123b4565b841561227e5760038590555b83156122e3576005546040516306bcf02f60e01b8152600481018690526001600160a01b03909116906306bcf02f90602401600060405180830381600087803b1580156122ca57600080fd5b505af11580156122de573d6000803e3d6000fd5b505050505b821561234857600554604051631b50ad0960e01b8152600481018590526001600160a01b0390911690631b50ad0990602401600060405180830381600087803b15801561232f57600080fd5b505af1158015612343573d6000803e3d6000fd5b505050505b81156123ad5760055460405163bc78f6a960e01b8152600481018490526001600160a01b039091169063bc78f6a990602401600060405180830381600087803b15801561239457600080fd5b505af11580156123a8573d6000803e3d6000fd5b505050505b5050505050565b610f8b8133612d3e565b6001600160a01b03811660009081526001830160205260408120541515610f71565b6123ea8282611929565b610e205760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6000610b15825490565b61245f8282611929565b15610e205760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6006546001600160a01b0383166000908152600860205260408120549091906124e5908461395e565b610f71919061397d565b6124f7612d97565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60028054036125925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bd8565b60028055565b60005460ff16156112ef5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610bd8565b600080600560009054906101000a90046001600160a01b03166001600160a01b031663fbccedae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612634573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126589190613841565b6007546040516370a0823160e01b81523060048201527f000000000000000000000000b2a25f7d864636e44bc1bf7a316897652bf074636001600160a01b0316906370a0823190602401602060405180830381865afa1580156126bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126e39190613841565b6126ed91906137d1565b6126f791906137d1565b6001600160a01b038416600090815260096020526040902054909150610f719084908390612de0565b6001600160a01b0382166000908152600860205260409020546127555760405162461bcd60e51b8152600401610bd890613927565b6000612760836125de565b9050806000036127be5760405162461bcd60e51b815260206004820152602360248201527f56657374696e673a206163636f756e74206973206e6f7420647565207061796d604482015262195b9d60ea1b6064820152608401610bd8565b6001600160a01b038316600090815260096020526040812080548392906127e69084906137d1565b9250508190555080600760008282546127ff91906137d1565b9091555061283990506001600160a01b037f000000000000000000000000b2a25f7d864636e44bc1bf7a316897652bf07463168383612c9b565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610ca1929190613828565b6000610f718383612e26565b61287e612598565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586125243390565b6128be600f826123be565b6128da5760405162461bcd60e51b8152600401610bd8906138dd565b6001600160a01b03811660009081526008602052604090205461290f5760405162461bcd60e51b8152600401610bd890613927565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561295f57600080fd5b505af1158015612973573d6000803e3d6000fd5b505050506000612982826125de565b90508015610e20576129948283612720565b7f7bd6d4be1decdc27a9ed9c7ccdf5bb7cc38e31b3647b958c6b37162a2296c0fa82826040516129c5929190613828565b60405180910390a15050565b6001600160a01b0381166129f75760405162461bcd60e51b8152600401610bd8906137e4565b6001600160a01b03811660009081526008602052604081208054908290556006805491928392612a289084906138ca565b9091555050604051600080516020613a8e833981519152906129c5908490600090613828565b6000610f71836001600160a01b038416612e50565b600560009054906101000a90046001600160a01b03166001600160a01b031663961325216040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ab6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ada9190613841565b15612b195760405162461bcd60e51b815260206004820152600f60248201526e10db1a5999881a185cc8195b991959608a1b6044820152606401610bd8565b6001600160a01b03811660009081526009602052604090205415612b3a5750565b612b45600a82612cf1565b506000612b51826125de565b90506000612b5e83610e30565b6001600160a01b038416600090815260086020526040902054909150612b83846129d1565b600554600e546001600160a01b03918216916395ccea679116612ba686866138ca565b6040518363ffffffff1660e01b8152600401612bc3929190613828565b600060405180830381600087803b158015612bdd57600080fd5b505af1158015612bf1573d6000803e3d6000fd5b5050600e54612c2f92506001600160a01b037f000000000000000000000000b2a25f7d864636e44bc1bf7a316897652bf07463811692501685612c9b565b600e54612c6a906001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7811691168684612d06565b7fd7dee2702d63ad89917b6a4da9981c90c4d24f8c2bdfd64c604ecae57d8d06518483604051611742929190613828565b610cf68363a9059cbb60e01b8484604051602401612cba929190613828565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612f43565b6000610f71836001600160a01b038416613018565b6040516001600160a01b03808516602483015283166044820152606481018290526119239085906323b872dd60e01b90608401612cba565b612d488282611929565b610e2057612d5581613067565b612d60836020613079565b604051602001612d7192919061399f565b60408051601f198184030181529082905262461bcd60e51b8252610bd891600401613a14565b60005460ff166112ef5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610bd8565b6006546001600160a01b03841660009081526008602052604081205490918391612e0a908661395e565b612e14919061397d565b612e1e91906138ca565b949350505050565b6000826000018281548110612e3d57612e3d61385a565b9060005260206000200154905092915050565b60008181526001830160205260408120548015612f39576000612e746001836138ca565b8554909150600090612e88906001906138ca565b9050818114612eed576000866000018281548110612ea857612ea861385a565b9060005260206000200154905080876000018481548110612ecb57612ecb61385a565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612efe57612efe613a27565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610b15565b6000915050610b15565b6000612f98826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166132159092919063ffffffff16565b9050805160001480612fb9575080806020019051810190612fb99190613a3d565b610cf65760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bd8565b600081815260018301602052604081205461305f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b15565b506000610b15565b6060610b156001600160a01b03831660145b6060600061308883600261395e565b6130939060026137d1565b67ffffffffffffffff8111156130ab576130ab61347a565b6040519080825280601f01601f1916602001820160405280156130d5576020820181803683370190505b509050600360fc1b816000815181106130f0576130f061385a565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061311f5761311f61385a565b60200101906001600160f81b031916908160001a905350600061314384600261395e565b61314e9060016137d1565b90505b60018111156131c6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106131825761318261385a565b1a60f81b8282815181106131985761319861385a565b60200101906001600160f81b031916908160001a90535060049490941c936131bf81613a5a565b9050613151565b508315610f715760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bd8565b6060612e1e848460008585600080866001600160a01b0316858760405161323c9190613a71565b60006040518083038185875af1925050503d8060008114613279576040519150601f19603f3d011682016040523d82523d6000602084013e61327e565b606091505b509150915061328f8783838761329a565b979650505050505050565b60608315613309578251600003613302576001600160a01b0385163b6133025760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bd8565b5081612e1e565b612e1e838381511561331e5781518083602001fd5b8060405162461bcd60e51b8152600401610bd89190613a14565b60006020828403121561334a57600080fd5b81356001600160e01b031981168114610f7157600080fd5b60006020828403121561337457600080fd5b5035919050565b80356001600160a01b038116811461339257600080fd5b919050565b6000602082840312156133a957600080fd5b610f718261337b565b600080604083850312156133c557600080fd5b6133ce8361337b565b946020939093013593505050565b600080604083850312156133ef57600080fd5b823591506133ff6020840161337b565b90509250929050565b6000806020838503121561341b57600080fd5b823567ffffffffffffffff8082111561343357600080fd5b818501915085601f83011261344757600080fd5b81358181111561345657600080fd5b86602082850101111561346857600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156134b9576134b961347a565b604052919050565b600067ffffffffffffffff8211156134db576134db61347a565b5060051b60200190565b600082601f8301126134f657600080fd5b8135602061350b613506836134c1565b613490565b82815260059290921b8401810191818101908684111561352a57600080fd5b8286015b8481101561354c5761353f8161337b565b835291830191830161352e565b509695505050505050565b6000806040838503121561356a57600080fd5b823567ffffffffffffffff8082111561358257600080fd5b61358e868387016134e5565b93506020915081850135818111156135a557600080fd5b85019050601f810186136135b857600080fd5b80356135c6613506826134c1565b81815260059190911b820183019083810190888311156135e557600080fd5b928401925b82841015613603578335825292840192908401906135ea565b80955050505050509250929050565b6000806040838503121561362557600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b818110156136755783516001600160a01b031683529284019291840191600101613650565b50909695505050505050565b60006020828403121561369357600080fd5b813567ffffffffffffffff8111156136aa57600080fd5b612e1e848285016134e5565b60005b838110156136d15781810151838201526020016136b9565b50506000910152565b600081518084526136f28160208601602086016136b6565b601f01601f19169290920160200192915050565b8215158152604060208201526000612e1e60408301846136da565b8015158114610f8b57600080fd5b6000806040838503121561374257600080fd5b82359150602083013561375481613721565b809150509250929050565b6000806040838503121561377257600080fd5b61377b8361337b565b91506133ff6020840161337b565b6000806000806080858703121561379f57600080fd5b5050823594602084013594506040840135936060013592509050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b1557610b156137bb565b60208082526024908201527f56657374696e673a206163636f756e7420697320746865207a65726f206164646040820152637265737360e01b606082015260800190565b6001600160a01b03929092168252602082015260400190565b60006020828403121561385357600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060018201613882576138826137bb565b5060010190565b60208082526021908201527f56657374696e673a2054474520686173206e6f742068617070656e65642079656040820152601d60fa1b606082015260800190565b81810381811115610b1557610b156137bb565b6020808252602a908201527f56657374696e673a206163636f756e7420686173206e6f742072657175657374604082015269065642061697264726f760b41b606082015260800190565b6020808252601e908201527f56657374696e673a206163636f756e7420686173206e6f207368617265730000604082015260600190565b6000816000190483118215151615613978576139786137bb565b500290565b60008261399a57634e487b7160e01b600052601260045260246000fd5b500490565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516139d78160178501602088016136b6565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613a088160288401602088016136b6565b01602801949350505050565b602081526000610f7160208301846136da565b634e487b7160e01b600052603160045260246000fd5b600060208284031215613a4f57600080fd5b8151610f7181613721565b600081613a6957613a696137bb565b506000190190565b60008251613a838184602087016136b6565b919091019291505056fee6382c9ed5c0c33bb05042f73cf6cbe9cb25639f9a711e094ee563bc9cb80e2ca2646970667358221220bff8404a73d613988f734b5f603dd7ed5ebe5794ab425531ec7c8df26751c9fb64736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b2a25f7d864636e44bc1bf7a316897652bf07463000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000eca95b8dbe5d466635dd8f298417f31275140934000000000000000000000000eca95b8dbe5d466635dd8f298417f3127514093400000000000000000000000000000000000000000000000000000000667044e400000000000000000000000000000000000000000000000000000000667044e400000000000000000000000000000000000000000000000000000000009e34000000000000000000000000000000000000000000000000000000000000093a800000000000000000000000000000000000000000000000000000000000093a76
-----Decoded View---------------
Arg [0] : _token (address): 0xb2a25f7D864636E44Bc1Bf7a316897652Bf07463
Arg [1] : _refundToken (address): 0xdAC17F958D2ee523a2206206994597C13D831ec7
Arg [2] : _refundReserve (address): 0xEca95B8Dbe5D466635dD8F298417F31275140934
Arg [3] : _feeReserve (address): 0xEca95B8Dbe5D466635dD8F298417F31275140934
Arg [4] : _tge (uint256): 1718633700
Arg [5] : _cliff (uint256): 1718633700
Arg [6] : _durationInSec (uint256): 10368000
Arg [7] : _periodInSeconds (uint256): 604800
Arg [8] : _refundPeriod (uint256): 604790
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 000000000000000000000000b2a25f7d864636e44bc1bf7a316897652bf07463
Arg [1] : 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7
Arg [2] : 000000000000000000000000eca95b8dbe5d466635dd8f298417f31275140934
Arg [3] : 000000000000000000000000eca95b8dbe5d466635dd8f298417f31275140934
Arg [4] : 00000000000000000000000000000000000000000000000000000000667044e4
Arg [5] : 00000000000000000000000000000000000000000000000000000000667044e4
Arg [6] : 00000000000000000000000000000000000000000000000000000000009e3400
Arg [7] : 0000000000000000000000000000000000000000000000000000000000093a80
Arg [8] : 0000000000000000000000000000000000000000000000000000000000093a76
Loading...
Loading
Loading...
Loading
Net Worth in USD
$618.20
Net Worth in ETH
0.298832
Token Allocations
LEGION
100.00%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.000359 | 1,723,749.4838 | $618.2 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.