Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
MultiUserLLSDStrategy
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 850 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { MathUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol";
import { IERC20Upgradeable } from "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
import { DefinitiveConstants } from "../../../core/libraries/DefinitiveConstants.sol";
import { DefinitiveAssets, IERC20 } from "../../../core/libraries/DefinitiveAssets.sol";
import { ILLSDStrategyV1 } from "../../LLSDStrategy/v1/ILLSDStrategyV1.sol";
import { IBaseTransfersV1 } from "../../../base/BaseTransfers/v1/IBaseTransfersV1.sol";
import { IBaseSafeHarborMode } from "../../../base/BaseSafeHarborMode/IBaseSafeHarborMode.sol";
import { CoreSignatureVerification } from "../../../core/CoreSignatureVerification/v1/CoreSignatureVerification.sol";
import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import { IMultiUserLLSDStrategy } from "./IMultiUserLLSDStrategy.sol";
import {
IERC20MetadataUpgradeable
} from "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol";
import { ERC20Upgradeable } from "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
import {
DeadlineExceeded,
EnforcedSafeLTV,
InvalidInputs,
TransfersLimitExceeded,
ExceededShareToAssetRatioDeltaThreshold
} from "../../../core/libraries/DefinitiveErrors.sol";
import { BaseMultiUserStrategyV1 } from "../../../base/BaseMultiUserStrategy/BaseMultiUserStrategyV1.sol";
interface ILLSDStrategy is ILLSDStrategyV1, IBaseTransfersV1, IBaseSafeHarborMode {
function DEFAULT_ADMIN_ROLE() external returns (bytes32);
}
/// @notice Uses selected methods from ERC4626
contract MultiUserLLSDStrategy is BaseMultiUserStrategyV1, IMultiUserLLSDStrategy, CoreSignatureVerification {
using MathUpgradeable for uint256;
using DefinitiveAssets for IERC20;
IERC20Upgradeable private ASSET;
uint8 private ASSET_DECIMALS;
/// @notice Initializes the safe LTV range to ± 5% in basis points (1e4 precision)
/// @notice Enforces an increase/decrease in LTV per transaction
/// @dev If LTV is 70%, a value of `500` will enforce ±5% of the existing LTV (73.5% <= New LTV >= 66.5%)
/// @dev **NOT** ± 500bps of the existing LTV: (75% <= New LTV >= 65%)
uint256 internal SAFE_LTV_THRESHOLD;
/// @notice Value of threshold allowed when comparing the initial vs final ratio of `totalAssets`:`totalSupply`
/// @notice when minting or burning shares.
/// @dev Examples for an initial ratio of 1e18:
/// @dev 1e4: (more strict) ratio after operation must equal 1e18 ± 1e4
/// @dev 1e8: (less strict) ratio after operation must equal 1e18 ± 1e8
uint256 internal SHARES_TO_ASSETS_RATIO_THRESHOLD;
// transfers throttling
uint256 internal _transfersThisBlock;
uint256 internal _latestTransfersBlockNumber;
uint256 internal MAX_TRANSFERS_PER_BLOCK;
/// @notice Defines the ABI version of MultiUserLPStakingStrategy
uint256 public constant ABI_VERSION = 1;
event MaxTransfersPerBlockUpdate(uint256 maxTransfers);
modifier enforceValidations(uint256 deadline) {
// Enforce deadline validation prior to method execution
_enforceDeadline(deadline);
(uint256 initialAssets, uint256 initialSupply, uint256 initialLTV) = (
totalAssets(),
totalSupply(),
ILLSDStrategy(VAULT).getLTV()
);
_;
_validateSafeLTVThreshold(initialAssets, initialSupply, initialLTV);
_validateSharesToAssetRatio(initialAssets, initialSupply);
}
/// @notice Constructor on the implementation contract should call _disableInitializers()
/// @dev https://forum.openzeppelin.com/t/what-does-disableinitializers-function-mean/28730/2
/// @custom:oz-upgrades-unsafe-allow constructor
constructor() {
_disableInitializers();
}
/// @dev ALWAYS INCLUDE VAULT: To maintain MU_* and Vault relationship during upgrades
function initialize(
address payable _vault,
address __asset,
string memory _name,
string memory _symbol,
address _wrappedNativeAssetAddress,
address _strategyAdmin,
address _sigVerificationSigner,
address _feeAccount
) public initializer {
if (ILLSDStrategy(_vault).STAKING_TOKEN() != __asset) {
revert InvalidInputs();
}
__BaseMultiUserStrategy_init(_vault, _name, _symbol, _feeAccount);
__CoreSignatureVerification_init(_sigVerificationSigner);
__CoreTransfersNative_init();
__BaseNativeWrapper_init(_wrappedNativeAssetAddress);
IERC20Upgradeable mAsset = IERC20Upgradeable(__asset);
(bool success, uint8 assetDecimals) = _tryGetAssetDecimals(mAsset);
ASSET_DECIMALS = success ? assetDecimals : 18;
ASSET = mAsset;
SAFE_LTV_THRESHOLD = 500;
SHARES_TO_ASSETS_RATIO_THRESHOLD = 1e12;
MAX_TRANSFERS_PER_BLOCK = 1;
_transferOwnership(_strategyAdmin);
}
function _enforceTransferLimits() private {
if (block.number != _latestTransfersBlockNumber) {
_latestTransfersBlockNumber = block.number;
delete _transfersThisBlock;
}
_transfersThisBlock += 1;
if (_transfersThisBlock > MAX_TRANSFERS_PER_BLOCK) {
revert TransfersLimitExceeded();
}
}
/// @dev Ratio Precision: 1e18
/// @dev Calculation Precision: 1e36 (or 1e18 ** 2)
function _getSharesToAssetsRatio(uint256 _totalSupply, uint256 _totalAssets) internal pure returns (uint256 ratio) {
if (_totalSupply > 0) {
ratio = _totalAssets.mulDiv(1e36, _totalSupply * 1e18);
}
}
function setSharesToAssetRatioThreshold(uint256 threshold) external onlyDefinitiveVaultAdmins {
SHARES_TO_ASSETS_RATIO_THRESHOLD = threshold;
emit UpdateSharesToAssetsRatioThreshold(_msgSender(), threshold);
}
function setSafeLTVThreshold(uint256 threshold) external onlyDefinitiveVaultAdmins {
if (threshold > 10_000 || threshold == 0) {
revert InvalidInputs();
}
SAFE_LTV_THRESHOLD = threshold;
emit UpdateSafeLTVThreshold(_msgSender(), threshold);
}
function setMaxTransfersPerBlock(uint256 maxTransfers) external onlyDefinitiveVaultAdmins {
MAX_TRANSFERS_PER_BLOCK = maxTransfers;
emit MaxTransfersPerBlockUpdate(maxTransfers);
}
/**
* @dev Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This
* "original" value is cached during construction of the vault contract. If this read operation fails (e.g., the
* asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals.
*
* See {IERC20Metadata-decimals}.
*/
function decimals() public view virtual override(IERC20MetadataUpgradeable, ERC20Upgradeable) returns (uint8) {
return ASSET_DECIMALS + _decimalsOffset();
}
/** @dev See {IERC4626-asset}. */
function asset() public view virtual override returns (address) {
return address(ASSET);
}
/// @notice Shows total assets of the underlying vault in terms of the underlying vault's debt asset
function totalAssets() public view override returns (uint256 totalAssetsAmount) {
address mVAULT = (VAULT);
address mSTAKED_TOKEN = ILLSDStrategy(VAULT).STAKED_TOKEN();
address mSTAKING_TOKEN = ILLSDStrategy(VAULT).STAKING_TOKEN();
uint256 collateralAmount = ILLSDStrategy(VAULT).getCollateralAmount();
uint256 debtAmount = ILLSDStrategy(VAULT).getDebtAmount();
uint256 dryCollateral = IERC20(mSTAKED_TOKEN).balanceOf(mVAULT);
uint256 dryDebt = IERC20(mSTAKING_TOKEN).balanceOf(mVAULT);
(uint256 collateralToDebtPriceRatio, uint256 collateralToDebtPriceRatioPrecision) = ILLSDStrategy(VAULT)
.getCollateralToDebtPrice();
// Add dry collateral in terms of debt
totalAssetsAmount += dryCollateral.mulDiv(collateralToDebtPriceRatioPrecision, collateralToDebtPriceRatio);
// Add dry debt
totalAssetsAmount += dryDebt;
// If collateral is 0, debt must be 0
if (collateralAmount > 0) {
// Add supplied collateral in terms of debt
totalAssetsAmount += collateralAmount.mulDiv(
collateralToDebtPriceRatioPrecision,
collateralToDebtPriceRatio
);
// Subtract debt
totalAssetsAmount -= debtAmount;
}
}
/// @notice External method to preview deposit of this contract's underlying deposit
/// @dev Should not be used for internal calculations. See `_getSharesFromDepositedAmount`
function previewDeposit(uint256 assets) external view returns (uint256) {
return assets.mulDiv(totalAssets() + 1, totalSupply() + 10 ** _decimalsOffset(), MathUpgradeable.Rounding.Down);
}
function encodeDepositParams(DepositParams calldata depositParams) public pure returns (bytes32) {
return keccak256(abi.encode(depositParams));
}
function encodeRedeemParams(RedeemParams calldata redeemParams) public pure returns (bytes32) {
return keccak256(abi.encode(redeemParams));
}
function deposit(
address receiver,
DepositParams calldata depositParams,
bytes calldata depositParamsSignature
)
external
payable
revertIfSafeHarborModeEnabled
enforceValidations(depositParams.deadline)
nonReentrant
returns (uint256 shares, uint256 assetsAdded)
{
_enforceTransferLimits();
_verifySignature(encodeDepositParams(depositParams), depositParamsSignature);
// If _asset is ERC777, `transferFrom` can trigger a reentrancy BEFORE the transfer happens through the
// `tokensToSend` hook. On the other hand, the `tokenReceived` hook, that is triggered after the transfer,
// calls the vault, which is assumed not malicious.
//
// Conclusion: we need to do the transfer before we mint so that any reentrancy would happen before the
// assets are transferred and before the shares are minted, which is a valid state.
// Handle deposited assets
_depositNativeAndERC20(depositParams.depositTokens);
// Wrap native asset (if necessary)
DefinitiveConstants.Assets memory depositTokens = _wrapDepositedNativeAsset(depositParams.depositTokens);
uint256 initialTotalAssets = totalAssets();
_approveAssetsForDeposit(depositTokens);
ILLSDStrategy(VAULT).deposit(depositTokens.amounts, depositTokens.addresses);
ILLSDStrategy(VAULT).enter(
depositParams.enterCtx.flashloanAmount,
depositParams.enterCtx.swapPayload,
depositParams.enterCtx.maxLTV
);
ILLSDStrategy(VAULT).sweepDust();
// `assetsAdded` is the amount of value provided to the underlying LLSDStrategy
// The depositor pays for fees/slippage associated with entering the vault
assetsAdded = totalAssets() - initialTotalAssets;
shares = _getSharesFromDepositedAmount(assetsAdded);
_mint(receiver, shares);
emit Mint(IMultiUserLLSDStrategy.MintEventData(_msgSender(), receiver, depositTokens, assetsAdded, shares));
}
function _decimalsOffset() internal view virtual returns (uint8) {
return 0;
}
// Asset and AssetAmount are provided by the consumer
// Contract calculates the shares based on the net effect to the underlying vault
// The owner must have the allowance/shares to afford the decrease in value of the underlying vault
function redeem(
address receiver,
address _owner,
RedeemParams calldata redeemParams,
bytes calldata redeemParamsSignature
)
external
revertIfSafeHarborModeEnabled
enforceValidations(redeemParams.deadline)
nonReentrant
returns (DefinitiveConstants.Assets memory tokensRemoved)
{
_enforceTransferLimits();
_verifySignature(encodeRedeemParams(redeemParams), redeemParamsSignature);
tokensRemoved = _getVaultDryBalances();
uint256 assetsRemoved = totalAssets();
ILLSDStrategy(VAULT).exit(
redeemParams.exitCtx.flashloanAmount,
redeemParams.exitCtx.repayAmount,
redeemParams.exitCtx.decollateralizeAmount,
redeemParams.exitCtx.swapPayload,
redeemParams.exitCtx.maxLTV
);
{
uint256 i = 0;
while (i < tokensRemoved.addresses.length) {
// Withdrawal amount is the increase in dry balance
// If there's no increase, then the withdrawal amount is 0
uint256 balanceAfter = IERC20(tokensRemoved.addresses[i]).balanceOf((VAULT));
if (balanceAfter > tokensRemoved.amounts[i]) {
tokensRemoved.amounts[i] = balanceAfter - tokensRemoved.amounts[i];
} else {
tokensRemoved.amounts[i] = 0;
}
unchecked {
++i;
}
}
}
// Handle fees
uint256 redeemSharesTotal = redeemParams.sharesBurned +
redeemParams.sharesFees +
redeemParams.sharesFeesAdditional;
if (_msgSender() != _owner) {
_spendAllowance(_owner, _msgSender(), redeemSharesTotal);
}
uint256 sharesFeesTotal = redeemSharesTotal - redeemParams.sharesBurned;
if (sharesFeesTotal > 0) {
// transfer fee shares
_transferShares(_owner, getFeesAccount(), sharesFeesTotal);
emit RedemptionFee(
_msgSender(),
address(this),
redeemSharesTotal,
redeemParams.sharesFees,
redeemParams.sharesFeesAdditional
);
}
_burn(_owner, redeemParams.sharesBurned);
_withdrawAndTransfer(receiver, tokensRemoved);
// `assetsRemoved` is the amount of value withdrawn from the underlying LLSDStrategy
// The depositor pays for fees/slippage associated with exiting the vault
assetsRemoved = assetsRemoved - totalAssets();
emit Redeem(
IMultiUserLLSDStrategy.RedeemEventData(
_msgSender(),
receiver,
_owner,
tokensRemoved,
assetsRemoved,
redeemSharesTotal
)
);
}
function _getVaultDryBalances() private view returns (DefinitiveConstants.Assets memory tokensRemoved) {
(tokensRemoved.amounts, tokensRemoved.addresses) = (new uint256[](2), new address[](2));
tokensRemoved.addresses[0] = ILLSDStrategy(VAULT).STAKED_TOKEN();
tokensRemoved.addresses[1] = ILLSDStrategy(VAULT).STAKING_TOKEN();
uint256 i;
{
// Initialize `tokensRemoved` array to the vault's dry balances
i = 0;
uint256 length = tokensRemoved.addresses.length;
while (i < length) {
tokensRemoved.amounts[i] = IERC20(tokensRemoved.addresses[i]).balanceOf((VAULT));
unchecked {
++i;
}
}
}
}
function _getSharesFromDepositedAmount(uint256 assets) internal view returns (uint256) {
uint256 _totalAssets = totalAssets();
uint256 totalAssetsBeforeDeposit = _totalAssets > assets ? _totalAssets - assets : 0;
return
assets.mulDiv(
totalSupply() + 10 ** _decimalsOffset(),
totalAssetsBeforeDeposit + 1,
MathUpgradeable.Rounding.Down
);
}
/**
* @dev Attempts to fetch the asset decimals. A return value of false indicates that the attempt failed in some way.
*/
function _tryGetAssetDecimals(IERC20Upgradeable asset_) private view returns (bool, uint8) {
(bool success, bytes memory encodedDecimals) = address(asset_).staticcall(
abi.encodeWithSelector(IERC20Metadata.decimals.selector)
);
if (success && encodedDecimals.length >= 32) {
uint256 returnedDecimals = abi.decode(encodedDecimals, (uint256));
if (returnedDecimals <= type(uint8).max) {
return (true, uint8(returnedDecimals));
}
}
return (false, 0);
}
function _validateSafeLTVThreshold(
uint256 initialTotalAssets,
uint256 initialTotalSupply,
uint256 initialLTV
) private view {
(uint256 mSAFE_LTV_THRESHOLD, uint256 totalAssetsAfter, uint256 totalSupplyAfter, uint256 ltvAfter) = (
SAFE_LTV_THRESHOLD,
totalAssets(),
totalSupply(),
ILLSDStrategy(VAULT).getLTV()
);
{
// Ignore if the vault is minting initial shares
bool isMintingInitialShares = initialTotalAssets == 0 && initialTotalSupply == 0;
// Ignore if the vault is burning all outstanding shares
bool isBurningAllOutstandingShares = totalAssetsAfter == 0 && totalSupplyAfter == 0;
if (isMintingInitialShares || isBurningAllOutstandingShares) {
return;
}
}
{
// 1e4 is the max LTV
uint256 deltaFromInitialLTV = mSAFE_LTV_THRESHOLD.mulDiv(initialLTV, 1e4);
uint256 upperLimit = MathUpgradeable.min(initialLTV + deltaFromInitialLTV, 1e4);
uint256 lowerLimit = deltaFromInitialLTV < initialLTV ? initialLTV - deltaFromInitialLTV : 0;
if (ltvAfter > upperLimit || ltvAfter < lowerLimit) {
revert EnforcedSafeLTV(ltvAfter);
}
}
}
/**
* @notice Ensures the ratio of `totalAssets`:`totalSupply` (A:S) does
* @notice not deviate by more than `SHARES_TO_ASSETS_RATIO_THRESHOLD`
* @dev Compares the initial A:S ratio against the ratio used when minting/burning
* @dev Validation should run in 2 cases for mint, and 2 cases for burn:
* @dev Mint: Initial mints (`S` == 0) and subsequent mints (`S` > 0)
* @dev Burn: Burning some OR all outstanding shares (resulting in S == 0 or S > 0)
* @dev Comparing the operation ratio delta rather than the final state ratio delta is superior because
* @dev final state ratio delta cannot validate when all outstanding shares are burned
*/
function _validateSharesToAssetRatio(uint256 initialAssets, uint256 initialSupply) private view {
(uint256 finalAssets, uint256 finalSupply) = (totalAssets(), totalSupply());
// Assets:Shares ratio should be 1:1 for initial mint
if (initialSupply == 0 && finalSupply > 0 && finalAssets * 10 ** _decimalsOffset() != finalSupply) {
revert ExceededShareToAssetRatioDeltaThreshold();
}
// Assets should remain unchanged if shares are unchanged
if (initialSupply == finalSupply && initialAssets != finalAssets) {
revert ExceededShareToAssetRatioDeltaThreshold();
}
// Ignore if the vault is minting initial shares
if (initialSupply > 0) {
uint256 initialRatio = _getSharesToAssetsRatio(initialSupply, initialAssets);
uint256 ratioDelta;
{
(uint256 supplyDelta, uint256 assetsDelta) = (initialSupply < finalSupply)
? (finalSupply - initialSupply, finalAssets - initialAssets) // Mint
: (initialSupply - finalSupply, initialAssets - finalAssets); // Burn
uint256 operationRatio = _getSharesToAssetsRatio(supplyDelta, assetsDelta);
ratioDelta =
MathUpgradeable.max(initialRatio, operationRatio) -
MathUpgradeable.min(initialRatio, operationRatio);
}
if (ratioDelta > SHARES_TO_ASSETS_RATIO_THRESHOLD) {
revert ExceededShareToAssetRatioDeltaThreshold();
}
}
}
function _enforceDeadline(uint256 deadline) private view {
if (block.timestamp > deadline) {
revert DeadlineExceeded();
}
}
/// @dev Created separate method to avoid stack too deep error
function _approveAssetsForDeposit(DefinitiveConstants.Assets memory depositAssets) private {
address mVAULT = (VAULT);
uint256 i;
uint256 length = depositAssets.amounts.length;
while (i < length) {
IERC20(depositAssets.addresses[i]).resetAndSafeIncreaseAllowance(
address(this),
mVAULT,
depositAssets.amounts[i]
);
unchecked {
i++;
}
}
}
/// @dev Created separate method to avoid stack too deep error
function _withdrawAndTransfer(address receiver, DefinitiveConstants.Assets memory withdrawnAssets) private {
// Withdraw `withdrawTokens` from the vault to the MultiUserLLSDStrategy
// Transfer `withdrawTokens` from the MultiUserLLSDStrategy to the receiver
uint256 i;
while (i < withdrawnAssets.addresses.length) {
ILLSDStrategy(VAULT).withdraw(withdrawnAssets.amounts[i], withdrawnAssets.addresses[i]);
IERC20(withdrawnAssets.addresses[i]).safeTransfer(receiver, withdrawnAssets.amounts[i]);
unchecked {
++i;
}
}
}
function _wrapDepositedNativeAsset(
DefinitiveConstants.Assets memory assets
) private returns (DefinitiveConstants.Assets memory) {
uint256 nativeAssetIndex = type(uint256).max;
{
uint256 i;
while (i < assets.addresses.length) {
if (assets.addresses[i] == DefinitiveConstants.NATIVE_ASSET_ADDRESS) {
nativeAssetIndex = i;
break;
}
unchecked {
++i;
}
}
}
if (nativeAssetIndex != type(uint256).max) {
_wrap(assets.amounts[nativeAssetIndex]);
// Replace the native asset with the wrapped native asset
assets.addresses[nativeAssetIndex] = WRAPPED_NATIVE_ASSET_ADDRESS;
emit NativeAssetWrap(address(this), assets.amounts[nativeAssetIndex], true /* wrappingToNative */);
}
return assets;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)
pragma solidity ^0.8.0;
/**
* @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
* proxy whose upgrades are fully controlled by the current implementation.
*/
interface IERC1822ProxiableUpgradeable {
/**
* @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
* address.
*
* IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
* function revert if invoked through a proxy.
*/
function proxiableUUID() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol)
pragma solidity ^0.8.0;
/**
* @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
*
* _Available since v4.8.3._
*/
interface IERC1967Upgradeable {
/**
* @dev Emitted when the implementation is upgraded.
*/
event Upgraded(address indexed implementation);
/**
* @dev Emitted when the admin account has changed.
*/
event AdminChanged(address previousAdmin, address newAdmin);
/**
* @dev Emitted when the beacon is changed.
*/
event BeaconUpgraded(address indexed beacon);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)
pragma solidity ^0.8.0;
/**
* @dev This is the interface that {BeaconProxy} expects of its beacon.
*/
interface IBeaconUpgradeable {
/**
* @dev Must return an address that can be used as a delegate call target.
*
* {BeaconProxy} will check that this address is a contract.
*/
function implementation() external view returns (address);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/ERC1967/ERC1967Upgrade.sol)
pragma solidity ^0.8.2;
import "../beacon/IBeaconUpgradeable.sol";
import "../../interfaces/IERC1967Upgradeable.sol";
import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../utils/StorageSlotUpgradeable.sol";
import "../utils/Initializable.sol";
/**
* @dev This abstract contract provides getters and event emitting update functions for
* https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
*
* _Available since v4.1._
*/
abstract contract ERC1967UpgradeUpgradeable is Initializable, IERC1967Upgradeable {
function __ERC1967Upgrade_init() internal onlyInitializing {
}
function __ERC1967Upgrade_init_unchained() internal onlyInitializing {
}
// This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1
bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/**
* @dev Returns the current implementation address.
*/
function _getImplementation() internal view returns (address) {
return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 implementation slot.
*/
function _setImplementation(address newImplementation) private {
require(AddressUpgradeable.isContract(newImplementation), "ERC1967: new implementation is not a contract");
StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
}
/**
* @dev Perform implementation upgrade
*
* Emits an {Upgraded} event.
*/
function _upgradeTo(address newImplementation) internal {
_setImplementation(newImplementation);
emit Upgraded(newImplementation);
}
/**
* @dev Perform implementation upgrade with additional setup call.
*
* Emits an {Upgraded} event.
*/
function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {
_upgradeTo(newImplementation);
if (data.length > 0 || forceCall) {
AddressUpgradeable.functionDelegateCall(newImplementation, data);
}
}
/**
* @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.
*
* Emits an {Upgraded} event.
*/
function _upgradeToAndCallUUPS(address newImplementation, bytes memory data, bool forceCall) internal {
// Upgrades from old implementations will perform a rollback test. This test requires the new
// implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing
// this special case will break upgrade paths from old UUPS implementation to new ones.
if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) {
_setImplementation(newImplementation);
} else {
try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) {
require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID");
} catch {
revert("ERC1967Upgrade: new implementation is not UUPS");
}
_upgradeToAndCall(newImplementation, data, forceCall);
}
}
/**
* @dev Storage slot with the admin of the contract.
* This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
/**
* @dev Returns the current admin.
*/
function _getAdmin() internal view returns (address) {
return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 admin slot.
*/
function _setAdmin(address newAdmin) private {
require(newAdmin != address(0), "ERC1967: new admin is the zero address");
StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
}
/**
* @dev Changes the admin of the proxy.
*
* Emits an {AdminChanged} event.
*/
function _changeAdmin(address newAdmin) internal {
emit AdminChanged(_getAdmin(), newAdmin);
_setAdmin(newAdmin);
}
/**
* @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
* This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
*/
bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;
/**
* @dev Returns the current beacon.
*/
function _getBeacon() internal view returns (address) {
return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value;
}
/**
* @dev Stores a new beacon in the EIP1967 beacon slot.
*/
function _setBeacon(address newBeacon) private {
require(AddressUpgradeable.isContract(newBeacon), "ERC1967: new beacon is not a contract");
require(
AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()),
"ERC1967: beacon implementation is not a contract"
);
StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon;
}
/**
* @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does
* not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).
*
* Emits a {BeaconUpgraded} event.
*/
function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal {
_setBeacon(newBeacon);
emit BeaconUpgraded(newBeacon);
if (data.length > 0 || forceCall) {
AddressUpgradeable.functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data);
}
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```solidity
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
*
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized != type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/UUPSUpgradeable.sol)
pragma solidity ^0.8.0;
import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../ERC1967/ERC1967UpgradeUpgradeable.sol";
import "./Initializable.sol";
/**
* @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an
* {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.
*
* A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is
* reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing
* `UUPSUpgradeable` with a custom implementation of upgrades.
*
* The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.
*
* _Available since v4.1._
*/
abstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable {
function __UUPSUpgradeable_init() internal onlyInitializing {
}
function __UUPSUpgradeable_init_unchained() internal onlyInitializing {
}
/// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
address private immutable __self = address(this);
/**
* @dev Check that the execution is being performed through a delegatecall call and that the execution context is
* a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case
* for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a
* function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to
* fail.
*/
modifier onlyProxy() {
require(address(this) != __self, "Function must be called through delegatecall");
require(_getImplementation() == __self, "Function must be called through active proxy");
_;
}
/**
* @dev Check that the execution is not being performed through a delegate call. This allows a function to be
* callable on the implementing contract but not through proxies.
*/
modifier notDelegated() {
require(address(this) == __self, "UUPSUpgradeable: must not be called through delegatecall");
_;
}
/**
* @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the
* implementation. It is used to validate the implementation's compatibility when performing an upgrade.
*
* IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
* function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.
*/
function proxiableUUID() external view virtual override notDelegated returns (bytes32) {
return _IMPLEMENTATION_SLOT;
}
/**
* @dev Upgrade the implementation of the proxy to `newImplementation`.
*
* Calls {_authorizeUpgrade}.
*
* Emits an {Upgraded} event.
*
* @custom:oz-upgrades-unsafe-allow-reachable delegatecall
*/
function upgradeTo(address newImplementation) public virtual onlyProxy {
_authorizeUpgrade(newImplementation);
_upgradeToAndCallUUPS(newImplementation, new bytes(0), false);
}
/**
* @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call
* encoded in `data`.
*
* Calls {_authorizeUpgrade}.
*
* Emits an {Upgraded} event.
*
* @custom:oz-upgrades-unsafe-allow-reachable delegatecall
*/
function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {
_authorizeUpgrade(newImplementation);
_upgradeToAndCallUUPS(newImplementation, data, true);
}
/**
* @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by
* {upgradeTo} and {upgradeToAndCall}.
*
* Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.
*
* ```solidity
* function _authorizeUpgrade(address) internal override onlyOwner {}
* ```
*/
function _authorizeUpgrade(address newImplementation) internal virtual;
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuardUpgradeable is Initializable {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
function __ReentrancyGuard_init() internal onlyInitializing {
__ReentrancyGuard_init_unchained();
}
function __ReentrancyGuard_init_unchained() internal onlyInitializing {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20Upgradeable.sol";
import "./extensions/IERC20MetadataUpgradeable.sol";
import "../../utils/ContextUpgradeable.sol";
import "../../proxy/utils/Initializable.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing {
__ERC20_init_unchained(name_, symbol_);
}
function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[45] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20Upgradeable.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20MetadataUpgradeable is IERC20Upgradeable {
/**
* @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/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20Upgradeable {
/**
* @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.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library MathUpgradeable {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.0;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC1967 implementation slot:
* ```solidity
* contract ERC1967 {
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*
* _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._
* _Available since v4.9 for `string`, `bytes`._
*/
library StorageSlotUpgradeable {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 value;
}
struct StringSlot {
string value;
}
struct BytesSlot {
bytes value;
}
/**
* @dev Returns an `AddressSlot` with member `value` located at `slot`.
*/
function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` representation of the string storage pointer `store`.
*/
function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
/**
* @dev Returns an `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
*/
function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
}// 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) (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: UNLICENSED
pragma solidity >=0.8.18;
import { CoreAccessControl, CoreAccessControlConfig } from "../core/CoreAccessControl/v1/CoreAccessControl.sol";
import { CoreStopGuardian } from "../core/CoreStopGuardian/v1/CoreStopGuardian.sol";
abstract contract BaseAccessControl is CoreAccessControl, CoreStopGuardian {
/**
* @dev
* Modifiers inherited from CoreAccessControl:
* onlyDefinitive
* onlyClients
* onlyWhitelisted
* onlyClientAdmin
* onlyDefinitiveAdmin
*
* Modifiers inherited from CoreStopGuardian:
* stopGuarded
*/
constructor(CoreAccessControlConfig memory coreAccessControlConfig) CoreAccessControl(coreAccessControlConfig) {}
/**
* @dev Inherited from CoreStopGuardian
*/
function enableStopGuardian() public override onlyAdmins {
return _enableStopGuardian();
}
/**
* @dev Inherited from CoreStopGuardian
*/
function disableStopGuardian() public override onlyClientAdmin {
return _disableStopGuardian();
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { BaseAccessControl } from "./BaseAccessControl.sol";
import { CoreFees, CoreFeesConfig } from "../core/CoreFees/v1/CoreFees.sol";
import { DefinitiveAssets, IERC20 } from "../core/libraries/DefinitiveAssets.sol";
import { DefinitiveConstants } from "../core/libraries/DefinitiveConstants.sol";
import { InvalidFeePercent } from "../core/libraries/DefinitiveErrors.sol";
abstract contract BaseFees is BaseAccessControl, CoreFees {
using DefinitiveAssets for IERC20;
constructor(CoreFeesConfig memory coreFeesConfig) CoreFees(coreFeesConfig) {}
function updateFeeAccount(address payable _feeAccount) public override onlyDefinitiveAdmin {
_updateFeeAccount(_feeAccount);
}
function _handleFeesOnAmount(address token, uint256 amount, uint256 feePct) internal returns (uint256 feeAmount) {
uint256 mMaxFeePCT = DefinitiveConstants.MAX_FEE_PCT;
if (feePct > mMaxFeePCT) {
revert InvalidFeePercent();
}
feeAmount = (amount * feePct) / mMaxFeePCT;
if (feeAmount > 0) {
if (token == DefinitiveConstants.NATIVE_ASSET_ADDRESS) {
DefinitiveAssets.safeTransferETH(FEE_ACCOUNT, feeAmount);
} else {
IERC20(token).safeTransfer(FEE_ACCOUNT, feeAmount);
}
}
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { Initializable } from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import { StorageSlotUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.sol";
import { IBaseMultiUserFeesUpgradeableV1 } from "./IBaseMultiUserFeesUpgradeableV1.sol";
import { InvalidInputs } from "../../../core/libraries/DefinitiveErrors.sol";
import { ContextUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import { DefinitiveAssets, IERC20 } from "../../../core/libraries/DefinitiveAssets.sol";
abstract contract BaseMultiUserFeesUpgradeable is IBaseMultiUserFeesUpgradeableV1, Initializable, ContextUpgradeable {
using DefinitiveAssets for IERC20;
uint256 private constant _MAX_FEE_PERCENTAGE = 10_000;
/* solhint-disable max-line-length */
/**
* @dev Storage slot with the current fee charged upon redemption.
* This is the keccak-256 hash of "Definitive.BaseMultiUserFeesUpgradeableV1._REDEMPTION_FEE_PERCENTAGE_SLOT" subtracted by 1
* bytes32(uint256(keccak256("Definitive.BaseMultiUserFeesUpgradeableV1._REDEMPTION_FEE_PERCENTAGE_SLOT")) - 1)
*/
/* solhint-enable max-line-length */
bytes32 internal constant _REDEMPTION_FEE_PERCENTAGE_SLOT =
0x14aa58a89d3f94ea99187ab98e735eb8f742cc801507b0f8968576d3fdc3c8cc;
/**
* @dev Storage slot with the current fee charged upon redemption.
* This is the keccak-256 hash of "Definitive.BaseMultiUserFeesUpgradeableV1._FEES_ACCOUNT_SLOT" subtracted by 1
* bytes32(uint256(keccak256("Definitive.BaseMultiUserFeesUpgradeableV1._FEES_ACCOUNT_SLOT")) - 1)
*/
bytes32 internal constant _FEES_ACCOUNT_SLOT = 0x68433f9d83ac21ac7a279e7d087229a9129597a360563c499bb398b5664b27c1;
function __BaseMultiUserFees_init(address _feesAccount) internal initializer {
__BaseMultiUserFees_init_unchained(_feesAccount);
}
function __BaseMultiUserFees_init_unchained(address _feesAccount) internal initializer {
_setFeesAccount(_feesAccount);
}
function getFeesAccount() public view returns (address) {
return address(StorageSlotUpgradeable.getAddressSlot(_FEES_ACCOUNT_SLOT).value);
}
function getRedemptionFee() public view returns (uint256) {
return uint256(StorageSlotUpgradeable.getUint256Slot(_REDEMPTION_FEE_PERCENTAGE_SLOT).value);
}
function getRedemptionFeeAmount(uint256 amount) public view returns (uint256 feeAmount) {
feeAmount = _getFeeAmount(amount, getRedemptionFee());
}
function _getFeeAmount(uint256 amount, uint256 fee) private pure returns (uint256) {
return (amount * fee) / _MAX_FEE_PERCENTAGE;
}
function _handleRedemptionFeesOnShares(
address owner,
address asset,
uint256 amount,
uint256 additionalFeePct
) internal returns (uint256 feeAmount) {
uint256 baseFee = getRedemptionFee();
if ((baseFee + additionalFeePct) > _MAX_FEE_PERCENTAGE) {
revert InvalidInputs();
}
address feesAccount = getFeesAccount();
uint256 baseFeeAmount = _getFeeAmount(amount, baseFee);
uint256 additionalFeeAmount = _getFeeAmount(amount, additionalFeePct);
feeAmount = baseFeeAmount + additionalFeeAmount;
if (feeAmount > 0 && feesAccount != address(0)) {
_transferShares(owner, feesAccount, feeAmount);
emit RedemptionFee(_msgSender(), asset, amount, baseFeeAmount, additionalFeeAmount);
}
}
function _setFeesAccount(address value) internal {
if (value == address(0)) {
revert InvalidInputs();
}
StorageSlotUpgradeable.getAddressSlot(_FEES_ACCOUNT_SLOT).value = value;
emit FeeAccountUpdated(_msgSender(), value);
}
function _setRedemptionFee(uint256 value) internal {
if (value >= _MAX_FEE_PERCENTAGE) {
revert InvalidInputs();
}
StorageSlotUpgradeable.getUint256Slot(_REDEMPTION_FEE_PERCENTAGE_SLOT).value = value;
emit RedemptionFeeUpdated(_msgSender(), value);
}
function _transferShares(address from, address to, uint256 amount) internal virtual;
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
interface IBaseMultiUserFeesUpgradeableV1 {
event FeeAccountUpdated(address actor, address feeAccount);
event RedemptionFee(address actor, address asset, uint256 amount, uint256 feeAmount, uint256 additionalFeeAmount);
event RedemptionFeeUpdated(address actor, uint256 redemptionFee);
function getFeesAccount() external view returns (address);
function getRedemptionFeeAmount(uint256 amount) external view returns (uint256 feeAmount);
function getRedemptionFee() external view returns (uint256 percent4);
function setFeesAccount(address) external;
function setRedemptionFee(uint256) external;
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { ERC20Upgradeable } from "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
import { OwnableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import {
ReentrancyGuardUpgradeable
} from "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";
import { IBaseMultiUserStrategyV1 } from "./IBaseMultiUserStrategyV1.sol";
import { ICoreAccessControlV1 } from "../../core/CoreAccessControl/v1/ICoreAccessControlV1.sol";
import { AccountNotAdmin, SafeHarborModeEnabled } from "../../core/libraries/DefinitiveErrors.sol";
import { UUPSUpgradeable } from "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
import { CoreMulticall } from "../../core/CoreMulticall/v1/CoreMulticall.sol";
import { BaseMultiUserFeesUpgradeable } from "../../base/BaseMultiUserFees/v1/BaseMultiUserFeesUpgradeable.sol";
import { CoreTransfersNativeUpgradeable } from "../../core/CoreTransfersNative/v1/CoreTransfersNativeUpgradeable.sol";
import { BaseNativeWrapperUpgradeable } from "../../base/BaseNativeWrapperUpgradeable/BaseNativeWrapperUpgradeable.sol";
import { IBaseSafeHarborMode } from "../../base/BaseSafeHarborMode/IBaseSafeHarborMode.sol";
import { StorageSlotUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.sol";
interface IDefinitiveVault is ICoreAccessControlV1, IBaseSafeHarborMode {
function DEFAULT_ADMIN_ROLE() external view returns (bytes32);
}
abstract contract BaseMultiUserStrategyV1 is
IBaseMultiUserStrategyV1,
OwnableUpgradeable,
ReentrancyGuardUpgradeable,
ERC20Upgradeable,
UUPSUpgradeable,
CoreMulticall,
BaseMultiUserFeesUpgradeable,
CoreTransfersNativeUpgradeable,
BaseNativeWrapperUpgradeable
{
address payable public VAULT;
/* solhint-disable max-line-length */
/**
* @dev Storage slot with flag allowing redemptions during safe harbor.
* This is the keccak-256 hash of "Definitive.BaseMultiUserStrategyV1._ENABLE_SAFE_HARBOR_REDEMPTIONS_SLOT" subtracted by 1
* bytes32(uint256(keccak256("Definitive.BaseMultiUserStrategyV1._ENABLE_SAFE_HARBOR_REDEMPTIONS_SLOT")) - 1)
*/
/* solhint-enable max-line-length */
bytes32 internal constant _ENABLE_SAFE_HARBOR_REDEMPTIONS_SLOT =
0xd8e383845db7ecbb6065c22cc5d1320931e4ef39a73fc10e0587d5257ff50379;
modifier onlyDefinitiveVaultAdmins() {
_validateOnlyDefinitiveVaultAdmins();
_;
}
/// @notice Revert if safe harbor mode is enabled
modifier revertIfSafeHarborModeEnabled() {
if (getSafeHarborModeEnabled()) {
revert SafeHarborModeEnabled();
}
_;
}
function __BaseMultiUserStrategy_init(
address _vault,
string memory _name,
string memory _symbol,
address _feesAccount
) internal onlyInitializing {
__Ownable_init();
__ReentrancyGuard_init();
__ERC20_init(_name, _symbol);
__BaseMultiUserFees_init(_feesAccount);
__BaseMultiUserStrategy_init_unchained(_vault);
}
function __BaseMultiUserStrategy_init_unchained(address _vault) internal onlyInitializing {
VAULT = payable(_vault);
StorageSlotUpgradeable.getBooleanSlot(_ENABLE_SAFE_HARBOR_REDEMPTIONS_SLOT).value = false;
}
function getVersion() external view returns (uint256) {
return _getInitializedVersion();
}
function setFeesAccount(address _value) external onlyDefinitiveVaultAdmins {
_setFeesAccount(_value);
}
function setRedemptionFee(uint256 _value) external onlyDefinitiveVaultAdmins {
_setRedemptionFee(_value);
}
function setSafeHarborRedemptions(bool allow) external onlyDefinitiveVaultAdmins {
StorageSlotUpgradeable.getBooleanSlot(_ENABLE_SAFE_HARBOR_REDEMPTIONS_SLOT).value = allow;
}
function getSafeHarborModeEnabled() public view returns (bool) {
return IDefinitiveVault(VAULT).SAFE_HARBOR_MODE_ENABLED();
}
/// @dev Required by UUPSUpgradeable, used by `upgradeTo()` and `upgradeToAndCall()`
/// @dev https://docs.openzeppelin.com/contracts/4.x/api/proxy#UUPSUpgradeable-_authorizeUpgrade-address-
function _authorizeUpgrade(address newImplementation) internal override onlyOwner {}
/// @notice Revert if caller is not definitive admin on underlying vault
function _validateOnlyDefinitiveVaultAdmins() private {
IDefinitiveVault mVault = IDefinitiveVault(VAULT);
if (
!mVault.hasRole(mVault.ROLE_DEFINITIVE_ADMIN(), _msgSender()) &&
!mVault.hasRole(mVault.DEFAULT_ADMIN_ROLE(), _msgSender())
) {
revert AccountNotAdmin(_msgSender());
}
}
function _transferShares(address from, address to, uint256 amount) internal override {
return _transfer(from, to, amount);
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { ICoreUUPS_ABIVersionAware } from "../../core_upgradeable/ICoreUUPS_ABIVersionAware.sol";
import { IERC20Upgradeable } from "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import {
IERC20MetadataUpgradeable
} from "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol";
interface IBaseMultiUserStrategyV1 is IERC20Upgradeable, IERC20MetadataUpgradeable, ICoreUUPS_ABIVersionAware {}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { Initializable } from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import { DefinitiveAssets } from "../../core/libraries/DefinitiveAssets.sol";
import { IWETH9 } from "../../vendor/interfaces/IWETH9.sol";
abstract contract BaseNativeWrapperUpgradeable is Initializable {
address payable public WRAPPED_NATIVE_ASSET_ADDRESS;
function __BaseNativeWrapper_init(address wrappedNativeAssetAddress) internal onlyInitializing {
__BaseNativeWrapper_init_unchained(wrappedNativeAssetAddress);
}
function __BaseNativeWrapper_init_unchained(address wrappedNativeAssetAddress) internal onlyInitializing {
WRAPPED_NATIVE_ASSET_ADDRESS = payable(wrappedNativeAssetAddress);
}
function _wrap(uint256 amount) internal {
// slither-disable-next-line arbitrary-send-eth
IWETH9(WRAPPED_NATIVE_ASSET_ADDRESS).deposit{ value: amount }();
}
function _unwrap(uint256 amount) internal {
IWETH9(WRAPPED_NATIVE_ASSET_ADDRESS).withdraw(amount);
}
function _wrapAll() internal {
return _wrap(address(this).balance);
}
function _unwrapAll() internal {
return _unwrap(DefinitiveAssets.getBalance(WRAPPED_NATIVE_ASSET_ADDRESS));
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { ICoreAccessControlV1 } from "../../core/CoreAccessControl/v1/ICoreAccessControlV1.sol";
interface IBasePermissionedExecution is ICoreAccessControlV1 {
function executeOperation(address target, bytes calldata payload) external payable;
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
// solhint-disable-next-line contract-name-camelcase
interface IBaseSafeHarborMode {
event SafeHarborModeUpdate(address indexed actor, bool indexed isEnabled);
function SAFE_HARBOR_MODE_ENABLED() external view returns (bool);
function enableSafeHarborMode() external;
function disableSafeHarborMode() external;
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { BaseFees } from "./BaseFees.sol";
import { CoreSwap, CoreSwapConfig, SwapPayload } from "../core/CoreSwap/v1/CoreSwap.sol";
import { ReentrancyGuard } from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import { DefinitiveConstants } from "../core/libraries/DefinitiveConstants.sol";
import { InvalidFeePercent, InvalidSwapPayload, SlippageExceeded } from "../core/libraries/DefinitiveErrors.sol";
import { ICoreSwapHandlerV1 } from "../core/CoreSwapHandler/ICoreSwapHandlerV1.sol";
abstract contract BaseSwap is BaseFees, CoreSwap, ReentrancyGuard {
constructor(CoreSwapConfig memory coreSwapConfig) CoreSwap(coreSwapConfig) {}
function enableSwapTokens(address[] memory swapTokens) public override onlyClientAdmin stopGuarded {
return _updateSwapTokens(swapTokens, true);
}
function disableSwapTokens(address[] memory swapTokens) public override onlyAdmins {
return _updateSwapTokens(swapTokens, false);
}
function enableSwapOutputTokens(address[] memory swapOutputTokens) public override onlyClientAdmin stopGuarded {
return _updateSwapOutputTokens(swapOutputTokens, true);
}
function disableSwapOutputTokens(address[] memory swapOutputTokens) public override onlyAdmins {
return _updateSwapOutputTokens(swapOutputTokens, false);
}
function enableSwapHandlers(address[] memory swapHandlers) public override onlyClientAdmin stopGuarded {
_updateSwapHandlers(swapHandlers, true);
}
function disableSwapHandlers(address[] memory swapHandlers) public override onlyAdmins {
_updateSwapHandlers(swapHandlers, false);
}
function swap(
SwapPayload[] memory payloads,
address outputToken,
uint256 amountOutMin,
uint256 feePct
) external override onlyWhitelisted nonReentrant stopGuarded returns (uint256) {
if (feePct > DefinitiveConstants.MAX_FEE_PCT) {
revert InvalidFeePercent();
}
(uint256[] memory inputAmounts, uint256 outputAmount) = _swap(payloads, outputToken);
if (outputAmount < amountOutMin) {
revert SlippageExceeded(outputAmount, amountOutMin);
}
address[] memory swapTokens = new address[](payloads.length);
uint256 swapTokensLength = swapTokens.length;
for (uint256 i; i < swapTokensLength; ) {
swapTokens[i] = payloads[i].swapToken;
unchecked {
++i;
}
}
uint256 feeAmount;
if (FEE_ACCOUNT != address(0) && outputAmount > 0 && feePct > 0) {
feeAmount = _handleFeesOnAmount(outputToken, outputAmount, feePct);
}
emit SwapHandled(swapTokens, inputAmounts, outputToken, outputAmount, feeAmount);
return outputAmount;
}
function _getEncodedSwapHandlerCalldata(
SwapPayload memory payload,
address expectedOutputToken,
bool isPrincipalAssetSwap,
bool isDelegateCall
) internal pure override returns (bytes memory) {
// Principal Swaps
if (isPrincipalAssetSwap && isDelegateCall) {
revert InvalidSwapPayload();
}
bytes4 selector;
if (isPrincipalAssetSwap) {
selector = ICoreSwapHandlerV1.swapUsingValidatedPathCall.selector;
} else {
selector = isDelegateCall ? ICoreSwapHandlerV1.swapDelegate.selector : ICoreSwapHandlerV1.swapCall.selector;
}
ICoreSwapHandlerV1.SwapParams memory _params = ICoreSwapHandlerV1.SwapParams({
inputAssetAddress: payload.swapToken,
inputAmount: payload.amount,
outputAssetAddress: expectedOutputToken,
minOutputAmount: payload.amountOutMin,
data: payload.handlerCalldata,
signature: payload.signature
});
return abi.encodeWithSelector(selector, _params);
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { ICoreAccessControlV1 } from "../../../core/CoreAccessControl/v1/ICoreAccessControlV1.sol";
import { ICoreDepositV1 } from "../../../core/CoreDeposit/v1/ICoreDepositV1.sol";
import { ICoreStopGuardianV1 } from "../../../core/CoreStopGuardian/v1/ICoreStopGuardianV1.sol";
import { ICoreWithdrawV1 } from "../../../core/CoreWithdraw/v1/CoreWithdraw.sol";
// This interface cannot be implemented on BaseTransfers.sol, but it's accurate
// since BaseTransfers.sol only inherits and overrides methods, and does not define
// additional public/external methods.
interface IBaseTransfersV1 is ICoreDepositV1, ICoreWithdrawV1, ICoreAccessControlV1, ICoreStopGuardianV1 {
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
// solhint-disable-next-line contract-name-camelcase
interface ICoreUUPS_ABIVersionAware {
/// @notice Define this with a `constant`
/// @dev EG: `uint256 public constant ABI_VERSION = 1;`
function ABI_VERSION() external view returns (uint256);
/// @notice This method should return `Initializable._getInitializedVersion()`
function getVersion() external view returns (uint256);
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { AccessControl as OZAccessControl } from "@openzeppelin/contracts/access/AccessControl.sol";
import { ICoreAccessControlV1 } from "./ICoreAccessControlV1.sol";
import { AccountNotAdmin, AccountNotWhitelisted, AccountMissingRole } from "../../libraries/DefinitiveErrors.sol";
struct CoreAccessControlConfig {
address admin;
address definitiveAdmin;
address[] definitive;
address[] client;
}
abstract contract CoreAccessControl is ICoreAccessControlV1, OZAccessControl {
// roles
bytes32 public constant ROLE_DEFINITIVE = keccak256("DEFINITIVE");
bytes32 public constant ROLE_DEFINITIVE_ADMIN = keccak256("DEFINITIVE_ADMIN");
bytes32 public constant ROLE_CLIENT = keccak256("CLIENT");
modifier onlyDefinitive() {
_checkRole(ROLE_DEFINITIVE);
_;
}
modifier onlyDefinitiveAdmin() {
_checkRole(ROLE_DEFINITIVE_ADMIN);
_;
}
modifier onlyClients() {
_checkRole(ROLE_CLIENT);
_;
}
modifier onlyClientAdmin() {
_checkRole(DEFAULT_ADMIN_ROLE);
_;
}
// default admin + definitive admin
modifier onlyAdmins() {
bool isAdmins = (hasRole(DEFAULT_ADMIN_ROLE, _msgSender()) || hasRole(ROLE_DEFINITIVE_ADMIN, _msgSender()));
if (!isAdmins) {
revert AccountNotAdmin(_msgSender());
}
_;
}
// client + definitive
modifier onlyWhitelisted() {
bool isWhitelisted = (hasRole(ROLE_CLIENT, _msgSender()) || hasRole(ROLE_DEFINITIVE, _msgSender()));
if (!isWhitelisted) {
revert AccountNotWhitelisted(_msgSender());
}
_;
}
constructor(CoreAccessControlConfig memory cfg) {
// admin
_setupRole(DEFAULT_ADMIN_ROLE, cfg.admin);
// definitive admin
_setupRole(ROLE_DEFINITIVE_ADMIN, cfg.definitiveAdmin);
_setRoleAdmin(ROLE_DEFINITIVE_ADMIN, ROLE_DEFINITIVE_ADMIN);
// definitive
uint256 cfgDefinitiveLength = cfg.definitive.length;
for (uint256 i; i < cfgDefinitiveLength; ) {
_setupRole(ROLE_DEFINITIVE, cfg.definitive[i]);
unchecked {
++i;
}
}
_setRoleAdmin(ROLE_DEFINITIVE, ROLE_DEFINITIVE_ADMIN);
// clients - implicit role admin is DEFAULT_ADMIN_ROLE
uint256 cfgClientLength = cfg.client.length;
for (uint256 i; i < cfgClientLength; ) {
_setupRole(ROLE_CLIENT, cfg.client[i]);
unchecked {
++i;
}
}
}
function _checkRole(bytes32 role, address account) internal view virtual override {
if (!hasRole(role, account)) {
revert AccountMissingRole(account, role);
}
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { IAccessControl } from "@openzeppelin/contracts/access/IAccessControl.sol";
interface ICoreAccessControlV1 is IAccessControl {
function ROLE_CLIENT() external returns (bytes32);
function ROLE_DEFINITIVE() external returns (bytes32);
function ROLE_DEFINITIVE_ADMIN() external returns (bytes32);
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
interface ICoreDepositV1 {
event Deposit(address indexed actor, address[] assetAddresses, uint256[] amounts);
function deposit(uint256[] calldata amounts, address[] calldata assetAddresses) external payable;
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { ICoreFeesV1 } from "./ICoreFeesV1.sol";
import { Context } from "@openzeppelin/contracts/utils/Context.sol";
struct CoreFeesConfig {
address payable feeAccount;
}
abstract contract CoreFees is ICoreFeesV1, Context {
address payable public FEE_ACCOUNT;
constructor(CoreFeesConfig memory coreFeesConfig) {
FEE_ACCOUNT = coreFeesConfig.feeAccount;
}
function _updateFeeAccount(address payable feeAccount) internal {
FEE_ACCOUNT = feeAccount;
emit FeeAccountUpdated(_msgSender(), feeAccount);
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
interface ICoreFeesV1 {
event FeeAccountUpdated(address actor, address feeAccount);
function FEE_ACCOUNT() external returns (address payable);
function updateFeeAccount(address payable feeAccount) external;
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { ICoreMulticallV1 } from "./ICoreMulticallV1.sol";
import { Address } from "@openzeppelin/contracts/utils/Address.sol";
import { DefinitiveAssets } from "../../libraries/DefinitiveAssets.sol";
/* solhint-disable max-line-length */
/**
* @notice Implements openzeppelin/contracts/utils/Multicall.sol
* Source: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/5b027e517e6aee69f4b4b2f5e78274ac8ee53513/contracts/utils/Multicall.sol solhint-disable max-line-length
*/
/* solhint-enable max-line-length */
abstract contract CoreMulticall is ICoreMulticallV1 {
/**
* @dev Receives and executes a batch of function calls on this contract.
*/
function multicall(bytes[] calldata data) external returns (bytes[] memory results) {
uint256 dataLength = data.length;
results = new bytes[](dataLength);
for (uint256 i; i < dataLength; ) {
results[i] = Address.functionDelegateCall(address(this), data[i]);
unchecked {
++i;
}
}
}
function getBalance(address assetAddress) public view returns (uint256) {
return DefinitiveAssets.getBalance(assetAddress);
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
interface ICoreMulticallV1 {
function multicall(bytes[] calldata data) external returns (bytes[] memory results);
function getBalance(address assetAddress) external view returns (uint256);
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { ICoreSignatureVerificationV1 } from "./ICoreSignatureVerificationV1.sol";
import { ContextUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import { OwnableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import {
InvalidSignature,
InvalidSignatureLength,
NoSignatureVerificationSignerSet
} from "../../libraries/DefinitiveErrors.sol";
/*
To encode a bytes32 messageHash for signature verification):
keccak256(abi.encodePacked(...))
*/
abstract contract CoreSignatureVerification is ICoreSignatureVerificationV1, ContextUpgradeable, OwnableUpgradeable {
address public _signatureVerificationSigner;
function __CoreSignatureVerification_init(address signer) internal onlyInitializing {
__Context_init();
__Ownable_init();
__CoreSignatureVerification_init_unchained(signer);
}
function __CoreSignatureVerification_init_unchained(address signer) internal onlyInitializing {
_signatureVerificationSigner = signer;
}
function _verifySignature(bytes32 messageHash, bytes memory signature) internal view {
if (_signatureVerificationSigner == address(0)) {
revert NoSignatureVerificationSignerSet();
}
bytes32 ethSignedMessageHash = _getEthSignedMessageHash(messageHash);
if (!_verifySignedBy(_signatureVerificationSigner, ethSignedMessageHash, signature)) {
revert InvalidSignature();
}
}
/* cSpell:disable */
function _getEthSignedMessageHash(bytes32 _messageHash) public pure returns (bytes32) {
/*
Signature is produced by signing a keccak256 hash with the following format:
"\x19Ethereum Signed Message\n" + len(msg) + msg
*/
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", _messageHash));
}
/* cSpell:enable */
function _verifySignedBy(
address signer,
bytes32 ethSignedMessageHash,
bytes memory signature
) private pure returns (bool) {
(bytes32 r, bytes32 s, uint8 v) = _splitSignature(signature);
return ecrecover(ethSignedMessageHash, v, r, s) == signer;
}
// https://solidity-by-example.org/signature
function _splitSignature(bytes memory sig) private pure returns (bytes32 r, bytes32 s, uint8 v) {
if (sig.length != 65) {
revert InvalidSignatureLength();
}
// solhint-disable-next-line no-inline-assembly
assembly {
/*
First 32 bytes stores the length of the signature
add(sig, 32) = pointer of sig + 32
effectively, skips first 32 bytes of signature
mload(p) loads next 32 bytes starting at the memory address p into memory
*/
// first 32 bytes, after the length prefix
r := mload(add(sig, 32))
// second 32 bytes
s := mload(add(sig, 64))
// final byte (first byte of the next 32 bytes)
v := byte(0, mload(add(sig, 96)))
}
// implicitly return (r, s, v)
}
function setSignatureVerificationSigner(address signer) external onlyOwner {
_signatureVerificationSigner = signer;
emit SignatureVerificationSignerUpdate(signer, _msgSender());
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
interface ICoreSignatureVerificationV1 {
event SignatureVerificationSignerUpdate(address signer, address updatedBy);
function setSignatureVerificationSigner(address signer) external;
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { ICoreStopGuardianV1 } from "./ICoreStopGuardianV1.sol";
import { Context } from "@openzeppelin/contracts/utils/Context.sol";
import { StopGuardianEnabled } from "../../libraries/DefinitiveErrors.sol";
abstract contract CoreStopGuardian is ICoreStopGuardianV1, Context {
bool public STOP_GUARDIAN_ENABLED;
// recommended for every public/external function
modifier stopGuarded() {
if (STOP_GUARDIAN_ENABLED) {
revert StopGuardianEnabled();
}
_;
}
function enableStopGuardian() public virtual;
function disableStopGuardian() public virtual;
function _enableStopGuardian() internal {
STOP_GUARDIAN_ENABLED = true;
emit StopGuardianUpdate(_msgSender(), true);
}
function _disableStopGuardian() internal {
STOP_GUARDIAN_ENABLED = false;
emit StopGuardianUpdate(_msgSender(), false);
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
interface ICoreStopGuardianV1 {
event StopGuardianUpdate(address indexed actor, bool indexed isEnabled);
function STOP_GUARDIAN_ENABLED() external view returns (bool);
function enableStopGuardian() external;
function disableStopGuardian() external;
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { ICoreSwapV1 } from "./ICoreSwapV1.sol";
import { DefinitiveAssets, IERC20 } from "../../libraries/DefinitiveAssets.sol";
import { Context } from "@openzeppelin/contracts/utils/Context.sol";
import { CallUtils } from "../../../tools/BubbleReverts/BubbleReverts.sol";
import { DefinitiveConstants } from "../../libraries/DefinitiveConstants.sol";
import {
InvalidSwapOutputToken,
InvalidSwapHandler,
InsufficientSwapTokenBalance,
SwapTokenIsOutputToken,
InvalidOutputToken,
InvalidReportedOutputAmount,
InvalidExecutedOutputAmount,
SwapLimitExceeded
} from "../../libraries/DefinitiveErrors.sol";
struct CoreSwapConfig {
address[] swapTokens;
address[] swapOutputTokens;
address[] swapHandlers;
}
struct SwapPayload {
address handler;
uint256 amount; // set 0 for maximum available balance
address swapToken;
uint256 amountOutMin;
bool isDelegate;
bytes handlerCalldata;
bytes signature;
}
abstract contract CoreSwap is ICoreSwapV1, Context {
using DefinitiveAssets for IERC20;
uint256 internal swapsThisBlock;
uint256 internal latestBlockNumber;
uint256 public immutable MAX_SWAPS_PER_BLOCK;
/**
* @notice Maintains mapping for reward tokens
* @notice Tokens _not_ in this list will be treated as principal assets
* @dev erc20 token => valid
*/
mapping(address => bool) public _swapTokens;
/// @dev erc20 token => valid
mapping(address => bool) public _swapOutputTokens;
/// @dev handler contract => enabled
mapping(address => bool) public _swapHandlers;
modifier enforceSwapLimit(SwapPayload[] memory payloads) {
if (block.number != latestBlockNumber) {
latestBlockNumber = block.number;
delete swapsThisBlock;
}
swapsThisBlock += payloads.length;
if (swapsThisBlock > MAX_SWAPS_PER_BLOCK) {
revert SwapLimitExceeded();
}
_;
}
constructor(CoreSwapConfig memory coreSwapConfig) {
uint256 coreswapConfigSwapTokensLength = coreSwapConfig.swapTokens.length;
MAX_SWAPS_PER_BLOCK = DefinitiveConstants.MAX_SWAPS_PER_BLOCK;
for (uint256 i; i < coreswapConfigSwapTokensLength; ) {
_swapTokens[coreSwapConfig.swapTokens[i]] = true;
unchecked {
++i;
}
}
uint256 coreSwapConfigSwapOutputTokensLength = coreSwapConfig.swapOutputTokens.length;
for (uint256 i; i < coreSwapConfigSwapOutputTokensLength; ) {
_swapOutputTokens[coreSwapConfig.swapOutputTokens[i]] = true;
unchecked {
++i;
}
}
uint256 coreSwapConfigSwapHandlersLength = coreSwapConfig.swapHandlers.length;
for (uint256 i; i < coreSwapConfigSwapHandlersLength; ) {
_swapHandlers[coreSwapConfig.swapHandlers[i]] = true;
unchecked {
++i;
}
}
}
function enableSwapTokens(address[] memory swapTokens) public virtual;
function disableSwapTokens(address[] memory swapTokens) public virtual;
function _updateSwapTokens(address[] memory swapTokens, bool enabled) internal {
uint256 swapTokensLength = swapTokens.length;
for (uint256 i; i < swapTokensLength; ) {
_swapTokens[swapTokens[i]] = enabled;
emit SwapTokenUpdate(_msgSender(), swapTokens[i], enabled);
unchecked {
++i;
}
}
}
function enableSwapOutputTokens(address[] memory swapOutputTokens) public virtual;
function disableSwapOutputTokens(address[] memory swapOutputTokens) public virtual;
function _updateSwapOutputTokens(address[] memory swapOutputTokens, bool enabled) internal {
uint256 swapOutputTokensLength = swapOutputTokens.length;
for (uint256 i; i < swapOutputTokensLength; ) {
_swapOutputTokens[swapOutputTokens[i]] = enabled;
emit SwapOutputTokenUpdate(_msgSender(), swapOutputTokens[i], enabled);
unchecked {
++i;
}
}
}
function enableSwapHandlers(address[] memory swapHandlers) public virtual;
function disableSwapHandlers(address[] memory swapHandlers) public virtual;
function _updateSwapHandlers(address[] memory swapHandlers, bool enabled) internal {
uint256 swapHandlersLength = swapHandlers.length;
for (uint256 i; i < swapHandlersLength; ) {
_swapHandlers[swapHandlers[i]] = enabled;
emit SwapHandlerUpdate(_msgSender(), swapHandlers[i], enabled);
unchecked {
++i;
}
}
}
function swap(
SwapPayload[] memory payloads,
address outputToken,
uint256 amountOutMin,
uint256 feePct
) external virtual returns (uint256 outputAmount);
function _swap(
SwapPayload[] memory payloads,
address expectedOutputToken
) internal enforceSwapLimit(payloads) returns (uint256[] memory inputTokenAmounts, uint256 outputTokenAmount) {
if (!_swapOutputTokens[expectedOutputToken]) {
revert InvalidSwapOutputToken();
}
uint256 payloadsLength = payloads.length;
inputTokenAmounts = new uint256[](payloadsLength);
uint256 outputTokenBalanceStart = DefinitiveAssets.getBalance(expectedOutputToken);
for (uint256 i; i < payloadsLength; ) {
SwapPayload memory payload = payloads[i];
if (!_swapHandlers[payload.handler]) {
revert InvalidSwapHandler();
}
if (expectedOutputToken == payload.swapToken) {
revert SwapTokenIsOutputToken();
}
uint256 outputTokenBalanceBefore = DefinitiveAssets.getBalance(expectedOutputToken);
inputTokenAmounts[i] = DefinitiveAssets.getBalance(payload.swapToken);
(uint256 _outputAmount, address _outputToken) = _processSwap(payload, expectedOutputToken);
if (_outputToken != expectedOutputToken) {
revert InvalidOutputToken();
}
if (_outputAmount < payload.amountOutMin) {
revert InvalidReportedOutputAmount();
}
uint256 outputTokenBalanceAfter = DefinitiveAssets.getBalance(expectedOutputToken);
if ((outputTokenBalanceAfter - outputTokenBalanceBefore) < payload.amountOutMin) {
revert InvalidExecutedOutputAmount();
}
// Update `inputTokenAmounts` to reflect the amount of tokens actually swapped
inputTokenAmounts[i] -= DefinitiveAssets.getBalance(payload.swapToken);
unchecked {
++i;
}
}
outputTokenAmount = DefinitiveAssets.getBalance(expectedOutputToken) - outputTokenBalanceStart;
}
function _processSwap(SwapPayload memory payload, address expectedOutputToken) private returns (uint256, address) {
// Override payload.amount with validated amount
payload.amount = _getValidatedPayloadAmount(payload);
/// @dev if asset is in _swapTokens, then it is a reward token
bool isPrincipalAssetSwap = !_swapTokens[payload.swapToken];
bytes memory _calldata = _getEncodedSwapHandlerCalldata(
payload,
expectedOutputToken,
isPrincipalAssetSwap,
payload.isDelegate
);
bool _success;
bytes memory _returnBytes;
if (payload.isDelegate) {
// slither-disable-next-line controlled-delegatecall
(_success, _returnBytes) = payload.handler.delegatecall(_calldata);
} else {
_prepareAssetsForNonDelegateHandlerCall(payload, payload.amount);
(_success, _returnBytes) = payload.handler.call(_calldata);
}
if (!_success) {
CallUtils.revertFromReturnedData(_returnBytes);
}
return abi.decode(_returnBytes, (uint256, address));
}
function _getEncodedSwapHandlerCalldata(
SwapPayload memory payload,
address expectedOutputToken,
bool isPrincipalAssetSwap,
bool isDelegateCall
) internal pure virtual returns (bytes memory);
function _getValidatedPayloadAmount(SwapPayload memory payload) private view returns (uint256 amount) {
uint256 balance = DefinitiveAssets.getBalance(payload.swapToken);
// Ensure balance > 0
DefinitiveAssets.validateAmount(balance);
amount = payload.amount;
if (amount != 0 && balance < amount) {
revert InsufficientSwapTokenBalance();
}
// maximum available balance if amount == 0
if (amount == 0) {
return balance;
}
}
function _prepareAssetsForNonDelegateHandlerCall(SwapPayload memory payload, uint256 amount) private {
if (payload.swapToken == DefinitiveConstants.NATIVE_ASSET_ADDRESS) {
// Send ETH to handler
DefinitiveAssets.safeTransferETH(payable(payload.handler), amount);
} else {
IERC20(payload.swapToken).resetAndSafeIncreaseAllowance(address(this), payload.handler, amount);
}
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { SwapPayload } from "./CoreSwap.sol";
interface ICoreSwapV1 {
event SwapHandlerUpdate(address actor, address swapHandler, bool isEnabled);
event SwapTokenUpdate(address actor, address swapToken, bool isEnabled);
event SwapOutputTokenUpdate(address actor, address swapOutputToken, bool isEnabled);
event SwapHandled(
address[] swapTokens,
uint256[] swapAmounts,
address outputToken,
uint256 outputAmount,
uint256 feeAmount
);
function enableSwapTokens(address[] memory swapTokens) external;
function disableSwapTokens(address[] memory swapTokens) external;
function enableSwapOutputTokens(address[] memory swapOutputTokens) external;
function disableSwapOutputTokens(address[] memory swapOutputTokens) external;
function enableSwapHandlers(address[] memory swapHandlers) external;
function disableSwapHandlers(address[] memory swapHandlers) external;
function swap(
SwapPayload[] memory payloads,
address outputToken,
uint256 amountOutMin,
uint256 feePct
) external returns (uint256 outputAmount);
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
interface ICoreSwapHandlerV1 {
event Swap(
address indexed actor,
address indexed inputToken,
uint256 inputAmount,
address indexed outputToken,
uint256 outputAmount
);
struct SwapParams {
address inputAssetAddress;
uint256 inputAmount;
address outputAssetAddress;
uint256 minOutputAmount;
bytes data;
bytes signature;
}
function swapCall(SwapParams calldata params) external payable returns (uint256 amountOut, address outputAsset);
function swapDelegate(SwapParams calldata params) external payable returns (uint256 amountOut, address outputAsset);
function swapUsingValidatedPathCall(
SwapParams calldata params
) external payable returns (uint256 amountOut, address outputAsset);
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { ContextUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import { ICoreTransfersNativeV1 } from "./ICoreTransfersNativeV1.sol";
import { DefinitiveAssets, IERC20 } from "../../libraries/DefinitiveAssets.sol";
import { DefinitiveConstants } from "../../libraries/DefinitiveConstants.sol";
import { InvalidInputs, InvalidMsgValue } from "../../libraries/DefinitiveErrors.sol";
/// @notice Copied from CoreTransfersNative/v1/CoreTransfersNative.sol
abstract contract CoreTransfersNativeUpgradeable is ICoreTransfersNativeV1, ContextUpgradeable {
using DefinitiveAssets for IERC20;
/**
* @notice Allows contract to receive native assets
*/
receive() external payable virtual {}
/**
* @notice This function is executed if none of the other functions
* match the call data. `bytes calldata` will contain the full data sent
* to the contract (equal to msg.data) and can return data in output.
* The returned data will not be ABI-encoded, and will be returned without
* modifications (not even padding).
* https://docs.soliditylang.org/en/v0.8.17/contracts.html#fallback-function
*/
fallback(bytes calldata) external payable virtual returns (bytes memory) {}
function __CoreTransfersNative_init() internal onlyInitializing {
__Context_init();
__CoreTransfersNative_init_unchained();
}
function __CoreTransfersNative_init_unchained() internal onlyInitializing {}
function _depositNativeAndERC20(DefinitiveConstants.Assets memory depositAssets) internal virtual {
uint256 assetAddressesLength = depositAssets.addresses.length;
if (depositAssets.amounts.length != assetAddressesLength) {
revert InvalidInputs();
}
uint256 nativeAssetIndex = type(uint256).max;
for (uint256 i; i < assetAddressesLength; ) {
if (depositAssets.addresses[i] == DefinitiveConstants.NATIVE_ASSET_ADDRESS) {
nativeAssetIndex = i;
unchecked {
++i;
}
continue;
}
// ERC20 tokens
IERC20(depositAssets.addresses[i]).safeTransferFrom(_msgSender(), address(this), depositAssets.amounts[i]);
unchecked {
++i;
}
}
// Revert if NATIVE_ASSET_ADDRESS is not in assetAddresses and msg.value is not zero
if (nativeAssetIndex == type(uint256).max && msg.value != 0) {
revert InvalidMsgValue();
}
// Revert if depositing native asset and amount != msg.value
if (nativeAssetIndex != type(uint256).max && msg.value != depositAssets.amounts[nativeAssetIndex]) {
revert InvalidMsgValue();
}
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
interface ICoreTransfersNativeV1 {
receive() external payable;
fallback(bytes calldata) external payable returns (bytes memory);
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { ICoreWithdrawV1 } from "./ICoreWithdrawV1.sol";
import { DefinitiveAssets, IERC20 } from "../../libraries/DefinitiveAssets.sol";
import { Context } from "@openzeppelin/contracts/utils/Context.sol";
import { DefinitiveConstants } from "../../libraries/DefinitiveConstants.sol";
abstract contract CoreWithdraw is ICoreWithdrawV1, Context {
using DefinitiveAssets for IERC20;
function supportsNativeAssets() public pure virtual returns (bool);
function withdraw(uint256 amount, address erc20Token) public virtual returns (bool);
function withdrawTo(uint256 amount, address erc20Token, address to) public virtual returns (bool);
function _withdraw(uint256 amount, address erc20Token) internal returns (bool) {
return _withdrawTo(amount, erc20Token, _msgSender());
}
function _withdrawTo(uint256 amount, address erc20Token, address to) internal returns (bool success) {
if (erc20Token == DefinitiveConstants.NATIVE_ASSET_ADDRESS) {
DefinitiveAssets.safeTransferETH(payable(to), amount);
} else {
IERC20(erc20Token).safeTransfer(to, amount);
}
emit Withdrawal(erc20Token, amount, to);
success = true;
}
function withdrawAll(address[] calldata tokens) public virtual returns (bool);
function withdrawAllTo(address[] calldata tokens, address to) public virtual returns (bool);
function _withdrawAll(address[] calldata tokens) internal returns (bool) {
return _withdrawAllTo(tokens, _msgSender());
}
function _withdrawAllTo(address[] calldata tokens, address to) internal returns (bool success) {
uint256 tokenLength = tokens.length;
for (uint256 i; i < tokenLength; ) {
uint256 tokenBalance = DefinitiveAssets.getBalance(tokens[i]);
if (tokenBalance > 0) {
_withdrawTo(tokenBalance, tokens[i], to);
}
unchecked {
++i;
}
}
return true;
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
interface ICoreWithdrawV1 {
event Withdrawal(address indexed erc20Token, uint256 amount, address indexed recipient);
function withdrawAll(address[] calldata tokens) external returns (bool);
function withdrawAllTo(address[] calldata tokens, address to) external returns (bool);
function supportsNativeAssets() external pure returns (bool);
function withdraw(uint256 amount, address erc20Token) external returns (bool);
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { IERC20, SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import { SafeTransferLib } from "solmate/src/utils/SafeTransferLib.sol";
import { DefinitiveConstants } from "./DefinitiveConstants.sol";
import { InsufficientBalance, InvalidAmount, InvalidAmounts, InvalidERC20Address } from "./DefinitiveErrors.sol";
/**
* @notice Contains methods used throughout the Definitive contracts
* @dev This file should only be used as an internal library.
*/
library DefinitiveAssets {
/**
* @dev Checks if an address is a valid ERC20 token
*/
modifier onlyValidERC20(address erc20Token) {
if (address(erc20Token) == DefinitiveConstants.NATIVE_ASSET_ADDRESS) {
revert InvalidERC20Address();
}
_;
}
//////////////////////////////////////////////////
//////////////////////////////////////////////////
// ↓ ERC20 and Native Asset Methods ↓
//////////////////////////////////////////////////
/**
* @dev Gets the balance of an ERC20 token or native asset
*/
function getBalance(address assetAddress) internal view returns (uint256) {
if (assetAddress == DefinitiveConstants.NATIVE_ASSET_ADDRESS) {
return address(this).balance;
} else {
return IERC20(assetAddress).balanceOf(address(this));
}
}
/**
* @dev internal function to validate balance is higher than a given amount for ERC20 and native assets
*/
function validateBalance(address token, uint256 amount) internal view {
if (token == DefinitiveConstants.NATIVE_ASSET_ADDRESS) {
validateNativeBalance(amount);
} else {
validateERC20Balance(token, amount);
}
}
//////////////////////////////////////////////////
//////////////////////////////////////////////////
// ↓ Native Asset Methods ↓
//////////////////////////////////////////////////
/**
* @dev validates amount and balance, then uses SafeTransferLib to transfer native asset
*/
function safeTransferETH(address recipient, uint256 amount) internal {
if (amount > 0) {
SafeTransferLib.safeTransferETH(payable(recipient), amount);
}
}
//////////////////////////////////////////////////
//////////////////////////////////////////////////
// ↓ ERC20 Methods ↓
//////////////////////////////////////////////////
/**
* @dev Resets and increases the allowance of a spender for an ERC20 token
*/
function resetAndSafeIncreaseAllowance(
IERC20 token,
address owner,
address spender,
uint256 amount
) internal onlyValidERC20(address(token)) {
if (token.allowance(owner, spender) > 0) {
SafeERC20.safeApprove(token, spender, 0);
}
return SafeERC20.safeIncreaseAllowance(token, spender, amount);
}
function safeTransfer(IERC20 token, address to, uint256 amount) internal onlyValidERC20(address(token)) {
if (amount > 0) {
SafeERC20.safeTransfer(token, to, amount);
}
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 amount
) internal onlyValidERC20(address(token)) {
if (amount > 0) {
//slither-disable-next-line arbitrary-send-erc20
SafeERC20.safeTransferFrom(token, from, to, amount);
}
}
//////////////////////////////////////////////////
//////////////////////////////////////////////////
// ↓ Asset Amount Helper Methods ↓
//////////////////////////////////////////////////
/**
* @dev internal function to validate that amounts contains a value greater than zero
*/
function validateAmounts(uint256[] calldata amounts) internal pure {
bool hasValidAmounts;
uint256 amountsLength = amounts.length;
for (uint256 i; i < amountsLength; ) {
if (amounts[i] > 0) {
hasValidAmounts = true;
break;
}
unchecked {
++i;
}
}
if (!hasValidAmounts) {
revert InvalidAmounts();
}
}
/**
* @dev internal function to validate if native asset balance is higher than the amount requested
*/
function validateNativeBalance(uint256 amount) internal view {
if (getBalance(DefinitiveConstants.NATIVE_ASSET_ADDRESS) < amount) {
revert InsufficientBalance();
}
}
/**
* @dev internal function to validate balance is higher than the amount requested for a token
*/
function validateERC20Balance(address token, uint256 amount) internal view onlyValidERC20(token) {
if (getBalance(token) < amount) {
revert InsufficientBalance();
}
}
function validateAmount(uint256 _amount) internal pure {
if (_amount == 0) {
revert InvalidAmount();
}
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
/**
* @notice Contains constants used throughout the Definitive contracts
* @dev This file should only be used as an internal library.
*/
library DefinitiveConstants {
/**
* @notice Maximum fee percentage
*/
uint256 internal constant MAX_FEE_PCT = 10000;
/**
* @notice Address to signify native assets
*/
address internal constant NATIVE_ASSET_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
/**
* @notice Maximum number of swaps allowed per block
*/
uint8 internal constant MAX_SWAPS_PER_BLOCK = 25;
struct Assets {
uint256[] amounts;
address[] addresses;
}
}// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.8.18; /** * @notice Contains all errors used throughout the Definitive contracts * @dev This file should only be used as an internal library. * @dev When adding a new error, add alphabetically */ error AccountMissingRole(address _account, bytes32 _role); error AccountNotAdmin(address); error AccountNotWhitelisted(address); error AddLiquidityFailed(); error DeadlineExceeded(); error BorrowFailed(uint256 errorCode); error DecollateralizeFailed(uint256 errorCode); error DepositMoreThanMax(); error EnterAllFailed(); error EnforcedSafeLTV(uint256 invalidLTV); error ExceededMaxDelta(); error ExceededMaxLTV(); error ExceededShareToAssetRatioDeltaThreshold(); error ExitAllFailed(); error ExitOneCoinFailed(); error InitializeMarketsFailed(); error InputGreaterThanStaked(); error InsufficientBalance(); error InsufficientSwapTokenBalance(); error InvalidAddress(); error InvalidAmount(); error InvalidAmounts(); error InvalidCalldata(); error InvalidDestinationSwapper(); error InvalidERC20Address(); error InvalidExecutedOutputAmount(); error InvalidFeePercent(); error InvalidHandler(); error InvalidInputs(); error InvalidMsgValue(); error InvalidSingleHopSwap(); error InvalidMultiHopSwap(); error InvalidOutputToken(); error InvalidRedemptionRecipient(); // Used in cross-chain redeptions error InvalidReportedOutputAmount(); error InvalidRewardsClaim(); error InvalidSignature(); error InvalidSignatureLength(); error InvalidSwapHandler(); error InvalidSwapInputAmount(); error InvalidSwapOutputToken(); error InvalidSwapPath(); error InvalidSwapPayload(); error InvalidSwapToken(); error MintMoreThanMax(); error NativeAssetWrapFailed(bool wrappingToNative); error NoSignatureVerificationSignerSet(); error RedeemMoreThanMax(); error RemoveLiquidityFailed(); error RepayDebtFailed(); error SafeHarborModeEnabled(); error SafeHarborRedemptionDisabled(); error SlippageExceeded(uint256 _outputAmount, uint256 _outputAmountMin); error StakeFailed(); error SupplyFailed(); error StopGuardianEnabled(); error SwapDeadlineExceeded(); error SwapLimitExceeded(); error SwapTokenIsOutputToken(); error TransfersLimitExceeded(); error UnstakeFailed(); error UnauthenticatedFlashloan(); error UntrustedFlashLoanSender(address); error WithdrawMoreThanMax(); error ZeroShares();
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { ICoreMulticallV1 } from "../../../core/CoreMulticall/v1/ICoreMulticallV1.sol";
import { SwapPayload } from "../../../base/BaseSwap.sol";
import { IBasePermissionedExecution } from "../../../base/BasePermissionedExecution/IBasePermissionedExecution.sol";
interface ILLSDStrategyV1 is ICoreMulticallV1, IBasePermissionedExecution {
event Enter(
uint256 collateral,
uint256 collateralDelta,
uint256 debt,
uint256 debtDelta,
address[] dryAssets,
int256[] dryBalanceDeltas,
uint256 ltv
);
event Exit(
uint256 collateral,
uint256 collateralDelta,
uint256 debt,
uint256 debtDelta,
address[] dryAssets,
int256[] dryBalanceDeltas,
uint256 ltv
);
event SweepDust(uint256 collateral, uint256 collateralDelta, uint256 debt, uint256 debtDelta, uint256 ltv);
struct EnterContext {
uint256 flashloanAmount;
SwapPayload swapPayload;
uint256 maxLTV;
}
struct ExitContext {
uint256 flashloanAmount;
uint256 repayAmount;
uint256 decollateralizeAmount;
SwapPayload swapPayload;
uint256 maxLTV;
}
enum FlashLoanContextType {
ENTER,
EXIT
}
function STAKED_TOKEN() external view returns (address);
function STAKING_TOKEN() external view returns (address);
/**
* @notice Enter or increase leverage using a flashloan.
* Steps:
* 1. Flashloan `flashloanAmount` of the staking asset (eg: WETH)
* 2a. On chains that support staking, stake the entire dry balance of the staking token (eg: WETH)
* 2b. All other chains, the `swapPayload` will swap `flashloanAmount` to the staked asset
* 3. Collateralize strategy balance of `dry` staked token (eg: wstETH)
* 4. Borrow `flashloanAmount`
* 5. Repay flashloan
* 6. Verify LTV is below inputted threshold
* @dev Swapping is only initiated if `SwapPayload.amount` > 0.
* @dev 2b: `SwapPayload.amount` determines the amount of staking asset to swap
* @param flashloanAmount Amount to flashloan
* @param swapPayload Swaps to staked asset when native staking is not possible.
* Not used on chains that support native staking.
* @param maxLTV Verify LTV at the end of the operation
*/
function enter(uint256 flashloanAmount, SwapPayload calldata swapPayload, uint256 maxLTV) external;
/**
* @notice Enter or increase leverage using multicall looping.
* Steps:
* 1. Collateralize strategy balance of `dry` staked asset (eg: wstETH)
* 2. Borrow staking asset
* 3a. On chains that support staking, stake the entire dry balance of the staking token (eg: WETH)
* 3b. All other chains, the `swapPayload` will swap `flashloanAmount` to the staked asset
* 4. Verify LTV is below inputted threshold
* @dev Swapping is only initiated if `SwapPayload.amount` > 0.
* This can occur to allow users to withdraw the staked asset.
* @param borrowAmount Amount to borrow
* @param swapPayload Swaps in to staked asset when native staking is not possible.
* * Not used on chains that support native staking.
* @param maxLTV Verify LTV at the end of the operation
*/
function enterMulticall(uint256 borrowAmount, SwapPayload calldata swapPayload, uint256 maxLTV) external;
/**
* @notice Exit or decrease leverage using a flashloan.
* Steps:
* 1. Flashloan `flashloanAmount` of the staking asset (eg: WETH)
* 2. Repay `repayAmount`
* 3. Decollateralize `flashloanAmount`
* 4a. On chains that support unstaking, unstake `flashloanAmount`
* 4b. All other chains, `swapPayload` will swap `decollateralizeAmount` out of the staked asset
* 5. Repay `flashloanAmount`
* 6. Verify LTV is below inputted threshold
* @dev `flashloanAmount` less `repayAmount` is the amount of the staking asset to leave dry.
* @dev Swapping is only initiated if `SwapPayload.amount` > 0.
* This can occur to allow users to withdraw the staked asset.
* @param flashloanAmount Amount to flashloan
* @param repayAmount Amount of `flashloanAmount` to repay
* @param decollateralizeAmount Amount of staked asset to remove as collateral
* @param swapPayload Swaps to staking asset when native unstaking is not possible
* On chains that support unstaking, `SwapPayload.amount` is used to unstake
* @param maxLTV Verify LTV at the end of the operation
*/
function exit(
uint256 flashloanAmount,
uint256 repayAmount,
uint256 decollateralizeAmount,
SwapPayload calldata swapPayload,
uint256 maxLTV
) external;
/**
* @notice Exit or decrease leverage using multicall looping.
* Steps:
* 1. Decollateralize `decollateralizeAmount`
* 2a. On chains that support unstaking, unstake `decollateralizeAmount`
* 2b. All other chains, `swapPayload` will swap `decollateralizeAmount` out of the staked asset
* 3. If `repayDebt` is `true`, repay using the min(output of swap from step 2, outstanding debt)
* Minimum amount is used to allow users to withdraw the staked asset.
* If `repayDebt` is `false`, no repayment will be made.
* 4. Verify LTV is below inputted threshold
* @dev Swapping is only initiated if `SwapPayload.amount` > 0.
* This can occur to allow users to withdraw the staked asset.
* @dev `repayDebt` can be set to `true` to allow users to withdraw the staking asset.
* @param decollateralizeAmount Amount of staked asset to remove as collateral
* @param swapPayload Swaps to staking asset when native unstaking is not possible
* On chains that support unstaking, `SwapPayload.amount` is used to unstake
* @param repayDebt Flag to repay decollateralized asset
* @param maxLTV Verify LTV at the end of the operation
*/
function exitMulticall(
uint256 decollateralizeAmount,
SwapPayload calldata swapPayload,
bool repayDebt,
uint256 maxLTV
) external;
/**
* @notice Vault balances of supplyable assets are supplied;
* vault balances of repayable assets are repaid
*/
function sweepDust() external;
// view functions
function getDebtAmount() external view returns (uint256);
function getCollateralAmount() external view returns (uint256);
/// @notice Returns the oracle price of the debt asset in terms of the collateral asset
function getCollateralToDebtPrice() external view returns (uint256 price, uint256 precision);
function getLTV() external view returns (uint256);
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.18;
import { DefinitiveConstants } from "../../../core/libraries/DefinitiveConstants.sol";
import { ILLSDStrategyV1 } from "../../LLSDStrategy/v1/ILLSDStrategyV1.sol";
import { IBaseMultiUserStrategyV1 } from "../../../base/BaseMultiUserStrategy/BaseMultiUserStrategyV1.sol";
/// @notice Uses selected methods from IERC4626
interface IMultiUserLLSDStrategy is IBaseMultiUserStrategyV1 {
struct RedeemEventData {
address sender;
address receiver;
address owner;
DefinitiveConstants.Assets tokensRemoved;
uint256 assetsRemoved;
uint256 shares;
}
struct MintEventData {
address sender;
address owner;
DefinitiveConstants.Assets tokensAdded;
uint256 assetsAdded;
uint256 shares;
}
struct DepositParams {
uint256 deadline;
uint256 chainId;
DefinitiveConstants.Assets depositTokens;
ILLSDStrategyV1.EnterContext enterCtx;
}
struct RedeemParams {
uint256 deadline;
uint256 chainId;
uint256 sharesBurned;
uint256 sharesFees;
uint256 sharesFeesAdditional;
ILLSDStrategyV1.ExitContext exitCtx;
}
event Mint(MintEventData mintEvent);
event NativeAssetWrap(address actor, uint256 amount, bool indexed wrappingToNative);
event Redeem(RedeemEventData redeemEvent);
event UpdateSafeLTVThreshold(address sender, uint256 threshold);
event UpdateSharesToAssetsRatioThreshold(address sender, uint256 threshold);
function deposit(
address receiver,
DepositParams calldata depositParams,
bytes memory depositParamsSignature
) external payable returns (uint256 shares, uint256 assetsAdded);
function redeem(
address receiver,
address owner,
RedeemParams calldata redeemParams,
bytes memory redeemParamsSignature
) external returns (DefinitiveConstants.Assets memory tokensRemoved);
function setSafeLTVThreshold(uint256) external;
function setSharesToAssetRatioThreshold(uint256) external;
function asset() external view returns (address assetTokenAddress);
function previewDeposit(uint256 assets) external view returns (uint256 shares);
function totalAssets() external view returns (uint256 totalManagedAssets);
}// SPDX-License-Identifier: AGPLv3
pragma solidity >=0.8.18;
import { InvalidCalldata } from "../../core/libraries/DefinitiveErrors.sol";
/**
* @title Call utilities library that is absent from the OpenZeppelin
* @author Superfluid
* Forked from
* https://github.com/superfluid-finance/protocol-monorepo/blob
* /d473b4876a689efb3bbb05552040bafde364a8b2/packages/ethereum-contracts/contracts/libs/CallUtils.sol
* (Separated by 2 lines to prevent going over 120 character per line limit)
*/
library CallUtils {
/// @dev Bubble up the revert from the returnedData (supports Panic, Error & Custom Errors)
/// @notice This is needed in order to provide some human-readable revert message from a call
/// @param returnedData Response of the call
function revertFromReturnedData(bytes memory returnedData) internal pure {
if (returnedData.length < 4) {
// case 1: catch all
revert("CallUtils: target revert()"); // solhint-disable-line custom-errors
} else {
bytes4 errorSelector;
// solhint-disable-next-line no-inline-assembly
assembly {
errorSelector := mload(add(returnedData, 0x20))
}
if (errorSelector == bytes4(0x4e487b71) /* `seth sig "Panic(uint256)"` */) {
// case 2: Panic(uint256) (Defined since 0.8.0)
// solhint-disable-next-line max-line-length
// ref: https://docs.soliditylang.org/en/v0.8.0/control-structures.html#panic-via-assert-and-error-via-require)
string memory reason = "CallUtils: target panicked: 0x__";
uint256 errorCode;
// solhint-disable-next-line no-inline-assembly
assembly {
errorCode := mload(add(returnedData, 0x24))
let reasonWord := mload(add(reason, 0x20))
// [0..9] is converted to ['0'..'9']
// [0xa..0xf] is not correctly converted to ['a'..'f']
// but since panic code doesn't have those cases, we will ignore them for now!
let e1 := add(and(errorCode, 0xf), 0x30)
let e2 := shl(8, add(shr(4, and(errorCode, 0xf0)), 0x30))
reasonWord := or(
and(reasonWord, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000),
or(e2, e1)
)
mstore(add(reason, 0x20), reasonWord)
}
revert(reason);
} else {
// case 3: Error(string) (Defined at least since 0.7.0)
// case 4: Custom errors (Defined since 0.8.0)
uint256 len = returnedData.length;
// solhint-disable-next-line no-inline-assembly
assembly {
revert(add(returnedData, 32), len)
}
}
}
}
/**
* @dev Helper method to parse data and extract the method signature (selector).
*
* Copied from: https://github.com/argentlabs/argent-contracts/
* blob/master/contracts/modules/common/Utils.sol#L54-L60
*/
function parseSelector(bytes memory callData) internal pure returns (bytes4 selector) {
if (callData.length < 4) {
revert InvalidCalldata();
}
// solhint-disable-next-line no-inline-assembly
assembly {
selector := mload(add(callData, 0x20))
}
}
/**
* @dev Pad length to 32 bytes word boundary
*/
function padLength32(uint256 len) internal pure returns (uint256 paddedLen) {
return ((len / 32) + (((len & 31) > 0) /* rounding? */ ? 1 : 0)) * 32;
}
/**
* @dev Validate if the data is encoded correctly with abi.encode(bytesData)
*
* Expected ABI Encode Layout:
* | word 1 | word 2 | word 3 | the rest...
* | data length | bytesData offset | bytesData length | bytesData + padLength32 zeros |
*/
function isValidAbiEncodedBytes(bytes memory data) internal pure returns (bool) {
if (data.length < 64) return false;
uint256 bytesOffset;
uint256 bytesLen;
// bytes offset is always expected to be 32
// solhint-disable-next-line no-inline-assembly
assembly {
bytesOffset := mload(add(data, 32))
}
if (bytesOffset != 32) return false;
// solhint-disable-next-line no-inline-assembly
assembly {
bytesLen := mload(add(data, 64))
}
// the data length should be bytesData.length + 64 + padded bytes length
return data.length == 64 + padLength32(bytesLen);
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.8.18;
interface IWETH9 {
function balanceOf(address) external view returns (uint256);
function deposit() external payable;
function withdraw(uint256 wad) external;
}// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
/*//////////////////////////////////////////////////////////////
EVENTS
//////////////////////////////////////////////////////////////*/
event Transfer(address indexed from, address indexed to, uint256 amount);
event Approval(address indexed owner, address indexed spender, uint256 amount);
/*//////////////////////////////////////////////////////////////
METADATA STORAGE
//////////////////////////////////////////////////////////////*/
string public name;
string public symbol;
uint8 public immutable decimals;
/*//////////////////////////////////////////////////////////////
ERC20 STORAGE
//////////////////////////////////////////////////////////////*/
uint256 public totalSupply;
mapping(address => uint256) public balanceOf;
mapping(address => mapping(address => uint256)) public allowance;
/*//////////////////////////////////////////////////////////////
EIP-2612 STORAGE
//////////////////////////////////////////////////////////////*/
uint256 internal immutable INITIAL_CHAIN_ID;
bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;
mapping(address => uint256) public nonces;
/*//////////////////////////////////////////////////////////////
CONSTRUCTOR
//////////////////////////////////////////////////////////////*/
constructor(
string memory _name,
string memory _symbol,
uint8 _decimals
) {
name = _name;
symbol = _symbol;
decimals = _decimals;
INITIAL_CHAIN_ID = block.chainid;
INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
}
/*//////////////////////////////////////////////////////////////
ERC20 LOGIC
//////////////////////////////////////////////////////////////*/
function approve(address spender, uint256 amount) public virtual returns (bool) {
allowance[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function transfer(address to, uint256 amount) public virtual returns (bool) {
balanceOf[msg.sender] -= amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(msg.sender, to, amount);
return true;
}
function transferFrom(
address from,
address to,
uint256 amount
) public virtual returns (bool) {
uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.
if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;
balanceOf[from] -= amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(from, to, amount);
return true;
}
/*//////////////////////////////////////////////////////////////
EIP-2612 LOGIC
//////////////////////////////////////////////////////////////*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) public virtual {
require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");
// Unchecked because the only math done is incrementing
// the owner's nonce which cannot realistically overflow.
unchecked {
address recoveredAddress = ecrecover(
keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR(),
keccak256(
abi.encode(
keccak256(
"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
),
owner,
spender,
value,
nonces[owner]++,
deadline
)
)
)
),
v,
r,
s
);
require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");
allowance[recoveredAddress][spender] = value;
}
emit Approval(owner, spender, value);
}
function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
}
function computeDomainSeparator() internal view virtual returns (bytes32) {
return
keccak256(
abi.encode(
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
keccak256(bytes(name)),
keccak256("1"),
block.chainid,
address(this)
)
);
}
/*//////////////////////////////////////////////////////////////
INTERNAL MINT/BURN LOGIC
//////////////////////////////////////////////////////////////*/
function _mint(address to, uint256 amount) internal virtual {
totalSupply += amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(address(0), to, amount);
}
function _burn(address from, uint256 amount) internal virtual {
balanceOf[from] -= amount;
// Cannot underflow because a user's balance
// will never be larger than the total supply.
unchecked {
totalSupply -= amount;
}
emit Transfer(from, address(0), amount);
}
}// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
import {ERC20} from "../tokens/ERC20.sol";
/// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol)
/// @dev Use with caution! Some functions in this library knowingly create dirty bits at the destination of the free memory pointer.
/// @dev Note that none of the functions in this library check that a token has code at all! That responsibility is delegated to the caller.
library SafeTransferLib {
/*//////////////////////////////////////////////////////////////
ETH OPERATIONS
//////////////////////////////////////////////////////////////*/
function safeTransferETH(address to, uint256 amount) internal {
bool success;
/// @solidity memory-safe-assembly
assembly {
// Transfer the ETH and store if it succeeded or not.
success := call(gas(), to, amount, 0, 0, 0, 0)
}
require(success, "ETH_TRANSFER_FAILED");
}
/*//////////////////////////////////////////////////////////////
ERC20 OPERATIONS
//////////////////////////////////////////////////////////////*/
function safeTransferFrom(
ERC20 token,
address from,
address to,
uint256 amount
) internal {
bool success;
/// @solidity memory-safe-assembly
assembly {
// Get a pointer to some free memory.
let freeMemoryPointer := mload(0x40)
// Write the abi-encoded calldata into memory, beginning with the function selector.
mstore(freeMemoryPointer, 0x23b872dd00000000000000000000000000000000000000000000000000000000)
mstore(add(freeMemoryPointer, 4), from) // Append the "from" argument.
mstore(add(freeMemoryPointer, 36), to) // Append the "to" argument.
mstore(add(freeMemoryPointer, 68), amount) // Append the "amount" argument.
success := and(
// Set success to whether the call reverted, if not we check it either
// returned exactly 1 (can't just be non-zero data), or had no return data.
or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
// We use 100 because the length of our calldata totals up like so: 4 + 32 * 3.
// We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
// Counterintuitively, this call must be positioned second to the or() call in the
// surrounding and() call or else returndatasize() will be zero during the computation.
call(gas(), token, 0, freeMemoryPointer, 100, 0, 32)
)
}
require(success, "TRANSFER_FROM_FAILED");
}
function safeTransfer(
ERC20 token,
address to,
uint256 amount
) internal {
bool success;
/// @solidity memory-safe-assembly
assembly {
// Get a pointer to some free memory.
let freeMemoryPointer := mload(0x40)
// Write the abi-encoded calldata into memory, beginning with the function selector.
mstore(freeMemoryPointer, 0xa9059cbb00000000000000000000000000000000000000000000000000000000)
mstore(add(freeMemoryPointer, 4), to) // Append the "to" argument.
mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument.
success := and(
// Set success to whether the call reverted, if not we check it either
// returned exactly 1 (can't just be non-zero data), or had no return data.
or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
// We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.
// We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
// Counterintuitively, this call must be positioned second to the or() call in the
// surrounding and() call or else returndatasize() will be zero during the computation.
call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
)
}
require(success, "TRANSFER_FAILED");
}
function safeApprove(
ERC20 token,
address to,
uint256 amount
) internal {
bool success;
/// @solidity memory-safe-assembly
assembly {
// Get a pointer to some free memory.
let freeMemoryPointer := mload(0x40)
// Write the abi-encoded calldata into memory, beginning with the function selector.
mstore(freeMemoryPointer, 0x095ea7b300000000000000000000000000000000000000000000000000000000)
mstore(add(freeMemoryPointer, 4), to) // Append the "to" argument.
mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument.
success := and(
// Set success to whether the call reverted, if not we check it either
// returned exactly 1 (can't just be non-zero data), or had no return data.
or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
// We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.
// We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
// Counterintuitively, this call must be positioned second to the or() call in the
// surrounding and() call or else returndatasize() will be zero during the computation.
call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
)
}
require(success, "APPROVE_FAILED");
}
}{
"metadata": {
"bytecodeHash": "none"
},
"optimizer": {
"enabled": true,
"runs": 850
},
"viaIR": false,
"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":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AccountNotAdmin","type":"error"},{"inputs":[],"name":"DeadlineExceeded","type":"error"},{"inputs":[{"internalType":"uint256","name":"invalidLTV","type":"uint256"}],"name":"EnforcedSafeLTV","type":"error"},{"inputs":[],"name":"ExceededShareToAssetRatioDeltaThreshold","type":"error"},{"inputs":[],"name":"InvalidERC20Address","type":"error"},{"inputs":[],"name":"InvalidInputs","type":"error"},{"inputs":[],"name":"InvalidMsgValue","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"InvalidSignatureLength","type":"error"},{"inputs":[],"name":"NoSignatureVerificationSignerSet","type":"error"},{"inputs":[],"name":"SafeHarborModeEnabled","type":"error"},{"inputs":[],"name":"TransfersLimitExceeded","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"actor","type":"address"},{"indexed":false,"internalType":"address","name":"feeAccount","type":"address"}],"name":"FeeAccountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTransfers","type":"uint256"}],"name":"MaxTransfersPerBlockUpdate","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"components":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"internalType":"struct DefinitiveConstants.Assets","name":"tokensAdded","type":"tuple"},{"internalType":"uint256","name":"assetsAdded","type":"uint256"},{"internalType":"uint256","name":"shares","type":"uint256"}],"indexed":false,"internalType":"struct IMultiUserLLSDStrategy.MintEventData","name":"mintEvent","type":"tuple"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"actor","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"bool","name":"wrappingToNative","type":"bool"}],"name":"NativeAssetWrap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"components":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"internalType":"struct DefinitiveConstants.Assets","name":"tokensRemoved","type":"tuple"},{"internalType":"uint256","name":"assetsRemoved","type":"uint256"},{"internalType":"uint256","name":"shares","type":"uint256"}],"indexed":false,"internalType":"struct IMultiUserLLSDStrategy.RedeemEventData","name":"redeemEvent","type":"tuple"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"actor","type":"address"},{"indexed":false,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"additionalFeeAmount","type":"uint256"}],"name":"RedemptionFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"actor","type":"address"},{"indexed":false,"internalType":"uint256","name":"redemptionFee","type":"uint256"}],"name":"RedemptionFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"},{"indexed":false,"internalType":"address","name":"updatedBy","type":"address"}],"name":"SignatureVerificationSignerUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"UpdateSafeLTVThreshold","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"UpdateSharesToAssetsRatioThreshold","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"ABI_VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VAULT","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WRAPPED_NATIVE_ASSET_ADDRESS","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_messageHash","type":"bytes32"}],"name":"_getEthSignedMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"_signatureVerificationSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"components":[{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"components":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"internalType":"struct DefinitiveConstants.Assets","name":"depositTokens","type":"tuple"},{"components":[{"internalType":"uint256","name":"flashloanAmount","type":"uint256"},{"components":[{"internalType":"address","name":"handler","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"swapToken","type":"address"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"bool","name":"isDelegate","type":"bool"},{"internalType":"bytes","name":"handlerCalldata","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct SwapPayload","name":"swapPayload","type":"tuple"},{"internalType":"uint256","name":"maxLTV","type":"uint256"}],"internalType":"struct ILLSDStrategyV1.EnterContext","name":"enterCtx","type":"tuple"}],"internalType":"struct IMultiUserLLSDStrategy.DepositParams","name":"depositParams","type":"tuple"},{"internalType":"bytes","name":"depositParamsSignature","type":"bytes"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"assetsAdded","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"components":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"internalType":"struct DefinitiveConstants.Assets","name":"depositTokens","type":"tuple"},{"components":[{"internalType":"uint256","name":"flashloanAmount","type":"uint256"},{"components":[{"internalType":"address","name":"handler","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"swapToken","type":"address"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"bool","name":"isDelegate","type":"bool"},{"internalType":"bytes","name":"handlerCalldata","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct SwapPayload","name":"swapPayload","type":"tuple"},{"internalType":"uint256","name":"maxLTV","type":"uint256"}],"internalType":"struct ILLSDStrategyV1.EnterContext","name":"enterCtx","type":"tuple"}],"internalType":"struct IMultiUserLLSDStrategy.DepositParams","name":"depositParams","type":"tuple"}],"name":"encodeDepositParams","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"uint256","name":"sharesBurned","type":"uint256"},{"internalType":"uint256","name":"sharesFees","type":"uint256"},{"internalType":"uint256","name":"sharesFeesAdditional","type":"uint256"},{"components":[{"internalType":"uint256","name":"flashloanAmount","type":"uint256"},{"internalType":"uint256","name":"repayAmount","type":"uint256"},{"internalType":"uint256","name":"decollateralizeAmount","type":"uint256"},{"components":[{"internalType":"address","name":"handler","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"swapToken","type":"address"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"bool","name":"isDelegate","type":"bool"},{"internalType":"bytes","name":"handlerCalldata","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct SwapPayload","name":"swapPayload","type":"tuple"},{"internalType":"uint256","name":"maxLTV","type":"uint256"}],"internalType":"struct ILLSDStrategyV1.ExitContext","name":"exitCtx","type":"tuple"}],"internalType":"struct IMultiUserLLSDStrategy.RedeemParams","name":"redeemParams","type":"tuple"}],"name":"encodeRedeemParams","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"assetAddress","type":"address"}],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFeesAccount","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRedemptionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getRedemptionFeeAmount","outputs":[{"internalType":"uint256","name":"feeAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSafeHarborModeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getVersion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_vault","type":"address"},{"internalType":"address","name":"__asset","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_wrappedNativeAssetAddress","type":"address"},{"internalType":"address","name":"_strategyAdmin","type":"address"},{"internalType":"address","name":"_sigVerificationSigner","type":"address"},{"internalType":"address","name":"_feeAccount","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"components":[{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"uint256","name":"sharesBurned","type":"uint256"},{"internalType":"uint256","name":"sharesFees","type":"uint256"},{"internalType":"uint256","name":"sharesFeesAdditional","type":"uint256"},{"components":[{"internalType":"uint256","name":"flashloanAmount","type":"uint256"},{"internalType":"uint256","name":"repayAmount","type":"uint256"},{"internalType":"uint256","name":"decollateralizeAmount","type":"uint256"},{"components":[{"internalType":"address","name":"handler","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"swapToken","type":"address"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"bool","name":"isDelegate","type":"bool"},{"internalType":"bytes","name":"handlerCalldata","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct SwapPayload","name":"swapPayload","type":"tuple"},{"internalType":"uint256","name":"maxLTV","type":"uint256"}],"internalType":"struct ILLSDStrategyV1.ExitContext","name":"exitCtx","type":"tuple"}],"internalType":"struct IMultiUserLLSDStrategy.RedeemParams","name":"redeemParams","type":"tuple"},{"internalType":"bytes","name":"redeemParamsSignature","type":"bytes"}],"name":"redeem","outputs":[{"components":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"internalType":"struct DefinitiveConstants.Assets","name":"tokensRemoved","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_value","type":"address"}],"name":"setFeesAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTransfers","type":"uint256"}],"name":"setMaxTransfersPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setRedemptionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"allow","type":"bool"}],"name":"setSafeHarborRedemptions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"setSafeLTVThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"setSharesToAssetRatioThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setSignatureVerificationSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"totalAssetsAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60a0604052306080523480156200001557600080fd5b506200002062000026565b620000e7565b600054610100900460ff1615620000935760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff90811614620000e5576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b608051615f316200011f60003960008181610e8e01528181610f180152818161108001528181611105015261158f0152615f316000f3fe6080604052600436106102eb5760003560e01c80637018b08e11610184578063be666a08116100d6578063df881af61161008a578063f2fde38b11610064578063f2fde38b1461086f578063f6b45cfd1461088f578063f8b2cb4f146108a4576102f2565b8063df881af61461080f578063e5ea2dbd1461082f578063ef8b30f71461084f576102f2565b8063c64fca11116100bb578063c64fca1114610788578063dd62ed3e146107a9578063ddb00dfc146107ef576102f2565b8063be666a081461073b578063c29ee25e14610768576102f2565b80638da5cb5b11610138578063a457c2d711610112578063a457c2d7146106ce578063a9059cbb146106ee578063ac9650d81461070e576102f2565b80638da5cb5b1461066757806395d89b41146106855780639cd6f0091461069a576102f2565b8063715018a611610169578063715018a61461061d5780637dbc1df0146106325780638b0a15d714610652576102f2565b80637018b08e146105c757806370a08231146105e7576102f2565b8063313ce5671161023d5780634966528b116101f157806352d1902d116101cb57806352d1902d14610572578063676f774c146105875780636a63cee7146105a7576102f2565b80634966528b146105175780634f1ef28614610537578063500c22bc1461054a576102f2565b806338d52e0f1161022257806338d52e0f146104b757806339509351146104d6578063411557d1146104f6576102f2565b8063313ce567146104705780633659cfe614610497576102f2565b8063095ea7b31161029f5780631a532377116102795780631a5323771461040e57806323b872dd1461042e57806324906f861461044e576102f2565b8063095ea7b3146103b15780630d8e6e2c146103e157806318160ddd146103f9576102f2565b8063025fb662116102d0578063025fb6621461034157806305ca86661461036e57806306fdde031461038f576102f2565b806301038ad1146102f957806301e1d1141461032c576102f2565b366102f257005b6060516080f35b34801561030557600080fd5b50610319610314366004614d77565b6108c4565b6040519081526020015b60405180910390f35b34801561033857600080fd5b506103196108f4565b34801561034d57600080fd5b50610356610ca2565b6040516001600160a01b039091168152602001610323565b34801561037a57600080fd5b5061012f54610356906001600160a01b031681565b34801561039b57600080fd5b506103a4610cd5565b6040516103239190614dfc565b3480156103bd57600080fd5b506103d16103cc366004614e2f565b610d67565b6040519015158152602001610323565b3480156103ed57600080fd5b5060005460ff16610319565b34801561040557600080fd5b50609954610319565b34801561041a57600080fd5b50610319610429366004614e5b565b610d81565b34801561043a57600080fd5b506103d1610449366004614e74565b610dbc565b34801561045a57600080fd5b5061046e610469366004614e5b565b610de2565b005b34801561047c57600080fd5b50610485610e64565b60405160ff9091168152602001610323565b3480156104a357600080fd5b5061046e6104b2366004614eb5565b610e84565b3480156104c357600080fd5b50610130546001600160a01b0316610356565b3480156104e257600080fd5b506103d16104f1366004614e2f565b610fdb565b34801561050257600080fd5b5061012e54610356906001600160a01b031681565b34801561052357600080fd5b5061046e610532366004614eb5565b61101a565b61046e610545366004614f9a565b611076565b61055d610558366004615059565b6111b9565b60408051928352602083019190915201610323565b34801561057e57600080fd5b50610319611582565b34801561059357600080fd5b5061046e6105a23660046150e0565b611647565b3480156105b357600080fd5b506103196105c2366004614e5b565b611684565b3480156105d357600080fd5b5061046e6105e236600461511d565b6116b7565b3480156105f357600080fd5b50610319610602366004614eb5565b6001600160a01b031660009081526097602052604090205490565b34801561062957600080fd5b5061046e611914565b34801561063e57600080fd5b5061046e61064d366004614e5b565b611928565b34801561065e57600080fd5b506103d1611939565b34801561067357600080fd5b506033546001600160a01b0316610356565b34801561069157600080fd5b506103a46119bf565b3480156106a657600080fd5b507f14aa58a89d3f94ea99187ab98e735eb8f742cc801507b0f8968576d3fdc3c8cc54610319565b3480156106da57600080fd5b506103d16106e9366004614e2f565b6119ce565b3480156106fa57600080fd5b506103d1610709366004614e2f565b611a83565b34801561071a57600080fd5b5061072e6107293660046151ef565b611a91565b6040516103239190615264565b34801561074757600080fd5b5061075b6107563660046152c6565b611b7d565b60405161032391906153f8565b34801561077457600080fd5b5061046e610783366004614e5b565b612062565b34801561079457600080fd5b5061012d54610356906001600160a01b031681565b3480156107b557600080fd5b506103196107c436600461540b565b6001600160a01b03918216600090815260986020908152604080832093909416825291909152205490565b3480156107fb57600080fd5b5061046e61080a366004614eb5565b612097565b34801561081b57600080fd5b5061031961082a366004615444565b6120a8565b34801561083b57600080fd5b5061046e61084a366004614e5b565b6120bb565b34801561085b57600080fd5b5061031961086a366004614e5b565b6120f9565b34801561087b57600080fd5b5061046e61088a366004614eb5565b612134565b34801561089b57600080fd5b50610319600181565b3480156108b057600080fd5b506103196108bf366004614eb5565b6121c1565b6000816040516020016108d791906155a5565b604051602081830303815290604052805190602001209050919050565b61012e546040805163312f6b8360e01b815290516000926001600160a01b0316918391839163312f6b839160048083019260209291908290030181865afa158015610943573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109679190615651565b9050600061012e60009054906101000a90046001600160a01b03166001600160a01b0316630479d6446040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e39190615651565b9050600061012e60009054906101000a90046001600160a01b03166001600160a01b031663315deeaa6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5f919061566e565b9050600061012e60009054906101000a90046001600160a01b03166001600160a01b0316636d01875d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ab7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610adb919061566e565b6040516370a0823160e01b81526001600160a01b0387811660048301529192506000918616906370a0823190602401602060405180830381865afa158015610b27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4b919061566e565b6040516370a0823160e01b81526001600160a01b0388811660048301529192506000918616906370a0823190602401602060405180830381865afa158015610b97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb919061566e565b61012e54604080517f8d6cb209000000000000000000000000000000000000000000000000000000008152815193945060009384936001600160a01b031692638d6cb20992600480820193918290030181865afa158015610c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c449190615687565b9092509050610c548482846121cc565b610c5e908b6156c1565b9950610c6a838b6156c1565b99508515610c9657610c7d8682846121cc565b610c87908b6156c1565b9950610c93858b6156d4565b99505b50505050505050505090565b60007f68433f9d83ac21ac7a279e7d087229a9129597a360563c499bb398b5664b27c15b546001600160a01b0316919050565b6060609a8054610ce4906156e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d10906156e7565b8015610d5d5780601f10610d3257610100808354040283529160200191610d5d565b820191906000526020600020905b815481529060010190602001808311610d4057829003601f168201915b5050505050905090565b600033610d758185856122be565b60019150505b92915050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c016108d7565b600033610dca8582856123fb565b610dd585858561248d565b60019150505b9392505050565b610dea612667565b612710811180610df8575080155b15610e16576040516379a67d5b60e11b815260040160405180910390fd5b6101318190557fdeb9dbe5b2059ee709cbce2d435120228838d8b25d6faba2b7a82d1765804d7a335b604080516001600160a01b03909216825260208201849052015b60405180910390a150565b60008061013054610e7f9190600160a01b900460ff1661571b565b905090565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163003610f165760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b60648201526084015b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610f4861288c565b6001600160a01b031614610fb35760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b6163746976652070726f787960a01b6064820152608401610f0d565b610fbc816128b4565b60408051600080825260208201909252610fd8918391906128bc565b50565b3360008181526098602090815260408083206001600160a01b0387168452909152812054909190610d7590829086906110159087906156c1565b6122be565b611022612a61565b61012f80546001600160a01b0319166001600160a01b038316908117909155604080519182523360208301527ff9609f48c525640f20a918156cdb6ca7d8c7e9e7e4939bb1dc8944c5ea07b13a9101610e59565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001630036111035760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b6064820152608401610f0d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661113561288c565b6001600160a01b0316146111a05760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b6163746976652070726f787960a01b6064820152608401610f0d565b6111a9826128b4565b6111b5828260016128bc565b5050565b6000806111c4611939565b156111e25760405163379917b760e21b815260040160405180910390fd5b84356111ed81612abb565b60008060006111fa6108f4565b60995461012e60009054906101000a90046001600160a01b03166001600160a01b0316634ed2b8ac6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611251573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611275919061566e565b925092509250611283612af5565b61128b612b4e565b6112d36112978a6120a8565b89898080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612bbd92505050565b6112f16112e360408b018b615734565b6112ec906157ec565b612c5c565b600061131161130360408c018c615734565b61130c906157ec565b612dc3565b9050600061131d6108f4565b905061132882612f31565b61012e54825160208401516040517f5c09967a0000000000000000000000000000000000000000000000000000000081526001600160a01b0390931692635c09967a926113799290916004016158ae565b600060405180830381600087803b15801561139357600080fd5b505af11580156113a7573d6000803e3d6000fd5b505061012e546001600160a01b03169150638a85039690506113cc60608e018e6158d3565b356113da60608f018f6158d3565b6113e89060208101906158e9565b8e80606001906113f891906158d3565b604001356040518463ffffffff1660e01b815260040161141a939291906158ff565b600060405180830381600087803b15801561143457600080fd5b505af1158015611448573d6000803e3d6000fd5b5050505061012e60009054906101000a90046001600160a01b03166001600160a01b031663a53df2e26040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561149d57600080fd5b505af11580156114b1573d6000803e3d6000fd5b50505050806114be6108f4565b6114c891906156d4565b96506114d387612fb5565b97506114df8c89613017565b7fea6d2283017564fe3077751d8472a782667962d7a0aa847e4499a1d1223f77206040518060a001604052806115123390565b6001600160a01b031681526020018e6001600160a01b031681526020018481526020018981526020018a81525060405161154c9190615928565b60405180910390a150506115606001606555565b61156b8383836130df565b611575838361324b565b5050505094509492505050565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146116225760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608401610f0d565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b61164f612667565b807fd8e383845db7ecbb6065c22cc5d1320931e4ef39a73fc10e0587d5257ff503795b805460ff191691151591909117905550565b6000610d7b826116b27f14aa58a89d3f94ea99187ab98e735eb8f742cc801507b0f8968576d3fdc3c8cc5490565b613387565b600054610100900460ff16158080156116d75750600054600160ff909116105b806116f15750303b1580156116f1575060005460ff166001145b6117545760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610f0d565b6000805460ff191660011790558015611777576000805461ff0019166101001790555b876001600160a01b0316896001600160a01b0316630479d6446040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e39190615651565b6001600160a01b03161461180a576040516379a67d5b60e11b815260040160405180910390fd5b611816898888856133a0565b61181f83613425565b611827613497565b61183085613500565b8760008061183d83613562565b915091508161184d57601261184f565b805b61013080547fffffffffffffffffffffff00000000000000000000000000000000000000000016600160a01b60ff93909316929092026001600160a01b031916919091176001600160a01b0385161790556101f46101315564e8d4a51000610132556001610135556118c08761366c565b5050508015611909576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050505050565b61191c612a61565b611926600061366c565b565b611930612667565b610fd8816136be565b61012e54604080517e1eab8300000000000000000000000000000000000000000000000000000000815290516000926001600160a01b031691621eab839160048083019260209291908290030181865afa15801561199b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7f9190615985565b6060609b8054610ce4906156e7565b3360008181526098602090815260408083206001600160a01b038716845290915281205490919083811015611a6b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610f0d565b611a7882868684036122be565b506001949350505050565b600033610d7581858561248d565b6060818067ffffffffffffffff811115611aad57611aad614ed2565b604051908082528060200260200182016040528015611ae057816020015b6060815260200190600190039081611acb5790505b50915060005b81811015611b7557611b5030868684818110611b0457611b046159a2565b9050602002810190611b1691906159b8565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061372a92505050565b838281518110611b6257611b626159a2565b6020908102919091010152600101611ae6565b505092915050565b6040805180820190915260608082526020820152611b99611939565b15611bb75760405163379917b760e21b815260040160405180910390fd5b8335611bc281612abb565b6000806000611bcf6108f4565b60995461012e60009054906101000a90046001600160a01b03166001600160a01b0316634ed2b8ac6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4a919061566e565b925092509250611c58612af5565b611c60612b4e565b611ca8611c6c896108c4565b88888080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612bbd92505050565b611cb061374f565b94506000611cbc6108f4565b61012e549091506001600160a01b031663686f957f611cde60a08c018c6159ff565b35611cec60a08d018d6159ff565b60200135611cfd60a08e018e6159ff565b60400135611d0e60a08f018f6159ff565b611d1c9060608101906158e9565b8e8060a00190611d2c91906159ff565b608001356040518663ffffffff1660e01b8152600401611d50959493929190615a15565b600060405180830381600087803b158015611d6a57600080fd5b505af1158015611d7e573d6000803e3d6000fd5b5050505060005b866020015151811015611ec457600087602001518281518110611daa57611daa6159a2565b602090810291909101015161012e546040516370a0823160e01b81526001600160a01b0391821660048201529116906370a0823190602401602060405180830381865afa158015611dff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e23919061566e565b905087600001518281518110611e3b57611e3b6159a2565b6020026020010151811115611e96578751805183908110611e5e57611e5e6159a2565b602002602001015181611e7191906156d4565b8851805184908110611e8557611e856159a2565b602002602001018181525050611ebb565b600088600001518381518110611eae57611eae6159a2565b6020026020010181815250505b50600101611d85565b50600060808a0135611ede60608c013560408d01356156c1565b611ee891906156c1565b9050336001600160a01b038c1614611f0557611f058b33836123fb565b6000611f1560408c0135836156d4565b90508015611f8357611f2f8c611f29610ca2565b836139bc565b6040805133815230602082015280820184905260608d810135908201526080808e01359082015290517f632ab32db4f924366c4cd564eb2be04e8624ebc77ccda5bf0ab709cc5aee578b9181900360a00190a15b611f918c8c604001356139c7565b611f9b8d89613afb565b611fa36108f4565b611fad90846156d4565b92507fe1431d08ed5059493cf3c41e53ba9f7270b0d68a0def64f9880220a12fdd16bb6040518060c00160405280611fe23390565b6001600160a01b031681526020018f6001600160a01b031681526020018e6001600160a01b031681526020018a81526020018581526020018481525060405161202b9190615a4c565b60405180910390a15050506120406001606555565b61204b8383836130df565b612055838361324b565b5050505095945050505050565b61206a612667565b6101328190557f4a1d82c0187fa542af202f039cadf137e625e5d39bbcfbdb6633f0d007a28ce533610e3f565b61209f612667565b610fd881613c2e565b6000816040516020016108d79190615b4f565b6120c3612667565b6101358190556040518181527f9208de066946f0bfb1d3fcdb43a3590fed3ffeb924e12f42dcada9317aa5b66690602001610e59565b6000610d7b6121066108f4565b6121119060016156c1565b61211d6000600a615d51565b60995461212a91906156c1565b8491906000613cc9565b61213c612a61565b6001600160a01b0381166121b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610f0d565b610fd88161366c565b6000610d7b82613d26565b6000808060001985870985870292508281108382030391505080600003612206578382816121fc576121fc615d60565b0492505050610ddb565b8084116122555760405162461bcd60e51b815260206004820152601560248201527f4d6174683a206d756c446976206f766572666c6f7700000000000000000000006044820152606401610f0d565b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b6001600160a01b0383166123395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610f0d565b6001600160a01b03821661239a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610f0d565b6001600160a01b0383811660008181526098602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152609860209081526040808320938616835292905220546000198114612487578181101561247a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610f0d565b61248784848484036122be565b50505050565b6001600160a01b0383166125095760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610f0d565b6001600160a01b03821661256b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610f0d565b6001600160a01b038316600090815260976020526040902054818110156125fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610f0d565b6001600160a01b0380851660008181526097602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061265a9086815260200190565b60405180910390a3612487565b61012e54604080517f194fe0ef00000000000000000000000000000000000000000000000000000000815290516001600160a01b039092169182916391d1485491839163194fe0ef91600480830192602092919082900301816000875af11580156126d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126fa919061566e565b336040516001600160e01b031960e085901b16815260048101929092526001600160a01b03166024820152604401602060405180830381865afa158015612745573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127699190615985565b1580156128535750806001600160a01b03166391d14854826001600160a01b031663a217fddf6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127e2919061566e565b336040516001600160e01b031960e085901b16815260048101929092526001600160a01b03166024820152604401602060405180830381865afa15801561282d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128519190615985565b155b15610fd8576040517f3ba76d11000000000000000000000000000000000000000000000000000000008152336004820152602401610f0d565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610cc6565b610fd8612a61565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156128f4576128ef83613dc1565b505050565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561294e575060408051601f3d908101601f1916820190925261294b9181019061566e565b60015b6129c05760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608401610f0d565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8114612a555760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f7860448201527f6961626c655555494400000000000000000000000000000000000000000000006064820152608401610f0d565b506128ef838383613e7f565b6033546001600160a01b031633146119265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f0d565b80421115610fd8576040517f559895a300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260655403612b475760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f0d565b6002606555565b610134544314612b645743610134556000610133555b60016101336000828254612b7891906156c1565b909155505061013554610133541115611926576040517fef9b428900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61012f546001600160a01b0316612c00576040517fe9b23dce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612c0b83610d81565b61012f54909150612c26906001600160a01b03168284613ea4565b6128ef576040517f8baa579f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6020810151518151518114612c84576040516379a67d5b60e11b815260040160405180910390fd5b60001960005b82811015612d495773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee6001600160a01b031684602001518281518110612cc657612cc66159a2565b60200260200101516001600160a01b031603612ce757905060018101612c8a565b612d41333086600001518481518110612d0257612d026159a2565b602002602001015187602001518581518110612d2057612d206159a2565b60200260200101516001600160a01b0316613f41909392919063ffffffff16565b600101612c8a565b5060001981148015612d5a57503415155b15612d7857604051631841b4e160e01b815260040160405180910390fd5b6000198114158015612da557508251805182908110612d9957612d996159a2565b60200260200101513414155b156128ef57604051631841b4e160e01b815260040160405180910390fd5b604080518082019091526060808252602082015260001960005b836020015151811015612e445773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee6001600160a01b031684602001518281518110612e1e57612e1e6159a2565b60200260200101516001600160a01b031603612e3c57809150612e44565b600101612ddd565b506000198114612f2a57612e7483600001518281518110612e6757612e676159a2565b6020026020010151613f99565b61012d54602084015180516001600160a01b039092169183908110612e9b57612e9b6159a2565b60200260200101906001600160a01b031690816001600160a01b031681525050600115157fdef0dc72021788040d6ab985a42aa3d5efe5a52d77485682afa2fc1525df6b7f3085600001518481518110612ef757612ef76159a2565b6020026020010151604051612f219291906001600160a01b03929092168252602082015260400190565b60405180910390a25b5090919050565b61012e548151516001600160a01b03909116906000905b8082101561248757612faa308486600001518581518110612f6b57612f6b6159a2565b602002602001015187602001518681518110612f8957612f896159a2565b60200260200101516001600160a01b0316613ffe909392919063ffffffff16565b600190910190612f48565b600080612fc06108f4565b90506000838211612fd2576000612fdc565b612fdc84836156d4565b905061300f612fed6000600a615d51565b609954612ffa91906156c1565b6130058360016156c1565b8691906000613cc9565b949350505050565b6001600160a01b03821661306d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610f0d565b806099600082825461307f91906156c1565b90915550506001600160a01b0382166000818152609760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001606555565b600080600080610131546130f16108f4565b60995461012e60009054906101000a90046001600160a01b03166001600160a01b0316634ed2b8ac6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613148573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061316c919061566e565b93509350935093506000876000148015613184575086155b9050600084158015613194575083155b9050818061319f5750805b156131af57505050505050505050565b50600090506131c185876127106121cc565b905060006131da6131d283896156c1565b6127106140d0565b905060008783106131ec5760006131f6565b6131f683896156d4565b90508184118061320557508084105b1561323f576040517fdc5954fc00000000000000000000000000000000000000000000000000000000815260048101859052602401610f0d565b50505050505050505050565b6000806132566108f4565b6099549150915082600014801561326d5750600081115b801561328e5750806132816000600a615d51565b61328b9084615d76565b14155b156132ac5760405163a79d53cf60e01b815260040160405180910390fd5b80831480156132bb5750818414155b156132d95760405163a79d53cf60e01b815260040160405180910390fd5b82156124875760006132eb84866140df565b905060008060008487106133125761330385886156d4565b61330d878a6156d4565b613326565b61331c87866156d4565b61332689886156d4565b91509150600061333683836140df565b905061334285826140d0565b61334c8683614114565b61335691906156d4565b93505050506101325481111561337f5760405163a79d53cf60e01b815260040160405180910390fd5b505050505050565b60006127106133968385615d76565b610ddb9190615d8d565b600054610100900460ff166133f95760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b613401614123565b613409614184565b61341383836141e5565b61341c81614248565b6124878461435a565b600054610100900460ff1661347e5760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b6134866143f7565b61348e614123565b610fd881614450565b600054610100900460ff166134f05760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b6134f86143f7565b6119266143f7565b600054610100900460ff166135595760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b610fd8816144cc565b60408051600481526024810182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f313ce5670000000000000000000000000000000000000000000000000000000017905290516000918291829182916001600160a01b038716916135d791615daf565b600060405180830381855afa9150503d8060008114613612576040519150601f19603f3d011682016040523d82523d6000602084013e613617565b606091505b509150915081801561362b57506020815110155b1561365f57600081806020019051810190613646919061566e565b905060ff811161365d576001969095509350505050565b505b5060009485945092505050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61271081106136e0576040516379a67d5b60e11b815260040160405180910390fd5b807f14aa58a89d3f94ea99187ab98e735eb8f742cc801507b0f8968576d3fdc3c8cc557ffd299d8f08e0fbf1ccad155dda5e11040f0a90f1b4d7f2acff52316738f4c1db33610e3f565b6060610ddb8383604051806060016040528060278152602001615efe60279139614548565b604080518082018252606080825260208083018290528351600280825292810185529293908301908036833750506040805160028082526060820183529092509060208301908036833750505060208381019190915290825261012e546040805163312f6b8360e01b815290516001600160a01b039092169263312f6b83926004808401938290030181865afa1580156137ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138119190615651565b8160200151600081518110613828576138286159a2565b6001600160a01b0392831660209182029290920181019190915261012e54604080517f0479d64400000000000000000000000000000000000000000000000000000000815290519190931692630479d6449260048083019391928290030181865afa15801561389b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138bf9190615651565b81602001516001815181106138d6576138d66159a2565b6001600160a01b03909216602092830291909101820152810151516000905b808210156139b75782602001518281518110613913576139136159a2565b602090810291909101015161012e546040516370a0823160e01b81526001600160a01b0391821660048201529116906370a0823190602401602060405180830381865afa158015613968573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061398c919061566e565b83518051849081106139a0576139a06159a2565b6020026020010181815250508160010191506138f5565b505090565b6128ef83838361248d565b6001600160a01b038216613a275760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610f0d565b6001600160a01b03821660009081526097602052604090205481811015613a9b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610f0d565b6001600160a01b03831660008181526097602090815260408083208686039055609980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60005b8160200151518110156128ef5761012e54825180516001600160a01b039092169162f714ce919084908110613b3557613b356159a2565b602002602001015184602001518481518110613b5357613b536159a2565b60200260200101516040518363ffffffff1660e01b8152600401613b8a9291909182526001600160a01b0316602082015260400190565b6020604051808303816000875af1158015613ba9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bcd9190615985565b50613c268383600001518381518110613be857613be86159a2565b602002602001015184602001518481518110613c0657613c066159a2565b60200260200101516001600160a01b03166145c09092919063ffffffff16565b600101613afe565b6001600160a01b038116613c55576040516379a67d5b60e11b815260040160405180910390fd5b7f68433f9d83ac21ac7a279e7d087229a9129597a360563c499bb398b5664b27c180546001600160a01b0319166001600160a01b0383169081179091556040805133815260208101929092527f63f8f609737c2dc01ff1d619040ccd6cb6d0e1e7b04f5271d959deefa09ef54b9101610e59565b600080613cd78686866121cc565b90506001836002811115613ced57613ced615dc1565b148015613d0a575060008480613d0557613d05615d60565b868809115b15613d1d57613d1a6001826156c1565b90505b95945050505050565b600073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b03831601613d54575047919050565b6040516370a0823160e01b81523060048201526001600160a01b038316906370a0823190602401602060405180830381865afa158015613d98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7b919061566e565b919050565b6001600160a01b0381163b613e3e5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610f0d565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b613e8883614610565b600082511180613e955750805b156128ef57612487838361372a565b600080600080613eb385614650565b925092509250866001600160a01b031660018783868660405160008152602001604052604051613eff949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa158015613f21573d6000803e3d6000fd5b505050602060405103516001600160a01b03161493505050509392505050565b8373eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b03821601613f80576040516376fe282b60e11b815260040160405180910390fd5b8115613f9257613f92858585856146ae565b5050505050565b61012d60009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015613fea57600080fd5b505af115801561337f573d6000803e3d6000fd5b8373eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b0382160161403d576040516376fe282b60e11b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03858116600483015284811660248301526000919087169063dd62ed3e90604401602060405180830381865afa15801561408f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140b3919061566e565b11156140c5576140c585846000614747565b613f92858484614863565b6000818310612f2a5781610ddb565b60008215610d7b57610ddb6ec097ce7bc90715b34b9f100000000061410c85670de0b6b3a7640000615d76565b8491906121cc565b6000818311612f2a5781610ddb565b600054610100900460ff1661417c5760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b611926614910565b600054610100900460ff166141dd5760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b611926614972565b600054610100900460ff1661423e5760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b6111b582826149cb565b600054610100900460ff16158080156142685750600054600160ff909116105b806142825750303b158015614282575060005460ff166001145b6142e55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610f0d565b6000805460ff191660011790558015614308576000805461ff0019166101001790555b61431182614a3d565b80156111b5576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15050565b600054610100900460ff166143b35760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b61012e80546001600160a01b0319166001600160a01b03831617905560007fd8e383845db7ecbb6065c22cc5d1320931e4ef39a73fc10e0587d5257ff50379611672565b600054610100900460ff166119265760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b600054610100900460ff166144a95760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b61012f80546001600160a01b0319166001600160a01b0392909216919091179055565b600054610100900460ff166145255760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b61012d80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080856001600160a01b0316856040516145659190615daf565b600060405180830381855af49150503d80600081146145a0576040519150601f19603f3d011682016040523d82523d6000602084013e6145a5565b606091505b50915091506145b686838387614b06565b9695505050505050565b8273eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b038216016145ff576040516376fe282b60e11b815260040160405180910390fd5b811561248757612487848484614b7f565b61461981613dc1565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60008060008351604114614690576040517f4be6321b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505060208101516040820151606090920151909260009190911a90565b6040516001600160a01b03808516602483015283166044820152606481018290526124879085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152614bc8565b8015806147c15750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa15801561479b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147bf919061566e565b155b6148335760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610f0d565b6040516001600160a01b0383166024820152604481018290526128ef90849063095ea7b360e01b906064016146fb565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301526000919085169063dd62ed3e90604401602060405180830381865afa1580156148b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148d7919061566e565b90506124878463095ea7b360e01b856148f086866156c1565b6040516001600160a01b03909216602483015260448201526064016146fb565b600054610100900460ff166149695760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b6119263361366c565b600054610100900460ff166130d85760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b600054610100900460ff16614a245760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b609a614a308382615e1d565b50609b6128ef8282615e1d565b600054610100900460ff1615808015614a5d5750600054600160ff909116105b80614a775750303b158015614a77575060005460ff166001145b614ada5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610f0d565b6000805460ff191660011790558015614afd576000805461ff0019166101001790555b61431182613c2e565b60608315614b75578251600003614b6e576001600160a01b0385163b614b6e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610f0d565b508161300f565b61300f8383614cb0565b6040516001600160a01b0383166024820152604481018290526128ef9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016146fb565b6000614c1d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316614cda9092919063ffffffff16565b9050805160001480614c3e575080806020019051810190614c3e9190615985565b6128ef5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610f0d565b815115614cc05781518083602001fd5b8060405162461bcd60e51b8152600401610f0d9190614dfc565b606061300f848460008585600080866001600160a01b03168587604051614d019190615daf565b60006040518083038185875af1925050503d8060008114614d3e576040519150601f19603f3d011682016040523d82523d6000602084013e614d43565b606091505b5091509150614d5487838387614b06565b979650505050505050565b600060c08284031215614d7157600080fd5b50919050565b600060208284031215614d8957600080fd5b813567ffffffffffffffff811115614da057600080fd5b61300f84828501614d5f565b60005b83811015614dc7578181015183820152602001614daf565b50506000910152565b60008151808452614de8816020860160208601614dac565b601f01601f19169290920160200192915050565b602081526000610ddb6020830184614dd0565b6001600160a01b0381168114610fd857600080fd5b8035613dbc81614e0f565b60008060408385031215614e4257600080fd5b8235614e4d81614e0f565b946020939093013593505050565b600060208284031215614e6d57600080fd5b5035919050565b600080600060608486031215614e8957600080fd5b8335614e9481614e0f565b92506020840135614ea481614e0f565b929592945050506040919091013590565b600060208284031215614ec757600080fd5b8135610ddb81614e0f565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff81118282101715614f0b57614f0b614ed2565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715614f3a57614f3a614ed2565b604052919050565b600067ffffffffffffffff831115614f5c57614f5c614ed2565b614f6f601f8401601f1916602001614f11565b9050828152838383011115614f8357600080fd5b828260208301376000602084830101529392505050565b60008060408385031215614fad57600080fd5b8235614fb881614e0f565b9150602083013567ffffffffffffffff811115614fd457600080fd5b8301601f81018513614fe557600080fd5b614ff485823560208401614f42565b9150509250929050565b600060808284031215614d7157600080fd5b60008083601f84011261502257600080fd5b50813567ffffffffffffffff81111561503a57600080fd5b60208301915083602082850101111561505257600080fd5b9250929050565b6000806000806060858703121561506f57600080fd5b843561507a81614e0f565b9350602085013567ffffffffffffffff8082111561509757600080fd5b6150a388838901614ffe565b945060408701359150808211156150b957600080fd5b506150c687828801615010565b95989497509550505050565b8015158114610fd857600080fd5b6000602082840312156150f257600080fd5b8135610ddb816150d2565b600082601f83011261510e57600080fd5b610ddb83833560208501614f42565b600080600080600080600080610100898b03121561513a57600080fd5b883561514581614e0f565b9750602089013561515581614e0f565b9650604089013567ffffffffffffffff8082111561517257600080fd5b61517e8c838d016150fd565b975060608b013591508082111561519457600080fd5b506151a18b828c016150fd565b95505060808901356151b281614e0f565b935060a08901356151c281614e0f565b925060c08901356151d281614e0f565b91506151e060e08a01614e24565b90509295985092959890939650565b6000806020838503121561520257600080fd5b823567ffffffffffffffff8082111561521a57600080fd5b818501915085601f83011261522e57600080fd5b81358181111561523d57600080fd5b8660208260051b850101111561525257600080fd5b60209290920196919550909350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156152b957603f198886030184526152a7858351614dd0565b9450928501929085019060010161528b565b5092979650505050505050565b6000806000806000608086880312156152de57600080fd5b85356152e981614e0f565b945060208601356152f981614e0f565b9350604086013567ffffffffffffffff8082111561531657600080fd5b61532289838a01614d5f565b9450606088013591508082111561533857600080fd5b5061534588828901615010565b969995985093965092949392505050565b600081518084526020808501945080840160005b838110156153865781518752958201959082019060010161536a565b509495945050505050565b600081518084526020808501945080840160005b838110156153865781516001600160a01b0316875295820195908201906001016153a5565b60008151604084526153df6040850182615356565b905060208301518482036020860152613d1d8282615391565b602081526000610ddb60208301846153ca565b6000806040838503121561541e57600080fd5b823561542981614e0f565b9150602083013561543981614e0f565b809150509250929050565b60006020828403121561545657600080fd5b813567ffffffffffffffff81111561546d57600080fd5b61300f84828501614ffe565b6000823560de1983360301811261548f57600080fd5b90910192915050565b6000808335601e198436030181126154af57600080fd5b830160208101925035905067ffffffffffffffff8111156154cf57600080fd5b80360382131561505257600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6000813561551481614e0f565b6001600160a01b038082168552602084013560208601526040840135915061553b82614e0f565b166040840152606082810135908401526080820135615559816150d2565b1515608084015261556d60a0830183615498565b60e060a086015261558260e0860182846154de565b91505061559260c0840184615498565b85830360c08701526145b68382846154de565b6020815281356020820152602082013560408201526040820135606082015260608201356080820152608082013560a0820152600060a0830135609e198436030181126155f157600080fd5b60c0838101528301803560e0840152602081013561010084015260408101356101208401526156236060820182615479565b60a0610140850152615639610180850182615507565b90506080820135610160850152809250505092915050565b60006020828403121561566357600080fd5b8151610ddb81614e0f565b60006020828403121561568057600080fd5b5051919050565b6000806040838503121561569a57600080fd5b505080516020909101519092909150565b634e487b7160e01b600052601160045260246000fd5b80820180821115610d7b57610d7b6156ab565b81810381811115610d7b57610d7b6156ab565b600181811c908216806156fb57607f821691505b602082108103614d7157634e487b7160e01b600052602260045260246000fd5b60ff8181168382160190811115610d7b57610d7b6156ab565b60008235603e1983360301811261574a57600080fd5b9190910192915050565b600067ffffffffffffffff82111561576e5761576e614ed2565b5060051b60200190565b600082601f83011261578957600080fd5b8135602061579e61579983615754565b614f11565b82815260059290921b840181019181810190868411156157bd57600080fd5b8286015b848110156157e15780356157d481614e0f565b83529183019183016157c1565b509695505050505050565b6000604082360312156157fe57600080fd5b615806614ee8565b823567ffffffffffffffff8082111561581e57600080fd5b9084019036601f83011261583157600080fd5b8135602061584161579983615754565b82815260059290921b8401810191818101903684111561586057600080fd5b948201945b8386101561587e57853582529482019490820190615865565b8652508681013593508284111561589457600080fd5b6158a036858901615778565b908501525091949350505050565b6040815260006158c16040830185615356565b8281036020840152613d1d8185615391565b60008235605e1983360301811261574a57600080fd5b6000823560de1983360301811261574a57600080fd5b8381526060602082015260006159186060830185615507565b9050826040830152949350505050565b6020815260006001600160a01b0380845116602084015280602085015116604084015250604083015160a0606084015261596560c08401826153ca565b905060608401516080840152608084015160a08401528091505092915050565b60006020828403121561599757600080fd5b8151610ddb816150d2565b634e487b7160e01b600052603260045260246000fd5b6000808335601e198436030181126159cf57600080fd5b83018035915067ffffffffffffffff8211156159ea57600080fd5b60200191503681900382131561505257600080fd5b60008235609e1983360301811261574a57600080fd5b85815284602082015283604082015260a060608201526000615a3a60a0830185615507565b90508260808301529695505050505050565b6020815260006001600160a01b0380845116602084015280602085015116604084015280604085015116606084015250606083015160c06080840152615a9560e08401826153ca565b9050608084015160a084015260a084015160c08401528091505092915050565b6000808335601e19843603018112615acc57600080fd5b830160208101925035905067ffffffffffffffff811115615aec57600080fd5b8060051b360382131561505257600080fd5b60008235605e1983360301811261548f57600080fd5b803582526000615b276020830183615479565b60606020850152615b3b6060850182615507565b604093840135949093019390935250919050565b600060208083528335818401528084013560408401526040840135603e19853603018112615b7c57600080fd5b608060608501528401615b8f8180615ab5565b604060a08701528060e08701526101007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821115615bcc57600080fd5b8160051b915081838289013790860191508101615beb83850184615ab5565b87840360600160c089015291829052909250906000908290610120015b84831015615c3b5783359150615c1d82614e0f565b6001600160a01b038216815292850192600192909201918501615c08565b615c4860608a018a615afe565b888203601f190160808a01529550615c608187615b14565b9998505050505050505050565b600181815b80851115615ca8578160001904821115615c8e57615c8e6156ab565b80851615615c9b57918102915b93841c9390800290615c72565b509250929050565b600082615cbf57506001610d7b565b81615ccc57506000610d7b565b8160018114615ce25760028114615cec57615d08565b6001915050610d7b565b60ff841115615cfd57615cfd6156ab565b50506001821b610d7b565b5060208310610133831016604e8410600b8410161715615d2b575081810a610d7b565b615d358383615c6d565b8060001904821115615d4957615d496156ab565b029392505050565b6000610ddb60ff841683615cb0565b634e487b7160e01b600052601260045260246000fd5b8082028115828204841417610d7b57610d7b6156ab565b600082615daa57634e487b7160e01b600052601260045260246000fd5b500490565b6000825161574a818460208701614dac565b634e487b7160e01b600052602160045260246000fd5b601f8211156128ef57600081815260208120601f850160051c81016020861015615dfe5750805b601f850160051c820191505b8181101561337f57828155600101615e0a565b815167ffffffffffffffff811115615e3757615e37614ed2565b615e4b81615e4584546156e7565b84615dd7565b602080601f831160018114615e805760008415615e685750858301515b600019600386901b1c1916600185901b17855561337f565b600085815260208120601f198616915b82811015615eaf57888601518255948401946001909101908401615e90565b5085821015615ecd5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fe496e697469616c697a61626c653a20636f6e7472616374206973206e6f742069416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a164736f6c6343000812000a
Deployed Bytecode
0x6080604052600436106102eb5760003560e01c80637018b08e11610184578063be666a08116100d6578063df881af61161008a578063f2fde38b11610064578063f2fde38b1461086f578063f6b45cfd1461088f578063f8b2cb4f146108a4576102f2565b8063df881af61461080f578063e5ea2dbd1461082f578063ef8b30f71461084f576102f2565b8063c64fca11116100bb578063c64fca1114610788578063dd62ed3e146107a9578063ddb00dfc146107ef576102f2565b8063be666a081461073b578063c29ee25e14610768576102f2565b80638da5cb5b11610138578063a457c2d711610112578063a457c2d7146106ce578063a9059cbb146106ee578063ac9650d81461070e576102f2565b80638da5cb5b1461066757806395d89b41146106855780639cd6f0091461069a576102f2565b8063715018a611610169578063715018a61461061d5780637dbc1df0146106325780638b0a15d714610652576102f2565b80637018b08e146105c757806370a08231146105e7576102f2565b8063313ce5671161023d5780634966528b116101f157806352d1902d116101cb57806352d1902d14610572578063676f774c146105875780636a63cee7146105a7576102f2565b80634966528b146105175780634f1ef28614610537578063500c22bc1461054a576102f2565b806338d52e0f1161022257806338d52e0f146104b757806339509351146104d6578063411557d1146104f6576102f2565b8063313ce567146104705780633659cfe614610497576102f2565b8063095ea7b31161029f5780631a532377116102795780631a5323771461040e57806323b872dd1461042e57806324906f861461044e576102f2565b8063095ea7b3146103b15780630d8e6e2c146103e157806318160ddd146103f9576102f2565b8063025fb662116102d0578063025fb6621461034157806305ca86661461036e57806306fdde031461038f576102f2565b806301038ad1146102f957806301e1d1141461032c576102f2565b366102f257005b6060516080f35b34801561030557600080fd5b50610319610314366004614d77565b6108c4565b6040519081526020015b60405180910390f35b34801561033857600080fd5b506103196108f4565b34801561034d57600080fd5b50610356610ca2565b6040516001600160a01b039091168152602001610323565b34801561037a57600080fd5b5061012f54610356906001600160a01b031681565b34801561039b57600080fd5b506103a4610cd5565b6040516103239190614dfc565b3480156103bd57600080fd5b506103d16103cc366004614e2f565b610d67565b6040519015158152602001610323565b3480156103ed57600080fd5b5060005460ff16610319565b34801561040557600080fd5b50609954610319565b34801561041a57600080fd5b50610319610429366004614e5b565b610d81565b34801561043a57600080fd5b506103d1610449366004614e74565b610dbc565b34801561045a57600080fd5b5061046e610469366004614e5b565b610de2565b005b34801561047c57600080fd5b50610485610e64565b60405160ff9091168152602001610323565b3480156104a357600080fd5b5061046e6104b2366004614eb5565b610e84565b3480156104c357600080fd5b50610130546001600160a01b0316610356565b3480156104e257600080fd5b506103d16104f1366004614e2f565b610fdb565b34801561050257600080fd5b5061012e54610356906001600160a01b031681565b34801561052357600080fd5b5061046e610532366004614eb5565b61101a565b61046e610545366004614f9a565b611076565b61055d610558366004615059565b6111b9565b60408051928352602083019190915201610323565b34801561057e57600080fd5b50610319611582565b34801561059357600080fd5b5061046e6105a23660046150e0565b611647565b3480156105b357600080fd5b506103196105c2366004614e5b565b611684565b3480156105d357600080fd5b5061046e6105e236600461511d565b6116b7565b3480156105f357600080fd5b50610319610602366004614eb5565b6001600160a01b031660009081526097602052604090205490565b34801561062957600080fd5b5061046e611914565b34801561063e57600080fd5b5061046e61064d366004614e5b565b611928565b34801561065e57600080fd5b506103d1611939565b34801561067357600080fd5b506033546001600160a01b0316610356565b34801561069157600080fd5b506103a46119bf565b3480156106a657600080fd5b507f14aa58a89d3f94ea99187ab98e735eb8f742cc801507b0f8968576d3fdc3c8cc54610319565b3480156106da57600080fd5b506103d16106e9366004614e2f565b6119ce565b3480156106fa57600080fd5b506103d1610709366004614e2f565b611a83565b34801561071a57600080fd5b5061072e6107293660046151ef565b611a91565b6040516103239190615264565b34801561074757600080fd5b5061075b6107563660046152c6565b611b7d565b60405161032391906153f8565b34801561077457600080fd5b5061046e610783366004614e5b565b612062565b34801561079457600080fd5b5061012d54610356906001600160a01b031681565b3480156107b557600080fd5b506103196107c436600461540b565b6001600160a01b03918216600090815260986020908152604080832093909416825291909152205490565b3480156107fb57600080fd5b5061046e61080a366004614eb5565b612097565b34801561081b57600080fd5b5061031961082a366004615444565b6120a8565b34801561083b57600080fd5b5061046e61084a366004614e5b565b6120bb565b34801561085b57600080fd5b5061031961086a366004614e5b565b6120f9565b34801561087b57600080fd5b5061046e61088a366004614eb5565b612134565b34801561089b57600080fd5b50610319600181565b3480156108b057600080fd5b506103196108bf366004614eb5565b6121c1565b6000816040516020016108d791906155a5565b604051602081830303815290604052805190602001209050919050565b61012e546040805163312f6b8360e01b815290516000926001600160a01b0316918391839163312f6b839160048083019260209291908290030181865afa158015610943573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109679190615651565b9050600061012e60009054906101000a90046001600160a01b03166001600160a01b0316630479d6446040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e39190615651565b9050600061012e60009054906101000a90046001600160a01b03166001600160a01b031663315deeaa6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5f919061566e565b9050600061012e60009054906101000a90046001600160a01b03166001600160a01b0316636d01875d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ab7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610adb919061566e565b6040516370a0823160e01b81526001600160a01b0387811660048301529192506000918616906370a0823190602401602060405180830381865afa158015610b27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4b919061566e565b6040516370a0823160e01b81526001600160a01b0388811660048301529192506000918616906370a0823190602401602060405180830381865afa158015610b97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb919061566e565b61012e54604080517f8d6cb209000000000000000000000000000000000000000000000000000000008152815193945060009384936001600160a01b031692638d6cb20992600480820193918290030181865afa158015610c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c449190615687565b9092509050610c548482846121cc565b610c5e908b6156c1565b9950610c6a838b6156c1565b99508515610c9657610c7d8682846121cc565b610c87908b6156c1565b9950610c93858b6156d4565b99505b50505050505050505090565b60007f68433f9d83ac21ac7a279e7d087229a9129597a360563c499bb398b5664b27c15b546001600160a01b0316919050565b6060609a8054610ce4906156e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d10906156e7565b8015610d5d5780601f10610d3257610100808354040283529160200191610d5d565b820191906000526020600020905b815481529060010190602001808311610d4057829003601f168201915b5050505050905090565b600033610d758185856122be565b60019150505b92915050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c016108d7565b600033610dca8582856123fb565b610dd585858561248d565b60019150505b9392505050565b610dea612667565b612710811180610df8575080155b15610e16576040516379a67d5b60e11b815260040160405180910390fd5b6101318190557fdeb9dbe5b2059ee709cbce2d435120228838d8b25d6faba2b7a82d1765804d7a335b604080516001600160a01b03909216825260208201849052015b60405180910390a150565b60008061013054610e7f9190600160a01b900460ff1661571b565b905090565b6001600160a01b037f00000000000000000000000063b98b3dcecb726270cf47f60121cf64db68bd3b163003610f165760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b60648201526084015b60405180910390fd5b7f00000000000000000000000063b98b3dcecb726270cf47f60121cf64db68bd3b6001600160a01b0316610f4861288c565b6001600160a01b031614610fb35760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b6163746976652070726f787960a01b6064820152608401610f0d565b610fbc816128b4565b60408051600080825260208201909252610fd8918391906128bc565b50565b3360008181526098602090815260408083206001600160a01b0387168452909152812054909190610d7590829086906110159087906156c1565b6122be565b611022612a61565b61012f80546001600160a01b0319166001600160a01b038316908117909155604080519182523360208301527ff9609f48c525640f20a918156cdb6ca7d8c7e9e7e4939bb1dc8944c5ea07b13a9101610e59565b6001600160a01b037f00000000000000000000000063b98b3dcecb726270cf47f60121cf64db68bd3b1630036111035760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b6064820152608401610f0d565b7f00000000000000000000000063b98b3dcecb726270cf47f60121cf64db68bd3b6001600160a01b031661113561288c565b6001600160a01b0316146111a05760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b6163746976652070726f787960a01b6064820152608401610f0d565b6111a9826128b4565b6111b5828260016128bc565b5050565b6000806111c4611939565b156111e25760405163379917b760e21b815260040160405180910390fd5b84356111ed81612abb565b60008060006111fa6108f4565b60995461012e60009054906101000a90046001600160a01b03166001600160a01b0316634ed2b8ac6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611251573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611275919061566e565b925092509250611283612af5565b61128b612b4e565b6112d36112978a6120a8565b89898080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612bbd92505050565b6112f16112e360408b018b615734565b6112ec906157ec565b612c5c565b600061131161130360408c018c615734565b61130c906157ec565b612dc3565b9050600061131d6108f4565b905061132882612f31565b61012e54825160208401516040517f5c09967a0000000000000000000000000000000000000000000000000000000081526001600160a01b0390931692635c09967a926113799290916004016158ae565b600060405180830381600087803b15801561139357600080fd5b505af11580156113a7573d6000803e3d6000fd5b505061012e546001600160a01b03169150638a85039690506113cc60608e018e6158d3565b356113da60608f018f6158d3565b6113e89060208101906158e9565b8e80606001906113f891906158d3565b604001356040518463ffffffff1660e01b815260040161141a939291906158ff565b600060405180830381600087803b15801561143457600080fd5b505af1158015611448573d6000803e3d6000fd5b5050505061012e60009054906101000a90046001600160a01b03166001600160a01b031663a53df2e26040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561149d57600080fd5b505af11580156114b1573d6000803e3d6000fd5b50505050806114be6108f4565b6114c891906156d4565b96506114d387612fb5565b97506114df8c89613017565b7fea6d2283017564fe3077751d8472a782667962d7a0aa847e4499a1d1223f77206040518060a001604052806115123390565b6001600160a01b031681526020018e6001600160a01b031681526020018481526020018981526020018a81525060405161154c9190615928565b60405180910390a150506115606001606555565b61156b8383836130df565b611575838361324b565b5050505094509492505050565b6000306001600160a01b037f00000000000000000000000063b98b3dcecb726270cf47f60121cf64db68bd3b16146116225760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608401610f0d565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b61164f612667565b807fd8e383845db7ecbb6065c22cc5d1320931e4ef39a73fc10e0587d5257ff503795b805460ff191691151591909117905550565b6000610d7b826116b27f14aa58a89d3f94ea99187ab98e735eb8f742cc801507b0f8968576d3fdc3c8cc5490565b613387565b600054610100900460ff16158080156116d75750600054600160ff909116105b806116f15750303b1580156116f1575060005460ff166001145b6117545760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610f0d565b6000805460ff191660011790558015611777576000805461ff0019166101001790555b876001600160a01b0316896001600160a01b0316630479d6446040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e39190615651565b6001600160a01b03161461180a576040516379a67d5b60e11b815260040160405180910390fd5b611816898888856133a0565b61181f83613425565b611827613497565b61183085613500565b8760008061183d83613562565b915091508161184d57601261184f565b805b61013080547fffffffffffffffffffffff00000000000000000000000000000000000000000016600160a01b60ff93909316929092026001600160a01b031916919091176001600160a01b0385161790556101f46101315564e8d4a51000610132556001610135556118c08761366c565b5050508015611909576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050505050565b61191c612a61565b611926600061366c565b565b611930612667565b610fd8816136be565b61012e54604080517e1eab8300000000000000000000000000000000000000000000000000000000815290516000926001600160a01b031691621eab839160048083019260209291908290030181865afa15801561199b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7f9190615985565b6060609b8054610ce4906156e7565b3360008181526098602090815260408083206001600160a01b038716845290915281205490919083811015611a6b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610f0d565b611a7882868684036122be565b506001949350505050565b600033610d7581858561248d565b6060818067ffffffffffffffff811115611aad57611aad614ed2565b604051908082528060200260200182016040528015611ae057816020015b6060815260200190600190039081611acb5790505b50915060005b81811015611b7557611b5030868684818110611b0457611b046159a2565b9050602002810190611b1691906159b8565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061372a92505050565b838281518110611b6257611b626159a2565b6020908102919091010152600101611ae6565b505092915050565b6040805180820190915260608082526020820152611b99611939565b15611bb75760405163379917b760e21b815260040160405180910390fd5b8335611bc281612abb565b6000806000611bcf6108f4565b60995461012e60009054906101000a90046001600160a01b03166001600160a01b0316634ed2b8ac6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4a919061566e565b925092509250611c58612af5565b611c60612b4e565b611ca8611c6c896108c4565b88888080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612bbd92505050565b611cb061374f565b94506000611cbc6108f4565b61012e549091506001600160a01b031663686f957f611cde60a08c018c6159ff565b35611cec60a08d018d6159ff565b60200135611cfd60a08e018e6159ff565b60400135611d0e60a08f018f6159ff565b611d1c9060608101906158e9565b8e8060a00190611d2c91906159ff565b608001356040518663ffffffff1660e01b8152600401611d50959493929190615a15565b600060405180830381600087803b158015611d6a57600080fd5b505af1158015611d7e573d6000803e3d6000fd5b5050505060005b866020015151811015611ec457600087602001518281518110611daa57611daa6159a2565b602090810291909101015161012e546040516370a0823160e01b81526001600160a01b0391821660048201529116906370a0823190602401602060405180830381865afa158015611dff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e23919061566e565b905087600001518281518110611e3b57611e3b6159a2565b6020026020010151811115611e96578751805183908110611e5e57611e5e6159a2565b602002602001015181611e7191906156d4565b8851805184908110611e8557611e856159a2565b602002602001018181525050611ebb565b600088600001518381518110611eae57611eae6159a2565b6020026020010181815250505b50600101611d85565b50600060808a0135611ede60608c013560408d01356156c1565b611ee891906156c1565b9050336001600160a01b038c1614611f0557611f058b33836123fb565b6000611f1560408c0135836156d4565b90508015611f8357611f2f8c611f29610ca2565b836139bc565b6040805133815230602082015280820184905260608d810135908201526080808e01359082015290517f632ab32db4f924366c4cd564eb2be04e8624ebc77ccda5bf0ab709cc5aee578b9181900360a00190a15b611f918c8c604001356139c7565b611f9b8d89613afb565b611fa36108f4565b611fad90846156d4565b92507fe1431d08ed5059493cf3c41e53ba9f7270b0d68a0def64f9880220a12fdd16bb6040518060c00160405280611fe23390565b6001600160a01b031681526020018f6001600160a01b031681526020018e6001600160a01b031681526020018a81526020018581526020018481525060405161202b9190615a4c565b60405180910390a15050506120406001606555565b61204b8383836130df565b612055838361324b565b5050505095945050505050565b61206a612667565b6101328190557f4a1d82c0187fa542af202f039cadf137e625e5d39bbcfbdb6633f0d007a28ce533610e3f565b61209f612667565b610fd881613c2e565b6000816040516020016108d79190615b4f565b6120c3612667565b6101358190556040518181527f9208de066946f0bfb1d3fcdb43a3590fed3ffeb924e12f42dcada9317aa5b66690602001610e59565b6000610d7b6121066108f4565b6121119060016156c1565b61211d6000600a615d51565b60995461212a91906156c1565b8491906000613cc9565b61213c612a61565b6001600160a01b0381166121b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610f0d565b610fd88161366c565b6000610d7b82613d26565b6000808060001985870985870292508281108382030391505080600003612206578382816121fc576121fc615d60565b0492505050610ddb565b8084116122555760405162461bcd60e51b815260206004820152601560248201527f4d6174683a206d756c446976206f766572666c6f7700000000000000000000006044820152606401610f0d565b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b6001600160a01b0383166123395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610f0d565b6001600160a01b03821661239a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610f0d565b6001600160a01b0383811660008181526098602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152609860209081526040808320938616835292905220546000198114612487578181101561247a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610f0d565b61248784848484036122be565b50505050565b6001600160a01b0383166125095760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610f0d565b6001600160a01b03821661256b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610f0d565b6001600160a01b038316600090815260976020526040902054818110156125fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610f0d565b6001600160a01b0380851660008181526097602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061265a9086815260200190565b60405180910390a3612487565b61012e54604080517f194fe0ef00000000000000000000000000000000000000000000000000000000815290516001600160a01b039092169182916391d1485491839163194fe0ef91600480830192602092919082900301816000875af11580156126d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126fa919061566e565b336040516001600160e01b031960e085901b16815260048101929092526001600160a01b03166024820152604401602060405180830381865afa158015612745573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127699190615985565b1580156128535750806001600160a01b03166391d14854826001600160a01b031663a217fddf6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127e2919061566e565b336040516001600160e01b031960e085901b16815260048101929092526001600160a01b03166024820152604401602060405180830381865afa15801561282d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128519190615985565b155b15610fd8576040517f3ba76d11000000000000000000000000000000000000000000000000000000008152336004820152602401610f0d565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610cc6565b610fd8612a61565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156128f4576128ef83613dc1565b505050565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561294e575060408051601f3d908101601f1916820190925261294b9181019061566e565b60015b6129c05760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608401610f0d565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8114612a555760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f7860448201527f6961626c655555494400000000000000000000000000000000000000000000006064820152608401610f0d565b506128ef838383613e7f565b6033546001600160a01b031633146119265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f0d565b80421115610fd8576040517f559895a300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260655403612b475760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f0d565b6002606555565b610134544314612b645743610134556000610133555b60016101336000828254612b7891906156c1565b909155505061013554610133541115611926576040517fef9b428900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61012f546001600160a01b0316612c00576040517fe9b23dce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612c0b83610d81565b61012f54909150612c26906001600160a01b03168284613ea4565b6128ef576040517f8baa579f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6020810151518151518114612c84576040516379a67d5b60e11b815260040160405180910390fd5b60001960005b82811015612d495773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee6001600160a01b031684602001518281518110612cc657612cc66159a2565b60200260200101516001600160a01b031603612ce757905060018101612c8a565b612d41333086600001518481518110612d0257612d026159a2565b602002602001015187602001518581518110612d2057612d206159a2565b60200260200101516001600160a01b0316613f41909392919063ffffffff16565b600101612c8a565b5060001981148015612d5a57503415155b15612d7857604051631841b4e160e01b815260040160405180910390fd5b6000198114158015612da557508251805182908110612d9957612d996159a2565b60200260200101513414155b156128ef57604051631841b4e160e01b815260040160405180910390fd5b604080518082019091526060808252602082015260001960005b836020015151811015612e445773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee6001600160a01b031684602001518281518110612e1e57612e1e6159a2565b60200260200101516001600160a01b031603612e3c57809150612e44565b600101612ddd565b506000198114612f2a57612e7483600001518281518110612e6757612e676159a2565b6020026020010151613f99565b61012d54602084015180516001600160a01b039092169183908110612e9b57612e9b6159a2565b60200260200101906001600160a01b031690816001600160a01b031681525050600115157fdef0dc72021788040d6ab985a42aa3d5efe5a52d77485682afa2fc1525df6b7f3085600001518481518110612ef757612ef76159a2565b6020026020010151604051612f219291906001600160a01b03929092168252602082015260400190565b60405180910390a25b5090919050565b61012e548151516001600160a01b03909116906000905b8082101561248757612faa308486600001518581518110612f6b57612f6b6159a2565b602002602001015187602001518681518110612f8957612f896159a2565b60200260200101516001600160a01b0316613ffe909392919063ffffffff16565b600190910190612f48565b600080612fc06108f4565b90506000838211612fd2576000612fdc565b612fdc84836156d4565b905061300f612fed6000600a615d51565b609954612ffa91906156c1565b6130058360016156c1565b8691906000613cc9565b949350505050565b6001600160a01b03821661306d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610f0d565b806099600082825461307f91906156c1565b90915550506001600160a01b0382166000818152609760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001606555565b600080600080610131546130f16108f4565b60995461012e60009054906101000a90046001600160a01b03166001600160a01b0316634ed2b8ac6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613148573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061316c919061566e565b93509350935093506000876000148015613184575086155b9050600084158015613194575083155b9050818061319f5750805b156131af57505050505050505050565b50600090506131c185876127106121cc565b905060006131da6131d283896156c1565b6127106140d0565b905060008783106131ec5760006131f6565b6131f683896156d4565b90508184118061320557508084105b1561323f576040517fdc5954fc00000000000000000000000000000000000000000000000000000000815260048101859052602401610f0d565b50505050505050505050565b6000806132566108f4565b6099549150915082600014801561326d5750600081115b801561328e5750806132816000600a615d51565b61328b9084615d76565b14155b156132ac5760405163a79d53cf60e01b815260040160405180910390fd5b80831480156132bb5750818414155b156132d95760405163a79d53cf60e01b815260040160405180910390fd5b82156124875760006132eb84866140df565b905060008060008487106133125761330385886156d4565b61330d878a6156d4565b613326565b61331c87866156d4565b61332689886156d4565b91509150600061333683836140df565b905061334285826140d0565b61334c8683614114565b61335691906156d4565b93505050506101325481111561337f5760405163a79d53cf60e01b815260040160405180910390fd5b505050505050565b60006127106133968385615d76565b610ddb9190615d8d565b600054610100900460ff166133f95760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b613401614123565b613409614184565b61341383836141e5565b61341c81614248565b6124878461435a565b600054610100900460ff1661347e5760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b6134866143f7565b61348e614123565b610fd881614450565b600054610100900460ff166134f05760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b6134f86143f7565b6119266143f7565b600054610100900460ff166135595760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b610fd8816144cc565b60408051600481526024810182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f313ce5670000000000000000000000000000000000000000000000000000000017905290516000918291829182916001600160a01b038716916135d791615daf565b600060405180830381855afa9150503d8060008114613612576040519150601f19603f3d011682016040523d82523d6000602084013e613617565b606091505b509150915081801561362b57506020815110155b1561365f57600081806020019051810190613646919061566e565b905060ff811161365d576001969095509350505050565b505b5060009485945092505050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61271081106136e0576040516379a67d5b60e11b815260040160405180910390fd5b807f14aa58a89d3f94ea99187ab98e735eb8f742cc801507b0f8968576d3fdc3c8cc557ffd299d8f08e0fbf1ccad155dda5e11040f0a90f1b4d7f2acff52316738f4c1db33610e3f565b6060610ddb8383604051806060016040528060278152602001615efe60279139614548565b604080518082018252606080825260208083018290528351600280825292810185529293908301908036833750506040805160028082526060820183529092509060208301908036833750505060208381019190915290825261012e546040805163312f6b8360e01b815290516001600160a01b039092169263312f6b83926004808401938290030181865afa1580156137ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138119190615651565b8160200151600081518110613828576138286159a2565b6001600160a01b0392831660209182029290920181019190915261012e54604080517f0479d64400000000000000000000000000000000000000000000000000000000815290519190931692630479d6449260048083019391928290030181865afa15801561389b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138bf9190615651565b81602001516001815181106138d6576138d66159a2565b6001600160a01b03909216602092830291909101820152810151516000905b808210156139b75782602001518281518110613913576139136159a2565b602090810291909101015161012e546040516370a0823160e01b81526001600160a01b0391821660048201529116906370a0823190602401602060405180830381865afa158015613968573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061398c919061566e565b83518051849081106139a0576139a06159a2565b6020026020010181815250508160010191506138f5565b505090565b6128ef83838361248d565b6001600160a01b038216613a275760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610f0d565b6001600160a01b03821660009081526097602052604090205481811015613a9b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610f0d565b6001600160a01b03831660008181526097602090815260408083208686039055609980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60005b8160200151518110156128ef5761012e54825180516001600160a01b039092169162f714ce919084908110613b3557613b356159a2565b602002602001015184602001518481518110613b5357613b536159a2565b60200260200101516040518363ffffffff1660e01b8152600401613b8a9291909182526001600160a01b0316602082015260400190565b6020604051808303816000875af1158015613ba9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bcd9190615985565b50613c268383600001518381518110613be857613be86159a2565b602002602001015184602001518481518110613c0657613c066159a2565b60200260200101516001600160a01b03166145c09092919063ffffffff16565b600101613afe565b6001600160a01b038116613c55576040516379a67d5b60e11b815260040160405180910390fd5b7f68433f9d83ac21ac7a279e7d087229a9129597a360563c499bb398b5664b27c180546001600160a01b0319166001600160a01b0383169081179091556040805133815260208101929092527f63f8f609737c2dc01ff1d619040ccd6cb6d0e1e7b04f5271d959deefa09ef54b9101610e59565b600080613cd78686866121cc565b90506001836002811115613ced57613ced615dc1565b148015613d0a575060008480613d0557613d05615d60565b868809115b15613d1d57613d1a6001826156c1565b90505b95945050505050565b600073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b03831601613d54575047919050565b6040516370a0823160e01b81523060048201526001600160a01b038316906370a0823190602401602060405180830381865afa158015613d98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7b919061566e565b919050565b6001600160a01b0381163b613e3e5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610f0d565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b613e8883614610565b600082511180613e955750805b156128ef57612487838361372a565b600080600080613eb385614650565b925092509250866001600160a01b031660018783868660405160008152602001604052604051613eff949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa158015613f21573d6000803e3d6000fd5b505050602060405103516001600160a01b03161493505050509392505050565b8373eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b03821601613f80576040516376fe282b60e11b815260040160405180910390fd5b8115613f9257613f92858585856146ae565b5050505050565b61012d60009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015613fea57600080fd5b505af115801561337f573d6000803e3d6000fd5b8373eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b0382160161403d576040516376fe282b60e11b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03858116600483015284811660248301526000919087169063dd62ed3e90604401602060405180830381865afa15801561408f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140b3919061566e565b11156140c5576140c585846000614747565b613f92858484614863565b6000818310612f2a5781610ddb565b60008215610d7b57610ddb6ec097ce7bc90715b34b9f100000000061410c85670de0b6b3a7640000615d76565b8491906121cc565b6000818311612f2a5781610ddb565b600054610100900460ff1661417c5760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b611926614910565b600054610100900460ff166141dd5760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b611926614972565b600054610100900460ff1661423e5760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b6111b582826149cb565b600054610100900460ff16158080156142685750600054600160ff909116105b806142825750303b158015614282575060005460ff166001145b6142e55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610f0d565b6000805460ff191660011790558015614308576000805461ff0019166101001790555b61431182614a3d565b80156111b5576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15050565b600054610100900460ff166143b35760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b61012e80546001600160a01b0319166001600160a01b03831617905560007fd8e383845db7ecbb6065c22cc5d1320931e4ef39a73fc10e0587d5257ff50379611672565b600054610100900460ff166119265760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b600054610100900460ff166144a95760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b61012f80546001600160a01b0319166001600160a01b0392909216919091179055565b600054610100900460ff166145255760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b61012d80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080856001600160a01b0316856040516145659190615daf565b600060405180830381855af49150503d80600081146145a0576040519150601f19603f3d011682016040523d82523d6000602084013e6145a5565b606091505b50915091506145b686838387614b06565b9695505050505050565b8273eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b038216016145ff576040516376fe282b60e11b815260040160405180910390fd5b811561248757612487848484614b7f565b61461981613dc1565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60008060008351604114614690576040517f4be6321b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505060208101516040820151606090920151909260009190911a90565b6040516001600160a01b03808516602483015283166044820152606481018290526124879085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152614bc8565b8015806147c15750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa15801561479b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147bf919061566e565b155b6148335760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610f0d565b6040516001600160a01b0383166024820152604481018290526128ef90849063095ea7b360e01b906064016146fb565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301526000919085169063dd62ed3e90604401602060405180830381865afa1580156148b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148d7919061566e565b90506124878463095ea7b360e01b856148f086866156c1565b6040516001600160a01b03909216602483015260448201526064016146fb565b600054610100900460ff166149695760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b6119263361366c565b600054610100900460ff166130d85760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b600054610100900460ff16614a245760405162461bcd60e51b815260206004820152602b6024820152600080516020615ede83398151915260448201526a6e697469616c697a696e6760a81b6064820152608401610f0d565b609a614a308382615e1d565b50609b6128ef8282615e1d565b600054610100900460ff1615808015614a5d5750600054600160ff909116105b80614a775750303b158015614a77575060005460ff166001145b614ada5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610f0d565b6000805460ff191660011790558015614afd576000805461ff0019166101001790555b61431182613c2e565b60608315614b75578251600003614b6e576001600160a01b0385163b614b6e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610f0d565b508161300f565b61300f8383614cb0565b6040516001600160a01b0383166024820152604481018290526128ef9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016146fb565b6000614c1d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316614cda9092919063ffffffff16565b9050805160001480614c3e575080806020019051810190614c3e9190615985565b6128ef5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610f0d565b815115614cc05781518083602001fd5b8060405162461bcd60e51b8152600401610f0d9190614dfc565b606061300f848460008585600080866001600160a01b03168587604051614d019190615daf565b60006040518083038185875af1925050503d8060008114614d3e576040519150601f19603f3d011682016040523d82523d6000602084013e614d43565b606091505b5091509150614d5487838387614b06565b979650505050505050565b600060c08284031215614d7157600080fd5b50919050565b600060208284031215614d8957600080fd5b813567ffffffffffffffff811115614da057600080fd5b61300f84828501614d5f565b60005b83811015614dc7578181015183820152602001614daf565b50506000910152565b60008151808452614de8816020860160208601614dac565b601f01601f19169290920160200192915050565b602081526000610ddb6020830184614dd0565b6001600160a01b0381168114610fd857600080fd5b8035613dbc81614e0f565b60008060408385031215614e4257600080fd5b8235614e4d81614e0f565b946020939093013593505050565b600060208284031215614e6d57600080fd5b5035919050565b600080600060608486031215614e8957600080fd5b8335614e9481614e0f565b92506020840135614ea481614e0f565b929592945050506040919091013590565b600060208284031215614ec757600080fd5b8135610ddb81614e0f565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff81118282101715614f0b57614f0b614ed2565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715614f3a57614f3a614ed2565b604052919050565b600067ffffffffffffffff831115614f5c57614f5c614ed2565b614f6f601f8401601f1916602001614f11565b9050828152838383011115614f8357600080fd5b828260208301376000602084830101529392505050565b60008060408385031215614fad57600080fd5b8235614fb881614e0f565b9150602083013567ffffffffffffffff811115614fd457600080fd5b8301601f81018513614fe557600080fd5b614ff485823560208401614f42565b9150509250929050565b600060808284031215614d7157600080fd5b60008083601f84011261502257600080fd5b50813567ffffffffffffffff81111561503a57600080fd5b60208301915083602082850101111561505257600080fd5b9250929050565b6000806000806060858703121561506f57600080fd5b843561507a81614e0f565b9350602085013567ffffffffffffffff8082111561509757600080fd5b6150a388838901614ffe565b945060408701359150808211156150b957600080fd5b506150c687828801615010565b95989497509550505050565b8015158114610fd857600080fd5b6000602082840312156150f257600080fd5b8135610ddb816150d2565b600082601f83011261510e57600080fd5b610ddb83833560208501614f42565b600080600080600080600080610100898b03121561513a57600080fd5b883561514581614e0f565b9750602089013561515581614e0f565b9650604089013567ffffffffffffffff8082111561517257600080fd5b61517e8c838d016150fd565b975060608b013591508082111561519457600080fd5b506151a18b828c016150fd565b95505060808901356151b281614e0f565b935060a08901356151c281614e0f565b925060c08901356151d281614e0f565b91506151e060e08a01614e24565b90509295985092959890939650565b6000806020838503121561520257600080fd5b823567ffffffffffffffff8082111561521a57600080fd5b818501915085601f83011261522e57600080fd5b81358181111561523d57600080fd5b8660208260051b850101111561525257600080fd5b60209290920196919550909350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156152b957603f198886030184526152a7858351614dd0565b9450928501929085019060010161528b565b5092979650505050505050565b6000806000806000608086880312156152de57600080fd5b85356152e981614e0f565b945060208601356152f981614e0f565b9350604086013567ffffffffffffffff8082111561531657600080fd5b61532289838a01614d5f565b9450606088013591508082111561533857600080fd5b5061534588828901615010565b969995985093965092949392505050565b600081518084526020808501945080840160005b838110156153865781518752958201959082019060010161536a565b509495945050505050565b600081518084526020808501945080840160005b838110156153865781516001600160a01b0316875295820195908201906001016153a5565b60008151604084526153df6040850182615356565b905060208301518482036020860152613d1d8282615391565b602081526000610ddb60208301846153ca565b6000806040838503121561541e57600080fd5b823561542981614e0f565b9150602083013561543981614e0f565b809150509250929050565b60006020828403121561545657600080fd5b813567ffffffffffffffff81111561546d57600080fd5b61300f84828501614ffe565b6000823560de1983360301811261548f57600080fd5b90910192915050565b6000808335601e198436030181126154af57600080fd5b830160208101925035905067ffffffffffffffff8111156154cf57600080fd5b80360382131561505257600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6000813561551481614e0f565b6001600160a01b038082168552602084013560208601526040840135915061553b82614e0f565b166040840152606082810135908401526080820135615559816150d2565b1515608084015261556d60a0830183615498565b60e060a086015261558260e0860182846154de565b91505061559260c0840184615498565b85830360c08701526145b68382846154de565b6020815281356020820152602082013560408201526040820135606082015260608201356080820152608082013560a0820152600060a0830135609e198436030181126155f157600080fd5b60c0838101528301803560e0840152602081013561010084015260408101356101208401526156236060820182615479565b60a0610140850152615639610180850182615507565b90506080820135610160850152809250505092915050565b60006020828403121561566357600080fd5b8151610ddb81614e0f565b60006020828403121561568057600080fd5b5051919050565b6000806040838503121561569a57600080fd5b505080516020909101519092909150565b634e487b7160e01b600052601160045260246000fd5b80820180821115610d7b57610d7b6156ab565b81810381811115610d7b57610d7b6156ab565b600181811c908216806156fb57607f821691505b602082108103614d7157634e487b7160e01b600052602260045260246000fd5b60ff8181168382160190811115610d7b57610d7b6156ab565b60008235603e1983360301811261574a57600080fd5b9190910192915050565b600067ffffffffffffffff82111561576e5761576e614ed2565b5060051b60200190565b600082601f83011261578957600080fd5b8135602061579e61579983615754565b614f11565b82815260059290921b840181019181810190868411156157bd57600080fd5b8286015b848110156157e15780356157d481614e0f565b83529183019183016157c1565b509695505050505050565b6000604082360312156157fe57600080fd5b615806614ee8565b823567ffffffffffffffff8082111561581e57600080fd5b9084019036601f83011261583157600080fd5b8135602061584161579983615754565b82815260059290921b8401810191818101903684111561586057600080fd5b948201945b8386101561587e57853582529482019490820190615865565b8652508681013593508284111561589457600080fd5b6158a036858901615778565b908501525091949350505050565b6040815260006158c16040830185615356565b8281036020840152613d1d8185615391565b60008235605e1983360301811261574a57600080fd5b6000823560de1983360301811261574a57600080fd5b8381526060602082015260006159186060830185615507565b9050826040830152949350505050565b6020815260006001600160a01b0380845116602084015280602085015116604084015250604083015160a0606084015261596560c08401826153ca565b905060608401516080840152608084015160a08401528091505092915050565b60006020828403121561599757600080fd5b8151610ddb816150d2565b634e487b7160e01b600052603260045260246000fd5b6000808335601e198436030181126159cf57600080fd5b83018035915067ffffffffffffffff8211156159ea57600080fd5b60200191503681900382131561505257600080fd5b60008235609e1983360301811261574a57600080fd5b85815284602082015283604082015260a060608201526000615a3a60a0830185615507565b90508260808301529695505050505050565b6020815260006001600160a01b0380845116602084015280602085015116604084015280604085015116606084015250606083015160c06080840152615a9560e08401826153ca565b9050608084015160a084015260a084015160c08401528091505092915050565b6000808335601e19843603018112615acc57600080fd5b830160208101925035905067ffffffffffffffff811115615aec57600080fd5b8060051b360382131561505257600080fd5b60008235605e1983360301811261548f57600080fd5b803582526000615b276020830183615479565b60606020850152615b3b6060850182615507565b604093840135949093019390935250919050565b600060208083528335818401528084013560408401526040840135603e19853603018112615b7c57600080fd5b608060608501528401615b8f8180615ab5565b604060a08701528060e08701526101007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821115615bcc57600080fd5b8160051b915081838289013790860191508101615beb83850184615ab5565b87840360600160c089015291829052909250906000908290610120015b84831015615c3b5783359150615c1d82614e0f565b6001600160a01b038216815292850192600192909201918501615c08565b615c4860608a018a615afe565b888203601f190160808a01529550615c608187615b14565b9998505050505050505050565b600181815b80851115615ca8578160001904821115615c8e57615c8e6156ab565b80851615615c9b57918102915b93841c9390800290615c72565b509250929050565b600082615cbf57506001610d7b565b81615ccc57506000610d7b565b8160018114615ce25760028114615cec57615d08565b6001915050610d7b565b60ff841115615cfd57615cfd6156ab565b50506001821b610d7b565b5060208310610133831016604e8410600b8410161715615d2b575081810a610d7b565b615d358383615c6d565b8060001904821115615d4957615d496156ab565b029392505050565b6000610ddb60ff841683615cb0565b634e487b7160e01b600052601260045260246000fd5b8082028115828204841417610d7b57610d7b6156ab565b600082615daa57634e487b7160e01b600052601260045260246000fd5b500490565b6000825161574a818460208701614dac565b634e487b7160e01b600052602160045260246000fd5b601f8211156128ef57600081815260208120601f850160051c81016020861015615dfe5750805b601f850160051c820191505b8181101561337f57828155600101615e0a565b815167ffffffffffffffff811115615e3757615e37614ed2565b615e4b81615e4584546156e7565b84615dd7565b602080601f831160018114615e805760008415615e685750858301515b600019600386901b1c1916600185901b17855561337f565b600085815260208120601f198616915b82811015615eaf57888601518255948401946001909101908401615e90565b5085821015615ecd5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fe496e697469616c697a61626c653a20636f6e7472616374206973206e6f742069416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a164736f6c6343000812000a
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.