Source Code
Latest 19 from a total of 19 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Repay | 41048365 | 5 days ago | IN | 0 ETH | 0.00000041 | ||||
| Settle | 41045130 | 6 days ago | IN | 0 ETH | 0.00000043 | ||||
| Repay | 41023903 | 6 days ago | IN | 0 ETH | 0.00000037 | ||||
| Settle | 41023282 | 6 days ago | IN | 0 ETH | 0.0000007 | ||||
| Settle | 35658287 | 130 days ago | IN | 0 ETH | 0.00000176 | ||||
| Transfer Ownersh... | 33020848 | 191 days ago | IN | 0 ETH | 0.00000069 | ||||
| Set Signer | 33020338 | 191 days ago | IN | 0 ETH | 0.00000056 | ||||
| Set Trader | 33018691 | 191 days ago | IN | 0 ETH | 0.00000089 | ||||
| Set Trader | 32931495 | 193 days ago | IN | 0 ETH | 0.00000043 | ||||
| Set Trader | 32930078 | 193 days ago | IN | 0 ETH | 0.00000182 | ||||
| Set Trader | 32895378 | 194 days ago | IN | 0 ETH | 0.00000059 | ||||
| Set Allowance | 32712881 | 198 days ago | IN | 0 ETH | 0.00000028 | ||||
| Support Market | 32712877 | 198 days ago | IN | 0 ETH | 0.00000049 | ||||
| Set Signer | 32674600 | 199 days ago | IN | 0 ETH | 0.00000046 | ||||
| Set Allowance | 32578852 | 202 days ago | IN | 0 ETH | 0.00000001 | ||||
| Support Market | 32578848 | 202 days ago | IN | 0 ETH | 0.00000001 | ||||
| Set Allowance | 32578791 | 202 days ago | IN | 0 ETH | 0.00000001 | ||||
| Support Market | 32578787 | 202 days ago | IN | 0 ETH | 0.00000002 | ||||
| Set Credit Pool | 32578362 | 202 days ago | IN | 0 ETH | 0 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CreditVault
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 2000000 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.28;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeCast} from "@openzeppelin/contracts/utils/math/SafeCast.sol";
import {Ownable2Step} from "@openzeppelin/contracts/access/Ownable2Step.sol";
import {EIP712, ECDSA} from "@openzeppelin/contracts/utils/cryptography/EIP712.sol";
import "./libraries/ConstantsLib.sol";
import {ErrorsLib} from "./libraries/ErrorsLib.sol";
import {SafeERC20} from "./libraries/SafeERC20.sol";
import {ICreditVault} from "./interfaces/ICreditVault.sol";
import {ReentrancyGuardTransient} from "./libraries/ReentrancyGuardTransient.sol";
import {NativeLPToken} from "./NativeLPToken.sol";
/// @title CreditVault - Manages trader positions and collateral
/// @notice Handles asset custody, position settlement, and LP token integration
contract CreditVault is ICreditVault, EIP712, Ownable2Step, ReentrancyGuardTransient {
using SafeERC20 for IERC20;
using SafeCast for uint256;
using SafeCast for int256;
/*//////////////////////////////////////////////////////////////////////////
STATE VARIABLES
//////////////////////////////////////////////////////////////////////////*/
/// @notice Address that can withdraw protocol fees
address public feeWithdrawer;
/// @notice signer for permissioned functions: liquidate, settle, removeCollateral, etc.
address public signer;
/// @notice epoch updater address
address public epochUpdater;
/// @notice A list of all markets
NativeLPToken[] public allLPTokens;
/// @notice Authorized Native Pool, enable market makers to lend funds from this vault for quoting
/// @dev The credit pool lends tokens from the credit vault and must update the trader's position via a callback.
mapping(address => bool) public creditPools;
/// @notice Mapping of accumulated reserveFees per token (token => fee amount)
mapping(address => uint256) public reserveFees;
/// @notice (trader => timestamp)
mapping(address => uint256) public lastEpochUpdateTimestamp;
/// @notice map from underlying address to LP token
mapping(address => NativeLPToken) public lpTokens;
// @notice Mapping to track used nonces for preventing replay attacks
mapping(uint256 => bool) public nonces;
/// @notice trader_address => underlying token => amount (positive for long, negative for short)
mapping(address => mapping(address => int256)) public positions;
/// @notice traders' collateral trader => token => amount
mapping(address => mapping(address => uint256)) public collateral;
/// @dev If a LP token is supported
mapping(address => bool) public supportedMarkets;
/// @notice whitelist for traders (Market Makers)
mapping(address => bool) public traders;
/// @notice Maps trader address to settler address which can settle positions on behalf of trader
mapping(address => address) public traderToSettler;
/// @notice maps trader to their recipient address
/// @dev Address receives tokens from settlements and collateral operations
mapping(address => address) public traderToRecipient;
/// @notice whitelist traders that can bypass the credit check
mapping(address => bool) public whitelistTraders;
/// @notice whitelist for liquidators
mapping(address => bool) public liquidators;
/// @notice maps liquidator to their recipient address for liquidations
mapping(address => address) public liquidatorToRecipient;
/// @notice Tracks rebalance caps for each trader/liquidator and token
mapping(address => mapping(address => RebalanceCap)) public rebalanceCaps;
/*//////////////////////////////////////////////////////////////////////////
CONSTRUCTOR
//////////////////////////////////////////////////////////////////////////*/
constructor() EIP712("Native Credit Vault", "1") {}
/// @notice Callback function called by NativeRFQPool after swap execution to update trader positions
/// @dev Only callable by whitelisted NativePools, it's called after the swap is executed
/// @param trader The address of the market maker
/// @param tokenIn The address of the token that is selling
/// @param amountIn The amount of the token that is selling
/// @param tokenOut The address of the token that is buying
/// @param amountOut The amount of the token that is buying
function swapCallback(
address trader,
address tokenIn,
int256 amountIn,
address tokenOut,
int256 amountOut
) external {
require(creditPools[msg.sender], ErrorsLib.OnlyCreditPool());
require(
address(lpTokens[tokenIn]) != address(0) && address(lpTokens[tokenOut]) != address(0),
ErrorsLib.InvalidUnderlying()
);
positions[trader][tokenIn] += amountIn;
positions[trader][tokenOut] -= amountOut;
}
/*//////////////////////////////////////////////////////////////////////////
PERMISSIONED FUNCTIONS
//////////////////////////////////////////////////////////////////////////*/
/// @notice Updates funding fees for traders at the end of each epoch
/// @dev Only callable by the epoch updater
/// @param accruedFees Array of funding fee updates for different traders
function epochUpdate(AccruedFundingFee[] calldata accruedFees) external {
require(msg.sender == epochUpdater, ErrorsLib.OnlyEpochUpdater());
for (uint256 i; i < accruedFees.length; ++i) {
address trader = accruedFees[i].trader;
if (block.timestamp - lastEpochUpdateTimestamp[trader] < EPOCH_UPDATE_INTERVAL) {
revert ErrorsLib.EpochUpdateInCoolDown();
}
for (uint256 j; j < accruedFees[i].feeUpdates.length; ++j) {
address token = accruedFees[i].feeUpdates[j].token;
uint256 fundingFee = accruedFees[i].feeUpdates[j].fundingFee;
uint256 reserveFee = accruedFees[i].feeUpdates[j].reserveFee;
// Check if the underlying token is supported
require(address(lpTokens[token]) != address(0), ErrorsLib.InvalidUnderlying());
if (fundingFee > 0) {
uint256 beforeExchangeRate = lpTokens[token].exchangeRate();
// Distribute funding fee to all LPToken holders
lpTokens[token].distributeYield(fundingFee);
// Verify the exchange rate increase is not more than 1%
if (((lpTokens[token].exchangeRate() - beforeExchangeRate) * 10_000) > beforeExchangeRate * 100) {
revert ErrorsLib.ExchangeRateIncreaseTooMuch();
}
}
if (reserveFee > 0) {
reserveFees[token] += reserveFee;
}
// Subtract reserve fee and funding fee from the trader's position
positions[trader][token] -= (reserveFee + fundingFee).toInt256();
}
lastEpochUpdateTimestamp[trader] = block.timestamp;
}
emit EpochUpdated(accruedFees);
}
/// @notice Called by traders to settle the positions
/// @dev This transaction requires off-chain calculation to verify if the trader's credit meets the criteria.
/// @param request The struct of the settlement request containing info of long and short positions to settle
/// @param signature The signature of the settlement request
function settle(
SettlementRequest calldata request,
bytes calldata signature
) external onlyTraderOrSettler(request.trader) nonReentrant {
_verifySettleSignature(request, signature);
_updatePositions(request.positionUpdates, request.trader);
address recipient = traderToRecipient[request.trader];
// execute token transfers
for (uint256 i; i < request.positionUpdates.length; ++i) {
address token = request.positionUpdates[i].token;
int256 amount = request.positionUpdates[i].amount;
if (amount > 0) {
IERC20(token).safeTransferFrom(msg.sender, address(this), amount.toUint256());
} else {
/// Enforce rebalance cap before funds leave vault to ensure limit compliance
_updateRebalanceCap(request.trader, token, (-amount).toUint256());
IERC20(token).safeTransfer(recipient, (-amount).toUint256());
}
}
emit Settled(request.trader, request.positionUpdates);
}
/// @notice Called by traders to remove collateral
/// @dev This transaction requires off-chain calculation to verify if the trader's credit meets the criteria.
/// @param request The struct of the remove collateral request containing info of collateral to remove
/// @param signature The signature of the remove collateral request
function removeCollateral(
RemoveCollateralRequest calldata request,
bytes calldata signature
) external onlyTraderOrSettler(request.trader) nonReentrant {
_verifyRemoveCollateralSignature(request, signature);
for (uint256 i; i < request.tokens.length; ++i) {
collateral[request.trader][request.tokens[i].token] -= request.tokens[i].amount;
}
address recipient = traderToRecipient[request.trader];
for (uint256 i; i < request.tokens.length; ++i) {
address token = request.tokens[i].token;
uint256 amount = request.tokens[i].amount;
/// Enforce rebalance cap before funds leave vault
_updateRebalanceCap(request.trader, token, amount);
IERC20(token).safeTransfer(recipient, amount);
}
emit CollateralRemoved(request.trader, request.tokens);
}
/// @notice Repays trader's short positions
/// @param positionUpdates Array of {token, amount} structs representing positions to repay
/// @param trader Address of the trader whose positions are being repaid
function repay(
TokenAmountInt[] calldata positionUpdates,
address trader
) external onlyTraderOrSettler(trader) nonReentrant {
_updatePositions(positionUpdates, trader);
// the safeCast to Uint256 will revert if the repayments amount is negative
for (uint256 i; i < positionUpdates.length; ++i) {
IERC20(positionUpdates[i].token).safeTransferFrom(
msg.sender, address(this), positionUpdates[i].amount.toUint256()
);
}
emit Repaid(trader, positionUpdates);
}
/// @notice Called by liquidators to liquidate the underwater positions
/// @dev This transaction requires off-chain calculation to verify if the trader's credit meets the criteria.
/// @param request The struct of the liquidation request containing info of long and short positions to liquidate
/// @param signature The signature of the liquidation request
function liquidate(
LiquidationRequest calldata request,
bytes calldata signature
) external onlyLiquidator nonReentrant {
_verifyLiquidationSignature(request, signature);
_updatePositions(request.positionUpdates, request.trader);
address recipient = liquidatorToRecipient[msg.sender];
for (uint256 i; i < request.claimCollaterals.length; ++i) {
collateral[request.trader][request.claimCollaterals[i].token] -= request.claimCollaterals[i].amount;
}
for (uint256 i; i < request.positionUpdates.length; ++i) {
address token = request.positionUpdates[i].token;
int256 amount = request.positionUpdates[i].amount;
if (amount > 0) {
IERC20(token).safeTransferFrom(msg.sender, address(this), amount.toUint256());
} else {
/// Enforce rebalance cap before underlying token leave vault
_updateRebalanceCap(msg.sender, token, (-amount).toUint256());
IERC20(token).safeTransfer(recipient, (-amount).toUint256());
}
}
for (uint256 i; i < request.claimCollaterals.length; ++i) {
address token = request.claimCollaterals[i].token;
/// Enforce rebalance cap before collateral token leave vault
_updateRebalanceCap(msg.sender, token, request.claimCollaterals[i].amount);
IERC20(token).safeTransfer(recipient, request.claimCollaterals[i].amount);
}
emit Liquidated(request.trader, msg.sender, request.positionUpdates, request.claimCollaterals);
}
/// @notice Transfers underlying assets from vault to recipient
/// @dev Only callable by supported LP tokens
/// @param to Recipient of the underlying assets
/// @param amount Amount of underlying assets to transfer
function pay(address to, uint256 amount) external {
require(supportedMarkets[msg.sender], ErrorsLib.OnlyLpToken());
require(amount <= NativeLPToken(msg.sender).totalUnderlying(), ErrorsLib.InsufficientUnderlying());
// Each LP token can only transfer its own underlying token
IERC20(NativeLPToken(msg.sender).underlying()).safeTransfer(to, amount);
}
/*//////////////////////////////////////////////////////////////////////////
PERMISSIONLESS FUNCTIONS
//////////////////////////////////////////////////////////////////////////*/
/// @notice Adds collateral for a trader's position
/// @dev PERMISSIONLESS: Anyone can add collateral for any trader
/// @dev Off-chain system will update trader's credit limit off-chain via event emission
/// @param tokens Array of {token, amount} structs to be added as collateral
/// @param trader Address of the trader receiving the collateral
function addCollateral(TokenAmountUint[] calldata tokens, address trader) external nonReentrant {
require(traders[trader], ErrorsLib.OnlyTrader());
for (uint256 i; i < tokens.length; ++i) {
address token = tokens[i].token;
require(supportedMarkets[token], ErrorsLib.OnlyLpToken());
uint256 amount = tokens[i].amount;
collateral[trader][token] += amount;
IERC20(token).safeTransferFrom(msg.sender, address(this), amount);
}
emit CollateralAdded(trader, tokens);
}
/*//////////////////////////////////////////////////////////////////////////
ADMIN FUNCTIONS
//////////////////////////////////////////////////////////////////////////*/
/// @notice Lists a new market (LP token)
/// @dev Only callable by owner
/// @param lpToken Address of the LP token to be listed
function supportMarket(NativeLPToken lpToken) external onlyOwner {
// Check if market is already listed
require(!supportedMarkets[address(lpToken)], ErrorsLib.TokenAlreadyListed());
address underlying = address(lpToken.underlying());
// Verify market configuration
require(
address(lpTokens[underlying]) == address(0) && lpToken.creditVault() == address(this),
ErrorsLib.InvalidMarket()
);
// Sanity check to make sure its really LPToken
require(address(underlying) != address(0), ErrorsLib.InvalidLPToken());
// Update storage
lpTokens[underlying] = lpToken;
supportedMarkets[address(lpToken)] = true;
allLPTokens.push(lpToken);
emit MarketListed(address(lpToken));
}
/// @notice Allows fee withdrawer to claim accumulated funding fees
/// @dev Only callable by feeWithdrawer
/// @param underlying The token address of the fees to withdraw
/// @param recipient The address that will receive the fees
/// @param amount The amount of fees to withdraw
function withdrawReserve(address underlying, address recipient, uint256 amount) external {
require(recipient != address(0), ErrorsLib.ZeroAddress());
require(msg.sender == feeWithdrawer, ErrorsLib.OnlyFeeWithdrawer());
require(amount <= reserveFees[underlying], ErrorsLib.InsufficientFundingFees());
reserveFees[underlying] -= amount;
// Withdraw underlying from vault
IERC20(underlying).safeTransfer(recipient, amount);
emit ReserveWithdrawn(underlying, recipient, amount);
}
/// @notice Updates credit pool status
/// @param pool The address of credit pool
/// @param isActive to whitelist, false to remove from whitelist
function setCreditPool(address pool, bool isActive) external onlyOwner {
require(pool != address(0), ErrorsLib.ZeroAddress());
creditPools[pool] = isActive;
emit CreditPoolUpdated(pool, isActive);
}
/// @notice Approves native pool to spend vault's underlying tokens
/// @dev Only callable by owner
/// @dev Pool must be whitelisted as native pool
/// @param tokens Array of {token, amount} structs to approve
/// @param pool Address of native pool to receive approval
function setAllowance(TokenAmountUint[] calldata tokens, address pool) external onlyOwner {
for (uint256 i; i < tokens.length; ++i) {
require(address(lpTokens[tokens[i].token]) != address(0), ErrorsLib.InvalidUnderlying());
IERC20(tokens[i].token).safeApprove(pool, tokens[i].amount);
}
}
/// @notice Set or update the daily rebalance limit for a specific trader or liquidator and token
/// @dev A limit of 0 means unlimited rebalancing is allowed
/// @param operator The address of the trader or liquidator whose limit is being set
/// @param token The token address for which the limit applies
/// @param limit The maximum amount of tokens that can be rebalanced per day (0 for unlimited)
function setRebalanceCap(address operator, address token, uint256 limit) external onlyOwner {
require(token != address(0), ErrorsLib.ZeroAddress());
require(traders[operator] || liquidators[operator], ErrorsLib.NotTraderOrLiquidator());
// used will be reset to 0
rebalanceCaps[operator][token] = RebalanceCap({limit: limit, used: 0, lastDay: block.timestamp / 86_400});
emit RebalanceCapUpdated(operator, token, limit);
}
/// @notice Manages trader permissions and settlement addresses
/// @dev Only callable by owner
/// @param trader Address to configure trading permissions for
/// @param settler Address authorized to settle positions on trader's behalf
/// @param recipient Address authorized to receive tokens from settlements and collateral operations
/// @param isTrader True to enable trading, false to revoke permissions
/// @param isWhitelistTrader True to enable whitelist which can bypass credit check
function setTrader(
address trader,
address settler,
address recipient,
bool isTrader,
bool isWhitelistTrader
) external onlyOwner {
require(trader != address(0) && settler != address(0) && recipient != address(0), ErrorsLib.ZeroAddress());
require(recipient != trader && recipient != settler, ErrorsLib.TraderRecipientConflict());
traders[trader] = isTrader;
traderToSettler[trader] = settler;
traderToRecipient[trader] = recipient;
whitelistTraders[trader] = isWhitelistTrader;
emit TraderSet(trader, isTrader, isWhitelistTrader, settler, recipient);
}
/// @notice Set or remove liquidator permissions
/// @dev Only callable by owner
/// @param liquidator The address to grant/revoke liquidator permissions
/// @param recipient Address authorized to receive tokens from liquidations
/// @param status True to whitelist, false to remove from whitelist
function setLiquidator(address liquidator, address recipient, bool status) external onlyOwner {
require(liquidator != address(0) && recipient != address(0), ErrorsLib.ZeroAddress());
require(liquidator != recipient, ErrorsLib.LiquidatorRecipientConflict());
liquidators[liquidator] = status;
liquidatorToRecipient[liquidator] = recipient;
emit LiquidatorSet(liquidator, status);
}
/// @notice Updates the authorized signer for permissioned operations
/// @dev Only callable by owner
/// @dev Signer verifies signatures for settlements, liquidations, and collateral removals
/// @param _signer New signer address (cannot be zero address)
function setSigner(address _signer) external onlyOwner {
require(_signer != address(0), ErrorsLib.ZeroAddress());
signer = _signer;
emit SignerSet(_signer);
}
/// @notice Updates the authorized epoch updater address
/// @dev Only callable by owner
/// @dev Epoch updater is responsible for funding fee updates and distributions
/// @param _epochUpdater New epoch updater address (cannot be zero address)
function setEpochUpdater(address _epochUpdater) external onlyOwner {
require(_epochUpdater != address(0), ErrorsLib.ZeroAddress());
epochUpdater = _epochUpdater;
emit EpochUpdaterSet(_epochUpdater);
}
/// @notice Updates the authorized fee withdrawer address
/// @dev Only callable by owner
/// @dev Fee withdrawer can claim accumulated funding fees from the vault
/// @param _feeWithdrawer New fee withdrawer address (cannot be zero address)
function setFeeWithdrawer(address payable _feeWithdrawer) external onlyOwner {
require(_feeWithdrawer != address(0), ErrorsLib.ZeroAddress());
feeWithdrawer = _feeWithdrawer;
emit FeeWithdrawerSet(_feeWithdrawer);
}
/*//////////////////////////////////////////////////////////////////////////
INTERNAL FUNCTIONS
//////////////////////////////////////////////////////////////////////////*/
function _updateNonce(uint256 nonce) internal {
require(!nonces[nonce], ErrorsLib.NonceUsed());
nonces[nonce] = true;
}
function _updatePositions(ICreditVault.TokenAmountInt[] memory positionUpdates, address trader) internal {
uint256 updatesLength = positionUpdates.length;
for (uint256 i; i < updatesLength; ++i) {
address token = positionUpdates[i].token;
int256 amount = positionUpdates[i].amount;
int256 newPosition = positions[trader][token] + amount;
// Make sure the token is supported underlying token
require(address(lpTokens[token]) != address(0), ErrorsLib.InvalidLPToken());
// Position must decrease without flipping its sign (e.g. long 100 -> long 50, not long 100 -> short 20)
if (positions[trader][token] * amount >= 0 || positions[trader][token] * newPosition < 0) {
revert ErrorsLib.InvalidPositionUpdateAmount();
}
positions[trader][token] = newPosition;
}
}
/// @notice Check and update daily rebalance tracking for a trader's token position
/// @param trader The address of the trader attempting to rebalance
/// @param token The token address being rebalanced, can be underlying token or collateral token
/// @param amount The amount of tokens being rebalanced
function _updateRebalanceCap(address trader, address token, uint256 amount) internal {
RebalanceCap storage cap = rebalanceCaps[trader][token];
uint256 currentDay = block.timestamp / 86_400;
uint256 newUsed;
// Reset daily used amount if it's a new day, otherwise add to existing
if (currentDay > cap.lastDay) {
newUsed = amount;
} else {
newUsed = cap.used + amount;
}
// Check if rebalance would exceed daily limit, skip check if limit is 0 (unlimited)
require(cap.limit == 0 || newUsed <= cap.limit, ErrorsLib.RebalanceLimitExceeded());
// Update storage in a single write
rebalanceCaps[trader][token] = RebalanceCap({limit: cap.limit, used: newUsed, lastDay: currentDay});
}
function _verifySettleSignature(
ICreditVault.SettlementRequest calldata request,
bytes calldata signature
) internal {
require(request.deadline >= block.timestamp, ErrorsLib.RequestExpired());
_updateNonce(request.nonce);
bytes32 msgHash = keccak256(
abi.encode(
SETTLEMENT_REQUEST_SIGNATURE_HASH,
request.nonce,
request.deadline,
request.trader,
keccak256(abi.encode(request.positionUpdates)),
traderToRecipient[request.trader]
)
);
bytes32 digest = _hashTypedDataV4(msgHash);
address recoveredSigner = ECDSA.recover(digest, signature);
require(recoveredSigner == signer, ErrorsLib.InvalidSignature());
}
function _verifyRemoveCollateralSignature(
ICreditVault.RemoveCollateralRequest calldata request,
bytes calldata signature
) internal {
require(request.deadline >= block.timestamp, ErrorsLib.RequestExpired());
_updateNonce(request.nonce);
bytes32 msgHash = keccak256(
abi.encode(
REMOVE_COLLATERAL_REQUEST_SIGNATURE_HASH,
request.nonce,
request.deadline,
request.trader,
keccak256(abi.encode(request.tokens)),
traderToRecipient[request.trader]
)
);
bytes32 digest = _hashTypedDataV4(msgHash);
address recoveredSigner = ECDSA.recover(digest, signature);
require(recoveredSigner == signer, ErrorsLib.InvalidSignature());
}
function _verifyLiquidationSignature(
ICreditVault.LiquidationRequest calldata request,
bytes calldata signature
) internal {
require(request.deadline >= block.timestamp, ErrorsLib.RequestExpired());
_updateNonce(request.nonce);
bytes32 msgHash = keccak256(
abi.encode(
LIQUIDATION_REQUEST_SIGNATURE_HASH,
request.nonce,
request.deadline,
request.trader,
keccak256(abi.encode(request.positionUpdates)),
keccak256(abi.encode(request.claimCollaterals)),
liquidatorToRecipient[msg.sender]
)
);
bytes32 digest = _hashTypedDataV4(msgHash);
address recoveredSigner = ECDSA.recover(digest, signature);
require(recoveredSigner == signer, ErrorsLib.InvalidSignature());
}
/*//////////////////////////////////////////////////////////////////////////
MODIFIERS
//////////////////////////////////////////////////////////////////////////*/
/// @notice Separate the trader and settler accounts, they have different operation frequency and security setup requirements
modifier onlyTraderOrSettler(address trader) {
require(
(traders[trader] && trader == msg.sender) // Make sure a trader can only dispose of their own position
|| (traders[trader] && msg.sender == traderToSettler[trader]), // Trader's settler can also settle their own position
ErrorsLib.OnlyTrader()
);
_;
}
modifier onlyLiquidator() {
require(liquidators[msg.sender], ErrorsLib.OnlyLiquidator());
_;
}
}// 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.8.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.
pragma solidity ^0.8.0;
/**
* @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
* checks.
*
* Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
* easily result in undesired exploitation or bugs, since developers usually
* assume that overflows raise errors. `SafeCast` restores this intuition by
* reverting the transaction when such an operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*
* Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
* all math on `uint256` and `int256` and then downcasting.
*/
library SafeCast {
/**
* @dev Returns the downcasted uint248 from uint256, reverting on
* overflow (when the input is greater than largest uint248).
*
* Counterpart to Solidity's `uint248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*
* _Available since v4.7._
*/
function toUint248(uint256 value) internal pure returns (uint248) {
require(value <= type(uint248).max, "SafeCast: value doesn't fit in 248 bits");
return uint248(value);
}
/**
* @dev Returns the downcasted uint240 from uint256, reverting on
* overflow (when the input is greater than largest uint240).
*
* Counterpart to Solidity's `uint240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*
* _Available since v4.7._
*/
function toUint240(uint256 value) internal pure returns (uint240) {
require(value <= type(uint240).max, "SafeCast: value doesn't fit in 240 bits");
return uint240(value);
}
/**
* @dev Returns the downcasted uint232 from uint256, reverting on
* overflow (when the input is greater than largest uint232).
*
* Counterpart to Solidity's `uint232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*
* _Available since v4.7._
*/
function toUint232(uint256 value) internal pure returns (uint232) {
require(value <= type(uint232).max, "SafeCast: value doesn't fit in 232 bits");
return uint232(value);
}
/**
* @dev Returns the downcasted uint224 from uint256, reverting on
* overflow (when the input is greater than largest uint224).
*
* Counterpart to Solidity's `uint224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*
* _Available since v4.2._
*/
function toUint224(uint256 value) internal pure returns (uint224) {
require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
return uint224(value);
}
/**
* @dev Returns the downcasted uint216 from uint256, reverting on
* overflow (when the input is greater than largest uint216).
*
* Counterpart to Solidity's `uint216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*
* _Available since v4.7._
*/
function toUint216(uint256 value) internal pure returns (uint216) {
require(value <= type(uint216).max, "SafeCast: value doesn't fit in 216 bits");
return uint216(value);
}
/**
* @dev Returns the downcasted uint208 from uint256, reverting on
* overflow (when the input is greater than largest uint208).
*
* Counterpart to Solidity's `uint208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*
* _Available since v4.7._
*/
function toUint208(uint256 value) internal pure returns (uint208) {
require(value <= type(uint208).max, "SafeCast: value doesn't fit in 208 bits");
return uint208(value);
}
/**
* @dev Returns the downcasted uint200 from uint256, reverting on
* overflow (when the input is greater than largest uint200).
*
* Counterpart to Solidity's `uint200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*
* _Available since v4.7._
*/
function toUint200(uint256 value) internal pure returns (uint200) {
require(value <= type(uint200).max, "SafeCast: value doesn't fit in 200 bits");
return uint200(value);
}
/**
* @dev Returns the downcasted uint192 from uint256, reverting on
* overflow (when the input is greater than largest uint192).
*
* Counterpart to Solidity's `uint192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*
* _Available since v4.7._
*/
function toUint192(uint256 value) internal pure returns (uint192) {
require(value <= type(uint192).max, "SafeCast: value doesn't fit in 192 bits");
return uint192(value);
}
/**
* @dev Returns the downcasted uint184 from uint256, reverting on
* overflow (when the input is greater than largest uint184).
*
* Counterpart to Solidity's `uint184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*
* _Available since v4.7._
*/
function toUint184(uint256 value) internal pure returns (uint184) {
require(value <= type(uint184).max, "SafeCast: value doesn't fit in 184 bits");
return uint184(value);
}
/**
* @dev Returns the downcasted uint176 from uint256, reverting on
* overflow (when the input is greater than largest uint176).
*
* Counterpart to Solidity's `uint176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*
* _Available since v4.7._
*/
function toUint176(uint256 value) internal pure returns (uint176) {
require(value <= type(uint176).max, "SafeCast: value doesn't fit in 176 bits");
return uint176(value);
}
/**
* @dev Returns the downcasted uint168 from uint256, reverting on
* overflow (when the input is greater than largest uint168).
*
* Counterpart to Solidity's `uint168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*
* _Available since v4.7._
*/
function toUint168(uint256 value) internal pure returns (uint168) {
require(value <= type(uint168).max, "SafeCast: value doesn't fit in 168 bits");
return uint168(value);
}
/**
* @dev Returns the downcasted uint160 from uint256, reverting on
* overflow (when the input is greater than largest uint160).
*
* Counterpart to Solidity's `uint160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*
* _Available since v4.7._
*/
function toUint160(uint256 value) internal pure returns (uint160) {
require(value <= type(uint160).max, "SafeCast: value doesn't fit in 160 bits");
return uint160(value);
}
/**
* @dev Returns the downcasted uint152 from uint256, reverting on
* overflow (when the input is greater than largest uint152).
*
* Counterpart to Solidity's `uint152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*
* _Available since v4.7._
*/
function toUint152(uint256 value) internal pure returns (uint152) {
require(value <= type(uint152).max, "SafeCast: value doesn't fit in 152 bits");
return uint152(value);
}
/**
* @dev Returns the downcasted uint144 from uint256, reverting on
* overflow (when the input is greater than largest uint144).
*
* Counterpart to Solidity's `uint144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*
* _Available since v4.7._
*/
function toUint144(uint256 value) internal pure returns (uint144) {
require(value <= type(uint144).max, "SafeCast: value doesn't fit in 144 bits");
return uint144(value);
}
/**
* @dev Returns the downcasted uint136 from uint256, reverting on
* overflow (when the input is greater than largest uint136).
*
* Counterpart to Solidity's `uint136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*
* _Available since v4.7._
*/
function toUint136(uint256 value) internal pure returns (uint136) {
require(value <= type(uint136).max, "SafeCast: value doesn't fit in 136 bits");
return uint136(value);
}
/**
* @dev Returns the downcasted uint128 from uint256, reverting on
* overflow (when the input is greater than largest uint128).
*
* Counterpart to Solidity's `uint128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*
* _Available since v2.5._
*/
function toUint128(uint256 value) internal pure returns (uint128) {
require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
return uint128(value);
}
/**
* @dev Returns the downcasted uint120 from uint256, reverting on
* overflow (when the input is greater than largest uint120).
*
* Counterpart to Solidity's `uint120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*
* _Available since v4.7._
*/
function toUint120(uint256 value) internal pure returns (uint120) {
require(value <= type(uint120).max, "SafeCast: value doesn't fit in 120 bits");
return uint120(value);
}
/**
* @dev Returns the downcasted uint112 from uint256, reverting on
* overflow (when the input is greater than largest uint112).
*
* Counterpart to Solidity's `uint112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*
* _Available since v4.7._
*/
function toUint112(uint256 value) internal pure returns (uint112) {
require(value <= type(uint112).max, "SafeCast: value doesn't fit in 112 bits");
return uint112(value);
}
/**
* @dev Returns the downcasted uint104 from uint256, reverting on
* overflow (when the input is greater than largest uint104).
*
* Counterpart to Solidity's `uint104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*
* _Available since v4.7._
*/
function toUint104(uint256 value) internal pure returns (uint104) {
require(value <= type(uint104).max, "SafeCast: value doesn't fit in 104 bits");
return uint104(value);
}
/**
* @dev Returns the downcasted uint96 from uint256, reverting on
* overflow (when the input is greater than largest uint96).
*
* Counterpart to Solidity's `uint96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*
* _Available since v4.2._
*/
function toUint96(uint256 value) internal pure returns (uint96) {
require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
return uint96(value);
}
/**
* @dev Returns the downcasted uint88 from uint256, reverting on
* overflow (when the input is greater than largest uint88).
*
* Counterpart to Solidity's `uint88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*
* _Available since v4.7._
*/
function toUint88(uint256 value) internal pure returns (uint88) {
require(value <= type(uint88).max, "SafeCast: value doesn't fit in 88 bits");
return uint88(value);
}
/**
* @dev Returns the downcasted uint80 from uint256, reverting on
* overflow (when the input is greater than largest uint80).
*
* Counterpart to Solidity's `uint80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*
* _Available since v4.7._
*/
function toUint80(uint256 value) internal pure returns (uint80) {
require(value <= type(uint80).max, "SafeCast: value doesn't fit in 80 bits");
return uint80(value);
}
/**
* @dev Returns the downcasted uint72 from uint256, reverting on
* overflow (when the input is greater than largest uint72).
*
* Counterpart to Solidity's `uint72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*
* _Available since v4.7._
*/
function toUint72(uint256 value) internal pure returns (uint72) {
require(value <= type(uint72).max, "SafeCast: value doesn't fit in 72 bits");
return uint72(value);
}
/**
* @dev Returns the downcasted uint64 from uint256, reverting on
* overflow (when the input is greater than largest uint64).
*
* Counterpart to Solidity's `uint64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*
* _Available since v2.5._
*/
function toUint64(uint256 value) internal pure returns (uint64) {
require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
return uint64(value);
}
/**
* @dev Returns the downcasted uint56 from uint256, reverting on
* overflow (when the input is greater than largest uint56).
*
* Counterpart to Solidity's `uint56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*
* _Available since v4.7._
*/
function toUint56(uint256 value) internal pure returns (uint56) {
require(value <= type(uint56).max, "SafeCast: value doesn't fit in 56 bits");
return uint56(value);
}
/**
* @dev Returns the downcasted uint48 from uint256, reverting on
* overflow (when the input is greater than largest uint48).
*
* Counterpart to Solidity's `uint48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*
* _Available since v4.7._
*/
function toUint48(uint256 value) internal pure returns (uint48) {
require(value <= type(uint48).max, "SafeCast: value doesn't fit in 48 bits");
return uint48(value);
}
/**
* @dev Returns the downcasted uint40 from uint256, reverting on
* overflow (when the input is greater than largest uint40).
*
* Counterpart to Solidity's `uint40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*
* _Available since v4.7._
*/
function toUint40(uint256 value) internal pure returns (uint40) {
require(value <= type(uint40).max, "SafeCast: value doesn't fit in 40 bits");
return uint40(value);
}
/**
* @dev Returns the downcasted uint32 from uint256, reverting on
* overflow (when the input is greater than largest uint32).
*
* Counterpart to Solidity's `uint32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*
* _Available since v2.5._
*/
function toUint32(uint256 value) internal pure returns (uint32) {
require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
return uint32(value);
}
/**
* @dev Returns the downcasted uint24 from uint256, reverting on
* overflow (when the input is greater than largest uint24).
*
* Counterpart to Solidity's `uint24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*
* _Available since v4.7._
*/
function toUint24(uint256 value) internal pure returns (uint24) {
require(value <= type(uint24).max, "SafeCast: value doesn't fit in 24 bits");
return uint24(value);
}
/**
* @dev Returns the downcasted uint16 from uint256, reverting on
* overflow (when the input is greater than largest uint16).
*
* Counterpart to Solidity's `uint16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*
* _Available since v2.5._
*/
function toUint16(uint256 value) internal pure returns (uint16) {
require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
return uint16(value);
}
/**
* @dev Returns the downcasted uint8 from uint256, reverting on
* overflow (when the input is greater than largest uint8).
*
* Counterpart to Solidity's `uint8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*
* _Available since v2.5._
*/
function toUint8(uint256 value) internal pure returns (uint8) {
require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
return uint8(value);
}
/**
* @dev Converts a signed int256 into an unsigned uint256.
*
* Requirements:
*
* - input must be greater than or equal to 0.
*
* _Available since v3.0._
*/
function toUint256(int256 value) internal pure returns (uint256) {
require(value >= 0, "SafeCast: value must be positive");
return uint256(value);
}
/**
* @dev Returns the downcasted int248 from int256, reverting on
* overflow (when the input is less than smallest int248 or
* greater than largest int248).
*
* Counterpart to Solidity's `int248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*
* _Available since v4.7._
*/
function toInt248(int256 value) internal pure returns (int248 downcasted) {
downcasted = int248(value);
require(downcasted == value, "SafeCast: value doesn't fit in 248 bits");
}
/**
* @dev Returns the downcasted int240 from int256, reverting on
* overflow (when the input is less than smallest int240 or
* greater than largest int240).
*
* Counterpart to Solidity's `int240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*
* _Available since v4.7._
*/
function toInt240(int256 value) internal pure returns (int240 downcasted) {
downcasted = int240(value);
require(downcasted == value, "SafeCast: value doesn't fit in 240 bits");
}
/**
* @dev Returns the downcasted int232 from int256, reverting on
* overflow (when the input is less than smallest int232 or
* greater than largest int232).
*
* Counterpart to Solidity's `int232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*
* _Available since v4.7._
*/
function toInt232(int256 value) internal pure returns (int232 downcasted) {
downcasted = int232(value);
require(downcasted == value, "SafeCast: value doesn't fit in 232 bits");
}
/**
* @dev Returns the downcasted int224 from int256, reverting on
* overflow (when the input is less than smallest int224 or
* greater than largest int224).
*
* Counterpart to Solidity's `int224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*
* _Available since v4.7._
*/
function toInt224(int256 value) internal pure returns (int224 downcasted) {
downcasted = int224(value);
require(downcasted == value, "SafeCast: value doesn't fit in 224 bits");
}
/**
* @dev Returns the downcasted int216 from int256, reverting on
* overflow (when the input is less than smallest int216 or
* greater than largest int216).
*
* Counterpart to Solidity's `int216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*
* _Available since v4.7._
*/
function toInt216(int256 value) internal pure returns (int216 downcasted) {
downcasted = int216(value);
require(downcasted == value, "SafeCast: value doesn't fit in 216 bits");
}
/**
* @dev Returns the downcasted int208 from int256, reverting on
* overflow (when the input is less than smallest int208 or
* greater than largest int208).
*
* Counterpart to Solidity's `int208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*
* _Available since v4.7._
*/
function toInt208(int256 value) internal pure returns (int208 downcasted) {
downcasted = int208(value);
require(downcasted == value, "SafeCast: value doesn't fit in 208 bits");
}
/**
* @dev Returns the downcasted int200 from int256, reverting on
* overflow (when the input is less than smallest int200 or
* greater than largest int200).
*
* Counterpart to Solidity's `int200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*
* _Available since v4.7._
*/
function toInt200(int256 value) internal pure returns (int200 downcasted) {
downcasted = int200(value);
require(downcasted == value, "SafeCast: value doesn't fit in 200 bits");
}
/**
* @dev Returns the downcasted int192 from int256, reverting on
* overflow (when the input is less than smallest int192 or
* greater than largest int192).
*
* Counterpart to Solidity's `int192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*
* _Available since v4.7._
*/
function toInt192(int256 value) internal pure returns (int192 downcasted) {
downcasted = int192(value);
require(downcasted == value, "SafeCast: value doesn't fit in 192 bits");
}
/**
* @dev Returns the downcasted int184 from int256, reverting on
* overflow (when the input is less than smallest int184 or
* greater than largest int184).
*
* Counterpart to Solidity's `int184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*
* _Available since v4.7._
*/
function toInt184(int256 value) internal pure returns (int184 downcasted) {
downcasted = int184(value);
require(downcasted == value, "SafeCast: value doesn't fit in 184 bits");
}
/**
* @dev Returns the downcasted int176 from int256, reverting on
* overflow (when the input is less than smallest int176 or
* greater than largest int176).
*
* Counterpart to Solidity's `int176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*
* _Available since v4.7._
*/
function toInt176(int256 value) internal pure returns (int176 downcasted) {
downcasted = int176(value);
require(downcasted == value, "SafeCast: value doesn't fit in 176 bits");
}
/**
* @dev Returns the downcasted int168 from int256, reverting on
* overflow (when the input is less than smallest int168 or
* greater than largest int168).
*
* Counterpart to Solidity's `int168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*
* _Available since v4.7._
*/
function toInt168(int256 value) internal pure returns (int168 downcasted) {
downcasted = int168(value);
require(downcasted == value, "SafeCast: value doesn't fit in 168 bits");
}
/**
* @dev Returns the downcasted int160 from int256, reverting on
* overflow (when the input is less than smallest int160 or
* greater than largest int160).
*
* Counterpart to Solidity's `int160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*
* _Available since v4.7._
*/
function toInt160(int256 value) internal pure returns (int160 downcasted) {
downcasted = int160(value);
require(downcasted == value, "SafeCast: value doesn't fit in 160 bits");
}
/**
* @dev Returns the downcasted int152 from int256, reverting on
* overflow (when the input is less than smallest int152 or
* greater than largest int152).
*
* Counterpart to Solidity's `int152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*
* _Available since v4.7._
*/
function toInt152(int256 value) internal pure returns (int152 downcasted) {
downcasted = int152(value);
require(downcasted == value, "SafeCast: value doesn't fit in 152 bits");
}
/**
* @dev Returns the downcasted int144 from int256, reverting on
* overflow (when the input is less than smallest int144 or
* greater than largest int144).
*
* Counterpart to Solidity's `int144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*
* _Available since v4.7._
*/
function toInt144(int256 value) internal pure returns (int144 downcasted) {
downcasted = int144(value);
require(downcasted == value, "SafeCast: value doesn't fit in 144 bits");
}
/**
* @dev Returns the downcasted int136 from int256, reverting on
* overflow (when the input is less than smallest int136 or
* greater than largest int136).
*
* Counterpart to Solidity's `int136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*
* _Available since v4.7._
*/
function toInt136(int256 value) internal pure returns (int136 downcasted) {
downcasted = int136(value);
require(downcasted == value, "SafeCast: value doesn't fit in 136 bits");
}
/**
* @dev Returns the downcasted int128 from int256, reverting on
* overflow (when the input is less than smallest int128 or
* greater than largest int128).
*
* Counterpart to Solidity's `int128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*
* _Available since v3.1._
*/
function toInt128(int256 value) internal pure returns (int128 downcasted) {
downcasted = int128(value);
require(downcasted == value, "SafeCast: value doesn't fit in 128 bits");
}
/**
* @dev Returns the downcasted int120 from int256, reverting on
* overflow (when the input is less than smallest int120 or
* greater than largest int120).
*
* Counterpart to Solidity's `int120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*
* _Available since v4.7._
*/
function toInt120(int256 value) internal pure returns (int120 downcasted) {
downcasted = int120(value);
require(downcasted == value, "SafeCast: value doesn't fit in 120 bits");
}
/**
* @dev Returns the downcasted int112 from int256, reverting on
* overflow (when the input is less than smallest int112 or
* greater than largest int112).
*
* Counterpart to Solidity's `int112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*
* _Available since v4.7._
*/
function toInt112(int256 value) internal pure returns (int112 downcasted) {
downcasted = int112(value);
require(downcasted == value, "SafeCast: value doesn't fit in 112 bits");
}
/**
* @dev Returns the downcasted int104 from int256, reverting on
* overflow (when the input is less than smallest int104 or
* greater than largest int104).
*
* Counterpart to Solidity's `int104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*
* _Available since v4.7._
*/
function toInt104(int256 value) internal pure returns (int104 downcasted) {
downcasted = int104(value);
require(downcasted == value, "SafeCast: value doesn't fit in 104 bits");
}
/**
* @dev Returns the downcasted int96 from int256, reverting on
* overflow (when the input is less than smallest int96 or
* greater than largest int96).
*
* Counterpart to Solidity's `int96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*
* _Available since v4.7._
*/
function toInt96(int256 value) internal pure returns (int96 downcasted) {
downcasted = int96(value);
require(downcasted == value, "SafeCast: value doesn't fit in 96 bits");
}
/**
* @dev Returns the downcasted int88 from int256, reverting on
* overflow (when the input is less than smallest int88 or
* greater than largest int88).
*
* Counterpart to Solidity's `int88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*
* _Available since v4.7._
*/
function toInt88(int256 value) internal pure returns (int88 downcasted) {
downcasted = int88(value);
require(downcasted == value, "SafeCast: value doesn't fit in 88 bits");
}
/**
* @dev Returns the downcasted int80 from int256, reverting on
* overflow (when the input is less than smallest int80 or
* greater than largest int80).
*
* Counterpart to Solidity's `int80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*
* _Available since v4.7._
*/
function toInt80(int256 value) internal pure returns (int80 downcasted) {
downcasted = int80(value);
require(downcasted == value, "SafeCast: value doesn't fit in 80 bits");
}
/**
* @dev Returns the downcasted int72 from int256, reverting on
* overflow (when the input is less than smallest int72 or
* greater than largest int72).
*
* Counterpart to Solidity's `int72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*
* _Available since v4.7._
*/
function toInt72(int256 value) internal pure returns (int72 downcasted) {
downcasted = int72(value);
require(downcasted == value, "SafeCast: value doesn't fit in 72 bits");
}
/**
* @dev Returns the downcasted int64 from int256, reverting on
* overflow (when the input is less than smallest int64 or
* greater than largest int64).
*
* Counterpart to Solidity's `int64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*
* _Available since v3.1._
*/
function toInt64(int256 value) internal pure returns (int64 downcasted) {
downcasted = int64(value);
require(downcasted == value, "SafeCast: value doesn't fit in 64 bits");
}
/**
* @dev Returns the downcasted int56 from int256, reverting on
* overflow (when the input is less than smallest int56 or
* greater than largest int56).
*
* Counterpart to Solidity's `int56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*
* _Available since v4.7._
*/
function toInt56(int256 value) internal pure returns (int56 downcasted) {
downcasted = int56(value);
require(downcasted == value, "SafeCast: value doesn't fit in 56 bits");
}
/**
* @dev Returns the downcasted int48 from int256, reverting on
* overflow (when the input is less than smallest int48 or
* greater than largest int48).
*
* Counterpart to Solidity's `int48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*
* _Available since v4.7._
*/
function toInt48(int256 value) internal pure returns (int48 downcasted) {
downcasted = int48(value);
require(downcasted == value, "SafeCast: value doesn't fit in 48 bits");
}
/**
* @dev Returns the downcasted int40 from int256, reverting on
* overflow (when the input is less than smallest int40 or
* greater than largest int40).
*
* Counterpart to Solidity's `int40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*
* _Available since v4.7._
*/
function toInt40(int256 value) internal pure returns (int40 downcasted) {
downcasted = int40(value);
require(downcasted == value, "SafeCast: value doesn't fit in 40 bits");
}
/**
* @dev Returns the downcasted int32 from int256, reverting on
* overflow (when the input is less than smallest int32 or
* greater than largest int32).
*
* Counterpart to Solidity's `int32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*
* _Available since v3.1._
*/
function toInt32(int256 value) internal pure returns (int32 downcasted) {
downcasted = int32(value);
require(downcasted == value, "SafeCast: value doesn't fit in 32 bits");
}
/**
* @dev Returns the downcasted int24 from int256, reverting on
* overflow (when the input is less than smallest int24 or
* greater than largest int24).
*
* Counterpart to Solidity's `int24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*
* _Available since v4.7._
*/
function toInt24(int256 value) internal pure returns (int24 downcasted) {
downcasted = int24(value);
require(downcasted == value, "SafeCast: value doesn't fit in 24 bits");
}
/**
* @dev Returns the downcasted int16 from int256, reverting on
* overflow (when the input is less than smallest int16 or
* greater than largest int16).
*
* Counterpart to Solidity's `int16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*
* _Available since v3.1._
*/
function toInt16(int256 value) internal pure returns (int16 downcasted) {
downcasted = int16(value);
require(downcasted == value, "SafeCast: value doesn't fit in 16 bits");
}
/**
* @dev Returns the downcasted int8 from int256, reverting on
* overflow (when the input is less than smallest int8 or
* greater than largest int8).
*
* Counterpart to Solidity's `int8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*
* _Available since v3.1._
*/
function toInt8(int256 value) internal pure returns (int8 downcasted) {
downcasted = int8(value);
require(downcasted == value, "SafeCast: value doesn't fit in 8 bits");
}
/**
* @dev Converts an unsigned uint256 into a signed int256.
*
* Requirements:
*
* - input must be less than or equal to maxInt256.
*
* _Available since v3.0._
*/
function toInt256(uint256 value) internal pure returns (int256) {
// Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
return int256(value);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)
pragma solidity ^0.8.0;
import "./Ownable.sol";
/**
* @dev Contract module which provides 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} and {acceptOwnership}.
*
* This module is used through inheritance. It will make available all functions
* from parent (Ownable).
*/
abstract contract Ownable2Step is Ownable {
address private _pendingOwner;
event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);
/**
* @dev Returns the address of the pending owner.
*/
function pendingOwner() public view virtual returns (address) {
return _pendingOwner;
}
/**
* @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual override onlyOwner {
_pendingOwner = newOwner;
emit OwnershipTransferStarted(owner(), newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual override {
delete _pendingOwner;
super._transferOwnership(newOwner);
}
/**
* @dev The new owner accepts the ownership transfer.
*/
function acceptOwnership() public virtual {
address sender = _msgSender();
require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
_transferOwnership(sender);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol)
pragma solidity ^0.8.8;
import "./ECDSA.sol";
import "../ShortStrings.sol";
import "../../interfaces/IERC5267.sol";
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
* they need in their contracts using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
* NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain
* separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the
* separator from the immutable values, which is cheaper than accessing a cached version in cold storage.
*
* _Available since v3.4._
*
* @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
*/
abstract contract EIP712 is IERC5267 {
using ShortStrings for *;
bytes32 private constant _TYPE_HASH =
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
// Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
// invalidate the cached domain separator if the chain id changes.
bytes32 private immutable _cachedDomainSeparator;
uint256 private immutable _cachedChainId;
address private immutable _cachedThis;
bytes32 private immutable _hashedName;
bytes32 private immutable _hashedVersion;
ShortString private immutable _name;
ShortString private immutable _version;
string private _nameFallback;
string private _versionFallback;
/**
* @dev Initializes the domain separator and parameter caches.
*
* The meaning of `name` and `version` is specified in
* https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
*
* - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
* - `version`: the current major version of the signing domain.
*
* NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
* contract upgrade].
*/
constructor(string memory name, string memory version) {
_name = name.toShortStringWithFallback(_nameFallback);
_version = version.toShortStringWithFallback(_versionFallback);
_hashedName = keccak256(bytes(name));
_hashedVersion = keccak256(bytes(version));
_cachedChainId = block.chainid;
_cachedDomainSeparator = _buildDomainSeparator();
_cachedThis = address(this);
}
/**
* @dev Returns the domain separator for the current chain.
*/
function _domainSeparatorV4() internal view returns (bytes32) {
if (address(this) == _cachedThis && block.chainid == _cachedChainId) {
return _cachedDomainSeparator;
} else {
return _buildDomainSeparator();
}
}
function _buildDomainSeparator() private view returns (bytes32) {
return keccak256(abi.encode(_TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));
}
/**
* @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
* function returns the hash of the fully encoded EIP712 message for this domain.
*
* This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
*
* ```solidity
* bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
* keccak256("Mail(address to,string contents)"),
* mailTo,
* keccak256(bytes(mailContents))
* )));
* address signer = ECDSA.recover(digest, signature);
* ```
*/
function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
}
/**
* @dev See {EIP-5267}.
*
* _Available since v4.9._
*/
function eip712Domain()
public
view
virtual
override
returns (
bytes1 fields,
string memory name,
string memory version,
uint256 chainId,
address verifyingContract,
bytes32 salt,
uint256[] memory extensions
)
{
return (
hex"0f", // 01111
_name.toStringWithFallback(_nameFallback),
_version.toStringWithFallback(_versionFallback),
block.chainid,
address(this),
bytes32(0),
new uint256[](0)
);
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.28;
/// @dev Minimum shares permanently locked to prevent first depositor attacks
uint256 constant MINIMUM_SHARE = 10 ** 3;
/// @dev Every interval, the system performs an epoch update to calculate and settle funding fees between traders
uint256 constant EPOCH_UPDATE_INTERVAL = 8 hours;
/// @dev Maximum seller token amount deviation in basis points (10%)
uint256 constant MAX_AMOUNT_DEVIATION_BPS = 1000;
/// @dev Maximum early withdrawal fee in basis points (10%)
uint256 constant MAX_EARLY_WITHDRAW_FEE_BIPS = 1000;
/// @dev Maximum widget fee in basis points (20%)
uint256 constant MAX_WIDGET_FEE_BIPS = 2000;
/// @dev Maximum decay exponentAdd commentMore actions
uint256 constant MAX_DECAY_EXPONENT = 3;
/// @dev Basis points denominator
uint256 constant BPS_DENOMINATOR = 10_000;
/// @dev The EIP-712 typeHash for Settle Market Maker Position Authorization.
bytes32 constant SETTLEMENT_REQUEST_SIGNATURE_HASH = keccak256(
"SettlementRequest(uint256 nonce,uint256 deadline,address trader,bytes32 positionUpdates,address recipient)"
);
/// @dev The EIP-712 typeHash for Remove Collateral Authorization.
bytes32 constant REMOVE_COLLATERAL_REQUEST_SIGNATURE_HASH =
keccak256("RemoveCollateralRequest(uint256 nonce,uint256 deadline,address trader,bytes32 tokens,address recipient)");
/// @dev The EIP-712 typeHash for Liquidation Authorization.
bytes32 constant LIQUIDATION_REQUEST_SIGNATURE_HASH = keccak256(
"LiquidationRequest(uint256 nonce,uint256 deadline,address trader,bytes32 positionUpdates,bytes32 claimCollaterals,address recipient)"
);
/// @dev The EIP-712 typeHash for Market Maker RFQ Quote Authorization.
bytes32 constant ORDER_SIGNATURE_HASH = keccak256(
"Order(uint256 nonce,address signer,address buyerToken,address sellerToken,uint256 buyerTokenAmount,uint256 sellerTokenAmount,uint256 deadlineTimestamp,uint256 decayStartTime,uint256 decayExponent,uint256 maxSlippageBps,bytes16 quoteId)"
);
/// @dev The EIP-712 typeHash for RFQ Quote Widget Authorization.
bytes32 constant RFQ_QUOTE_WIDGET_SIGNATURE_HASH =
keccak256("RFQTQuote(bytes32 quote,address widgetFeeRecipient,uint256 widgetFeeRate)");// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.28;
/// @title Custom error definitions for the protocol
/// @notice This library contains all the error definitions used throughout the contract
/// @dev The errors are arranged in alphabetical order
library ErrorsLib {
/// @notice Thrown when actual amount deviation exceeds 10%
error AmountDeviationExceeds();
/// @notice Thrown when deposit amount is below minimum required
error BelowMinimumDeposit();
/// @notice Thrown when epoch update is attempted before minimum interval
error EpochUpdateInCoolDown();
/// @notice Thrown when LP token exchange rate increases more than allowed
error ExchangeRateIncreaseTooMuch();
/// @notice Thrown when feature is paused
error FeaturePaused();
/// @notice Thrown when there are insufficient funding fees to withdraw
error InsufficientFundingFees();
/// @notice Thrown when LP token shares are insufficient
error InsufficientShares();
/// @notice Thrown when LP token underlying is insufficient
error InsufficientUnderlying();
/// @notice Thrown when there is insufficient WETH9 to unwrap
error InsufficientWETH9();
/// @notice Thrown when an amount parameter is invalid
error InvalidAmount();
/// @notice Thrown when decay exponent is invalid
error InvalidDecayExponent();
/// @notice Thrown when fee rate in basis points exceeds maximum (10000)
error InvalidFeeBips();
/// @notice Thrown when LP token address is invalid
error InvalidLPToken();
/// @notice Thrown when underlying are not supported in the credit vault
error InvalidUnderlying();
/// @notice Thrown when market (LP token) is invalid
error InvalidMarket();
/// @notice Thrown when position update amount is invalid
error InvalidPositionUpdateAmount();
/// @notice Thrown when the pool address is invalid Native pool
error InvalidNativePool();
/// @notice Thrown when signature verification fails
error InvalidSignature();
/// @notice Thrown when signer is not authorized
error InvalidSigner();
/// @notice Thrown when WETH9 unwrap amount is zero or exceeds balance
error InvalidWETH9Amount();
/// @notice Thrown when widget fee rate is invalid
error InvalidWidgetFeeRate();
/// @notice Thrown when liquidator and recipient are the same
error LiquidatorRecipientConflict();
/// @notice Thrown when nonce is used
error NonceUsed();
/// @notice Thrown when output amount is less than minimum required
error NotEnoughAmountOut(uint256 amountOut, uint256 amountOutMinimum);
/// @notice Thrown the address is not a trader or liquidator
error NotTraderOrLiquidator();
/// @notice Error when caller is not a trusted operator
error NotTrustedOperator();
/// @notice Thrown when there is no yield to distribute
error NoYieldToDistribute();
/// @notice Thrown when caller is not the credit pool
error OnlyCreditPool();
/// @notice Thrown when caller is not the credit vault
error OnlyCreditVault();
/// @notice Thrown when caller is not the epoch updater
error OnlyEpochUpdater();
/// @notice Thrown when caller is not the fee withdrawer
error OnlyFeeWithdrawer();
/// @notice Thrown when caller is not an authorized liquidator
error OnlyLiquidator();
/// @notice Thrown when caller is not an LP token
error OnlyLpToken();
/// @notice Thrown when caller is not the native router
error OnlyNativeRouter();
/// @notice Thrown when caller is not an authorized trader
error OnlyTrader();
/// @notice Thrown when caller is not the WETH9 contract
error OnlyWETH9();
/// @notice Thrown when arithmetic operation would overflow
error Overflow();
/// @notice Thrown when LP pool has no deposits yet
error PoolNotInitialized();
/// @notice Thrown when quote has expired
error QuoteExpired();
/// @notice Thrown when rebalance limit is exceeded
error RebalanceLimitExceeded();
/// @notice Thrown when request has expired
error RequestExpired();
/// @notice Thrown when token is already listed
error TokenAlreadyListed();
/// @notice Thrown when trader, settler and recipient are the same
error TraderRecipientConflict();
/// @notice Thrown when transfer is in cooldown period
error TransferInCooldown();
/// @notice Thrown when transfer to self
error TransferSelf();
/// @notice Thrown when transfer to current contract
error TransferToContract();
/// @notice Thrown when unexpected msg.value is sent
error UnexpectedMsgValue();
/// @notice Thrown when zero address is provided
error ZeroAddress();
/// @notice Thrown when amount is zero
error ZeroAmount();
/// @notice Thrown when input is zero or empty
error ZeroInput();
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.28;
import "openzeppelin/token/ERC20/IERC20.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC-20 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 {
/**
* @dev An operation with an ERC-20 token failed.
*/
error SafeERC20FailedOperation(address token);
/**
* @dev Indicates a failed `decreaseAllowance` request.
*/
error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);
/**
* @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.encodeCall(token.transfer, (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.encodeCall(token.transferFrom, (from, to, value)));
}
/**
* @dev Variant of {safeTransfer} that returns a bool instead of reverting if the operation is not successful.
*/
function trySafeTransfer(IERC20 token, address to, uint256 value) internal returns (bool) {
return _callOptionalReturnBool(token, abi.encodeCall(token.transfer, (to, value)));
}
/**
* @dev Variant of {safeTransferFrom} that returns a bool instead of reverting if the operation is not successful.
*/
function trySafeTransferFrom(IERC20 token, address from, address to, uint256 value) internal returns (bool) {
return _callOptionalReturnBool(token, abi.encodeCall(token.transferFrom, (from, to, value)));
}
function safeApprove(IERC20 token, address spender, uint256 value) internal {
forceApprove(token, 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.
*
* IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
* smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
* this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
* that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
forceApprove(token, spender, oldAllowance + value);
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
* value, non-reverting calls are assumed to be successful.
*
* IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
* smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
* this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
* that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
unchecked {
uint256 currentAllowance = token.allowance(address(this), spender);
if (currentAllowance < requestedDecrease) {
revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
}
forceApprove(token, spender, currentAllowance - requestedDecrease);
}
}
/**
* @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.
*
* NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function
* only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being
* set here.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @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 {_callOptionalReturnBool} that reverts if call fails to meet the requirements.
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
uint256 returnSize;
uint256 returnValue;
assembly ("memory-safe") {
let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
// bubble errors
if iszero(success) {
let ptr := mload(0x40)
returndatacopy(ptr, 0, returndatasize())
revert(ptr, returndatasize())
}
returnSize := returndatasize()
returnValue := mload(0)
}
if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @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 silently catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
bool success;
uint256 returnSize;
uint256 returnValue;
assembly ("memory-safe") {
success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
returnSize := returndatasize()
returnValue := mload(0)
}
return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.28;
interface ICreditVault {
function swapCallback(
address signer,
address sellerToken,
int256 amount0Delta,
address buyerToken,
int256 amount1Delta
) external;
/// @notice Struct for tracking daily rebalance limits per trader/liquidator and token
/// @param limit Daily rebalance limit
/// @param used Amount rebalanced today
/// @param lastDay Last rebalance day timestamp
struct RebalanceCap {
uint256 limit;
uint256 used;
uint256 lastDay;
}
/// @notice Epoch Funding fee updates for a specific trader
/// @param trader The address of the trader
/// @param feeUpdates Array of funding fee updates for different tokens
struct AccruedFundingFee {
address trader;
FundingFeeAmount[] feeUpdates;
}
/// @notice Details of funding and reserve fees for a specific token
/// @param token The unerlying token address
/// @param fundingFee Amount of fee distributed to LP holders
/// @param reserveFee Amount of fee reserved for the protocol
struct FundingFeeAmount {
address token;
uint256 fundingFee;
uint256 reserveFee;
}
/// @notice Represents a token amount with unsigned integer value
/// @param token The address of underlying token
/// @param amount The unsigned amount of tokens
struct TokenAmountUint {
address token;
uint256 amount;
}
/// @notice Represents a token amount with signed integer value (for positions)
/// @param token The address of underlying token
/// @param amount The signed amount (positive for long, negative for short)
struct TokenAmountInt {
address token;
int256 amount;
}
/// @notice Request parameters for position settlement
/// @param nonce Unique identifier to prevent replay attacks
/// @param deadline Timestamp after which the request expires
/// @param trader Address of the trader whose positions are being settled
/// @param positionUpdates Array of position changes to be settled
struct SettlementRequest {
uint256 nonce;
uint256 deadline;
address trader;
TokenAmountInt[] positionUpdates;
}
/// @notice Request parameters for collateral removal
/// @param nonce Unique identifier to prevent replay attacks
/// @param deadline Timestamp after which the request expires
/// @param trader Address of the trader removing collateral
/// @param tokens Array of collateral tokens to be removed
struct RemoveCollateralRequest {
uint256 nonce;
uint256 deadline;
address trader;
TokenAmountUint[] tokens;
}
/// @notice Request parameters for position liquidation
/// @param nonce Unique identifier to prevent replay attacks
/// @param deadline Timestamp after which the request expires
/// @param trader Address of the trader being liquidated
/// @param positionUpdates Array of position changes from liquidation
/// @param claimCollaterals Array of collateral tokens to be claimed
struct LiquidationRequest {
uint256 nonce;
uint256 deadline;
address trader;
TokenAmountInt[] positionUpdates;
TokenAmountUint[] claimCollaterals;
}
/// @notice Emitted when a new market (LP token) is listed
/// @param lpToken The address of the newly listed LP token
event MarketListed(address lpToken);
/// @notice Emitted when epoch funding fees are updated for traders
/// @param accruedFundingFees Array of funding fee updates for different traders
event EpochUpdated(AccruedFundingFee[] accruedFundingFees);
/// @notice Emitted when a trader's positions are repaid
/// @param trader The address of the trader whose positions are being repaid
/// @param repayments Array of token amounts being repaid
event Repaid(address trader, TokenAmountInt[] repayments);
/// @notice Emitted when a trader's positions are settled
/// @param trader The address of the trader whose positions are being settled
/// @param positionUpdates Array of position changes
event Settled(address trader, TokenAmountInt[] positionUpdates);
/// @notice Emitted when collateral is added for a trader
/// @param trader The address of the trader receiving collateral
/// @param collateralUpdates Array of collateral token amounts added
event CollateralAdded(address trader, TokenAmountUint[] collateralUpdates);
/// @notice Emitted when collateral is removed for a trader
/// @param trader The address of the trader removing collateral
/// @param collateralUpdates Array of collateral token amounts removed
event CollateralRemoved(address trader, TokenAmountUint[] collateralUpdates);
/// @notice Emitted when a trader's positions are liquidated
/// @param trader The address of the trader being liquidated
/// @param liquidator The address performing the liquidation
/// @param positionUpdates Array of position changes from liquidation
/// @param claimCollaterals Array of collateral tokens claimed by liquidator
event Liquidated(
address trader, address liquidator, TokenAmountInt[] positionUpdates, TokenAmountUint[] claimCollaterals
);
/// @notice Emitted when a credit pool's status is updated
/// @param pool The address of the credit pool
/// @param isActive The new status of the pool
event CreditPoolUpdated(address indexed pool, bool isActive);
/// @notice Emitted when a trader or liquidator's rebalance limit is updated for a token
/// @param operator The trader or liquidator address
/// @param token The token address
/// @param limit The new daily limit (0 means unlimited)
event RebalanceCapUpdated(address indexed operator, address indexed token, uint256 limit);
/// @notice Emitted when a trader's info is updated
/// @param trader The address of the trader whose info is being updated
/// @param isTrader Whether the address is enabled for trading
/// @param isWhitelistTrader Whether the trader can bypass credit checks
/// @param settler The address authorized to settle positions for this trader
/// @param recipient The address authorized to receive tokens from settlements
event TraderSet(address indexed trader, bool isTrader, bool isWhitelistTrader, address settler, address recipient);
/// @notice Emitted when liquidator is set
event LiquidatorSet(address liquidator, bool status);
/// @notice Emitted when signer is set
event SignerSet(address signer);
/// @notice Emitted when epoch updater is set
event EpochUpdaterSet(address epochUpdater);
/// @notice Emitted when fee withdrawer is set
event FeeWithdrawerSet(address feeWithdrawer);
/// @notice Emitted when reserve fees are withdrawn
event ReserveWithdrawn(address underlying, address recipient, uint256 amount);
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.28;
import {TStorage} from "./TStorage.sol";
// Refer from OpenZeppelin https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v5.1/contracts/utils/ReentrancyGuardTransient.sol
/**
* @dev Variant of {ReentrancyGuard} that uses transient storage.
*/
abstract contract ReentrancyGuardTransient {
using TStorage for bytes32;
// keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ReentrancyGuard")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant REENTRANCY_GUARD_STORAGE =
0x9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00;
/**
* @dev Unauthorized reentrant call.
*/
error ReentrancyGuardReentrantCall();
/**
* @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
if (_reentrancyGuardEntered()) {
revert ReentrancyGuardReentrantCall();
}
// Any calls to nonReentrant after this point will fail
REENTRANCY_GUARD_STORAGE.tstore(true);
}
function _nonReentrantAfter() private {
REENTRANCY_GUARD_STORAGE.tstore(false);
}
/**
* @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 REENTRANCY_GUARD_STORAGE.tload();
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.28;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable2Step} from "@openzeppelin/contracts/access/Ownable2Step.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {IERC20Metadata as IERC20} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "./libraries/ConstantsLib.sol";
import {CreditVault} from "./CreditVault.sol";
import {ErrorsLib} from "./libraries/ErrorsLib.sol";
import {ReentrancyGuardTransient} from "./libraries/ReentrancyGuardTransient.sol";
/// @title NativeLPToken - Yield-bearing LP token contract
/// @notice A token contract that represents liquidity provider positions and distributes yield
/// @dev This contract manages LP shares and underlying assets, accruing yield based on protocol revenue
contract NativeLPToken is ERC20, Ownable2Step, ReentrancyGuardTransient {
using SafeERC20 for IERC20;
/*//////////////////////////////////////////////////////////////////////////
STATE VARIABLES
//////////////////////////////////////////////////////////////////////////*/
/// @notice Whether deposit operations are paused
bool public depositPaused;
/// @notice Whether redeem operations are paused
bool public redeemPaused;
/// @notice The underlying token that this LP token represents
IERC20 public underlying;
/// @notice The address of the credit vault contract
address public creditVault;
/// @notice The number of decimals for this token, matching the underlying token's decimals
uint8 private _decimals;
/// @notice Total amount of underlying assets deposited by LPs
uint256 public totalUnderlying;
/// @notice Total number of shares issued
uint256 public totalShares;
/// @notice Early withdrawal fee in basis points (1 bip = 0.01%)
/// @dev Applied to prevent front-running by users who deposit right before yield distribution and immediately redeem after
uint256 public earlyWithdrawFeeBips;
/// @notice Accumulated early withdrawal fee
uint256 public accEarlyWithdrawFee;
/// @notice Minimum time interval between deposit and redeem (in seconds)
uint256 public minRedeemInterval;
/// @notice Minimum amount required for deposits
uint256 public minDeposit;
/// @notice Mapping of user addresses to their share balances
mapping(address => uint256) public shares;
/// @notice Mapping of trusted operators who can call depositFor and redeemTo functions
mapping(address => bool) public trustedOperators;
/// @notice Mapping of user addresses to their last deposit timestamp
mapping(address => uint256) public lastDepositTimestamp;
/// @notice Mapping of addresses exempt from redeem cooldown period and early withdrawal fees
mapping(address => bool) public redeemCooldownExempt;
/*//////////////////////////////////////////////////////////////////////////
EVENTS
//////////////////////////////////////////////////////////////////////////*/
/// @notice Event emitted when deposit operation is paused
event DepositPaused();
/// @notice Event emitted when deposit operation is unpaused
event DepositUnpaused();
/// @notice Event emitted when redeem operation is paused
event RedeemPaused();
/// @notice Event emitted when redeem operation is unpaused
event RedeemUnpaused();
/// @notice Event emitted when yield is distributed to LP holders
event YieldDistributed(uint256 yieldAmount);
/// @notice Event emitted when minimum redeem interval is updated
event MinRedeemIntervalUpdated(uint256 newInterval);
/// @notice Event emitted when shares are transferred between addresses
event TransferShares(address indexed from, address indexed to, uint256 shares);
/// @notice Event emitted when new shares are minted
event SharesMinted(address indexed from, address indexed to, uint256 shares, uint256 underlyingAmount);
/// @notice Event emitted when shares are burned
event SharesBurned(address indexed from, address indexed to, uint256 shares, uint256 underlyingAmount);
/// @notice Event emitted when minimum deposit amount is updated
event MinDepositUpdated(uint256 oldAmount, uint256 newAmount);
/// @notice Event emitted when early withdraw fee is updated
event EarlyWithdrawFeeBipsUpdated(uint256 oldFeeBips, uint256 newFeeBips);
/// @notice Event emitted when a trusted operator status is updated
event TrustedOperatorUpdated(address indexed account, bool status);
/// @notice Event emitted when an address's redeem cooldown exemption status is updated
event RedeemCooldownExemptUpdated(address indexed account, bool status);
/// @notice Event emitted when early withdrawal fees are withdrawn
event EarlyWithdrawFeeWithdrawn(address indexed recipient, uint256 amount);
/*//////////////////////////////////////////////////////////////////////////
CONSTRUCTOR
//////////////////////////////////////////////////////////////////////////*/
constructor(
string memory _name,
string memory _symbol,
address _underlying,
address _creditVault
) ERC20(_name, _symbol) {
underlying = IERC20(_underlying);
creditVault = _creditVault;
_decimals = IERC20(address(underlying)).decimals();
}
/// @notice Deposit underlying tokens to mint LP tokens
/// @param amount Amount of underlying tokens to deposit
/// @return sharesToMint Amount of LP tokens minted
function deposit(uint256 amount)
external
nonReentrant
whenNotPaused(depositPaused)
returns (uint256 sharesToMint)
{
sharesToMint = _deposit(msg.sender, msg.sender, amount);
}
/// @notice Deposit underlying tokens on behalf of another address
/// @param to The address to mint shares to
/// @param amount Amount of underlying tokens to deposit
/// @return sharesToMint Amount of LP tokens minted
function depositFor(
address to,
uint256 amount
) external nonReentrant whenNotPaused(depositPaused) returns (uint256 sharesToMint) {
require(to != address(0), ErrorsLib.ZeroAddress());
require(trustedOperators[msg.sender], ErrorsLib.NotTrustedOperator());
sharesToMint = _deposit(msg.sender, to, amount);
}
/// @notice Redeem LP tokens for underlying tokens
/// @param sharesToBurn Amount of LP tokens to burn
/// @return underlyingAmount Amount of underlying tokens received
function redeem(uint256 sharesToBurn)
external
nonReentrant
whenNotPaused(redeemPaused)
returns (uint256 underlyingAmount)
{
underlyingAmount = _redeem(sharesToBurn, msg.sender);
}
/// @notice Redeem LP tokens and send underlying tokens to a specified address
/// @param sharesToBurn Amount of LP tokens to burn from caller's balance
/// @param to Address that will receive the underlying tokens
/// @return underlyingAmount Amount of underlying tokens sent to the recipient
function redeemTo(
uint256 sharesToBurn,
address to
) external nonReentrant whenNotPaused(redeemPaused) returns (uint256 underlyingAmount) {
require(to != address(0), ErrorsLib.ZeroAddress());
require(trustedOperators[msg.sender], ErrorsLib.NotTrustedOperator());
underlyingAmount = _redeem(sharesToBurn, to);
}
/// @notice Transfers shares from sender to recipient
/// @param recipient The address to transfer shares to
/// @param sharesAmount The number of shares to transfer
/// @return The amount of underlying tokens the shares represent
function transferShares(address recipient, uint256 sharesAmount) external returns (uint256) {
_transferShares(msg.sender, recipient, sharesAmount);
uint256 tokensAmount = getUnderlyingByShares(sharesAmount);
_emitTransferEvents(msg.sender, recipient, tokensAmount, sharesAmount);
return tokensAmount;
}
/// @notice Distributes yield to LP token holders
/// @param yieldAmount Amount of yield to distribute
/// @dev Can only be called by the credit vault
function distributeYield(uint256 yieldAmount) external {
require(totalShares > 0, ErrorsLib.PoolNotInitialized());
require(yieldAmount > 0, ErrorsLib.NoYieldToDistribute());
require(msg.sender == creditVault, ErrorsLib.OnlyCreditVault());
totalUnderlying += yieldAmount;
emit YieldDistributed(yieldAmount);
}
/// @notice Gets the underlying token balance of an account
/// @param account The address to check the balance for
/// @return The amount of underlying tokens the account effectively owns
function balanceOf(address account) public view override returns (uint256) {
return getUnderlyingByShares(shares[account]);
}
/// @notice Gets the total supply of underlying tokens in the pool
/// @return The total amount of underlying tokens managed by this contract
function totalSupply() public view override returns (uint256) {
return totalUnderlying;
}
/// @notice Gets the number of shares owned by an account
/// @param account The address to check shares for
/// @return The number of shares owned by the account
function sharesOf(address account) public view returns (uint256) {
return shares[account];
}
/// @notice Calculates the underlying token amount for a given number of shares
/// @param sharesAmount The number of shares to convert
/// @return The corresponding amount of underlying tokens
function getUnderlyingByShares(uint256 sharesAmount) public view returns (uint256) {
if (totalShares == 0) {
return sharesAmount;
}
return (sharesAmount * totalUnderlying) / totalShares;
}
/// @notice Calculates the number of shares for a given amount of underlying tokens
/// @param underlyingAmount The amount of underlying tokens to convert
/// @return The corresponding number of shares
function getSharesByUnderlying(uint256 underlyingAmount) public view returns (uint256) {
if (totalShares == 0) {
return underlyingAmount;
}
return (underlyingAmount * totalShares) / totalUnderlying;
}
/// @notice Gets the current exchange rate between shares and underlying tokens
/// @return The exchange rate scaled by 1e18 (1:1 = 1e18)
function exchangeRate() public view returns (uint256) {
if (totalShares == 0) {
return 1e18; // Initial exchange rate 1:1
}
return (totalUnderlying * 1e18) / totalShares;
}
/// @notice Gets the number of decimals for this token
/// @return The number of decimals, matching the underlying token
function decimals() public view override returns (uint8) {
return _decimals;
}
/*//////////////////////////////////////////////////////////////////////////
OWNER ONLY OPERATIONS
//////////////////////////////////////////////////////////////////////////*/
/// @notice Sets the minimum deposit amount
/// @param _minDeposit New minimum deposit amount
/// @dev Can only be called by the owner
function setMinDeposit(uint256 _minDeposit) external onlyOwner {
uint256 oldAmount = minDeposit;
minDeposit = _minDeposit;
emit MinDepositUpdated(oldAmount, _minDeposit);
}
/// @notice Sets the minimum time interval required between deposit and redeem
/// @param _interval New minimum interval in seconds
/// @dev Can only be called by the owner
function setMinRedeemInterval(uint256 _interval) external onlyOwner {
minRedeemInterval = _interval;
emit MinRedeemIntervalUpdated(_interval);
}
/// @notice Sets the early withdrawal fee in basis points (BIPs)
/// @param _earlyWithdrawFeeBips New early withdrawal fee in BIPs
/// @dev Can only be called by the owner
function setEarlyWithdrawFeeBips(uint256 _earlyWithdrawFeeBips) external onlyOwner {
require(_earlyWithdrawFeeBips <= MAX_EARLY_WITHDRAW_FEE_BIPS, ErrorsLib.InvalidFeeBips());
uint256 oldFeeBips = earlyWithdrawFeeBips;
earlyWithdrawFeeBips = _earlyWithdrawFeeBips;
emit EarlyWithdrawFeeBipsUpdated(oldFeeBips, _earlyWithdrawFeeBips);
}
/// @notice Sets the trusted operator status for multiple addresses
/// @param accounts The addresses to update
/// @param statuses The new operator statuses corresponding to each account
function setTrustedOperator(address[] calldata accounts, bool[] calldata statuses) external onlyOwner {
for (uint256 i = 0; i < accounts.length; i++) {
require(accounts[i] != address(0), ErrorsLib.ZeroAddress());
trustedOperators[accounts[i]] = statuses[i];
emit TrustedOperatorUpdated(accounts[i], statuses[i]);
}
}
/// @notice Sets the redeem cooldown exemption status for multiple addresses
/// @param accounts The addresses to update
/// @param statuses The new exemption statuses corresponding to each account
/// @dev Can only be called by the owner
function setRedeemCooldownExempt(address[] calldata accounts, bool[] calldata statuses) external onlyOwner {
for (uint256 i = 0; i < accounts.length; i++) {
require(accounts[i] != address(0), ErrorsLib.ZeroAddress());
redeemCooldownExempt[accounts[i]] = statuses[i];
emit RedeemCooldownExemptUpdated(accounts[i], statuses[i]);
}
}
/// @notice Withdraws accumulated early withdrawal fees
/// @param recipient The address to receive the withdrawn fees
function withdrawEarlyFees(address recipient) external onlyOwner {
require(recipient != address(0), ErrorsLib.ZeroAddress());
// Transfer fees from credit vault to recipient
CreditVault(creditVault).pay(recipient, accEarlyWithdrawFee);
emit EarlyWithdrawFeeWithdrawn(recipient, accEarlyWithdrawFee);
accEarlyWithdrawFee = 0;
}
/*//////////////////////////////////////////////////////////////////////////
PAUSE OPERATIONS
//////////////////////////////////////////////////////////////////////////*/
/// @notice Function to pause deposit operation
function pauseDeposit() external onlyOwner {
depositPaused = true;
emit DepositPaused();
}
/// @notice Function to unpause deposit operation
function unpauseDeposit() external onlyOwner {
depositPaused = false;
emit DepositUnpaused();
}
/// @notice Function to pause redeem operation
function pauseRedeem() external onlyOwner {
redeemPaused = true;
emit RedeemPaused();
}
/// @notice Function to unpause redeem operation
function unpauseRedeem() external onlyOwner {
redeemPaused = false;
emit RedeemUnpaused();
}
modifier whenNotPaused(bool feature) {
if (feature) {
revert ErrorsLib.FeaturePaused();
}
_;
}
/*//////////////////////////////////////////////////////////////////////////
INTERNAL FUNCTIONS
//////////////////////////////////////////////////////////////////////////*/
function _deposit(address from, address to, uint256 amount) internal returns (uint256 sharesToMint) {
require(amount >= minDeposit && amount > 0, ErrorsLib.BelowMinimumDeposit());
// Transfer underlying to vault
uint256 balanceBefore = underlying.balanceOf(creditVault);
underlying.safeTransferFrom(from, creditVault, amount);
amount = underlying.balanceOf(creditVault) - balanceBefore;
// Calculate shares to mint
if (totalShares == 0) {
// Lock 1000 shares from first depositor to prevent inflation attack
_mintShares(address(0), MINIMUM_SHARE);
sharesToMint = amount - MINIMUM_SHARE;
} else {
sharesToMint = (amount * totalShares) / totalUnderlying;
}
// Mint shares
_mintShares(to, sharesToMint);
// Update total underlying
totalUnderlying += amount;
lastDepositTimestamp[to] = block.timestamp;
emit SharesMinted(from, to, sharesToMint, amount);
}
function _redeem(uint256 sharesToBurn, address to) internal returns (uint256 underlyingAmount) {
require(sharesToBurn > 0, ErrorsLib.ZeroAmount());
require(shares[msg.sender] >= sharesToBurn, ErrorsLib.InsufficientShares());
// Calculate underlying amount
uint256 grossUnderlyingAmount = (sharesToBurn * totalUnderlying) / totalShares;
underlyingAmount = grossUnderlyingAmount;
if (
block.timestamp < lastDepositTimestamp[msg.sender] + minRedeemInterval && earlyWithdrawFeeBips > 0
&& !redeemCooldownExempt[msg.sender]
) {
uint256 fee = (underlyingAmount * earlyWithdrawFeeBips) / 10_000;
accEarlyWithdrawFee += fee;
underlyingAmount -= fee;
}
// Burn shares first
_burnShares(msg.sender, sharesToBurn);
// Transfer underlying from vault to msg.sender
CreditVault(creditVault).pay(to, underlyingAmount);
// Update total underlying
totalUnderlying -= grossUnderlyingAmount;
emit SharesBurned(msg.sender, to, sharesToBurn, grossUnderlyingAmount);
}
function _mintShares(address to, uint256 shareAmount) internal {
require(shareAmount > 0, ErrorsLib.ZeroAmount());
shares[to] += shareAmount;
totalShares += shareAmount;
}
function _burnShares(address from, uint256 shareAmount) internal {
require(shareAmount > 0, ErrorsLib.ZeroAmount());
require(from != address(0), ErrorsLib.ZeroAddress());
shares[from] -= shareAmount;
totalShares -= shareAmount;
}
/// @notice Override ERC20's _transfer to handle yield-bearing LP token transfers
/// @dev Since this is a yield-bearing token, the actual transfer is done by transferring shares
/// rather than token amounts directly. The shares represent the user's proportion of the
/// total underlying assets including yield.
/// @param from The address to transfer from
/// @param to The address to transfer to
/// @param amount The underlying token amount to transfer
function _transfer(address from, address to, uint256 amount) internal override {
uint256 sharesToTransfer = getSharesByUnderlying(amount);
_transferShares(from, to, sharesToTransfer);
_emitTransferEvents(from, to, amount, sharesToTransfer);
}
function _transferShares(address from, address to, uint256 _shares) internal {
require(from != address(0) && to != address(0), ErrorsLib.ZeroAddress());
require(from != to, ErrorsLib.TransferSelf());
require(to != address(this), ErrorsLib.TransferToContract());
_validateTransferCooldown(from);
shares[from] -= _shares;
shares[to] += _shares;
}
function _validateTransferCooldown(address user) internal view {
// During cooldown period, user can't transfer shares, but can still redeem
require(
lastDepositTimestamp[user] + minRedeemInterval <= block.timestamp || redeemCooldownExempt[user],
ErrorsLib.TransferInCooldown()
);
}
function _emitTransferEvents(address from, address to, uint256 tokenAmount, uint256 sharesAmount) internal {
emit Transfer(from, to, tokenAmount);
emit TransferShares(from, to, sharesAmount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
import "../Strings.sol";
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV // Deprecated in v4.8
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
/// @solidity memory-safe-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
uint8 v = uint8((uint256(vs) >> 255) + 27);
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, "\x19Ethereum Signed Message:\n32")
mstore(0x1c, hash)
message := keccak256(0x00, 0x3c)
}
}
/**
* @dev Returns an Ethereum Signed Message, created from `s`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, "\x19\x01")
mstore(add(ptr, 0x02), domainSeparator)
mstore(add(ptr, 0x22), structHash)
data := keccak256(ptr, 0x42)
}
}
/**
* @dev Returns an Ethereum Signed Data with intended validator, created from a
* `validator` and `data` according to the version 0 of EIP-191.
*
* See {recover}.
*/
function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x00", validator, data));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol)
pragma solidity ^0.8.8;
import "./StorageSlot.sol";
// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
// | length | 0x BB |
type ShortString is bytes32;
/**
* @dev This library provides functions to convert short memory strings
* into a `ShortString` type that can be used as an immutable variable.
*
* Strings of arbitrary length can be optimized using this library if
* they are short enough (up to 31 bytes) by packing them with their
* length (1 byte) in a single EVM word (32 bytes). Additionally, a
* fallback mechanism can be used for every other case.
*
* Usage example:
*
* ```solidity
* contract Named {
* using ShortStrings for *;
*
* ShortString private immutable _name;
* string private _nameFallback;
*
* constructor(string memory contractName) {
* _name = contractName.toShortStringWithFallback(_nameFallback);
* }
*
* function name() external view returns (string memory) {
* return _name.toStringWithFallback(_nameFallback);
* }
* }
* ```
*/
library ShortStrings {
// Used as an identifier for strings longer than 31 bytes.
bytes32 private constant _FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;
error StringTooLong(string str);
error InvalidShortString();
/**
* @dev Encode a string of at most 31 chars into a `ShortString`.
*
* This will trigger a `StringTooLong` error is the input string is too long.
*/
function toShortString(string memory str) internal pure returns (ShortString) {
bytes memory bstr = bytes(str);
if (bstr.length > 31) {
revert StringTooLong(str);
}
return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));
}
/**
* @dev Decode a `ShortString` back to a "normal" string.
*/
function toString(ShortString sstr) internal pure returns (string memory) {
uint256 len = byteLength(sstr);
// using `new string(len)` would work locally but is not memory safe.
string memory str = new string(32);
/// @solidity memory-safe-assembly
assembly {
mstore(str, len)
mstore(add(str, 0x20), sstr)
}
return str;
}
/**
* @dev Return the length of a `ShortString`.
*/
function byteLength(ShortString sstr) internal pure returns (uint256) {
uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;
if (result > 31) {
revert InvalidShortString();
}
return result;
}
/**
* @dev Encode a string into a `ShortString`, or write it to storage if it is too long.
*/
function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {
if (bytes(value).length < 32) {
return toShortString(value);
} else {
StorageSlot.getStringSlot(store).value = value;
return ShortString.wrap(_FALLBACK_SENTINEL);
}
}
/**
* @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
*/
function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {
if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {
return toString(value);
} else {
return store;
}
}
/**
* @dev Return the length of a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
*
* WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of
* actual characters as the UTF-8 encoding of a single character can span over multiple bytes.
*/
function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {
if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {
return byteLength(value);
} else {
return bytes(store).length;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol)
pragma solidity ^0.8.0;
interface IERC5267 {
/**
* @dev MAY be emitted to signal that the domain could have changed.
*/
event EIP712DomainChanged();
/**
* @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
* signature.
*/
function eip712Domain()
external
view
returns (
bytes1 fields,
string memory name,
string memory version,
uint256 chainId,
address verifyingContract,
bytes32 salt,
uint256[] memory extensions
);
}// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.28;
/// @title Transient storage utils
library TStorage {
/// @notice Loads a boolean value from transient storage at a given slot.
/// @param slot The storage slot to read from.
/// @return value The boolean value stored at the specified slot.
function tload(bytes32 slot) internal view returns (bool value) {
assembly {
value := tload(slot)
}
}
/// @notice Stores a boolean value in transient storage at a given slot.
/// @param slot The storage slot to write to.
/// @param value The boolean value to store at the specified slot.
function tstore(bytes32 slot, bool value) internal {
assembly {
tstore(slot, value)
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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 ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the 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 {}
}// 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 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.4) (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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return keccak256(bytes(a)) == keccak256(bytes(b));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/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 StorageSlot {
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.4) (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.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
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].
*
* CAUTION: See Security Considerations above.
*/
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) (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 (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);
}
}
}{
"remappings": [
"forge-std/=lib/forge-std/src/",
"@openzeppelin/=lib/openzeppelin-contracts/",
"@permit2/=lib/permit2/src/",
"solmate/=lib/solmate/",
"ds-test/=lib/solmate/lib/ds-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
"forge-gas-snapshot/=lib/permit2/lib/forge-gas-snapshot/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"openzeppelin/=lib/openzeppelin-contracts/contracts/",
"permit2/=lib/permit2/"
],
"optimizer": {
"enabled": true,
"runs": 2000000
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "cancun",
"viaIR": false,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"EpochUpdateInCoolDown","type":"error"},{"inputs":[],"name":"ExchangeRateIncreaseTooMuch","type":"error"},{"inputs":[],"name":"InsufficientFundingFees","type":"error"},{"inputs":[],"name":"InsufficientUnderlying","type":"error"},{"inputs":[],"name":"InvalidLPToken","type":"error"},{"inputs":[],"name":"InvalidMarket","type":"error"},{"inputs":[],"name":"InvalidPositionUpdateAmount","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"InvalidUnderlying","type":"error"},{"inputs":[],"name":"LiquidatorRecipientConflict","type":"error"},{"inputs":[],"name":"NonceUsed","type":"error"},{"inputs":[],"name":"NotTraderOrLiquidator","type":"error"},{"inputs":[],"name":"OnlyCreditPool","type":"error"},{"inputs":[],"name":"OnlyEpochUpdater","type":"error"},{"inputs":[],"name":"OnlyFeeWithdrawer","type":"error"},{"inputs":[],"name":"OnlyLiquidator","type":"error"},{"inputs":[],"name":"OnlyLpToken","type":"error"},{"inputs":[],"name":"OnlyTrader","type":"error"},{"inputs":[],"name":"RebalanceLimitExceeded","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"RequestExpired","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"inputs":[],"name":"TokenAlreadyListed","type":"error"},{"inputs":[],"name":"TraderRecipientConflict","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"trader","type":"address"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"indexed":false,"internalType":"struct ICreditVault.TokenAmountUint[]","name":"collateralUpdates","type":"tuple[]"}],"name":"CollateralAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"trader","type":"address"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"indexed":false,"internalType":"struct ICreditVault.TokenAmountUint[]","name":"collateralUpdates","type":"tuple[]"}],"name":"CollateralRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"CreditPoolUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"address","name":"trader","type":"address"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"fundingFee","type":"uint256"},{"internalType":"uint256","name":"reserveFee","type":"uint256"}],"internalType":"struct ICreditVault.FundingFeeAmount[]","name":"feeUpdates","type":"tuple[]"}],"indexed":false,"internalType":"struct ICreditVault.AccruedFundingFee[]","name":"accruedFundingFees","type":"tuple[]"}],"name":"EpochUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"epochUpdater","type":"address"}],"name":"EpochUpdaterSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"feeWithdrawer","type":"address"}],"name":"FeeWithdrawerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"trader","type":"address"},{"indexed":false,"internalType":"address","name":"liquidator","type":"address"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"int256","name":"amount","type":"int256"}],"indexed":false,"internalType":"struct ICreditVault.TokenAmountInt[]","name":"positionUpdates","type":"tuple[]"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"indexed":false,"internalType":"struct ICreditVault.TokenAmountUint[]","name":"claimCollaterals","type":"tuple[]"}],"name":"Liquidated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"liquidator","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"LiquidatorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"lpToken","type":"address"}],"name":"MarketListed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"limit","type":"uint256"}],"name":"RebalanceCapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"trader","type":"address"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"int256","name":"amount","type":"int256"}],"indexed":false,"internalType":"struct ICreditVault.TokenAmountInt[]","name":"repayments","type":"tuple[]"}],"name":"Repaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"underlying","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReserveWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"trader","type":"address"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"int256","name":"amount","type":"int256"}],"indexed":false,"internalType":"struct ICreditVault.TokenAmountInt[]","name":"positionUpdates","type":"tuple[]"}],"name":"Settled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"SignerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"trader","type":"address"},{"indexed":false,"internalType":"bool","name":"isTrader","type":"bool"},{"indexed":false,"internalType":"bool","name":"isWhitelistTrader","type":"bool"},{"indexed":false,"internalType":"address","name":"settler","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"TraderSet","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ICreditVault.TokenAmountUint[]","name":"tokens","type":"tuple[]"},{"internalType":"address","name":"trader","type":"address"}],"name":"addCollateral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allLPTokens","outputs":[{"internalType":"contract NativeLPToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"collateral","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"creditPools","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"trader","type":"address"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"fundingFee","type":"uint256"},{"internalType":"uint256","name":"reserveFee","type":"uint256"}],"internalType":"struct ICreditVault.FundingFeeAmount[]","name":"feeUpdates","type":"tuple[]"}],"internalType":"struct ICreditVault.AccruedFundingFee[]","name":"accruedFees","type":"tuple[]"}],"name":"epochUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"epochUpdater","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeWithdrawer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastEpochUpdateTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"trader","type":"address"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"int256","name":"amount","type":"int256"}],"internalType":"struct ICreditVault.TokenAmountInt[]","name":"positionUpdates","type":"tuple[]"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ICreditVault.TokenAmountUint[]","name":"claimCollaterals","type":"tuple[]"}],"internalType":"struct ICreditVault.LiquidationRequest","name":"request","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"liquidate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidatorToRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidators","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lpTokens","outputs":[{"internalType":"contract NativeLPToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nonces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"pay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"positions","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"rebalanceCaps","outputs":[{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"uint256","name":"used","type":"uint256"},{"internalType":"uint256","name":"lastDay","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"trader","type":"address"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ICreditVault.TokenAmountUint[]","name":"tokens","type":"tuple[]"}],"internalType":"struct ICreditVault.RemoveCollateralRequest","name":"request","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"removeCollateral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"int256","name":"amount","type":"int256"}],"internalType":"struct ICreditVault.TokenAmountInt[]","name":"positionUpdates","type":"tuple[]"},{"internalType":"address","name":"trader","type":"address"}],"name":"repay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reserveFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ICreditVault.TokenAmountUint[]","name":"tokens","type":"tuple[]"},{"internalType":"address","name":"pool","type":"address"}],"name":"setAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setCreditPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_epochUpdater","type":"address"}],"name":"setEpochUpdater","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_feeWithdrawer","type":"address"}],"name":"setFeeWithdrawer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setLiquidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setRebalanceCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"trader","type":"address"},{"internalType":"address","name":"settler","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bool","name":"isTrader","type":"bool"},{"internalType":"bool","name":"isWhitelistTrader","type":"bool"}],"name":"setTrader","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"trader","type":"address"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"int256","name":"amount","type":"int256"}],"internalType":"struct ICreditVault.TokenAmountInt[]","name":"positionUpdates","type":"tuple[]"}],"internalType":"struct ICreditVault.SettlementRequest","name":"request","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"settle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract NativeLPToken","name":"lpToken","type":"address"}],"name":"supportMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"supportedMarkets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"trader","type":"address"},{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"int256","name":"amountIn","type":"int256"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"int256","name":"amountOut","type":"int256"}],"name":"swapCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"traderToRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"traderToSettler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"traders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistTraders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"underlying","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawReserve","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
610160604052348015610010575f5ffd5b50604080518082018252601381527f4e617469766520437265646974205661756c7400000000000000000000000000602080830191909152825180840190935260018352603160f81b9083015290610068825f61011a565b6101205261007781600161011a565b61014052815160208084019190912060e052815190820120610100524660a05261010360e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b60805250503060c0526101153361014c565b6103a9565b5f6020835110156101355761012e83610168565b9050610146565b816101408482610297565b5060ff90505b92915050565b600380546001600160a01b0319169055610165816101ae565b50565b5f5f829050601f8151111561019b578260405163305a27a960e01b81526004016101929190610351565b60405180910390fd5b80516101a682610386565b179392505050565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061022757607f821691505b60208210810361024557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561029257805f5260205f20601f840160051c810160208510156102705750805b601f840160051c820191505b8181101561028f575f815560010161027c565b50505b505050565b81516001600160401b038111156102b0576102b06101ff565b6102c4816102be8454610213565b8461024b565b6020601f8211600181146102f6575f83156102df5750848201515b5f19600385901b1c1916600184901b17845561028f565b5f84815260208120601f198516915b828110156103255787850151825560209485019460019092019101610305565b508482101561034257868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80516020808301519190811015610245575f1960209190910360031b1b16919050565b60805160a05160c05160e051610100516101205161014051614edb6103fa5f395f611abf01525f611a9501525f613f0601525f613ede01525f613e3901525f613e6301525f613e8d0152614edb5ff3fe608060405234801561000f575f5ffd5b50600436106102d7575f3560e01c806379ba509711610187578063b17b658d116100dd578063cab4f84c11610093578063f2fde38b1161006e578063f2fde38b14610784578063f6d95efd14610797578063f90cdb36146107cc575f5ffd5b8063cab4f84c14610729578063cc218ece1461073c578063e30c397814610766575f5ffd5b8063b7477674116100c3578063b7477674146106af578063c2b7307614610703578063c407687614610716575f5ffd5b8063b17b658d14610667578063b6bdff031461069c575f5ffd5b806392a88fa21161013d578063abb49f1911610118578063abb49f1914610622578063ae1914f814610635578063b0ab63ec14610648575f5ffd5b806392a88fa2146105da57806398221e94146105fc5780639be41fdb1461060f575f5ffd5b806384b0196e1161016d57806384b0196e1461058e5780638da5cb5b146105a95780639246261c146105c7575f5ffd5b806379ba50971461057357806381377bfd1461057b575f5ffd5b806341b1fa761161023c5780634e293ee9116101f2578063715018a6116101cd578063715018a6146105455780637362ecbe1461054d57806373eb513314610560575f5ffd5b80634e293ee9146104ff5780634f487eb8146105125780636c19e78314610532575f5ffd5b8063464b38bc11610222578063464b38bc1461049557806347de43e2146104c25780634bd21445146104d5575f5ffd5b806341b1fa761461043e578063422e0af014610460575f5ffd5b8063141a468c1161029157806320761fc41161027757806320761fc4146103dc578063238ac933146103fe57806332b4fa6b1461041e575f5ffd5b8063141a468c146103a75780631e777ad3146103c9575f5ffd5b80630d2a7ae8116102c15780630d2a7ae8146103035780630dfbe91b146103625780631241177214610394575f5ffd5b8062fc59c0146102db578063097a8ec4146102f0575b5f5ffd5b6102ee6102e93660046142e9565b6107ee565b005b6102ee6102fe36600461430b565b6108bd565b6103386103113660046142e9565b60116020525f908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6103846103703660046142e9565b60086020525f908152604090205460ff1681565b6040519015158152602001610359565b6102ee6103a2366004614387565b610a4b565b6103846103b53660046143f4565b600c6020525f908152604090205460ff1681565b6102ee6103d736600461444c565b610e9b565b6103846103ea3660046142e9565b600f6020525f908152604090205460ff1681565b6005546103389073ffffffffffffffffffffffffffffffffffffffff1681565b6004546103389073ffffffffffffffffffffffffffffffffffffffff1681565b61038461044c3660046142e9565b60136020525f908152604090205460ff1681565b61033861046e3660046142e9565b60126020525f908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6104b46104a33660046142e9565b60096020525f908152604090205481565b604051908152602001610359565b6102ee6104d03660046144b3565b610fac565b6104b46104e33660046144f7565b600d60209081525f928352604080842090915290825290205481565b6102ee61050d366004614544565b61114d565b6006546103389073ffffffffffffffffffffffffffffffffffffffff1681565b6102ee6105403660046142e9565b6114b4565b6102ee61157c565b6102ee61055b366004614594565b61158f565b6102ee61056e3660046142e9565b6116fe565b6102ee6117c6565b6102ee61058936600461444c565b611880565b610596611a88565b6040516103599796959493929190614637565b60025473ffffffffffffffffffffffffffffffffffffffff16610338565b6103386105d53660046143f4565b611b2a565b6103846105e83660046142e9565b60106020525f908152604090205460ff1681565b6102ee61060a3660046146f6565b611b5f565b6102ee61061d366004614544565b61213f565b6102ee610630366004614767565b6123f3565b6102ee61064336600461430b565b6124d1565b6104b46106563660046142e9565b600a6020525f908152604090205481565b6103386106753660046142e9565b600b6020525f908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6102ee6106aa36600461444c565b61267d565b6106e86106bd3660046144f7565b601660209081525f928352604080842090915290825290208054600182015460029092015490919083565b60408051938452602084019290925290820152606001610359565b6102ee61071136600461479a565b612893565b6102ee610724366004614801565b612acb565b6102ee6107373660046142e9565b612c4c565b6104b461074a3660046144f7565b600e60209081525f928352604080842090915290825290205481565b60035473ffffffffffffffffffffffffffffffffffffffff16610338565b6102ee6107923660046142e9565b612f65565b6103386107a53660046142e9565b60156020525f908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6103846107da3660046142e9565b60146020525f908152604090205460ff1681565b6107f6613015565b73ffffffffffffffffffffffffffffffffffffffff8116610843576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f15d0b1a02a4902c4788ceda199eb43e4a753d86c0dbb7412e8ba63feecb070fa906020015b60405180910390a150565b6108c5613015565b73ffffffffffffffffffffffffffffffffffffffff8216610912576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83165f9081526010602052604090205460ff1680610969575073ffffffffffffffffffffffffffffffffffffffff83165f9081526014602052604090205460ff165b61099f576040517f3be3aba200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604080516060810182528281525f60208201529081016109c26201518042614858565b905273ffffffffffffffffffffffffffffffffffffffff8481165f81815260166020908152604080832094881680845294825291829020855181558582015160018201559482015160029095019490945551848152919290917f39ff4a05a64bdf7e1dcb0b2d6b7e35b6a720a9412386a9e193c0e93d29a18470910160405180910390a3505050565b335f9081526014602052604090205460ff16610a93576040517f99b01c4700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a9b613096565b610aa683838361311a565b610b1d610ab66060850185614890565b808060200260200160405190810160405280939291908181526020015f905b82821015610b0157610af2604083028601368190038101906148f4565b81526020019060010190610ad5565b50610b1893505060608801915050604087016142e9565b61335f565b335f9081526015602052604081205473ffffffffffffffffffffffffffffffffffffffff16905b610b516080860186614890565b9050811015610c4657610b676080860186614890565b82818110610b7757610b77614971565b90506040020160200135600e5f876040016020810190610b9791906142e9565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f90812090610bcc6080890189614890565b85818110610bdc57610bdc614971565b610bf292602060409092020190810191506142e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c39919061499e565b9091555050600101610b44565b505f5b610c566060860186614890565b9050811015610d4c575f610c6d6060870187614890565b83818110610c7d57610c7d614971565b610c9392602060409092020190810191506142e9565b90505f610ca36060880188614890565b84818110610cb357610cb3614971565b9050604002016020013590505f811315610cf957610cf43330610cd58461354d565b73ffffffffffffffffffffffffffffffffffffffff86169291906135bc565b610d42565b610d143383610d0f610d0a856149b1565b61354d565b613645565b610d4284610d24610d0a846149b1565b73ffffffffffffffffffffffffffffffffffffffff85169190613757565b5050600101610c49565b505f5b610d5c6080860186614890565b9050811015610e26575f610d736080870187614890565b83818110610d8357610d83614971565b610d9992602060409092020190810191506142e9565b9050610dcc3382610dad60808a018a614890565b86818110610dbd57610dbd614971565b90506040020160200135613645565b610e1d83610ddd6080890189614890565b85818110610ded57610ded614971565b905060400201602001358373ffffffffffffffffffffffffffffffffffffffff166137579092919063ffffffff16565b50600101610d4f565b507fb5689a012cf77dd0a99ac07ed6f83009d7fbfca323bca73b34d6ed02bf413ab8610e5860608601604087016142e9565b33610e666060880188614890565b610e7360808a018a614890565b604051610e8596959493929190614a45565b60405180910390a150610e96613795565b505050565b610ea3613015565b5f5b82811015610fa6575f600b81868685818110610ec357610ec3614971565b610ed992602060409092020190810191506142e9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208201929092526040015f20541603610f39576040517fa7466cd800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f9e82858584818110610f4f57610f4f614971565b90506040020160200135868685818110610f6b57610f6b614971565b610f8192602060409092020190810191506142e9565b73ffffffffffffffffffffffffffffffffffffffff1691906137bf565b600101610ea5565b50505050565b610fb4613015565b73ffffffffffffffffffffffffffffffffffffffff831615801590610fee575073ffffffffffffffffffffffffffffffffffffffff821615155b611024576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611089576040517f88b43fad00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8381165f81815260146020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016871515908117909155601583529281902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169588169590951790945583519283528201527f81e020344174972c59f6c11a8f6c90b141866214e3d9b544d030f0b532f5a10f91015b60405180910390a1505050565b61115d60608401604085016142e9565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526010602052604090205460ff1680156111a6575073ffffffffffffffffffffffffffffffffffffffff811633145b80611205575073ffffffffffffffffffffffffffffffffffffffff81165f9081526010602052604090205460ff168015611205575073ffffffffffffffffffffffffffffffffffffffff8181165f908152601160205260409020541633145b61123b576040517f897e65bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611243613096565b61124e8484846137ca565b5f5b61125d6060860186614890565b9050811015611352576112736060860186614890565b8281811061128357611283614971565b90506040020160200135600e5f8760400160208101906112a391906142e9565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f908120906112d86060890189614890565b858181106112e8576112e8614971565b6112fe92602060409092020190810191506142e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611345919061499e565b9091555050600101611250565b505f60128161136760608801604089016142e9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208201929092526040015f9081205490911691505b6113a46060870187614890565b9050811015611455575f6113bb6060880188614890565b838181106113cb576113cb614971565b6113e192602060409092020190810191506142e9565b90505f6113f16060890189614890565b8481811061140157611401614971565b90506040020160200135905061142a88604001602081019061142391906142e9565b8383613645565b61144b73ffffffffffffffffffffffffffffffffffffffff83168583613757565b5050600101611397565b507f455917442c530b052ee826d2556fad794f64a294e455930a63599688abbffa3c61148760608701604088016142e9565b6114946060880188614890565b6040516114a393929190614ab0565b60405180910390a150610fa6613795565b6114bc613015565b73ffffffffffffffffffffffffffffffffffffffff8116611509576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f9eaa897564d022fb8c5efaf0acdb5d9d27b440b2aad44400b6e1c702e65b9ed3906020016108b2565b611584613015565b61158d5f6138f4565b565b335f9081526008602052604090205460ff166115d7576040517fd687c5f200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8481165f908152600b60205260409020541615801590611631575073ffffffffffffffffffffffffffffffffffffffff8281165f908152600b60205260409020541615155b611667576040517fa7466cd800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8086165f908152600d60209081526040808320938816835292905290812080548592906116aa908490614ae8565b909155505073ffffffffffffffffffffffffffffffffffffffff8086165f908152600d60209081526040808320938616835292905290812080548392906116f2908490614b0f565b90915550505050505050565b611706613015565b73ffffffffffffffffffffffffffffffffffffffff8116611753576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f538bd377a1e0d2ceca49908f540bafa1d8616cf49a7bcefcd0b479e7531ff8aa906020016108b2565b600354339073ffffffffffffffffffffffffffffffffffffffff168114611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61187d816138f4565b50565b73ffffffffffffffffffffffffffffffffffffffff81165f90815260106020526040902054819060ff1680156118cb575073ffffffffffffffffffffffffffffffffffffffff811633145b8061192a575073ffffffffffffffffffffffffffffffffffffffff81165f9081526010602052604090205460ff16801561192a575073ffffffffffffffffffffffffffffffffffffffff8181165f908152601160205260409020541633145b611960576040517f897e65bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611968613096565b6119c38484808060200260200160405190810160405280939291908181526020015f905b828210156119b8576119a9604083028601368190038101906148f4565b8152602001906001019061198c565b50505050508361335f565b5f5b83811015611a4457611a3c33306119f68888868181106119e7576119e7614971565b9050604002016020013561354d565b888886818110611a0857611a08614971565b611a1e92602060409092020190810191506142e9565b73ffffffffffffffffffffffffffffffffffffffff169291906135bc565b6001016119c5565b507fc8aa82285b2a9e22e0bda601a759e4f578e78f18015e543a4f66bb120a726953828585604051611a7893929190614ab0565b60405180910390a1610fa6613795565b5f60608082808083611aba7f000000000000000000000000000000000000000000000000000000000000000083613925565b611ae57f00000000000000000000000000000000000000000000000000000000000000006001613925565b604080515f808252602082019092527f0f000000000000000000000000000000000000000000000000000000000000009b939a50919850469750309650945092509050565b60078181548110611b39575f80fd5b5f9182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60065473ffffffffffffffffffffffffffffffffffffffff163314611bb0576040517f16ced9a800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b81811015612101575f838383818110611bcd57611bcd614971565b9050602002810190611bdf9190614b35565b611bed9060208101906142e9565b73ffffffffffffffffffffffffffffffffffffffff81165f908152600a602052604090205490915061708090611c23904261499e565b1015611c5b576040517f0dc2dde400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b848484818110611c6f57611c6f614971565b9050602002810190611c819190614b35565b611c8f906020810190614b71565b90508110156120d2575f858585818110611cab57611cab614971565b9050602002810190611cbd9190614b35565b611ccb906020810190614b71565b83818110611cdb57611cdb614971565b611cf192602060609092020190810191506142e9565b90505f868686818110611d0657611d06614971565b9050602002810190611d189190614b35565b611d26906020810190614b71565b84818110611d3657611d36614971565b9050606002016020013590505f878787818110611d5557611d55614971565b9050602002810190611d679190614b35565b611d75906020810190614b71565b85818110611d8557611d85614971565b73ffffffffffffffffffffffffffffffffffffffff8681165f908152600b60205260409081902054606090930294909401939093013593509091169050611df8576040517fa7466cd800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81156120295773ffffffffffffffffffffffffffffffffffffffff8084165f908152600b602090815260408083205481517f3ba0b9a9000000000000000000000000000000000000000000000000000000008152915193941692633ba0b9a9926004808401939192918290030181865afa158015611e78573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e9c9190614bd4565b73ffffffffffffffffffffffffffffffffffffffff8581165f908152600b6020526040908190205490517fc8cc5cd800000000000000000000000000000000000000000000000000000000815260048101879052929350169063c8cc5cd8906024015f604051808303815f87803b158015611f15575f5ffd5b505af1158015611f27573d5f5f3e3d5ffd5b50505050806064611f389190614beb565b73ffffffffffffffffffffffffffffffffffffffff8086165f908152600b60209081526040918290205482517f3ba0b9a9000000000000000000000000000000000000000000000000000000008152925186949190911692633ba0b9a99260048083019391928290030181865afa158015611fb5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fd99190614bd4565b611fe3919061499e565b611fef90612710614beb565b1115612027576040517f0aa1e28500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b80156120695773ffffffffffffffffffffffffffffffffffffffff83165f9081526009602052604081208054839290612063908490614c02565b90915550505b61207b6120768383614c02565b6139d0565b73ffffffffffffffffffffffffffffffffffffffff8087165f908152600d60209081526040808320938816835292905290812080549091906120be908490614b0f565b909155505060019093019250611c5d915050565b5073ffffffffffffffffffffffffffffffffffffffff165f908152600a60205260409020429055600101611bb2565b507f90e0333a7f11b37e50e152c45bb5ebfc2ce2ace82e290567861d3ae8529688748282604051612133929190614c15565b60405180910390a15050565b61214f60608401604085016142e9565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526010602052604090205460ff168015612198575073ffffffffffffffffffffffffffffffffffffffff811633145b806121f7575073ffffffffffffffffffffffffffffffffffffffff81165f9081526010602052604090205460ff1680156121f7575073ffffffffffffffffffffffffffffffffffffffff8181165f908152601160205260409020541633145b61222d576040517f897e65bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612235613096565b612240848484613a81565b6122b26122506060860186614890565b808060200260200160405190810160405280939291908181526020015f905b8282101561229b5761228c604083028601368190038101906148f4565b8152602001906001019061226f565b50610b1893505060608901915050604088016142e9565b5f6012816122c660608801604089016142e9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208201929092526040015f9081205490911691505b6123036060870187614890565b90508110156123c1575f61231a6060880188614890565b8381811061232a5761232a614971565b61234092602060409092020190810191506142e9565b90505f6123506060890189614890565b8481811061236057612360614971565b9050604002016020013590505f811315612387576123823330610cd58461354d565b6123b7565b6123a761239a60608a0160408b016142e9565b83610d0f610d0a856149b1565b6123b784610d24610d0a846149b1565b50506001016122f6565b507f0279bcc316c233db88e8f3e463dcefc7fa661da21bc66eadc60f3835e41bba1161148760608701604088016142e9565b6123fb613015565b73ffffffffffffffffffffffffffffffffffffffff8216612448576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82165f8181526008602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f947aca305c9b8d94b31792a7f80d331c9452e743508d61331561378673b50103910160405180910390a25050565b73ffffffffffffffffffffffffffffffffffffffff821661251e576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045473ffffffffffffffffffffffffffffffffffffffff16331461256f576040517fdcdd32f100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83165f908152600960205260409020548111156125cd576040517fce11c63900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83165f908152600960205260408120805483929061260190849061499e565b90915550612628905073ffffffffffffffffffffffffffffffffffffffff84168383613757565b6040805173ffffffffffffffffffffffffffffffffffffffff8086168252841660208201529081018290527fde13184e8cbb6eccbcecfc796bf8820e5ffde0534c01b4fabed4b05982964a4490606001611140565b612685613096565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526010602052604090205460ff166126e3576040517f897e65bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b8281101561284f575f84848381811061270057612700614971565b61271692602060409092020190810191506142e9565b73ffffffffffffffffffffffffffffffffffffffff81165f908152600f602052604090205490915060ff16612777576040517f918aa47f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f85858481811061278a5761278a614971565b90506040020160200135905080600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461281d9190614c02565b90915550612845905073ffffffffffffffffffffffffffffffffffffffff83163330846135bc565b50506001016126e5565b507f770dafe0b413d5c277b5f1a9d1d725e5ebafe92b5a16f3ebaae6e49e43b6649981848460405161288393929190614ab0565b60405180910390a1610e96613795565b61289b613015565b73ffffffffffffffffffffffffffffffffffffffff8516158015906128d5575073ffffffffffffffffffffffffffffffffffffffff841615155b80156128f6575073ffffffffffffffffffffffffffffffffffffffff831615155b61292c576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561299457508373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6129ca576040517f5bc7a3a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8581165f81815260106020908152604080832080548815157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0091821681179092556011845282852080548c89167fffffffffffffffffffffffff00000000000000000000000000000000000000009182168117909255601286528487208054998d169990911689179055601385529483902080548915159216821790558251918252928101929092528101919091526060810192909252907f2353ec0fe56a376d3269d3e65521f1ce07dc5f544cc5b0ba4eb2ff03f771a4ad9060800160405180910390a25050505050565b335f908152600f602052604090205460ff16612b13576040517f918aa47f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1663c70920bc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b5c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b809190614bd4565b811115612bb9576040517fff75bad100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c4882823373ffffffffffffffffffffffffffffffffffffffff16636f307dc36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c07573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c2b9190614dac565b73ffffffffffffffffffffffffffffffffffffffff169190613757565b5050565b612c54613015565b73ffffffffffffffffffffffffffffffffffffffff81165f908152600f602052604090205460ff1615612cb3576040517fdeaabdc200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff16636f307dc36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cfd573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d219190614dac565b73ffffffffffffffffffffffffffffffffffffffff8082165f908152600b602052604090205491925016158015612def57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1663e2498f726040518163ffffffff1660e01b8152600401602060405180830381865afa158015612db3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dd79190614dac565b73ffffffffffffffffffffffffffffffffffffffff16145b612e25576040517f9db8d5b100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116612e72576040517ff418616400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8181165f908152600b6020908152604080832080549487167fffffffffffffffffffffffff00000000000000000000000000000000000000009586168117909155808452600f835281842080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556007805491820181559094527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6889093018054909416831790935591519081527fcf583bb0c569eb967f806b11601c4cb93c10310485c67add5f8362c2f212321f9101612133565b612f6d613015565b6003805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155612fd060025473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60025473ffffffffffffffffffffffffffffffffffffffff16331461158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161186b565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f005c156130ef576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61158d7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f006001613b07565b4283602001351015613158576040517ffef01cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131628335613b0e565b5f7f76c5f3d53a01a9f0a59b081b22aba3a0f03248e9241993e97d1d025ef2ffaac28435602086013561319b60608801604089016142e9565b6131a86060890189614890565b6040516020016131b9929190614dc7565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291905280516020909101206131fc60808a018a614890565b60405160200161320d929190614dc7565b604080518083037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00181528282528051602091820120335f90815260158352839020549184019890985290820195909552606081019390935273ffffffffffffffffffffffffffffffffffffffff918216608084015260a083015260c0820193909352911660e0820152610100015b6040516020818303038152906040528051906020012090505f6132be82613b8e565b90505f6133008286868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250613bd592505050565b60055490915073ffffffffffffffffffffffffffffffffffffffff808316911614613357576040517f8baa579f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050505050565b81515f5b81811015610fa6575f84828151811061337e5761337e614971565b60200260200101515f015190505f85838151811061339e5761339e614971565b60209081029190910181015181015173ffffffffffffffffffffffffffffffffffffffff8088165f908152600d845260408082209287168252919093528220549092506133ec908390614ae8565b73ffffffffffffffffffffffffffffffffffffffff8481165f908152600b60205260409020549192501661344c576040517ff418616400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8087165f908152600d6020908152604080832093871683529290529081205461348b908490614de2565b1215806134d4575073ffffffffffffffffffffffffffffffffffffffff8087165f908152600d602090815260408083209387168352929052908120546134d2908390614de2565b125b1561350b576040517f09a09f7500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8087165f908152600d60209081526040808320969093168252949094529092209190915550600101613363565b5f5f8212156135b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f53616665436173743a2076616c7565206d75737420626520706f736974697665604482015260640161186b565b5090565b60405173ffffffffffffffffffffffffffffffffffffffff8481166024830152838116604483015260648201839052610fa69186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613bf7565b73ffffffffffffffffffffffffffffffffffffffff8084165f9081526016602090815260408083209386168352929052908120906136866201518042614858565b90505f826002015482111561369c5750826136af565b8383600101546136ac9190614c02565b90505b825415806136be575082548111155b6136f4576040517ff5b71ffc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040805160608101825293548452602080850192835284820193845273ffffffffffffffffffffffffffffffffffffffff9788165f9081526016825282812097909816885295909552939094209051815591516001830155509051600290910155565b60405173ffffffffffffffffffffffffffffffffffffffff838116602483015260448201839052610e9691859182169063a9059cbb906064016135fe565b61158d7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f005f613b07565b610e96838383613c96565b4283602001351015613808576040517ffef01cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138128335613b0e565b5f7f6b9aa5f8de278806afcc63bb2d2e633b4da3536375ca60f09ae8fae5829b3c468435602086013561384b60608801604089016142e9565b6138586060890189614890565b604051602001613869929190614dc7565b6040516020818303038152906040528051906020012060125f8a604001602081019061389591906142e9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182015f2054825193840198909852908201959095526060810193909352908316608083015260a0820152911660c082015260e00161329c565b600380547fffffffffffffffffffffffff000000000000000000000000000000000000000016905561187d81613d6d565b606060ff831461393f5761393883613de3565b90506139ca565b81805461394b90614e2d565b80601f016020809104026020016040519081016040528092919081815260200182805461397790614e2d565b80156139c25780601f10613999576101008083540402835291602001916139c2565b820191905f5260205f20905b8154815290600101906020018083116139a557829003601f168201915b505050505090505b92915050565b5f7f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8211156135b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f53616665436173743a2076616c756520646f65736e27742066697420696e206160448201527f6e20696e74323536000000000000000000000000000000000000000000000000606482015260840161186b565b4283602001351015613abf576040517ffef01cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613ac98335613b0e565b5f7fe83563cdfbb4d31bd8759eea5a634fbe67ea13b6739d04d2426c621fee979fa48435602086013561384b60608801604089016142e9565b905090565b80825d5050565b5f818152600c602052604090205460ff1615613b56576040517f1f6d5aef00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b5f6139ca613b9a613e20565b836040517f19010000000000000000000000000000000000000000000000000000000000008152600281019290925260228201526042902090565b5f5f5f613be28585613f56565b91509150613bef81613f98565b509392505050565b5f5f60205f8451602086015f885af180613c16576040513d5f823e3d81fd5b50505f513d91508115613c2d578060011415613c47565b73ffffffffffffffffffffffffffffffffffffffff84163b155b15610fa6576040517f5274afe700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8516600482015260240161186b565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b300000000000000000000000000000000000000000000000000000000179052613d22848261414a565b610fa65760405173ffffffffffffffffffffffffffffffffffffffff84811660248301525f6044830152613d6391869182169063095ea7b3906064016135fe565b610fa68482613bf7565b6002805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b60605f613def836141a0565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b5f3073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016148015613e8557507f000000000000000000000000000000000000000000000000000000000000000046145b15613eaf57507f000000000000000000000000000000000000000000000000000000000000000090565b613b02604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b5f5f8251604103613f8a576020830151604084015160608501515f1a613f7e878285856141e0565b94509450505050613f91565b505f905060025b9250929050565b5f816004811115613fab57613fab614e78565b03613fb35750565b6001816004811115613fc757613fc7614e78565b0361402e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161186b565b600281600481111561404257614042614e78565b036140a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161186b565b60038160048111156140bd576140bd614e78565b0361187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161186b565b5f5f5f5f60205f8651602088015f8a5af192503d91505f5190508280156141965750811561417b5780600114614196565b5f8673ffffffffffffffffffffffffffffffffffffffff163b115b9695505050505050565b5f60ff8216601f8111156139ca576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561421557505f905060036142bf565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614266573d5f5f3e3d5ffd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166142b9575f600192509250506142bf565b91505f90505b94509492505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461187d575f5ffd5b5f602082840312156142f9575f5ffd5b8135614304816142c8565b9392505050565b5f5f5f6060848603121561431d575f5ffd5b8335614328816142c8565b92506020840135614338816142c8565b929592945050506040919091013590565b5f5f83601f840112614359575f5ffd5b50813567ffffffffffffffff811115614370575f5ffd5b602083019150836020828501011115613f91575f5ffd5b5f5f5f60408486031215614399575f5ffd5b833567ffffffffffffffff8111156143af575f5ffd5b840160a081870312156143c0575f5ffd5b9250602084013567ffffffffffffffff8111156143db575f5ffd5b6143e786828701614349565b9497909650939450505050565b5f60208284031215614404575f5ffd5b5035919050565b5f5f83601f84011261441b575f5ffd5b50813567ffffffffffffffff811115614432575f5ffd5b6020830191508360208260061b8501011115613f91575f5ffd5b5f5f5f6040848603121561445e575f5ffd5b833567ffffffffffffffff811115614474575f5ffd5b6144808682870161440b565b9094509250506020840135614494816142c8565b809150509250925092565b803580151581146144ae575f5ffd5b919050565b5f5f5f606084860312156144c5575f5ffd5b83356144d0816142c8565b925060208401356144e0816142c8565b91506144ee6040850161449f565b90509250925092565b5f5f60408385031215614508575f5ffd5b8235614513816142c8565b91506020830135614523816142c8565b809150509250929050565b5f6080828403121561453e575f5ffd5b50919050565b5f5f5f60408486031215614556575f5ffd5b833567ffffffffffffffff81111561456c575f5ffd5b6145788682870161452e565b935050602084013567ffffffffffffffff8111156143db575f5ffd5b5f5f5f5f5f60a086880312156145a8575f5ffd5b85356145b3816142c8565b945060208601356145c3816142c8565b93506040860135925060608601356145da816142c8565b949793965091946080013592915050565b5f81518084528060208401602086015e5f6020828601015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011685010191505092915050565b7fff000000000000000000000000000000000000000000000000000000000000008816815260e060208201525f61467160e08301896145eb565b828103604084015261468381896145eb565b6060840188905273ffffffffffffffffffffffffffffffffffffffff8716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b818110156146e55783518352602093840193909201916001016146c7565b50909b9a5050505050505050505050565b5f5f60208385031215614707575f5ffd5b823567ffffffffffffffff81111561471d575f5ffd5b8301601f8101851361472d575f5ffd5b803567ffffffffffffffff811115614743575f5ffd5b8560208260051b8401011115614757575f5ffd5b6020919091019590945092505050565b5f5f60408385031215614778575f5ffd5b8235614783816142c8565b91506147916020840161449f565b90509250929050565b5f5f5f5f5f60a086880312156147ae575f5ffd5b85356147b9816142c8565b945060208601356147c9816142c8565b935060408601356147d9816142c8565b92506147e76060870161449f565b91506147f56080870161449f565b90509295509295909350565b5f5f60408385031215614812575f5ffd5b823561481d816142c8565b946020939093013593505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8261488b577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b5f5f83357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18436030181126148c3575f5ffd5b83018035915067ffffffffffffffff8211156148dd575f5ffd5b6020019150600681901b3603821315613f91575f5ffd5b5f6040828403128015614905575f5ffd5b506040805190810167ffffffffffffffff8111828210171561494e577f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b604052823561495c816142c8565b81526020928301359281019290925250919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b818103818111156139ca576139ca61482b565b5f7f800000000000000000000000000000000000000000000000000000000000000082036149e1576149e161482b565b505f0390565b8183526020830192505f815f5b84811015614a3b578135614a07816142c8565b73ffffffffffffffffffffffffffffffffffffffff16865260208281013590870152604095860195909101906001016149f4565b5093949350505050565b73ffffffffffffffffffffffffffffffffffffffff8716815273ffffffffffffffffffffffffffffffffffffffff86166020820152608060408201525f614a906080830186886149e7565b8281036060840152614aa38185876149e7565b9998505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff84168152604060208201525f614adf6040830184866149e7565b95945050505050565b8082018281125f831280158216821582161715614b0757614b0761482b565b505092915050565b8181035f831280158383131683831282161715614b2e57614b2e61482b565b5092915050565b5f82357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc1833603018112614b67575f5ffd5b9190910192915050565b5f5f83357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112614ba4575f5ffd5b83018035915067ffffffffffffffff821115614bbe575f5ffd5b6020019150606081023603821315613f91575f5ffd5b5f60208284031215614be4575f5ffd5b5051919050565b80820281158282048414176139ca576139ca61482b565b808201808211156139ca576139ca61482b565b602080825281018290525f6040600584901b8301810190830185837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc136839003015b87821015614d9f577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08786030184528235818112614c93575f5ffd5b8901604086018135614ca4816142c8565b73ffffffffffffffffffffffffffffffffffffffff1687526020820135368390037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1018112614cf1575f5ffd5b60209201918201913567ffffffffffffffff811115614d0e575f5ffd5b606081023603831315614d1f575f5ffd5b60406020890152908190525f90606088015b81831015614d83578335614d44816142c8565b73ffffffffffffffffffffffffffffffffffffffff16815260208481013590820152604080850135908201526060938401936001939093019201614d31565b9750505060209485019493909301925060019190910190614c57565b5092979650505050505050565b5f60208284031215614dbc575f5ffd5b8151614304816142c8565b602081525f614dda6020830184866149e7565b949350505050565b8082025f82127f800000000000000000000000000000000000000000000000000000000000000084141615614e1957614e1961482b565b81810583148215176139ca576139ca61482b565b600181811c90821680614e4157607f821691505b60208210810361453e577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffdfea26469706673582212203d0d10ef5155e204aec660321808f914624c52dfc9f21a39bf3412814934863a64736f6c634300081c0033
Deployed Bytecode
0x608060405234801561000f575f5ffd5b50600436106102d7575f3560e01c806379ba509711610187578063b17b658d116100dd578063cab4f84c11610093578063f2fde38b1161006e578063f2fde38b14610784578063f6d95efd14610797578063f90cdb36146107cc575f5ffd5b8063cab4f84c14610729578063cc218ece1461073c578063e30c397814610766575f5ffd5b8063b7477674116100c3578063b7477674146106af578063c2b7307614610703578063c407687614610716575f5ffd5b8063b17b658d14610667578063b6bdff031461069c575f5ffd5b806392a88fa21161013d578063abb49f1911610118578063abb49f1914610622578063ae1914f814610635578063b0ab63ec14610648575f5ffd5b806392a88fa2146105da57806398221e94146105fc5780639be41fdb1461060f575f5ffd5b806384b0196e1161016d57806384b0196e1461058e5780638da5cb5b146105a95780639246261c146105c7575f5ffd5b806379ba50971461057357806381377bfd1461057b575f5ffd5b806341b1fa761161023c5780634e293ee9116101f2578063715018a6116101cd578063715018a6146105455780637362ecbe1461054d57806373eb513314610560575f5ffd5b80634e293ee9146104ff5780634f487eb8146105125780636c19e78314610532575f5ffd5b8063464b38bc11610222578063464b38bc1461049557806347de43e2146104c25780634bd21445146104d5575f5ffd5b806341b1fa761461043e578063422e0af014610460575f5ffd5b8063141a468c1161029157806320761fc41161027757806320761fc4146103dc578063238ac933146103fe57806332b4fa6b1461041e575f5ffd5b8063141a468c146103a75780631e777ad3146103c9575f5ffd5b80630d2a7ae8116102c15780630d2a7ae8146103035780630dfbe91b146103625780631241177214610394575f5ffd5b8062fc59c0146102db578063097a8ec4146102f0575b5f5ffd5b6102ee6102e93660046142e9565b6107ee565b005b6102ee6102fe36600461430b565b6108bd565b6103386103113660046142e9565b60116020525f908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6103846103703660046142e9565b60086020525f908152604090205460ff1681565b6040519015158152602001610359565b6102ee6103a2366004614387565b610a4b565b6103846103b53660046143f4565b600c6020525f908152604090205460ff1681565b6102ee6103d736600461444c565b610e9b565b6103846103ea3660046142e9565b600f6020525f908152604090205460ff1681565b6005546103389073ffffffffffffffffffffffffffffffffffffffff1681565b6004546103389073ffffffffffffffffffffffffffffffffffffffff1681565b61038461044c3660046142e9565b60136020525f908152604090205460ff1681565b61033861046e3660046142e9565b60126020525f908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6104b46104a33660046142e9565b60096020525f908152604090205481565b604051908152602001610359565b6102ee6104d03660046144b3565b610fac565b6104b46104e33660046144f7565b600d60209081525f928352604080842090915290825290205481565b6102ee61050d366004614544565b61114d565b6006546103389073ffffffffffffffffffffffffffffffffffffffff1681565b6102ee6105403660046142e9565b6114b4565b6102ee61157c565b6102ee61055b366004614594565b61158f565b6102ee61056e3660046142e9565b6116fe565b6102ee6117c6565b6102ee61058936600461444c565b611880565b610596611a88565b6040516103599796959493929190614637565b60025473ffffffffffffffffffffffffffffffffffffffff16610338565b6103386105d53660046143f4565b611b2a565b6103846105e83660046142e9565b60106020525f908152604090205460ff1681565b6102ee61060a3660046146f6565b611b5f565b6102ee61061d366004614544565b61213f565b6102ee610630366004614767565b6123f3565b6102ee61064336600461430b565b6124d1565b6104b46106563660046142e9565b600a6020525f908152604090205481565b6103386106753660046142e9565b600b6020525f908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6102ee6106aa36600461444c565b61267d565b6106e86106bd3660046144f7565b601660209081525f928352604080842090915290825290208054600182015460029092015490919083565b60408051938452602084019290925290820152606001610359565b6102ee61071136600461479a565b612893565b6102ee610724366004614801565b612acb565b6102ee6107373660046142e9565b612c4c565b6104b461074a3660046144f7565b600e60209081525f928352604080842090915290825290205481565b60035473ffffffffffffffffffffffffffffffffffffffff16610338565b6102ee6107923660046142e9565b612f65565b6103386107a53660046142e9565b60156020525f908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6103846107da3660046142e9565b60146020525f908152604090205460ff1681565b6107f6613015565b73ffffffffffffffffffffffffffffffffffffffff8116610843576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f15d0b1a02a4902c4788ceda199eb43e4a753d86c0dbb7412e8ba63feecb070fa906020015b60405180910390a150565b6108c5613015565b73ffffffffffffffffffffffffffffffffffffffff8216610912576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83165f9081526010602052604090205460ff1680610969575073ffffffffffffffffffffffffffffffffffffffff83165f9081526014602052604090205460ff165b61099f576040517f3be3aba200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604080516060810182528281525f60208201529081016109c26201518042614858565b905273ffffffffffffffffffffffffffffffffffffffff8481165f81815260166020908152604080832094881680845294825291829020855181558582015160018201559482015160029095019490945551848152919290917f39ff4a05a64bdf7e1dcb0b2d6b7e35b6a720a9412386a9e193c0e93d29a18470910160405180910390a3505050565b335f9081526014602052604090205460ff16610a93576040517f99b01c4700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a9b613096565b610aa683838361311a565b610b1d610ab66060850185614890565b808060200260200160405190810160405280939291908181526020015f905b82821015610b0157610af2604083028601368190038101906148f4565b81526020019060010190610ad5565b50610b1893505060608801915050604087016142e9565b61335f565b335f9081526015602052604081205473ffffffffffffffffffffffffffffffffffffffff16905b610b516080860186614890565b9050811015610c4657610b676080860186614890565b82818110610b7757610b77614971565b90506040020160200135600e5f876040016020810190610b9791906142e9565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f90812090610bcc6080890189614890565b85818110610bdc57610bdc614971565b610bf292602060409092020190810191506142e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c39919061499e565b9091555050600101610b44565b505f5b610c566060860186614890565b9050811015610d4c575f610c6d6060870187614890565b83818110610c7d57610c7d614971565b610c9392602060409092020190810191506142e9565b90505f610ca36060880188614890565b84818110610cb357610cb3614971565b9050604002016020013590505f811315610cf957610cf43330610cd58461354d565b73ffffffffffffffffffffffffffffffffffffffff86169291906135bc565b610d42565b610d143383610d0f610d0a856149b1565b61354d565b613645565b610d4284610d24610d0a846149b1565b73ffffffffffffffffffffffffffffffffffffffff85169190613757565b5050600101610c49565b505f5b610d5c6080860186614890565b9050811015610e26575f610d736080870187614890565b83818110610d8357610d83614971565b610d9992602060409092020190810191506142e9565b9050610dcc3382610dad60808a018a614890565b86818110610dbd57610dbd614971565b90506040020160200135613645565b610e1d83610ddd6080890189614890565b85818110610ded57610ded614971565b905060400201602001358373ffffffffffffffffffffffffffffffffffffffff166137579092919063ffffffff16565b50600101610d4f565b507fb5689a012cf77dd0a99ac07ed6f83009d7fbfca323bca73b34d6ed02bf413ab8610e5860608601604087016142e9565b33610e666060880188614890565b610e7360808a018a614890565b604051610e8596959493929190614a45565b60405180910390a150610e96613795565b505050565b610ea3613015565b5f5b82811015610fa6575f600b81868685818110610ec357610ec3614971565b610ed992602060409092020190810191506142e9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208201929092526040015f20541603610f39576040517fa7466cd800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f9e82858584818110610f4f57610f4f614971565b90506040020160200135868685818110610f6b57610f6b614971565b610f8192602060409092020190810191506142e9565b73ffffffffffffffffffffffffffffffffffffffff1691906137bf565b600101610ea5565b50505050565b610fb4613015565b73ffffffffffffffffffffffffffffffffffffffff831615801590610fee575073ffffffffffffffffffffffffffffffffffffffff821615155b611024576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611089576040517f88b43fad00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8381165f81815260146020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016871515908117909155601583529281902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169588169590951790945583519283528201527f81e020344174972c59f6c11a8f6c90b141866214e3d9b544d030f0b532f5a10f91015b60405180910390a1505050565b61115d60608401604085016142e9565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526010602052604090205460ff1680156111a6575073ffffffffffffffffffffffffffffffffffffffff811633145b80611205575073ffffffffffffffffffffffffffffffffffffffff81165f9081526010602052604090205460ff168015611205575073ffffffffffffffffffffffffffffffffffffffff8181165f908152601160205260409020541633145b61123b576040517f897e65bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611243613096565b61124e8484846137ca565b5f5b61125d6060860186614890565b9050811015611352576112736060860186614890565b8281811061128357611283614971565b90506040020160200135600e5f8760400160208101906112a391906142e9565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f908120906112d86060890189614890565b858181106112e8576112e8614971565b6112fe92602060409092020190810191506142e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611345919061499e565b9091555050600101611250565b505f60128161136760608801604089016142e9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208201929092526040015f9081205490911691505b6113a46060870187614890565b9050811015611455575f6113bb6060880188614890565b838181106113cb576113cb614971565b6113e192602060409092020190810191506142e9565b90505f6113f16060890189614890565b8481811061140157611401614971565b90506040020160200135905061142a88604001602081019061142391906142e9565b8383613645565b61144b73ffffffffffffffffffffffffffffffffffffffff83168583613757565b5050600101611397565b507f455917442c530b052ee826d2556fad794f64a294e455930a63599688abbffa3c61148760608701604088016142e9565b6114946060880188614890565b6040516114a393929190614ab0565b60405180910390a150610fa6613795565b6114bc613015565b73ffffffffffffffffffffffffffffffffffffffff8116611509576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f9eaa897564d022fb8c5efaf0acdb5d9d27b440b2aad44400b6e1c702e65b9ed3906020016108b2565b611584613015565b61158d5f6138f4565b565b335f9081526008602052604090205460ff166115d7576040517fd687c5f200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8481165f908152600b60205260409020541615801590611631575073ffffffffffffffffffffffffffffffffffffffff8281165f908152600b60205260409020541615155b611667576040517fa7466cd800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8086165f908152600d60209081526040808320938816835292905290812080548592906116aa908490614ae8565b909155505073ffffffffffffffffffffffffffffffffffffffff8086165f908152600d60209081526040808320938616835292905290812080548392906116f2908490614b0f565b90915550505050505050565b611706613015565b73ffffffffffffffffffffffffffffffffffffffff8116611753576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f538bd377a1e0d2ceca49908f540bafa1d8616cf49a7bcefcd0b479e7531ff8aa906020016108b2565b600354339073ffffffffffffffffffffffffffffffffffffffff168114611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61187d816138f4565b50565b73ffffffffffffffffffffffffffffffffffffffff81165f90815260106020526040902054819060ff1680156118cb575073ffffffffffffffffffffffffffffffffffffffff811633145b8061192a575073ffffffffffffffffffffffffffffffffffffffff81165f9081526010602052604090205460ff16801561192a575073ffffffffffffffffffffffffffffffffffffffff8181165f908152601160205260409020541633145b611960576040517f897e65bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611968613096565b6119c38484808060200260200160405190810160405280939291908181526020015f905b828210156119b8576119a9604083028601368190038101906148f4565b8152602001906001019061198c565b50505050508361335f565b5f5b83811015611a4457611a3c33306119f68888868181106119e7576119e7614971565b9050604002016020013561354d565b888886818110611a0857611a08614971565b611a1e92602060409092020190810191506142e9565b73ffffffffffffffffffffffffffffffffffffffff169291906135bc565b6001016119c5565b507fc8aa82285b2a9e22e0bda601a759e4f578e78f18015e543a4f66bb120a726953828585604051611a7893929190614ab0565b60405180910390a1610fa6613795565b5f60608082808083611aba7f4e617469766520437265646974205661756c740000000000000000000000001383613925565b611ae57f31000000000000000000000000000000000000000000000000000000000000016001613925565b604080515f808252602082019092527f0f000000000000000000000000000000000000000000000000000000000000009b939a50919850469750309650945092509050565b60078181548110611b39575f80fd5b5f9182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60065473ffffffffffffffffffffffffffffffffffffffff163314611bb0576040517f16ced9a800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b81811015612101575f838383818110611bcd57611bcd614971565b9050602002810190611bdf9190614b35565b611bed9060208101906142e9565b73ffffffffffffffffffffffffffffffffffffffff81165f908152600a602052604090205490915061708090611c23904261499e565b1015611c5b576040517f0dc2dde400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b848484818110611c6f57611c6f614971565b9050602002810190611c819190614b35565b611c8f906020810190614b71565b90508110156120d2575f858585818110611cab57611cab614971565b9050602002810190611cbd9190614b35565b611ccb906020810190614b71565b83818110611cdb57611cdb614971565b611cf192602060609092020190810191506142e9565b90505f868686818110611d0657611d06614971565b9050602002810190611d189190614b35565b611d26906020810190614b71565b84818110611d3657611d36614971565b9050606002016020013590505f878787818110611d5557611d55614971565b9050602002810190611d679190614b35565b611d75906020810190614b71565b85818110611d8557611d85614971565b73ffffffffffffffffffffffffffffffffffffffff8681165f908152600b60205260409081902054606090930294909401939093013593509091169050611df8576040517fa7466cd800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81156120295773ffffffffffffffffffffffffffffffffffffffff8084165f908152600b602090815260408083205481517f3ba0b9a9000000000000000000000000000000000000000000000000000000008152915193941692633ba0b9a9926004808401939192918290030181865afa158015611e78573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e9c9190614bd4565b73ffffffffffffffffffffffffffffffffffffffff8581165f908152600b6020526040908190205490517fc8cc5cd800000000000000000000000000000000000000000000000000000000815260048101879052929350169063c8cc5cd8906024015f604051808303815f87803b158015611f15575f5ffd5b505af1158015611f27573d5f5f3e3d5ffd5b50505050806064611f389190614beb565b73ffffffffffffffffffffffffffffffffffffffff8086165f908152600b60209081526040918290205482517f3ba0b9a9000000000000000000000000000000000000000000000000000000008152925186949190911692633ba0b9a99260048083019391928290030181865afa158015611fb5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fd99190614bd4565b611fe3919061499e565b611fef90612710614beb565b1115612027576040517f0aa1e28500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b80156120695773ffffffffffffffffffffffffffffffffffffffff83165f9081526009602052604081208054839290612063908490614c02565b90915550505b61207b6120768383614c02565b6139d0565b73ffffffffffffffffffffffffffffffffffffffff8087165f908152600d60209081526040808320938816835292905290812080549091906120be908490614b0f565b909155505060019093019250611c5d915050565b5073ffffffffffffffffffffffffffffffffffffffff165f908152600a60205260409020429055600101611bb2565b507f90e0333a7f11b37e50e152c45bb5ebfc2ce2ace82e290567861d3ae8529688748282604051612133929190614c15565b60405180910390a15050565b61214f60608401604085016142e9565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526010602052604090205460ff168015612198575073ffffffffffffffffffffffffffffffffffffffff811633145b806121f7575073ffffffffffffffffffffffffffffffffffffffff81165f9081526010602052604090205460ff1680156121f7575073ffffffffffffffffffffffffffffffffffffffff8181165f908152601160205260409020541633145b61222d576040517f897e65bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612235613096565b612240848484613a81565b6122b26122506060860186614890565b808060200260200160405190810160405280939291908181526020015f905b8282101561229b5761228c604083028601368190038101906148f4565b8152602001906001019061226f565b50610b1893505060608901915050604088016142e9565b5f6012816122c660608801604089016142e9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208201929092526040015f9081205490911691505b6123036060870187614890565b90508110156123c1575f61231a6060880188614890565b8381811061232a5761232a614971565b61234092602060409092020190810191506142e9565b90505f6123506060890189614890565b8481811061236057612360614971565b9050604002016020013590505f811315612387576123823330610cd58461354d565b6123b7565b6123a761239a60608a0160408b016142e9565b83610d0f610d0a856149b1565b6123b784610d24610d0a846149b1565b50506001016122f6565b507f0279bcc316c233db88e8f3e463dcefc7fa661da21bc66eadc60f3835e41bba1161148760608701604088016142e9565b6123fb613015565b73ffffffffffffffffffffffffffffffffffffffff8216612448576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82165f8181526008602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f947aca305c9b8d94b31792a7f80d331c9452e743508d61331561378673b50103910160405180910390a25050565b73ffffffffffffffffffffffffffffffffffffffff821661251e576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045473ffffffffffffffffffffffffffffffffffffffff16331461256f576040517fdcdd32f100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83165f908152600960205260409020548111156125cd576040517fce11c63900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83165f908152600960205260408120805483929061260190849061499e565b90915550612628905073ffffffffffffffffffffffffffffffffffffffff84168383613757565b6040805173ffffffffffffffffffffffffffffffffffffffff8086168252841660208201529081018290527fde13184e8cbb6eccbcecfc796bf8820e5ffde0534c01b4fabed4b05982964a4490606001611140565b612685613096565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526010602052604090205460ff166126e3576040517f897e65bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b8281101561284f575f84848381811061270057612700614971565b61271692602060409092020190810191506142e9565b73ffffffffffffffffffffffffffffffffffffffff81165f908152600f602052604090205490915060ff16612777576040517f918aa47f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f85858481811061278a5761278a614971565b90506040020160200135905080600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461281d9190614c02565b90915550612845905073ffffffffffffffffffffffffffffffffffffffff83163330846135bc565b50506001016126e5565b507f770dafe0b413d5c277b5f1a9d1d725e5ebafe92b5a16f3ebaae6e49e43b6649981848460405161288393929190614ab0565b60405180910390a1610e96613795565b61289b613015565b73ffffffffffffffffffffffffffffffffffffffff8516158015906128d5575073ffffffffffffffffffffffffffffffffffffffff841615155b80156128f6575073ffffffffffffffffffffffffffffffffffffffff831615155b61292c576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561299457508373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6129ca576040517f5bc7a3a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8581165f81815260106020908152604080832080548815157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0091821681179092556011845282852080548c89167fffffffffffffffffffffffff00000000000000000000000000000000000000009182168117909255601286528487208054998d169990911689179055601385529483902080548915159216821790558251918252928101929092528101919091526060810192909252907f2353ec0fe56a376d3269d3e65521f1ce07dc5f544cc5b0ba4eb2ff03f771a4ad9060800160405180910390a25050505050565b335f908152600f602052604090205460ff16612b13576040517f918aa47f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1663c70920bc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b5c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b809190614bd4565b811115612bb9576040517fff75bad100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c4882823373ffffffffffffffffffffffffffffffffffffffff16636f307dc36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c07573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c2b9190614dac565b73ffffffffffffffffffffffffffffffffffffffff169190613757565b5050565b612c54613015565b73ffffffffffffffffffffffffffffffffffffffff81165f908152600f602052604090205460ff1615612cb3576040517fdeaabdc200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff16636f307dc36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cfd573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d219190614dac565b73ffffffffffffffffffffffffffffffffffffffff8082165f908152600b602052604090205491925016158015612def57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1663e2498f726040518163ffffffff1660e01b8152600401602060405180830381865afa158015612db3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dd79190614dac565b73ffffffffffffffffffffffffffffffffffffffff16145b612e25576040517f9db8d5b100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116612e72576040517ff418616400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8181165f908152600b6020908152604080832080549487167fffffffffffffffffffffffff00000000000000000000000000000000000000009586168117909155808452600f835281842080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556007805491820181559094527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6889093018054909416831790935591519081527fcf583bb0c569eb967f806b11601c4cb93c10310485c67add5f8362c2f212321f9101612133565b612f6d613015565b6003805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155612fd060025473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60025473ffffffffffffffffffffffffffffffffffffffff16331461158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161186b565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f005c156130ef576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61158d7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f006001613b07565b4283602001351015613158576040517ffef01cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131628335613b0e565b5f7f76c5f3d53a01a9f0a59b081b22aba3a0f03248e9241993e97d1d025ef2ffaac28435602086013561319b60608801604089016142e9565b6131a86060890189614890565b6040516020016131b9929190614dc7565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291905280516020909101206131fc60808a018a614890565b60405160200161320d929190614dc7565b604080518083037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00181528282528051602091820120335f90815260158352839020549184019890985290820195909552606081019390935273ffffffffffffffffffffffffffffffffffffffff918216608084015260a083015260c0820193909352911660e0820152610100015b6040516020818303038152906040528051906020012090505f6132be82613b8e565b90505f6133008286868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250613bd592505050565b60055490915073ffffffffffffffffffffffffffffffffffffffff808316911614613357576040517f8baa579f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050505050565b81515f5b81811015610fa6575f84828151811061337e5761337e614971565b60200260200101515f015190505f85838151811061339e5761339e614971565b60209081029190910181015181015173ffffffffffffffffffffffffffffffffffffffff8088165f908152600d845260408082209287168252919093528220549092506133ec908390614ae8565b73ffffffffffffffffffffffffffffffffffffffff8481165f908152600b60205260409020549192501661344c576040517ff418616400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8087165f908152600d6020908152604080832093871683529290529081205461348b908490614de2565b1215806134d4575073ffffffffffffffffffffffffffffffffffffffff8087165f908152600d602090815260408083209387168352929052908120546134d2908390614de2565b125b1561350b576040517f09a09f7500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8087165f908152600d60209081526040808320969093168252949094529092209190915550600101613363565b5f5f8212156135b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f53616665436173743a2076616c7565206d75737420626520706f736974697665604482015260640161186b565b5090565b60405173ffffffffffffffffffffffffffffffffffffffff8481166024830152838116604483015260648201839052610fa69186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613bf7565b73ffffffffffffffffffffffffffffffffffffffff8084165f9081526016602090815260408083209386168352929052908120906136866201518042614858565b90505f826002015482111561369c5750826136af565b8383600101546136ac9190614c02565b90505b825415806136be575082548111155b6136f4576040517ff5b71ffc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040805160608101825293548452602080850192835284820193845273ffffffffffffffffffffffffffffffffffffffff9788165f9081526016825282812097909816885295909552939094209051815591516001830155509051600290910155565b60405173ffffffffffffffffffffffffffffffffffffffff838116602483015260448201839052610e9691859182169063a9059cbb906064016135fe565b61158d7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f005f613b07565b610e96838383613c96565b4283602001351015613808576040517ffef01cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138128335613b0e565b5f7f6b9aa5f8de278806afcc63bb2d2e633b4da3536375ca60f09ae8fae5829b3c468435602086013561384b60608801604089016142e9565b6138586060890189614890565b604051602001613869929190614dc7565b6040516020818303038152906040528051906020012060125f8a604001602081019061389591906142e9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182015f2054825193840198909852908201959095526060810193909352908316608083015260a0820152911660c082015260e00161329c565b600380547fffffffffffffffffffffffff000000000000000000000000000000000000000016905561187d81613d6d565b606060ff831461393f5761393883613de3565b90506139ca565b81805461394b90614e2d565b80601f016020809104026020016040519081016040528092919081815260200182805461397790614e2d565b80156139c25780601f10613999576101008083540402835291602001916139c2565b820191905f5260205f20905b8154815290600101906020018083116139a557829003601f168201915b505050505090505b92915050565b5f7f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8211156135b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f53616665436173743a2076616c756520646f65736e27742066697420696e206160448201527f6e20696e74323536000000000000000000000000000000000000000000000000606482015260840161186b565b4283602001351015613abf576040517ffef01cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613ac98335613b0e565b5f7fe83563cdfbb4d31bd8759eea5a634fbe67ea13b6739d04d2426c621fee979fa48435602086013561384b60608801604089016142e9565b905090565b80825d5050565b5f818152600c602052604090205460ff1615613b56576040517f1f6d5aef00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b5f6139ca613b9a613e20565b836040517f19010000000000000000000000000000000000000000000000000000000000008152600281019290925260228201526042902090565b5f5f5f613be28585613f56565b91509150613bef81613f98565b509392505050565b5f5f60205f8451602086015f885af180613c16576040513d5f823e3d81fd5b50505f513d91508115613c2d578060011415613c47565b73ffffffffffffffffffffffffffffffffffffffff84163b155b15610fa6576040517f5274afe700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8516600482015260240161186b565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b300000000000000000000000000000000000000000000000000000000179052613d22848261414a565b610fa65760405173ffffffffffffffffffffffffffffffffffffffff84811660248301525f6044830152613d6391869182169063095ea7b3906064016135fe565b610fa68482613bf7565b6002805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b60605f613def836141a0565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b5f3073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000074a4cd023e5afb88369e3f22b02440f2614a136716148015613e8557507f000000000000000000000000000000000000000000000000000000000000210546145b15613eaf57507f6a31d2ae16bc1d998e1ed1c6298be421bb07573f86056f89a02ac6fdf4fcf71990565b613b02604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f7d485e7f5909c9fced2f5688fd495e8d13121768f2de07ec12763d84bd75b422918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b5f5f8251604103613f8a576020830151604084015160608501515f1a613f7e878285856141e0565b94509450505050613f91565b505f905060025b9250929050565b5f816004811115613fab57613fab614e78565b03613fb35750565b6001816004811115613fc757613fc7614e78565b0361402e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161186b565b600281600481111561404257614042614e78565b036140a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161186b565b60038160048111156140bd576140bd614e78565b0361187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161186b565b5f5f5f5f60205f8651602088015f8a5af192503d91505f5190508280156141965750811561417b5780600114614196565b5f8673ffffffffffffffffffffffffffffffffffffffff163b115b9695505050505050565b5f60ff8216601f8111156139ca576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561421557505f905060036142bf565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614266573d5f5f3e3d5ffd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166142b9575f600192509250506142bf565b91505f90505b94509492505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461187d575f5ffd5b5f602082840312156142f9575f5ffd5b8135614304816142c8565b9392505050565b5f5f5f6060848603121561431d575f5ffd5b8335614328816142c8565b92506020840135614338816142c8565b929592945050506040919091013590565b5f5f83601f840112614359575f5ffd5b50813567ffffffffffffffff811115614370575f5ffd5b602083019150836020828501011115613f91575f5ffd5b5f5f5f60408486031215614399575f5ffd5b833567ffffffffffffffff8111156143af575f5ffd5b840160a081870312156143c0575f5ffd5b9250602084013567ffffffffffffffff8111156143db575f5ffd5b6143e786828701614349565b9497909650939450505050565b5f60208284031215614404575f5ffd5b5035919050565b5f5f83601f84011261441b575f5ffd5b50813567ffffffffffffffff811115614432575f5ffd5b6020830191508360208260061b8501011115613f91575f5ffd5b5f5f5f6040848603121561445e575f5ffd5b833567ffffffffffffffff811115614474575f5ffd5b6144808682870161440b565b9094509250506020840135614494816142c8565b809150509250925092565b803580151581146144ae575f5ffd5b919050565b5f5f5f606084860312156144c5575f5ffd5b83356144d0816142c8565b925060208401356144e0816142c8565b91506144ee6040850161449f565b90509250925092565b5f5f60408385031215614508575f5ffd5b8235614513816142c8565b91506020830135614523816142c8565b809150509250929050565b5f6080828403121561453e575f5ffd5b50919050565b5f5f5f60408486031215614556575f5ffd5b833567ffffffffffffffff81111561456c575f5ffd5b6145788682870161452e565b935050602084013567ffffffffffffffff8111156143db575f5ffd5b5f5f5f5f5f60a086880312156145a8575f5ffd5b85356145b3816142c8565b945060208601356145c3816142c8565b93506040860135925060608601356145da816142c8565b949793965091946080013592915050565b5f81518084528060208401602086015e5f6020828601015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011685010191505092915050565b7fff000000000000000000000000000000000000000000000000000000000000008816815260e060208201525f61467160e08301896145eb565b828103604084015261468381896145eb565b6060840188905273ffffffffffffffffffffffffffffffffffffffff8716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b818110156146e55783518352602093840193909201916001016146c7565b50909b9a5050505050505050505050565b5f5f60208385031215614707575f5ffd5b823567ffffffffffffffff81111561471d575f5ffd5b8301601f8101851361472d575f5ffd5b803567ffffffffffffffff811115614743575f5ffd5b8560208260051b8401011115614757575f5ffd5b6020919091019590945092505050565b5f5f60408385031215614778575f5ffd5b8235614783816142c8565b91506147916020840161449f565b90509250929050565b5f5f5f5f5f60a086880312156147ae575f5ffd5b85356147b9816142c8565b945060208601356147c9816142c8565b935060408601356147d9816142c8565b92506147e76060870161449f565b91506147f56080870161449f565b90509295509295909350565b5f5f60408385031215614812575f5ffd5b823561481d816142c8565b946020939093013593505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8261488b577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b5f5f83357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18436030181126148c3575f5ffd5b83018035915067ffffffffffffffff8211156148dd575f5ffd5b6020019150600681901b3603821315613f91575f5ffd5b5f6040828403128015614905575f5ffd5b506040805190810167ffffffffffffffff8111828210171561494e577f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b604052823561495c816142c8565b81526020928301359281019290925250919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b818103818111156139ca576139ca61482b565b5f7f800000000000000000000000000000000000000000000000000000000000000082036149e1576149e161482b565b505f0390565b8183526020830192505f815f5b84811015614a3b578135614a07816142c8565b73ffffffffffffffffffffffffffffffffffffffff16865260208281013590870152604095860195909101906001016149f4565b5093949350505050565b73ffffffffffffffffffffffffffffffffffffffff8716815273ffffffffffffffffffffffffffffffffffffffff86166020820152608060408201525f614a906080830186886149e7565b8281036060840152614aa38185876149e7565b9998505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff84168152604060208201525f614adf6040830184866149e7565b95945050505050565b8082018281125f831280158216821582161715614b0757614b0761482b565b505092915050565b8181035f831280158383131683831282161715614b2e57614b2e61482b565b5092915050565b5f82357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc1833603018112614b67575f5ffd5b9190910192915050565b5f5f83357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112614ba4575f5ffd5b83018035915067ffffffffffffffff821115614bbe575f5ffd5b6020019150606081023603821315613f91575f5ffd5b5f60208284031215614be4575f5ffd5b5051919050565b80820281158282048414176139ca576139ca61482b565b808201808211156139ca576139ca61482b565b602080825281018290525f6040600584901b8301810190830185837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc136839003015b87821015614d9f577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08786030184528235818112614c93575f5ffd5b8901604086018135614ca4816142c8565b73ffffffffffffffffffffffffffffffffffffffff1687526020820135368390037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1018112614cf1575f5ffd5b60209201918201913567ffffffffffffffff811115614d0e575f5ffd5b606081023603831315614d1f575f5ffd5b60406020890152908190525f90606088015b81831015614d83578335614d44816142c8565b73ffffffffffffffffffffffffffffffffffffffff16815260208481013590820152604080850135908201526060938401936001939093019201614d31565b9750505060209485019493909301925060019190910190614c57565b5092979650505050505050565b5f60208284031215614dbc575f5ffd5b8151614304816142c8565b602081525f614dda6020830184866149e7565b949350505050565b8082025f82127f800000000000000000000000000000000000000000000000000000000000000084141615614e1957614e1961482b565b81810583148215176139ca576139ca61482b565b600181811c90821680614e4157607f821691505b60208210810361453e577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffdfea26469706673582212203d0d10ef5155e204aec660321808f914624c52dfc9f21a39bf3412814934863a64736f6c634300081c0033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$2,083,392.64
Net Worth in ETH
732.602334
Token Allocations
WETH
38.64%
USDC
32.65%
CBBTC
28.71%
Others
0.00%
Multichain Portfolio | 35 Chains
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.