More Info
Private Name Tags
ContractCreator
TokenTracker
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
AaveV3ERC4626
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.13; import {ERC20} from "solmate/tokens/ERC20.sol"; import {ERC4626} from "solmate/mixins/ERC4626.sol"; import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol"; import {IPool} from "./external/IPool.sol"; import {IRewardsController} from "./external/IRewardsController.sol"; /// @title AaveV3ERC4626 /// @author zefram.eth /// @notice ERC4626 wrapper for Aave V3 /// @dev Important security note: due to Aave using a rebasing model for aTokens, /// this contract cannot independently keep track of the deposited funds, so it is possible /// for an attacker to directly transfer aTokens to this contract, increase the vault share /// price atomically, and then exploit an external lending market that uses this contract /// as collateral. contract AaveV3ERC4626 is ERC4626 { /// ----------------------------------------------------------------------- /// Libraries usage /// ----------------------------------------------------------------------- using SafeTransferLib for ERC20; /// ----------------------------------------------------------------------- /// Events /// ----------------------------------------------------------------------- event ClaimRewards(uint256 amount); /// ----------------------------------------------------------------------- /// Constants /// ----------------------------------------------------------------------- uint256 internal constant DECIMALS_MASK = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFF; uint256 internal constant ACTIVE_MASK = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFF; uint256 internal constant FROZEN_MASK = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFF; uint256 internal constant PAUSED_MASK = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFF; uint256 internal constant SUPPLY_CAP_MASK = 0xFFFFFFFFFFFFFFFFFFFFFFFFFF000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFF; uint256 internal constant SUPPLY_CAP_START_BIT_POSITION = 116; uint256 internal constant RESERVE_DECIMALS_START_BIT_POSITION = 48; /// ----------------------------------------------------------------------- /// Immutable params /// ----------------------------------------------------------------------- /// @notice The Aave aToken contract ERC20 public immutable aToken; /// @notice The Aave Pool contract IPool public immutable lendingPool; /// @notice The address that will receive the liquidity mining rewards (if any) address public immutable rewardRecipient; /// @notice The Aave RewardsController contract IRewardsController public immutable rewardsController; /// ----------------------------------------------------------------------- /// Constructor /// ----------------------------------------------------------------------- constructor( ERC20 asset_, ERC20 aToken_, IPool lendingPool_, address rewardRecipient_, IRewardsController rewardsController_ ) ERC4626(asset_, _vaultName(asset_), _vaultSymbol(asset_)) { aToken = aToken_; lendingPool = lendingPool_; rewardRecipient = rewardRecipient_; rewardsController = rewardsController_; } /// ----------------------------------------------------------------------- /// Aave liquidity mining /// ----------------------------------------------------------------------- /// @notice Claims liquidity mining rewards from Aave and sends it to rewardRecipient function claimRewards() external { address[] memory assets = new address[](1); assets[0] = address(aToken); (, uint256[] memory claimedAmounts) = rewardsController.claimAllRewards(assets, rewardRecipient); emit ClaimRewards(claimedAmounts[0]); } /// ----------------------------------------------------------------------- /// ERC4626 overrides /// ----------------------------------------------------------------------- function withdraw(uint256 assets, address receiver, address owner) public virtual override returns (uint256 shares) { shares = previewWithdraw(assets); // No need to check for rounding error, previewWithdraw rounds up. if (msg.sender != owner) { uint256 allowed = allowance[owner][msg.sender]; // Saves gas for limited approvals. if (allowed != type(uint256).max) { allowance[owner][msg.sender] = allowed - shares; } } beforeWithdraw(assets, shares); _burn(owner, shares); emit Withdraw(msg.sender, receiver, owner, assets, shares); // withdraw assets directly from Aave lendingPool.withdraw(address(asset), assets, receiver); } function redeem(uint256 shares, address receiver, address owner) public virtual override returns (uint256 assets) { if (msg.sender != owner) { uint256 allowed = allowance[owner][msg.sender]; // Saves gas for limited approvals. if (allowed != type(uint256).max) { allowance[owner][msg.sender] = allowed - shares; } } // Check for rounding error since we round down in previewRedeem. require((assets = previewRedeem(shares)) != 0, "ZERO_ASSETS"); beforeWithdraw(assets, shares); _burn(owner, shares); emit Withdraw(msg.sender, receiver, owner, assets, shares); // withdraw assets directly from Aave lendingPool.withdraw(address(asset), assets, receiver); } function totalAssets() public view virtual override returns (uint256) { // aTokens use rebasing to accrue interest, so the total assets is just the aToken balance return aToken.balanceOf(address(this)); } function afterDeposit(uint256 assets, uint256 /*shares*/ ) internal virtual override { /// ----------------------------------------------------------------------- /// Deposit assets into Aave /// ----------------------------------------------------------------------- // approve to lendingPool asset.safeApprove(address(lendingPool), assets); // deposit into lendingPool lendingPool.supply(address(asset), assets, address(this), 0); } function maxDeposit(address) public view virtual override returns (uint256) { // check if asset is paused uint256 configData = lendingPool.getReserveData(address(asset)).configuration.data; if (!(_getActive(configData) && !_getFrozen(configData) && !_getPaused(configData))) { return 0; } // handle supply cap uint256 supplyCapInWholeTokens = _getSupplyCap(configData); if (supplyCapInWholeTokens == 0) { return type(uint256).max; } uint8 tokenDecimals = _getDecimals(configData); uint256 supplyCap = supplyCapInWholeTokens * 10 ** tokenDecimals; return supplyCap - aToken.totalSupply(); } function maxMint(address) public view virtual override returns (uint256) { // check if asset is paused uint256 configData = lendingPool.getReserveData(address(asset)).configuration.data; if (!(_getActive(configData) && !_getFrozen(configData) && !_getPaused(configData))) { return 0; } // handle supply cap uint256 supplyCapInWholeTokens = _getSupplyCap(configData); if (supplyCapInWholeTokens == 0) { return type(uint256).max; } uint8 tokenDecimals = _getDecimals(configData); uint256 supplyCap = supplyCapInWholeTokens * 10 ** tokenDecimals; return convertToShares(supplyCap - aToken.totalSupply()); } function maxWithdraw(address owner) public view virtual override returns (uint256) { // check if asset is paused uint256 configData = lendingPool.getReserveData(address(asset)).configuration.data; if (!(_getActive(configData) && !_getPaused(configData))) { return 0; } uint256 cash = asset.balanceOf(address(aToken)); uint256 assetsBalance = convertToAssets(balanceOf[owner]); return cash < assetsBalance ? cash : assetsBalance; } function maxRedeem(address owner) public view virtual override returns (uint256) { // check if asset is paused uint256 configData = lendingPool.getReserveData(address(asset)).configuration.data; if (!(_getActive(configData) && !_getPaused(configData))) { return 0; } uint256 cash = asset.balanceOf(address(aToken)); uint256 cashInShares = convertToShares(cash); uint256 shareBalance = balanceOf[owner]; return cashInShares < shareBalance ? cashInShares : shareBalance; } /// ----------------------------------------------------------------------- /// ERC20 metadata generation /// ----------------------------------------------------------------------- function _vaultName(ERC20 asset_) internal view virtual returns (string memory vaultName) { vaultName = string.concat("ERC4626-Wrapped Aave v3 ", asset_.symbol()); } function _vaultSymbol(ERC20 asset_) internal view virtual returns (string memory vaultSymbol) { vaultSymbol = string.concat("wa", asset_.symbol()); } /// ----------------------------------------------------------------------- /// Internal functions /// ----------------------------------------------------------------------- function _getDecimals(uint256 configData) internal pure returns (uint8) { return uint8((configData & ~DECIMALS_MASK) >> RESERVE_DECIMALS_START_BIT_POSITION); } function _getActive(uint256 configData) internal pure returns (bool) { return configData & ~ACTIVE_MASK != 0; } function _getFrozen(uint256 configData) internal pure returns (bool) { return configData & ~FROZEN_MASK != 0; } function _getPaused(uint256 configData) internal pure returns (bool) { return configData & ~PAUSED_MASK != 0; } function _getSupplyCap(uint256 configData) internal pure returns (uint256) { return (configData & ~SUPPLY_CAP_MASK) >> SUPPLY_CAP_START_BIT_POSITION; } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Modern and gas efficient ERC20 + EIP-2612 implementation. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol) /// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol) /// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it. abstract contract ERC20 { /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event Transfer(address indexed from, address indexed to, uint256 amount); event Approval(address indexed owner, address indexed spender, uint256 amount); /*////////////////////////////////////////////////////////////// METADATA STORAGE //////////////////////////////////////////////////////////////*/ string public name; string public symbol; uint8 public immutable decimals; /*////////////////////////////////////////////////////////////// ERC20 STORAGE //////////////////////////////////////////////////////////////*/ uint256 public totalSupply; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; /*////////////////////////////////////////////////////////////// EIP-2612 STORAGE //////////////////////////////////////////////////////////////*/ uint256 internal immutable INITIAL_CHAIN_ID; bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR; mapping(address => uint256) public nonces; /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor( string memory _name, string memory _symbol, uint8 _decimals ) { name = _name; symbol = _symbol; decimals = _decimals; INITIAL_CHAIN_ID = block.chainid; INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator(); } /*////////////////////////////////////////////////////////////// ERC20 LOGIC //////////////////////////////////////////////////////////////*/ function approve(address spender, uint256 amount) public virtual returns (bool) { allowance[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } function transfer(address to, uint256 amount) public virtual returns (bool) { balanceOf[msg.sender] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(msg.sender, to, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual returns (bool) { uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals. if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount; balanceOf[from] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(from, to, amount); return true; } /*////////////////////////////////////////////////////////////// EIP-2612 LOGIC //////////////////////////////////////////////////////////////*/ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED"); // Unchecked because the only math done is incrementing // the owner's nonce which cannot realistically overflow. unchecked { address recoveredAddress = ecrecover( keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR(), keccak256( abi.encode( keccak256( "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)" ), owner, spender, value, nonces[owner]++, deadline ) ) ) ), v, r, s ); require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER"); allowance[recoveredAddress][spender] = value; } emit Approval(owner, spender, value); } function DOMAIN_SEPARATOR() public view virtual returns (bytes32) { return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator(); } function computeDomainSeparator() internal view virtual returns (bytes32) { return keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(name)), keccak256("1"), block.chainid, address(this) ) ); } /*////////////////////////////////////////////////////////////// INTERNAL MINT/BURN LOGIC //////////////////////////////////////////////////////////////*/ function _mint(address to, uint256 amount) internal virtual { totalSupply += amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(address(0), to, amount); } function _burn(address from, uint256 amount) internal virtual { balanceOf[from] -= amount; // Cannot underflow because a user's balance // will never be larger than the total supply. unchecked { totalSupply -= amount; } emit Transfer(from, address(0), amount); } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; import {ERC20} from "../tokens/ERC20.sol"; import {SafeTransferLib} from "../utils/SafeTransferLib.sol"; import {FixedPointMathLib} from "../utils/FixedPointMathLib.sol"; /// @notice Minimal ERC4626 tokenized Vault implementation. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/mixins/ERC4626.sol) abstract contract ERC4626 is ERC20 { using SafeTransferLib for ERC20; using FixedPointMathLib for uint256; /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event Deposit(address indexed caller, address indexed owner, uint256 assets, uint256 shares); event Withdraw( address indexed caller, address indexed receiver, address indexed owner, uint256 assets, uint256 shares ); /*////////////////////////////////////////////////////////////// IMMUTABLES //////////////////////////////////////////////////////////////*/ ERC20 public immutable asset; constructor( ERC20 _asset, string memory _name, string memory _symbol ) ERC20(_name, _symbol, _asset.decimals()) { asset = _asset; } /*////////////////////////////////////////////////////////////// DEPOSIT/WITHDRAWAL LOGIC //////////////////////////////////////////////////////////////*/ function deposit(uint256 assets, address receiver) public virtual returns (uint256 shares) { // Check for rounding error since we round down in previewDeposit. require((shares = previewDeposit(assets)) != 0, "ZERO_SHARES"); // Need to transfer before minting or ERC777s could reenter. asset.safeTransferFrom(msg.sender, address(this), assets); _mint(receiver, shares); emit Deposit(msg.sender, receiver, assets, shares); afterDeposit(assets, shares); } function mint(uint256 shares, address receiver) public virtual returns (uint256 assets) { assets = previewMint(shares); // No need to check for rounding error, previewMint rounds up. // Need to transfer before minting or ERC777s could reenter. asset.safeTransferFrom(msg.sender, address(this), assets); _mint(receiver, shares); emit Deposit(msg.sender, receiver, assets, shares); afterDeposit(assets, shares); } function withdraw( uint256 assets, address receiver, address owner ) public virtual returns (uint256 shares) { shares = previewWithdraw(assets); // No need to check for rounding error, previewWithdraw rounds up. if (msg.sender != owner) { uint256 allowed = allowance[owner][msg.sender]; // Saves gas for limited approvals. if (allowed != type(uint256).max) allowance[owner][msg.sender] = allowed - shares; } beforeWithdraw(assets, shares); _burn(owner, shares); emit Withdraw(msg.sender, receiver, owner, assets, shares); asset.safeTransfer(receiver, assets); } function redeem( uint256 shares, address receiver, address owner ) public virtual returns (uint256 assets) { if (msg.sender != owner) { uint256 allowed = allowance[owner][msg.sender]; // Saves gas for limited approvals. if (allowed != type(uint256).max) allowance[owner][msg.sender] = allowed - shares; } // Check for rounding error since we round down in previewRedeem. require((assets = previewRedeem(shares)) != 0, "ZERO_ASSETS"); beforeWithdraw(assets, shares); _burn(owner, shares); emit Withdraw(msg.sender, receiver, owner, assets, shares); asset.safeTransfer(receiver, assets); } /*////////////////////////////////////////////////////////////// ACCOUNTING LOGIC //////////////////////////////////////////////////////////////*/ function totalAssets() public view virtual returns (uint256); function convertToShares(uint256 assets) public view virtual returns (uint256) { uint256 supply = totalSupply; // Saves an extra SLOAD if totalSupply is non-zero. return supply == 0 ? assets : assets.mulDivDown(supply, totalAssets()); } function convertToAssets(uint256 shares) public view virtual returns (uint256) { uint256 supply = totalSupply; // Saves an extra SLOAD if totalSupply is non-zero. return supply == 0 ? shares : shares.mulDivDown(totalAssets(), supply); } function previewDeposit(uint256 assets) public view virtual returns (uint256) { return convertToShares(assets); } function previewMint(uint256 shares) public view virtual returns (uint256) { uint256 supply = totalSupply; // Saves an extra SLOAD if totalSupply is non-zero. return supply == 0 ? shares : shares.mulDivUp(totalAssets(), supply); } function previewWithdraw(uint256 assets) public view virtual returns (uint256) { uint256 supply = totalSupply; // Saves an extra SLOAD if totalSupply is non-zero. return supply == 0 ? assets : assets.mulDivUp(supply, totalAssets()); } function previewRedeem(uint256 shares) public view virtual returns (uint256) { return convertToAssets(shares); } /*////////////////////////////////////////////////////////////// DEPOSIT/WITHDRAWAL LIMIT LOGIC //////////////////////////////////////////////////////////////*/ function maxDeposit(address) public view virtual returns (uint256) { return type(uint256).max; } function maxMint(address) public view virtual returns (uint256) { return type(uint256).max; } function maxWithdraw(address owner) public view virtual returns (uint256) { return convertToAssets(balanceOf[owner]); } function maxRedeem(address owner) public view virtual returns (uint256) { return balanceOf[owner]; } /*////////////////////////////////////////////////////////////// INTERNAL HOOKS LOGIC //////////////////////////////////////////////////////////////*/ function beforeWithdraw(uint256 assets, uint256 shares) internal virtual {} function afterDeposit(uint256 assets, uint256 shares) internal virtual {} }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; import {ERC20} from "../tokens/ERC20.sol"; /// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol) /// @dev Use with caution! Some functions in this library knowingly create dirty bits at the destination of the free memory pointer. /// @dev Note that none of the functions in this library check that a token has code at all! That responsibility is delegated to the caller. library SafeTransferLib { /*////////////////////////////////////////////////////////////// ETH OPERATIONS //////////////////////////////////////////////////////////////*/ function safeTransferETH(address to, uint256 amount) internal { bool success; assembly { // Transfer the ETH and store if it succeeded or not. success := call(gas(), to, amount, 0, 0, 0, 0) } require(success, "ETH_TRANSFER_FAILED"); } /*////////////////////////////////////////////////////////////// ERC20 OPERATIONS //////////////////////////////////////////////////////////////*/ function safeTransferFrom( ERC20 token, address from, address to, uint256 amount ) internal { bool success; assembly { // Get a pointer to some free memory. let freeMemoryPointer := mload(0x40) // Write the abi-encoded calldata into memory, beginning with the function selector. mstore(freeMemoryPointer, 0x23b872dd00000000000000000000000000000000000000000000000000000000) mstore(add(freeMemoryPointer, 4), from) // Append the "from" argument. mstore(add(freeMemoryPointer, 36), to) // Append the "to" argument. mstore(add(freeMemoryPointer, 68), amount) // Append the "amount" argument. success := and( // Set success to whether the call reverted, if not we check it either // returned exactly 1 (can't just be non-zero data), or had no return data. or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())), // We use 100 because the length of our calldata totals up like so: 4 + 32 * 3. // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space. // Counterintuitively, this call must be positioned second to the or() call in the // surrounding and() call or else returndatasize() will be zero during the computation. call(gas(), token, 0, freeMemoryPointer, 100, 0, 32) ) } require(success, "TRANSFER_FROM_FAILED"); } function safeTransfer( ERC20 token, address to, uint256 amount ) internal { bool success; assembly { // Get a pointer to some free memory. let freeMemoryPointer := mload(0x40) // Write the abi-encoded calldata into memory, beginning with the function selector. mstore(freeMemoryPointer, 0xa9059cbb00000000000000000000000000000000000000000000000000000000) mstore(add(freeMemoryPointer, 4), to) // Append the "to" argument. mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. success := and( // Set success to whether the call reverted, if not we check it either // returned exactly 1 (can't just be non-zero data), or had no return data. or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())), // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2. // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space. // Counterintuitively, this call must be positioned second to the or() call in the // surrounding and() call or else returndatasize() will be zero during the computation. call(gas(), token, 0, freeMemoryPointer, 68, 0, 32) ) } require(success, "TRANSFER_FAILED"); } function safeApprove( ERC20 token, address to, uint256 amount ) internal { bool success; assembly { // Get a pointer to some free memory. let freeMemoryPointer := mload(0x40) // Write the abi-encoded calldata into memory, beginning with the function selector. mstore(freeMemoryPointer, 0x095ea7b300000000000000000000000000000000000000000000000000000000) mstore(add(freeMemoryPointer, 4), to) // Append the "to" argument. mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. success := and( // Set success to whether the call reverted, if not we check it either // returned exactly 1 (can't just be non-zero data), or had no return data. or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())), // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2. // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space. // Counterintuitively, this call must be positioned second to the or() call in the // surrounding and() call or else returndatasize() will be zero during the computation. call(gas(), token, 0, freeMemoryPointer, 68, 0, 32) ) } require(success, "APPROVE_FAILED"); } }
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.4; /** * @title IPool * @author Aave * @notice Defines the basic interface for an Aave Pool. * */ interface IPool { struct ReserveConfigurationMap { //bit 0-15: LTV //bit 16-31: Liq. threshold //bit 32-47: Liq. bonus //bit 48-55: Decimals //bit 56: reserve is active //bit 57: reserve is frozen //bit 58: borrowing is enabled //bit 59: stable rate borrowing enabled //bit 60: asset is paused //bit 61: borrowing in isolation mode is enabled //bit 62-63: reserved //bit 64-79: reserve factor //bit 80-115 borrow cap in whole tokens, borrowCap == 0 => no cap //bit 116-151 supply cap in whole tokens, supplyCap == 0 => no cap //bit 152-167 liquidation protocol fee //bit 168-175 eMode category //bit 176-211 unbacked mint cap in whole tokens, unbackedMintCap == 0 => minting disabled //bit 212-251 debt ceiling for isolation mode with (ReserveConfiguration::DEBT_CEILING_DECIMALS) decimals //bit 252-255 unused uint256 data; } struct ReserveData { ReserveConfigurationMap configuration; //the liquidity index. Expressed in ray uint128 liquidityIndex; //the current supply rate. Expressed in ray uint128 currentLiquidityRate; //variable borrow index. Expressed in ray uint128 variableBorrowIndex; //the current variable borrow rate. Expressed in ray uint128 currentVariableBorrowRate; //the current stable borrow rate. Expressed in ray uint128 currentStableBorrowRate; //timestamp of last update uint40 lastUpdateTimestamp; //the id of the reserve. Represents the position in the list of the active reserves uint16 id; //aToken address address aTokenAddress; //stableDebtToken address address stableDebtTokenAddress; //variableDebtToken address address variableDebtTokenAddress; //address of the interest rate strategy address interestRateStrategyAddress; //the current treasury balance, scaled uint128 accruedToTreasury; //the outstanding unbacked aTokens minted through the bridging feature uint128 unbacked; //the outstanding debt borrowed against this asset in isolation mode uint128 isolationModeTotalDebt; } /** * @notice Supplies an `amount` of underlying asset into the reserve, receiving in return overlying aTokens. * - E.g. User supplies 100 USDC and gets in return 100 aUSDC * @param asset The address of the underlying asset to supply * @param amount The amount to be supplied * @param onBehalfOf The address that will receive the aTokens, same as msg.sender if the user * wants to receive them on his own wallet, or a different address if the beneficiary of aTokens * is a different wallet * @param referralCode Code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man * */ function supply(address asset, uint256 amount, address onBehalfOf, uint16 referralCode) external; /** * @notice Withdraws an `amount` of underlying asset from the reserve, burning the equivalent aTokens owned * E.g. User has 100 aUSDC, calls withdraw() and receives 100 USDC, burning the 100 aUSDC * @param asset The address of the underlying asset to withdraw * @param amount The underlying amount to be withdrawn * - Send the value type(uint256).max in order to withdraw the whole aToken balance * @param to The address that will receive the underlying, same as msg.sender if the user * wants to receive it on his own wallet, or a different address if the beneficiary is a * different wallet * @return The final amount withdrawn * */ function withdraw(address asset, uint256 amount, address to) external returns (uint256); /** * @notice Returns the state and configuration of the reserve * @param asset The address of the underlying asset of the reserve * @return The state and configuration data of the reserve * */ function getReserveData(address asset) external view returns (ReserveData memory); }
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.4; /** * @title IRewardsController * @author Aave * @notice Defines the basic interface for a Rewards Controller. */ interface IRewardsController { /** * @dev Claims all rewards for a user to the desired address, on all the assets of the pool, accumulating the pending rewards * @param assets The list of assets to check eligible distributions before claiming rewards * @param to The address that will be receiving the rewards * @return rewardsList List of addresses of the reward tokens * @return claimedAmounts List that contains the claimed amount per reward, following same order as "rewardList" * */ function claimAllRewards(address[] calldata assets, address to) external returns (address[] memory rewardsList, uint256[] memory claimedAmounts); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Arithmetic library with operations for fixed-point numbers. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/FixedPointMathLib.sol) /// @author Inspired by USM (https://github.com/usmfum/USM/blob/master/contracts/WadMath.sol) library FixedPointMathLib { /*////////////////////////////////////////////////////////////// SIMPLIFIED FIXED POINT OPERATIONS //////////////////////////////////////////////////////////////*/ uint256 internal constant WAD = 1e18; // The scalar of ETH and most ERC20s. function mulWadDown(uint256 x, uint256 y) internal pure returns (uint256) { return mulDivDown(x, y, WAD); // Equivalent to (x * y) / WAD rounded down. } function mulWadUp(uint256 x, uint256 y) internal pure returns (uint256) { return mulDivUp(x, y, WAD); // Equivalent to (x * y) / WAD rounded up. } function divWadDown(uint256 x, uint256 y) internal pure returns (uint256) { return mulDivDown(x, WAD, y); // Equivalent to (x * WAD) / y rounded down. } function divWadUp(uint256 x, uint256 y) internal pure returns (uint256) { return mulDivUp(x, WAD, y); // Equivalent to (x * WAD) / y rounded up. } /*////////////////////////////////////////////////////////////// LOW LEVEL FIXED POINT OPERATIONS //////////////////////////////////////////////////////////////*/ function mulDivDown( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 z) { assembly { // Store x * y in z for now. z := mul(x, y) // Equivalent to require(denominator != 0 && (x == 0 || (x * y) / x == y)) if iszero(and(iszero(iszero(denominator)), or(iszero(x), eq(div(z, x), y)))) { revert(0, 0) } // Divide z by the denominator. z := div(z, denominator) } } function mulDivUp( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 z) { assembly { // Store x * y in z for now. z := mul(x, y) // Equivalent to require(denominator != 0 && (x == 0 || (x * y) / x == y)) if iszero(and(iszero(iszero(denominator)), or(iszero(x), eq(div(z, x), y)))) { revert(0, 0) } // First, divide z - 1 by the denominator and add 1. // We allow z - 1 to underflow if z is 0, because we multiply the // end result by 0 if z is zero, ensuring we return 0 if z is zero. z := mul(iszero(iszero(z)), add(div(sub(z, 1), denominator), 1)) } } function rpow( uint256 x, uint256 n, uint256 scalar ) internal pure returns (uint256 z) { assembly { switch x case 0 { switch n case 0 { // 0 ** 0 = 1 z := scalar } default { // 0 ** n = 0 z := 0 } } default { switch mod(n, 2) case 0 { // If n is even, store scalar in z for now. z := scalar } default { // If n is odd, store x in z for now. z := x } // Shifting right by 1 is like dividing by 2. let half := shr(1, scalar) for { // Shift n right by 1 before looping to halve it. n := shr(1, n) } n { // Shift n right by 1 each iteration to halve it. n := shr(1, n) } { // Revert immediately if x ** 2 would overflow. // Equivalent to iszero(eq(div(xx, x), x)) here. if shr(128, x) { revert(0, 0) } // Store x squared. let xx := mul(x, x) // Round to the nearest number. let xxRound := add(xx, half) // Revert if xx + half overflowed. if lt(xxRound, xx) { revert(0, 0) } // Set x to scaled xxRound. x := div(xxRound, scalar) // If n is even: if mod(n, 2) { // Compute z * x. let zx := mul(z, x) // If z * x overflowed: if iszero(eq(div(zx, x), z)) { // Revert if x is non-zero. if iszero(iszero(x)) { revert(0, 0) } } // Round to the nearest number. let zxRound := add(zx, half) // Revert if zx + half overflowed. if lt(zxRound, zx) { revert(0, 0) } // Return properly scaled zxRound. z := div(zxRound, scalar) } } } } } /*////////////////////////////////////////////////////////////// GENERAL NUMBER UTILITIES //////////////////////////////////////////////////////////////*/ function sqrt(uint256 x) internal pure returns (uint256 z) { assembly { let y := x // We start y at x, which will help us make our initial estimate. z := 181 // The "correct" value is 1, but this saves a multiplication later. // This segment is to get a reasonable initial estimate for the Babylonian method. With a bad // start, the correct # of bits increases ~linearly each iteration instead of ~quadratically. // We check y >= 2^(k + 8) but shift right by k bits // each branch to ensure that if x >= 256, then y >= 256. if iszero(lt(y, 0x10000000000000000000000000000000000)) { y := shr(128, y) z := shl(64, z) } if iszero(lt(y, 0x1000000000000000000)) { y := shr(64, y) z := shl(32, z) } if iszero(lt(y, 0x10000000000)) { y := shr(32, y) z := shl(16, z) } if iszero(lt(y, 0x1000000)) { y := shr(16, y) z := shl(8, z) } // Goal was to get z*z*y within a small factor of x. More iterations could // get y in a tighter range. Currently, we will have y in [256, 256*2^16). // We ensured y >= 256 so that the relative difference between y and y+1 is small. // That's not possible if x < 256 but we can just verify those cases exhaustively. // Now, z*z*y <= x < z*z*(y+1), and y <= 2^(16+8), and either y >= 256, or x < 256. // Correctness can be checked exhaustively for x < 256, so we assume y >= 256. // Then z*sqrt(y) is within sqrt(257)/sqrt(256) of sqrt(x), or about 20bps. // For s in the range [1/256, 256], the estimate f(s) = (181/1024) * (s+1) is in the range // (1/2.84 * sqrt(s), 2.84 * sqrt(s)), with largest error when s = 1 and when s = 256 or 1/256. // Since y is in [256, 256*2^16), let a = y/65536, so that a is in [1/256, 256). Then we can estimate // sqrt(y) using sqrt(65536) * 181/1024 * (a + 1) = 181/4 * (y + 65536)/65536 = 181 * (y + 65536)/2^18. // There is no overflow risk here since y < 2^136 after the first branch above. z := shr(18, mul(z, add(y, 65536))) // A mul() is saved from starting z at 181. // Given the worst case multiplicative error of 2.84 above, 7 iterations should be enough. z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) // If x+1 is a perfect square, the Babylonian method cycles between // floor(sqrt(x)) and ceil(sqrt(x)). This statement ensures we return floor. // See: https://en.wikipedia.org/wiki/Integer_square_root#Using_only_integer_division // Since the ceil is rare, we save gas on the assignment and repeat division in the rare case. // If you don't care whether the floor or ceil square root is returned, you can remove this statement. z := sub(z, lt(div(x, z), z)) } } function unsafeMod(uint256 x, uint256 y) internal pure returns (uint256 z) { assembly { // Mod x by y. Note this will return // 0 instead of reverting if y is zero. z := mod(x, y) } } function unsafeDiv(uint256 x, uint256 y) internal pure returns (uint256 r) { assembly { // Divide x by y. Note this will return // 0 instead of reverting if y is zero. r := div(x, y) } } function unsafeDivUp(uint256 x, uint256 y) internal pure returns (uint256 z) { assembly { // Add 1 to x * y if x % y > 0. Note this will // return 0 instead of reverting if y is zero. z := add(gt(mod(x, y), 0), div(x, y)) } } }
{ "remappings": [ "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "pt-v5-prize-pool/=lib/pt-v5-prize-pool/src/", "pt-v5-tpda-liquidator/=lib/pt-v5-tpda-liquidator/src/", "pt-v5-liquidator-interfaces/=lib/pt-v5-tpda-liquidator/lib/pt-v5-liquidator-interfaces/src/interfaces/", "pt-v5-twab-controller/=lib/pt-v5-prize-pool/lib/pt-v5-twab-controller/src/", "pt-v5-vault/=lib/pt-v5-vault/src/", "pt-v5-vault-boost/=lib/pt-v5-vault-boost/src/", "pt-v5-yield-daddy-liquidators/=lib/pt-v5-yield-daddy-liquidators/src/", "pt-v5-twab-delegator/=lib/pt-v5-twab-delegator/src/", "yield-daddy/=lib/yield-daddy/src/", "@openzeppelin/contracts/=lib/pt-v5-tpda-liquidator/lib/openzeppelin-contracts/contracts/", "@prb/test/=lib/pt-v5-vault-boost/lib/prb-math/node_modules/@prb/test/", "ExcessivelySafeCall/=lib/pt-v5-vault/lib/ExcessivelySafeCall/src/", "brokentoken/=lib/pt-v5-vault/lib/brokentoken/src/", "create3-factory/=lib/yield-daddy/lib/create3-factory/", "erc4626-tests/=lib/pt-v5-vault/lib/erc4626-tests/", "excessively-safe-call/=lib/pt-v5-vault/lib/ExcessivelySafeCall/src/", "openzeppelin-contracts/=lib/pt-v5-prize-pool/lib/openzeppelin-contracts/", "openzeppelin/=lib/pt-v5-prize-pool/lib/openzeppelin-contracts/contracts/", "owner-manager-contracts/=lib/pt-v5-vault/lib/owner-manager-contracts/contracts/", "prb-math/=lib/pt-v5-prize-pool/lib/prb-math/src/", "prb-test/=lib/pt-v5-vault/lib/pt-v5-prize-pool/lib/prb-math/lib/prb-test/src/", "pt-v5-claimable-interface/=lib/pt-v5-vault/lib/pt-v5-claimable-interface/src/", "pt-v5-staking-vault/=lib/pt-v5-vault/lib/pt-v5-staking-vault/src/", "rETHERC4626/=lib/pt-v5-vault/lib/rETHERC4626/src/", "ring-buffer-lib/=lib/pt-v5-prize-pool/lib/ring-buffer-lib/src/", "solmate/=lib/yield-daddy/lib/solmate/src/", "uniform-random-number/=lib/pt-v5-prize-pool/lib/uniform-random-number/src/", "weird-erc20/=lib/pt-v5-vault/lib/brokentoken/lib/weird-erc20/src/" ], "optimizer": { "enabled": true, "runs": 200, "details": { "peephole": true, "inliner": true, "deduplicate": true, "cse": true, "yul": true } }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract ERC20","name":"asset_","type":"address"},{"internalType":"contract ERC20","name":"aToken_","type":"address"},{"internalType":"contract IPool","name":"lendingPool_","type":"address"},{"internalType":"address","name":"rewardRecipient_","type":"address"},{"internalType":"contract IRewardsController","name":"rewardsController_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ClaimRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"aToken","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"asset","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lendingPool","outputs":[{"internalType":"contract IPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsController","outputs":[{"internalType":"contract IRewardsController","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101806040523480156200001257600080fd5b5060405162002cc738038062002cc78339810160408190526200003591620002e1565b8462000041816200011c565b6200004c87620001af565b8181846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200008d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000b3919062000361565b6000620000c1848262000434565b506001620000d0838262000434565b5060ff81166080524660a052620000e66200022c565b60c0525050506001600160a01b0392831660e05250509384166101005291831661012052821661014052166101605250620006cf565b6060816001600160a01b03166395d89b416040518163ffffffff1660e01b8152600401600060405180830381865afa1580156200015d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000187919081019062000526565b604051602001620001999190620005de565b6040516020818303038152906040529050919050565b6060816001600160a01b03166395d89b416040518163ffffffff1660e01b8152600401600060405180830381865afa158015620001f0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200021a919081019062000526565b60405160200162000199919062000625565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f600060405162000260919062000651565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6001600160a01b0381168114620002de57600080fd5b50565b600080600080600060a08688031215620002fa57600080fd5b85516200030781620002c8565b60208701519095506200031a81620002c8565b60408701519094506200032d81620002c8565b60608701519093506200034081620002c8565b60808701519092506200035381620002c8565b809150509295509295909350565b6000602082840312156200037457600080fd5b815160ff811681146200038657600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003b857607f821691505b602082108103620003d957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200042f576000816000526020600020601f850160051c810160208610156200040a5750805b601f850160051c820191505b818110156200042b5782815560010162000416565b5050505b505050565b81516001600160401b038111156200045057620004506200038d565b6200046881620004618454620003a3565b84620003df565b602080601f831160018114620004a05760008415620004875750858301515b600019600386901b1c1916600185901b1785556200042b565b600085815260208120601f198616915b82811015620004d157888601518255948401946001909101908401620004b0565b5085821015620004f05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60005b838110156200051d57818101518382015260200162000503565b50506000910152565b6000602082840312156200053957600080fd5b81516001600160401b03808211156200055157600080fd5b818401915084601f8301126200056657600080fd5b8151818111156200057b576200057b6200038d565b604051601f8201601f19908116603f01168101908382118183101715620005a657620005a66200038d565b81604052828152876020848701011115620005c057600080fd5b620005d383602083016020880162000500565b979650505050505050565b7f455243343632362d5772617070656420416176652076332000000000000000008152600082516200061881601885016020870162000500565b9190910160180192915050565b61776160f01b8152600082516200064481600285016020870162000500565b9190910160020192915050565b60008083546200066181620003a3565b600182811680156200067c57600181146200069257620006c3565b60ff1984168752821515830287019450620006c3565b8760005260208060002060005b85811015620006ba5781548a8201529084019082016200069f565b50505082870194505b50929695505050505050565b60805160a05160c05160e051610100516101205161014051610160516124ce620007f96000396000818161037101526108c401526000818161027e01526108f301526000818161042d01528181610a0001528181610eb301528181611085015281816110f8015281816112d2015281816116df01528181611a680152611ae0015260008181610406015281816105500152818161086a01528181610ae9015281816111e40152818161137f015261178c015260008181610324015281816109d301528181610be501528181610c8101528181610e7c0152818161104e015281816110cb015281816112a5015281816113aa015281816116b2015281816117b701528181611a460152611aa401526000610824015260006107f4015260006102d901526124ce6000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a578063b460af94116100ad578063ce96cb771161007c578063ce96cb77146104c1578063d505accf146104d4578063d905777e146104e7578063dd62ed3e146104fa578063ef8b30f71461052557600080fd5b8063b460af9414610475578063ba08765214610488578063c63d75b61461049b578063c6e6f592146104ae57600080fd5b8063a0c1f15e116100e9578063a0c1f15e14610401578063a59a997314610428578063a9059cbb1461044f578063b3d7f6b91461046257600080fd5b806370a08231146103a65780637ecebe00146103c657806394bf804d146103e657806395d89b41146103f957600080fd5b8063313ce56711610192578063402d267d11610161578063402d267d146103465780634cdad506146103595780636bb65f531461036c5780636e553f651461039357600080fd5b8063313ce567146102d45780633644e5151461030d578063372500ab1461031557806338d52e0f1461031f57600080fd5b80630a28a477116101ce5780630a28a4771461026657806317f333401461027957806318160ddd146102b857806323b872dd146102c157600080fd5b806301e1d1141461020057806306fdde031461021b57806307a2d13a14610230578063095ea7b314610243575b600080fd5b610208610538565b6040519081526020015b60405180910390f35b6102236105c8565b6040516102129190611c1f565b61020861023e366004611c6e565b610656565b610256610251366004611c9f565b610683565b6040519015158152602001610212565b610208610274366004611c6e565b6106f0565b6102a07f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610212565b61020860025481565b6102566102cf366004611ccb565b610710565b6102fb7f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff9091168152602001610212565b6102086107f0565b61031d610846565b005b6102a07f000000000000000000000000000000000000000000000000000000000000000081565b610208610354366004611d0c565b6109bc565b610208610367366004611c6e565b610b7d565b6102a07f000000000000000000000000000000000000000000000000000000000000000081565b6102086103a1366004611d29565b610b88565b6102086103b4366004611d0c565b60036020526000908152604090205481565b6102086103d4366004611d0c565b60056020526000908152604090205481565b6102086103f4366004611d29565b610c67565b610223610d03565b6102a07f000000000000000000000000000000000000000000000000000000000000000081565b6102a07f000000000000000000000000000000000000000000000000000000000000000081565b61025661045d366004611c9f565b610d10565b610208610470366004611c6e565b610d76565b610208610483366004611d59565b610d95565b610208610496366004611d59565b610f29565b6102086104a9366004611d0c565b6110b4565b6102086104bc366004611c6e565b61126e565b6102086104cf366004611d0c565b61128e565b61031d6104e2366004611d9b565b611457565b6102086104f5366004611d0c565b61169b565b610208610508366004611e12565b600460209081526000928352604080842090915290825290205481565b610208610533366004611c6e565b611863565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa15801561059f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c39190611e40565b905090565b600080546105d590611e59565b80601f016020809104026020016040519081016040528092919081815260200182805461060190611e59565b801561064e5780601f106106235761010080835404028352916020019161064e565b820191906000526020600020905b81548152906001019060200180831161063157829003601f168201915b505050505081565b600254600090801561067a5761067561066d610538565b84908361186e565b61067c565b825b9392505050565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106de9086815260200190565b60405180910390a35060015b92915050565b600254600090801561067a5761067581610708610538565b85919061188d565b6001600160a01b0383166000908152600460209081526040808320338452909152812054600019811461076c576107478382611ea9565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b03851660009081526003602052604081208054859290610794908490611ea9565b90915550506001600160a01b0380851660008181526003602052604090819020805487019055519091871690600080516020612479833981519152906107dd9087815260200190565b60405180910390a3506001949350505050565b60007f00000000000000000000000000000000000000000000000000000000000000004614610821576105c36118bb565b507f000000000000000000000000000000000000000000000000000000000000000090565b604080516001808252818301909252600091602080830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000008160008151811061089c5761089c611ed2565b6001600160a01b03928316602091820292909201015260405163bb492bf560e01b81526000917f0000000000000000000000000000000000000000000000000000000000000000169063bb492bf59061091b9085907f000000000000000000000000000000000000000000000000000000000000000090600401611ee8565b6000604051808303816000875af115801561093a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109629190810190612049565b9150507fbacfa9662d479c707dae707c358323f0c7711ef382007957dc9935e629da36b28160008151811061099957610999611ed2565b60200260200101516040516109b091815260200190565b60405180910390a15050565b6040516335ea6a7560e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260009182917f000000000000000000000000000000000000000000000000000000000000000016906335ea6a75906024016101e060405180830381865afa158015610a48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6c9190612197565b51519050600160381b811615158015610a895750600160391b8116155b8015610a9957506001603c1b8116155b610aa65750600092915050565b640fffffffff607482901c166000819003610ac657506000199392505050565b60ff603083901c166000610adb82600a61239e565b610ae590846123ad565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b699190611e40565b610b739082611ea9565b9695505050505050565b60006106ea82610656565b6000610b9383611863565b905080600003610bd85760405162461bcd60e51b815260206004820152600b60248201526a5a45524f5f53484152455360a81b60448201526064015b60405180910390fd5b610c0d6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333086611955565b610c1782826119df565b60408051848152602081018390526001600160a01b0384169133917fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7910160405180910390a36106ea8382611a39565b6000610c7283610d76565b9050610ca96001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333084611955565b610cb382846119df565b60408051828152602081018590526001600160a01b0384169133917fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7910160405180910390a36106ea8184611a39565b600180546105d590611e59565b33600090815260036020526040812080548391908390610d31908490611ea9565b90915550506001600160a01b03831660008181526003602052604090819020805485019055513390600080516020612479833981519152906106de9086815260200190565b600254600090801561067a57610675610d8d610538565b84908361188d565b6000610da0846106f0565b9050336001600160a01b03831614610e10576001600160a01b03821660009081526004602090815260408083203384529091529020546000198114610e0e57610de98282611ea9565b6001600160a01b03841660009081526004602090815260408083203384529091529020555b505b610e1a8282611b40565b60408051858152602081018390526001600160a01b03808516929086169133917ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db910160405180910390a4604051631a4ca37b60e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820186905284811660448301527f000000000000000000000000000000000000000000000000000000000000000016906369328dec906064015b6020604051808303816000875af1158015610efd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f219190611e40565b509392505050565b6000336001600160a01b03831614610f99576001600160a01b03821660009081526004602090815260408083203384529091529020546000198114610f9757610f728582611ea9565b6001600160a01b03841660009081526004602090815260408083203384529091529020555b505b610fa284610b7d565b905080600003610fe25760405162461bcd60e51b815260206004820152600b60248201526a5a45524f5f41535345545360a81b6044820152606401610bcf565b610fec8285611b40565b60408051828152602081018690526001600160a01b03808516929086169133917ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db910160405180910390a4604051631a4ca37b60e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820183905284811660448301527f000000000000000000000000000000000000000000000000000000000000000016906369328dec90606401610ede565b6040516335ea6a7560e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260009182917f000000000000000000000000000000000000000000000000000000000000000016906335ea6a75906024016101e060405180830381865afa158015611140573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111649190612197565b51519050600160381b8116151580156111815750600160391b8116155b801561119157506001603c1b8116155b61119e5750600092915050565b640fffffffff607482901c1660008190036111be57506000199392505050565b60ff603083901c1660006111d382600a61239e565b6111dd90846123ad565b9050610b737f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611240573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112649190611e40565b6104bc9083611ea9565b600254600090801561067a5761067581611286610538565b85919061186e565b6040516335ea6a7560e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260009182917f000000000000000000000000000000000000000000000000000000000000000016906335ea6a75906024016101e060405180830381865afa15801561131a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133e9190612197565b51519050600160381b81161515801561135b57506001603c1b8116155b6113685750600092915050565b6040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526000917f0000000000000000000000000000000000000000000000000000000000000000909116906370a0823190602401602060405180830381865afa1580156113f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114179190611e40565b6001600160a01b0385166000908152600360205260408120549192509061143d90610656565b905080821061144c578061144e565b815b95945050505050565b428410156114a75760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f455850495245440000000000000000006044820152606401610bcf565b600060016114b36107f0565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156115bf573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906115f55750876001600160a01b0316816001600160a01b0316145b6116325760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b6044820152606401610bcf565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b6040516335ea6a7560e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260009182917f000000000000000000000000000000000000000000000000000000000000000016906335ea6a75906024016101e060405180830381865afa158015611727573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174b9190612197565b51519050600160381b81161515801561176857506001603c1b8116155b6117755750600092915050565b6040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526000917f0000000000000000000000000000000000000000000000000000000000000000909116906370a0823190602401602060405180830381865afa158015611800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118249190611e40565b905060006118318261126e565b6001600160a01b03861660009081526003602052604090205490915080821061185a5780610b73565b50949350505050565b60006106ea8261126e565b82820281151584158583048514171661188657600080fd5b0492915050565b8282028115158415858304851417166118a557600080fd5b6001826001830304018115150290509392505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516118ed91906123c4565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b60006040516323b872dd60e01b81528460048201528360248201528260448201526020600060648360008a5af13d15601f3d11600160005114161716915050806119d85760405162461bcd60e51b81526020600482015260146024820152731514905394d1915497d19493d357d1905253115160621b6044820152606401610bcf565b5050505050565b80600260008282546119f19190612465565b90915550506001600160a01b03821660008181526003602090815260408083208054860190555184815260008051602061247983398151915291015b60405180910390a35050565b611a8d6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000084611ba2565b60405163617ba03760e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260248201849052306044830152600060648301527f0000000000000000000000000000000000000000000000000000000000000000169063617ba03790608401600060405180830381600087803b158015611b2457600080fd5b505af1158015611b38573d6000803e3d6000fd5b505050505050565b6001600160a01b03821660009081526003602052604081208054839290611b68908490611ea9565b90915550506002805482900390556040518181526000906001600160a01b0384169060008051602061247983398151915290602001611a2d565b600060405163095ea7b360e01b8152836004820152826024820152602060006044836000895af13d15601f3d1160016000511416171691505080611c195760405162461bcd60e51b815260206004820152600e60248201526d1054141493d59157d1905253115160921b6044820152606401610bcf565b50505050565b60006020808352835180602085015260005b81811015611c4d57858101830151858201604001528201611c31565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611c8057600080fd5b5035919050565b6001600160a01b0381168114611c9c57600080fd5b50565b60008060408385031215611cb257600080fd5b8235611cbd81611c87565b946020939093013593505050565b600080600060608486031215611ce057600080fd5b8335611ceb81611c87565b92506020840135611cfb81611c87565b929592945050506040919091013590565b600060208284031215611d1e57600080fd5b813561067c81611c87565b60008060408385031215611d3c57600080fd5b823591506020830135611d4e81611c87565b809150509250929050565b600080600060608486031215611d6e57600080fd5b833592506020840135611d8081611c87565b91506040840135611d9081611c87565b809150509250925092565b600080600080600080600060e0888a031215611db657600080fd5b8735611dc181611c87565b96506020880135611dd181611c87565b95506040880135945060608801359350608088013560ff81168114611df557600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215611e2557600080fd5b8235611e3081611c87565b91506020830135611d4e81611c87565b600060208284031215611e5257600080fd5b5051919050565b600181811c90821680611e6d57607f821691505b602082108103611e8d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156106ea576106ea611e93565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b604080825283519082018190526000906020906060840190828701845b82811015611f2a5781516001600160a01b031684529284019290840190600101611f05565b5050506001600160a01b039490941660209390930192909252509092915050565b6040516101e0810167ffffffffffffffff81118282101715611f6f57611f6f611ebc565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715611f9e57611f9e611ebc565b604052919050565b600067ffffffffffffffff821115611fc057611fc0611ebc565b5060051b60200190565b8051611fd581611c87565b919050565b600082601f830112611feb57600080fd5b81516020612000611ffb83611fa6565b611f75565b8083825260208201915060208460051b87010193508684111561202257600080fd5b602086015b8481101561203e5780518352918301918301612027565b509695505050505050565b6000806040838503121561205c57600080fd5b825167ffffffffffffffff8082111561207457600080fd5b818501915085601f83011261208857600080fd5b81516020612098611ffb83611fa6565b82815260059290921b840181019181810190898411156120b757600080fd5b948201945b838610156120de5785516120cf81611c87565b825294820194908201906120bc565b918801519196509093505050808211156120f757600080fd5b5061210485828601611fda565b9150509250929050565b60006020828403121561212057600080fd5b6040516020810181811067ffffffffffffffff8211171561214357612143611ebc565b6040529151825250919050565b80516fffffffffffffffffffffffffffffffff81168114611fd557600080fd5b805164ffffffffff81168114611fd557600080fd5b805161ffff81168114611fd557600080fd5b60006101e082840312156121aa57600080fd5b6121b2611f4b565b6121bc848461210e565b81526121ca60208401612150565b60208201526121db60408401612150565b60408201526121ec60608401612150565b60608201526121fd60808401612150565b608082015261220e60a08401612150565b60a082015261221f60c08401612170565b60c082015261223060e08401612185565b60e0820152610100612243818501611fca565b90820152610120612255848201611fca565b90820152610140612267848201611fca565b90820152610160612279848201611fca565b9082015261018061228b848201612150565b908201526101a061229d848201612150565b908201526101c06122af848201612150565b908201529392505050565b600181815b808511156122f55781600019048211156122db576122db611e93565b808516156122e857918102915b93841c93908002906122bf565b509250929050565b60008261230c575060016106ea565b81612319575060006106ea565b816001811461232f576002811461233957612355565b60019150506106ea565b60ff84111561234a5761234a611e93565b50506001821b6106ea565b5060208310610133831016604e8410600b8410161715612378575081810a6106ea565b61238283836122ba565b806000190482111561239657612396611e93565b029392505050565b600061067c60ff8416836122fd565b80820281158282048414176106ea576106ea611e93565b60008083548160018260011c915060018316806123e257607f831692505b6020808410820361240157634e487b7160e01b86526022600452602486fd5b818015612415576001811461242a57612457565b60ff1986168952841515850289019650612457565b60008a81526020902060005b8681101561244f5781548b820152908501908301612436565b505084890196505b509498975050505050505050565b808201808211156106ea576106ea611e9356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201f7e60a8e4426f4968466a1ebfc2f2a0b623ecc7964c720672b20f8d38f8706d64736f6c63430008180033000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000fa1fdbbd71b0aa16162d76914d69cd8cb3ef92da0000000000000000000000004e033931ad43597d96d6bcc25c280717730b58b10000000000000000000000009d7a789ed31e501303b3856a58bdd9b41b7a60770000000000000000000000008164cc65827dcfe994ab23944cbc90e0aa80bfcb
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a578063b460af94116100ad578063ce96cb771161007c578063ce96cb77146104c1578063d505accf146104d4578063d905777e146104e7578063dd62ed3e146104fa578063ef8b30f71461052557600080fd5b8063b460af9414610475578063ba08765214610488578063c63d75b61461049b578063c6e6f592146104ae57600080fd5b8063a0c1f15e116100e9578063a0c1f15e14610401578063a59a997314610428578063a9059cbb1461044f578063b3d7f6b91461046257600080fd5b806370a08231146103a65780637ecebe00146103c657806394bf804d146103e657806395d89b41146103f957600080fd5b8063313ce56711610192578063402d267d11610161578063402d267d146103465780634cdad506146103595780636bb65f531461036c5780636e553f651461039357600080fd5b8063313ce567146102d45780633644e5151461030d578063372500ab1461031557806338d52e0f1461031f57600080fd5b80630a28a477116101ce5780630a28a4771461026657806317f333401461027957806318160ddd146102b857806323b872dd146102c157600080fd5b806301e1d1141461020057806306fdde031461021b57806307a2d13a14610230578063095ea7b314610243575b600080fd5b610208610538565b6040519081526020015b60405180910390f35b6102236105c8565b6040516102129190611c1f565b61020861023e366004611c6e565b610656565b610256610251366004611c9f565b610683565b6040519015158152602001610212565b610208610274366004611c6e565b6106f0565b6102a07f0000000000000000000000009d7a789ed31e501303b3856a58bdd9b41b7a607781565b6040516001600160a01b039091168152602001610212565b61020860025481565b6102566102cf366004611ccb565b610710565b6102fb7f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff9091168152602001610212565b6102086107f0565b61031d610846565b005b6102a07f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b610208610354366004611d0c565b6109bc565b610208610367366004611c6e565b610b7d565b6102a07f0000000000000000000000008164cc65827dcfe994ab23944cbc90e0aa80bfcb81565b6102086103a1366004611d29565b610b88565b6102086103b4366004611d0c565b60036020526000908152604090205481565b6102086103d4366004611d0c565b60056020526000908152604090205481565b6102086103f4366004611d29565b610c67565b610223610d03565b6102a07f000000000000000000000000fa1fdbbd71b0aa16162d76914d69cd8cb3ef92da81565b6102a07f0000000000000000000000004e033931ad43597d96d6bcc25c280717730b58b181565b61025661045d366004611c9f565b610d10565b610208610470366004611c6e565b610d76565b610208610483366004611d59565b610d95565b610208610496366004611d59565b610f29565b6102086104a9366004611d0c565b6110b4565b6102086104bc366004611c6e565b61126e565b6102086104cf366004611d0c565b61128e565b61031d6104e2366004611d9b565b611457565b6102086104f5366004611d0c565b61169b565b610208610508366004611e12565b600460209081526000928352604080842090915290825290205481565b610208610533366004611c6e565b611863565b6040516370a0823160e01b81523060048201526000907f000000000000000000000000fa1fdbbd71b0aa16162d76914d69cd8cb3ef92da6001600160a01b0316906370a0823190602401602060405180830381865afa15801561059f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c39190611e40565b905090565b600080546105d590611e59565b80601f016020809104026020016040519081016040528092919081815260200182805461060190611e59565b801561064e5780601f106106235761010080835404028352916020019161064e565b820191906000526020600020905b81548152906001019060200180831161063157829003601f168201915b505050505081565b600254600090801561067a5761067561066d610538565b84908361186e565b61067c565b825b9392505050565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106de9086815260200190565b60405180910390a35060015b92915050565b600254600090801561067a5761067581610708610538565b85919061188d565b6001600160a01b0383166000908152600460209081526040808320338452909152812054600019811461076c576107478382611ea9565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b03851660009081526003602052604081208054859290610794908490611ea9565b90915550506001600160a01b0380851660008181526003602052604090819020805487019055519091871690600080516020612479833981519152906107dd9087815260200190565b60405180910390a3506001949350505050565b60007f00000000000000000000000000000000000000000000000000000000000000014614610821576105c36118bb565b507f390fd1e8efdee44e750f2122af066a4d84a46870bec0dc55df6c01670a0c196a90565b604080516001808252818301909252600091602080830190803683370190505090507f000000000000000000000000fa1fdbbd71b0aa16162d76914d69cd8cb3ef92da8160008151811061089c5761089c611ed2565b6001600160a01b03928316602091820292909201015260405163bb492bf560e01b81526000917f0000000000000000000000008164cc65827dcfe994ab23944cbc90e0aa80bfcb169063bb492bf59061091b9085907f0000000000000000000000009d7a789ed31e501303b3856a58bdd9b41b7a607790600401611ee8565b6000604051808303816000875af115801561093a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109629190810190612049565b9150507fbacfa9662d479c707dae707c358323f0c7711ef382007957dc9935e629da36b28160008151811061099957610999611ed2565b60200260200101516040516109b091815260200190565b60405180910390a15050565b6040516335ea6a7560e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28116600483015260009182917f0000000000000000000000004e033931ad43597d96d6bcc25c280717730b58b116906335ea6a75906024016101e060405180830381865afa158015610a48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6c9190612197565b51519050600160381b811615158015610a895750600160391b8116155b8015610a9957506001603c1b8116155b610aa65750600092915050565b640fffffffff607482901c166000819003610ac657506000199392505050565b60ff603083901c166000610adb82600a61239e565b610ae590846123ad565b90507f000000000000000000000000fa1fdbbd71b0aa16162d76914d69cd8cb3ef92da6001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b699190611e40565b610b739082611ea9565b9695505050505050565b60006106ea82610656565b6000610b9383611863565b905080600003610bd85760405162461bcd60e51b815260206004820152600b60248201526a5a45524f5f53484152455360a81b60448201526064015b60405180910390fd5b610c0d6001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216333086611955565b610c1782826119df565b60408051848152602081018390526001600160a01b0384169133917fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7910160405180910390a36106ea8382611a39565b6000610c7283610d76565b9050610ca96001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216333084611955565b610cb382846119df565b60408051828152602081018590526001600160a01b0384169133917fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7910160405180910390a36106ea8184611a39565b600180546105d590611e59565b33600090815260036020526040812080548391908390610d31908490611ea9565b90915550506001600160a01b03831660008181526003602052604090819020805485019055513390600080516020612479833981519152906106de9086815260200190565b600254600090801561067a57610675610d8d610538565b84908361188d565b6000610da0846106f0565b9050336001600160a01b03831614610e10576001600160a01b03821660009081526004602090815260408083203384529091529020546000198114610e0e57610de98282611ea9565b6001600160a01b03841660009081526004602090815260408083203384529091529020555b505b610e1a8282611b40565b60408051858152602081018390526001600160a01b03808516929086169133917ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db910160405180910390a4604051631a4ca37b60e21b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2811660048301526024820186905284811660448301527f0000000000000000000000004e033931ad43597d96d6bcc25c280717730b58b116906369328dec906064015b6020604051808303816000875af1158015610efd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f219190611e40565b509392505050565b6000336001600160a01b03831614610f99576001600160a01b03821660009081526004602090815260408083203384529091529020546000198114610f9757610f728582611ea9565b6001600160a01b03841660009081526004602090815260408083203384529091529020555b505b610fa284610b7d565b905080600003610fe25760405162461bcd60e51b815260206004820152600b60248201526a5a45524f5f41535345545360a81b6044820152606401610bcf565b610fec8285611b40565b60408051828152602081018690526001600160a01b03808516929086169133917ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db910160405180910390a4604051631a4ca37b60e21b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2811660048301526024820183905284811660448301527f0000000000000000000000004e033931ad43597d96d6bcc25c280717730b58b116906369328dec90606401610ede565b6040516335ea6a7560e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28116600483015260009182917f0000000000000000000000004e033931ad43597d96d6bcc25c280717730b58b116906335ea6a75906024016101e060405180830381865afa158015611140573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111649190612197565b51519050600160381b8116151580156111815750600160391b8116155b801561119157506001603c1b8116155b61119e5750600092915050565b640fffffffff607482901c1660008190036111be57506000199392505050565b60ff603083901c1660006111d382600a61239e565b6111dd90846123ad565b9050610b737f000000000000000000000000fa1fdbbd71b0aa16162d76914d69cd8cb3ef92da6001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611240573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112649190611e40565b6104bc9083611ea9565b600254600090801561067a5761067581611286610538565b85919061186e565b6040516335ea6a7560e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28116600483015260009182917f0000000000000000000000004e033931ad43597d96d6bcc25c280717730b58b116906335ea6a75906024016101e060405180830381865afa15801561131a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133e9190612197565b51519050600160381b81161515801561135b57506001603c1b8116155b6113685750600092915050565b6040516370a0823160e01b81526001600160a01b037f000000000000000000000000fa1fdbbd71b0aa16162d76914d69cd8cb3ef92da811660048301526000917f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2909116906370a0823190602401602060405180830381865afa1580156113f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114179190611e40565b6001600160a01b0385166000908152600360205260408120549192509061143d90610656565b905080821061144c578061144e565b815b95945050505050565b428410156114a75760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f455850495245440000000000000000006044820152606401610bcf565b600060016114b36107f0565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156115bf573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906115f55750876001600160a01b0316816001600160a01b0316145b6116325760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b6044820152606401610bcf565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b6040516335ea6a7560e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28116600483015260009182917f0000000000000000000000004e033931ad43597d96d6bcc25c280717730b58b116906335ea6a75906024016101e060405180830381865afa158015611727573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174b9190612197565b51519050600160381b81161515801561176857506001603c1b8116155b6117755750600092915050565b6040516370a0823160e01b81526001600160a01b037f000000000000000000000000fa1fdbbd71b0aa16162d76914d69cd8cb3ef92da811660048301526000917f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2909116906370a0823190602401602060405180830381865afa158015611800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118249190611e40565b905060006118318261126e565b6001600160a01b03861660009081526003602052604090205490915080821061185a5780610b73565b50949350505050565b60006106ea8261126e565b82820281151584158583048514171661188657600080fd5b0492915050565b8282028115158415858304851417166118a557600080fd5b6001826001830304018115150290509392505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516118ed91906123c4565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b60006040516323b872dd60e01b81528460048201528360248201528260448201526020600060648360008a5af13d15601f3d11600160005114161716915050806119d85760405162461bcd60e51b81526020600482015260146024820152731514905394d1915497d19493d357d1905253115160621b6044820152606401610bcf565b5050505050565b80600260008282546119f19190612465565b90915550506001600160a01b03821660008181526003602090815260408083208054860190555184815260008051602061247983398151915291015b60405180910390a35050565b611a8d6001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2167f0000000000000000000000004e033931ad43597d96d6bcc25c280717730b58b184611ba2565b60405163617ba03760e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28116600483015260248201849052306044830152600060648301527f0000000000000000000000004e033931ad43597d96d6bcc25c280717730b58b1169063617ba03790608401600060405180830381600087803b158015611b2457600080fd5b505af1158015611b38573d6000803e3d6000fd5b505050505050565b6001600160a01b03821660009081526003602052604081208054839290611b68908490611ea9565b90915550506002805482900390556040518181526000906001600160a01b0384169060008051602061247983398151915290602001611a2d565b600060405163095ea7b360e01b8152836004820152826024820152602060006044836000895af13d15601f3d1160016000511416171691505080611c195760405162461bcd60e51b815260206004820152600e60248201526d1054141493d59157d1905253115160921b6044820152606401610bcf565b50505050565b60006020808352835180602085015260005b81811015611c4d57858101830151858201604001528201611c31565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611c8057600080fd5b5035919050565b6001600160a01b0381168114611c9c57600080fd5b50565b60008060408385031215611cb257600080fd5b8235611cbd81611c87565b946020939093013593505050565b600080600060608486031215611ce057600080fd5b8335611ceb81611c87565b92506020840135611cfb81611c87565b929592945050506040919091013590565b600060208284031215611d1e57600080fd5b813561067c81611c87565b60008060408385031215611d3c57600080fd5b823591506020830135611d4e81611c87565b809150509250929050565b600080600060608486031215611d6e57600080fd5b833592506020840135611d8081611c87565b91506040840135611d9081611c87565b809150509250925092565b600080600080600080600060e0888a031215611db657600080fd5b8735611dc181611c87565b96506020880135611dd181611c87565b95506040880135945060608801359350608088013560ff81168114611df557600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215611e2557600080fd5b8235611e3081611c87565b91506020830135611d4e81611c87565b600060208284031215611e5257600080fd5b5051919050565b600181811c90821680611e6d57607f821691505b602082108103611e8d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156106ea576106ea611e93565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b604080825283519082018190526000906020906060840190828701845b82811015611f2a5781516001600160a01b031684529284019290840190600101611f05565b5050506001600160a01b039490941660209390930192909252509092915050565b6040516101e0810167ffffffffffffffff81118282101715611f6f57611f6f611ebc565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715611f9e57611f9e611ebc565b604052919050565b600067ffffffffffffffff821115611fc057611fc0611ebc565b5060051b60200190565b8051611fd581611c87565b919050565b600082601f830112611feb57600080fd5b81516020612000611ffb83611fa6565b611f75565b8083825260208201915060208460051b87010193508684111561202257600080fd5b602086015b8481101561203e5780518352918301918301612027565b509695505050505050565b6000806040838503121561205c57600080fd5b825167ffffffffffffffff8082111561207457600080fd5b818501915085601f83011261208857600080fd5b81516020612098611ffb83611fa6565b82815260059290921b840181019181810190898411156120b757600080fd5b948201945b838610156120de5785516120cf81611c87565b825294820194908201906120bc565b918801519196509093505050808211156120f757600080fd5b5061210485828601611fda565b9150509250929050565b60006020828403121561212057600080fd5b6040516020810181811067ffffffffffffffff8211171561214357612143611ebc565b6040529151825250919050565b80516fffffffffffffffffffffffffffffffff81168114611fd557600080fd5b805164ffffffffff81168114611fd557600080fd5b805161ffff81168114611fd557600080fd5b60006101e082840312156121aa57600080fd5b6121b2611f4b565b6121bc848461210e565b81526121ca60208401612150565b60208201526121db60408401612150565b60408201526121ec60608401612150565b60608201526121fd60808401612150565b608082015261220e60a08401612150565b60a082015261221f60c08401612170565b60c082015261223060e08401612185565b60e0820152610100612243818501611fca565b90820152610120612255848201611fca565b90820152610140612267848201611fca565b90820152610160612279848201611fca565b9082015261018061228b848201612150565b908201526101a061229d848201612150565b908201526101c06122af848201612150565b908201529392505050565b600181815b808511156122f55781600019048211156122db576122db611e93565b808516156122e857918102915b93841c93908002906122bf565b509250929050565b60008261230c575060016106ea565b81612319575060006106ea565b816001811461232f576002811461233957612355565b60019150506106ea565b60ff84111561234a5761234a611e93565b50506001821b6106ea565b5060208310610133831016604e8410600b8410161715612378575081810a6106ea565b61238283836122ba565b806000190482111561239657612396611e93565b029392505050565b600061067c60ff8416836122fd565b80820281158282048414176106ea576106ea611e93565b60008083548160018260011c915060018316806123e257607f831692505b6020808410820361240157634e487b7160e01b86526022600452602486fd5b818015612415576001811461242a57612457565b60ff1986168952841515850289019650612457565b60008a81526020902060005b8681101561244f5781548b820152908501908301612436565b505084890196505b509498975050505050505050565b808201808211156106ea576106ea611e9356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201f7e60a8e4426f4968466a1ebfc2f2a0b623ecc7964c720672b20f8d38f8706d64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000fa1fdbbd71b0aa16162d76914d69cd8cb3ef92da0000000000000000000000004e033931ad43597d96d6bcc25c280717730b58b10000000000000000000000009d7a789ed31e501303b3856a58bdd9b41b7a60770000000000000000000000008164cc65827dcfe994ab23944cbc90e0aa80bfcb
-----Decoded View---------------
Arg [0] : asset_ (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [1] : aToken_ (address): 0xfA1fDbBD71B0aA16162D76914d69cD8CB3Ef92da
Arg [2] : lendingPool_ (address): 0x4e033931ad43597d96D6bcc25c280717730B58B1
Arg [3] : rewardRecipient_ (address): 0x9d7A789ED31e501303B3856A58bDD9B41b7a6077
Arg [4] : rewardsController_ (address): 0x8164Cc65827dcFe994AB23944CBC90e0aa80bFcb
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [1] : 000000000000000000000000fa1fdbbd71b0aa16162d76914d69cd8cb3ef92da
Arg [2] : 0000000000000000000000004e033931ad43597d96d6bcc25c280717730b58b1
Arg [3] : 0000000000000000000000009d7a789ed31e501303b3856a58bdd9b41b7a6077
Arg [4] : 0000000000000000000000008164cc65827dcfe994ab23944cbc90e0aa80bfcb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.