@raac/rpc 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/RPCLibrary.js +269 -0
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +1335 -0
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +1724 -0
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +1192 -0
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +215 -0
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +858 -0
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +814 -0
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +893 -0
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +1205 -0
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +1616 -0
- package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +479 -0
- package/dist/artifacts/zeno/Auction.sol/Auction.json +473 -0
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +307 -0
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +620 -0
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +275 -0
- package/dist/assets/getAsset.js +23 -0
- package/dist/assets/getAssets.js +26 -0
- package/dist/assets/getSupply.js +18 -0
- package/dist/configs/chains/8453.json +115 -0
- package/dist/configs/chains/index.js +13 -0
- package/dist/configs/createConfig.js +89 -0
- package/dist/configs/index.js +43 -0
- package/dist/contracts/crvUSDToken/getBalance.js +17 -0
- package/dist/contracts/crvUSDToken/getTotalSupply.js +31 -0
- package/dist/contracts/getContract.js +18 -0
- package/dist/contracts/getContractAddress.js +50 -0
- package/dist/contracts/housePrices/getLatestPrice.js +21 -0
- package/dist/contracts/housePrices/setOracle.js +24 -0
- package/dist/contracts/rcrvUSDToken/getBalance.js +14 -0
- package/dist/contracts/rcrvUSDToken/getTotalSupply.js +30 -0
- package/dist/contracts/zeno/createAuction.js +25 -0
- package/dist/contracts/zeno/createZeno.js +26 -0
- package/dist/contracts/zeno/getAuctions.js +28 -0
- package/dist/contracts/zeno/getZenos.js +28 -0
- package/dist/index.js +7 -0
- package/dist/methods/approveToken.js +35 -0
- package/dist/methods/commons/checkAllowance.js +19 -0
- package/dist/methods/commons/estimateGasPrice.js +23 -0
- package/dist/methods/getAssetBalance.js +33 -0
- package/dist/methods/getAssetsBalance.js +4 -0
- package/dist/minter/get.js +121 -0
- package/dist/minter/getApy.js +28 -0
- package/dist/minter/tick.js +33 -0
- package/dist/nfts/addNewBatch.js +24 -0
- package/dist/nfts/getCurrentBatchSize.js +19 -0
- package/dist/nfts/getDepositedNFTs.js +19 -0
- package/dist/nfts/getHousePrice.js +19 -0
- package/dist/nfts/getOwnedNFTs.js +34 -0
- package/dist/nfts/mint.js +24 -0
- package/dist/nfts/setBaseUri.js +24 -0
- package/dist/pools/lendingPool/borrowFromLendingPool.js +23 -0
- package/dist/pools/lendingPool/depositNFTToLendingPool.js +51 -0
- package/dist/pools/lendingPool/depositToLendingPool.js +35 -0
- package/dist/pools/lendingPool/getHousePrice.js +26 -0
- package/dist/pools/lendingPool/getLendingPoolInfo.js +106 -0
- package/dist/pools/lendingPool/getLendingPoolTotalLiquidity.js +22 -0
- package/dist/pools/lendingPool/repayToLendingPool.js +28 -0
- package/dist/pools/lendingPool/withdrawFromLendingPool.js +42 -0
- package/dist/pools/lendingPool/withdrawNFTFromLendingPool.js +24 -0
- package/dist/pools/liquidityPool/getLiquidityPoolInfo.js +73 -0
- package/dist/pools/stabilityPool/calculateRAACRewards.js +21 -0
- package/dist/pools/stabilityPool/depositToStabilityPool.js +34 -0
- package/dist/pools/stabilityPool/getStabilityPoolInfo.js +90 -0
- package/dist/pools/stabilityPool/getStabilityPoolTotalDeposits.js +19 -0
- package/dist/pools/stabilityPool/withdrawFromStabilityPool.js +34 -0
- package/dist/scripts/index.js +83 -0
- package/dist/tests/test.js +32 -0
- package/dist/types/RPCLibrary.d.ts +139 -0
- package/dist/types/assets/getAsset.d.ts +5 -0
- package/dist/types/assets/getAssets.d.ts +4 -0
- package/dist/types/assets/getSupply.d.ts +5 -0
- package/dist/types/configs/chains/index.d.ts +11 -0
- package/dist/types/configs/createConfig.d.ts +86 -0
- package/dist/types/configs/index.d.ts +13 -0
- package/dist/types/contracts/crvUSDToken/getBalance.d.ts +2 -0
- package/dist/types/contracts/crvUSDToken/getTotalSupply.d.ts +10 -0
- package/dist/types/contracts/getContract.d.ts +4 -0
- package/dist/types/contracts/getContractAddress.d.ts +10 -0
- package/dist/types/contracts/housePrices/getLatestPrice.d.ts +10 -0
- package/dist/types/contracts/housePrices/setOracle.d.ts +4 -0
- package/dist/types/contracts/rcrvUSDToken/getBalance.d.ts +2 -0
- package/dist/types/contracts/rcrvUSDToken/getTotalSupply.d.ts +10 -0
- package/dist/types/contracts/zeno/createAuction.d.ts +4 -0
- package/dist/types/contracts/zeno/createZeno.d.ts +4 -0
- package/dist/types/contracts/zeno/getAuctions.d.ts +4 -0
- package/dist/types/contracts/zeno/getZenos.d.ts +4 -0
- package/{index.ts → dist/types/index.d.ts} +0 -1
- package/dist/types/methods/approveToken.d.ts +5 -0
- package/dist/types/methods/commons/checkAllowance.d.ts +6 -0
- package/dist/types/methods/commons/estimateGasPrice.d.ts +11 -0
- package/dist/types/methods/getAssetBalance.d.ts +6 -0
- package/dist/types/methods/getAssetsBalance.d.ts +3 -0
- package/dist/types/minter/get.d.ts +17 -0
- package/dist/types/minter/getApy.d.ts +4 -0
- package/dist/types/minter/tick.d.ts +4 -0
- package/dist/types/nfts/addNewBatch.d.ts +4 -0
- package/dist/types/nfts/getCurrentBatchSize.d.ts +4 -0
- package/dist/types/nfts/getDepositedNFTs.d.ts +7 -0
- package/dist/types/nfts/getHousePrice.d.ts +4 -0
- package/dist/types/nfts/getOwnedNFTs.d.ts +7 -0
- package/dist/types/nfts/mint.d.ts +4 -0
- package/dist/types/nfts/setBaseUri.d.ts +4 -0
- package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/depositNFTToLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/depositToLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/getHousePrice.d.ts +4 -0
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +23 -0
- package/dist/types/pools/lendingPool/getLendingPoolTotalLiquidity.d.ts +4 -0
- package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/withdrawFromLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/withdrawNFTFromLendingPool.d.ts +4 -0
- package/dist/types/pools/liquidityPool/getLiquidityPoolInfo.d.ts +7 -0
- package/dist/types/pools/stabilityPool/calculateRAACRewards.d.ts +4 -0
- package/dist/types/pools/stabilityPool/depositToStabilityPool.d.ts +4 -0
- package/dist/types/pools/stabilityPool/getStabilityPoolInfo.d.ts +12 -0
- package/dist/types/pools/stabilityPool/getStabilityPoolTotalDeposits.d.ts +4 -0
- package/dist/types/pools/stabilityPool/withdrawFromStabilityPool.d.ts +4 -0
- package/dist/types/scripts/index.d.ts +1 -0
- package/dist/types/tests/test.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/contracts/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.d.ts +67 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +5 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient.d.ts +37 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter.d.ts +205 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.d.ts +25 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/index.d.ts +4 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.d.ts +69 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal.d.ts +69 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/index.d.ts +4 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable.d.ts +37 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +159 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +147 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +54 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/index.d.ts +8 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +78 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +141 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +129 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +236 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +141 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +61 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +6 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +211 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +199 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +39 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +233 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +221 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +211 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +7 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +39 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/index.d.ts +4 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +25 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +55 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +78 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +12 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +29 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +29 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts +68 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +6 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +36 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts +36 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.d.ts +69 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/index.d.ts +4 -0
- package/dist/types/typechain-types/common.d.ts +50 -0
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +708 -0
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +283 -0
- package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +573 -0
- package/dist/types/typechain-types/contracts/core/governance/boost/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +779 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +815 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +803 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +807 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +612 -0
- package/dist/types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +447 -0
- package/dist/types/typechain-types/contracts/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/index.d.ts +14 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +703 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +503 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/minters/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +165 -0
- package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +188 -0
- package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +195 -0
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +935 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/MarketCreator.d.ts +274 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +283 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +572 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/pools/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +111 -0
- package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +384 -0
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +415 -0
- package/dist/types/typechain-types/contracts/core/tokens/IndexToken.d.ts +155 -0
- package/dist/types/typechain-types/contracts/core/tokens/LPToken.d.ts +224 -0
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +334 -0
- package/dist/types/typechain-types/contracts/core/tokens/RAACToken.d.ts +401 -0
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +567 -0
- package/dist/types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +816 -0
- package/dist/types/typechain-types/contracts/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/contracts/index.d.ts +10 -0
- package/dist/types/typechain-types/contracts/interfaces/IERC20.d.ts +129 -0
- package/dist/types/typechain-types/contracts/interfaces/IHousePrices.d.ts +29 -0
- package/dist/types/typechain-types/contracts/interfaces/IMarketCreator.d.ts +85 -0
- package/dist/types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +73 -0
- package/dist/types/typechain-types/contracts/interfaces/IPoolManager.d.ts +37 -0
- package/dist/types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +164 -0
- package/dist/types/typechain-types/contracts/interfaces/IUSDC.d.ts +129 -0
- package/dist/types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +59 -0
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +300 -0
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +139 -0
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +269 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +235 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +341 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +577 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +279 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/index.d.ts +12 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +316 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +235 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +110 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +147 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +497 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +350 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +226 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +195 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +279 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +346 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +397 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +362 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +144 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/index.d.ts +14 -0
- package/dist/types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +122 -0
- package/dist/types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +186 -0
- package/dist/types/typechain-types/contracts/interfaces/zeno/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/libraries/governance/BoostCalculator.d.ts +42 -0
- package/dist/types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +55 -0
- package/dist/types/typechain-types/contracts/libraries/governance/LockManager.d.ts +87 -0
- package/dist/types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +60 -0
- package/dist/types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +45 -0
- package/dist/types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +66 -0
- package/dist/types/typechain-types/contracts/libraries/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/libraries/index.d.ts +8 -0
- package/dist/types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +104 -0
- package/dist/types/typechain-types/contracts/libraries/math/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/libraries/pools/ReserveLibrary.d.ts +124 -0
- package/dist/types/typechain-types/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/libraries/utils/StringUtils.d.ts +20 -0
- package/dist/types/typechain-types/contracts/libraries/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockFeeCollector.d.ts +708 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +169 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +845 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +29 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/TimelockTestTarget.d.ts +72 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/index.d.ts +12 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.d.ts +41 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +45 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockOracle.d.ts +43 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +204 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +211 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +121 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +539 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockPool.d.ts +55 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockStabilityPool.d.ts +69 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockContract.d.ts +29 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockContractWithConfig.d.ts +39 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/RAACHousePricesMock.d.ts +47 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/CrvUSDToken.d.ts +212 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/ERC20Mock.d.ts +155 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/ERC721Mock.d.ts +229 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +220 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +191 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockUSDC.d.ts +155 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +510 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/RAACMockERC20.d.ts +186 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/contracts/mocks/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +275 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +83 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +163 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +141 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +41 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +281 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/math/TimeWeightedAverageMock.d.ts +203 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/math/WadRayMathMock.d.ts +78 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/math/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +225 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/tests/MaliciousDeposit.d.ts +29 -0
- package/dist/types/typechain-types/contracts/mocks/tests/MaliciousWithdraw.d.ts +29 -0
- package/dist/types/typechain-types/contracts/mocks/tests/VeRAACFuzzHelper.d.ts +71 -0
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts +25 -0
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +100 -0
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/tests/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +215 -0
- package/dist/types/typechain-types/contracts/zeno/AuctionFactory.d.ts +177 -0
- package/dist/types/typechain-types/contracts/zeno/ZENO.d.ts +237 -0
- package/dist/types/typechain-types/contracts/zeno/ZENOFactory.d.ts +151 -0
- package/dist/types/typechain-types/contracts/zeno/index.d.ts +4 -0
- package/dist/types/typechain-types/erc721a/contracts/IERC721A.d.ts +242 -0
- package/dist/types/typechain-types/erc721a/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/erc721a/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient__factory.d.ts +49 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter__factory.d.ts +268 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +48 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +90 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +86 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +181 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +157 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +64 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +46 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +83 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +71 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +83 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +241 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +147 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +402 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +177 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +46 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +337 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +227 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +395 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +269 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +261 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +5 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +45 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +11 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +34 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +34 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +58 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +9 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +26 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +62 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts +82 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable__factory.d.ts +63 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +985 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +386 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +716 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +1083 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1124 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1154 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1154 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +976 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +773 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/index.d.ts +7 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1048 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +706 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +205 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +275 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +286 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +1327 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/MarketCreator__factory.d.ts +405 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +390 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +930 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +178 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +671 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +729 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +286 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +401 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +635 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +652 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +941 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1264 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/factories/contracts/index.d.ts +5 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IERC20__factory.d.ts +147 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IMarketCreator__factory.d.ts +101 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts +43 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +189 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IUSDC__factory.d.ts +147 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +75 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +396 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +165 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +295 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +449 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +307 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +878 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +468 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +380 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +275 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +146 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +153 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +642 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +480 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +256 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +279 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +363 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +436 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +496 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +435 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +194 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/index.d.ts +11 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +126 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +246 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +54 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +68 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +111 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +69 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +92 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +74 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/libraries/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +125 -0
- package/dist/types/typechain-types/factories/contracts/libraries/math/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +135 -0
- package/dist/types/typechain-types/factories/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +26 -0
- package/dist/types/typechain-types/factories/contracts/libraries/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockFeeCollector__factory.d.ts +985 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +212 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +1182 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +50 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +91 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter__factory.d.ts +37 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +66 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +62 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +293 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +304 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +740 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +199 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +84 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +109 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +64 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +379 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +282 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +388 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +407 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +338 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +278 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +714 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +335 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/factories/contracts/mocks/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +351 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +124 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +197 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +183 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +70 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +341 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +247 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +154 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +277 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +80 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +113 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +250 -0
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +320 -0
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +223 -0
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +488 -0
- package/dist/types/typechain-types/factories/contracts/zeno/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/erc721a/contracts/IERC721A__factory.d.ts +368 -0
- package/dist/types/typechain-types/factories/erc721a/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/erc721a/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/index.d.ts +4 -0
- package/dist/types/typechain-types/index.d.ts +311 -0
- package/dist/types/utils/artifacts.d.ts +1627 -0
- package/dist/types/utils/chain.d.ts +13 -0
- package/dist/types/utils/config.d.ts +0 -0
- package/dist/types/utils/contracts.d.ts +20 -0
- package/dist/types/wallet/assets/approveAsset.d.ts +5 -0
- package/dist/types/wallet/assets/burnAsset.d.ts +5 -0
- package/dist/types/wallet/assets/getAllowance.d.ts +5 -0
- package/dist/types/wallet/assets/getAsset.d.ts +4 -0
- package/dist/types/wallet/assets/getAssets.d.ts +4 -0
- package/dist/types/wallet/assets/getBalance.d.ts +5 -0
- package/dist/types/wallet/assets/mintAsset.d.ts +5 -0
- package/dist/types/wallet/assets/transferAsset.d.ts +5 -0
- package/dist/utils/artifacts.js +65 -0
- package/dist/utils/chain.js +92 -0
- package/{utils/config.ts → dist/utils/config.js} +0 -6
- package/dist/utils/contracts.js +81 -0
- package/dist/wallet/assets/approveAsset.js +35 -0
- package/dist/wallet/assets/burnAsset.js +46 -0
- package/dist/wallet/assets/getAllowance.js +26 -0
- package/dist/wallet/assets/getAsset.js +22 -0
- package/dist/wallet/assets/getAssets.js +26 -0
- package/dist/wallet/assets/getBalance.js +24 -0
- package/dist/wallet/assets/mintAsset.js +47 -0
- package/dist/wallet/assets/transferAsset.js +62 -0
- package/package.json +34 -25
- package/RPCLibrary.ts +0 -358
- package/assets/getAsset.ts +0 -26
- package/assets/getAssets.ts +0 -30
- package/assets/getSupply.ts +0 -23
- package/configs/chains/8453.json +0 -116
- package/configs/chains/chain.d.ts +0 -87
- package/configs/chains/index.ts +0 -13
- package/configs/chains/list.json +0 -3
- package/configs/createConfig.ts +0 -91
- package/configs/index.ts +0 -51
- package/contracts/crvUSDToken/getBalance.ts +0 -23
- package/contracts/crvUSDToken/getTotalSupply.ts +0 -36
- package/contracts/getContract.ts +0 -21
- package/contracts/getContractAddress.ts +0 -61
- package/contracts/housePrices/getLatestPrice.ts +0 -38
- package/contracts/housePrices/setOracle.ts +0 -40
- package/contracts/rcrvUSDToken/getBalance.ts +0 -23
- package/contracts/rcrvUSDToken/getTotalSupply.ts +0 -39
- package/contracts/zeno/createAuction.ts +0 -57
- package/contracts/zeno/createZeno.ts +0 -45
- package/contracts/zeno/getAuctions.ts +0 -38
- package/contracts/zeno/getZenos.ts +0 -38
- package/custom-types.d.ts +0 -20
- package/methods/approveToken.ts +0 -47
- package/methods/commons/checkAllowance.ts +0 -36
- package/methods/commons/estimateGasPrice.ts +0 -21
- package/methods/debug/mintToken.js +0 -83
- package/methods/getAssetBalance.ts +0 -47
- package/methods/getAssetsBalance.ts +0 -9
- package/minter/get.ts +0 -150
- package/minter/getApy.ts +0 -37
- package/minter/tick.ts +0 -40
- package/nfts/addNewBatch.ts +0 -37
- package/nfts/getCurrentBatchSize.ts +0 -26
- package/nfts/getDepositedNFTs.ts +0 -31
- package/nfts/getHousePrice.ts +0 -30
- package/nfts/getOwnedNFTs.ts +0 -46
- package/nfts/mint.ts +0 -43
- package/nfts/setBaseUri.ts +0 -33
- package/pools/lendingPool/borrowFromLendingPool.ts +0 -39
- package/pools/lendingPool/depositNFTToLendingPool.ts +0 -70
- package/pools/lendingPool/depositToLendingPool.ts +0 -52
- package/pools/lendingPool/getHousePrice.ts +0 -46
- package/pools/lendingPool/getLendingPoolInfo.ts +0 -153
- package/pools/lendingPool/getLendingPoolTotalLiquidity.ts +0 -32
- package/pools/lendingPool/repayToLendingPool.ts +0 -52
- package/pools/lendingPool/withdrawFromLendingPool.ts +0 -68
- package/pools/lendingPool/withdrawNFTFromLendingPool.ts +0 -39
- package/pools/liquidityPool/getLiquidityPoolInfo.ts +0 -90
- package/pools/stabilityPool/calculateRAACRewards.ts +0 -37
- package/pools/stabilityPool/depositToStabilityPool.ts +0 -47
- package/pools/stabilityPool/getStabilityPoolInfo.ts +0 -121
- package/pools/stabilityPool/getStabilityPoolTotalDeposits.ts +0 -27
- package/pools/stabilityPool/withdrawFromStabilityPool.ts +0 -47
- package/sync-contracts.sh +0 -63
- package/tests/test.ts +0 -40
- package/tsconfig.json +0 -113
- package/utils/artifacts.ts +0 -66
- package/utils/chain.ts +0 -94
- package/utils/contracts.ts +0 -94
- package/wallet/assets/approveAsset.ts +0 -44
- package/wallet/assets/burnAsset.ts +0 -55
- package/wallet/assets/getAllowance.ts +0 -38
- package/wallet/assets/getAsset.ts +0 -33
- package/wallet/assets/getAssets.ts +0 -35
- package/wallet/assets/getBalance.ts +0 -34
- package/wallet/assets/mintAsset.ts +0 -57
- package/wallet/assets/transferAsset.ts +0 -78
|
@@ -0,0 +1,1724 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "LendingPool",
|
|
4
|
+
"sourceName": "contracts/core/pools/LendingPool/LendingPool.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "_reserveAssetAddress",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "address",
|
|
15
|
+
"name": "_rTokenAddress",
|
|
16
|
+
"type": "address"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"internalType": "address",
|
|
20
|
+
"name": "_debtTokenAddress",
|
|
21
|
+
"type": "address"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"internalType": "address",
|
|
25
|
+
"name": "_raacNFTAddress",
|
|
26
|
+
"type": "address"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"internalType": "address",
|
|
30
|
+
"name": "_priceOracleAddress",
|
|
31
|
+
"type": "address"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"internalType": "uint256",
|
|
35
|
+
"name": "_initialPrimeRate",
|
|
36
|
+
"type": "uint256"
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
"stateMutability": "nonpayable",
|
|
40
|
+
"type": "constructor"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"inputs": [],
|
|
44
|
+
"name": "AddressCannotBeZero",
|
|
45
|
+
"type": "error"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"inputs": [
|
|
49
|
+
{
|
|
50
|
+
"internalType": "address",
|
|
51
|
+
"name": "target",
|
|
52
|
+
"type": "address"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"name": "AddressEmptyCode",
|
|
56
|
+
"type": "error"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"inputs": [
|
|
60
|
+
{
|
|
61
|
+
"internalType": "address",
|
|
62
|
+
"name": "account",
|
|
63
|
+
"type": "address"
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
"name": "AddressInsufficientBalance",
|
|
67
|
+
"type": "error"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"inputs": [],
|
|
71
|
+
"name": "CannotBorrowUnderLiquidation",
|
|
72
|
+
"type": "error"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"inputs": [],
|
|
76
|
+
"name": "CannotWithdrawUnderLiquidation",
|
|
77
|
+
"type": "error"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"inputs": [],
|
|
81
|
+
"name": "DebtNotZero",
|
|
82
|
+
"type": "error"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"inputs": [],
|
|
86
|
+
"name": "EnforcedPause",
|
|
87
|
+
"type": "error"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"inputs": [],
|
|
91
|
+
"name": "ExpectedPause",
|
|
92
|
+
"type": "error"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"inputs": [],
|
|
96
|
+
"name": "FailedInnerCall",
|
|
97
|
+
"type": "error"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"inputs": [],
|
|
101
|
+
"name": "GracePeriodExpired",
|
|
102
|
+
"type": "error"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"inputs": [],
|
|
106
|
+
"name": "GracePeriodNotExpired",
|
|
107
|
+
"type": "error"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"inputs": [],
|
|
111
|
+
"name": "HealthFactorTooLow",
|
|
112
|
+
"type": "error"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"inputs": [],
|
|
116
|
+
"name": "InsufficientBalance",
|
|
117
|
+
"type": "error"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"inputs": [],
|
|
121
|
+
"name": "InsufficientLiquidity",
|
|
122
|
+
"type": "error"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"inputs": [],
|
|
126
|
+
"name": "InvalidAmount",
|
|
127
|
+
"type": "error"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"inputs": [],
|
|
131
|
+
"name": "InvalidAmount",
|
|
132
|
+
"type": "error"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"inputs": [],
|
|
136
|
+
"name": "InvalidInterestRateMode",
|
|
137
|
+
"type": "error"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"inputs": [],
|
|
141
|
+
"name": "InvalidInterestRateParameters",
|
|
142
|
+
"type": "error"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"inputs": [],
|
|
146
|
+
"name": "InvalidNFTPrice",
|
|
147
|
+
"type": "error"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"inputs": [],
|
|
151
|
+
"name": "LiquidityIndexIsZero",
|
|
152
|
+
"type": "error"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"inputs": [],
|
|
156
|
+
"name": "NFTAlreadyDeposited",
|
|
157
|
+
"type": "error"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"inputs": [],
|
|
161
|
+
"name": "NFTNotDeposited",
|
|
162
|
+
"type": "error"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"inputs": [],
|
|
166
|
+
"name": "NoCollateral",
|
|
167
|
+
"type": "error"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"inputs": [],
|
|
171
|
+
"name": "NotEnoughCollateralToBorrow",
|
|
172
|
+
"type": "error"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"inputs": [],
|
|
176
|
+
"name": "NotOwnerOfNFT",
|
|
177
|
+
"type": "error"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"inputs": [],
|
|
181
|
+
"name": "NotUnderLiquidation",
|
|
182
|
+
"type": "error"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"inputs": [
|
|
186
|
+
{
|
|
187
|
+
"internalType": "address",
|
|
188
|
+
"name": "owner",
|
|
189
|
+
"type": "address"
|
|
190
|
+
}
|
|
191
|
+
],
|
|
192
|
+
"name": "OwnableInvalidOwner",
|
|
193
|
+
"type": "error"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"inputs": [
|
|
197
|
+
{
|
|
198
|
+
"internalType": "address",
|
|
199
|
+
"name": "account",
|
|
200
|
+
"type": "address"
|
|
201
|
+
}
|
|
202
|
+
],
|
|
203
|
+
"name": "OwnableUnauthorizedAccount",
|
|
204
|
+
"type": "error"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"inputs": [],
|
|
208
|
+
"name": "PaybackDebtDisabled",
|
|
209
|
+
"type": "error"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"inputs": [],
|
|
213
|
+
"name": "PrimeRateChangeExceedsLimit",
|
|
214
|
+
"type": "error"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"inputs": [],
|
|
218
|
+
"name": "PrimeRateMustBePositive",
|
|
219
|
+
"type": "error"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"inputs": [],
|
|
223
|
+
"name": "ReentrancyGuardReentrantCall",
|
|
224
|
+
"type": "error"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"inputs": [],
|
|
228
|
+
"name": "RepayAmountTooHigh",
|
|
229
|
+
"type": "error"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"inputs": [
|
|
233
|
+
{
|
|
234
|
+
"internalType": "uint8",
|
|
235
|
+
"name": "bits",
|
|
236
|
+
"type": "uint8"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"internalType": "uint256",
|
|
240
|
+
"name": "value",
|
|
241
|
+
"type": "uint256"
|
|
242
|
+
}
|
|
243
|
+
],
|
|
244
|
+
"name": "SafeCastOverflowedUintDowncast",
|
|
245
|
+
"type": "error"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"inputs": [
|
|
249
|
+
{
|
|
250
|
+
"internalType": "address",
|
|
251
|
+
"name": "token",
|
|
252
|
+
"type": "address"
|
|
253
|
+
}
|
|
254
|
+
],
|
|
255
|
+
"name": "SafeERC20FailedOperation",
|
|
256
|
+
"type": "error"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"inputs": [],
|
|
260
|
+
"name": "SameAddressNotAllowed",
|
|
261
|
+
"type": "error"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"inputs": [],
|
|
265
|
+
"name": "StalePrice",
|
|
266
|
+
"type": "error"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"inputs": [],
|
|
270
|
+
"name": "TransferFailed",
|
|
271
|
+
"type": "error"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"inputs": [],
|
|
275
|
+
"name": "Unauthorized",
|
|
276
|
+
"type": "error"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"inputs": [],
|
|
280
|
+
"name": "UserAlreadyUnderLiquidation",
|
|
281
|
+
"type": "error"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"inputs": [],
|
|
285
|
+
"name": "WithdrawalWouldLeaveUserUnderCollateralized",
|
|
286
|
+
"type": "error"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"inputs": [],
|
|
290
|
+
"name": "WithdrawalsArePaused",
|
|
291
|
+
"type": "error"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"anonymous": false,
|
|
295
|
+
"inputs": [
|
|
296
|
+
{
|
|
297
|
+
"indexed": true,
|
|
298
|
+
"internalType": "address",
|
|
299
|
+
"name": "user",
|
|
300
|
+
"type": "address"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"indexed": false,
|
|
304
|
+
"internalType": "uint256",
|
|
305
|
+
"name": "amount",
|
|
306
|
+
"type": "uint256"
|
|
307
|
+
}
|
|
308
|
+
],
|
|
309
|
+
"name": "Borrow",
|
|
310
|
+
"type": "event"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"anonymous": false,
|
|
314
|
+
"inputs": [
|
|
315
|
+
{
|
|
316
|
+
"indexed": false,
|
|
317
|
+
"internalType": "bool",
|
|
318
|
+
"name": "enabled",
|
|
319
|
+
"type": "bool"
|
|
320
|
+
}
|
|
321
|
+
],
|
|
322
|
+
"name": "CanPaybackDebtChanged",
|
|
323
|
+
"type": "event"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"anonymous": false,
|
|
327
|
+
"inputs": [
|
|
328
|
+
{
|
|
329
|
+
"indexed": true,
|
|
330
|
+
"internalType": "address",
|
|
331
|
+
"name": "oldVault",
|
|
332
|
+
"type": "address"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"indexed": true,
|
|
336
|
+
"internalType": "address",
|
|
337
|
+
"name": "newVault",
|
|
338
|
+
"type": "address"
|
|
339
|
+
}
|
|
340
|
+
],
|
|
341
|
+
"name": "CurveVaultUpdated",
|
|
342
|
+
"type": "event"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"anonymous": false,
|
|
346
|
+
"inputs": [
|
|
347
|
+
{
|
|
348
|
+
"indexed": true,
|
|
349
|
+
"internalType": "address",
|
|
350
|
+
"name": "user",
|
|
351
|
+
"type": "address"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"indexed": false,
|
|
355
|
+
"internalType": "uint256",
|
|
356
|
+
"name": "amount",
|
|
357
|
+
"type": "uint256"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"indexed": false,
|
|
361
|
+
"internalType": "uint256",
|
|
362
|
+
"name": "mintedAmount",
|
|
363
|
+
"type": "uint256"
|
|
364
|
+
}
|
|
365
|
+
],
|
|
366
|
+
"name": "Deposit",
|
|
367
|
+
"type": "event"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"anonymous": false,
|
|
371
|
+
"inputs": [
|
|
372
|
+
{
|
|
373
|
+
"indexed": true,
|
|
374
|
+
"internalType": "address",
|
|
375
|
+
"name": "user",
|
|
376
|
+
"type": "address"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"indexed": false,
|
|
380
|
+
"internalType": "uint256",
|
|
381
|
+
"name": "amount",
|
|
382
|
+
"type": "uint256"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"indexed": false,
|
|
386
|
+
"internalType": "uint256",
|
|
387
|
+
"name": "liquidityMinted",
|
|
388
|
+
"type": "uint256"
|
|
389
|
+
}
|
|
390
|
+
],
|
|
391
|
+
"name": "Deposit",
|
|
392
|
+
"type": "event"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"anonymous": false,
|
|
396
|
+
"inputs": [
|
|
397
|
+
{
|
|
398
|
+
"indexed": false,
|
|
399
|
+
"internalType": "uint256",
|
|
400
|
+
"name": "liquidityRate",
|
|
401
|
+
"type": "uint256"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"indexed": false,
|
|
405
|
+
"internalType": "uint256",
|
|
406
|
+
"name": "usageRate",
|
|
407
|
+
"type": "uint256"
|
|
408
|
+
}
|
|
409
|
+
],
|
|
410
|
+
"name": "InterestRatesUpdated",
|
|
411
|
+
"type": "event"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"anonymous": false,
|
|
415
|
+
"inputs": [
|
|
416
|
+
{
|
|
417
|
+
"indexed": true,
|
|
418
|
+
"internalType": "address",
|
|
419
|
+
"name": "liquidator",
|
|
420
|
+
"type": "address"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"indexed": true,
|
|
424
|
+
"internalType": "address",
|
|
425
|
+
"name": "user",
|
|
426
|
+
"type": "address"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"indexed": false,
|
|
430
|
+
"internalType": "uint256",
|
|
431
|
+
"name": "debtRepaid",
|
|
432
|
+
"type": "uint256"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"indexed": false,
|
|
436
|
+
"internalType": "uint256",
|
|
437
|
+
"name": "collateralLiquidated",
|
|
438
|
+
"type": "uint256"
|
|
439
|
+
}
|
|
440
|
+
],
|
|
441
|
+
"name": "Liquidation",
|
|
442
|
+
"type": "event"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"anonymous": false,
|
|
446
|
+
"inputs": [
|
|
447
|
+
{
|
|
448
|
+
"indexed": true,
|
|
449
|
+
"internalType": "address",
|
|
450
|
+
"name": "user",
|
|
451
|
+
"type": "address"
|
|
452
|
+
}
|
|
453
|
+
],
|
|
454
|
+
"name": "LiquidationClosed",
|
|
455
|
+
"type": "event"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"anonymous": false,
|
|
459
|
+
"inputs": [
|
|
460
|
+
{
|
|
461
|
+
"indexed": true,
|
|
462
|
+
"internalType": "address",
|
|
463
|
+
"name": "liquidator",
|
|
464
|
+
"type": "address"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"indexed": true,
|
|
468
|
+
"internalType": "address",
|
|
469
|
+
"name": "user",
|
|
470
|
+
"type": "address"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"indexed": false,
|
|
474
|
+
"internalType": "uint256",
|
|
475
|
+
"name": "debtRepaid",
|
|
476
|
+
"type": "uint256"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"indexed": false,
|
|
480
|
+
"internalType": "uint256",
|
|
481
|
+
"name": "collateralLiquidated",
|
|
482
|
+
"type": "uint256"
|
|
483
|
+
}
|
|
484
|
+
],
|
|
485
|
+
"name": "LiquidationFinalized",
|
|
486
|
+
"type": "event"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"anonymous": false,
|
|
490
|
+
"inputs": [
|
|
491
|
+
{
|
|
492
|
+
"indexed": true,
|
|
493
|
+
"internalType": "address",
|
|
494
|
+
"name": "liquidator",
|
|
495
|
+
"type": "address"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"indexed": true,
|
|
499
|
+
"internalType": "address",
|
|
500
|
+
"name": "user",
|
|
501
|
+
"type": "address"
|
|
502
|
+
}
|
|
503
|
+
],
|
|
504
|
+
"name": "LiquidationInitiated",
|
|
505
|
+
"type": "event"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"anonymous": false,
|
|
509
|
+
"inputs": [
|
|
510
|
+
{
|
|
511
|
+
"indexed": false,
|
|
512
|
+
"internalType": "uint256",
|
|
513
|
+
"name": "newLiquidationThreshold",
|
|
514
|
+
"type": "uint256"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"indexed": false,
|
|
518
|
+
"internalType": "uint256",
|
|
519
|
+
"name": "newHealthFactorLiquidationThreshold",
|
|
520
|
+
"type": "uint256"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"indexed": false,
|
|
524
|
+
"internalType": "uint256",
|
|
525
|
+
"name": "newLiquidationGracePeriod",
|
|
526
|
+
"type": "uint256"
|
|
527
|
+
}
|
|
528
|
+
],
|
|
529
|
+
"name": "LiquidationParametersUpdated",
|
|
530
|
+
"type": "event"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"anonymous": false,
|
|
534
|
+
"inputs": [
|
|
535
|
+
{
|
|
536
|
+
"indexed": false,
|
|
537
|
+
"internalType": "uint256",
|
|
538
|
+
"name": "oldRatio",
|
|
539
|
+
"type": "uint256"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"indexed": false,
|
|
543
|
+
"internalType": "uint256",
|
|
544
|
+
"name": "newRatio",
|
|
545
|
+
"type": "uint256"
|
|
546
|
+
}
|
|
547
|
+
],
|
|
548
|
+
"name": "LiquidityBufferRatioUpdated",
|
|
549
|
+
"type": "event"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"anonymous": false,
|
|
553
|
+
"inputs": [
|
|
554
|
+
{
|
|
555
|
+
"indexed": false,
|
|
556
|
+
"internalType": "uint256",
|
|
557
|
+
"name": "bufferAmount",
|
|
558
|
+
"type": "uint256"
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"indexed": false,
|
|
562
|
+
"internalType": "uint256",
|
|
563
|
+
"name": "vaultAmount",
|
|
564
|
+
"type": "uint256"
|
|
565
|
+
}
|
|
566
|
+
],
|
|
567
|
+
"name": "LiquidityRebalanced",
|
|
568
|
+
"type": "event"
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"anonymous": false,
|
|
572
|
+
"inputs": [
|
|
573
|
+
{
|
|
574
|
+
"indexed": true,
|
|
575
|
+
"internalType": "address",
|
|
576
|
+
"name": "user",
|
|
577
|
+
"type": "address"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"indexed": false,
|
|
581
|
+
"internalType": "uint256",
|
|
582
|
+
"name": "tokenId",
|
|
583
|
+
"type": "uint256"
|
|
584
|
+
}
|
|
585
|
+
],
|
|
586
|
+
"name": "NFTDeposited",
|
|
587
|
+
"type": "event"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"anonymous": false,
|
|
591
|
+
"inputs": [
|
|
592
|
+
{
|
|
593
|
+
"indexed": true,
|
|
594
|
+
"internalType": "address",
|
|
595
|
+
"name": "user",
|
|
596
|
+
"type": "address"
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"indexed": false,
|
|
600
|
+
"internalType": "uint256",
|
|
601
|
+
"name": "tokenId",
|
|
602
|
+
"type": "uint256"
|
|
603
|
+
}
|
|
604
|
+
],
|
|
605
|
+
"name": "NFTWithdrawn",
|
|
606
|
+
"type": "event"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"anonymous": false,
|
|
610
|
+
"inputs": [
|
|
611
|
+
{
|
|
612
|
+
"indexed": true,
|
|
613
|
+
"internalType": "address",
|
|
614
|
+
"name": "previousOwner",
|
|
615
|
+
"type": "address"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"indexed": true,
|
|
619
|
+
"internalType": "address",
|
|
620
|
+
"name": "newOwner",
|
|
621
|
+
"type": "address"
|
|
622
|
+
}
|
|
623
|
+
],
|
|
624
|
+
"name": "OwnershipTransferred",
|
|
625
|
+
"type": "event"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"anonymous": false,
|
|
629
|
+
"inputs": [
|
|
630
|
+
{
|
|
631
|
+
"indexed": false,
|
|
632
|
+
"internalType": "address",
|
|
633
|
+
"name": "account",
|
|
634
|
+
"type": "address"
|
|
635
|
+
}
|
|
636
|
+
],
|
|
637
|
+
"name": "Paused",
|
|
638
|
+
"type": "event"
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"anonymous": false,
|
|
642
|
+
"inputs": [
|
|
643
|
+
{
|
|
644
|
+
"indexed": false,
|
|
645
|
+
"internalType": "uint256",
|
|
646
|
+
"name": "oldPrimeRate",
|
|
647
|
+
"type": "uint256"
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"indexed": false,
|
|
651
|
+
"internalType": "uint256",
|
|
652
|
+
"name": "newPrimeRate",
|
|
653
|
+
"type": "uint256"
|
|
654
|
+
}
|
|
655
|
+
],
|
|
656
|
+
"name": "PrimeRateUpdated",
|
|
657
|
+
"type": "event"
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"anonymous": false,
|
|
661
|
+
"inputs": [
|
|
662
|
+
{
|
|
663
|
+
"indexed": true,
|
|
664
|
+
"internalType": "address",
|
|
665
|
+
"name": "user",
|
|
666
|
+
"type": "address"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"indexed": true,
|
|
670
|
+
"internalType": "address",
|
|
671
|
+
"name": "onBehalfOf",
|
|
672
|
+
"type": "address"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"indexed": false,
|
|
676
|
+
"internalType": "uint256",
|
|
677
|
+
"name": "amount",
|
|
678
|
+
"type": "uint256"
|
|
679
|
+
}
|
|
680
|
+
],
|
|
681
|
+
"name": "Repay",
|
|
682
|
+
"type": "event"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"anonymous": false,
|
|
686
|
+
"inputs": [
|
|
687
|
+
{
|
|
688
|
+
"indexed": false,
|
|
689
|
+
"internalType": "uint256",
|
|
690
|
+
"name": "liquidityIndex",
|
|
691
|
+
"type": "uint256"
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"indexed": false,
|
|
695
|
+
"internalType": "uint256",
|
|
696
|
+
"name": "usageIndex",
|
|
697
|
+
"type": "uint256"
|
|
698
|
+
}
|
|
699
|
+
],
|
|
700
|
+
"name": "ReserveInterestsUpdated",
|
|
701
|
+
"type": "event"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"anonymous": false,
|
|
705
|
+
"inputs": [
|
|
706
|
+
{
|
|
707
|
+
"indexed": true,
|
|
708
|
+
"internalType": "address",
|
|
709
|
+
"name": "oldStabilityPool",
|
|
710
|
+
"type": "address"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"indexed": true,
|
|
714
|
+
"internalType": "address",
|
|
715
|
+
"name": "newStabilityPool",
|
|
716
|
+
"type": "address"
|
|
717
|
+
}
|
|
718
|
+
],
|
|
719
|
+
"name": "StabilityPoolUpdated",
|
|
720
|
+
"type": "event"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"anonymous": false,
|
|
724
|
+
"inputs": [
|
|
725
|
+
{
|
|
726
|
+
"indexed": false,
|
|
727
|
+
"internalType": "address",
|
|
728
|
+
"name": "account",
|
|
729
|
+
"type": "address"
|
|
730
|
+
}
|
|
731
|
+
],
|
|
732
|
+
"name": "Unpaused",
|
|
733
|
+
"type": "event"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"anonymous": false,
|
|
737
|
+
"inputs": [
|
|
738
|
+
{
|
|
739
|
+
"indexed": true,
|
|
740
|
+
"internalType": "address",
|
|
741
|
+
"name": "user",
|
|
742
|
+
"type": "address"
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"indexed": false,
|
|
746
|
+
"internalType": "uint256",
|
|
747
|
+
"name": "amount",
|
|
748
|
+
"type": "uint256"
|
|
749
|
+
}
|
|
750
|
+
],
|
|
751
|
+
"name": "Withdraw",
|
|
752
|
+
"type": "event"
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"anonymous": false,
|
|
756
|
+
"inputs": [
|
|
757
|
+
{
|
|
758
|
+
"indexed": true,
|
|
759
|
+
"internalType": "address",
|
|
760
|
+
"name": "user",
|
|
761
|
+
"type": "address"
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"indexed": false,
|
|
765
|
+
"internalType": "uint256",
|
|
766
|
+
"name": "amount",
|
|
767
|
+
"type": "uint256"
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"indexed": false,
|
|
771
|
+
"internalType": "uint256",
|
|
772
|
+
"name": "liquidityBurned",
|
|
773
|
+
"type": "uint256"
|
|
774
|
+
}
|
|
775
|
+
],
|
|
776
|
+
"name": "Withdraw",
|
|
777
|
+
"type": "event"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"anonymous": false,
|
|
781
|
+
"inputs": [
|
|
782
|
+
{
|
|
783
|
+
"indexed": false,
|
|
784
|
+
"internalType": "bool",
|
|
785
|
+
"name": "isPaused",
|
|
786
|
+
"type": "bool"
|
|
787
|
+
}
|
|
788
|
+
],
|
|
789
|
+
"name": "WithdrawalsPauseStatusChanged",
|
|
790
|
+
"type": "event"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"inputs": [],
|
|
794
|
+
"name": "BASE_HEALTH_FACTOR_LIQUIDATION_THRESHOLD",
|
|
795
|
+
"outputs": [
|
|
796
|
+
{
|
|
797
|
+
"internalType": "uint256",
|
|
798
|
+
"name": "",
|
|
799
|
+
"type": "uint256"
|
|
800
|
+
}
|
|
801
|
+
],
|
|
802
|
+
"stateMutability": "view",
|
|
803
|
+
"type": "function"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"inputs": [],
|
|
807
|
+
"name": "BASE_LIQUIDATION_GRACE_PERIOD",
|
|
808
|
+
"outputs": [
|
|
809
|
+
{
|
|
810
|
+
"internalType": "uint256",
|
|
811
|
+
"name": "",
|
|
812
|
+
"type": "uint256"
|
|
813
|
+
}
|
|
814
|
+
],
|
|
815
|
+
"stateMutability": "view",
|
|
816
|
+
"type": "function"
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"inputs": [],
|
|
820
|
+
"name": "BASE_LIQUIDATION_THRESHOLD",
|
|
821
|
+
"outputs": [
|
|
822
|
+
{
|
|
823
|
+
"internalType": "uint256",
|
|
824
|
+
"name": "",
|
|
825
|
+
"type": "uint256"
|
|
826
|
+
}
|
|
827
|
+
],
|
|
828
|
+
"stateMutability": "view",
|
|
829
|
+
"type": "function"
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"inputs": [
|
|
833
|
+
{
|
|
834
|
+
"internalType": "uint256",
|
|
835
|
+
"name": "amount",
|
|
836
|
+
"type": "uint256"
|
|
837
|
+
}
|
|
838
|
+
],
|
|
839
|
+
"name": "borrow",
|
|
840
|
+
"outputs": [],
|
|
841
|
+
"stateMutability": "nonpayable",
|
|
842
|
+
"type": "function"
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"inputs": [
|
|
846
|
+
{
|
|
847
|
+
"internalType": "address",
|
|
848
|
+
"name": "userAddress",
|
|
849
|
+
"type": "address"
|
|
850
|
+
}
|
|
851
|
+
],
|
|
852
|
+
"name": "calculateHealthFactor",
|
|
853
|
+
"outputs": [
|
|
854
|
+
{
|
|
855
|
+
"internalType": "uint256",
|
|
856
|
+
"name": "",
|
|
857
|
+
"type": "uint256"
|
|
858
|
+
}
|
|
859
|
+
],
|
|
860
|
+
"stateMutability": "view",
|
|
861
|
+
"type": "function"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"inputs": [],
|
|
865
|
+
"name": "canPaybackDebt",
|
|
866
|
+
"outputs": [
|
|
867
|
+
{
|
|
868
|
+
"internalType": "bool",
|
|
869
|
+
"name": "",
|
|
870
|
+
"type": "bool"
|
|
871
|
+
}
|
|
872
|
+
],
|
|
873
|
+
"stateMutability": "view",
|
|
874
|
+
"type": "function"
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"inputs": [],
|
|
878
|
+
"name": "closeLiquidation",
|
|
879
|
+
"outputs": [],
|
|
880
|
+
"stateMutability": "nonpayable",
|
|
881
|
+
"type": "function"
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
"inputs": [],
|
|
885
|
+
"name": "curveVault",
|
|
886
|
+
"outputs": [
|
|
887
|
+
{
|
|
888
|
+
"internalType": "contract ICurveCrvUSDVault",
|
|
889
|
+
"name": "",
|
|
890
|
+
"type": "address"
|
|
891
|
+
}
|
|
892
|
+
],
|
|
893
|
+
"stateMutability": "view",
|
|
894
|
+
"type": "function"
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"inputs": [],
|
|
898
|
+
"name": "debtToken",
|
|
899
|
+
"outputs": [
|
|
900
|
+
{
|
|
901
|
+
"internalType": "contract IDebtToken",
|
|
902
|
+
"name": "",
|
|
903
|
+
"type": "address"
|
|
904
|
+
}
|
|
905
|
+
],
|
|
906
|
+
"stateMutability": "view",
|
|
907
|
+
"type": "function"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"inputs": [
|
|
911
|
+
{
|
|
912
|
+
"internalType": "uint256",
|
|
913
|
+
"name": "amount",
|
|
914
|
+
"type": "uint256"
|
|
915
|
+
}
|
|
916
|
+
],
|
|
917
|
+
"name": "deposit",
|
|
918
|
+
"outputs": [],
|
|
919
|
+
"stateMutability": "nonpayable",
|
|
920
|
+
"type": "function"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"inputs": [
|
|
924
|
+
{
|
|
925
|
+
"internalType": "uint256",
|
|
926
|
+
"name": "tokenId",
|
|
927
|
+
"type": "uint256"
|
|
928
|
+
}
|
|
929
|
+
],
|
|
930
|
+
"name": "depositNFT",
|
|
931
|
+
"outputs": [],
|
|
932
|
+
"stateMutability": "nonpayable",
|
|
933
|
+
"type": "function"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"inputs": [
|
|
937
|
+
{
|
|
938
|
+
"internalType": "address",
|
|
939
|
+
"name": "userAddress",
|
|
940
|
+
"type": "address"
|
|
941
|
+
}
|
|
942
|
+
],
|
|
943
|
+
"name": "finalizeLiquidation",
|
|
944
|
+
"outputs": [],
|
|
945
|
+
"stateMutability": "nonpayable",
|
|
946
|
+
"type": "function"
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"inputs": [
|
|
950
|
+
{
|
|
951
|
+
"internalType": "uint256",
|
|
952
|
+
"name": "tokenId",
|
|
953
|
+
"type": "uint256"
|
|
954
|
+
}
|
|
955
|
+
],
|
|
956
|
+
"name": "getNFTPrice",
|
|
957
|
+
"outputs": [
|
|
958
|
+
{
|
|
959
|
+
"internalType": "uint256",
|
|
960
|
+
"name": "",
|
|
961
|
+
"type": "uint256"
|
|
962
|
+
}
|
|
963
|
+
],
|
|
964
|
+
"stateMutability": "view",
|
|
965
|
+
"type": "function"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"inputs": [],
|
|
969
|
+
"name": "getNormalizedDebt",
|
|
970
|
+
"outputs": [
|
|
971
|
+
{
|
|
972
|
+
"internalType": "uint256",
|
|
973
|
+
"name": "",
|
|
974
|
+
"type": "uint256"
|
|
975
|
+
}
|
|
976
|
+
],
|
|
977
|
+
"stateMutability": "view",
|
|
978
|
+
"type": "function"
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"inputs": [],
|
|
982
|
+
"name": "getNormalizedIncome",
|
|
983
|
+
"outputs": [
|
|
984
|
+
{
|
|
985
|
+
"internalType": "uint256",
|
|
986
|
+
"name": "",
|
|
987
|
+
"type": "uint256"
|
|
988
|
+
}
|
|
989
|
+
],
|
|
990
|
+
"stateMutability": "view",
|
|
991
|
+
"type": "function"
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
"inputs": [],
|
|
995
|
+
"name": "getPrimeRate",
|
|
996
|
+
"outputs": [
|
|
997
|
+
{
|
|
998
|
+
"internalType": "uint256",
|
|
999
|
+
"name": "",
|
|
1000
|
+
"type": "uint256"
|
|
1001
|
+
}
|
|
1002
|
+
],
|
|
1003
|
+
"stateMutability": "view",
|
|
1004
|
+
"type": "function"
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"inputs": [
|
|
1008
|
+
{
|
|
1009
|
+
"internalType": "address",
|
|
1010
|
+
"name": "userAddress",
|
|
1011
|
+
"type": "address"
|
|
1012
|
+
}
|
|
1013
|
+
],
|
|
1014
|
+
"name": "getUserCollateralValue",
|
|
1015
|
+
"outputs": [
|
|
1016
|
+
{
|
|
1017
|
+
"internalType": "uint256",
|
|
1018
|
+
"name": "",
|
|
1019
|
+
"type": "uint256"
|
|
1020
|
+
}
|
|
1021
|
+
],
|
|
1022
|
+
"stateMutability": "view",
|
|
1023
|
+
"type": "function"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"inputs": [
|
|
1027
|
+
{
|
|
1028
|
+
"internalType": "address",
|
|
1029
|
+
"name": "userAddress",
|
|
1030
|
+
"type": "address"
|
|
1031
|
+
}
|
|
1032
|
+
],
|
|
1033
|
+
"name": "getUserDebt",
|
|
1034
|
+
"outputs": [
|
|
1035
|
+
{
|
|
1036
|
+
"internalType": "uint256",
|
|
1037
|
+
"name": "",
|
|
1038
|
+
"type": "uint256"
|
|
1039
|
+
}
|
|
1040
|
+
],
|
|
1041
|
+
"stateMutability": "view",
|
|
1042
|
+
"type": "function"
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
"inputs": [],
|
|
1046
|
+
"name": "healthFactorLiquidationThreshold",
|
|
1047
|
+
"outputs": [
|
|
1048
|
+
{
|
|
1049
|
+
"internalType": "uint256",
|
|
1050
|
+
"name": "",
|
|
1051
|
+
"type": "uint256"
|
|
1052
|
+
}
|
|
1053
|
+
],
|
|
1054
|
+
"stateMutability": "view",
|
|
1055
|
+
"type": "function"
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
"inputs": [
|
|
1059
|
+
{
|
|
1060
|
+
"internalType": "address",
|
|
1061
|
+
"name": "userAddress",
|
|
1062
|
+
"type": "address"
|
|
1063
|
+
}
|
|
1064
|
+
],
|
|
1065
|
+
"name": "initiateLiquidation",
|
|
1066
|
+
"outputs": [],
|
|
1067
|
+
"stateMutability": "nonpayable",
|
|
1068
|
+
"type": "function"
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"inputs": [
|
|
1072
|
+
{
|
|
1073
|
+
"internalType": "address",
|
|
1074
|
+
"name": "",
|
|
1075
|
+
"type": "address"
|
|
1076
|
+
}
|
|
1077
|
+
],
|
|
1078
|
+
"name": "isUnderLiquidation",
|
|
1079
|
+
"outputs": [
|
|
1080
|
+
{
|
|
1081
|
+
"internalType": "bool",
|
|
1082
|
+
"name": "",
|
|
1083
|
+
"type": "bool"
|
|
1084
|
+
}
|
|
1085
|
+
],
|
|
1086
|
+
"stateMutability": "view",
|
|
1087
|
+
"type": "function"
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"inputs": [],
|
|
1091
|
+
"name": "liquidationGracePeriod",
|
|
1092
|
+
"outputs": [
|
|
1093
|
+
{
|
|
1094
|
+
"internalType": "uint256",
|
|
1095
|
+
"name": "",
|
|
1096
|
+
"type": "uint256"
|
|
1097
|
+
}
|
|
1098
|
+
],
|
|
1099
|
+
"stateMutability": "view",
|
|
1100
|
+
"type": "function"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"inputs": [
|
|
1104
|
+
{
|
|
1105
|
+
"internalType": "address",
|
|
1106
|
+
"name": "",
|
|
1107
|
+
"type": "address"
|
|
1108
|
+
}
|
|
1109
|
+
],
|
|
1110
|
+
"name": "liquidationStartTime",
|
|
1111
|
+
"outputs": [
|
|
1112
|
+
{
|
|
1113
|
+
"internalType": "uint256",
|
|
1114
|
+
"name": "",
|
|
1115
|
+
"type": "uint256"
|
|
1116
|
+
}
|
|
1117
|
+
],
|
|
1118
|
+
"stateMutability": "view",
|
|
1119
|
+
"type": "function"
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
"inputs": [],
|
|
1123
|
+
"name": "liquidationThreshold",
|
|
1124
|
+
"outputs": [
|
|
1125
|
+
{
|
|
1126
|
+
"internalType": "uint256",
|
|
1127
|
+
"name": "",
|
|
1128
|
+
"type": "uint256"
|
|
1129
|
+
}
|
|
1130
|
+
],
|
|
1131
|
+
"stateMutability": "view",
|
|
1132
|
+
"type": "function"
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
"inputs": [],
|
|
1136
|
+
"name": "liquidityBufferRatio",
|
|
1137
|
+
"outputs": [
|
|
1138
|
+
{
|
|
1139
|
+
"internalType": "uint256",
|
|
1140
|
+
"name": "",
|
|
1141
|
+
"type": "uint256"
|
|
1142
|
+
}
|
|
1143
|
+
],
|
|
1144
|
+
"stateMutability": "view",
|
|
1145
|
+
"type": "function"
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"inputs": [
|
|
1149
|
+
{
|
|
1150
|
+
"internalType": "address",
|
|
1151
|
+
"name": "",
|
|
1152
|
+
"type": "address"
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
"internalType": "address",
|
|
1156
|
+
"name": "",
|
|
1157
|
+
"type": "address"
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"internalType": "uint256",
|
|
1161
|
+
"name": "",
|
|
1162
|
+
"type": "uint256"
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"internalType": "bytes",
|
|
1166
|
+
"name": "",
|
|
1167
|
+
"type": "bytes"
|
|
1168
|
+
}
|
|
1169
|
+
],
|
|
1170
|
+
"name": "onERC721Received",
|
|
1171
|
+
"outputs": [
|
|
1172
|
+
{
|
|
1173
|
+
"internalType": "bytes4",
|
|
1174
|
+
"name": "",
|
|
1175
|
+
"type": "bytes4"
|
|
1176
|
+
}
|
|
1177
|
+
],
|
|
1178
|
+
"stateMutability": "nonpayable",
|
|
1179
|
+
"type": "function"
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"inputs": [],
|
|
1183
|
+
"name": "owner",
|
|
1184
|
+
"outputs": [
|
|
1185
|
+
{
|
|
1186
|
+
"internalType": "address",
|
|
1187
|
+
"name": "",
|
|
1188
|
+
"type": "address"
|
|
1189
|
+
}
|
|
1190
|
+
],
|
|
1191
|
+
"stateMutability": "view",
|
|
1192
|
+
"type": "function"
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
"inputs": [],
|
|
1196
|
+
"name": "pause",
|
|
1197
|
+
"outputs": [],
|
|
1198
|
+
"stateMutability": "nonpayable",
|
|
1199
|
+
"type": "function"
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"inputs": [],
|
|
1203
|
+
"name": "pauseWithdrawals",
|
|
1204
|
+
"outputs": [],
|
|
1205
|
+
"stateMutability": "nonpayable",
|
|
1206
|
+
"type": "function"
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"inputs": [],
|
|
1210
|
+
"name": "paused",
|
|
1211
|
+
"outputs": [
|
|
1212
|
+
{
|
|
1213
|
+
"internalType": "bool",
|
|
1214
|
+
"name": "",
|
|
1215
|
+
"type": "bool"
|
|
1216
|
+
}
|
|
1217
|
+
],
|
|
1218
|
+
"stateMutability": "view",
|
|
1219
|
+
"type": "function"
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
"inputs": [],
|
|
1223
|
+
"name": "priceOracle",
|
|
1224
|
+
"outputs": [
|
|
1225
|
+
{
|
|
1226
|
+
"internalType": "contract IRAACHousePrices",
|
|
1227
|
+
"name": "",
|
|
1228
|
+
"type": "address"
|
|
1229
|
+
}
|
|
1230
|
+
],
|
|
1231
|
+
"stateMutability": "view",
|
|
1232
|
+
"type": "function"
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"inputs": [],
|
|
1236
|
+
"name": "primeRateOracle",
|
|
1237
|
+
"outputs": [
|
|
1238
|
+
{
|
|
1239
|
+
"internalType": "address",
|
|
1240
|
+
"name": "",
|
|
1241
|
+
"type": "address"
|
|
1242
|
+
}
|
|
1243
|
+
],
|
|
1244
|
+
"stateMutability": "view",
|
|
1245
|
+
"type": "function"
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"inputs": [],
|
|
1249
|
+
"name": "rToken",
|
|
1250
|
+
"outputs": [
|
|
1251
|
+
{
|
|
1252
|
+
"internalType": "contract IRToken",
|
|
1253
|
+
"name": "",
|
|
1254
|
+
"type": "address"
|
|
1255
|
+
}
|
|
1256
|
+
],
|
|
1257
|
+
"stateMutability": "view",
|
|
1258
|
+
"type": "function"
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"inputs": [],
|
|
1262
|
+
"name": "raacNFT",
|
|
1263
|
+
"outputs": [
|
|
1264
|
+
{
|
|
1265
|
+
"internalType": "contract IRAACNFT",
|
|
1266
|
+
"name": "",
|
|
1267
|
+
"type": "address"
|
|
1268
|
+
}
|
|
1269
|
+
],
|
|
1270
|
+
"stateMutability": "view",
|
|
1271
|
+
"type": "function"
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
"inputs": [],
|
|
1275
|
+
"name": "rateData",
|
|
1276
|
+
"outputs": [
|
|
1277
|
+
{
|
|
1278
|
+
"internalType": "uint256",
|
|
1279
|
+
"name": "currentLiquidityRate",
|
|
1280
|
+
"type": "uint256"
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"internalType": "uint256",
|
|
1284
|
+
"name": "currentUsageRate",
|
|
1285
|
+
"type": "uint256"
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"internalType": "uint256",
|
|
1289
|
+
"name": "primeRate",
|
|
1290
|
+
"type": "uint256"
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
"internalType": "uint256",
|
|
1294
|
+
"name": "baseRate",
|
|
1295
|
+
"type": "uint256"
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"internalType": "uint256",
|
|
1299
|
+
"name": "optimalRate",
|
|
1300
|
+
"type": "uint256"
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
"internalType": "uint256",
|
|
1304
|
+
"name": "maxRate",
|
|
1305
|
+
"type": "uint256"
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"internalType": "uint256",
|
|
1309
|
+
"name": "optimalUtilizationRate",
|
|
1310
|
+
"type": "uint256"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"internalType": "uint256",
|
|
1314
|
+
"name": "protocolFeeRate",
|
|
1315
|
+
"type": "uint256"
|
|
1316
|
+
}
|
|
1317
|
+
],
|
|
1318
|
+
"stateMutability": "view",
|
|
1319
|
+
"type": "function"
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"inputs": [],
|
|
1323
|
+
"name": "renounceOwnership",
|
|
1324
|
+
"outputs": [],
|
|
1325
|
+
"stateMutability": "nonpayable",
|
|
1326
|
+
"type": "function"
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
"inputs": [
|
|
1330
|
+
{
|
|
1331
|
+
"internalType": "uint256",
|
|
1332
|
+
"name": "amount",
|
|
1333
|
+
"type": "uint256"
|
|
1334
|
+
}
|
|
1335
|
+
],
|
|
1336
|
+
"name": "repay",
|
|
1337
|
+
"outputs": [],
|
|
1338
|
+
"stateMutability": "nonpayable",
|
|
1339
|
+
"type": "function"
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
"inputs": [
|
|
1343
|
+
{
|
|
1344
|
+
"internalType": "uint256",
|
|
1345
|
+
"name": "amount",
|
|
1346
|
+
"type": "uint256"
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"internalType": "address",
|
|
1350
|
+
"name": "onBehalfOf",
|
|
1351
|
+
"type": "address"
|
|
1352
|
+
}
|
|
1353
|
+
],
|
|
1354
|
+
"name": "repayOnBehalf",
|
|
1355
|
+
"outputs": [],
|
|
1356
|
+
"stateMutability": "nonpayable",
|
|
1357
|
+
"type": "function"
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"inputs": [
|
|
1361
|
+
{
|
|
1362
|
+
"internalType": "address",
|
|
1363
|
+
"name": "tokenAddress",
|
|
1364
|
+
"type": "address"
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
"internalType": "address",
|
|
1368
|
+
"name": "recipient",
|
|
1369
|
+
"type": "address"
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"internalType": "uint256",
|
|
1373
|
+
"name": "amount",
|
|
1374
|
+
"type": "uint256"
|
|
1375
|
+
}
|
|
1376
|
+
],
|
|
1377
|
+
"name": "rescueToken",
|
|
1378
|
+
"outputs": [],
|
|
1379
|
+
"stateMutability": "nonpayable",
|
|
1380
|
+
"type": "function"
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
"inputs": [],
|
|
1384
|
+
"name": "reserve",
|
|
1385
|
+
"outputs": [
|
|
1386
|
+
{
|
|
1387
|
+
"internalType": "address",
|
|
1388
|
+
"name": "reserveRTokenAddress",
|
|
1389
|
+
"type": "address"
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
"internalType": "address",
|
|
1393
|
+
"name": "reserveAssetAddress",
|
|
1394
|
+
"type": "address"
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
"internalType": "address",
|
|
1398
|
+
"name": "reserveDebtTokenAddress",
|
|
1399
|
+
"type": "address"
|
|
1400
|
+
},
|
|
1401
|
+
{
|
|
1402
|
+
"internalType": "uint256",
|
|
1403
|
+
"name": "totalLiquidity",
|
|
1404
|
+
"type": "uint256"
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
"internalType": "uint256",
|
|
1408
|
+
"name": "totalUsage",
|
|
1409
|
+
"type": "uint256"
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
"internalType": "uint128",
|
|
1413
|
+
"name": "liquidityIndex",
|
|
1414
|
+
"type": "uint128"
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
"internalType": "uint128",
|
|
1418
|
+
"name": "usageIndex",
|
|
1419
|
+
"type": "uint128"
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
"internalType": "uint40",
|
|
1423
|
+
"name": "lastUpdateTimestamp",
|
|
1424
|
+
"type": "uint40"
|
|
1425
|
+
}
|
|
1426
|
+
],
|
|
1427
|
+
"stateMutability": "view",
|
|
1428
|
+
"type": "function"
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"inputs": [],
|
|
1432
|
+
"name": "reserveAssetToken",
|
|
1433
|
+
"outputs": [
|
|
1434
|
+
{
|
|
1435
|
+
"internalType": "contract IERC20",
|
|
1436
|
+
"name": "",
|
|
1437
|
+
"type": "address"
|
|
1438
|
+
}
|
|
1439
|
+
],
|
|
1440
|
+
"stateMutability": "view",
|
|
1441
|
+
"type": "function"
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
"inputs": [
|
|
1445
|
+
{
|
|
1446
|
+
"internalType": "bool",
|
|
1447
|
+
"name": "enabled",
|
|
1448
|
+
"type": "bool"
|
|
1449
|
+
}
|
|
1450
|
+
],
|
|
1451
|
+
"name": "setCanPaybackDebt",
|
|
1452
|
+
"outputs": [],
|
|
1453
|
+
"stateMutability": "nonpayable",
|
|
1454
|
+
"type": "function"
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"inputs": [
|
|
1458
|
+
{
|
|
1459
|
+
"internalType": "address",
|
|
1460
|
+
"name": "newVault",
|
|
1461
|
+
"type": "address"
|
|
1462
|
+
}
|
|
1463
|
+
],
|
|
1464
|
+
"name": "setCurveVault",
|
|
1465
|
+
"outputs": [],
|
|
1466
|
+
"stateMutability": "nonpayable",
|
|
1467
|
+
"type": "function"
|
|
1468
|
+
},
|
|
1469
|
+
{
|
|
1470
|
+
"inputs": [
|
|
1471
|
+
{
|
|
1472
|
+
"internalType": "uint256",
|
|
1473
|
+
"name": "newHealthFactorLiquidationThreshold",
|
|
1474
|
+
"type": "uint256"
|
|
1475
|
+
}
|
|
1476
|
+
],
|
|
1477
|
+
"name": "setHealthFactorLiquidationThreshold",
|
|
1478
|
+
"outputs": [],
|
|
1479
|
+
"stateMutability": "nonpayable",
|
|
1480
|
+
"type": "function"
|
|
1481
|
+
},
|
|
1482
|
+
{
|
|
1483
|
+
"inputs": [
|
|
1484
|
+
{
|
|
1485
|
+
"internalType": "uint256",
|
|
1486
|
+
"name": "newLiquidationGracePeriod",
|
|
1487
|
+
"type": "uint256"
|
|
1488
|
+
}
|
|
1489
|
+
],
|
|
1490
|
+
"name": "setLiquidationGracePeriod",
|
|
1491
|
+
"outputs": [],
|
|
1492
|
+
"stateMutability": "nonpayable",
|
|
1493
|
+
"type": "function"
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
"inputs": [
|
|
1497
|
+
{
|
|
1498
|
+
"internalType": "uint256",
|
|
1499
|
+
"name": "newLiquidationThreshold",
|
|
1500
|
+
"type": "uint256"
|
|
1501
|
+
}
|
|
1502
|
+
],
|
|
1503
|
+
"name": "setLiquidationThreshold",
|
|
1504
|
+
"outputs": [],
|
|
1505
|
+
"stateMutability": "nonpayable",
|
|
1506
|
+
"type": "function"
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
"inputs": [
|
|
1510
|
+
{
|
|
1511
|
+
"internalType": "uint256",
|
|
1512
|
+
"name": "newRatio",
|
|
1513
|
+
"type": "uint256"
|
|
1514
|
+
}
|
|
1515
|
+
],
|
|
1516
|
+
"name": "setLiquidityBufferRatio",
|
|
1517
|
+
"outputs": [],
|
|
1518
|
+
"stateMutability": "nonpayable",
|
|
1519
|
+
"type": "function"
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"inputs": [
|
|
1523
|
+
{
|
|
1524
|
+
"internalType": "uint256",
|
|
1525
|
+
"name": "newPrimeRate",
|
|
1526
|
+
"type": "uint256"
|
|
1527
|
+
}
|
|
1528
|
+
],
|
|
1529
|
+
"name": "setPrimeRate",
|
|
1530
|
+
"outputs": [],
|
|
1531
|
+
"stateMutability": "nonpayable",
|
|
1532
|
+
"type": "function"
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
"inputs": [
|
|
1536
|
+
{
|
|
1537
|
+
"internalType": "address",
|
|
1538
|
+
"name": "newOracle",
|
|
1539
|
+
"type": "address"
|
|
1540
|
+
}
|
|
1541
|
+
],
|
|
1542
|
+
"name": "setPrimeRateOracle",
|
|
1543
|
+
"outputs": [],
|
|
1544
|
+
"stateMutability": "nonpayable",
|
|
1545
|
+
"type": "function"
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
"inputs": [
|
|
1549
|
+
{
|
|
1550
|
+
"internalType": "uint256",
|
|
1551
|
+
"name": "newProtocolFeeRate",
|
|
1552
|
+
"type": "uint256"
|
|
1553
|
+
}
|
|
1554
|
+
],
|
|
1555
|
+
"name": "setProtocolFeeRate",
|
|
1556
|
+
"outputs": [],
|
|
1557
|
+
"stateMutability": "nonpayable",
|
|
1558
|
+
"type": "function"
|
|
1559
|
+
},
|
|
1560
|
+
{
|
|
1561
|
+
"inputs": [
|
|
1562
|
+
{
|
|
1563
|
+
"internalType": "address",
|
|
1564
|
+
"name": "newStabilityPool",
|
|
1565
|
+
"type": "address"
|
|
1566
|
+
}
|
|
1567
|
+
],
|
|
1568
|
+
"name": "setStabilityPool",
|
|
1569
|
+
"outputs": [],
|
|
1570
|
+
"stateMutability": "nonpayable",
|
|
1571
|
+
"type": "function"
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
"inputs": [],
|
|
1575
|
+
"name": "stabilityPool",
|
|
1576
|
+
"outputs": [
|
|
1577
|
+
{
|
|
1578
|
+
"internalType": "address",
|
|
1579
|
+
"name": "",
|
|
1580
|
+
"type": "address"
|
|
1581
|
+
}
|
|
1582
|
+
],
|
|
1583
|
+
"stateMutability": "view",
|
|
1584
|
+
"type": "function"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
"inputs": [],
|
|
1588
|
+
"name": "totalVaultDeposits",
|
|
1589
|
+
"outputs": [
|
|
1590
|
+
{
|
|
1591
|
+
"internalType": "uint256",
|
|
1592
|
+
"name": "",
|
|
1593
|
+
"type": "uint256"
|
|
1594
|
+
}
|
|
1595
|
+
],
|
|
1596
|
+
"stateMutability": "view",
|
|
1597
|
+
"type": "function"
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
"inputs": [
|
|
1601
|
+
{
|
|
1602
|
+
"internalType": "address",
|
|
1603
|
+
"name": "recipient",
|
|
1604
|
+
"type": "address"
|
|
1605
|
+
},
|
|
1606
|
+
{
|
|
1607
|
+
"internalType": "uint256",
|
|
1608
|
+
"name": "amount",
|
|
1609
|
+
"type": "uint256"
|
|
1610
|
+
}
|
|
1611
|
+
],
|
|
1612
|
+
"name": "transferAccruedDust",
|
|
1613
|
+
"outputs": [],
|
|
1614
|
+
"stateMutability": "nonpayable",
|
|
1615
|
+
"type": "function"
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"inputs": [
|
|
1619
|
+
{
|
|
1620
|
+
"internalType": "address",
|
|
1621
|
+
"name": "newOwner",
|
|
1622
|
+
"type": "address"
|
|
1623
|
+
}
|
|
1624
|
+
],
|
|
1625
|
+
"name": "transferOwnership",
|
|
1626
|
+
"outputs": [],
|
|
1627
|
+
"stateMutability": "nonpayable",
|
|
1628
|
+
"type": "function"
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
"inputs": [],
|
|
1632
|
+
"name": "unpause",
|
|
1633
|
+
"outputs": [],
|
|
1634
|
+
"stateMutability": "nonpayable",
|
|
1635
|
+
"type": "function"
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
"inputs": [],
|
|
1639
|
+
"name": "unpauseWithdrawals",
|
|
1640
|
+
"outputs": [],
|
|
1641
|
+
"stateMutability": "nonpayable",
|
|
1642
|
+
"type": "function"
|
|
1643
|
+
},
|
|
1644
|
+
{
|
|
1645
|
+
"inputs": [],
|
|
1646
|
+
"name": "updateState",
|
|
1647
|
+
"outputs": [],
|
|
1648
|
+
"stateMutability": "nonpayable",
|
|
1649
|
+
"type": "function"
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
"inputs": [
|
|
1653
|
+
{
|
|
1654
|
+
"internalType": "address",
|
|
1655
|
+
"name": "",
|
|
1656
|
+
"type": "address"
|
|
1657
|
+
}
|
|
1658
|
+
],
|
|
1659
|
+
"name": "userData",
|
|
1660
|
+
"outputs": [
|
|
1661
|
+
{
|
|
1662
|
+
"internalType": "uint256",
|
|
1663
|
+
"name": "scaledDebtBalance",
|
|
1664
|
+
"type": "uint256"
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
"internalType": "bool",
|
|
1668
|
+
"name": "underLiquidation",
|
|
1669
|
+
"type": "bool"
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
"internalType": "uint256",
|
|
1673
|
+
"name": "liquidationStartTime",
|
|
1674
|
+
"type": "uint256"
|
|
1675
|
+
}
|
|
1676
|
+
],
|
|
1677
|
+
"stateMutability": "view",
|
|
1678
|
+
"type": "function"
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
"inputs": [
|
|
1682
|
+
{
|
|
1683
|
+
"internalType": "uint256",
|
|
1684
|
+
"name": "amount",
|
|
1685
|
+
"type": "uint256"
|
|
1686
|
+
}
|
|
1687
|
+
],
|
|
1688
|
+
"name": "withdraw",
|
|
1689
|
+
"outputs": [],
|
|
1690
|
+
"stateMutability": "nonpayable",
|
|
1691
|
+
"type": "function"
|
|
1692
|
+
},
|
|
1693
|
+
{
|
|
1694
|
+
"inputs": [
|
|
1695
|
+
{
|
|
1696
|
+
"internalType": "uint256",
|
|
1697
|
+
"name": "tokenId",
|
|
1698
|
+
"type": "uint256"
|
|
1699
|
+
}
|
|
1700
|
+
],
|
|
1701
|
+
"name": "withdrawNFT",
|
|
1702
|
+
"outputs": [],
|
|
1703
|
+
"stateMutability": "nonpayable",
|
|
1704
|
+
"type": "function"
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
"inputs": [],
|
|
1708
|
+
"name": "withdrawalsPaused",
|
|
1709
|
+
"outputs": [
|
|
1710
|
+
{
|
|
1711
|
+
"internalType": "bool",
|
|
1712
|
+
"name": "",
|
|
1713
|
+
"type": "bool"
|
|
1714
|
+
}
|
|
1715
|
+
],
|
|
1716
|
+
"stateMutability": "view",
|
|
1717
|
+
"type": "function"
|
|
1718
|
+
}
|
|
1719
|
+
],
|
|
1720
|
+
"bytecode": "0x60a06040526018805460ff60a01b1916600160a01b1790556107d0601f556021805460ff191690553480156200003457600080fd5b5060405162003d9038038062003d908339810160408190526200005791620002da565b33806200007e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000898162000246565b50600180556002805460ff191690556001600160a01b0386161580620000b657506001600160a01b038516155b80620000c957506001600160a01b038416155b80620000dc57506001600160a01b038316155b80620000ef57506001600160a01b038216155b80620000f9575080155b1562000118576040516303988b8160e61b815260040160405180910390fd5b601580546001600160a01b03199081166001600160a01b0389811691821790935585831660805260138054831686851617905560168054831689851690811790915560178054841694891694851790557b033b2e3c9fd0803ce800000000000000033b2e3c9fd0803ce80000006008556009805464ffffffffff19164264ffffffffff1617905560038054841690911790556004805483169091179055600580549091169091179055600c819055620001d4816109c462000296565b600d55600c54620001e89061138862000296565b600e55600c54620001fc90619c4062000296565b600f55620002196b033b2e3c9fd0803ce8000000611f4062000296565b601055505060006011555050611f406019555050670de0b6b3a7640000601a556203f480601b5562000352565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081156113881983900484111517620002af57600080fd5b506127109102611388010490565b80516001600160a01b0381168114620002d557600080fd5b919050565b60008060008060008060c08789031215620002f457600080fd5b620002ff87620002bd565b95506200030f60208801620002bd565b94506200031f60408801620002bd565b93506200032f60608801620002bd565b92506200033f60808801620002bd565b915060a087015190509295509295509295565b608051613a066200038a6000396000818161069d01528181610b4e015281816110da01528181611ea50152611fc40152613a066000f3fe608060405234801561001057600080fd5b50600436106103ba5760003560e01c80638da5cb5b116101f4578063c4f8911c1161011a578063e5711e8b116100ad578063ec915ee61161007c578063ec915ee6146108bc578063f2fde38b1461091d578063f8d8989814610930578063fbf4a6121461094357600080fd5b8063e5711e8b14610876578063e65896c914610889578063e91a7ca61461089c578063e9f2838e146108af57600080fd5b8063d0b0c816116100e9578063d0b0c81614610835578063d5db7d5d14610848578063d6d6b1071461085b578063e4c4be581461086e57600080fd5b8063c4f8911c14610718578063c5ebeaec1461072b578063c89109131461073e578063cd3293de1461078b57600080fd5b8063a1c317fd11610192578063b13aa2d611610161578063b13aa2d6146106bf578063b6b55f25146106d2578063bbcb15c2146106e5578063c23c69d5146106f857600080fd5b8063a1c317fd1461065f578063a8a0879514610672578063a9bf805c14610685578063ac919fd41461069857600080fd5b806398d721e0116101ce57806398d721e01461061357806399aaae3e146106265780639ce625f714610639578063a17a2d561461064c57600080fd5b80638da5cb5b146105cc57806392976179146105dd5780639523b910146105f057600080fd5b80633f4ba83a116102e45780635c975abb11610277578063768bab4511610246578063768bab45146105985780637bc7780b146105ab5780638456cb59146105b3578063883c6b24146105bb57600080fd5b80635c975abb1461055f5780636b58359e1461056a578063715018a61461057d57806375417da61461058557600080fd5b806340c65f72116102b357806340c65f721461051e578063498831941461053157806356bb54a7146105445780635a81acd41461054c57600080fd5b80633f4ba83a146104fc5780633ff78a74146105045780634010e5d41461050c5780634031234c1461051557600080fd5b8063150b7a021161035c5780632630c12f1161032b5780632630c12f1461049f5780632e1a7d4d146104b2578063371fd8e6146104c55780633e20bf14146104d857600080fd5b8063150b7a021461045957806316a6c4c5146104855780631705ffad1461048e5780631d8557d71461049757600080fd5b806309bf1e731161039857806309bf1e731461041b5780630ab30d8a146104255780630c42dcaf1461043d5780630c679a7b1461044657600080fd5b8063023245d7146103bf578063048c661d146103d4578063057e9b7b14610404575b600080fd5b6103d26103cd3660046134c7565b610952565b005b6018546103e7906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b61040d601a5481565b6040519081526020016103fb565b61040d6203f48081565b600854600160801b90046001600160801b031661040d565b61040d611f4081565b6103d26104543660046134f5565b610bff565b61046c610467366004613528565b610c29565b6040516001600160e01b031990911681526020016103fb565b61040d601b5481565b61040d601f5481565b6103d2610c3a565b6013546103e7906001600160a01b031681565b6103d26104c03660046134c7565b610c48565b6103d26104d33660046134c7565b610d06565b6018546104ec90600160a01b900460ff1681565b60405190151581526020016103fb565b6103d2610d4c565b6103d2610d5c565b61040d60205481565b61040d60195481565b6016546103e7906001600160a01b031681565b6103d261053f3660046134c7565b610eac565b6103d2610f01565b6103d261055a3660046134f5565b610f4f565b60025460ff166104ec565b6103d26105783660046134c7565b6112bc565b6103d261130d565b61040d6105933660046134f5565b61131f565b6103d26105a6366004613608565b6113a0565b600c5461040d565b6103d261148f565b6008546001600160801b031661040d565b6000546001600160a01b03166103e7565b61040d6105eb3660046134c7565b61149f565b6104ec6105fe3660046134f5565b601c6020526000908152604090205460ff1681565b6103d26106213660046134f5565b61153c565b6103d2610634366004613642565b6115ec565b61040d6106473660046134f5565b611641565b6103d261065a3660046134c7565b6116af565b6103d261066d3660046134f5565b61174e565b6103d26106803660046134f5565b6117f6565b6014546103e7906001600160a01b031681565b6103e77f000000000000000000000000000000000000000000000000000000000000000081565b6103d26106cd3660046134c7565b6118f4565b6103d26106e03660046134c7565b611901565b601e546103e7906001600160a01b031681565b61040d6107063660046134f5565b601d6020526000908152604090205481565b6103d26107263660046134c7565b61199f565b6103d26107393660046134c7565b6119d6565b61077061074c3660046134f5565b601260205260009081526040902080546003820154600490920154909160ff169083565b604080519384529115156020840152908201526060016103fb565b6003546004546005546006546007546008546009546107d7966001600160a01b0390811696811695169392916001600160801b0380821692600160801b909204169064ffffffffff1688565b604080516001600160a01b03998a16815297891660208901529590971694860194909452606085019290925260808401526001600160801b0390811660a08401521660c082015264ffffffffff90911660e0820152610100016103fb565b6103d26108433660046134c7565b611c89565b6015546103e7906001600160a01b031681565b6103d261086936600461365f565b611cd8565b6103d2611d73565b6103d261088436600461368f565b611db6565b61040d6108973660046134f5565b611e2c565b6103d26108aa3660046134c7565b611e69565b6021546104ec9060ff1681565b600a54600b54600c54600d54600e54600f546010546011546108e2979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016103fb565b6103d261092b3660046134f5565b61206e565b6017546103e7906001600160a01b031681565b61040d670de0b6b3a764000081565b61095a6120a9565b6109626120d3565b336000908152601c602052604090205460ff1615610993576040516367c11db560e01b815260040160405180910390fd5b336000908152601260209081526040808320848452600281019092529091205460ff166109d35760405163346fad7360e01b815260040160405180910390fd5b6109df6003600a6120f7565b6008548154600091610a019190600160801b90046001600160801b0316612101565b90506000610a0e3361131f565b90506000610a1b8561149f565b9050610a326019548461214490919063ffffffff16565b610a3c82846136e6565b1015610a5b576040516302c9375f60e21b815260040160405180910390fd5b60005b6001850154811015610b1e5785856001018281548110610a8057610a806136f9565b906000526020600020015403610b0c57600180860180549091610aa2916136e6565b81548110610ab257610ab26136f9565b9060005260206000200154856001018281548110610ad257610ad26136f9565b60009182526020909120015560018501805480610af157610af161370f565b60019003818190600052602060002001600090559055610b1e565b80610b1681613725565b915050610a5e565b50600085815260028501602052604090819020805460ff1916905551632142170760e11b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342842e0e90610b8790309033908a9060040161373e565b600060405180830381600087803b158015610ba157600080fd5b505af1158015610bb5573d6000803e3d6000fd5b50506040518781523392507f2aa1b4c95f3b2da9c955947fca584743ea0d457708fadf209c093061e98c4ccb91506020015b60405180910390a250505050610bfc60018055565b50565b610c0761216a565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b630a85bd0160e11b5b949350505050565b610c466003600a6120f7565b565b610c506120a9565b610c586120d3565b8080600003610c7a5760405163162908e360e11b815260040160405180910390fd5b60215460ff1615610c9e576040516370a7336d60e11b815260040160405180910390fd5b610caa6003600a6120f7565b610cb382612197565b6000806000610cc66003600a8733612241565b925092509250610cd4612369565b60405183815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436490602001610be7565b610d0e6120a9565b610d166120d3565b8080600003610d385760405163162908e360e11b815260040160405180910390fd5b610d428233612498565b50610bfc60018055565b610d5461216a565b610c4661270e565b610d646120a9565b610d6c6120d3565b336000818152601c602052604090205460ff16610d9c5760405163013e5dc360e61b815260040160405180910390fd5b610da86003600a6120f7565b601b546001600160a01b0382166000908152601d6020526040902054610dce9190613762565b421115610dee57604051634b3c322760e11b815260040160405180910390fd5b6001600160a01b03811660009081526012602052604081206008548154919291610e2791600160801b90046001600160801b0316612101565b9050620f4240811115610e4d576040516312bf4cab60e01b815260040160405180910390fd5b6001600160a01b0383166000818152601c60209081526040808320805460ff19169055601d909152808220829055517fd064e6c9fd0298bfb6a6c78f373b38fa7919b5a8bb293642d693fcf8da6939119190a2505050610c4660018055565b610eb461216a565b601a819055601954601b5460408051928352602083018490528201527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf906060015b60405180910390a150565b610f0961216a565b6021805460ff191660019081179091556040519081527f0565da69314136ea081c6239b9813f6ef6d213f57210dfef1d470af55b0235f3906020015b60405180910390a1565b610f576120a9565b6018546001600160a01b03163314610f81576040516282b42960e81b815260040160405180910390fd5b6001600160a01b0381166000908152601c602052604090205460ff16610fba5760405163013e5dc360e61b815260040160405180910390fd5b610fc66003600a6120f7565b601b546001600160a01b0382166000908152601d6020526040902054610fec9190613762565b421161100b576040516363e5f12d60e11b815260040160405180910390fd5b6001600160a01b0381166000908152601260205260408120600854815491929161104491600160801b90046001600160801b0316612101565b6001600160a01b0384166000908152601c60209081526040808320805460ff19169055601d90915281208190559091505b600183015481101561115a576000836001018281548110611098576110986136f9565b600091825260208083209091015480835260028701909152604091829020805460ff1916905560185491516323b872dd60e01b81529092506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116926323b872dd926111149230921690869060040161373e565b600060405180830381600087803b15801561112e57600080fd5b505af1158015611142573d6000803e3d6000fd5b5050505050808061115290613725565b915050611075565b50611169600183016000613499565b600554600854604051637a94c56560e11b81526001600160a01b03868116600483015260248201859052600160801b9092046001600160801b03166044820152600092839283928392919091169063f5298aca906064016080604051808303816000875af11580156111df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112039190613775565b600354600454949850929650909450925061122d916001600160a01b03908116913391168761275b565b8186600001600082825461124191906136e6565b9091555050600783905561125a6003600a8660006127bb565b6018546001600160a01b0380891691167fbdf5d377ebdb51643ef3f7fc9c490a1d80027d15ba7518b1b4d07adb879da7e5876112958b61131f565b6040805192835260208301919091520160405180910390a3505050505050610bfc60018055565b6112c461216a565b601b819055601954601a5460408051928352602083019190915281018290527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf90606001610ef6565b61131561216a565b610c46600061290d565b6001600160a01b038116600090815260126020526040812081805b600183015481101561139857600083600101828154811061135d5761135d6136f9565b9060005260206000200154905060006113758261149f565b90506113818185613762565b93505050808061139090613725565b91505061133a565b509392505050565b6113a861216a565b6113b46003600a6120f7565b6001600160a01b0382166114255760405162461bcd60e51b815260206004820152602d60248201527f4c656e64696e67506f6f6c3a20526563697069656e742063616e6e6f7420626560448201526c207a65726f206164647265737360981b60648201526084015b60405180910390fd5b60035460405163768bab4560e01b81526001600160a01b038481166004830152602482018490529091169063768bab4590604401600060405180830381600087803b15801561147357600080fd5b505af1158015611487573d6000803e3d6000fd5b505050505050565b61149761216a565b610c4661295d565b60135460405163b94fe91760e01b815260048101839052600091829182916001600160a01b03169063b94fe917906024016040805180830381865afa1580156114ec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151091906137ab565b915091508160000361153557604051633b0c4c3160e11b815260040160405180910390fd5b5092915050565b61154461216a565b6001600160a01b03811661156b576040516303988b8160e61b815260040160405180910390fd5b6018546001600160a01b039081169082160361159a5760405163aba916dd60e01b815260040160405180910390fd5b601880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f593eaf5e0e1afc1c041a664a437fdae719a628836785d06572b008e6ca5c189d90600090a35050565b6115f461216a565b60188054821515600160a01b0260ff60a01b199091161790556040517f932a526fd95bf1b5aab775a957e284733f02db3a9824802cbcbb4fbca239cbe190610ef690831515815260200190565b60008061164d8361131f565b9050600061165a84611e2c565b9050600181101561167057506000199392505050565b60006116876019548461214490919063ffffffff16565b90508161169c82670de0b6b3a76400006137cf565b6116a691906137e6565b95945050505050565b6116b761216a565b6127108111156117095760405162461bcd60e51b815260206004820152601860248201527f526174696f2063616e6e6f742065786365656420313030250000000000000000604482015260640161141c565b601f80549082905560408051828152602081018490527fab45a8374e3d1f623df0e88a957317731ccc02ed377e5b0213661f85bf60b731910160405180910390a15050565b61175661216a565b6001600160a01b0381166117a45760405162461bcd60e51b8152602060048201526015602482015274496e76616c6964207661756c74206164647265737360581b604482015260640161141c565b601e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fef5b05cc6c55cf97d3b6bb45e1f74f62a2a1818e192b58a28dc4e304a7b5c9e090600090a35050565b6117fe6120a9565b6118066120d3565b6001600160a01b0381166000908152601c602052604090205460ff16156118405760405163b84f7eb560e01b815260040160405180910390fd5b61184c6003600a6120f7565b6001600160a01b03811660009081526012602052604081209061186e83611641565b9050601a5481106118925760405163317416e560e11b815260040160405180910390fd5b6001600160a01b0383166000818152601c60209081526040808320805460ff19166001179055601d9091528082204290555133917f5e05b3f7c0dbbace382bba3a2d956ef5e7abd61498e39cbf8bf1dc36cfe1083a91a35050610bfc60018055565b6118fc61216a565b601155565b6119096120a9565b6119116120d3565b80806000036119335760405163162908e360e11b815260040160405180910390fd5b61193f6003600a6120f7565b600061194f6003600a853361299a565b9050611959612369565b604080518481526020810183905233917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15910160405180910390a25050610bfc60018055565b6014546001600160a01b031633146119c9576040516282b42960e81b815260040160405180910390fd5b610bfc6003600a83612ade565b6119de6120a9565b6119e66120d3565b8080600003611a085760405163162908e360e11b815260040160405180910390fd5b336000908152601c602052604090205460ff1615611a3957604051630bff073160e31b815260040160405180910390fd5b33600081815260126020526040812091611a529061131f565b905080600003611a7557604051638dc8d9b360e01b815260040160405180910390fd5b611a816003600a6120f7565b611a8a84612197565b60085482546000918691611aad91600160801b90046001600160801b0316612101565b611ab79190613762565b9050611ace6019548261214490919063ffffffff16565b821015611aee57604051630369fbd160e51b815260040160405180910390fd5b600854600090611b0f908790600160801b90046001600160801b0316612bb7565b60055460085460405163b3f1c93d60e01b8152929350600092839283926001600160a01b039091169163b3f1c93d91611b6191339182918f91600160801b90046001600160801b031690600401613808565b6060604051808303816000875af1158015611b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba49190613839565b600354604051635c921eb960e01b8152336004820152602481018e905293965091945092506001600160a01b031690635c921eb990604401600060405180830381600087803b158015611bf657600080fd5b505af1158015611c0a573d6000803e3d6000fd5b5050505083876000016000828254611c229190613762565b90915550506007819055611c3b6003600a60008c6127bb565b611c43612369565b60405189815233907fcbc04eca7e9da35cb1393a6135a199ca52e450d5e9251cbd99f7847d33a367509060200160405180910390a25050505050505050610bfc60018055565b611c9161216a565b6019819055601a54601b546040805184815260208101939093528201527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf90606001610ef6565b611ce06120a9565b611ce86120d3565b8180600003611d0a5760405163162908e360e11b815260040160405180910390fd5b601854600160a01b900460ff16611d34576040516312cefcd560e31b815260040160405180910390fd5b6001600160a01b038216611d5b576040516303988b8160e61b815260040160405180910390fd5b611d658383612498565b50611d6f60018055565b5050565b611d7b61216a565b6021805460ff19169055604051600081527f0565da69314136ea081c6239b9813f6ef6d213f57210dfef1d470af55b0235f390602001610f45565b611dbe61216a565b6003546001600160a01b0390811690841603611e135760405162461bcd60e51b815260206004820152601460248201527321b0b73737ba103932b9b1bab290292a37b5b2b760611b604482015260640161141c565b611e276001600160a01b0384168383612bf4565b505050565b6001600160a01b03811660009081526012602052604081206008548154611e6291600160801b90046001600160801b0316612101565b9392505050565b611e716120a9565b611e796120d3565b611e856003600a6120f7565b6040516331a9108f60e11b81526004810182905233906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015611eec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f109190613870565b6001600160a01b031614611f37576040516384b359d160e01b815260040160405180910390fd5b336000908152601260209081526040808320848452600281019092529091205460ff1615611f785760405163e8edca8360e01b815260040160405180910390fd5b60018082018054808301825560009182526020808320909101859055848252600284019052604090819020805460ff191690921790915551632142170760e11b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342842e0e90611ffd9033903090879060040161373e565b600060405180830381600087803b15801561201757600080fd5b505af115801561202b573d6000803e3d6000fd5b50506040518481523392507f1c4b8380f61aea3d5d98cbadaf2e6b2e4f3d8ca8c0fce1290b26ac267158745f915060200160405180910390a250610bfc60018055565b61207661216a565b6001600160a01b0381166120a057604051631e4fbdf760e01b81526000600482015260240161141c565b610bfc8161290d565b6002600154036120cc57604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b60025460ff1615610c465760405163d93c066560e01b815260040160405180910390fd5b611d6f8282612c25565b600081156b019d971e4fe8401e74000000198390048411151761212357600080fd5b50676765c793fa10079d601b1b91026b019d971e4fe8401e74000000010490565b60008115611388198390048411151761215c57600080fd5b506127109102611388010490565b6000546001600160a01b03163314610c465760405163118cdaa760e01b815233600482015260240161141c565b601e546001600160a01b03166121aa5750565b600480546003546040516370a0823160e01b81526001600160a01b03918216938101939093526000929116906370a0823190602401602060405180830381865afa1580156121fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612220919061388d565b905081811015611d6f57600061223682846136e6565b9050611e2781612d57565b600080600060018510156122685760405163162908e360e11b815260040160405180910390fd5b6122728787612c25565b86546005880154604051636b81068560e11b8152600092839283926001600160a01b039092169163d7020d0a916122bb918b9182918e916001600160801b031690600401613808565b6060604051808303816000875af11580156122da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122fe91906138a6565b9250925092508295506123148a8a6000846127bb565b60408051828152602081018590526001600160a01b038916917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568910160405180910390a2999198508997509095505050505050565b601e546001600160a01b031661237b57565b600654601f5460009061238f908390612144565b600480546003546040516370a0823160e01b81526001600160a01b039182169381019390935292935060009216906370a0823190602401602060405180830381865afa1580156123e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612407919061388d565b90508181111561242e57600061241d83836136e6565b905061242881612e16565b5061244f565b8181101561244f57600061244282846136e6565b905061244d81612d57565b505b7f8f9497c27f572ff1a65e8b2c7a0706d466466ae0b5efc78462b5f0021da669568160205460405161248b929190918252602082015260400190565b60405180910390a1505050565b816000036124b95760405163162908e360e11b815260040160405180910390fd5b6001600160a01b0381166124e0576040516303988b8160e61b815260040160405180910390fd5b6001600160a01b03811660009081526012602052604090206125046003600a6120f7565b6005546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a0823190602401602060405180830381865afa15801561254f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612573919061388d565b600854909150600090612597908390600160801b90046001600160801b0316612bb7565b905060008186116125a857856125aa565b815b6008549091506000906125ce908390600160801b90046001600160801b0316612bb7565b600554600854604051637a94c56560e11b81526001600160a01b038a81166004830152602482018c9052600160801b9092046001600160801b0316604482015292935060009283928392839291169063f5298aca906064016080604051808303816000875af1158015612645573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126699190613775565b6003546004549498509296509094509250612693916001600160a01b03908116913391168761275b565b6007839055885482908a906000906126ac9084906136e6565b909155506126c190506003600a8660006127bb565b6040518681526001600160a01b038b169033907f05f2eeda0e08e4b437f487c8d7d29b14537d15e3488170dc3de5dbdf8dac46849060200160405180910390a35050505050505050505050565b612716612f1a565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b039091168152602001610f45565b6127b584856001600160a01b03166323b872dd8686866040516024016127839392919061373e565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050612f3d565b50505050565b81156127e8576127ca82612fa0565b6001600160801b031684600301546127e29190613762565b60038501555b801561283a5780846003015410156128135760405163bb55fd2760e01b815260040160405180910390fd5b61281c81612fa0565b6001600160801b0316846003015461283491906136e6565b60038501555b6003840154600485015460006128508787612fd8565b9050600061285e8888613043565b9050600061287489600301548a6004015461309e565b9050612898886002015489600301548a600401548b600501548c60060154866130ea565b6001890181905560078901546128b0918391876131d4565b88556128bc8989612c25565b875460018901546040517f48f4f83c2f1843e8fd7ef13ffcff40fca5055dc1b9b074cd9dd0f9a8a8e09dd9926128fa92908252602082015260400190565b60405180910390a1505050505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6129656120d3565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127433390565b600060018310156129be5760405163162908e360e11b815260040160405180910390fd5b6129c88585612c25565b845460018601546129e8916001600160a01b03918216913391168661275b565b8454600586015460405163b3f1c93d60e01b81526000928392839283926001600160a01b03169163b3f1c93d91612a339130918b918d916001600160801b0390911690600401613808565b6080604051808303816000875af1158015612a52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a7691906138d4565b9350935093509350829450612a8e89898960006127bb565b60408051888152602081018790526001600160a01b038816917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15910160405180910390a250505050949350505050565b6001811015612b005760405163824c180760e01b815260040160405180910390fd5b60028201548015612b63576000612b19826101f4612144565b90506000828411612b3357612b2e84846136e6565b612b3d565b612b3d83856136e6565b905081811115612b6057604051631a8b543360e21b815260040160405180910390fd5b50505b60028301829055612b7784846000806127bb565b60408051828152602081018490527fd45d1eb66419c036e2fa401916c7db417696f889cf4ab8ca92272327e8e1c83e91015b60405180910390a150505050565b60008115676765c793fa10079d601b1b60028404190484111715612bda57600080fd5b50676765c793fa10079d601b1b9190910260028204010490565b6040516001600160a01b03838116602483015260448201839052611e2791859182169063a9059cbb90606401612783565b6006820154600090612c3e9064ffffffffff16426136e6565b90506001811015612c4e57505050565b60058301546001600160801b03166001811015612c7e57604051630a1cf3ed60e21b815260040160405180910390fd5b82546005850154612c9a919084906001600160801b031661321b565b6005850180546fffffffffffffffffffffffffffffffff19166001600160801b0392831617908190556001850154612cde9290918591600160801b90910416613238565b6005850180546001600160801b03908116600160801b93821684028181179384905560068901805464ffffffffff19164264ffffffffff16179055604080519184169092178152939092041660208301527ff92a3abee06d57c996e7e19eb34560241fdc1fe67e9ebd503177710bf9fd82049101612ba9565b601e546001600160a01b031663d81a09f6823033600080604051908082528060200260200182016040528015612d97578160200160208202803683370190505b506040518663ffffffff1660e01b8152600401612db8959493929190613913565b6020604051808303816000875af1158015612dd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dfb919061388d565b508060206000828254612e0e91906136e6565b909155505050565b60048054601e5460405163095ea7b360e01b81526001600160a01b039182169381019390935260248301849052169063095ea7b3906044016020604051808303816000875af1158015612e6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e919190613984565b50601e54604051636e553f6560e01b8152600481018390523060248201526001600160a01b0390911690636e553f65906044016020604051808303816000875af1158015612ee3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f07919061388d565b508060206000828254612e0e9190613762565b60025460ff16610c4657604051638dfc202b60e01b815260040160405180910390fd5b6000612f526001600160a01b03841683613254565b90508051600014158015612f77575080806020019051810190612f759190613984565b155b15611e2757604051635274afe760e01b81526001600160a01b038416600482015260240161141c565b60006001600160801b03821115612fd4576040516306dfcc6560e41b8152608060048201526024810183905260440161141c565b5090565b60068201546000908190612ff39064ffffffffff16426136e6565b9050600181101561300a575050600482015461303d565b6005840154600184015461303991600160801b90046001600160801b0316906130339084613262565b90612101565b9150505b92915050565b6006820154600090819061305e9064ffffffffff16426136e6565b9050600181101561307e57505060058201546001600160801b031661303d565b60058401548354613039916001600160801b031690613033908483613352565b600060018310156130bb5750676765c793fa10079d601b1b61303d565b60006130d96130d46130cd8587613762565b8590612bb7565b612fa0565b6001600160801b0316949350505050565b600085871115806130fb5750838710155b806131065750858511155b806131115750838510155b1561312f5760405163abc83fed60e01b815260040160405180910390fd5b6000838311613171576000613144888a6136e6565b9050600061315c866131568785612101565b90612bb7565b9050613168818a613762565b925050506131c9565b600061317d85856136e6565b9050600061319686676765c793fa10079d601b1b6136e6565b905060006131a48b896136e6565b905060006131b6836131568685612101565b90506131c2818d613762565b9450505050505b979650505050505050565b600060018210156131e757506000610c32565b60006131f38686612101565b905060006132018286612101565b9050600061320f82846136e6565b98975050505050505050565b600080613229858585613352565b90506116a66130d48285612101565b6000806132458585613262565b90506116a66130d48483612101565b6060611e6283836000613386565b6000600182101561327f5750676765c793fa10079d601b1b61303d565b600061328f846301e13380612bb7565b9050600061329d8285612101565b9050600060786132b583613033818181818180612101565b6132bf91906137e6565b60186132d18461303381818180612101565b6132db91906137e6565b60066132eb856130338180612101565b6132f591906137e6565b60026133018680612101565b61330b91906137e6565b61332086676765c793fa10079d601b1b613762565b61332a9190613762565b6133349190613762565b61333e9190613762565b6133489190613762565b9695505050505050565b60008061335f84866137cf565b905061336f6301e13380826137e6565b90506116a681676765c793fa10079d601b1b613762565b6060814710156133ab5760405163cd78605960e01b815230600482015260240161141c565b600080856001600160a01b031684866040516133c791906139a1565b60006040518083038185875af1925050503d8060008114613404576040519150601f19603f3d011682016040523d82523d6000602084013e613409565b606091505b50915091506133488683836060826134295761342482613470565b611e62565b815115801561344057506001600160a01b0384163b155b1561346957604051639996b31560e01b81526001600160a01b038516600482015260240161141c565b5080611e62565b8051156134805780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5080546000825590600052602060002090810190610bfc91905b80821115612fd457600081556001016134b3565b6000602082840312156134d957600080fd5b5035919050565b6001600160a01b0381168114610bfc57600080fd5b60006020828403121561350757600080fd5b8135611e62816134e0565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561353e57600080fd5b8435613549816134e0565b93506020850135613559816134e0565b925060408501359150606085013567ffffffffffffffff8082111561357d57600080fd5b818701915087601f83011261359157600080fd5b8135818111156135a3576135a3613512565b604051601f8201601f19908116603f011681019083821181831017156135cb576135cb613512565b816040528281528a60208487010111156135e457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561361b57600080fd5b8235613626816134e0565b946020939093013593505050565b8015158114610bfc57600080fd5b60006020828403121561365457600080fd5b8135611e6281613634565b6000806040838503121561367257600080fd5b823591506020830135613684816134e0565b809150509250929050565b6000806000606084860312156136a457600080fd5b83356136af816134e0565b925060208401356136bf816134e0565b929592945050506040919091013590565b634e487b7160e01b600052601160045260246000fd5b8181038181111561303d5761303d6136d0565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600060018201613737576137376136d0565b5060010190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b8082018082111561303d5761303d6136d0565b6000806000806080858703121561378b57600080fd5b505082516020840151604085015160609095015191969095509092509050565b600080604083850312156137be57600080fd5b505080516020909101519092909150565b808202811582820484141761303d5761303d6136d0565b60008261380357634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b03948516815292909316602083015260408201526001600160801b03909116606082015260800190565b60008060006060848603121561384e57600080fd5b835161385981613634565b602085015160409095015190969495509392505050565b60006020828403121561388257600080fd5b8151611e62816134e0565b60006020828403121561389f57600080fd5b5051919050565b6000806000606084860312156138bb57600080fd5b8351925060208401519150604084015190509250925092565b600080600080608085870312156138ea57600080fd5b84516138f581613634565b60208601516040870151606090970151919890975090945092505050565b600060a08201878352602060018060a01b0380891682860152808816604086015286606086015260a0608086015282865180855260c087019150838801945060005b81811015613973578551841683529484019491840191600101613955565b50909b9a5050505050505050505050565b60006020828403121561399657600080fd5b8151611e6281613634565b6000825160005b818110156139c257602081860181015185830152016139a8565b50600092019182525091905056fea26469706673582212206d0d41c2824bd30a3df2a53fb163bd5a7f440f6b58d375d3af81c8657ea3178a64736f6c63430008140033",
|
|
1721
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106103ba5760003560e01c80638da5cb5b116101f4578063c4f8911c1161011a578063e5711e8b116100ad578063ec915ee61161007c578063ec915ee6146108bc578063f2fde38b1461091d578063f8d8989814610930578063fbf4a6121461094357600080fd5b8063e5711e8b14610876578063e65896c914610889578063e91a7ca61461089c578063e9f2838e146108af57600080fd5b8063d0b0c816116100e9578063d0b0c81614610835578063d5db7d5d14610848578063d6d6b1071461085b578063e4c4be581461086e57600080fd5b8063c4f8911c14610718578063c5ebeaec1461072b578063c89109131461073e578063cd3293de1461078b57600080fd5b8063a1c317fd11610192578063b13aa2d611610161578063b13aa2d6146106bf578063b6b55f25146106d2578063bbcb15c2146106e5578063c23c69d5146106f857600080fd5b8063a1c317fd1461065f578063a8a0879514610672578063a9bf805c14610685578063ac919fd41461069857600080fd5b806398d721e0116101ce57806398d721e01461061357806399aaae3e146106265780639ce625f714610639578063a17a2d561461064c57600080fd5b80638da5cb5b146105cc57806392976179146105dd5780639523b910146105f057600080fd5b80633f4ba83a116102e45780635c975abb11610277578063768bab4511610246578063768bab45146105985780637bc7780b146105ab5780638456cb59146105b3578063883c6b24146105bb57600080fd5b80635c975abb1461055f5780636b58359e1461056a578063715018a61461057d57806375417da61461058557600080fd5b806340c65f72116102b357806340c65f721461051e578063498831941461053157806356bb54a7146105445780635a81acd41461054c57600080fd5b80633f4ba83a146104fc5780633ff78a74146105045780634010e5d41461050c5780634031234c1461051557600080fd5b8063150b7a021161035c5780632630c12f1161032b5780632630c12f1461049f5780632e1a7d4d146104b2578063371fd8e6146104c55780633e20bf14146104d857600080fd5b8063150b7a021461045957806316a6c4c5146104855780631705ffad1461048e5780631d8557d71461049757600080fd5b806309bf1e731161039857806309bf1e731461041b5780630ab30d8a146104255780630c42dcaf1461043d5780630c679a7b1461044657600080fd5b8063023245d7146103bf578063048c661d146103d4578063057e9b7b14610404575b600080fd5b6103d26103cd3660046134c7565b610952565b005b6018546103e7906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b61040d601a5481565b6040519081526020016103fb565b61040d6203f48081565b600854600160801b90046001600160801b031661040d565b61040d611f4081565b6103d26104543660046134f5565b610bff565b61046c610467366004613528565b610c29565b6040516001600160e01b031990911681526020016103fb565b61040d601b5481565b61040d601f5481565b6103d2610c3a565b6013546103e7906001600160a01b031681565b6103d26104c03660046134c7565b610c48565b6103d26104d33660046134c7565b610d06565b6018546104ec90600160a01b900460ff1681565b60405190151581526020016103fb565b6103d2610d4c565b6103d2610d5c565b61040d60205481565b61040d60195481565b6016546103e7906001600160a01b031681565b6103d261053f3660046134c7565b610eac565b6103d2610f01565b6103d261055a3660046134f5565b610f4f565b60025460ff166104ec565b6103d26105783660046134c7565b6112bc565b6103d261130d565b61040d6105933660046134f5565b61131f565b6103d26105a6366004613608565b6113a0565b600c5461040d565b6103d261148f565b6008546001600160801b031661040d565b6000546001600160a01b03166103e7565b61040d6105eb3660046134c7565b61149f565b6104ec6105fe3660046134f5565b601c6020526000908152604090205460ff1681565b6103d26106213660046134f5565b61153c565b6103d2610634366004613642565b6115ec565b61040d6106473660046134f5565b611641565b6103d261065a3660046134c7565b6116af565b6103d261066d3660046134f5565b61174e565b6103d26106803660046134f5565b6117f6565b6014546103e7906001600160a01b031681565b6103e77f000000000000000000000000000000000000000000000000000000000000000081565b6103d26106cd3660046134c7565b6118f4565b6103d26106e03660046134c7565b611901565b601e546103e7906001600160a01b031681565b61040d6107063660046134f5565b601d6020526000908152604090205481565b6103d26107263660046134c7565b61199f565b6103d26107393660046134c7565b6119d6565b61077061074c3660046134f5565b601260205260009081526040902080546003820154600490920154909160ff169083565b604080519384529115156020840152908201526060016103fb565b6003546004546005546006546007546008546009546107d7966001600160a01b0390811696811695169392916001600160801b0380821692600160801b909204169064ffffffffff1688565b604080516001600160a01b03998a16815297891660208901529590971694860194909452606085019290925260808401526001600160801b0390811660a08401521660c082015264ffffffffff90911660e0820152610100016103fb565b6103d26108433660046134c7565b611c89565b6015546103e7906001600160a01b031681565b6103d261086936600461365f565b611cd8565b6103d2611d73565b6103d261088436600461368f565b611db6565b61040d6108973660046134f5565b611e2c565b6103d26108aa3660046134c7565b611e69565b6021546104ec9060ff1681565b600a54600b54600c54600d54600e54600f546010546011546108e2979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016103fb565b6103d261092b3660046134f5565b61206e565b6017546103e7906001600160a01b031681565b61040d670de0b6b3a764000081565b61095a6120a9565b6109626120d3565b336000908152601c602052604090205460ff1615610993576040516367c11db560e01b815260040160405180910390fd5b336000908152601260209081526040808320848452600281019092529091205460ff166109d35760405163346fad7360e01b815260040160405180910390fd5b6109df6003600a6120f7565b6008548154600091610a019190600160801b90046001600160801b0316612101565b90506000610a0e3361131f565b90506000610a1b8561149f565b9050610a326019548461214490919063ffffffff16565b610a3c82846136e6565b1015610a5b576040516302c9375f60e21b815260040160405180910390fd5b60005b6001850154811015610b1e5785856001018281548110610a8057610a806136f9565b906000526020600020015403610b0c57600180860180549091610aa2916136e6565b81548110610ab257610ab26136f9565b9060005260206000200154856001018281548110610ad257610ad26136f9565b60009182526020909120015560018501805480610af157610af161370f565b60019003818190600052602060002001600090559055610b1e565b80610b1681613725565b915050610a5e565b50600085815260028501602052604090819020805460ff1916905551632142170760e11b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342842e0e90610b8790309033908a9060040161373e565b600060405180830381600087803b158015610ba157600080fd5b505af1158015610bb5573d6000803e3d6000fd5b50506040518781523392507f2aa1b4c95f3b2da9c955947fca584743ea0d457708fadf209c093061e98c4ccb91506020015b60405180910390a250505050610bfc60018055565b50565b610c0761216a565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b630a85bd0160e11b5b949350505050565b610c466003600a6120f7565b565b610c506120a9565b610c586120d3565b8080600003610c7a5760405163162908e360e11b815260040160405180910390fd5b60215460ff1615610c9e576040516370a7336d60e11b815260040160405180910390fd5b610caa6003600a6120f7565b610cb382612197565b6000806000610cc66003600a8733612241565b925092509250610cd4612369565b60405183815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436490602001610be7565b610d0e6120a9565b610d166120d3565b8080600003610d385760405163162908e360e11b815260040160405180910390fd5b610d428233612498565b50610bfc60018055565b610d5461216a565b610c4661270e565b610d646120a9565b610d6c6120d3565b336000818152601c602052604090205460ff16610d9c5760405163013e5dc360e61b815260040160405180910390fd5b610da86003600a6120f7565b601b546001600160a01b0382166000908152601d6020526040902054610dce9190613762565b421115610dee57604051634b3c322760e11b815260040160405180910390fd5b6001600160a01b03811660009081526012602052604081206008548154919291610e2791600160801b90046001600160801b0316612101565b9050620f4240811115610e4d576040516312bf4cab60e01b815260040160405180910390fd5b6001600160a01b0383166000818152601c60209081526040808320805460ff19169055601d909152808220829055517fd064e6c9fd0298bfb6a6c78f373b38fa7919b5a8bb293642d693fcf8da6939119190a2505050610c4660018055565b610eb461216a565b601a819055601954601b5460408051928352602083018490528201527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf906060015b60405180910390a150565b610f0961216a565b6021805460ff191660019081179091556040519081527f0565da69314136ea081c6239b9813f6ef6d213f57210dfef1d470af55b0235f3906020015b60405180910390a1565b610f576120a9565b6018546001600160a01b03163314610f81576040516282b42960e81b815260040160405180910390fd5b6001600160a01b0381166000908152601c602052604090205460ff16610fba5760405163013e5dc360e61b815260040160405180910390fd5b610fc66003600a6120f7565b601b546001600160a01b0382166000908152601d6020526040902054610fec9190613762565b421161100b576040516363e5f12d60e11b815260040160405180910390fd5b6001600160a01b0381166000908152601260205260408120600854815491929161104491600160801b90046001600160801b0316612101565b6001600160a01b0384166000908152601c60209081526040808320805460ff19169055601d90915281208190559091505b600183015481101561115a576000836001018281548110611098576110986136f9565b600091825260208083209091015480835260028701909152604091829020805460ff1916905560185491516323b872dd60e01b81529092506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116926323b872dd926111149230921690869060040161373e565b600060405180830381600087803b15801561112e57600080fd5b505af1158015611142573d6000803e3d6000fd5b5050505050808061115290613725565b915050611075565b50611169600183016000613499565b600554600854604051637a94c56560e11b81526001600160a01b03868116600483015260248201859052600160801b9092046001600160801b03166044820152600092839283928392919091169063f5298aca906064016080604051808303816000875af11580156111df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112039190613775565b600354600454949850929650909450925061122d916001600160a01b03908116913391168761275b565b8186600001600082825461124191906136e6565b9091555050600783905561125a6003600a8660006127bb565b6018546001600160a01b0380891691167fbdf5d377ebdb51643ef3f7fc9c490a1d80027d15ba7518b1b4d07adb879da7e5876112958b61131f565b6040805192835260208301919091520160405180910390a3505050505050610bfc60018055565b6112c461216a565b601b819055601954601a5460408051928352602083019190915281018290527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf90606001610ef6565b61131561216a565b610c46600061290d565b6001600160a01b038116600090815260126020526040812081805b600183015481101561139857600083600101828154811061135d5761135d6136f9565b9060005260206000200154905060006113758261149f565b90506113818185613762565b93505050808061139090613725565b91505061133a565b509392505050565b6113a861216a565b6113b46003600a6120f7565b6001600160a01b0382166114255760405162461bcd60e51b815260206004820152602d60248201527f4c656e64696e67506f6f6c3a20526563697069656e742063616e6e6f7420626560448201526c207a65726f206164647265737360981b60648201526084015b60405180910390fd5b60035460405163768bab4560e01b81526001600160a01b038481166004830152602482018490529091169063768bab4590604401600060405180830381600087803b15801561147357600080fd5b505af1158015611487573d6000803e3d6000fd5b505050505050565b61149761216a565b610c4661295d565b60135460405163b94fe91760e01b815260048101839052600091829182916001600160a01b03169063b94fe917906024016040805180830381865afa1580156114ec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151091906137ab565b915091508160000361153557604051633b0c4c3160e11b815260040160405180910390fd5b5092915050565b61154461216a565b6001600160a01b03811661156b576040516303988b8160e61b815260040160405180910390fd5b6018546001600160a01b039081169082160361159a5760405163aba916dd60e01b815260040160405180910390fd5b601880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f593eaf5e0e1afc1c041a664a437fdae719a628836785d06572b008e6ca5c189d90600090a35050565b6115f461216a565b60188054821515600160a01b0260ff60a01b199091161790556040517f932a526fd95bf1b5aab775a957e284733f02db3a9824802cbcbb4fbca239cbe190610ef690831515815260200190565b60008061164d8361131f565b9050600061165a84611e2c565b9050600181101561167057506000199392505050565b60006116876019548461214490919063ffffffff16565b90508161169c82670de0b6b3a76400006137cf565b6116a691906137e6565b95945050505050565b6116b761216a565b6127108111156117095760405162461bcd60e51b815260206004820152601860248201527f526174696f2063616e6e6f742065786365656420313030250000000000000000604482015260640161141c565b601f80549082905560408051828152602081018490527fab45a8374e3d1f623df0e88a957317731ccc02ed377e5b0213661f85bf60b731910160405180910390a15050565b61175661216a565b6001600160a01b0381166117a45760405162461bcd60e51b8152602060048201526015602482015274496e76616c6964207661756c74206164647265737360581b604482015260640161141c565b601e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fef5b05cc6c55cf97d3b6bb45e1f74f62a2a1818e192b58a28dc4e304a7b5c9e090600090a35050565b6117fe6120a9565b6118066120d3565b6001600160a01b0381166000908152601c602052604090205460ff16156118405760405163b84f7eb560e01b815260040160405180910390fd5b61184c6003600a6120f7565b6001600160a01b03811660009081526012602052604081209061186e83611641565b9050601a5481106118925760405163317416e560e11b815260040160405180910390fd5b6001600160a01b0383166000818152601c60209081526040808320805460ff19166001179055601d9091528082204290555133917f5e05b3f7c0dbbace382bba3a2d956ef5e7abd61498e39cbf8bf1dc36cfe1083a91a35050610bfc60018055565b6118fc61216a565b601155565b6119096120a9565b6119116120d3565b80806000036119335760405163162908e360e11b815260040160405180910390fd5b61193f6003600a6120f7565b600061194f6003600a853361299a565b9050611959612369565b604080518481526020810183905233917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15910160405180910390a25050610bfc60018055565b6014546001600160a01b031633146119c9576040516282b42960e81b815260040160405180910390fd5b610bfc6003600a83612ade565b6119de6120a9565b6119e66120d3565b8080600003611a085760405163162908e360e11b815260040160405180910390fd5b336000908152601c602052604090205460ff1615611a3957604051630bff073160e31b815260040160405180910390fd5b33600081815260126020526040812091611a529061131f565b905080600003611a7557604051638dc8d9b360e01b815260040160405180910390fd5b611a816003600a6120f7565b611a8a84612197565b60085482546000918691611aad91600160801b90046001600160801b0316612101565b611ab79190613762565b9050611ace6019548261214490919063ffffffff16565b821015611aee57604051630369fbd160e51b815260040160405180910390fd5b600854600090611b0f908790600160801b90046001600160801b0316612bb7565b60055460085460405163b3f1c93d60e01b8152929350600092839283926001600160a01b039091169163b3f1c93d91611b6191339182918f91600160801b90046001600160801b031690600401613808565b6060604051808303816000875af1158015611b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba49190613839565b600354604051635c921eb960e01b8152336004820152602481018e905293965091945092506001600160a01b031690635c921eb990604401600060405180830381600087803b158015611bf657600080fd5b505af1158015611c0a573d6000803e3d6000fd5b5050505083876000016000828254611c229190613762565b90915550506007819055611c3b6003600a60008c6127bb565b611c43612369565b60405189815233907fcbc04eca7e9da35cb1393a6135a199ca52e450d5e9251cbd99f7847d33a367509060200160405180910390a25050505050505050610bfc60018055565b611c9161216a565b6019819055601a54601b546040805184815260208101939093528201527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf90606001610ef6565b611ce06120a9565b611ce86120d3565b8180600003611d0a5760405163162908e360e11b815260040160405180910390fd5b601854600160a01b900460ff16611d34576040516312cefcd560e31b815260040160405180910390fd5b6001600160a01b038216611d5b576040516303988b8160e61b815260040160405180910390fd5b611d658383612498565b50611d6f60018055565b5050565b611d7b61216a565b6021805460ff19169055604051600081527f0565da69314136ea081c6239b9813f6ef6d213f57210dfef1d470af55b0235f390602001610f45565b611dbe61216a565b6003546001600160a01b0390811690841603611e135760405162461bcd60e51b815260206004820152601460248201527321b0b73737ba103932b9b1bab290292a37b5b2b760611b604482015260640161141c565b611e276001600160a01b0384168383612bf4565b505050565b6001600160a01b03811660009081526012602052604081206008548154611e6291600160801b90046001600160801b0316612101565b9392505050565b611e716120a9565b611e796120d3565b611e856003600a6120f7565b6040516331a9108f60e11b81526004810182905233906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015611eec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f109190613870565b6001600160a01b031614611f37576040516384b359d160e01b815260040160405180910390fd5b336000908152601260209081526040808320848452600281019092529091205460ff1615611f785760405163e8edca8360e01b815260040160405180910390fd5b60018082018054808301825560009182526020808320909101859055848252600284019052604090819020805460ff191690921790915551632142170760e11b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342842e0e90611ffd9033903090879060040161373e565b600060405180830381600087803b15801561201757600080fd5b505af115801561202b573d6000803e3d6000fd5b50506040518481523392507f1c4b8380f61aea3d5d98cbadaf2e6b2e4f3d8ca8c0fce1290b26ac267158745f915060200160405180910390a250610bfc60018055565b61207661216a565b6001600160a01b0381166120a057604051631e4fbdf760e01b81526000600482015260240161141c565b610bfc8161290d565b6002600154036120cc57604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b60025460ff1615610c465760405163d93c066560e01b815260040160405180910390fd5b611d6f8282612c25565b600081156b019d971e4fe8401e74000000198390048411151761212357600080fd5b50676765c793fa10079d601b1b91026b019d971e4fe8401e74000000010490565b60008115611388198390048411151761215c57600080fd5b506127109102611388010490565b6000546001600160a01b03163314610c465760405163118cdaa760e01b815233600482015260240161141c565b601e546001600160a01b03166121aa5750565b600480546003546040516370a0823160e01b81526001600160a01b03918216938101939093526000929116906370a0823190602401602060405180830381865afa1580156121fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612220919061388d565b905081811015611d6f57600061223682846136e6565b9050611e2781612d57565b600080600060018510156122685760405163162908e360e11b815260040160405180910390fd5b6122728787612c25565b86546005880154604051636b81068560e11b8152600092839283926001600160a01b039092169163d7020d0a916122bb918b9182918e916001600160801b031690600401613808565b6060604051808303816000875af11580156122da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122fe91906138a6565b9250925092508295506123148a8a6000846127bb565b60408051828152602081018590526001600160a01b038916917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568910160405180910390a2999198508997509095505050505050565b601e546001600160a01b031661237b57565b600654601f5460009061238f908390612144565b600480546003546040516370a0823160e01b81526001600160a01b039182169381019390935292935060009216906370a0823190602401602060405180830381865afa1580156123e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612407919061388d565b90508181111561242e57600061241d83836136e6565b905061242881612e16565b5061244f565b8181101561244f57600061244282846136e6565b905061244d81612d57565b505b7f8f9497c27f572ff1a65e8b2c7a0706d466466ae0b5efc78462b5f0021da669568160205460405161248b929190918252602082015260400190565b60405180910390a1505050565b816000036124b95760405163162908e360e11b815260040160405180910390fd5b6001600160a01b0381166124e0576040516303988b8160e61b815260040160405180910390fd5b6001600160a01b03811660009081526012602052604090206125046003600a6120f7565b6005546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a0823190602401602060405180830381865afa15801561254f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612573919061388d565b600854909150600090612597908390600160801b90046001600160801b0316612bb7565b905060008186116125a857856125aa565b815b6008549091506000906125ce908390600160801b90046001600160801b0316612bb7565b600554600854604051637a94c56560e11b81526001600160a01b038a81166004830152602482018c9052600160801b9092046001600160801b0316604482015292935060009283928392839291169063f5298aca906064016080604051808303816000875af1158015612645573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126699190613775565b6003546004549498509296509094509250612693916001600160a01b03908116913391168761275b565b6007839055885482908a906000906126ac9084906136e6565b909155506126c190506003600a8660006127bb565b6040518681526001600160a01b038b169033907f05f2eeda0e08e4b437f487c8d7d29b14537d15e3488170dc3de5dbdf8dac46849060200160405180910390a35050505050505050505050565b612716612f1a565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b039091168152602001610f45565b6127b584856001600160a01b03166323b872dd8686866040516024016127839392919061373e565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050612f3d565b50505050565b81156127e8576127ca82612fa0565b6001600160801b031684600301546127e29190613762565b60038501555b801561283a5780846003015410156128135760405163bb55fd2760e01b815260040160405180910390fd5b61281c81612fa0565b6001600160801b0316846003015461283491906136e6565b60038501555b6003840154600485015460006128508787612fd8565b9050600061285e8888613043565b9050600061287489600301548a6004015461309e565b9050612898886002015489600301548a600401548b600501548c60060154866130ea565b6001890181905560078901546128b0918391876131d4565b88556128bc8989612c25565b875460018901546040517f48f4f83c2f1843e8fd7ef13ffcff40fca5055dc1b9b074cd9dd0f9a8a8e09dd9926128fa92908252602082015260400190565b60405180910390a1505050505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6129656120d3565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127433390565b600060018310156129be5760405163162908e360e11b815260040160405180910390fd5b6129c88585612c25565b845460018601546129e8916001600160a01b03918216913391168661275b565b8454600586015460405163b3f1c93d60e01b81526000928392839283926001600160a01b03169163b3f1c93d91612a339130918b918d916001600160801b0390911690600401613808565b6080604051808303816000875af1158015612a52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a7691906138d4565b9350935093509350829450612a8e89898960006127bb565b60408051888152602081018790526001600160a01b038816917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15910160405180910390a250505050949350505050565b6001811015612b005760405163824c180760e01b815260040160405180910390fd5b60028201548015612b63576000612b19826101f4612144565b90506000828411612b3357612b2e84846136e6565b612b3d565b612b3d83856136e6565b905081811115612b6057604051631a8b543360e21b815260040160405180910390fd5b50505b60028301829055612b7784846000806127bb565b60408051828152602081018490527fd45d1eb66419c036e2fa401916c7db417696f889cf4ab8ca92272327e8e1c83e91015b60405180910390a150505050565b60008115676765c793fa10079d601b1b60028404190484111715612bda57600080fd5b50676765c793fa10079d601b1b9190910260028204010490565b6040516001600160a01b03838116602483015260448201839052611e2791859182169063a9059cbb90606401612783565b6006820154600090612c3e9064ffffffffff16426136e6565b90506001811015612c4e57505050565b60058301546001600160801b03166001811015612c7e57604051630a1cf3ed60e21b815260040160405180910390fd5b82546005850154612c9a919084906001600160801b031661321b565b6005850180546fffffffffffffffffffffffffffffffff19166001600160801b0392831617908190556001850154612cde9290918591600160801b90910416613238565b6005850180546001600160801b03908116600160801b93821684028181179384905560068901805464ffffffffff19164264ffffffffff16179055604080519184169092178152939092041660208301527ff92a3abee06d57c996e7e19eb34560241fdc1fe67e9ebd503177710bf9fd82049101612ba9565b601e546001600160a01b031663d81a09f6823033600080604051908082528060200260200182016040528015612d97578160200160208202803683370190505b506040518663ffffffff1660e01b8152600401612db8959493929190613913565b6020604051808303816000875af1158015612dd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dfb919061388d565b508060206000828254612e0e91906136e6565b909155505050565b60048054601e5460405163095ea7b360e01b81526001600160a01b039182169381019390935260248301849052169063095ea7b3906044016020604051808303816000875af1158015612e6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e919190613984565b50601e54604051636e553f6560e01b8152600481018390523060248201526001600160a01b0390911690636e553f65906044016020604051808303816000875af1158015612ee3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f07919061388d565b508060206000828254612e0e9190613762565b60025460ff16610c4657604051638dfc202b60e01b815260040160405180910390fd5b6000612f526001600160a01b03841683613254565b90508051600014158015612f77575080806020019051810190612f759190613984565b155b15611e2757604051635274afe760e01b81526001600160a01b038416600482015260240161141c565b60006001600160801b03821115612fd4576040516306dfcc6560e41b8152608060048201526024810183905260440161141c565b5090565b60068201546000908190612ff39064ffffffffff16426136e6565b9050600181101561300a575050600482015461303d565b6005840154600184015461303991600160801b90046001600160801b0316906130339084613262565b90612101565b9150505b92915050565b6006820154600090819061305e9064ffffffffff16426136e6565b9050600181101561307e57505060058201546001600160801b031661303d565b60058401548354613039916001600160801b031690613033908483613352565b600060018310156130bb5750676765c793fa10079d601b1b61303d565b60006130d96130d46130cd8587613762565b8590612bb7565b612fa0565b6001600160801b0316949350505050565b600085871115806130fb5750838710155b806131065750858511155b806131115750838510155b1561312f5760405163abc83fed60e01b815260040160405180910390fd5b6000838311613171576000613144888a6136e6565b9050600061315c866131568785612101565b90612bb7565b9050613168818a613762565b925050506131c9565b600061317d85856136e6565b9050600061319686676765c793fa10079d601b1b6136e6565b905060006131a48b896136e6565b905060006131b6836131568685612101565b90506131c2818d613762565b9450505050505b979650505050505050565b600060018210156131e757506000610c32565b60006131f38686612101565b905060006132018286612101565b9050600061320f82846136e6565b98975050505050505050565b600080613229858585613352565b90506116a66130d48285612101565b6000806132458585613262565b90506116a66130d48483612101565b6060611e6283836000613386565b6000600182101561327f5750676765c793fa10079d601b1b61303d565b600061328f846301e13380612bb7565b9050600061329d8285612101565b9050600060786132b583613033818181818180612101565b6132bf91906137e6565b60186132d18461303381818180612101565b6132db91906137e6565b60066132eb856130338180612101565b6132f591906137e6565b60026133018680612101565b61330b91906137e6565b61332086676765c793fa10079d601b1b613762565b61332a9190613762565b6133349190613762565b61333e9190613762565b6133489190613762565b9695505050505050565b60008061335f84866137cf565b905061336f6301e13380826137e6565b90506116a681676765c793fa10079d601b1b613762565b6060814710156133ab5760405163cd78605960e01b815230600482015260240161141c565b600080856001600160a01b031684866040516133c791906139a1565b60006040518083038185875af1925050503d8060008114613404576040519150601f19603f3d011682016040523d82523d6000602084013e613409565b606091505b50915091506133488683836060826134295761342482613470565b611e62565b815115801561344057506001600160a01b0384163b155b1561346957604051639996b31560e01b81526001600160a01b038516600482015260240161141c565b5080611e62565b8051156134805780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5080546000825590600052602060002090810190610bfc91905b80821115612fd457600081556001016134b3565b6000602082840312156134d957600080fd5b5035919050565b6001600160a01b0381168114610bfc57600080fd5b60006020828403121561350757600080fd5b8135611e62816134e0565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561353e57600080fd5b8435613549816134e0565b93506020850135613559816134e0565b925060408501359150606085013567ffffffffffffffff8082111561357d57600080fd5b818701915087601f83011261359157600080fd5b8135818111156135a3576135a3613512565b604051601f8201601f19908116603f011681019083821181831017156135cb576135cb613512565b816040528281528a60208487010111156135e457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561361b57600080fd5b8235613626816134e0565b946020939093013593505050565b8015158114610bfc57600080fd5b60006020828403121561365457600080fd5b8135611e6281613634565b6000806040838503121561367257600080fd5b823591506020830135613684816134e0565b809150509250929050565b6000806000606084860312156136a457600080fd5b83356136af816134e0565b925060208401356136bf816134e0565b929592945050506040919091013590565b634e487b7160e01b600052601160045260246000fd5b8181038181111561303d5761303d6136d0565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600060018201613737576137376136d0565b5060010190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b8082018082111561303d5761303d6136d0565b6000806000806080858703121561378b57600080fd5b505082516020840151604085015160609095015191969095509092509050565b600080604083850312156137be57600080fd5b505080516020909101519092909150565b808202811582820484141761303d5761303d6136d0565b60008261380357634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b03948516815292909316602083015260408201526001600160801b03909116606082015260800190565b60008060006060848603121561384e57600080fd5b835161385981613634565b602085015160409095015190969495509392505050565b60006020828403121561388257600080fd5b8151611e62816134e0565b60006020828403121561389f57600080fd5b5051919050565b6000806000606084860312156138bb57600080fd5b8351925060208401519150604084015190509250925092565b600080600080608085870312156138ea57600080fd5b84516138f581613634565b60208601516040870151606090970151919890975090945092505050565b600060a08201878352602060018060a01b0380891682860152808816604086015286606086015260a0608086015282865180855260c087019150838801945060005b81811015613973578551841683529484019491840191600101613955565b50909b9a5050505050505050505050565b60006020828403121561399657600080fd5b8151611e6281613634565b6000825160005b818110156139c257602081860181015185830152016139a8565b50600092019182525091905056fea26469706673582212206d0d41c2824bd30a3df2a53fb163bd5a7f440f6b58d375d3af81c8657ea3178a64736f6c63430008140033",
|
|
1722
|
+
"linkReferences": {},
|
|
1723
|
+
"deployedLinkReferences": {}
|
|
1724
|
+
}
|