@raac/rpc 1.0.2-beta.2 → 1.0.2-beta.3
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/RPCLibrary.ts +449 -0
- package/assets/getAsset.ts +28 -0
- package/assets/getAssets.ts +30 -0
- package/assets/getSupply.ts +23 -0
- package/configs/chains/11155111.json +132 -0
- package/configs/chains/17000.json +128 -0
- package/configs/chains/8453.json +128 -0
- package/configs/chains/chain.d.ts +95 -0
- package/configs/chains/index.ts +17 -0
- package/configs/chains/list.json +1 -0
- package/configs/createConfig.ts +97 -0
- package/configs/index.ts +51 -0
- package/contracts/crvUSDToken/getBalance.ts +23 -0
- package/contracts/crvUSDToken/getTotalSupply.ts +36 -0
- package/contracts/feeCollector/claimRewardFromPool.ts +33 -0
- package/contracts/getContract.ts +21 -0
- package/contracts/getContractAddress.ts +61 -0
- package/contracts/housePrices/getLatestPrice.ts +38 -0
- package/contracts/housePrices/setOracle.ts +40 -0
- package/contracts/indexToken/getNextRandomNFT.ts +38 -0
- package/contracts/indexToken/redeemNFT.ts +65 -0
- package/contracts/rcrvUSDToken/getBalance.ts +23 -0
- package/contracts/rcrvUSDToken/getTotalSupply.ts +39 -0
- package/contracts/zeno/createAuction.ts +57 -0
- package/contracts/zeno/createZeno.ts +47 -0
- package/contracts/zeno/getAuctions.ts +38 -0
- package/contracts/zeno/getZenos.ts +38 -0
- package/custom-types.d.ts +20 -0
- package/index.ts +3 -0
- package/methods/approveToken.ts +47 -0
- package/methods/commons/checkAllowance.ts +36 -0
- package/methods/commons/estimateGasPrice.ts +26 -0
- package/methods/debug/mintToken.js +83 -0
- package/methods/getAssetBalance.ts +48 -0
- package/methods/getAssetsBalance.ts +9 -0
- package/minter/get.ts +150 -0
- package/minter/getApy.ts +37 -0
- package/minter/tick.ts +40 -0
- package/nfts/getAllTokens.ts +51 -0
- package/nfts/getBaseUri.ts +32 -0
- package/nfts/getHousePrice.ts +30 -0
- package/nfts/getMintFeePercentage.ts +33 -0
- package/nfts/getMintPrice.ts +46 -0
- package/nfts/getTokenURI.ts +35 -0
- package/nfts/getTokensByOwner.ts +51 -0
- package/nfts/getTotalPropertiesCount.ts +33 -0
- package/nfts/mint.ts +42 -0
- package/nfts/setBaseUri.ts +33 -0
- package/nfts/totalNFTSupply.ts +26 -0
- package/package.json +1 -4
- package/pools/lendingPool/borrowFromLendingPool.ts +41 -0
- package/pools/lendingPool/borrowFromLendingPoolWithInsurance.ts +80 -0
- package/pools/lendingPool/calculateInsuranceFee.ts +38 -0
- package/pools/lendingPool/claimReward.ts +30 -0
- package/pools/lendingPool/closeLiquidation.ts +40 -0
- package/pools/lendingPool/depositNFTToLendingPool.ts +69 -0
- package/pools/lendingPool/depositToLendingPool.ts +52 -0
- package/pools/lendingPool/getAllUserData.ts +47 -0
- package/pools/lendingPool/getEligibleUserDeposits.ts +39 -0
- package/pools/lendingPool/getHealthFactor.ts +43 -0
- package/pools/lendingPool/getHousePrice.ts +46 -0
- package/pools/lendingPool/getLendingPoolInfo.ts +157 -0
- package/pools/lendingPool/getLendingPoolTotalLiquidity.ts +32 -0
- package/pools/lendingPool/getPendingReward.ts +32 -0
- package/pools/lendingPool/getPositionDebt.ts +40 -0
- package/pools/lendingPool/getPositionScaledDebt.ts +43 -0
- package/pools/lendingPool/getPositionView.ts +52 -0
- package/pools/lendingPool/getPositionsScaledDebt.ts +39 -0
- package/pools/lendingPool/getRawUserDepositsInLendingPool.ts +33 -0
- package/pools/lendingPool/getUserCollateralValue.ts +39 -0
- package/pools/lendingPool/initializeLiquidation.ts +41 -0
- package/pools/lendingPool/repayToLendingPool.ts +38 -0
- package/pools/lendingPool/withdrawFromLendingPool.ts +68 -0
- package/pools/lendingPool/withdrawNFTFromLendingPool.ts +39 -0
- package/pools/liquidityPool/getLiquidityPoolInfo.ts +91 -0
- package/pools/stabilityPool/calculateRAACRewards.ts +36 -0
- package/pools/stabilityPool/depositNFTToStabilityPool.ts +67 -0
- package/pools/stabilityPool/depositToStabilityPool.ts +47 -0
- package/pools/stabilityPool/getRawUserDepositsInStabilityPool.ts +35 -0
- package/pools/stabilityPool/getStabilityPoolInfo.ts +111 -0
- package/pools/stabilityPool/getStabilityPoolTotalDeposits.ts +27 -0
- package/pools/stabilityPool/withdrawFromStabilityPool.ts +47 -0
- package/scripts/index.ts +236 -0
- package/sync-contracts.sh +80 -0
- package/tests/test.ts +40 -0
- package/tsconfig.dts.json +12 -0
- package/tsconfig.json +115 -0
- package/typechain-types/@chainlink/contracts/index.d.ts +2 -0
- package/typechain-types/@chainlink/contracts/src/index.d.ts +2 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/functions/index.d.ts +2 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.d.ts +67 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +5 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient.d.ts +37 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter.d.ts +205 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +2 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.d.ts +25 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +1 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/index.d.ts +6 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.d.ts +69 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal.d.ts +69 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +2 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/shared/index.d.ts +4 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable.d.ts +37 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +1 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts +35 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +3 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +156 -0
- package/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +1 -0
- package/typechain-types/@chainlink/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +159 -0
- package/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +147 -0
- package/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +54 -0
- package/typechain-types/@openzeppelin/contracts/access/index.d.ts +3 -0
- package/typechain-types/@openzeppelin/contracts/index.d.ts +8 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +78 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +3 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +141 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +129 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +236 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +141 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +61 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +3 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +6 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +211 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +199 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +39 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +233 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +221 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +211 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +3 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +7 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +39 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/typechain-types/@openzeppelin/contracts/token/index.d.ts +4 -0
- package/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +25 -0
- package/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +55 -0
- package/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +78 -0
- package/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/contracts/utils/index.d.ts +12 -0
- package/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +29 -0
- package/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +29 -0
- package/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts +68 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +6 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +36 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +1 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts +36 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.d.ts +69 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/index.d.ts +4 -0
- package/typechain-types/common.d.ts +50 -0
- package/typechain-types/contracts/core/collectors/FeeCollector.d.ts +933 -0
- package/typechain-types/contracts/core/collectors/Treasury.d.ts +283 -0
- package/typechain-types/contracts/core/collectors/index.d.ts +2 -0
- package/typechain-types/contracts/core/governance/boost/BoostController.d.ts +573 -0
- package/typechain-types/contracts/core/governance/boost/index.d.ts +1 -0
- package/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +779 -0
- package/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +815 -0
- package/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +803 -0
- package/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +807 -0
- package/typechain-types/contracts/core/governance/gauges/index.d.ts +4 -0
- package/typechain-types/contracts/core/governance/index.d.ts +6 -0
- package/typechain-types/contracts/core/governance/proposals/Governance.d.ts +612 -0
- package/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +447 -0
- package/typechain-types/contracts/core/governance/proposals/index.d.ts +2 -0
- package/typechain-types/contracts/core/index.d.ts +14 -0
- package/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +791 -0
- package/typechain-types/contracts/core/minters/RAACMinter/index.d.ts +1 -0
- package/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +493 -0
- package/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/typechain-types/contracts/core/minters/index.d.ts +4 -0
- package/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +165 -0
- package/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +166 -0
- package/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +188 -0
- package/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +195 -0
- package/typechain-types/contracts/core/oracles/index.d.ts +4 -0
- package/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +1647 -0
- package/typechain-types/contracts/core/pools/LendingPool/index.d.ts +1 -0
- package/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +283 -0
- package/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +576 -0
- package/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +2 -0
- package/typechain-types/contracts/core/pools/index.d.ts +4 -0
- package/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +138 -0
- package/typechain-types/contracts/core/primitives/index.d.ts +1 -0
- package/typechain-types/contracts/core/tokens/DEToken.d.ts +384 -0
- package/typechain-types/contracts/core/tokens/DebtToken.d.ts +429 -0
- package/typechain-types/contracts/core/tokens/IndexToken.d.ts +340 -0
- package/typechain-types/contracts/core/tokens/LPToken.d.ts +224 -0
- package/typechain-types/contracts/core/tokens/RAACNFT.d.ts +728 -0
- package/typechain-types/contracts/core/tokens/RAACToken.d.ts +401 -0
- package/typechain-types/contracts/core/tokens/RToken.d.ts +567 -0
- package/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +816 -0
- package/typechain-types/contracts/core/tokens/index.d.ts +8 -0
- package/typechain-types/contracts/index.d.ts +10 -0
- package/typechain-types/contracts/interfaces/IERC20.d.ts +129 -0
- package/typechain-types/contracts/interfaces/IHousePrices.d.ts +29 -0
- package/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +73 -0
- package/typechain-types/contracts/interfaces/IPoolManager.d.ts +37 -0
- package/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +164 -0
- package/typechain-types/contracts/interfaces/IUSDC.d.ts +129 -0
- package/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +59 -0
- package/typechain-types/contracts/interfaces/core/collectors/IBaseCollector.d.ts +39 -0
- package/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +487 -0
- package/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +139 -0
- package/typechain-types/contracts/interfaces/core/collectors/index.d.ts +3 -0
- package/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +269 -0
- package/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +235 -0
- package/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +341 -0
- package/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +2 -0
- package/typechain-types/contracts/interfaces/core/governance/index.d.ts +5 -0
- package/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +577 -0
- package/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +279 -0
- package/typechain-types/contracts/interfaces/core/governance/proposals/index.d.ts +2 -0
- package/typechain-types/contracts/interfaces/core/index.d.ts +14 -0
- package/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +352 -0
- package/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- package/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +237 -0
- package/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/typechain-types/contracts/interfaces/core/minters/index.d.ts +4 -0
- package/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +86 -0
- package/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +110 -0
- package/typechain-types/contracts/interfaces/core/oracles/index.d.ts +2 -0
- package/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +185 -0
- package/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +982 -0
- package/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +1 -0
- package/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +371 -0
- package/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +1 -0
- package/typechain-types/contracts/interfaces/core/pools/index.d.ts +5 -0
- package/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +226 -0
- package/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +291 -0
- package/typechain-types/contracts/interfaces/core/tokens/IIndexToken.d.ts +187 -0
- package/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +505 -0
- package/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +346 -0
- package/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +397 -0
- package/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +362 -0
- package/typechain-types/contracts/interfaces/core/tokens/index.d.ts +7 -0
- package/typechain-types/contracts/interfaces/core/vaults/IBaseVault.d.ts +83 -0
- package/typechain-types/contracts/interfaces/core/vaults/index.d.ts +1 -0
- package/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +144 -0
- package/typechain-types/contracts/interfaces/curve/index.d.ts +1 -0
- package/typechain-types/contracts/interfaces/index.d.ts +13 -0
- package/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +122 -0
- package/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +186 -0
- package/typechain-types/contracts/interfaces/zeno/index.d.ts +2 -0
- package/typechain-types/contracts/libraries/governance/BoostCalculator.d.ts +42 -0
- package/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +55 -0
- package/typechain-types/contracts/libraries/governance/LockManager.d.ts +87 -0
- package/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +60 -0
- package/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +45 -0
- package/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +66 -0
- package/typechain-types/contracts/libraries/governance/index.d.ts +6 -0
- package/typechain-types/contracts/libraries/index.d.ts +8 -0
- package/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +104 -0
- package/typechain-types/contracts/libraries/math/index.d.ts +1 -0
- package/typechain-types/contracts/libraries/pools/ReserveLibrary.d.ts +124 -0
- package/typechain-types/contracts/libraries/pools/index.d.ts +1 -0
- package/typechain-types/contracts/libraries/utils/StringUtils.d.ts +20 -0
- package/typechain-types/contracts/libraries/utils/index.d.ts +1 -0
- package/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +169 -0
- package/typechain-types/contracts/mocks/core/collectors/index.d.ts +1 -0
- package/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +845 -0
- package/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +29 -0
- package/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +2 -0
- package/typechain-types/contracts/mocks/core/governance/index.d.ts +4 -0
- package/typechain-types/contracts/mocks/core/governance/proposals/TimelockTestTarget.d.ts +76 -0
- package/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/typechain-types/contracts/mocks/core/index.d.ts +14 -0
- package/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.d.ts +41 -0
- package/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +45 -0
- package/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +2 -0
- package/typechain-types/contracts/mocks/core/oracles/MockOracle.d.ts +43 -0
- package/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +530 -0
- package/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +204 -0
- package/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +211 -0
- package/typechain-types/contracts/mocks/core/oracles/index.d.ts +6 -0
- package/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +121 -0
- package/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +156 -0
- package/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +994 -0
- package/typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts +486 -0
- package/typechain-types/contracts/mocks/core/pools/MockPool.d.ts +55 -0
- package/typechain-types/contracts/mocks/core/pools/MockStabilityPool.d.ts +69 -0
- package/typechain-types/contracts/mocks/core/pools/index.d.ts +6 -0
- package/typechain-types/contracts/mocks/core/primitives/MockContract.d.ts +29 -0
- package/typechain-types/contracts/mocks/core/primitives/MockContractWithConfig.d.ts +39 -0
- package/typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts +35 -0
- package/typechain-types/contracts/mocks/core/primitives/RAACHousePricesMock.d.ts +47 -0
- package/typechain-types/contracts/mocks/core/primitives/index.d.ts +4 -0
- package/typechain-types/contracts/mocks/core/tokens/CrvUSDToken.d.ts +212 -0
- package/typechain-types/contracts/mocks/core/tokens/ERC20Mock.d.ts +155 -0
- package/typechain-types/contracts/mocks/core/tokens/ERC721Mock.d.ts +229 -0
- package/typechain-types/contracts/mocks/core/tokens/MockCollectableUnderlying.d.ts +292 -0
- package/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +220 -0
- package/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +191 -0
- package/typechain-types/contracts/mocks/core/tokens/MockUSDC.d.ts +155 -0
- package/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +510 -0
- package/typechain-types/contracts/mocks/core/tokens/RAACMockERC20.d.ts +186 -0
- package/typechain-types/contracts/mocks/core/tokens/index.d.ts +9 -0
- package/typechain-types/contracts/mocks/core/vaults/MockVault.d.ts +290 -0
- package/typechain-types/contracts/mocks/core/vaults/index.d.ts +1 -0
- package/typechain-types/contracts/mocks/index.d.ts +6 -0
- package/typechain-types/contracts/mocks/libraries/MockStringUtils.d.ts +25 -0
- package/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +275 -0
- package/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +83 -0
- package/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +163 -0
- package/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +141 -0
- package/typechain-types/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +41 -0
- package/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +281 -0
- package/typechain-types/contracts/mocks/libraries/governance/index.d.ts +6 -0
- package/typechain-types/contracts/mocks/libraries/index.d.ts +7 -0
- package/typechain-types/contracts/mocks/libraries/math/TimeWeightedAverageMock.d.ts +203 -0
- package/typechain-types/contracts/mocks/libraries/math/WadRayMathMock.d.ts +78 -0
- package/typechain-types/contracts/mocks/libraries/math/index.d.ts +2 -0
- package/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +225 -0
- package/typechain-types/contracts/mocks/libraries/pools/index.d.ts +1 -0
- package/typechain-types/contracts/mocks/tests/MaliciousDeposit.d.ts +29 -0
- package/typechain-types/contracts/mocks/tests/MaliciousWithdraw.d.ts +29 -0
- package/typechain-types/contracts/mocks/tests/VeRAACFuzzHelper.d.ts +71 -0
- package/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts +25 -0
- package/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +100 -0
- package/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +2 -0
- package/typechain-types/contracts/mocks/tests/index.d.ts +5 -0
- package/typechain-types/contracts/zeno/Auction.d.ts +215 -0
- package/typechain-types/contracts/zeno/AuctionFactory.d.ts +177 -0
- package/typechain-types/contracts/zeno/ZENO.d.ts +237 -0
- package/typechain-types/contracts/zeno/ZENOFactory.d.ts +151 -0
- package/typechain-types/contracts/zeno/index.d.ts +4 -0
- package/typechain-types/factories/@chainlink/contracts/index.d.ts +1 -0
- package/typechain-types/factories/@chainlink/contracts/src/index.d.ts +1 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/index.d.ts +1 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient__factory.d.ts +49 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +3 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient__factory.d.ts +25 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter__factory.d.ts +268 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +2 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +48 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +1 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/index.d.ts +3 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +90 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +86 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +2 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/index.d.ts +2 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable__factory.d.ts +33 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +1 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +33 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +2 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +171 -0
- package/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +1 -0
- package/typechain-types/factories/@chainlink/index.d.ts +1 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +181 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +157 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +64 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +3 -0
- package/typechain-types/factories/@openzeppelin/contracts/index.d.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +46 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +83 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +71 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +83 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +241 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +147 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +402 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +177 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +65 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +3 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +46 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +337 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +33 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +227 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +395 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +269 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +261 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +3 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +33 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +42 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +33 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +45 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +11 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +34 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +34 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +42 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +58 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +9 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +21 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +21 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +26 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +62 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts +82 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +3 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +1 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts +25 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +1 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts +25 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable__factory.d.ts +63 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/index.d.ts +2 -0
- package/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +1362 -0
- package/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +386 -0
- package/typechain-types/factories/contracts/core/collectors/index.d.ts +2 -0
- package/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +716 -0
- package/typechain-types/factories/contracts/core/governance/boost/index.d.ts +1 -0
- package/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +1083 -0
- package/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1124 -0
- package/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1154 -0
- package/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1154 -0
- package/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +4 -0
- package/typechain-types/factories/contracts/core/governance/index.d.ts +3 -0
- package/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +976 -0
- package/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +773 -0
- package/typechain-types/factories/contracts/core/governance/proposals/index.d.ts +2 -0
- package/typechain-types/factories/contracts/core/index.d.ts +7 -0
- package/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1132 -0
- package/typechain-types/factories/contracts/core/minters/RAACMinter/index.d.ts +1 -0
- package/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +680 -0
- package/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/typechain-types/factories/contracts/core/minters/index.d.ts +2 -0
- package/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +205 -0
- package/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +231 -0
- package/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +275 -0
- package/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +286 -0
- package/typechain-types/factories/contracts/core/oracles/index.d.ts +4 -0
- package/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +2160 -0
- package/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +1 -0
- package/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +390 -0
- package/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +897 -0
- package/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +2 -0
- package/typechain-types/factories/contracts/core/pools/index.d.ts +2 -0
- package/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +231 -0
- package/typechain-types/factories/contracts/core/primitives/index.d.ts +1 -0
- package/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +671 -0
- package/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +747 -0
- package/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +602 -0
- package/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +401 -0
- package/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +1143 -0
- package/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +652 -0
- package/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +941 -0
- package/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1264 -0
- package/typechain-types/factories/contracts/core/tokens/index.d.ts +8 -0
- package/typechain-types/factories/contracts/index.d.ts +5 -0
- package/typechain-types/factories/contracts/interfaces/IERC20__factory.d.ts +147 -0
- package/typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts +21 -0
- package/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +65 -0
- package/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts +43 -0
- package/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +189 -0
- package/typechain-types/factories/contracts/interfaces/IUSDC__factory.d.ts +147 -0
- package/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +75 -0
- package/typechain-types/factories/contracts/interfaces/core/collectors/IBaseCollector__factory.d.ts +33 -0
- package/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +715 -0
- package/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +165 -0
- package/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +3 -0
- package/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +295 -0
- package/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +449 -0
- package/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +307 -0
- package/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +2 -0
- package/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +3 -0
- package/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +878 -0
- package/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +468 -0
- package/typechain-types/factories/contracts/interfaces/core/governance/proposals/index.d.ts +2 -0
- package/typechain-types/factories/contracts/interfaces/core/index.d.ts +7 -0
- package/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +424 -0
- package/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- package/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +279 -0
- package/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/typechain-types/factories/contracts/interfaces/core/minters/index.d.ts +2 -0
- package/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +78 -0
- package/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +146 -0
- package/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +2 -0
- package/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +233 -0
- package/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +1170 -0
- package/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +1 -0
- package/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +481 -0
- package/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +1 -0
- package/typechain-types/factories/contracts/interfaces/core/pools/index.d.ts +3 -0
- package/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +256 -0
- package/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +392 -0
- package/typechain-types/factories/contracts/interfaces/core/tokens/IIndexToken__factory.d.ts +227 -0
- package/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +627 -0
- package/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +436 -0
- package/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +496 -0
- package/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +435 -0
- package/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +7 -0
- package/typechain-types/factories/contracts/interfaces/core/vaults/IBaseVault__factory.d.ts +137 -0
- package/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +1 -0
- package/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +194 -0
- package/typechain-types/factories/contracts/interfaces/curve/index.d.ts +1 -0
- package/typechain-types/factories/contracts/interfaces/index.d.ts +10 -0
- package/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +126 -0
- package/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +246 -0
- package/typechain-types/factories/contracts/interfaces/zeno/index.d.ts +2 -0
- package/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +54 -0
- package/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +68 -0
- package/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +111 -0
- package/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +69 -0
- package/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +92 -0
- package/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +74 -0
- package/typechain-types/factories/contracts/libraries/governance/index.d.ts +6 -0
- package/typechain-types/factories/contracts/libraries/index.d.ts +4 -0
- package/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +125 -0
- package/typechain-types/factories/contracts/libraries/math/index.d.ts +1 -0
- package/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +135 -0
- package/typechain-types/factories/contracts/libraries/pools/index.d.ts +1 -0
- package/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +26 -0
- package/typechain-types/factories/contracts/libraries/utils/index.d.ts +1 -0
- package/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +212 -0
- package/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +1 -0
- package/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +1194 -0
- package/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +50 -0
- package/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +2 -0
- package/typechain-types/factories/contracts/mocks/core/governance/index.d.ts +2 -0
- package/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +100 -0
- package/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/typechain-types/factories/contracts/mocks/core/index.d.ts +7 -0
- package/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter__factory.d.ts +37 -0
- package/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +66 -0
- package/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +2 -0
- package/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +62 -0
- package/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +620 -0
- package/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +293 -0
- package/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +304 -0
- package/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +5 -0
- package/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +234 -0
- package/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +1202 -0
- package/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +199 -0
- package/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +795 -0
- package/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +84 -0
- package/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +109 -0
- package/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +6 -0
- package/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +53 -0
- package/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +42 -0
- package/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +68 -0
- package/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +64 -0
- package/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +4 -0
- package/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +379 -0
- package/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +282 -0
- package/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +388 -0
- package/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +451 -0
- package/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +407 -0
- package/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +338 -0
- package/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +278 -0
- package/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +714 -0
- package/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +335 -0
- package/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +9 -0
- package/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +525 -0
- package/typechain-types/factories/contracts/mocks/core/vaults/index.d.ts +1 -0
- package/typechain-types/factories/contracts/mocks/index.d.ts +3 -0
- package/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +40 -0
- package/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +351 -0
- package/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +124 -0
- package/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +197 -0
- package/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +183 -0
- package/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +70 -0
- package/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +341 -0
- package/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +6 -0
- package/typechain-types/factories/contracts/mocks/libraries/index.d.ts +4 -0
- package/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +247 -0
- package/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +154 -0
- package/typechain-types/factories/contracts/mocks/libraries/math/index.d.ts +2 -0
- package/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +277 -0
- package/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +1 -0
- package/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +53 -0
- package/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +53 -0
- package/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +80 -0
- package/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +17 -0
- package/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +113 -0
- package/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +2 -0
- package/typechain-types/factories/contracts/mocks/tests/index.d.ts +4 -0
- package/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +250 -0
- package/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +320 -0
- package/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +223 -0
- package/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +488 -0
- package/typechain-types/factories/contracts/zeno/index.d.ts +4 -0
- package/typechain-types/factories/index.d.ts +3 -0
- package/typechain-types/index.d.ts +329 -0
- package/utils/artifacts.ts +75 -0
- package/utils/chain.ts +94 -0
- package/utils/config.ts +49 -0
- package/utils/contracts.ts +94 -0
- package/wallet/assets/approveAsset.ts +45 -0
- package/wallet/assets/burnAsset.ts +58 -0
- package/wallet/assets/getAllowance.ts +38 -0
- package/wallet/assets/getAsset.ts +32 -0
- package/wallet/assets/getAssets.ts +35 -0
- package/wallet/assets/getBalance.ts +34 -0
- package/wallet/assets/mintAsset.ts +60 -0
- package/wallet/assets/transferAsset.ts +80 -0
- package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +0 -1743
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +0 -1443
- package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +0 -279
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +0 -2760
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +0 -1146
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +0 -285
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +0 -858
- package/dist/artifacts/core/tokens/IndexToken.sol/IndexToken.json +0 -770
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +0 -1472
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +0 -832
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +0 -1205
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +0 -1616
- package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +0 -774
- package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +0 -479
- package/dist/artifacts/zeno/Auction.sol/Auction.json +0 -393
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +0 -307
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +0 -620
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +0 -275
|
@@ -1,2760 +0,0 @@
|
|
|
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": "CannotRepayUnderLiquidationWithoutInsurance",
|
|
77
|
-
"type": "error"
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"inputs": [],
|
|
81
|
-
"name": "CannotWithdrawUnderLiquidation",
|
|
82
|
-
"type": "error"
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"inputs": [],
|
|
86
|
-
"name": "DebtNotZero",
|
|
87
|
-
"type": "error"
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"inputs": [],
|
|
91
|
-
"name": "EnforcedPause",
|
|
92
|
-
"type": "error"
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
"inputs": [],
|
|
96
|
-
"name": "ExpectedPause",
|
|
97
|
-
"type": "error"
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
"inputs": [],
|
|
101
|
-
"name": "FailedInnerCall",
|
|
102
|
-
"type": "error"
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"inputs": [],
|
|
106
|
-
"name": "GracePeriodExpired",
|
|
107
|
-
"type": "error"
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"inputs": [],
|
|
111
|
-
"name": "GracePeriodNotExpired",
|
|
112
|
-
"type": "error"
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
"inputs": [],
|
|
116
|
-
"name": "HealthFactorTooLow",
|
|
117
|
-
"type": "error"
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"inputs": [],
|
|
121
|
-
"name": "InsufficientAllowanceForFees",
|
|
122
|
-
"type": "error"
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"inputs": [],
|
|
126
|
-
"name": "InsufficientBalance",
|
|
127
|
-
"type": "error"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"inputs": [],
|
|
131
|
-
"name": "InsufficientLiquidity",
|
|
132
|
-
"type": "error"
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"inputs": [],
|
|
136
|
-
"name": "InvalidAmount",
|
|
137
|
-
"type": "error"
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
"inputs": [],
|
|
141
|
-
"name": "InvalidAmount",
|
|
142
|
-
"type": "error"
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
"inputs": [],
|
|
146
|
-
"name": "InvalidInterestRateMode",
|
|
147
|
-
"type": "error"
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"inputs": [],
|
|
151
|
-
"name": "InvalidInterestRateParameters",
|
|
152
|
-
"type": "error"
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
"inputs": [],
|
|
156
|
-
"name": "InvalidNFTPrice",
|
|
157
|
-
"type": "error"
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
"inputs": [],
|
|
161
|
-
"name": "InvalidParameter",
|
|
162
|
-
"type": "error"
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
"inputs": [],
|
|
166
|
-
"name": "InvalidVaultAsset",
|
|
167
|
-
"type": "error"
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
"inputs": [],
|
|
171
|
-
"name": "LiquidityIndexIsZero",
|
|
172
|
-
"type": "error"
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"inputs": [],
|
|
176
|
-
"name": "NFTAlreadyDeposited",
|
|
177
|
-
"type": "error"
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
"inputs": [],
|
|
181
|
-
"name": "NFTNotDeposited",
|
|
182
|
-
"type": "error"
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
"inputs": [],
|
|
186
|
-
"name": "NFTNotInsured",
|
|
187
|
-
"type": "error"
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
"inputs": [],
|
|
191
|
-
"name": "NoActiveRewardToken",
|
|
192
|
-
"type": "error"
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"inputs": [],
|
|
196
|
-
"name": "NoCollateral",
|
|
197
|
-
"type": "error"
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
"inputs": [],
|
|
201
|
-
"name": "NoDeposits",
|
|
202
|
-
"type": "error"
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
"inputs": [],
|
|
206
|
-
"name": "NoRewardsToClaim",
|
|
207
|
-
"type": "error"
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
"inputs": [],
|
|
211
|
-
"name": "NotEnoughCollateralToBorrow",
|
|
212
|
-
"type": "error"
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
"inputs": [],
|
|
216
|
-
"name": "NotOwnerOfNFT",
|
|
217
|
-
"type": "error"
|
|
218
|
-
},
|
|
219
|
-
{
|
|
220
|
-
"inputs": [],
|
|
221
|
-
"name": "NotUnderLiquidation",
|
|
222
|
-
"type": "error"
|
|
223
|
-
},
|
|
224
|
-
{
|
|
225
|
-
"inputs": [
|
|
226
|
-
{
|
|
227
|
-
"internalType": "address",
|
|
228
|
-
"name": "owner",
|
|
229
|
-
"type": "address"
|
|
230
|
-
}
|
|
231
|
-
],
|
|
232
|
-
"name": "OwnableInvalidOwner",
|
|
233
|
-
"type": "error"
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
"inputs": [
|
|
237
|
-
{
|
|
238
|
-
"internalType": "address",
|
|
239
|
-
"name": "account",
|
|
240
|
-
"type": "address"
|
|
241
|
-
}
|
|
242
|
-
],
|
|
243
|
-
"name": "OwnableUnauthorizedAccount",
|
|
244
|
-
"type": "error"
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
"inputs": [],
|
|
248
|
-
"name": "PaybackDebtDisabled",
|
|
249
|
-
"type": "error"
|
|
250
|
-
},
|
|
251
|
-
{
|
|
252
|
-
"inputs": [],
|
|
253
|
-
"name": "PrimeRateChangeExceedsLimit",
|
|
254
|
-
"type": "error"
|
|
255
|
-
},
|
|
256
|
-
{
|
|
257
|
-
"inputs": [],
|
|
258
|
-
"name": "PrimeRateMustBePositive",
|
|
259
|
-
"type": "error"
|
|
260
|
-
},
|
|
261
|
-
{
|
|
262
|
-
"inputs": [],
|
|
263
|
-
"name": "ReentrancyGuardReentrantCall",
|
|
264
|
-
"type": "error"
|
|
265
|
-
},
|
|
266
|
-
{
|
|
267
|
-
"inputs": [],
|
|
268
|
-
"name": "RepayAmountTooHigh",
|
|
269
|
-
"type": "error"
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"inputs": [],
|
|
273
|
-
"name": "RewardTokenAlreadySet",
|
|
274
|
-
"type": "error"
|
|
275
|
-
},
|
|
276
|
-
{
|
|
277
|
-
"inputs": [
|
|
278
|
-
{
|
|
279
|
-
"internalType": "uint8",
|
|
280
|
-
"name": "bits",
|
|
281
|
-
"type": "uint8"
|
|
282
|
-
},
|
|
283
|
-
{
|
|
284
|
-
"internalType": "uint256",
|
|
285
|
-
"name": "value",
|
|
286
|
-
"type": "uint256"
|
|
287
|
-
}
|
|
288
|
-
],
|
|
289
|
-
"name": "SafeCastOverflowedUintDowncast",
|
|
290
|
-
"type": "error"
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"inputs": [
|
|
294
|
-
{
|
|
295
|
-
"internalType": "address",
|
|
296
|
-
"name": "token",
|
|
297
|
-
"type": "address"
|
|
298
|
-
}
|
|
299
|
-
],
|
|
300
|
-
"name": "SafeERC20FailedOperation",
|
|
301
|
-
"type": "error"
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
"inputs": [],
|
|
305
|
-
"name": "SameAddressNotAllowed",
|
|
306
|
-
"type": "error"
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
"inputs": [],
|
|
310
|
-
"name": "StalePrice",
|
|
311
|
-
"type": "error"
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
"inputs": [],
|
|
315
|
-
"name": "TransferFailed",
|
|
316
|
-
"type": "error"
|
|
317
|
-
},
|
|
318
|
-
{
|
|
319
|
-
"inputs": [],
|
|
320
|
-
"name": "Unauthorized",
|
|
321
|
-
"type": "error"
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
"inputs": [],
|
|
325
|
-
"name": "UserAlreadyUnderLiquidation",
|
|
326
|
-
"type": "error"
|
|
327
|
-
},
|
|
328
|
-
{
|
|
329
|
-
"inputs": [],
|
|
330
|
-
"name": "WithdrawalWouldLeaveUserUnderCollateralized",
|
|
331
|
-
"type": "error"
|
|
332
|
-
},
|
|
333
|
-
{
|
|
334
|
-
"inputs": [],
|
|
335
|
-
"name": "WithdrawalsArePaused",
|
|
336
|
-
"type": "error"
|
|
337
|
-
},
|
|
338
|
-
{
|
|
339
|
-
"anonymous": false,
|
|
340
|
-
"inputs": [
|
|
341
|
-
{
|
|
342
|
-
"indexed": true,
|
|
343
|
-
"internalType": "address",
|
|
344
|
-
"name": "user",
|
|
345
|
-
"type": "address"
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"indexed": false,
|
|
349
|
-
"internalType": "uint256",
|
|
350
|
-
"name": "amount",
|
|
351
|
-
"type": "uint256"
|
|
352
|
-
}
|
|
353
|
-
],
|
|
354
|
-
"name": "Borrow",
|
|
355
|
-
"type": "event"
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"anonymous": false,
|
|
359
|
-
"inputs": [
|
|
360
|
-
{
|
|
361
|
-
"indexed": false,
|
|
362
|
-
"internalType": "bool",
|
|
363
|
-
"name": "enabled",
|
|
364
|
-
"type": "bool"
|
|
365
|
-
}
|
|
366
|
-
],
|
|
367
|
-
"name": "CanPaybackDebtChanged",
|
|
368
|
-
"type": "event"
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
"anonymous": false,
|
|
372
|
-
"inputs": [
|
|
373
|
-
{
|
|
374
|
-
"indexed": true,
|
|
375
|
-
"internalType": "address",
|
|
376
|
-
"name": "user",
|
|
377
|
-
"type": "address"
|
|
378
|
-
},
|
|
379
|
-
{
|
|
380
|
-
"indexed": false,
|
|
381
|
-
"internalType": "uint256",
|
|
382
|
-
"name": "amount",
|
|
383
|
-
"type": "uint256"
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
"indexed": false,
|
|
387
|
-
"internalType": "uint256",
|
|
388
|
-
"name": "mintedAmount",
|
|
389
|
-
"type": "uint256"
|
|
390
|
-
}
|
|
391
|
-
],
|
|
392
|
-
"name": "Deposit",
|
|
393
|
-
"type": "event"
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
"anonymous": false,
|
|
397
|
-
"inputs": [
|
|
398
|
-
{
|
|
399
|
-
"indexed": true,
|
|
400
|
-
"internalType": "address",
|
|
401
|
-
"name": "user",
|
|
402
|
-
"type": "address"
|
|
403
|
-
},
|
|
404
|
-
{
|
|
405
|
-
"indexed": false,
|
|
406
|
-
"internalType": "uint256",
|
|
407
|
-
"name": "amount",
|
|
408
|
-
"type": "uint256"
|
|
409
|
-
},
|
|
410
|
-
{
|
|
411
|
-
"indexed": false,
|
|
412
|
-
"internalType": "uint256",
|
|
413
|
-
"name": "liquidityMinted",
|
|
414
|
-
"type": "uint256"
|
|
415
|
-
}
|
|
416
|
-
],
|
|
417
|
-
"name": "Deposit",
|
|
418
|
-
"type": "event"
|
|
419
|
-
},
|
|
420
|
-
{
|
|
421
|
-
"anonymous": false,
|
|
422
|
-
"inputs": [
|
|
423
|
-
{
|
|
424
|
-
"indexed": true,
|
|
425
|
-
"internalType": "address",
|
|
426
|
-
"name": "oldFeeCollector",
|
|
427
|
-
"type": "address"
|
|
428
|
-
},
|
|
429
|
-
{
|
|
430
|
-
"indexed": true,
|
|
431
|
-
"internalType": "address",
|
|
432
|
-
"name": "newFeeCollector",
|
|
433
|
-
"type": "address"
|
|
434
|
-
}
|
|
435
|
-
],
|
|
436
|
-
"name": "FeeCollectorUpdated",
|
|
437
|
-
"type": "event"
|
|
438
|
-
},
|
|
439
|
-
{
|
|
440
|
-
"anonymous": false,
|
|
441
|
-
"inputs": [],
|
|
442
|
-
"name": "InsufficientFees",
|
|
443
|
-
"type": "event"
|
|
444
|
-
},
|
|
445
|
-
{
|
|
446
|
-
"anonymous": false,
|
|
447
|
-
"inputs": [
|
|
448
|
-
{
|
|
449
|
-
"indexed": false,
|
|
450
|
-
"internalType": "uint256",
|
|
451
|
-
"name": "oldInsuranceFee",
|
|
452
|
-
"type": "uint256"
|
|
453
|
-
},
|
|
454
|
-
{
|
|
455
|
-
"indexed": false,
|
|
456
|
-
"internalType": "uint256",
|
|
457
|
-
"name": "newInsuranceFee",
|
|
458
|
-
"type": "uint256"
|
|
459
|
-
}
|
|
460
|
-
],
|
|
461
|
-
"name": "InsuranceFeeUpdated",
|
|
462
|
-
"type": "event"
|
|
463
|
-
},
|
|
464
|
-
{
|
|
465
|
-
"anonymous": false,
|
|
466
|
-
"inputs": [
|
|
467
|
-
{
|
|
468
|
-
"indexed": true,
|
|
469
|
-
"internalType": "uint256",
|
|
470
|
-
"name": "tokenId",
|
|
471
|
-
"type": "uint256"
|
|
472
|
-
},
|
|
473
|
-
{
|
|
474
|
-
"indexed": false,
|
|
475
|
-
"internalType": "uint256",
|
|
476
|
-
"name": "amount",
|
|
477
|
-
"type": "uint256"
|
|
478
|
-
}
|
|
479
|
-
],
|
|
480
|
-
"name": "InsuredNFT",
|
|
481
|
-
"type": "event"
|
|
482
|
-
},
|
|
483
|
-
{
|
|
484
|
-
"anonymous": false,
|
|
485
|
-
"inputs": [
|
|
486
|
-
{
|
|
487
|
-
"indexed": false,
|
|
488
|
-
"internalType": "uint256",
|
|
489
|
-
"name": "liquidityRate",
|
|
490
|
-
"type": "uint256"
|
|
491
|
-
},
|
|
492
|
-
{
|
|
493
|
-
"indexed": false,
|
|
494
|
-
"internalType": "uint256",
|
|
495
|
-
"name": "usageRate",
|
|
496
|
-
"type": "uint256"
|
|
497
|
-
}
|
|
498
|
-
],
|
|
499
|
-
"name": "InterestRatesUpdated",
|
|
500
|
-
"type": "event"
|
|
501
|
-
},
|
|
502
|
-
{
|
|
503
|
-
"anonymous": false,
|
|
504
|
-
"inputs": [
|
|
505
|
-
{
|
|
506
|
-
"indexed": true,
|
|
507
|
-
"internalType": "address",
|
|
508
|
-
"name": "liquidator",
|
|
509
|
-
"type": "address"
|
|
510
|
-
},
|
|
511
|
-
{
|
|
512
|
-
"indexed": true,
|
|
513
|
-
"internalType": "address",
|
|
514
|
-
"name": "user",
|
|
515
|
-
"type": "address"
|
|
516
|
-
},
|
|
517
|
-
{
|
|
518
|
-
"indexed": false,
|
|
519
|
-
"internalType": "uint256",
|
|
520
|
-
"name": "debtRepaid",
|
|
521
|
-
"type": "uint256"
|
|
522
|
-
},
|
|
523
|
-
{
|
|
524
|
-
"indexed": false,
|
|
525
|
-
"internalType": "uint256",
|
|
526
|
-
"name": "collateralLiquidated",
|
|
527
|
-
"type": "uint256"
|
|
528
|
-
}
|
|
529
|
-
],
|
|
530
|
-
"name": "Liquidation",
|
|
531
|
-
"type": "event"
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
"anonymous": false,
|
|
535
|
-
"inputs": [
|
|
536
|
-
{
|
|
537
|
-
"indexed": true,
|
|
538
|
-
"internalType": "address",
|
|
539
|
-
"name": "user",
|
|
540
|
-
"type": "address"
|
|
541
|
-
},
|
|
542
|
-
{
|
|
543
|
-
"indexed": true,
|
|
544
|
-
"internalType": "uint256",
|
|
545
|
-
"name": "tokenId",
|
|
546
|
-
"type": "uint256"
|
|
547
|
-
}
|
|
548
|
-
],
|
|
549
|
-
"name": "LiquidationClosed",
|
|
550
|
-
"type": "event"
|
|
551
|
-
},
|
|
552
|
-
{
|
|
553
|
-
"anonymous": false,
|
|
554
|
-
"inputs": [
|
|
555
|
-
{
|
|
556
|
-
"indexed": true,
|
|
557
|
-
"internalType": "address",
|
|
558
|
-
"name": "liquidator",
|
|
559
|
-
"type": "address"
|
|
560
|
-
},
|
|
561
|
-
{
|
|
562
|
-
"indexed": true,
|
|
563
|
-
"internalType": "address",
|
|
564
|
-
"name": "user",
|
|
565
|
-
"type": "address"
|
|
566
|
-
},
|
|
567
|
-
{
|
|
568
|
-
"indexed": true,
|
|
569
|
-
"internalType": "uint256",
|
|
570
|
-
"name": "tokenId",
|
|
571
|
-
"type": "uint256"
|
|
572
|
-
},
|
|
573
|
-
{
|
|
574
|
-
"indexed": false,
|
|
575
|
-
"internalType": "uint256",
|
|
576
|
-
"name": "debtRepaid",
|
|
577
|
-
"type": "uint256"
|
|
578
|
-
},
|
|
579
|
-
{
|
|
580
|
-
"indexed": false,
|
|
581
|
-
"internalType": "uint256",
|
|
582
|
-
"name": "collateralLiquidated",
|
|
583
|
-
"type": "uint256"
|
|
584
|
-
}
|
|
585
|
-
],
|
|
586
|
-
"name": "LiquidationFinalized",
|
|
587
|
-
"type": "event"
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
"anonymous": false,
|
|
591
|
-
"inputs": [
|
|
592
|
-
{
|
|
593
|
-
"indexed": true,
|
|
594
|
-
"internalType": "address",
|
|
595
|
-
"name": "liquidator",
|
|
596
|
-
"type": "address"
|
|
597
|
-
},
|
|
598
|
-
{
|
|
599
|
-
"indexed": true,
|
|
600
|
-
"internalType": "address",
|
|
601
|
-
"name": "user",
|
|
602
|
-
"type": "address"
|
|
603
|
-
},
|
|
604
|
-
{
|
|
605
|
-
"indexed": true,
|
|
606
|
-
"internalType": "uint256",
|
|
607
|
-
"name": "tokenId",
|
|
608
|
-
"type": "uint256"
|
|
609
|
-
}
|
|
610
|
-
],
|
|
611
|
-
"name": "LiquidationInitiated",
|
|
612
|
-
"type": "event"
|
|
613
|
-
},
|
|
614
|
-
{
|
|
615
|
-
"anonymous": false,
|
|
616
|
-
"inputs": [
|
|
617
|
-
{
|
|
618
|
-
"indexed": false,
|
|
619
|
-
"internalType": "uint256",
|
|
620
|
-
"name": "newLiquidationThreshold",
|
|
621
|
-
"type": "uint256"
|
|
622
|
-
},
|
|
623
|
-
{
|
|
624
|
-
"indexed": false,
|
|
625
|
-
"internalType": "uint256",
|
|
626
|
-
"name": "newHealthFactorLiquidationThreshold",
|
|
627
|
-
"type": "uint256"
|
|
628
|
-
},
|
|
629
|
-
{
|
|
630
|
-
"indexed": false,
|
|
631
|
-
"internalType": "uint256",
|
|
632
|
-
"name": "newLiquidationGracePeriod",
|
|
633
|
-
"type": "uint256"
|
|
634
|
-
}
|
|
635
|
-
],
|
|
636
|
-
"name": "LiquidationParametersUpdated",
|
|
637
|
-
"type": "event"
|
|
638
|
-
},
|
|
639
|
-
{
|
|
640
|
-
"anonymous": false,
|
|
641
|
-
"inputs": [
|
|
642
|
-
{
|
|
643
|
-
"indexed": false,
|
|
644
|
-
"internalType": "uint256",
|
|
645
|
-
"name": "oldRatio",
|
|
646
|
-
"type": "uint256"
|
|
647
|
-
},
|
|
648
|
-
{
|
|
649
|
-
"indexed": false,
|
|
650
|
-
"internalType": "uint256",
|
|
651
|
-
"name": "newRatio",
|
|
652
|
-
"type": "uint256"
|
|
653
|
-
}
|
|
654
|
-
],
|
|
655
|
-
"name": "LiquidityBufferRatioUpdated",
|
|
656
|
-
"type": "event"
|
|
657
|
-
},
|
|
658
|
-
{
|
|
659
|
-
"anonymous": false,
|
|
660
|
-
"inputs": [
|
|
661
|
-
{
|
|
662
|
-
"indexed": false,
|
|
663
|
-
"internalType": "uint256",
|
|
664
|
-
"name": "bufferAmount",
|
|
665
|
-
"type": "uint256"
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
"indexed": false,
|
|
669
|
-
"internalType": "uint256",
|
|
670
|
-
"name": "vaultAmount",
|
|
671
|
-
"type": "uint256"
|
|
672
|
-
}
|
|
673
|
-
],
|
|
674
|
-
"name": "LiquidityRebalanced",
|
|
675
|
-
"type": "event"
|
|
676
|
-
},
|
|
677
|
-
{
|
|
678
|
-
"anonymous": false,
|
|
679
|
-
"inputs": [
|
|
680
|
-
{
|
|
681
|
-
"indexed": true,
|
|
682
|
-
"internalType": "address",
|
|
683
|
-
"name": "user",
|
|
684
|
-
"type": "address"
|
|
685
|
-
},
|
|
686
|
-
{
|
|
687
|
-
"indexed": false,
|
|
688
|
-
"internalType": "uint256",
|
|
689
|
-
"name": "tokenId",
|
|
690
|
-
"type": "uint256"
|
|
691
|
-
}
|
|
692
|
-
],
|
|
693
|
-
"name": "NFTDeposited",
|
|
694
|
-
"type": "event"
|
|
695
|
-
},
|
|
696
|
-
{
|
|
697
|
-
"anonymous": false,
|
|
698
|
-
"inputs": [
|
|
699
|
-
{
|
|
700
|
-
"indexed": true,
|
|
701
|
-
"internalType": "address",
|
|
702
|
-
"name": "user",
|
|
703
|
-
"type": "address"
|
|
704
|
-
},
|
|
705
|
-
{
|
|
706
|
-
"indexed": false,
|
|
707
|
-
"internalType": "uint256",
|
|
708
|
-
"name": "tokenId",
|
|
709
|
-
"type": "uint256"
|
|
710
|
-
}
|
|
711
|
-
],
|
|
712
|
-
"name": "NFTWithdrawn",
|
|
713
|
-
"type": "event"
|
|
714
|
-
},
|
|
715
|
-
{
|
|
716
|
-
"anonymous": false,
|
|
717
|
-
"inputs": [],
|
|
718
|
-
"name": "NotFeeCollector",
|
|
719
|
-
"type": "event"
|
|
720
|
-
},
|
|
721
|
-
{
|
|
722
|
-
"anonymous": false,
|
|
723
|
-
"inputs": [
|
|
724
|
-
{
|
|
725
|
-
"indexed": true,
|
|
726
|
-
"internalType": "address",
|
|
727
|
-
"name": "previousOwner",
|
|
728
|
-
"type": "address"
|
|
729
|
-
},
|
|
730
|
-
{
|
|
731
|
-
"indexed": true,
|
|
732
|
-
"internalType": "address",
|
|
733
|
-
"name": "newOwner",
|
|
734
|
-
"type": "address"
|
|
735
|
-
}
|
|
736
|
-
],
|
|
737
|
-
"name": "OwnershipTransferred",
|
|
738
|
-
"type": "event"
|
|
739
|
-
},
|
|
740
|
-
{
|
|
741
|
-
"anonymous": false,
|
|
742
|
-
"inputs": [
|
|
743
|
-
{
|
|
744
|
-
"indexed": false,
|
|
745
|
-
"internalType": "address",
|
|
746
|
-
"name": "account",
|
|
747
|
-
"type": "address"
|
|
748
|
-
}
|
|
749
|
-
],
|
|
750
|
-
"name": "Paused",
|
|
751
|
-
"type": "event"
|
|
752
|
-
},
|
|
753
|
-
{
|
|
754
|
-
"anonymous": false,
|
|
755
|
-
"inputs": [
|
|
756
|
-
{
|
|
757
|
-
"indexed": false,
|
|
758
|
-
"internalType": "uint256",
|
|
759
|
-
"name": "oldPrimeRate",
|
|
760
|
-
"type": "uint256"
|
|
761
|
-
},
|
|
762
|
-
{
|
|
763
|
-
"indexed": false,
|
|
764
|
-
"internalType": "uint256",
|
|
765
|
-
"name": "newPrimeRate",
|
|
766
|
-
"type": "uint256"
|
|
767
|
-
}
|
|
768
|
-
],
|
|
769
|
-
"name": "PrimeRateUpdated",
|
|
770
|
-
"type": "event"
|
|
771
|
-
},
|
|
772
|
-
{
|
|
773
|
-
"anonymous": false,
|
|
774
|
-
"inputs": [
|
|
775
|
-
{
|
|
776
|
-
"indexed": false,
|
|
777
|
-
"internalType": "uint256",
|
|
778
|
-
"name": "oldValue",
|
|
779
|
-
"type": "uint256"
|
|
780
|
-
},
|
|
781
|
-
{
|
|
782
|
-
"indexed": false,
|
|
783
|
-
"internalType": "uint256",
|
|
784
|
-
"name": "newValue",
|
|
785
|
-
"type": "uint256"
|
|
786
|
-
}
|
|
787
|
-
],
|
|
788
|
-
"name": "ProtocolFeeRateUpdated",
|
|
789
|
-
"type": "event"
|
|
790
|
-
},
|
|
791
|
-
{
|
|
792
|
-
"anonymous": false,
|
|
793
|
-
"inputs": [
|
|
794
|
-
{
|
|
795
|
-
"indexed": false,
|
|
796
|
-
"internalType": "uint256",
|
|
797
|
-
"name": "protocolFee",
|
|
798
|
-
"type": "uint256"
|
|
799
|
-
},
|
|
800
|
-
{
|
|
801
|
-
"indexed": false,
|
|
802
|
-
"internalType": "uint256",
|
|
803
|
-
"name": "accumulatedProtocolFees",
|
|
804
|
-
"type": "uint256"
|
|
805
|
-
}
|
|
806
|
-
],
|
|
807
|
-
"name": "ProtocolFeesCollected",
|
|
808
|
-
"type": "event"
|
|
809
|
-
},
|
|
810
|
-
{
|
|
811
|
-
"anonymous": false,
|
|
812
|
-
"inputs": [
|
|
813
|
-
{
|
|
814
|
-
"indexed": true,
|
|
815
|
-
"internalType": "address",
|
|
816
|
-
"name": "feeCollector",
|
|
817
|
-
"type": "address"
|
|
818
|
-
},
|
|
819
|
-
{
|
|
820
|
-
"indexed": false,
|
|
821
|
-
"internalType": "uint256",
|
|
822
|
-
"name": "amount",
|
|
823
|
-
"type": "uint256"
|
|
824
|
-
}
|
|
825
|
-
],
|
|
826
|
-
"name": "ProtocolFeesWithdrawn",
|
|
827
|
-
"type": "event"
|
|
828
|
-
},
|
|
829
|
-
{
|
|
830
|
-
"anonymous": false,
|
|
831
|
-
"inputs": [
|
|
832
|
-
{
|
|
833
|
-
"indexed": true,
|
|
834
|
-
"internalType": "address",
|
|
835
|
-
"name": "user",
|
|
836
|
-
"type": "address"
|
|
837
|
-
},
|
|
838
|
-
{
|
|
839
|
-
"indexed": true,
|
|
840
|
-
"internalType": "address",
|
|
841
|
-
"name": "onBehalfOf",
|
|
842
|
-
"type": "address"
|
|
843
|
-
},
|
|
844
|
-
{
|
|
845
|
-
"indexed": false,
|
|
846
|
-
"internalType": "uint256",
|
|
847
|
-
"name": "amount",
|
|
848
|
-
"type": "uint256"
|
|
849
|
-
}
|
|
850
|
-
],
|
|
851
|
-
"name": "Repay",
|
|
852
|
-
"type": "event"
|
|
853
|
-
},
|
|
854
|
-
{
|
|
855
|
-
"anonymous": false,
|
|
856
|
-
"inputs": [
|
|
857
|
-
{
|
|
858
|
-
"indexed": false,
|
|
859
|
-
"internalType": "uint256",
|
|
860
|
-
"name": "liquidityIndex",
|
|
861
|
-
"type": "uint256"
|
|
862
|
-
},
|
|
863
|
-
{
|
|
864
|
-
"indexed": false,
|
|
865
|
-
"internalType": "uint256",
|
|
866
|
-
"name": "usageIndex",
|
|
867
|
-
"type": "uint256"
|
|
868
|
-
}
|
|
869
|
-
],
|
|
870
|
-
"name": "ReserveInterestsUpdated",
|
|
871
|
-
"type": "event"
|
|
872
|
-
},
|
|
873
|
-
{
|
|
874
|
-
"anonymous": false,
|
|
875
|
-
"inputs": [
|
|
876
|
-
{
|
|
877
|
-
"indexed": true,
|
|
878
|
-
"internalType": "address",
|
|
879
|
-
"name": "user",
|
|
880
|
-
"type": "address"
|
|
881
|
-
},
|
|
882
|
-
{
|
|
883
|
-
"indexed": true,
|
|
884
|
-
"internalType": "address",
|
|
885
|
-
"name": "token",
|
|
886
|
-
"type": "address"
|
|
887
|
-
},
|
|
888
|
-
{
|
|
889
|
-
"indexed": false,
|
|
890
|
-
"internalType": "uint256",
|
|
891
|
-
"name": "amount",
|
|
892
|
-
"type": "uint256"
|
|
893
|
-
}
|
|
894
|
-
],
|
|
895
|
-
"name": "RewardClaimed",
|
|
896
|
-
"type": "event"
|
|
897
|
-
},
|
|
898
|
-
{
|
|
899
|
-
"anonymous": false,
|
|
900
|
-
"inputs": [
|
|
901
|
-
{
|
|
902
|
-
"indexed": true,
|
|
903
|
-
"internalType": "address",
|
|
904
|
-
"name": "user",
|
|
905
|
-
"type": "address"
|
|
906
|
-
},
|
|
907
|
-
{
|
|
908
|
-
"indexed": false,
|
|
909
|
-
"internalType": "uint256",
|
|
910
|
-
"name": "amount",
|
|
911
|
-
"type": "uint256"
|
|
912
|
-
}
|
|
913
|
-
],
|
|
914
|
-
"name": "RewardDistributed",
|
|
915
|
-
"type": "event"
|
|
916
|
-
},
|
|
917
|
-
{
|
|
918
|
-
"anonymous": false,
|
|
919
|
-
"inputs": [
|
|
920
|
-
{
|
|
921
|
-
"indexed": true,
|
|
922
|
-
"internalType": "address",
|
|
923
|
-
"name": "token",
|
|
924
|
-
"type": "address"
|
|
925
|
-
},
|
|
926
|
-
{
|
|
927
|
-
"indexed": false,
|
|
928
|
-
"internalType": "uint256",
|
|
929
|
-
"name": "rewardRate",
|
|
930
|
-
"type": "uint256"
|
|
931
|
-
},
|
|
932
|
-
{
|
|
933
|
-
"indexed": false,
|
|
934
|
-
"internalType": "uint256",
|
|
935
|
-
"name": "duration",
|
|
936
|
-
"type": "uint256"
|
|
937
|
-
}
|
|
938
|
-
],
|
|
939
|
-
"name": "RewardParametersUpdated",
|
|
940
|
-
"type": "event"
|
|
941
|
-
},
|
|
942
|
-
{
|
|
943
|
-
"anonymous": false,
|
|
944
|
-
"inputs": [
|
|
945
|
-
{
|
|
946
|
-
"indexed": true,
|
|
947
|
-
"internalType": "address",
|
|
948
|
-
"name": "token",
|
|
949
|
-
"type": "address"
|
|
950
|
-
},
|
|
951
|
-
{
|
|
952
|
-
"indexed": false,
|
|
953
|
-
"internalType": "uint256",
|
|
954
|
-
"name": "rewardRate",
|
|
955
|
-
"type": "uint256"
|
|
956
|
-
},
|
|
957
|
-
{
|
|
958
|
-
"indexed": false,
|
|
959
|
-
"internalType": "uint256",
|
|
960
|
-
"name": "duration",
|
|
961
|
-
"type": "uint256"
|
|
962
|
-
}
|
|
963
|
-
],
|
|
964
|
-
"name": "RewardTokenAdded",
|
|
965
|
-
"type": "event"
|
|
966
|
-
},
|
|
967
|
-
{
|
|
968
|
-
"anonymous": false,
|
|
969
|
-
"inputs": [
|
|
970
|
-
{
|
|
971
|
-
"indexed": true,
|
|
972
|
-
"internalType": "address",
|
|
973
|
-
"name": "user",
|
|
974
|
-
"type": "address"
|
|
975
|
-
},
|
|
976
|
-
{
|
|
977
|
-
"indexed": false,
|
|
978
|
-
"internalType": "uint256",
|
|
979
|
-
"name": "amount",
|
|
980
|
-
"type": "uint256"
|
|
981
|
-
}
|
|
982
|
-
],
|
|
983
|
-
"name": "RewardTokensDeposited",
|
|
984
|
-
"type": "event"
|
|
985
|
-
},
|
|
986
|
-
{
|
|
987
|
-
"anonymous": false,
|
|
988
|
-
"inputs": [
|
|
989
|
-
{
|
|
990
|
-
"indexed": true,
|
|
991
|
-
"internalType": "address",
|
|
992
|
-
"name": "oldStabilityPool",
|
|
993
|
-
"type": "address"
|
|
994
|
-
},
|
|
995
|
-
{
|
|
996
|
-
"indexed": true,
|
|
997
|
-
"internalType": "address",
|
|
998
|
-
"name": "newStabilityPool",
|
|
999
|
-
"type": "address"
|
|
1000
|
-
}
|
|
1001
|
-
],
|
|
1002
|
-
"name": "StabilityPoolUpdated",
|
|
1003
|
-
"type": "event"
|
|
1004
|
-
},
|
|
1005
|
-
{
|
|
1006
|
-
"anonymous": false,
|
|
1007
|
-
"inputs": [
|
|
1008
|
-
{
|
|
1009
|
-
"indexed": false,
|
|
1010
|
-
"internalType": "address",
|
|
1011
|
-
"name": "account",
|
|
1012
|
-
"type": "address"
|
|
1013
|
-
}
|
|
1014
|
-
],
|
|
1015
|
-
"name": "Unpaused",
|
|
1016
|
-
"type": "event"
|
|
1017
|
-
},
|
|
1018
|
-
{
|
|
1019
|
-
"anonymous": false,
|
|
1020
|
-
"inputs": [
|
|
1021
|
-
{
|
|
1022
|
-
"indexed": false,
|
|
1023
|
-
"internalType": "uint256",
|
|
1024
|
-
"name": "amount",
|
|
1025
|
-
"type": "uint256"
|
|
1026
|
-
}
|
|
1027
|
-
],
|
|
1028
|
-
"name": "VaultRewardsClaimed",
|
|
1029
|
-
"type": "event"
|
|
1030
|
-
},
|
|
1031
|
-
{
|
|
1032
|
-
"anonymous": false,
|
|
1033
|
-
"inputs": [
|
|
1034
|
-
{
|
|
1035
|
-
"indexed": true,
|
|
1036
|
-
"internalType": "address",
|
|
1037
|
-
"name": "oldVault",
|
|
1038
|
-
"type": "address"
|
|
1039
|
-
},
|
|
1040
|
-
{
|
|
1041
|
-
"indexed": true,
|
|
1042
|
-
"internalType": "address",
|
|
1043
|
-
"name": "newVault",
|
|
1044
|
-
"type": "address"
|
|
1045
|
-
}
|
|
1046
|
-
],
|
|
1047
|
-
"name": "VaultUpdated",
|
|
1048
|
-
"type": "event"
|
|
1049
|
-
},
|
|
1050
|
-
{
|
|
1051
|
-
"anonymous": false,
|
|
1052
|
-
"inputs": [
|
|
1053
|
-
{
|
|
1054
|
-
"indexed": true,
|
|
1055
|
-
"internalType": "address",
|
|
1056
|
-
"name": "vault",
|
|
1057
|
-
"type": "address"
|
|
1058
|
-
}
|
|
1059
|
-
],
|
|
1060
|
-
"name": "VaultWithdrawalFailed",
|
|
1061
|
-
"type": "event"
|
|
1062
|
-
},
|
|
1063
|
-
{
|
|
1064
|
-
"anonymous": false,
|
|
1065
|
-
"inputs": [
|
|
1066
|
-
{
|
|
1067
|
-
"indexed": true,
|
|
1068
|
-
"internalType": "address",
|
|
1069
|
-
"name": "user",
|
|
1070
|
-
"type": "address"
|
|
1071
|
-
},
|
|
1072
|
-
{
|
|
1073
|
-
"indexed": false,
|
|
1074
|
-
"internalType": "uint256",
|
|
1075
|
-
"name": "amount",
|
|
1076
|
-
"type": "uint256"
|
|
1077
|
-
}
|
|
1078
|
-
],
|
|
1079
|
-
"name": "Withdraw",
|
|
1080
|
-
"type": "event"
|
|
1081
|
-
},
|
|
1082
|
-
{
|
|
1083
|
-
"anonymous": false,
|
|
1084
|
-
"inputs": [
|
|
1085
|
-
{
|
|
1086
|
-
"indexed": true,
|
|
1087
|
-
"internalType": "address",
|
|
1088
|
-
"name": "user",
|
|
1089
|
-
"type": "address"
|
|
1090
|
-
},
|
|
1091
|
-
{
|
|
1092
|
-
"indexed": false,
|
|
1093
|
-
"internalType": "uint256",
|
|
1094
|
-
"name": "amount",
|
|
1095
|
-
"type": "uint256"
|
|
1096
|
-
},
|
|
1097
|
-
{
|
|
1098
|
-
"indexed": false,
|
|
1099
|
-
"internalType": "uint256",
|
|
1100
|
-
"name": "liquidityBurned",
|
|
1101
|
-
"type": "uint256"
|
|
1102
|
-
}
|
|
1103
|
-
],
|
|
1104
|
-
"name": "Withdraw",
|
|
1105
|
-
"type": "event"
|
|
1106
|
-
},
|
|
1107
|
-
{
|
|
1108
|
-
"anonymous": false,
|
|
1109
|
-
"inputs": [
|
|
1110
|
-
{
|
|
1111
|
-
"indexed": false,
|
|
1112
|
-
"internalType": "bool",
|
|
1113
|
-
"name": "isPaused",
|
|
1114
|
-
"type": "bool"
|
|
1115
|
-
}
|
|
1116
|
-
],
|
|
1117
|
-
"name": "WithdrawalsPauseStatusChanged",
|
|
1118
|
-
"type": "event"
|
|
1119
|
-
},
|
|
1120
|
-
{
|
|
1121
|
-
"inputs": [],
|
|
1122
|
-
"name": "BASE_HEALTH_FACTOR_LIQUIDATION_THRESHOLD",
|
|
1123
|
-
"outputs": [
|
|
1124
|
-
{
|
|
1125
|
-
"internalType": "uint256",
|
|
1126
|
-
"name": "",
|
|
1127
|
-
"type": "uint256"
|
|
1128
|
-
}
|
|
1129
|
-
],
|
|
1130
|
-
"stateMutability": "view",
|
|
1131
|
-
"type": "function"
|
|
1132
|
-
},
|
|
1133
|
-
{
|
|
1134
|
-
"inputs": [],
|
|
1135
|
-
"name": "BASE_LIQUIDATION_GRACE_PERIOD",
|
|
1136
|
-
"outputs": [
|
|
1137
|
-
{
|
|
1138
|
-
"internalType": "uint256",
|
|
1139
|
-
"name": "",
|
|
1140
|
-
"type": "uint256"
|
|
1141
|
-
}
|
|
1142
|
-
],
|
|
1143
|
-
"stateMutability": "view",
|
|
1144
|
-
"type": "function"
|
|
1145
|
-
},
|
|
1146
|
-
{
|
|
1147
|
-
"inputs": [],
|
|
1148
|
-
"name": "BASE_LIQUIDATION_THRESHOLD",
|
|
1149
|
-
"outputs": [
|
|
1150
|
-
{
|
|
1151
|
-
"internalType": "uint256",
|
|
1152
|
-
"name": "",
|
|
1153
|
-
"type": "uint256"
|
|
1154
|
-
}
|
|
1155
|
-
],
|
|
1156
|
-
"stateMutability": "view",
|
|
1157
|
-
"type": "function"
|
|
1158
|
-
},
|
|
1159
|
-
{
|
|
1160
|
-
"inputs": [
|
|
1161
|
-
{
|
|
1162
|
-
"internalType": "uint256",
|
|
1163
|
-
"name": "tokenId",
|
|
1164
|
-
"type": "uint256"
|
|
1165
|
-
},
|
|
1166
|
-
{
|
|
1167
|
-
"internalType": "uint256",
|
|
1168
|
-
"name": "amount",
|
|
1169
|
-
"type": "uint256"
|
|
1170
|
-
}
|
|
1171
|
-
],
|
|
1172
|
-
"name": "borrow",
|
|
1173
|
-
"outputs": [],
|
|
1174
|
-
"stateMutability": "nonpayable",
|
|
1175
|
-
"type": "function"
|
|
1176
|
-
},
|
|
1177
|
-
{
|
|
1178
|
-
"inputs": [
|
|
1179
|
-
{
|
|
1180
|
-
"internalType": "uint256",
|
|
1181
|
-
"name": "tokenId",
|
|
1182
|
-
"type": "uint256"
|
|
1183
|
-
},
|
|
1184
|
-
{
|
|
1185
|
-
"internalType": "uint256",
|
|
1186
|
-
"name": "amount",
|
|
1187
|
-
"type": "uint256"
|
|
1188
|
-
}
|
|
1189
|
-
],
|
|
1190
|
-
"name": "borrowWithInsurance",
|
|
1191
|
-
"outputs": [],
|
|
1192
|
-
"stateMutability": "nonpayable",
|
|
1193
|
-
"type": "function"
|
|
1194
|
-
},
|
|
1195
|
-
{
|
|
1196
|
-
"inputs": [
|
|
1197
|
-
{
|
|
1198
|
-
"internalType": "address",
|
|
1199
|
-
"name": "userAddress",
|
|
1200
|
-
"type": "address"
|
|
1201
|
-
},
|
|
1202
|
-
{
|
|
1203
|
-
"internalType": "uint256",
|
|
1204
|
-
"name": "tokenId",
|
|
1205
|
-
"type": "uint256"
|
|
1206
|
-
}
|
|
1207
|
-
],
|
|
1208
|
-
"name": "calculateHealthFactor",
|
|
1209
|
-
"outputs": [
|
|
1210
|
-
{
|
|
1211
|
-
"internalType": "uint256",
|
|
1212
|
-
"name": "",
|
|
1213
|
-
"type": "uint256"
|
|
1214
|
-
}
|
|
1215
|
-
],
|
|
1216
|
-
"stateMutability": "view",
|
|
1217
|
-
"type": "function"
|
|
1218
|
-
},
|
|
1219
|
-
{
|
|
1220
|
-
"inputs": [
|
|
1221
|
-
{
|
|
1222
|
-
"internalType": "address",
|
|
1223
|
-
"name": "user",
|
|
1224
|
-
"type": "address"
|
|
1225
|
-
},
|
|
1226
|
-
{
|
|
1227
|
-
"internalType": "uint256",
|
|
1228
|
-
"name": "tokenId",
|
|
1229
|
-
"type": "uint256"
|
|
1230
|
-
},
|
|
1231
|
-
{
|
|
1232
|
-
"internalType": "uint256",
|
|
1233
|
-
"name": "amount",
|
|
1234
|
-
"type": "uint256"
|
|
1235
|
-
}
|
|
1236
|
-
],
|
|
1237
|
-
"name": "calculateInsuranceFee",
|
|
1238
|
-
"outputs": [
|
|
1239
|
-
{
|
|
1240
|
-
"internalType": "uint256",
|
|
1241
|
-
"name": "",
|
|
1242
|
-
"type": "uint256"
|
|
1243
|
-
}
|
|
1244
|
-
],
|
|
1245
|
-
"stateMutability": "view",
|
|
1246
|
-
"type": "function"
|
|
1247
|
-
},
|
|
1248
|
-
{
|
|
1249
|
-
"inputs": [],
|
|
1250
|
-
"name": "canPaybackDebt",
|
|
1251
|
-
"outputs": [
|
|
1252
|
-
{
|
|
1253
|
-
"internalType": "bool",
|
|
1254
|
-
"name": "",
|
|
1255
|
-
"type": "bool"
|
|
1256
|
-
}
|
|
1257
|
-
],
|
|
1258
|
-
"stateMutability": "view",
|
|
1259
|
-
"type": "function"
|
|
1260
|
-
},
|
|
1261
|
-
{
|
|
1262
|
-
"inputs": [],
|
|
1263
|
-
"name": "claimCollectorRewards",
|
|
1264
|
-
"outputs": [
|
|
1265
|
-
{
|
|
1266
|
-
"internalType": "uint256",
|
|
1267
|
-
"name": "",
|
|
1268
|
-
"type": "uint256"
|
|
1269
|
-
}
|
|
1270
|
-
],
|
|
1271
|
-
"stateMutability": "nonpayable",
|
|
1272
|
-
"type": "function"
|
|
1273
|
-
},
|
|
1274
|
-
{
|
|
1275
|
-
"inputs": [],
|
|
1276
|
-
"name": "claimReward",
|
|
1277
|
-
"outputs": [
|
|
1278
|
-
{
|
|
1279
|
-
"internalType": "bool",
|
|
1280
|
-
"name": "",
|
|
1281
|
-
"type": "bool"
|
|
1282
|
-
}
|
|
1283
|
-
],
|
|
1284
|
-
"stateMutability": "nonpayable",
|
|
1285
|
-
"type": "function"
|
|
1286
|
-
},
|
|
1287
|
-
{
|
|
1288
|
-
"inputs": [
|
|
1289
|
-
{
|
|
1290
|
-
"internalType": "uint256",
|
|
1291
|
-
"name": "tokenId",
|
|
1292
|
-
"type": "uint256"
|
|
1293
|
-
}
|
|
1294
|
-
],
|
|
1295
|
-
"name": "closeLiquidation",
|
|
1296
|
-
"outputs": [],
|
|
1297
|
-
"stateMutability": "nonpayable",
|
|
1298
|
-
"type": "function"
|
|
1299
|
-
},
|
|
1300
|
-
{
|
|
1301
|
-
"inputs": [],
|
|
1302
|
-
"name": "debtToken",
|
|
1303
|
-
"outputs": [
|
|
1304
|
-
{
|
|
1305
|
-
"internalType": "contract IDebtToken",
|
|
1306
|
-
"name": "",
|
|
1307
|
-
"type": "address"
|
|
1308
|
-
}
|
|
1309
|
-
],
|
|
1310
|
-
"stateMutability": "view",
|
|
1311
|
-
"type": "function"
|
|
1312
|
-
},
|
|
1313
|
-
{
|
|
1314
|
-
"inputs": [
|
|
1315
|
-
{
|
|
1316
|
-
"internalType": "uint256",
|
|
1317
|
-
"name": "amount",
|
|
1318
|
-
"type": "uint256"
|
|
1319
|
-
}
|
|
1320
|
-
],
|
|
1321
|
-
"name": "deposit",
|
|
1322
|
-
"outputs": [],
|
|
1323
|
-
"stateMutability": "nonpayable",
|
|
1324
|
-
"type": "function"
|
|
1325
|
-
},
|
|
1326
|
-
{
|
|
1327
|
-
"inputs": [
|
|
1328
|
-
{
|
|
1329
|
-
"internalType": "uint256",
|
|
1330
|
-
"name": "tokenId",
|
|
1331
|
-
"type": "uint256"
|
|
1332
|
-
}
|
|
1333
|
-
],
|
|
1334
|
-
"name": "depositNFT",
|
|
1335
|
-
"outputs": [],
|
|
1336
|
-
"stateMutability": "nonpayable",
|
|
1337
|
-
"type": "function"
|
|
1338
|
-
},
|
|
1339
|
-
{
|
|
1340
|
-
"inputs": [
|
|
1341
|
-
{
|
|
1342
|
-
"internalType": "uint256",
|
|
1343
|
-
"name": "amount",
|
|
1344
|
-
"type": "uint256"
|
|
1345
|
-
}
|
|
1346
|
-
],
|
|
1347
|
-
"name": "depositRewardTokens",
|
|
1348
|
-
"outputs": [],
|
|
1349
|
-
"stateMutability": "nonpayable",
|
|
1350
|
-
"type": "function"
|
|
1351
|
-
},
|
|
1352
|
-
{
|
|
1353
|
-
"inputs": [],
|
|
1354
|
-
"name": "feeCollector",
|
|
1355
|
-
"outputs": [
|
|
1356
|
-
{
|
|
1357
|
-
"internalType": "address",
|
|
1358
|
-
"name": "",
|
|
1359
|
-
"type": "address"
|
|
1360
|
-
}
|
|
1361
|
-
],
|
|
1362
|
-
"stateMutability": "view",
|
|
1363
|
-
"type": "function"
|
|
1364
|
-
},
|
|
1365
|
-
{
|
|
1366
|
-
"inputs": [
|
|
1367
|
-
{
|
|
1368
|
-
"internalType": "address",
|
|
1369
|
-
"name": "userAddress",
|
|
1370
|
-
"type": "address"
|
|
1371
|
-
},
|
|
1372
|
-
{
|
|
1373
|
-
"internalType": "uint256",
|
|
1374
|
-
"name": "tokenId",
|
|
1375
|
-
"type": "uint256"
|
|
1376
|
-
}
|
|
1377
|
-
],
|
|
1378
|
-
"name": "finalizeLiquidation",
|
|
1379
|
-
"outputs": [],
|
|
1380
|
-
"stateMutability": "nonpayable",
|
|
1381
|
-
"type": "function"
|
|
1382
|
-
},
|
|
1383
|
-
{
|
|
1384
|
-
"inputs": [
|
|
1385
|
-
{
|
|
1386
|
-
"internalType": "address",
|
|
1387
|
-
"name": "userAddress",
|
|
1388
|
-
"type": "address"
|
|
1389
|
-
}
|
|
1390
|
-
],
|
|
1391
|
-
"name": "getAllUserData",
|
|
1392
|
-
"outputs": [
|
|
1393
|
-
{
|
|
1394
|
-
"components": [
|
|
1395
|
-
{
|
|
1396
|
-
"internalType": "uint256[]",
|
|
1397
|
-
"name": "nftTokenIds",
|
|
1398
|
-
"type": "uint256[]"
|
|
1399
|
-
},
|
|
1400
|
-
{
|
|
1401
|
-
"internalType": "uint256",
|
|
1402
|
-
"name": "scaledDebtBalance",
|
|
1403
|
-
"type": "uint256"
|
|
1404
|
-
},
|
|
1405
|
-
{
|
|
1406
|
-
"internalType": "uint256",
|
|
1407
|
-
"name": "collateralValue",
|
|
1408
|
-
"type": "uint256"
|
|
1409
|
-
},
|
|
1410
|
-
{
|
|
1411
|
-
"components": [
|
|
1412
|
-
{
|
|
1413
|
-
"internalType": "uint256",
|
|
1414
|
-
"name": "rawDebtBalance",
|
|
1415
|
-
"type": "uint256"
|
|
1416
|
-
},
|
|
1417
|
-
{
|
|
1418
|
-
"internalType": "uint256",
|
|
1419
|
-
"name": "scaledDebtBalance",
|
|
1420
|
-
"type": "uint256"
|
|
1421
|
-
},
|
|
1422
|
-
{
|
|
1423
|
-
"internalType": "uint256",
|
|
1424
|
-
"name": "healthFactor",
|
|
1425
|
-
"type": "uint256"
|
|
1426
|
-
},
|
|
1427
|
-
{
|
|
1428
|
-
"internalType": "bool",
|
|
1429
|
-
"name": "isUnderLiquidation",
|
|
1430
|
-
"type": "bool"
|
|
1431
|
-
},
|
|
1432
|
-
{
|
|
1433
|
-
"internalType": "uint256",
|
|
1434
|
-
"name": "liquidationStartTime",
|
|
1435
|
-
"type": "uint256"
|
|
1436
|
-
},
|
|
1437
|
-
{
|
|
1438
|
-
"internalType": "uint256",
|
|
1439
|
-
"name": "positionIndex",
|
|
1440
|
-
"type": "uint256"
|
|
1441
|
-
},
|
|
1442
|
-
{
|
|
1443
|
-
"internalType": "bool",
|
|
1444
|
-
"name": "isInsured",
|
|
1445
|
-
"type": "bool"
|
|
1446
|
-
}
|
|
1447
|
-
],
|
|
1448
|
-
"internalType": "struct ILendingPool.NFTPositionView[]",
|
|
1449
|
-
"name": "positions",
|
|
1450
|
-
"type": "tuple[]"
|
|
1451
|
-
}
|
|
1452
|
-
],
|
|
1453
|
-
"internalType": "struct ILendingPool.UserDataView",
|
|
1454
|
-
"name": "",
|
|
1455
|
-
"type": "tuple"
|
|
1456
|
-
}
|
|
1457
|
-
],
|
|
1458
|
-
"stateMutability": "view",
|
|
1459
|
-
"type": "function"
|
|
1460
|
-
},
|
|
1461
|
-
{
|
|
1462
|
-
"inputs": [
|
|
1463
|
-
{
|
|
1464
|
-
"internalType": "address",
|
|
1465
|
-
"name": "user",
|
|
1466
|
-
"type": "address"
|
|
1467
|
-
}
|
|
1468
|
-
],
|
|
1469
|
-
"name": "getEligibleUserDeposits",
|
|
1470
|
-
"outputs": [
|
|
1471
|
-
{
|
|
1472
|
-
"internalType": "uint256",
|
|
1473
|
-
"name": "",
|
|
1474
|
-
"type": "uint256"
|
|
1475
|
-
}
|
|
1476
|
-
],
|
|
1477
|
-
"stateMutability": "view",
|
|
1478
|
-
"type": "function"
|
|
1479
|
-
},
|
|
1480
|
-
{
|
|
1481
|
-
"inputs": [
|
|
1482
|
-
{
|
|
1483
|
-
"internalType": "uint256",
|
|
1484
|
-
"name": "tokenId",
|
|
1485
|
-
"type": "uint256"
|
|
1486
|
-
}
|
|
1487
|
-
],
|
|
1488
|
-
"name": "getNFTPrice",
|
|
1489
|
-
"outputs": [
|
|
1490
|
-
{
|
|
1491
|
-
"internalType": "uint256",
|
|
1492
|
-
"name": "",
|
|
1493
|
-
"type": "uint256"
|
|
1494
|
-
}
|
|
1495
|
-
],
|
|
1496
|
-
"stateMutability": "view",
|
|
1497
|
-
"type": "function"
|
|
1498
|
-
},
|
|
1499
|
-
{
|
|
1500
|
-
"inputs": [],
|
|
1501
|
-
"name": "getNormalizedDebt",
|
|
1502
|
-
"outputs": [
|
|
1503
|
-
{
|
|
1504
|
-
"internalType": "uint256",
|
|
1505
|
-
"name": "",
|
|
1506
|
-
"type": "uint256"
|
|
1507
|
-
}
|
|
1508
|
-
],
|
|
1509
|
-
"stateMutability": "view",
|
|
1510
|
-
"type": "function"
|
|
1511
|
-
},
|
|
1512
|
-
{
|
|
1513
|
-
"inputs": [],
|
|
1514
|
-
"name": "getNormalizedIncome",
|
|
1515
|
-
"outputs": [
|
|
1516
|
-
{
|
|
1517
|
-
"internalType": "uint256",
|
|
1518
|
-
"name": "",
|
|
1519
|
-
"type": "uint256"
|
|
1520
|
-
}
|
|
1521
|
-
],
|
|
1522
|
-
"stateMutability": "view",
|
|
1523
|
-
"type": "function"
|
|
1524
|
-
},
|
|
1525
|
-
{
|
|
1526
|
-
"inputs": [
|
|
1527
|
-
{
|
|
1528
|
-
"internalType": "address",
|
|
1529
|
-
"name": "user",
|
|
1530
|
-
"type": "address"
|
|
1531
|
-
}
|
|
1532
|
-
],
|
|
1533
|
-
"name": "getPendingReward",
|
|
1534
|
-
"outputs": [
|
|
1535
|
-
{
|
|
1536
|
-
"internalType": "uint256",
|
|
1537
|
-
"name": "",
|
|
1538
|
-
"type": "uint256"
|
|
1539
|
-
}
|
|
1540
|
-
],
|
|
1541
|
-
"stateMutability": "view",
|
|
1542
|
-
"type": "function"
|
|
1543
|
-
},
|
|
1544
|
-
{
|
|
1545
|
-
"inputs": [
|
|
1546
|
-
{
|
|
1547
|
-
"internalType": "address",
|
|
1548
|
-
"name": "user",
|
|
1549
|
-
"type": "address"
|
|
1550
|
-
},
|
|
1551
|
-
{
|
|
1552
|
-
"internalType": "uint256",
|
|
1553
|
-
"name": "tokenId",
|
|
1554
|
-
"type": "uint256"
|
|
1555
|
-
}
|
|
1556
|
-
],
|
|
1557
|
-
"name": "getPosition",
|
|
1558
|
-
"outputs": [
|
|
1559
|
-
{
|
|
1560
|
-
"components": [
|
|
1561
|
-
{
|
|
1562
|
-
"internalType": "uint256",
|
|
1563
|
-
"name": "rawDebtBalance",
|
|
1564
|
-
"type": "uint256"
|
|
1565
|
-
},
|
|
1566
|
-
{
|
|
1567
|
-
"internalType": "bool",
|
|
1568
|
-
"name": "isUnderLiquidation",
|
|
1569
|
-
"type": "bool"
|
|
1570
|
-
},
|
|
1571
|
-
{
|
|
1572
|
-
"internalType": "uint256",
|
|
1573
|
-
"name": "liquidationStartTime",
|
|
1574
|
-
"type": "uint256"
|
|
1575
|
-
},
|
|
1576
|
-
{
|
|
1577
|
-
"internalType": "uint256",
|
|
1578
|
-
"name": "positionIndex",
|
|
1579
|
-
"type": "uint256"
|
|
1580
|
-
},
|
|
1581
|
-
{
|
|
1582
|
-
"internalType": "bool",
|
|
1583
|
-
"name": "isInsured",
|
|
1584
|
-
"type": "bool"
|
|
1585
|
-
},
|
|
1586
|
-
{
|
|
1587
|
-
"internalType": "uint256",
|
|
1588
|
-
"name": "rawInsuredBalance",
|
|
1589
|
-
"type": "uint256"
|
|
1590
|
-
}
|
|
1591
|
-
],
|
|
1592
|
-
"internalType": "struct ILendingPool.NFTPosition",
|
|
1593
|
-
"name": "",
|
|
1594
|
-
"type": "tuple"
|
|
1595
|
-
}
|
|
1596
|
-
],
|
|
1597
|
-
"stateMutability": "view",
|
|
1598
|
-
"type": "function"
|
|
1599
|
-
},
|
|
1600
|
-
{
|
|
1601
|
-
"inputs": [
|
|
1602
|
-
{
|
|
1603
|
-
"internalType": "address",
|
|
1604
|
-
"name": "user",
|
|
1605
|
-
"type": "address"
|
|
1606
|
-
},
|
|
1607
|
-
{
|
|
1608
|
-
"internalType": "uint256",
|
|
1609
|
-
"name": "tokenId",
|
|
1610
|
-
"type": "uint256"
|
|
1611
|
-
}
|
|
1612
|
-
],
|
|
1613
|
-
"name": "getPositionData",
|
|
1614
|
-
"outputs": [
|
|
1615
|
-
{
|
|
1616
|
-
"internalType": "uint256",
|
|
1617
|
-
"name": "",
|
|
1618
|
-
"type": "uint256"
|
|
1619
|
-
},
|
|
1620
|
-
{
|
|
1621
|
-
"internalType": "uint256",
|
|
1622
|
-
"name": "",
|
|
1623
|
-
"type": "uint256"
|
|
1624
|
-
}
|
|
1625
|
-
],
|
|
1626
|
-
"stateMutability": "view",
|
|
1627
|
-
"type": "function"
|
|
1628
|
-
},
|
|
1629
|
-
{
|
|
1630
|
-
"inputs": [
|
|
1631
|
-
{
|
|
1632
|
-
"internalType": "address",
|
|
1633
|
-
"name": "userAddress",
|
|
1634
|
-
"type": "address"
|
|
1635
|
-
},
|
|
1636
|
-
{
|
|
1637
|
-
"internalType": "uint256",
|
|
1638
|
-
"name": "tokenId",
|
|
1639
|
-
"type": "uint256"
|
|
1640
|
-
}
|
|
1641
|
-
],
|
|
1642
|
-
"name": "getPositionDebt",
|
|
1643
|
-
"outputs": [
|
|
1644
|
-
{
|
|
1645
|
-
"internalType": "uint256",
|
|
1646
|
-
"name": "",
|
|
1647
|
-
"type": "uint256"
|
|
1648
|
-
}
|
|
1649
|
-
],
|
|
1650
|
-
"stateMutability": "view",
|
|
1651
|
-
"type": "function"
|
|
1652
|
-
},
|
|
1653
|
-
{
|
|
1654
|
-
"inputs": [
|
|
1655
|
-
{
|
|
1656
|
-
"internalType": "address",
|
|
1657
|
-
"name": "userAddress",
|
|
1658
|
-
"type": "address"
|
|
1659
|
-
},
|
|
1660
|
-
{
|
|
1661
|
-
"internalType": "uint256",
|
|
1662
|
-
"name": "tokenId",
|
|
1663
|
-
"type": "uint256"
|
|
1664
|
-
}
|
|
1665
|
-
],
|
|
1666
|
-
"name": "getPositionScaledDebt",
|
|
1667
|
-
"outputs": [
|
|
1668
|
-
{
|
|
1669
|
-
"internalType": "uint256",
|
|
1670
|
-
"name": "",
|
|
1671
|
-
"type": "uint256"
|
|
1672
|
-
}
|
|
1673
|
-
],
|
|
1674
|
-
"stateMutability": "view",
|
|
1675
|
-
"type": "function"
|
|
1676
|
-
},
|
|
1677
|
-
{
|
|
1678
|
-
"inputs": [
|
|
1679
|
-
{
|
|
1680
|
-
"internalType": "address",
|
|
1681
|
-
"name": "user",
|
|
1682
|
-
"type": "address"
|
|
1683
|
-
},
|
|
1684
|
-
{
|
|
1685
|
-
"internalType": "uint256",
|
|
1686
|
-
"name": "tokenId",
|
|
1687
|
-
"type": "uint256"
|
|
1688
|
-
}
|
|
1689
|
-
],
|
|
1690
|
-
"name": "getPositionView",
|
|
1691
|
-
"outputs": [
|
|
1692
|
-
{
|
|
1693
|
-
"components": [
|
|
1694
|
-
{
|
|
1695
|
-
"internalType": "uint256",
|
|
1696
|
-
"name": "rawDebtBalance",
|
|
1697
|
-
"type": "uint256"
|
|
1698
|
-
},
|
|
1699
|
-
{
|
|
1700
|
-
"internalType": "uint256",
|
|
1701
|
-
"name": "scaledDebtBalance",
|
|
1702
|
-
"type": "uint256"
|
|
1703
|
-
},
|
|
1704
|
-
{
|
|
1705
|
-
"internalType": "uint256",
|
|
1706
|
-
"name": "healthFactor",
|
|
1707
|
-
"type": "uint256"
|
|
1708
|
-
},
|
|
1709
|
-
{
|
|
1710
|
-
"internalType": "bool",
|
|
1711
|
-
"name": "isUnderLiquidation",
|
|
1712
|
-
"type": "bool"
|
|
1713
|
-
},
|
|
1714
|
-
{
|
|
1715
|
-
"internalType": "uint256",
|
|
1716
|
-
"name": "liquidationStartTime",
|
|
1717
|
-
"type": "uint256"
|
|
1718
|
-
},
|
|
1719
|
-
{
|
|
1720
|
-
"internalType": "uint256",
|
|
1721
|
-
"name": "positionIndex",
|
|
1722
|
-
"type": "uint256"
|
|
1723
|
-
},
|
|
1724
|
-
{
|
|
1725
|
-
"internalType": "bool",
|
|
1726
|
-
"name": "isInsured",
|
|
1727
|
-
"type": "bool"
|
|
1728
|
-
}
|
|
1729
|
-
],
|
|
1730
|
-
"internalType": "struct ILendingPool.NFTPositionView",
|
|
1731
|
-
"name": "",
|
|
1732
|
-
"type": "tuple"
|
|
1733
|
-
}
|
|
1734
|
-
],
|
|
1735
|
-
"stateMutability": "view",
|
|
1736
|
-
"type": "function"
|
|
1737
|
-
},
|
|
1738
|
-
{
|
|
1739
|
-
"inputs": [
|
|
1740
|
-
{
|
|
1741
|
-
"internalType": "address",
|
|
1742
|
-
"name": "userAddress",
|
|
1743
|
-
"type": "address"
|
|
1744
|
-
}
|
|
1745
|
-
],
|
|
1746
|
-
"name": "getPositionsScaledDebt",
|
|
1747
|
-
"outputs": [
|
|
1748
|
-
{
|
|
1749
|
-
"internalType": "uint256",
|
|
1750
|
-
"name": "",
|
|
1751
|
-
"type": "uint256"
|
|
1752
|
-
}
|
|
1753
|
-
],
|
|
1754
|
-
"stateMutability": "view",
|
|
1755
|
-
"type": "function"
|
|
1756
|
-
},
|
|
1757
|
-
{
|
|
1758
|
-
"inputs": [],
|
|
1759
|
-
"name": "getPrimeRate",
|
|
1760
|
-
"outputs": [
|
|
1761
|
-
{
|
|
1762
|
-
"internalType": "uint256",
|
|
1763
|
-
"name": "",
|
|
1764
|
-
"type": "uint256"
|
|
1765
|
-
}
|
|
1766
|
-
],
|
|
1767
|
-
"stateMutability": "view",
|
|
1768
|
-
"type": "function"
|
|
1769
|
-
},
|
|
1770
|
-
{
|
|
1771
|
-
"inputs": [],
|
|
1772
|
-
"name": "getRAACNFTAddress",
|
|
1773
|
-
"outputs": [
|
|
1774
|
-
{
|
|
1775
|
-
"internalType": "address",
|
|
1776
|
-
"name": "",
|
|
1777
|
-
"type": "address"
|
|
1778
|
-
}
|
|
1779
|
-
],
|
|
1780
|
-
"stateMutability": "view",
|
|
1781
|
-
"type": "function"
|
|
1782
|
-
},
|
|
1783
|
-
{
|
|
1784
|
-
"inputs": [],
|
|
1785
|
-
"name": "getReserveRateData",
|
|
1786
|
-
"outputs": [
|
|
1787
|
-
{
|
|
1788
|
-
"components": [
|
|
1789
|
-
{
|
|
1790
|
-
"internalType": "uint256",
|
|
1791
|
-
"name": "currentLiquidityRate",
|
|
1792
|
-
"type": "uint256"
|
|
1793
|
-
},
|
|
1794
|
-
{
|
|
1795
|
-
"internalType": "uint256",
|
|
1796
|
-
"name": "currentUsageRate",
|
|
1797
|
-
"type": "uint256"
|
|
1798
|
-
},
|
|
1799
|
-
{
|
|
1800
|
-
"internalType": "uint256",
|
|
1801
|
-
"name": "primeRate",
|
|
1802
|
-
"type": "uint256"
|
|
1803
|
-
},
|
|
1804
|
-
{
|
|
1805
|
-
"internalType": "uint256",
|
|
1806
|
-
"name": "baseRate",
|
|
1807
|
-
"type": "uint256"
|
|
1808
|
-
},
|
|
1809
|
-
{
|
|
1810
|
-
"internalType": "uint256",
|
|
1811
|
-
"name": "optimalRate",
|
|
1812
|
-
"type": "uint256"
|
|
1813
|
-
},
|
|
1814
|
-
{
|
|
1815
|
-
"internalType": "uint256",
|
|
1816
|
-
"name": "maxRate",
|
|
1817
|
-
"type": "uint256"
|
|
1818
|
-
},
|
|
1819
|
-
{
|
|
1820
|
-
"internalType": "uint256",
|
|
1821
|
-
"name": "optimalUtilizationRate",
|
|
1822
|
-
"type": "uint256"
|
|
1823
|
-
},
|
|
1824
|
-
{
|
|
1825
|
-
"internalType": "uint256",
|
|
1826
|
-
"name": "protocolFeeRate",
|
|
1827
|
-
"type": "uint256"
|
|
1828
|
-
}
|
|
1829
|
-
],
|
|
1830
|
-
"internalType": "struct ReserveLibrary.ReserveRateData",
|
|
1831
|
-
"name": "",
|
|
1832
|
-
"type": "tuple"
|
|
1833
|
-
}
|
|
1834
|
-
],
|
|
1835
|
-
"stateMutability": "view",
|
|
1836
|
-
"type": "function"
|
|
1837
|
-
},
|
|
1838
|
-
{
|
|
1839
|
-
"inputs": [],
|
|
1840
|
-
"name": "getReserveState",
|
|
1841
|
-
"outputs": [
|
|
1842
|
-
{
|
|
1843
|
-
"components": [
|
|
1844
|
-
{
|
|
1845
|
-
"internalType": "address",
|
|
1846
|
-
"name": "reserveRTokenAddress",
|
|
1847
|
-
"type": "address"
|
|
1848
|
-
},
|
|
1849
|
-
{
|
|
1850
|
-
"internalType": "address",
|
|
1851
|
-
"name": "reserveAssetAddress",
|
|
1852
|
-
"type": "address"
|
|
1853
|
-
},
|
|
1854
|
-
{
|
|
1855
|
-
"internalType": "address",
|
|
1856
|
-
"name": "reserveDebtTokenAddress",
|
|
1857
|
-
"type": "address"
|
|
1858
|
-
},
|
|
1859
|
-
{
|
|
1860
|
-
"internalType": "uint256",
|
|
1861
|
-
"name": "totalLiquidity",
|
|
1862
|
-
"type": "uint256"
|
|
1863
|
-
},
|
|
1864
|
-
{
|
|
1865
|
-
"internalType": "uint256",
|
|
1866
|
-
"name": "totalUsage",
|
|
1867
|
-
"type": "uint256"
|
|
1868
|
-
},
|
|
1869
|
-
{
|
|
1870
|
-
"internalType": "uint128",
|
|
1871
|
-
"name": "liquidityIndex",
|
|
1872
|
-
"type": "uint128"
|
|
1873
|
-
},
|
|
1874
|
-
{
|
|
1875
|
-
"internalType": "uint128",
|
|
1876
|
-
"name": "usageIndex",
|
|
1877
|
-
"type": "uint128"
|
|
1878
|
-
},
|
|
1879
|
-
{
|
|
1880
|
-
"internalType": "uint40",
|
|
1881
|
-
"name": "lastUpdateTimestamp",
|
|
1882
|
-
"type": "uint40"
|
|
1883
|
-
}
|
|
1884
|
-
],
|
|
1885
|
-
"internalType": "struct ReserveLibrary.ReserveData",
|
|
1886
|
-
"name": "",
|
|
1887
|
-
"type": "tuple"
|
|
1888
|
-
}
|
|
1889
|
-
],
|
|
1890
|
-
"stateMutability": "view",
|
|
1891
|
-
"type": "function"
|
|
1892
|
-
},
|
|
1893
|
-
{
|
|
1894
|
-
"inputs": [],
|
|
1895
|
-
"name": "getUnclaimedVaultRewards",
|
|
1896
|
-
"outputs": [
|
|
1897
|
-
{
|
|
1898
|
-
"internalType": "uint256",
|
|
1899
|
-
"name": "",
|
|
1900
|
-
"type": "uint256"
|
|
1901
|
-
}
|
|
1902
|
-
],
|
|
1903
|
-
"stateMutability": "view",
|
|
1904
|
-
"type": "function"
|
|
1905
|
-
},
|
|
1906
|
-
{
|
|
1907
|
-
"inputs": [
|
|
1908
|
-
{
|
|
1909
|
-
"internalType": "address",
|
|
1910
|
-
"name": "user",
|
|
1911
|
-
"type": "address"
|
|
1912
|
-
},
|
|
1913
|
-
{
|
|
1914
|
-
"internalType": "uint256",
|
|
1915
|
-
"name": "tokenId",
|
|
1916
|
-
"type": "uint256"
|
|
1917
|
-
}
|
|
1918
|
-
],
|
|
1919
|
-
"name": "getUninsuredBalance",
|
|
1920
|
-
"outputs": [
|
|
1921
|
-
{
|
|
1922
|
-
"internalType": "uint256",
|
|
1923
|
-
"name": "",
|
|
1924
|
-
"type": "uint256"
|
|
1925
|
-
}
|
|
1926
|
-
],
|
|
1927
|
-
"stateMutability": "view",
|
|
1928
|
-
"type": "function"
|
|
1929
|
-
},
|
|
1930
|
-
{
|
|
1931
|
-
"inputs": [
|
|
1932
|
-
{
|
|
1933
|
-
"internalType": "address",
|
|
1934
|
-
"name": "userAddress",
|
|
1935
|
-
"type": "address"
|
|
1936
|
-
}
|
|
1937
|
-
],
|
|
1938
|
-
"name": "getUserCollateralValue",
|
|
1939
|
-
"outputs": [
|
|
1940
|
-
{
|
|
1941
|
-
"internalType": "uint256",
|
|
1942
|
-
"name": "",
|
|
1943
|
-
"type": "uint256"
|
|
1944
|
-
}
|
|
1945
|
-
],
|
|
1946
|
-
"stateMutability": "view",
|
|
1947
|
-
"type": "function"
|
|
1948
|
-
},
|
|
1949
|
-
{
|
|
1950
|
-
"inputs": [
|
|
1951
|
-
{
|
|
1952
|
-
"internalType": "address",
|
|
1953
|
-
"name": "userAddress",
|
|
1954
|
-
"type": "address"
|
|
1955
|
-
}
|
|
1956
|
-
],
|
|
1957
|
-
"name": "getUserDebt",
|
|
1958
|
-
"outputs": [
|
|
1959
|
-
{
|
|
1960
|
-
"internalType": "uint256",
|
|
1961
|
-
"name": "",
|
|
1962
|
-
"type": "uint256"
|
|
1963
|
-
}
|
|
1964
|
-
],
|
|
1965
|
-
"stateMutability": "view",
|
|
1966
|
-
"type": "function"
|
|
1967
|
-
},
|
|
1968
|
-
{
|
|
1969
|
-
"inputs": [
|
|
1970
|
-
{
|
|
1971
|
-
"internalType": "address",
|
|
1972
|
-
"name": "user",
|
|
1973
|
-
"type": "address"
|
|
1974
|
-
}
|
|
1975
|
-
],
|
|
1976
|
-
"name": "getUserDeposits",
|
|
1977
|
-
"outputs": [
|
|
1978
|
-
{
|
|
1979
|
-
"internalType": "uint256",
|
|
1980
|
-
"name": "",
|
|
1981
|
-
"type": "uint256"
|
|
1982
|
-
}
|
|
1983
|
-
],
|
|
1984
|
-
"stateMutability": "view",
|
|
1985
|
-
"type": "function"
|
|
1986
|
-
},
|
|
1987
|
-
{
|
|
1988
|
-
"inputs": [
|
|
1989
|
-
{
|
|
1990
|
-
"internalType": "address",
|
|
1991
|
-
"name": "user",
|
|
1992
|
-
"type": "address"
|
|
1993
|
-
}
|
|
1994
|
-
],
|
|
1995
|
-
"name": "getUserDepositsInStabilityPool",
|
|
1996
|
-
"outputs": [
|
|
1997
|
-
{
|
|
1998
|
-
"internalType": "uint256",
|
|
1999
|
-
"name": "",
|
|
2000
|
-
"type": "uint256"
|
|
2001
|
-
}
|
|
2002
|
-
],
|
|
2003
|
-
"stateMutability": "view",
|
|
2004
|
-
"type": "function"
|
|
2005
|
-
},
|
|
2006
|
-
{
|
|
2007
|
-
"inputs": [
|
|
2008
|
-
{
|
|
2009
|
-
"internalType": "uint256",
|
|
2010
|
-
"name": "nftId",
|
|
2011
|
-
"type": "uint256"
|
|
2012
|
-
}
|
|
2013
|
-
],
|
|
2014
|
-
"name": "getUserOfDepositedNFT",
|
|
2015
|
-
"outputs": [
|
|
2016
|
-
{
|
|
2017
|
-
"internalType": "address",
|
|
2018
|
-
"name": "",
|
|
2019
|
-
"type": "address"
|
|
2020
|
-
}
|
|
2021
|
-
],
|
|
2022
|
-
"stateMutability": "view",
|
|
2023
|
-
"type": "function"
|
|
2024
|
-
},
|
|
2025
|
-
{
|
|
2026
|
-
"inputs": [],
|
|
2027
|
-
"name": "healthFactorLiquidationThreshold",
|
|
2028
|
-
"outputs": [
|
|
2029
|
-
{
|
|
2030
|
-
"internalType": "uint256",
|
|
2031
|
-
"name": "",
|
|
2032
|
-
"type": "uint256"
|
|
2033
|
-
}
|
|
2034
|
-
],
|
|
2035
|
-
"stateMutability": "view",
|
|
2036
|
-
"type": "function"
|
|
2037
|
-
},
|
|
2038
|
-
{
|
|
2039
|
-
"inputs": [
|
|
2040
|
-
{
|
|
2041
|
-
"internalType": "address",
|
|
2042
|
-
"name": "userAddress",
|
|
2043
|
-
"type": "address"
|
|
2044
|
-
},
|
|
2045
|
-
{
|
|
2046
|
-
"internalType": "uint256",
|
|
2047
|
-
"name": "tokenId",
|
|
2048
|
-
"type": "uint256"
|
|
2049
|
-
}
|
|
2050
|
-
],
|
|
2051
|
-
"name": "initiateLiquidation",
|
|
2052
|
-
"outputs": [],
|
|
2053
|
-
"stateMutability": "nonpayable",
|
|
2054
|
-
"type": "function"
|
|
2055
|
-
},
|
|
2056
|
-
{
|
|
2057
|
-
"inputs": [],
|
|
2058
|
-
"name": "insuranceFee",
|
|
2059
|
-
"outputs": [
|
|
2060
|
-
{
|
|
2061
|
-
"internalType": "uint256",
|
|
2062
|
-
"name": "",
|
|
2063
|
-
"type": "uint256"
|
|
2064
|
-
}
|
|
2065
|
-
],
|
|
2066
|
-
"stateMutability": "view",
|
|
2067
|
-
"type": "function"
|
|
2068
|
-
},
|
|
2069
|
-
{
|
|
2070
|
-
"inputs": [],
|
|
2071
|
-
"name": "liquidationGracePeriod",
|
|
2072
|
-
"outputs": [
|
|
2073
|
-
{
|
|
2074
|
-
"internalType": "uint256",
|
|
2075
|
-
"name": "",
|
|
2076
|
-
"type": "uint256"
|
|
2077
|
-
}
|
|
2078
|
-
],
|
|
2079
|
-
"stateMutability": "view",
|
|
2080
|
-
"type": "function"
|
|
2081
|
-
},
|
|
2082
|
-
{
|
|
2083
|
-
"inputs": [],
|
|
2084
|
-
"name": "liquidationThreshold",
|
|
2085
|
-
"outputs": [
|
|
2086
|
-
{
|
|
2087
|
-
"internalType": "uint256",
|
|
2088
|
-
"name": "",
|
|
2089
|
-
"type": "uint256"
|
|
2090
|
-
}
|
|
2091
|
-
],
|
|
2092
|
-
"stateMutability": "view",
|
|
2093
|
-
"type": "function"
|
|
2094
|
-
},
|
|
2095
|
-
{
|
|
2096
|
-
"inputs": [],
|
|
2097
|
-
"name": "liquidityBufferRatio",
|
|
2098
|
-
"outputs": [
|
|
2099
|
-
{
|
|
2100
|
-
"internalType": "uint256",
|
|
2101
|
-
"name": "",
|
|
2102
|
-
"type": "uint256"
|
|
2103
|
-
}
|
|
2104
|
-
],
|
|
2105
|
-
"stateMutability": "view",
|
|
2106
|
-
"type": "function"
|
|
2107
|
-
},
|
|
2108
|
-
{
|
|
2109
|
-
"inputs": [
|
|
2110
|
-
{
|
|
2111
|
-
"internalType": "address",
|
|
2112
|
-
"name": "",
|
|
2113
|
-
"type": "address"
|
|
2114
|
-
},
|
|
2115
|
-
{
|
|
2116
|
-
"internalType": "address",
|
|
2117
|
-
"name": "",
|
|
2118
|
-
"type": "address"
|
|
2119
|
-
},
|
|
2120
|
-
{
|
|
2121
|
-
"internalType": "uint256",
|
|
2122
|
-
"name": "",
|
|
2123
|
-
"type": "uint256"
|
|
2124
|
-
},
|
|
2125
|
-
{
|
|
2126
|
-
"internalType": "bytes",
|
|
2127
|
-
"name": "",
|
|
2128
|
-
"type": "bytes"
|
|
2129
|
-
}
|
|
2130
|
-
],
|
|
2131
|
-
"name": "onERC721Received",
|
|
2132
|
-
"outputs": [
|
|
2133
|
-
{
|
|
2134
|
-
"internalType": "bytes4",
|
|
2135
|
-
"name": "",
|
|
2136
|
-
"type": "bytes4"
|
|
2137
|
-
}
|
|
2138
|
-
],
|
|
2139
|
-
"stateMutability": "nonpayable",
|
|
2140
|
-
"type": "function"
|
|
2141
|
-
},
|
|
2142
|
-
{
|
|
2143
|
-
"inputs": [],
|
|
2144
|
-
"name": "owner",
|
|
2145
|
-
"outputs": [
|
|
2146
|
-
{
|
|
2147
|
-
"internalType": "address",
|
|
2148
|
-
"name": "",
|
|
2149
|
-
"type": "address"
|
|
2150
|
-
}
|
|
2151
|
-
],
|
|
2152
|
-
"stateMutability": "view",
|
|
2153
|
-
"type": "function"
|
|
2154
|
-
},
|
|
2155
|
-
{
|
|
2156
|
-
"inputs": [],
|
|
2157
|
-
"name": "pause",
|
|
2158
|
-
"outputs": [],
|
|
2159
|
-
"stateMutability": "nonpayable",
|
|
2160
|
-
"type": "function"
|
|
2161
|
-
},
|
|
2162
|
-
{
|
|
2163
|
-
"inputs": [],
|
|
2164
|
-
"name": "paused",
|
|
2165
|
-
"outputs": [
|
|
2166
|
-
{
|
|
2167
|
-
"internalType": "bool",
|
|
2168
|
-
"name": "",
|
|
2169
|
-
"type": "bool"
|
|
2170
|
-
}
|
|
2171
|
-
],
|
|
2172
|
-
"stateMutability": "view",
|
|
2173
|
-
"type": "function"
|
|
2174
|
-
},
|
|
2175
|
-
{
|
|
2176
|
-
"inputs": [
|
|
2177
|
-
{
|
|
2178
|
-
"internalType": "address",
|
|
2179
|
-
"name": "",
|
|
2180
|
-
"type": "address"
|
|
2181
|
-
},
|
|
2182
|
-
{
|
|
2183
|
-
"internalType": "uint256",
|
|
2184
|
-
"name": "",
|
|
2185
|
-
"type": "uint256"
|
|
2186
|
-
}
|
|
2187
|
-
],
|
|
2188
|
-
"name": "positions",
|
|
2189
|
-
"outputs": [
|
|
2190
|
-
{
|
|
2191
|
-
"internalType": "uint256",
|
|
2192
|
-
"name": "rawDebtBalance",
|
|
2193
|
-
"type": "uint256"
|
|
2194
|
-
},
|
|
2195
|
-
{
|
|
2196
|
-
"internalType": "bool",
|
|
2197
|
-
"name": "isUnderLiquidation",
|
|
2198
|
-
"type": "bool"
|
|
2199
|
-
},
|
|
2200
|
-
{
|
|
2201
|
-
"internalType": "uint256",
|
|
2202
|
-
"name": "liquidationStartTime",
|
|
2203
|
-
"type": "uint256"
|
|
2204
|
-
},
|
|
2205
|
-
{
|
|
2206
|
-
"internalType": "uint256",
|
|
2207
|
-
"name": "positionIndex",
|
|
2208
|
-
"type": "uint256"
|
|
2209
|
-
},
|
|
2210
|
-
{
|
|
2211
|
-
"internalType": "bool",
|
|
2212
|
-
"name": "isInsured",
|
|
2213
|
-
"type": "bool"
|
|
2214
|
-
},
|
|
2215
|
-
{
|
|
2216
|
-
"internalType": "uint256",
|
|
2217
|
-
"name": "rawInsuredBalance",
|
|
2218
|
-
"type": "uint256"
|
|
2219
|
-
}
|
|
2220
|
-
],
|
|
2221
|
-
"stateMutability": "view",
|
|
2222
|
-
"type": "function"
|
|
2223
|
-
},
|
|
2224
|
-
{
|
|
2225
|
-
"inputs": [],
|
|
2226
|
-
"name": "priceOracle",
|
|
2227
|
-
"outputs": [
|
|
2228
|
-
{
|
|
2229
|
-
"internalType": "contract IRAACHousePrices",
|
|
2230
|
-
"name": "",
|
|
2231
|
-
"type": "address"
|
|
2232
|
-
}
|
|
2233
|
-
],
|
|
2234
|
-
"stateMutability": "view",
|
|
2235
|
-
"type": "function"
|
|
2236
|
-
},
|
|
2237
|
-
{
|
|
2238
|
-
"inputs": [],
|
|
2239
|
-
"name": "primeRateOracle",
|
|
2240
|
-
"outputs": [
|
|
2241
|
-
{
|
|
2242
|
-
"internalType": "address",
|
|
2243
|
-
"name": "",
|
|
2244
|
-
"type": "address"
|
|
2245
|
-
}
|
|
2246
|
-
],
|
|
2247
|
-
"stateMutability": "view",
|
|
2248
|
-
"type": "function"
|
|
2249
|
-
},
|
|
2250
|
-
{
|
|
2251
|
-
"inputs": [],
|
|
2252
|
-
"name": "rToken",
|
|
2253
|
-
"outputs": [
|
|
2254
|
-
{
|
|
2255
|
-
"internalType": "contract IRToken",
|
|
2256
|
-
"name": "",
|
|
2257
|
-
"type": "address"
|
|
2258
|
-
}
|
|
2259
|
-
],
|
|
2260
|
-
"stateMutability": "view",
|
|
2261
|
-
"type": "function"
|
|
2262
|
-
},
|
|
2263
|
-
{
|
|
2264
|
-
"inputs": [],
|
|
2265
|
-
"name": "raacNFT",
|
|
2266
|
-
"outputs": [
|
|
2267
|
-
{
|
|
2268
|
-
"internalType": "contract IRAACNFT",
|
|
2269
|
-
"name": "",
|
|
2270
|
-
"type": "address"
|
|
2271
|
-
}
|
|
2272
|
-
],
|
|
2273
|
-
"stateMutability": "view",
|
|
2274
|
-
"type": "function"
|
|
2275
|
-
},
|
|
2276
|
-
{
|
|
2277
|
-
"inputs": [],
|
|
2278
|
-
"name": "rateData",
|
|
2279
|
-
"outputs": [
|
|
2280
|
-
{
|
|
2281
|
-
"internalType": "uint256",
|
|
2282
|
-
"name": "currentLiquidityRate",
|
|
2283
|
-
"type": "uint256"
|
|
2284
|
-
},
|
|
2285
|
-
{
|
|
2286
|
-
"internalType": "uint256",
|
|
2287
|
-
"name": "currentUsageRate",
|
|
2288
|
-
"type": "uint256"
|
|
2289
|
-
},
|
|
2290
|
-
{
|
|
2291
|
-
"internalType": "uint256",
|
|
2292
|
-
"name": "primeRate",
|
|
2293
|
-
"type": "uint256"
|
|
2294
|
-
},
|
|
2295
|
-
{
|
|
2296
|
-
"internalType": "uint256",
|
|
2297
|
-
"name": "baseRate",
|
|
2298
|
-
"type": "uint256"
|
|
2299
|
-
},
|
|
2300
|
-
{
|
|
2301
|
-
"internalType": "uint256",
|
|
2302
|
-
"name": "optimalRate",
|
|
2303
|
-
"type": "uint256"
|
|
2304
|
-
},
|
|
2305
|
-
{
|
|
2306
|
-
"internalType": "uint256",
|
|
2307
|
-
"name": "maxRate",
|
|
2308
|
-
"type": "uint256"
|
|
2309
|
-
},
|
|
2310
|
-
{
|
|
2311
|
-
"internalType": "uint256",
|
|
2312
|
-
"name": "optimalUtilizationRate",
|
|
2313
|
-
"type": "uint256"
|
|
2314
|
-
},
|
|
2315
|
-
{
|
|
2316
|
-
"internalType": "uint256",
|
|
2317
|
-
"name": "protocolFeeRate",
|
|
2318
|
-
"type": "uint256"
|
|
2319
|
-
}
|
|
2320
|
-
],
|
|
2321
|
-
"stateMutability": "view",
|
|
2322
|
-
"type": "function"
|
|
2323
|
-
},
|
|
2324
|
-
{
|
|
2325
|
-
"inputs": [],
|
|
2326
|
-
"name": "renounceOwnership",
|
|
2327
|
-
"outputs": [],
|
|
2328
|
-
"stateMutability": "nonpayable",
|
|
2329
|
-
"type": "function"
|
|
2330
|
-
},
|
|
2331
|
-
{
|
|
2332
|
-
"inputs": [
|
|
2333
|
-
{
|
|
2334
|
-
"internalType": "uint256",
|
|
2335
|
-
"name": "tokenId",
|
|
2336
|
-
"type": "uint256"
|
|
2337
|
-
},
|
|
2338
|
-
{
|
|
2339
|
-
"internalType": "uint256",
|
|
2340
|
-
"name": "amount",
|
|
2341
|
-
"type": "uint256"
|
|
2342
|
-
}
|
|
2343
|
-
],
|
|
2344
|
-
"name": "repay",
|
|
2345
|
-
"outputs": [],
|
|
2346
|
-
"stateMutability": "nonpayable",
|
|
2347
|
-
"type": "function"
|
|
2348
|
-
},
|
|
2349
|
-
{
|
|
2350
|
-
"inputs": [
|
|
2351
|
-
{
|
|
2352
|
-
"internalType": "uint256",
|
|
2353
|
-
"name": "tokenId",
|
|
2354
|
-
"type": "uint256"
|
|
2355
|
-
},
|
|
2356
|
-
{
|
|
2357
|
-
"internalType": "uint256",
|
|
2358
|
-
"name": "amount",
|
|
2359
|
-
"type": "uint256"
|
|
2360
|
-
},
|
|
2361
|
-
{
|
|
2362
|
-
"internalType": "address",
|
|
2363
|
-
"name": "onBehalfOf",
|
|
2364
|
-
"type": "address"
|
|
2365
|
-
}
|
|
2366
|
-
],
|
|
2367
|
-
"name": "repayOnBehalf",
|
|
2368
|
-
"outputs": [],
|
|
2369
|
-
"stateMutability": "nonpayable",
|
|
2370
|
-
"type": "function"
|
|
2371
|
-
},
|
|
2372
|
-
{
|
|
2373
|
-
"inputs": [
|
|
2374
|
-
{
|
|
2375
|
-
"internalType": "address",
|
|
2376
|
-
"name": "tokenAddress",
|
|
2377
|
-
"type": "address"
|
|
2378
|
-
},
|
|
2379
|
-
{
|
|
2380
|
-
"internalType": "address",
|
|
2381
|
-
"name": "recipient",
|
|
2382
|
-
"type": "address"
|
|
2383
|
-
},
|
|
2384
|
-
{
|
|
2385
|
-
"internalType": "uint256",
|
|
2386
|
-
"name": "amount",
|
|
2387
|
-
"type": "uint256"
|
|
2388
|
-
}
|
|
2389
|
-
],
|
|
2390
|
-
"name": "rescueToken",
|
|
2391
|
-
"outputs": [],
|
|
2392
|
-
"stateMutability": "nonpayable",
|
|
2393
|
-
"type": "function"
|
|
2394
|
-
},
|
|
2395
|
-
{
|
|
2396
|
-
"inputs": [],
|
|
2397
|
-
"name": "reserve",
|
|
2398
|
-
"outputs": [
|
|
2399
|
-
{
|
|
2400
|
-
"internalType": "address",
|
|
2401
|
-
"name": "reserveRTokenAddress",
|
|
2402
|
-
"type": "address"
|
|
2403
|
-
},
|
|
2404
|
-
{
|
|
2405
|
-
"internalType": "address",
|
|
2406
|
-
"name": "reserveAssetAddress",
|
|
2407
|
-
"type": "address"
|
|
2408
|
-
},
|
|
2409
|
-
{
|
|
2410
|
-
"internalType": "address",
|
|
2411
|
-
"name": "reserveDebtTokenAddress",
|
|
2412
|
-
"type": "address"
|
|
2413
|
-
},
|
|
2414
|
-
{
|
|
2415
|
-
"internalType": "uint256",
|
|
2416
|
-
"name": "totalLiquidity",
|
|
2417
|
-
"type": "uint256"
|
|
2418
|
-
},
|
|
2419
|
-
{
|
|
2420
|
-
"internalType": "uint256",
|
|
2421
|
-
"name": "totalUsage",
|
|
2422
|
-
"type": "uint256"
|
|
2423
|
-
},
|
|
2424
|
-
{
|
|
2425
|
-
"internalType": "uint128",
|
|
2426
|
-
"name": "liquidityIndex",
|
|
2427
|
-
"type": "uint128"
|
|
2428
|
-
},
|
|
2429
|
-
{
|
|
2430
|
-
"internalType": "uint128",
|
|
2431
|
-
"name": "usageIndex",
|
|
2432
|
-
"type": "uint128"
|
|
2433
|
-
},
|
|
2434
|
-
{
|
|
2435
|
-
"internalType": "uint40",
|
|
2436
|
-
"name": "lastUpdateTimestamp",
|
|
2437
|
-
"type": "uint40"
|
|
2438
|
-
}
|
|
2439
|
-
],
|
|
2440
|
-
"stateMutability": "view",
|
|
2441
|
-
"type": "function"
|
|
2442
|
-
},
|
|
2443
|
-
{
|
|
2444
|
-
"inputs": [],
|
|
2445
|
-
"name": "reserveAssetToken",
|
|
2446
|
-
"outputs": [
|
|
2447
|
-
{
|
|
2448
|
-
"internalType": "contract IERC20",
|
|
2449
|
-
"name": "",
|
|
2450
|
-
"type": "address"
|
|
2451
|
-
}
|
|
2452
|
-
],
|
|
2453
|
-
"stateMutability": "view",
|
|
2454
|
-
"type": "function"
|
|
2455
|
-
},
|
|
2456
|
-
{
|
|
2457
|
-
"inputs": [],
|
|
2458
|
-
"name": "rewardData",
|
|
2459
|
-
"outputs": [
|
|
2460
|
-
{
|
|
2461
|
-
"internalType": "contract IERC20",
|
|
2462
|
-
"name": "rewardToken",
|
|
2463
|
-
"type": "address"
|
|
2464
|
-
},
|
|
2465
|
-
{
|
|
2466
|
-
"internalType": "uint256",
|
|
2467
|
-
"name": "rewardPerShare",
|
|
2468
|
-
"type": "uint256"
|
|
2469
|
-
},
|
|
2470
|
-
{
|
|
2471
|
-
"internalType": "uint256",
|
|
2472
|
-
"name": "lastUpdateTime",
|
|
2473
|
-
"type": "uint256"
|
|
2474
|
-
}
|
|
2475
|
-
],
|
|
2476
|
-
"stateMutability": "view",
|
|
2477
|
-
"type": "function"
|
|
2478
|
-
},
|
|
2479
|
-
{
|
|
2480
|
-
"inputs": [
|
|
2481
|
-
{
|
|
2482
|
-
"internalType": "address",
|
|
2483
|
-
"name": "newFeeCollector",
|
|
2484
|
-
"type": "address"
|
|
2485
|
-
}
|
|
2486
|
-
],
|
|
2487
|
-
"name": "setFeeCollector",
|
|
2488
|
-
"outputs": [],
|
|
2489
|
-
"stateMutability": "nonpayable",
|
|
2490
|
-
"type": "function"
|
|
2491
|
-
},
|
|
2492
|
-
{
|
|
2493
|
-
"inputs": [
|
|
2494
|
-
{
|
|
2495
|
-
"internalType": "enum ILendingPool.OwnerParameter",
|
|
2496
|
-
"name": "param",
|
|
2497
|
-
"type": "uint8"
|
|
2498
|
-
},
|
|
2499
|
-
{
|
|
2500
|
-
"internalType": "uint256",
|
|
2501
|
-
"name": "newValue",
|
|
2502
|
-
"type": "uint256"
|
|
2503
|
-
}
|
|
2504
|
-
],
|
|
2505
|
-
"name": "setParameter",
|
|
2506
|
-
"outputs": [],
|
|
2507
|
-
"stateMutability": "nonpayable",
|
|
2508
|
-
"type": "function"
|
|
2509
|
-
},
|
|
2510
|
-
{
|
|
2511
|
-
"inputs": [
|
|
2512
|
-
{
|
|
2513
|
-
"internalType": "uint256",
|
|
2514
|
-
"name": "newPrimeRate",
|
|
2515
|
-
"type": "uint256"
|
|
2516
|
-
}
|
|
2517
|
-
],
|
|
2518
|
-
"name": "setPrimeRate",
|
|
2519
|
-
"outputs": [],
|
|
2520
|
-
"stateMutability": "nonpayable",
|
|
2521
|
-
"type": "function"
|
|
2522
|
-
},
|
|
2523
|
-
{
|
|
2524
|
-
"inputs": [
|
|
2525
|
-
{
|
|
2526
|
-
"internalType": "address",
|
|
2527
|
-
"name": "newOracle",
|
|
2528
|
-
"type": "address"
|
|
2529
|
-
}
|
|
2530
|
-
],
|
|
2531
|
-
"name": "setPrimeRateOracle",
|
|
2532
|
-
"outputs": [],
|
|
2533
|
-
"stateMutability": "nonpayable",
|
|
2534
|
-
"type": "function"
|
|
2535
|
-
},
|
|
2536
|
-
{
|
|
2537
|
-
"inputs": [
|
|
2538
|
-
{
|
|
2539
|
-
"internalType": "address",
|
|
2540
|
-
"name": "rewardToken",
|
|
2541
|
-
"type": "address"
|
|
2542
|
-
}
|
|
2543
|
-
],
|
|
2544
|
-
"name": "setRewardToken",
|
|
2545
|
-
"outputs": [],
|
|
2546
|
-
"stateMutability": "nonpayable",
|
|
2547
|
-
"type": "function"
|
|
2548
|
-
},
|
|
2549
|
-
{
|
|
2550
|
-
"inputs": [
|
|
2551
|
-
{
|
|
2552
|
-
"internalType": "address",
|
|
2553
|
-
"name": "newStabilityPool",
|
|
2554
|
-
"type": "address"
|
|
2555
|
-
}
|
|
2556
|
-
],
|
|
2557
|
-
"name": "setStabilityPool",
|
|
2558
|
-
"outputs": [],
|
|
2559
|
-
"stateMutability": "nonpayable",
|
|
2560
|
-
"type": "function"
|
|
2561
|
-
},
|
|
2562
|
-
{
|
|
2563
|
-
"inputs": [
|
|
2564
|
-
{
|
|
2565
|
-
"internalType": "address",
|
|
2566
|
-
"name": "newVault",
|
|
2567
|
-
"type": "address"
|
|
2568
|
-
}
|
|
2569
|
-
],
|
|
2570
|
-
"name": "setVault",
|
|
2571
|
-
"outputs": [],
|
|
2572
|
-
"stateMutability": "nonpayable",
|
|
2573
|
-
"type": "function"
|
|
2574
|
-
},
|
|
2575
|
-
{
|
|
2576
|
-
"inputs": [],
|
|
2577
|
-
"name": "stabilityPool",
|
|
2578
|
-
"outputs": [
|
|
2579
|
-
{
|
|
2580
|
-
"internalType": "address",
|
|
2581
|
-
"name": "",
|
|
2582
|
-
"type": "address"
|
|
2583
|
-
}
|
|
2584
|
-
],
|
|
2585
|
-
"stateMutability": "view",
|
|
2586
|
-
"type": "function"
|
|
2587
|
-
},
|
|
2588
|
-
{
|
|
2589
|
-
"inputs": [
|
|
2590
|
-
{
|
|
2591
|
-
"internalType": "address",
|
|
2592
|
-
"name": "recipient",
|
|
2593
|
-
"type": "address"
|
|
2594
|
-
},
|
|
2595
|
-
{
|
|
2596
|
-
"internalType": "uint256",
|
|
2597
|
-
"name": "amount",
|
|
2598
|
-
"type": "uint256"
|
|
2599
|
-
}
|
|
2600
|
-
],
|
|
2601
|
-
"name": "transferAccruedDust",
|
|
2602
|
-
"outputs": [],
|
|
2603
|
-
"stateMutability": "nonpayable",
|
|
2604
|
-
"type": "function"
|
|
2605
|
-
},
|
|
2606
|
-
{
|
|
2607
|
-
"inputs": [
|
|
2608
|
-
{
|
|
2609
|
-
"internalType": "address",
|
|
2610
|
-
"name": "newOwner",
|
|
2611
|
-
"type": "address"
|
|
2612
|
-
}
|
|
2613
|
-
],
|
|
2614
|
-
"name": "transferOwnership",
|
|
2615
|
-
"outputs": [],
|
|
2616
|
-
"stateMutability": "nonpayable",
|
|
2617
|
-
"type": "function"
|
|
2618
|
-
},
|
|
2619
|
-
{
|
|
2620
|
-
"inputs": [],
|
|
2621
|
-
"name": "unpause",
|
|
2622
|
-
"outputs": [],
|
|
2623
|
-
"stateMutability": "nonpayable",
|
|
2624
|
-
"type": "function"
|
|
2625
|
-
},
|
|
2626
|
-
{
|
|
2627
|
-
"inputs": [],
|
|
2628
|
-
"name": "updateState",
|
|
2629
|
-
"outputs": [],
|
|
2630
|
-
"stateMutability": "nonpayable",
|
|
2631
|
-
"type": "function"
|
|
2632
|
-
},
|
|
2633
|
-
{
|
|
2634
|
-
"inputs": [
|
|
2635
|
-
{
|
|
2636
|
-
"internalType": "address",
|
|
2637
|
-
"name": "user",
|
|
2638
|
-
"type": "address"
|
|
2639
|
-
}
|
|
2640
|
-
],
|
|
2641
|
-
"name": "updateUserReward",
|
|
2642
|
-
"outputs": [],
|
|
2643
|
-
"stateMutability": "nonpayable",
|
|
2644
|
-
"type": "function"
|
|
2645
|
-
},
|
|
2646
|
-
{
|
|
2647
|
-
"inputs": [
|
|
2648
|
-
{
|
|
2649
|
-
"internalType": "address",
|
|
2650
|
-
"name": "",
|
|
2651
|
-
"type": "address"
|
|
2652
|
-
}
|
|
2653
|
-
],
|
|
2654
|
-
"name": "userData",
|
|
2655
|
-
"outputs": [
|
|
2656
|
-
{
|
|
2657
|
-
"internalType": "uint256",
|
|
2658
|
-
"name": "scaledDeposits",
|
|
2659
|
-
"type": "uint256"
|
|
2660
|
-
}
|
|
2661
|
-
],
|
|
2662
|
-
"stateMutability": "view",
|
|
2663
|
-
"type": "function"
|
|
2664
|
-
},
|
|
2665
|
-
{
|
|
2666
|
-
"inputs": [],
|
|
2667
|
-
"name": "vault",
|
|
2668
|
-
"outputs": [
|
|
2669
|
-
{
|
|
2670
|
-
"internalType": "contract IBaseVault",
|
|
2671
|
-
"name": "",
|
|
2672
|
-
"type": "address"
|
|
2673
|
-
}
|
|
2674
|
-
],
|
|
2675
|
-
"stateMutability": "view",
|
|
2676
|
-
"type": "function"
|
|
2677
|
-
},
|
|
2678
|
-
{
|
|
2679
|
-
"inputs": [],
|
|
2680
|
-
"name": "vaultRewards",
|
|
2681
|
-
"outputs": [
|
|
2682
|
-
{
|
|
2683
|
-
"internalType": "uint256",
|
|
2684
|
-
"name": "totalDeposits",
|
|
2685
|
-
"type": "uint256"
|
|
2686
|
-
},
|
|
2687
|
-
{
|
|
2688
|
-
"internalType": "uint256",
|
|
2689
|
-
"name": "unclaimedRewards",
|
|
2690
|
-
"type": "uint256"
|
|
2691
|
-
},
|
|
2692
|
-
{
|
|
2693
|
-
"internalType": "uint256",
|
|
2694
|
-
"name": "lastClaimTime",
|
|
2695
|
-
"type": "uint256"
|
|
2696
|
-
},
|
|
2697
|
-
{
|
|
2698
|
-
"internalType": "uint256",
|
|
2699
|
-
"name": "lastSharePrice",
|
|
2700
|
-
"type": "uint256"
|
|
2701
|
-
},
|
|
2702
|
-
{
|
|
2703
|
-
"internalType": "uint256",
|
|
2704
|
-
"name": "lastWithdrawalTime",
|
|
2705
|
-
"type": "uint256"
|
|
2706
|
-
},
|
|
2707
|
-
{
|
|
2708
|
-
"internalType": "uint256",
|
|
2709
|
-
"name": "lastDepositTime",
|
|
2710
|
-
"type": "uint256"
|
|
2711
|
-
}
|
|
2712
|
-
],
|
|
2713
|
-
"stateMutability": "view",
|
|
2714
|
-
"type": "function"
|
|
2715
|
-
},
|
|
2716
|
-
{
|
|
2717
|
-
"inputs": [
|
|
2718
|
-
{
|
|
2719
|
-
"internalType": "uint256",
|
|
2720
|
-
"name": "amount",
|
|
2721
|
-
"type": "uint256"
|
|
2722
|
-
}
|
|
2723
|
-
],
|
|
2724
|
-
"name": "withdraw",
|
|
2725
|
-
"outputs": [],
|
|
2726
|
-
"stateMutability": "nonpayable",
|
|
2727
|
-
"type": "function"
|
|
2728
|
-
},
|
|
2729
|
-
{
|
|
2730
|
-
"inputs": [
|
|
2731
|
-
{
|
|
2732
|
-
"internalType": "uint256",
|
|
2733
|
-
"name": "tokenId",
|
|
2734
|
-
"type": "uint256"
|
|
2735
|
-
}
|
|
2736
|
-
],
|
|
2737
|
-
"name": "withdrawNFT",
|
|
2738
|
-
"outputs": [],
|
|
2739
|
-
"stateMutability": "nonpayable",
|
|
2740
|
-
"type": "function"
|
|
2741
|
-
},
|
|
2742
|
-
{
|
|
2743
|
-
"inputs": [],
|
|
2744
|
-
"name": "withdrawalsPaused",
|
|
2745
|
-
"outputs": [
|
|
2746
|
-
{
|
|
2747
|
-
"internalType": "bool",
|
|
2748
|
-
"name": "",
|
|
2749
|
-
"type": "bool"
|
|
2750
|
-
}
|
|
2751
|
-
],
|
|
2752
|
-
"stateMutability": "view",
|
|
2753
|
-
"type": "function"
|
|
2754
|
-
}
|
|
2755
|
-
],
|
|
2756
|
-
"bytecode": "0x60a0604052601e805460ff60a01b1916600160a01b17905561012c6029556107d0602b55602c805460ff191690553480156200003a57600080fd5b50604051620062fd380380620062fd8339810160408190526200005d91620002f5565b33806200008457604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6200008f8162000261565b50600180556002805460ff191690556001600160a01b0386161580620000bc57506001600160a01b038516155b80620000cf57506001600160a01b038416155b80620000e257506001600160a01b038316155b80620000f557506001600160a01b038216155b80620000ff575080155b156200011e576040516303988b8160e61b815260040160405180910390fd5b601b80546001600160a01b03199081166001600160a01b03898116918217909355858316608052601980548316868516179055601c80548316898516908117909155601d8054841694891694851790557b033b2e3c9fd0803ce800000000000000033b2e3c9fd0803ce80000006008556009805464ffffffffff19164264ffffffffff1617905560038054841690911790556004805483169091179055600580549091169091179055600c819055620001da816109c4620002b1565b600d55600c54620001ee90611388620002b1565b600e55600c546200020290619c40620002b1565b600f556200021f6b033b2e3c9fd0803ce8000000611f40620002b1565b6010555050600060115550506b033b2e3c9fd0803ce8000000600a819055600b555050611f40602655670de0b6b3a76400006027556203f4806028556200036d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081156113881983900484111517620002ca57600080fd5b506127109102611388010490565b80516001600160a01b0381168114620002f057600080fd5b919050565b60008060008060008060c087890312156200030f57600080fd5b6200031a87620002d8565b95506200032a60208801620002d8565b94506200033a60408801620002d8565b93506200034a60608801620002d8565b92506200035a60808801620002d8565b915060a087015190509295509295509295565b608051615f4a620003b36000396000818161094801528181610a1801528181611051015281816129ce01528181613382015281816134b401526135970152615f4a6000f3fe608060405234801561001057600080fd5b50600436106104965760003560e01c80638aabb2d111610262578063c4f8911c11610151578063e91a7ca6116100ce578063f2fde38b11610092578063f2fde38b14610ddd578063f5b3b9e714610df0578063f8d8989814610e03578063f91c3b0d14610e16578063fbf4a61214610e29578063fbfa77cf14610e3857600080fd5b8063e91a7ca614610c84578063e9f2838e14610c97578063ec915ee614610ca4578063ef5bac2514610d05578063f1caf09f14610dca57600080fd5b8063d5db7d5d11610115578063d5db7d5d14610c25578063d81a698614610c38578063d8aed14514610c4b578063e5711e8b14610c5e578063e65896c914610c7157600080fd5b8063c4f8911c14610b1f578063c6d6916c14610b32578063c891091314610b45578063cd3293de14610b68578063d17e988314610c1257600080fd5b8063a8de4834116101df578063b88a802f116101a3578063b88a802f14610a4d578063bf4eccdf14610a55578063bfd91c2314610a68578063c1be667714610a88578063c415b95c14610b0c57600080fd5b8063a8de4834146109e5578063a90d728f146109f8578063a9bf805c14610a00578063ac919fd414610a13578063b6b55f2514610a3a57600080fd5b806397c4fac71161022657806397c4fac71461099057806398d721e0146109995780639daa54b4146109ac578063a42dce80146109bf578063a5b350c9146109d257600080fd5b80638aabb2d1146109205780638aee8127146109335780638bc2ff5b146109465780638da5cb5b1461096c578063929761791461097d57600080fd5b80632a5bf6d2116103895780635c975abb11610306578063768bab45116102ca578063768bab451461088e5780637bc7780b146108a157806383ba103f146108a95780638429d51f146108bc5780638456cb5914610907578063883c6b241461090f57600080fd5b80635c975abb146108155780636061ffc3146108205780636817031b14610860578063715018a61461087357806375417da61461087b57600080fd5b80633f4ba83a1161034d5780633f4ba83a1461073e5780634031234c1461074657806340c65f721461074f5780634df9d6ba14610762578063523a19ac1461077557600080fd5b80632a5bf6d21461067e5780632ab414fc146106915780632e1a7d4d146106a45780633adbb5af146106b75780633e20bf141461071a57600080fd5b8063150b7a02116104175780631d00ac3a116103db5780631d00ac3a146106285780631d4bf4a0146106485780631d8557d7146106505780632630c12f1461065857806327156a681461066b57600080fd5b8063150b7a02146105c457806316a6c4c5146105f057806316c621e0146105f95780631705ffad1461060c57806319c2d37e1461061557600080fd5b80630c34b9141161045e5780630c34b914146105195780630c42dcaf146105825780630c679a7b1461058b5780630d4085121461059e5780630ecbcdab146105b157600080fd5b8063023245d71461049b578063048c661d146104b0578063057e9b7b146104e057806309bf1e73146104f75780630ab30d8a14610501575b600080fd5b6104ae6104a93660046156ef565b610e4b565b005b601e546104c3906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6104e960275481565b6040519081526020016104d7565b6104e96203f48081565b600854600160801b90046001600160801b03166104e9565b610521611102565b6040516104d79190600061010082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e083015292915050565b6104e9611f4081565b6104ae61059936600461571d565b611198565b6104e96105ac36600461573a565b6111c2565b6104ae6105bf366004615766565b61123e565b6105d76105d23660046157cb565b611288565b6040516001600160e01b031990911681526020016104d7565b6104e960285481565b6104ae6106073660046156ef565b611299565b6104e9602b5481565b6104e961062336600461573a565b61134a565b61063b61063636600461573a565b6113c3565b6040516104d791906158db565b6021546104e9565b6104ae611499565b6019546104c3906001600160a01b031681565b6104e961067936600461571d565b6114a7565b6104e961068c36600461571d565b6114cc565b6104ae61069f3660046158e9565b61153b565b6104ae6106b23660046156ef565b611a41565b6106ca6106c536600461573a565b611b18565b6040516104d79190600060c08201905082518252602083015115156020830152604083015160408301526060830151606083015260808301511515608083015260a083015160a083015292915050565b601e5461072e90600160a01b900460ff1681565b60405190151581526020016104d7565b6104ae611bcd565b6104e960265481565b601c546104c3906001600160a01b031681565b6104e961077036600461571d565b611bdd565b61080061078336600461573a565b6001600160a01b0391909116600090815260126020908152604080832093835292815290829020825160c0810184528154808252600183015460ff90811615159483019490945260028301549482019490945260038201546060820181905260048301549093161515608082015260059091015460a09091015291565b604080519283526020830191909152016104d7565b60025460ff1661072e565b60145460155460165461083b926001600160a01b0316919083565b604080516001600160a01b0390941684526020840192909252908201526060016104d7565b6104ae61086e36600461571d565b611c7f565b6104ae611f1d565b6104e961088936600461571d565b611f2f565b6104ae61089c36600461573a565b611fb6565b600c546104e9565b6104e96108b736600461573a565b6120a0565b6020546021546022546023546024546025546108da95949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c0016104d7565b6104ae6120d4565b6008546001600160801b03166104e9565b6104ae61092e3660046156ef565b6120e4565b6104ae61094136600461571d565b61226e565b7f00000000000000000000000000000000000000000000000000000000000000006104c3565b6000546001600160a01b03166104c3565b6104e961098b3660046156ef565b6122c2565b6104e960295481565b6104ae6109a736600461571d565b612358565b6104e96109ba36600461571d565b612408565b6104ae6109cd36600461571d565b61248b565b6104e96109e036600461573a565b61250c565b6104ae6109f336600461590b565b6125b5565b6104e9612652565b601a546104c3906001600160a01b031681565b6104c37f000000000000000000000000000000000000000000000000000000000000000081565b6104ae610a483660046156ef565b61272c565b61072e61282e565b6104ae610a6336600461573a565b61284d565b610a7b610a7636600461571d565b612bb0565b6040516104d79190615989565b610add610a9636600461573a565b6012602090815260009283526040808420909152908252902080546001820154600283015460038401546004850154600590950154939460ff938416949293919291169086565b6040805196875294151560208701529385019290925260608401521515608083015260a082015260c0016104d7565b601f546104c3906001600160a01b031681565b6104ae610b2d3660046156ef565b612e24565b6104ae610b4036600461571d565b612e5b565b6104e9610b5336600461571d565b60136020526000908152604090206001015481565b600354600454600554600654600754600854600954610bb4966001600160a01b0390811696811695169392916001600160801b0380821692600160801b909204169064ffffffffff1688565b604080516001600160a01b03998a16815297891660208901529590971694860194909452606085019290925260808401526001600160801b0390811660a08401521660c082015264ffffffffff90911660e0820152610100016104d7565b6104e9610c2036600461571d565b612f63565b601b546104c3906001600160a01b031681565b6104ae610c46366004615766565b61302d565b6104ae610c59366004615766565b61321b565b6104ae610c6c3660046159ff565b613258565b6104e9610c7f36600461571d565b6132c9565b6104ae610c923660046156ef565b613346565b602c5461072e9060ff1681565b600a54600b54600c54600d54600e54600f54601054601154610cca979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016104d7565b610dbd6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091525060408051610100810182526003546001600160a01b039081168252600454811660208301526005541691810191909152600654606082015260075460808201526008546001600160801b0380821660a0840152600160801b9091041660c082015260095464ffffffffff1660e082015290565b6040516104d79190615a40565b6104c3610dd83660046156ef565b613565565b6104ae610deb36600461571d565b613626565b6104e9610dfe366004615abe565b613661565b601d546104c3906001600160a01b031681565b6104ae610e2436600461573a565b613693565b6104e9670de0b6b3a764000081565b602a546104c3906001600160a01b031681565b610e536137c8565b610e5b6137f2565b3360009081526012602090815260408083208484529091529020600181015460ff1615610e9b576040516367c11db560e01b815260040160405180910390fd5b336000908152601360209081526040808320858452600281019092529091205460ff16610edb5760405163346fad7360e01b815260040160405180910390fd5b610ee76003600a613816565b6000610ef3338561134a565b90508015610f14576040516302c9375f60e21b815260040160405180910390fd5b60008481526002830160209081526040808320805460ff19169055602d909152812080546001600160a01b03191690558254610f5290600190615b09565b67ffffffffffffffff811115610f6a57610f6a615788565b604051908082528060200260200182016040528015610f93578160200160208202803683370190505b5090506000805b84548110156110265786856000018281548110610fb957610fb9615b1c565b90600052602060002001541461101457846000018181548110610fde57610fde615b1c565b9060005260206000200154838381518110610ffb57610ffb615b1c565b60209081029190910101528161101081615b32565b9250505b8061101e81615b32565b915050610f9a565b5081516110399085906020850190615652565b50604051632142170760e11b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342842e0e9061108a90309033908b90600401615b4b565b600060405180830381600087803b1580156110a457600080fd5b505af11580156110b8573d6000803e3d6000fd5b50506040518881523392507f2aa1b4c95f3b2da9c955947fca584743ea0d457708fadf209c093061e98c4ccb915060200160405180910390a250505050506110ff60018055565b50565b61114a60405180610100016040528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b506040805161010081018252600a548152600b546020820152600c5491810191909152600d546060820152600e546080820152600f5460a082015260105460c082015260115460e082015290565b6111a0613820565b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000806111ce836122c2565b905060006111dc858561250c565b905060018110156111fc57676765c793fa10079d601b1b92505050611238565b60006112136026548461384d90919063ffffffff16565b90508161122882670de0b6b3a7640000615b6f565b6112329190615b86565b93505050505b92915050565b6112466137c8565b61124e6137f2565b80806000036112705760405163162908e360e11b815260040160405180910390fd5b61127a8383613873565b5061128460018055565b5050565b630a85bd0160e11b5b949350505050565b6112a16137c8565b6014546001600160a01b03166112ca57604051632506892760e01b815260040160405180910390fd5b806000036112eb5760405163162908e360e11b815260040160405180910390fd5b601454611303906001600160a01b0316333084613b1e565b61130c81613b7e565b60405181815233907fe79ffd9a88f13c8c49fb545410401d9877ab90d9dcf7b15d4dc0601993a0d9139060200160405180910390a26110ff60018055565b6001600160a01b0382166000908152601260209081526040808320848452825291829020825160c0810184528154808252600183015460ff908116151594830194909452600283015494820194909452600382015460608201526004820154909216151560808301526005015460a09091015292915050565b6113cb615699565b6113d3615699565b6001600160a01b0384166000908152601260209081526040808320868452825291829020825160c0808201855282548252600183015460ff90811615159483018590526002840154958301958652600384015460608085019190915260048501549091161515608080850191825260059095015460a085015290870194909452935191850191909152805184529051151591830191909152611475858561250c565b602083015261148485856111c2565b60408301526060015160a08201529392505050565b6114a56003600a613816565b565b6000806114b3836114cc565b905060006114c084612f63565b90506112918183615ba8565b600354604051630481930d60e21b81526001600160a01b03838116600483015260009216906312064c3490602401602060405180830381865afa158015611517573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112389190615bbb565b611543613820565b600082600781111561155757611557615bd4565b03611602576127108111156115b35760405162461bcd60e51b815260206004820152601d60248201527f496e76616c6964206c69717569646174696f6e207468726573686f6c6400000060448201526064015b60405180910390fd5b60268190556027546028546040805184815260208101939093528201527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf906060015b60405180910390a15050565b600182600781111561161657611616615bd4565b0361166157602781905560265460285460408051928352602083018490528201527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf906060016115f6565b600282600781111561167557611675615bd4565b0361171c57620151808110158015611690575062093a808111155b6116d35760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a590819dc9858d9481c195c9a5bd960621b60448201526064016115aa565b602881905560265460275460408051928352602083019190915281018290527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf906060016115f6565b600382600781111561173057611730615bd4565b036117ce576127108111156117875760405162461bcd60e51b815260206004820152601860248201527f526174696f2063616e6e6f74206578636565642031303025000000000000000060448201526064016115aa565b602b80549082905560408051828152602081018490527fab45a8374e3d1f623df0e88a957317731ccc02ed377e5b0213661f85bf60b73191015b60405180910390a1505050565b60048260078111156117e2576117e2615bd4565b036118785760018111156118305760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420626f6f6c65616e2076616c756560581b60448201526064016115aa565b602c805460ff19166001831490811790915560405160ff909116151581527f0565da69314136ea081c6239b9813f6ef6d213f57210dfef1d470af55b0235f3906020016115f6565b600582600781111561188c5761188c615bd4565b036119305760018111156118da5760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420626f6f6c65616e2076616c756560581b60448201526064016115aa565b601e8054600160a01b60018414810260ff60a01b199092169190911791829055604051910460ff16151581527f932a526fd95bf1b5aab775a957e284733f02db3a9824802cbcbb4fbca239cbe1906020016115f6565b600682600781111561194457611944615bd4565b036119d1576127108111156119935760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420696e737572616e63652066656560581b60448201526064016115aa565b602980549082905560408051828152602081018490527f87c461d1c2c7c5cd98495e5517aa11d9df56d0819cc4e8e53d9664c4b18f6db191016117c1565b60078260078111156119e5576119e5615bd4565b03611a2857601180549082905560408051828152602081018490527f1d830358c94d390366ad7162b72e731448e195f3576e63b1f57f5e43c719c5aa91016117c1565b604051630309cb8760e51b815260040160405180910390fd5b611a496137c8565b611a516137f2565b8080600003611a735760405163162908e360e11b815260040160405180910390fd5b602c5460ff1615611a97576040516370a7336d60e11b815260040160405180910390fd5b611aa033613c01565b611aac6003600a613816565b611ab582613ca8565b6000806000611ac86003600a8733613fd1565b925092509250611ad66140f9565b60405183815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649060200160405180910390a2505050506110ff60018055565b611b556040518060c00160405280600081526020016000151581526020016000815260200160008152602001600015158152602001600081525090565b506001600160a01b0382166000908152601260209081526040808320848452825291829020825160c08101845281548152600182015460ff908116151593820193909352600282015493810193909352600381015460608401526004810154909116151560808301526005015460a082015292915050565b611bd5613820565b6114a56142af565b6014546000906001600160a01b0316611bf857506000919050565b6000611c03836114a7565b905080600003611c165750600092915050565b6001600160a01b038316600090815260176020526040812054601554670de0b6b3a764000091611c4591615b09565b611c4f9084615b6f565b611c599190615b86565b6001600160a01b0385166000908152601860205260409020549091506112919082615ba8565b611c87613820565b602a546001600160a01b03828116911614801590611caf5750602a546001600160a01b031615155b15611e1357602a5460405163ce96cb7760e01b81523060048201526001600160a01b039091169063ce96cb7790602401602060405180830381865afa925050508015611d18575060408051601f3d908101601f19168201909252611d1591810190615bbb565b60015b611e0857611d24615bea565b806308c379a003611d815750611d38615c05565b80611d435750611d9a565b602a546040516001600160a01b03909116907fc4cede9b2b63ba72d39d2f630b4b742e1cada59d7a073ac4e10da9ac7b2eb10590600090a250611e13565b634e487b7103611d9a57611d93615c8f565b90611d4357505b3d808015611dc4576040519150601f19603f3d011682016040523d82523d6000602084013e611dc9565b606091505b50602a546040516001600160a01b03909116907fc4cede9b2b63ba72d39d2f630b4b742e1cada59d7a073ac4e10da9ac7b2eb10590600090a250611e13565b611e1181614301565b505b602a80546001600160a01b031981166001600160a01b0384811691821790935560048054604080516338d52e0f60e01b815290519486169591909116936338d52e0f928281019260209291908290030181865afa158015611e78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9c9190615caf565b6001600160a01b031614158015611ebb57506001600160a01b03821615155b15611ed957604051631b3b488360e11b815260040160405180910390fd5b816001600160a01b0316816001600160a01b03167f483bdedaaf23706a9800ac1af0d852b34927780d79f9d6ba60a80c7cad75ea3960405160405180910390a35050565b611f25613820565b6114a560006144c0565b600080805b6001600160a01b0384166000908152601360205260409020548111611faf576001600160a01b038416600090815260136020908152604080832084845260020190915290205460ff1615611f9d576000611f8d826122c2565b9050611f998184615ba8565b9250505b80611fa781615b32565b915050611f34565b5092915050565b611fbe613820565b611fca6003600a613816565b6001600160a01b0382166120365760405162461bcd60e51b815260206004820152602d60248201527f4c656e64696e67506f6f6c3a20526563697069656e742063616e6e6f7420626560448201526c207a65726f206164647265737360981b60648201526084016115aa565b60035460405163768bab4560e01b81526001600160a01b038481166004830152602482018490529091169063768bab4590604401600060405180830381600087803b15801561208457600080fd5b505af1158015612098573d6000803e3d6000fd5b505050505050565b6001600160a01b03821660009081526012602090815260408083208484529091528120600581015481546112919190615b09565b6120dc613820565b6114a5614510565b6120ec6137c8565b6120f46137f2565b3360008181526012602090815260408083208584529091529020600181015460ff166121335760405163013e5dc360e61b815260040160405180910390fd5b6001600160a01b038216600090815260136020908152604080832086845260020190915290205460ff1661217a5760405163346fad7360e01b815260040160405180910390fd5b602854816002015461218c9190615ba8565b4211156121ac57604051634b3c322760e11b815260040160405180910390fd5b600481015460ff166121d157604051632d1118e960e21b815260040160405180910390fd5b6121dd6003600a613816565b60006121e9838561250c565b9050801561220a576040516312bf4cab60e01b815260040160405180910390fd5b60018201805460ff1990811690915560006002840181905560048401805490921690915560405185916001600160a01b038616917fd66fca94ddede030b58f223f22d6b43407a443bd68e2e73d38ab7675cf480acc9190a35050506110ff60018055565b612276613820565b6014546001600160a01b0316156122a05760405163b6de9a7160e01b815260040160405180910390fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b60195460405163b94fe91760e01b815260048101839052600091829182916001600160a01b03169063b94fe917906024016040805180830381865afa15801561230f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123339190615ccc565b9150915081600003611faf57604051633b0c4c3160e11b815260040160405180910390fd5b612360613820565b6001600160a01b038116612387576040516303988b8160e61b815260040160405180910390fd5b601e546001600160a01b03908116908216036123b65760405163aba916dd60e01b815260040160405180910390fd5b601e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f593eaf5e0e1afc1c041a664a437fdae719a628836785d06572b008e6ca5c189d90600090a35050565b600080805b6001600160a01b038416600090815260136020526040902054811015611faf576001600160a01b0384166000908152601360205260409020805461246d9186918490811061245d5761245d615b1c565b906000526020600020015461250c565b6124779083615ba8565b91508061248381615b32565b91505061240d565b612493613820565b6001600160a01b0381166124ba576040516303988b8160e61b815260040160405180910390fd5b601f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f5d16ad41baeb009cd23eb8f6c7cde5c2e0cd5acf4a33926ab488875c37c37f3890600090a35050565b6001600160a01b03821660009081526012602090815260408083208484528252808320815160c08101835281548152600182015460ff9081161515948201949094526002820154928101929092526003810154606083018190526004820154909316151560808301526005015460a082015260085490916125a9916125a19190600160801b90046001600160801b0316615b09565b82519061454d565b81516112919190615ba8565b6125bd6137c8565b6125c56137f2565b81806000036125e75760405163162908e360e11b815260040160405180910390fd5b601e54600160a01b900460ff16612611576040516312cefcd560e31b815260040160405180910390fd5b6001600160a01b038216612638576040516303988b8160e61b815260040160405180910390fd5b612643848484614590565b5061264d60018055565b505050565b601f546000906001600160a01b0316331461267f576040516282b42960e81b815260040160405180910390fd5b602a546001600160a01b03166126c65760405162461bcd60e51b815260206004820152600c60248201526b139bc81d985d5b1d081cd95d60a21b60448201526064016115aa565b60045460218054426022556000909155601f546001600160a01b03928316926126f2918491168361488e565b6040518181527f7edfb0d5d58c6a3d398df94a9bdfa2b33f3fa42ae40d72ebdc717d2db3953ee59060200160405180910390a19150505b90565b6127346137c8565b61273c6137f2565b808060000361275e5760405163162908e360e11b815260040160405180910390fd5b61276733613c01565b6127736003600a613816565b60006127836003600a85336148bf565b33600090815260136020526040812060010154919250036127b8573360009081526013602052604090206001018390556127e0565b33600090815260136020526040812060010180548592906127da908490615ba8565b90915550505b6127e86140f9565b604080518481526020810183905233917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15910160405180910390a250506110ff60018055565b60006128386137c8565b61284133613c01565b50600161272960018055565b6128556137c8565b601e546001600160a01b0316331461287f576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03821660009081526012602090815260408083208484529091529020600181015460ff166128c75760405163013e5dc360e61b815260040160405180910390fd5b6001600160a01b038316600090815260136020908152604080832085845260020190915290205460ff1661290e5760405163346fad7360e01b815260040160405180910390fd5b61291a6003600a613816565b600481015460ff16801561293f5750602854816002015461293b9190615ba8565b4211155b1561295d576040516363e5f12d60e11b815260040160405180910390fd5b6000612969848461250c565b60018301805460ff199081169091556000600280860182905560048087018054851690556001600160a01b03808a1684526013602090815260408086208b87529094019052928290208054909416909355601e5490516323b872dd60e01b81529394507f00000000000000000000000000000000000000000000000000000000000000008216936323b872dd93612a069330931691899101615b4b565b600060405180830381600087803b158015612a2057600080fd5b505af1158015612a34573d6000803e3d6000fd5b5050506000848152602d602052604080822080546001600160a01b03191690556005546008549151636f3df85160e11b81529293508392839283926001600160a01b03169163de7bf0a291612aa3918c918a91600160801b9091046001600160801b0316908d90600401615cf0565b6080604051808303816000875af1158015612ac2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ae69190615d1f565b600854600160801b90046001600160801b031660038b810191909155546004549498509296509094509250612b2a916001600160a01b039081169133911687613b1e565b6000808755600587018190556007849055612b4c90600390600a908790614a03565b601e5487906001600160a01b03808b1691167f3f2ad1b98f8838e6f90c126ac5f8a9875c7acf2a56aeb8a630c0fa475b07056a88612b89856122c2565b6040805192835260208301919091520160405180910390a450505050505061128460018055565b612bdb6040518060800160405280606081526020016000815260200160008152602001606081525090565b6001600160a01b0382166000908152601360209081526040808320815160808101835260608082529381018590529182019390935281810191909152815460408051602080840282018101909252828152918491830182828015612c5e57602002820191906000526020600020905b815481526020019060010190808311612c4a575b5050509183525050815467ffffffffffffffff811115612c8057612c80615788565b604051908082528060200260200182016040528015612cb957816020015b612ca6615699565b815260200190600190039081612c9e5790505b506060820152600060208201819052604082018190525b8254811015612e1c57306001600160a01b0316631d00ac3a86856000018481548110612cfe57612cfe615b1c565b6000918252602090912001546040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260440160e060405180830381865afa158015612d53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d779190615d6a565b82606001518281518110612d8d57612d8d615b1c565b602002602001018190525081606001518181518110612dae57612dae615b1c565b60200260200101516020015182602001818151612dcb9190615ba8565b9052508254612df690849083908110612de657612de6615b1c565b90600052602060002001546122c2565b82604001818151612e079190615ba8565b90525080612e1481615b32565b915050612cd0565b509392505050565b601a546001600160a01b03163314612e4e576040516282b42960e81b815260040160405180910390fd5b6110ff6003600a83614b55565b6003546001600160a01b03163314612eb55760405162461bcd60e51b815260206004820152601e60248201527f4f6e6c792052546f6b656e2063616e207570646174652072657761726473000060448201526064016115aa565b6000612ec0826114a7565b90508015612f43576001600160a01b038216600090815260176020526040812054601554670de0b6b3a764000091612ef791615b09565b612f019084615b6f565b612f0b9190615b86565b90508015612f41576001600160a01b03831660009081526018602052604081208054839290612f3b908490615ba8565b90915550505b505b506015546001600160a01b03909116600090815260176020526040902055565b601e546000906001600160a01b0316612f7e57506000919050565b601e546040516001600160a01b038481166024830152600092839291169060440160408051601f198184030181529181526020820180516001600160e01b031663c084b10b60e01b17905251612fd49190615df9565b600060405180830381855afa9150503d806000811461300f576040519150601f19603f3d011682016040523d82523d6000602084013e613014565b606091505b5091509150808060200190518101906112919190615bbb565b6130356137c8565b61303d6137f2565b33600081815260126020908152604080832086845290915281209161306290856120a0565b90506000613071338686613661565b601b54601f54604051636eb1769f60e11b81523360048201526001600160a01b039182166024820152929350839291169063dd62ed3e90604401602060405180830381865afa1580156130c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130ec9190615bbb565b101561310b576040516339e067d560e21b815260040160405180910390fd5b601b546040516370a0823160e01b815233600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa158015613153573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131779190615bbb565b101561319657604051631e9acf1760e31b815260040160405180910390fd5b6131a08585613873565b6131a981614c2e565b60048301805460ff191660011790556131c28483615ba8565b8360050160008282546131d59190615ba8565b909155505060405182815285907fd5c2dc3f0ec76ece0185d374bca424347955bce9b5e7b08757bb8e1bb8d9c0a99060200160405180910390a250505061128460018055565b6132236137c8565b61322b6137f2565b808060000361324d5760405163162908e360e11b815260040160405180910390fd5b61127a838333614590565b613260613820565b6003546001600160a01b03908116908416036132b55760405162461bcd60e51b815260206004820152601460248201527321b0b73737ba103932b9b1bab290292a37b5b2b760611b60448201526064016115aa565b61264d6001600160a01b038416838361488e565b600080805b6001600160a01b038416600090815260136020526040902054811015611faf576001600160a01b038416600090815260136020908152604080832084845260020190915290205460ff161561333457613327848261250c565b6133319083615ba8565b91505b8061333e81615b32565b9150506132ce565b61334e6137c8565b6133566137f2565b6133626003600a613816565b6040516331a9108f60e11b81526004810182905233906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa1580156133c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133ed9190615caf565b6001600160a01b031614613414576040516384b359d160e01b815260040160405180910390fd5b336000908152601360209081526040808320848452600281019092529091205460ff16156134555760405163e8edca8360e01b815260040160405180910390fd5b60008281526002820160209081526040808320805460ff191660019081179091558454908101855584845282842001859055848352602d9091529081902080546001600160a01b031916339081179091559051632142170760e11b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316916342842e0e916134f4919030908790600401615b4b565b600060405180830381600087803b15801561350e57600080fd5b505af1158015613522573d6000803e3d6000fd5b50506040518481523392507f1c4b8380f61aea3d5d98cbadaf2e6b2e4f3d8ca8c0fce1290b26ac267158745f915060200160405180910390a2506110ff60018055565b6000818152602d60205260408120546001600160a01b031661360a576040516331a9108f60e11b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690636352211e90602401602060405180830381865afa1580156135e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112389190615caf565b506000908152602d60205260409020546001600160a01b031690565b61362e613820565b6001600160a01b03811661365857604051631e4fbdf760e01b8152600060048201526024016115aa565b6110ff816144c0565b60008061366e85856120a0565b905061368860295484836136829190615ba8565b9061384d565b9150505b9392505050565b61369b6137c8565b6136a36137f2565b6001600160a01b03821660009081526012602090815260408083208484529091529020600181015460ff16156136ec5760405163b84f7eb560e01b815260040160405180910390fd5b6001600160a01b038316600090815260136020908152604080832085845260020190915290205460ff166137335760405163346fad7360e01b815260040160405180910390fd5b61373f6003600a613816565b600061374b84846111c2565b9050602754811061376f5760405163317416e560e11b815260040160405180910390fd5b6001828101805460ff1916909117905542600283015560405183906001600160a01b0386169033907f4601ff28b457321206747d0540f02cfb8a9d6bf3021146378e8544e1817e20e790600090a4505061128460018055565b6002600154036137eb57604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b60025460ff16156114a55760405163d93c066560e01b815260040160405180910390fd5b6112848282614d21565b6000546001600160a01b031633146114a55760405163118cdaa760e01b81523360048201526024016115aa565b60008115611388198390048411151761386557600080fd5b506127109102611388010490565b3360009081526012602090815260408083208584529091529020600181015460ff16156138b357604051630bff073160e31b815260040160405180910390fd5b336000908152601360209081526040808320868452600281019092529091205460ff166138f35760405163346fad7360e01b815260040160405180910390fd5b60006138fe856122c2565b90508060000361392157604051638dc8d9b360e01b815260040160405180910390fd5b61392d6003600a613816565b61393684613ca8565b600061394d6026548361384d90919063ffffffff16565b90508461395a338861134a565b6139649190615ba8565b81101561398457604051630369fbd160e51b815260040160405180910390fd5b600554600854604051639ceeaca760e01b81523360048201819052602482015260448101889052600160801b9091046001600160801b0316606482015260848101889052600091829182916001600160a01b031690639ceeaca79060a4016060604051808303816000875af1158015613a01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a259190615e28565b600854600160801b90046001600160801b031660038b81019190915554604051635c921eb960e01b8152336004820152602481018d905293965091945092506001600160a01b031690635c921eb990604401600060405180830381600087803b158015613a9157600080fd5b505af1158015613aa5573d6000803e3d6000fd5b5050505081876000016000828254613abd9190615ba8565b90915550506007819055613ad66003600a60008b614a03565b613ade6140f9565b60405188815233907fcbc04eca7e9da35cb1393a6135a199ca52e450d5e9251cbd99f7847d33a367509060200160405180910390a2505050505050505050565b613b7884856001600160a01b03166323b872dd868686604051602401613b4693929190615b4b565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050614e53565b50505050565b6014546001600160a01b0316613ba757604051632506892760e01b815260040160405180910390fd5b6006546000819003613bb7575050565b811561128457600081613bd284670de0b6b3a7640000615b6f565b613bdc9190615b86565b90508060146001016000828254613bf39190615ba8565b909155505042601655505050565b6014546001600160a01b0316613c145750565b6000613c1f82611bdd565b90508015611284576001600160a01b038083166000908152601860209081526040808320839055601554601790925290912055601454613c619116838361488e565b816001600160a01b03167fe34918ff1c7084970068b53fd71ad6d8b04e9f15d3886cbf006443e6cdc52ea682604051613c9c91815260200190565b60405180910390a25050565b602a546001600160a01b0316613cbb5750565b600480546003546040516370a0823160e01b81526001600160a01b03918216938101939093526000929116906370a0823190602401602060405180830381865afa158015613d0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d319190615bbb565b905081811015611284576000613d478284615b09565b602a5460405163ce96cb7760e01b81523060048201529192506000916001600160a01b039091169063ce96cb7790602401602060405180830381865afa158015613d95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613db99190615bbb565b90506000613dc78285615ba8565b905082811015613e305760405162461bcd60e51b815260206004820152602e60248201527f4e6f7420656e6f756768206c697175696469747920746f2066756c66696c6c2060448201526d1d1a19481dda5d1a191c985dd85b60921b60648201526084016115aa565b6006546000613e3f8783615b09565b905060008115613e5a57602b54613e5790839061384d565b90505b8585811115613e665750845b8015613e7557613e7581614301565b600480546040516370a0823160e01b815230928101929092526001600160a01b0316906370a0823190602401602060405180830381865afa158015613ebe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ee29190615bbb565b600480546003546040516370a0823160e01b81526001600160a01b039182169381019390935216906370a0823190602401602060405180830381865afa158015613f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f549190615bbb565b613f5e9190615ba8565b975088881015613fc65760405162461bcd60e51b815260206004820152602d60248201527f496e73756666696369656e74206c69717569646974792061667465722076617560448201526c1b1d081dda5d1a191c985dd85b609a1b60648201526084016115aa565b505050505050505050565b60008060006001851015613ff85760405163162908e360e11b815260040160405180910390fd5b6140028787614d21565b86546005880154604051636b81068560e11b8152600092839283926001600160a01b039092169163d7020d0a9161404b918b9182918e916001600160801b031690600401615e5d565b6060604051808303816000875af115801561406a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061408e9190615e8e565b9250925092508295506140a48a8a600084614a03565b60408051828152602081018590526001600160a01b038916917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568910160405180910390a2999198508997509095505050505050565b602a546001600160a01b031661410b57565b600654602b5460009061411f90839061384d565b600480546003546040516370a0823160e01b81526001600160a01b039182169381019390935292935060009216906370a0823190602401602060405180830381865afa158015614173573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141979190615bbb565b9050818111156141be5760006141ad8383615b09565b90506141b881614eb6565b50614275565b818110156142755760006141d28284615b09565b90506000602a60009054906101000a90046001600160a01b03166001600160a01b03166301e1d1146040518163ffffffff1660e01b8152600401602060405180830381865afa158015614229573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061424d9190615bbb565b9050600081831161425e5782614260565b815b905080156142715761427181614301565b5050505b6020805460408051848152928301919091527f8f9497c27f572ff1a65e8b2c7a0706d466466ae0b5efc78462b5f0021da6695691016117c1565b6142b76150ec565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b602a546040516328c0620360e01b8152600160048201526000916001600160a01b0316906328c0620390602401602060405180830381865afa15801561434b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061436f9190615bbb565b602a54604051632d182be560e21b815260048101859052306024820181905260448201529192506000916001600160a01b039091169063b460af94906064016020604051808303816000875af11580156143cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143f19190615bbb565b90506000602060030154831115614454576023546000906144129085615b09565b9050670de0b6b3a76400006144278285615b6f565b6144319190615b86565b915081602060010160008282546144489190615ba8565b90915550614458915050565b5060005b60006144648286615b09565b600354600454919250614484916001600160a01b0390811691168361488e565b6020548511156144985760006020556144b3565b84602060000160008282546144ad9190615b09565b90915550505b5050506023555042602455565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6145186137f2565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586142e43390565b600081156b019d971e4fe8401e74000000198390048411151761456f57600080fd5b50676765c793fa10079d601b1b91026b019d971e4fe8401e74000000010490565b816000036145b15760405163162908e360e11b815260040160405180910390fd5b6001600160a01b0381166145d8576040516303988b8160e61b815260040160405180910390fd5b6001600160a01b0381166000908152601360209081526040808320868452600281019092529091205460ff166146215760405163346fad7360e01b815260040160405180910390fd5b61462d6003600a613816565b6001600160a01b03821660009081526012602090815260408083208784529091529020600181015460ff1680156146695750600481015460ff16155b156146875760405163224aae4f60e21b815260040160405180910390fd5b600181015460ff1680156146ab575060285481600201546146a89190615ba8565b42115b156146c957604051634b3c322760e11b815260040160405180910390fd5b60006146d5848761250c565b905060008186116146e657856146e8565b815b9050600080600080600360020160009054906101000a90046001600160a01b03166001600160a01b031663de7bf0a28a87600360050160109054906101000a90046001600160801b03168f6040518563ffffffff1660e01b81526004016147529493929190615cf0565b6080604051808303816000875af1158015614771573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147959190615d1f565b600854600160801b90046001600160801b031660038c8101919091555460045494985092965090945092506147d9916001600160a01b039081169133911688613b1e565b600783905580156147fe57808760000160008282546147f89190615ba8565b90915550505b865461480b908390615b09565b8088556005880154111561482157865460058801555b865460000361483257600060058801555b6148416003600a876000614a03565b6040518581526001600160a01b038a169033907f05f2eeda0e08e4b437f487c8d7d29b14537d15e3488170dc3de5dbdf8dac46849060200160405180910390a35050505050505050505050565b6040516001600160a01b0383811660248301526044820183905261264d91859182169063a9059cbb90606401613b46565b600060018310156148e35760405163162908e360e11b815260040160405180910390fd5b6148ed8585614d21565b8454600186015461490d916001600160a01b039182169133911686613b1e565b8454600586015460405163b3f1c93d60e01b81526000928392839283926001600160a01b03169163b3f1c93d916149589130918b918d916001600160801b0390911690600401615e5d565b6080604051808303816000875af1158015614977573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061499b9190615ebc565b93509350935093508294506149b38989896000614a03565b60408051888152602081018790526001600160a01b038816917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15910160405180910390a250505050949350505050565b8115614a3057614a128261510f565b6001600160801b03168460030154614a2a9190615ba8565b60038501555b8015614a82578084600301541015614a5b5760405163bb55fd2760e01b815260040160405180910390fd5b614a648161510f565b6001600160801b03168460030154614a7c9190615b09565b60038501555b600384015460048501546000614a988787615147565b90506000614aa688886151a8565b90506000614abc89600301548a60040154615203565b9050614ae0886002015489600301548a600401548b600501548c600601548661524f565b600189018190556007890154614af891839187615339565b8855614b048989614d21565b875460018901546040517f48f4f83c2f1843e8fd7ef13ffcff40fca5055dc1b9b074cd9dd0f9a8a8e09dd992614b4292908252602082015260400190565b60405180910390a1505050505050505050565b6001811015614b775760405163824c180760e01b815260040160405180910390fd5b60028201548015614bda576000614b90826101f461384d565b90506000828411614baa57614ba58484615b09565b614bb4565b614bb48385615b09565b905081811115614bd757604051631a8b543360e21b815260040160405180910390fd5b50505b60028301829055614bee8484600080614a03565b60408051828152602081018490527fd45d1eb66419c036e2fa401916c7db417696f889cf4ab8ca92272327e8e1c83e91015b60405180910390a150505050565b601f546001600160a01b0316614c57576040516303988b8160e61b815260040160405180910390fd5b80600003614c785760405163162908e360e11b815260040160405180910390fd5b601f5460048054604051636033e31560e01b81526001600160a01b0391821692810192909252336024830152604482018490527f65991ea5d80f7b6dc8c32648f59c5a653beb10caddae8fefad6966b35a0a65f1606483015290911690636033e315906084016020604051808303816000875af1158015614cfd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112849190615ef9565b6006820154600090614d3a9064ffffffffff1642615b09565b90506001811015614d4a57505050565b60058301546001600160801b03166001811015614d7a57604051630a1cf3ed60e21b815260040160405180910390fd5b82546005850154614d96919084906001600160801b0316615380565b6005850180546fffffffffffffffffffffffffffffffff19166001600160801b0392831617908190556001850154614dda9290918591600160801b9091041661539d565b6005850180546001600160801b03908116600160801b93821684028181179384905560068901805464ffffffffff19164264ffffffffff16179055604080519184169092178152939092041660208301527ff92a3abee06d57c996e7e19eb34560241fdc1fe67e9ebd503177710bf9fd82049101614c20565b6000614e686001600160a01b038416836153b9565b90508051600014158015614e8d575080806020019051810190614e8b9190615ef9565b155b1561264d57604051635274afe760e01b81526001600160a01b03841660048201526024016115aa565b600354604051635c921eb960e01b8152306004820152602481018390526001600160a01b0390911690635c921eb990604401600060405180830381600087803b158015614f0257600080fd5b505af1158015614f16573d6000803e3d6000fd5b505060048054602a5460405163095ea7b360e01b81526001600160a01b03918216938101939093526024830186905216925063095ea7b391506044016020604051808303816000875af1158015614f71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614f959190615ef9565b50602a54604051636e553f6560e01b8152600481018390523060248201526000916001600160a01b031690636e553f65906044016020604051808303816000875af1158015614fe8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061500c9190615bbb565b602a546040516328c0620360e01b81526000600482018190529293506001600160a01b03909116906328c0620390602401602060405180830381865afa15801561505a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061507e9190615bbb565b9050600082116150c75760405162461bcd60e51b815260206004820152601460248201527315985d5b1d0819195c1bdcda5d0819985a5b195960621b60448201526064016115aa565b82602060000160008282546150dc9190615ba8565b9091555050602355505042602555565b60025460ff166114a557604051638dfc202b60e01b815260040160405180910390fd5b60006001600160801b03821115615143576040516306dfcc6560e41b815260806004820152602481018390526044016115aa565b5090565b600682015460009081906151629064ffffffffff1642615b09565b905060018110156151795750506004820154611238565b6005840154600184015461129191600160801b90046001600160801b0316906151a290846153c7565b9061454d565b600682015460009081906151c39064ffffffffff1642615b09565b905060018110156151e357505060058201546001600160801b0316611238565b60058401548354611291916001600160801b0316906151a2908483615416565b600060018310156152205750676765c793fa10079d601b1b611238565b600061523e6152396152328587615ba8565b859061544a565b61510f565b6001600160801b0316949350505050565b600085871115806152605750838710155b8061526b5750858511155b806152765750838510155b156152945760405163abc83fed60e01b815260040160405180910390fd5b60008383116152d65760006152a9888a615b09565b905060006152c1866152bb878561454d565b9061544a565b90506152cd818a615ba8565b9250505061532e565b60006152e28585615b09565b905060006152fb86676765c793fa10079d601b1b615b09565b905060006153098b89615b09565b9050600061531b836152bb868561454d565b9050615327818d615ba8565b9450505050505b979650505050505050565b6000600182101561534c57506000611291565b6000615358868661454d565b90506000615366828661454d565b905060006153748284615b09565b98975050505050505050565b60008061538e858585615416565b9050613688615239828561454d565b6000806153aa85856153c7565b9050613688615239848361454d565b606061368c83836000615487565b600060018210156153e45750676765c793fa10079d601b1b611238565b60006153f4846301e1338061544a565b90506000615402828561454d565b905061540d81615524565b95945050505050565b6000806154238486615b6f565b90506154336301e1338082615b86565b905061368881676765c793fa10079d601b1b615ba8565b60008115676765c793fa10079d601b1b6002840419048411171561546d57600080fd5b50676765c793fa10079d601b1b9190910260028204010490565b6060814710156154ac5760405163cd78605960e01b81523060048201526024016115aa565b600080856001600160a01b031684866040516154c89190615df9565b60006040518083038185875af1925050503d8060008114615505576040519150601f19603f3d011682016040523d82523d6000602084013e61550a565b606091505b509150915061551a8683836155cd565b9695505050505050565b6000816000036155405750676765c793fa10079d601b1b919050565b506b169e43a85eb381aa580000006b1363156bbee3016d700000006b1027e72f1f128130880000006b0cecb8f27f4200f3a00000006b09b18ab5df7180b6b80000006b06765c793fa10079d000000086800204808702919091048087029290920480870293909304808702949094048087029590950495010101010101676765c793fa10079d601b1b0190565b6060826155e2576155dd82615629565b61368c565b81511580156155f957506001600160a01b0384163b155b1561562257604051639996b31560e01b81526001600160a01b03851660048201526024016115aa565b508061368c565b8051156156395780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b82805482825590600052602060002090810192821561568d579160200282015b8281111561568d578251825591602001919060010190615672565b506151439291506156da565b6040518060e0016040528060008152602001600081526020016000815260200160001515815260200160008152602001600081526020016000151581525090565b5b8082111561514357600081556001016156db565b60006020828403121561570157600080fd5b5035919050565b6001600160a01b03811681146110ff57600080fd5b60006020828403121561572f57600080fd5b813561368c81615708565b6000806040838503121561574d57600080fd5b823561575881615708565b946020939093013593505050565b6000806040838503121561577957600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156157c4576157c4615788565b6040525050565b600080600080608085870312156157e157600080fd5b84356157ec81615708565b93506020858101356157fd81615708565b935060408601359250606086013567ffffffffffffffff8082111561582157600080fd5b818801915088601f83011261583557600080fd5b81358181111561584757615847615788565b604051915061585f601f8201601f191685018361579e565b808252898482850101111561587357600080fd5b808484018584013760008482840101525080935050505092959194509250565b8051825260208101516020830152604081015160408301526060810151151560608301526080810151608083015260a081015160a083015260c0810151151560c08301525050565b60e081016112388284615893565b600080604083850312156158fc57600080fd5b82356008811061575857600080fd5b60008060006060848603121561592057600080fd5b8335925060208401359150604084013561593981615708565b809150509250925092565b600081518084526020808501945080840160005b8381101561597e5761596b878351615893565b60e0969096019590820190600101615958565b509495945050505050565b60208082528251608083830152805160a0840181905260009291820190839060c08601905b808310156159ce57835182529284019260019290920191908401906159ae565b508387015160408701526040870151606087015260608701519350601f1986820301608087015261532e8185615944565b600080600060608486031215615a1457600080fd5b8335615a1f81615708565b92506020840135615a2f81615708565b929592945050506040919091013590565b60006101008201905060018060a01b0380845116835280602085015116602084015280604085015116604084015250606083015160608301526080830151608083015260a08301516001600160801b0380821660a08501528060c08601511660c0850152505060e0830151611faf60e084018264ffffffffff169052565b600080600060608486031215615ad357600080fd5b8335615ade81615708565b95602085013595506040909401359392505050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561123857611238615af3565b634e487b7160e01b600052603260045260246000fd5b600060018201615b4457615b44615af3565b5060010190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b808202811582820484141761123857611238615af3565b600082615ba357634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561123857611238615af3565b600060208284031215615bcd57600080fd5b5051919050565b634e487b7160e01b600052602160045260246000fd5b600060033d11156127295760046000803e5060005160e01c90565b600060443d1015615c135790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715615c4357505050505090565b8285019150815181811115615c5b5750505050505090565b843d8701016020828501011115615c755750505050505090565b615c846020828601018761579e565b509095945050505050565b60008060233d1115615cab576020600460003e50506000516001905b9091565b600060208284031215615cc157600080fd5b815161368c81615708565b60008060408385031215615cdf57600080fd5b505080516020909101519092909150565b6001600160a01b0394909416845260208401929092526001600160801b03166040830152606082015260800190565b60008060008060808587031215615d3557600080fd5b505082516020840151604085015160609095015191969095509092509050565b80518015158114615d6557600080fd5b919050565b600060e08284031215615d7c57600080fd5b60405160e0810181811067ffffffffffffffff82111715615d9f57615d9f615788565b8060405250825181526020830151602082015260408301516040820152615dc860608401615d55565b60608201526080830151608082015260a083015160a0820152615ded60c08401615d55565b60c08201529392505050565b6000825160005b81811015615e1a5760208186018101518583015201615e00565b506000920191825250919050565b600080600060608486031215615e3d57600080fd5b615e4684615d55565b925060208401519150604084015190509250925092565b6001600160a01b03948516815292909316602083015260408201526001600160801b03909116606082015260800190565b600080600060608486031215615ea357600080fd5b8351925060208401519150604084015190509250925092565b60008060008060808587031215615ed257600080fd5b615edb85615d55565b60208601516040870151606090970151919890975090945092505050565b600060208284031215615f0b57600080fd5b61368c82615d5556fea264697066735822122085790ad8a34ebf38e48587fd6cfb2d6f5a50229056245092ddebc2e6bc8f63c264736f6c63430008140033",
|
|
2757
|
-
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106104965760003560e01c80638aabb2d111610262578063c4f8911c11610151578063e91a7ca6116100ce578063f2fde38b11610092578063f2fde38b14610ddd578063f5b3b9e714610df0578063f8d8989814610e03578063f91c3b0d14610e16578063fbf4a61214610e29578063fbfa77cf14610e3857600080fd5b8063e91a7ca614610c84578063e9f2838e14610c97578063ec915ee614610ca4578063ef5bac2514610d05578063f1caf09f14610dca57600080fd5b8063d5db7d5d11610115578063d5db7d5d14610c25578063d81a698614610c38578063d8aed14514610c4b578063e5711e8b14610c5e578063e65896c914610c7157600080fd5b8063c4f8911c14610b1f578063c6d6916c14610b32578063c891091314610b45578063cd3293de14610b68578063d17e988314610c1257600080fd5b8063a8de4834116101df578063b88a802f116101a3578063b88a802f14610a4d578063bf4eccdf14610a55578063bfd91c2314610a68578063c1be667714610a88578063c415b95c14610b0c57600080fd5b8063a8de4834146109e5578063a90d728f146109f8578063a9bf805c14610a00578063ac919fd414610a13578063b6b55f2514610a3a57600080fd5b806397c4fac71161022657806397c4fac71461099057806398d721e0146109995780639daa54b4146109ac578063a42dce80146109bf578063a5b350c9146109d257600080fd5b80638aabb2d1146109205780638aee8127146109335780638bc2ff5b146109465780638da5cb5b1461096c578063929761791461097d57600080fd5b80632a5bf6d2116103895780635c975abb11610306578063768bab45116102ca578063768bab451461088e5780637bc7780b146108a157806383ba103f146108a95780638429d51f146108bc5780638456cb5914610907578063883c6b241461090f57600080fd5b80635c975abb146108155780636061ffc3146108205780636817031b14610860578063715018a61461087357806375417da61461087b57600080fd5b80633f4ba83a1161034d5780633f4ba83a1461073e5780634031234c1461074657806340c65f721461074f5780634df9d6ba14610762578063523a19ac1461077557600080fd5b80632a5bf6d21461067e5780632ab414fc146106915780632e1a7d4d146106a45780633adbb5af146106b75780633e20bf141461071a57600080fd5b8063150b7a02116104175780631d00ac3a116103db5780631d00ac3a146106285780631d4bf4a0146106485780631d8557d7146106505780632630c12f1461065857806327156a681461066b57600080fd5b8063150b7a02146105c457806316a6c4c5146105f057806316c621e0146105f95780631705ffad1461060c57806319c2d37e1461061557600080fd5b80630c34b9141161045e5780630c34b914146105195780630c42dcaf146105825780630c679a7b1461058b5780630d4085121461059e5780630ecbcdab146105b157600080fd5b8063023245d71461049b578063048c661d146104b0578063057e9b7b146104e057806309bf1e73146104f75780630ab30d8a14610501575b600080fd5b6104ae6104a93660046156ef565b610e4b565b005b601e546104c3906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6104e960275481565b6040519081526020016104d7565b6104e96203f48081565b600854600160801b90046001600160801b03166104e9565b610521611102565b6040516104d79190600061010082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e083015292915050565b6104e9611f4081565b6104ae61059936600461571d565b611198565b6104e96105ac36600461573a565b6111c2565b6104ae6105bf366004615766565b61123e565b6105d76105d23660046157cb565b611288565b6040516001600160e01b031990911681526020016104d7565b6104e960285481565b6104ae6106073660046156ef565b611299565b6104e9602b5481565b6104e961062336600461573a565b61134a565b61063b61063636600461573a565b6113c3565b6040516104d791906158db565b6021546104e9565b6104ae611499565b6019546104c3906001600160a01b031681565b6104e961067936600461571d565b6114a7565b6104e961068c36600461571d565b6114cc565b6104ae61069f3660046158e9565b61153b565b6104ae6106b23660046156ef565b611a41565b6106ca6106c536600461573a565b611b18565b6040516104d79190600060c08201905082518252602083015115156020830152604083015160408301526060830151606083015260808301511515608083015260a083015160a083015292915050565b601e5461072e90600160a01b900460ff1681565b60405190151581526020016104d7565b6104ae611bcd565b6104e960265481565b601c546104c3906001600160a01b031681565b6104e961077036600461571d565b611bdd565b61080061078336600461573a565b6001600160a01b0391909116600090815260126020908152604080832093835292815290829020825160c0810184528154808252600183015460ff90811615159483019490945260028301549482019490945260038201546060820181905260048301549093161515608082015260059091015460a09091015291565b604080519283526020830191909152016104d7565b60025460ff1661072e565b60145460155460165461083b926001600160a01b0316919083565b604080516001600160a01b0390941684526020840192909252908201526060016104d7565b6104ae61086e36600461571d565b611c7f565b6104ae611f1d565b6104e961088936600461571d565b611f2f565b6104ae61089c36600461573a565b611fb6565b600c546104e9565b6104e96108b736600461573a565b6120a0565b6020546021546022546023546024546025546108da95949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c0016104d7565b6104ae6120d4565b6008546001600160801b03166104e9565b6104ae61092e3660046156ef565b6120e4565b6104ae61094136600461571d565b61226e565b7f00000000000000000000000000000000000000000000000000000000000000006104c3565b6000546001600160a01b03166104c3565b6104e961098b3660046156ef565b6122c2565b6104e960295481565b6104ae6109a736600461571d565b612358565b6104e96109ba36600461571d565b612408565b6104ae6109cd36600461571d565b61248b565b6104e96109e036600461573a565b61250c565b6104ae6109f336600461590b565b6125b5565b6104e9612652565b601a546104c3906001600160a01b031681565b6104c37f000000000000000000000000000000000000000000000000000000000000000081565b6104ae610a483660046156ef565b61272c565b61072e61282e565b6104ae610a6336600461573a565b61284d565b610a7b610a7636600461571d565b612bb0565b6040516104d79190615989565b610add610a9636600461573a565b6012602090815260009283526040808420909152908252902080546001820154600283015460038401546004850154600590950154939460ff938416949293919291169086565b6040805196875294151560208701529385019290925260608401521515608083015260a082015260c0016104d7565b601f546104c3906001600160a01b031681565b6104ae610b2d3660046156ef565b612e24565b6104ae610b4036600461571d565b612e5b565b6104e9610b5336600461571d565b60136020526000908152604090206001015481565b600354600454600554600654600754600854600954610bb4966001600160a01b0390811696811695169392916001600160801b0380821692600160801b909204169064ffffffffff1688565b604080516001600160a01b03998a16815297891660208901529590971694860194909452606085019290925260808401526001600160801b0390811660a08401521660c082015264ffffffffff90911660e0820152610100016104d7565b6104e9610c2036600461571d565b612f63565b601b546104c3906001600160a01b031681565b6104ae610c46366004615766565b61302d565b6104ae610c59366004615766565b61321b565b6104ae610c6c3660046159ff565b613258565b6104e9610c7f36600461571d565b6132c9565b6104ae610c923660046156ef565b613346565b602c5461072e9060ff1681565b600a54600b54600c54600d54600e54600f54601054601154610cca979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016104d7565b610dbd6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091525060408051610100810182526003546001600160a01b039081168252600454811660208301526005541691810191909152600654606082015260075460808201526008546001600160801b0380821660a0840152600160801b9091041660c082015260095464ffffffffff1660e082015290565b6040516104d79190615a40565b6104c3610dd83660046156ef565b613565565b6104ae610deb36600461571d565b613626565b6104e9610dfe366004615abe565b613661565b601d546104c3906001600160a01b031681565b6104ae610e2436600461573a565b613693565b6104e9670de0b6b3a764000081565b602a546104c3906001600160a01b031681565b610e536137c8565b610e5b6137f2565b3360009081526012602090815260408083208484529091529020600181015460ff1615610e9b576040516367c11db560e01b815260040160405180910390fd5b336000908152601360209081526040808320858452600281019092529091205460ff16610edb5760405163346fad7360e01b815260040160405180910390fd5b610ee76003600a613816565b6000610ef3338561134a565b90508015610f14576040516302c9375f60e21b815260040160405180910390fd5b60008481526002830160209081526040808320805460ff19169055602d909152812080546001600160a01b03191690558254610f5290600190615b09565b67ffffffffffffffff811115610f6a57610f6a615788565b604051908082528060200260200182016040528015610f93578160200160208202803683370190505b5090506000805b84548110156110265786856000018281548110610fb957610fb9615b1c565b90600052602060002001541461101457846000018181548110610fde57610fde615b1c565b9060005260206000200154838381518110610ffb57610ffb615b1c565b60209081029190910101528161101081615b32565b9250505b8061101e81615b32565b915050610f9a565b5081516110399085906020850190615652565b50604051632142170760e11b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342842e0e9061108a90309033908b90600401615b4b565b600060405180830381600087803b1580156110a457600080fd5b505af11580156110b8573d6000803e3d6000fd5b50506040518881523392507f2aa1b4c95f3b2da9c955947fca584743ea0d457708fadf209c093061e98c4ccb915060200160405180910390a250505050506110ff60018055565b50565b61114a60405180610100016040528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b506040805161010081018252600a548152600b546020820152600c5491810191909152600d546060820152600e546080820152600f5460a082015260105460c082015260115460e082015290565b6111a0613820565b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000806111ce836122c2565b905060006111dc858561250c565b905060018110156111fc57676765c793fa10079d601b1b92505050611238565b60006112136026548461384d90919063ffffffff16565b90508161122882670de0b6b3a7640000615b6f565b6112329190615b86565b93505050505b92915050565b6112466137c8565b61124e6137f2565b80806000036112705760405163162908e360e11b815260040160405180910390fd5b61127a8383613873565b5061128460018055565b5050565b630a85bd0160e11b5b949350505050565b6112a16137c8565b6014546001600160a01b03166112ca57604051632506892760e01b815260040160405180910390fd5b806000036112eb5760405163162908e360e11b815260040160405180910390fd5b601454611303906001600160a01b0316333084613b1e565b61130c81613b7e565b60405181815233907fe79ffd9a88f13c8c49fb545410401d9877ab90d9dcf7b15d4dc0601993a0d9139060200160405180910390a26110ff60018055565b6001600160a01b0382166000908152601260209081526040808320848452825291829020825160c0810184528154808252600183015460ff908116151594830194909452600283015494820194909452600382015460608201526004820154909216151560808301526005015460a09091015292915050565b6113cb615699565b6113d3615699565b6001600160a01b0384166000908152601260209081526040808320868452825291829020825160c0808201855282548252600183015460ff90811615159483018590526002840154958301958652600384015460608085019190915260048501549091161515608080850191825260059095015460a085015290870194909452935191850191909152805184529051151591830191909152611475858561250c565b602083015261148485856111c2565b60408301526060015160a08201529392505050565b6114a56003600a613816565b565b6000806114b3836114cc565b905060006114c084612f63565b90506112918183615ba8565b600354604051630481930d60e21b81526001600160a01b03838116600483015260009216906312064c3490602401602060405180830381865afa158015611517573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112389190615bbb565b611543613820565b600082600781111561155757611557615bd4565b03611602576127108111156115b35760405162461bcd60e51b815260206004820152601d60248201527f496e76616c6964206c69717569646174696f6e207468726573686f6c6400000060448201526064015b60405180910390fd5b60268190556027546028546040805184815260208101939093528201527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf906060015b60405180910390a15050565b600182600781111561161657611616615bd4565b0361166157602781905560265460285460408051928352602083018490528201527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf906060016115f6565b600282600781111561167557611675615bd4565b0361171c57620151808110158015611690575062093a808111155b6116d35760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a590819dc9858d9481c195c9a5bd960621b60448201526064016115aa565b602881905560265460275460408051928352602083019190915281018290527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf906060016115f6565b600382600781111561173057611730615bd4565b036117ce576127108111156117875760405162461bcd60e51b815260206004820152601860248201527f526174696f2063616e6e6f74206578636565642031303025000000000000000060448201526064016115aa565b602b80549082905560408051828152602081018490527fab45a8374e3d1f623df0e88a957317731ccc02ed377e5b0213661f85bf60b73191015b60405180910390a1505050565b60048260078111156117e2576117e2615bd4565b036118785760018111156118305760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420626f6f6c65616e2076616c756560581b60448201526064016115aa565b602c805460ff19166001831490811790915560405160ff909116151581527f0565da69314136ea081c6239b9813f6ef6d213f57210dfef1d470af55b0235f3906020016115f6565b600582600781111561188c5761188c615bd4565b036119305760018111156118da5760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420626f6f6c65616e2076616c756560581b60448201526064016115aa565b601e8054600160a01b60018414810260ff60a01b199092169190911791829055604051910460ff16151581527f932a526fd95bf1b5aab775a957e284733f02db3a9824802cbcbb4fbca239cbe1906020016115f6565b600682600781111561194457611944615bd4565b036119d1576127108111156119935760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420696e737572616e63652066656560581b60448201526064016115aa565b602980549082905560408051828152602081018490527f87c461d1c2c7c5cd98495e5517aa11d9df56d0819cc4e8e53d9664c4b18f6db191016117c1565b60078260078111156119e5576119e5615bd4565b03611a2857601180549082905560408051828152602081018490527f1d830358c94d390366ad7162b72e731448e195f3576e63b1f57f5e43c719c5aa91016117c1565b604051630309cb8760e51b815260040160405180910390fd5b611a496137c8565b611a516137f2565b8080600003611a735760405163162908e360e11b815260040160405180910390fd5b602c5460ff1615611a97576040516370a7336d60e11b815260040160405180910390fd5b611aa033613c01565b611aac6003600a613816565b611ab582613ca8565b6000806000611ac86003600a8733613fd1565b925092509250611ad66140f9565b60405183815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649060200160405180910390a2505050506110ff60018055565b611b556040518060c00160405280600081526020016000151581526020016000815260200160008152602001600015158152602001600081525090565b506001600160a01b0382166000908152601260209081526040808320848452825291829020825160c08101845281548152600182015460ff908116151593820193909352600282015493810193909352600381015460608401526004810154909116151560808301526005015460a082015292915050565b611bd5613820565b6114a56142af565b6014546000906001600160a01b0316611bf857506000919050565b6000611c03836114a7565b905080600003611c165750600092915050565b6001600160a01b038316600090815260176020526040812054601554670de0b6b3a764000091611c4591615b09565b611c4f9084615b6f565b611c599190615b86565b6001600160a01b0385166000908152601860205260409020549091506112919082615ba8565b611c87613820565b602a546001600160a01b03828116911614801590611caf5750602a546001600160a01b031615155b15611e1357602a5460405163ce96cb7760e01b81523060048201526001600160a01b039091169063ce96cb7790602401602060405180830381865afa925050508015611d18575060408051601f3d908101601f19168201909252611d1591810190615bbb565b60015b611e0857611d24615bea565b806308c379a003611d815750611d38615c05565b80611d435750611d9a565b602a546040516001600160a01b03909116907fc4cede9b2b63ba72d39d2f630b4b742e1cada59d7a073ac4e10da9ac7b2eb10590600090a250611e13565b634e487b7103611d9a57611d93615c8f565b90611d4357505b3d808015611dc4576040519150601f19603f3d011682016040523d82523d6000602084013e611dc9565b606091505b50602a546040516001600160a01b03909116907fc4cede9b2b63ba72d39d2f630b4b742e1cada59d7a073ac4e10da9ac7b2eb10590600090a250611e13565b611e1181614301565b505b602a80546001600160a01b031981166001600160a01b0384811691821790935560048054604080516338d52e0f60e01b815290519486169591909116936338d52e0f928281019260209291908290030181865afa158015611e78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9c9190615caf565b6001600160a01b031614158015611ebb57506001600160a01b03821615155b15611ed957604051631b3b488360e11b815260040160405180910390fd5b816001600160a01b0316816001600160a01b03167f483bdedaaf23706a9800ac1af0d852b34927780d79f9d6ba60a80c7cad75ea3960405160405180910390a35050565b611f25613820565b6114a560006144c0565b600080805b6001600160a01b0384166000908152601360205260409020548111611faf576001600160a01b038416600090815260136020908152604080832084845260020190915290205460ff1615611f9d576000611f8d826122c2565b9050611f998184615ba8565b9250505b80611fa781615b32565b915050611f34565b5092915050565b611fbe613820565b611fca6003600a613816565b6001600160a01b0382166120365760405162461bcd60e51b815260206004820152602d60248201527f4c656e64696e67506f6f6c3a20526563697069656e742063616e6e6f7420626560448201526c207a65726f206164647265737360981b60648201526084016115aa565b60035460405163768bab4560e01b81526001600160a01b038481166004830152602482018490529091169063768bab4590604401600060405180830381600087803b15801561208457600080fd5b505af1158015612098573d6000803e3d6000fd5b505050505050565b6001600160a01b03821660009081526012602090815260408083208484529091528120600581015481546112919190615b09565b6120dc613820565b6114a5614510565b6120ec6137c8565b6120f46137f2565b3360008181526012602090815260408083208584529091529020600181015460ff166121335760405163013e5dc360e61b815260040160405180910390fd5b6001600160a01b038216600090815260136020908152604080832086845260020190915290205460ff1661217a5760405163346fad7360e01b815260040160405180910390fd5b602854816002015461218c9190615ba8565b4211156121ac57604051634b3c322760e11b815260040160405180910390fd5b600481015460ff166121d157604051632d1118e960e21b815260040160405180910390fd5b6121dd6003600a613816565b60006121e9838561250c565b9050801561220a576040516312bf4cab60e01b815260040160405180910390fd5b60018201805460ff1990811690915560006002840181905560048401805490921690915560405185916001600160a01b038616917fd66fca94ddede030b58f223f22d6b43407a443bd68e2e73d38ab7675cf480acc9190a35050506110ff60018055565b612276613820565b6014546001600160a01b0316156122a05760405163b6de9a7160e01b815260040160405180910390fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b60195460405163b94fe91760e01b815260048101839052600091829182916001600160a01b03169063b94fe917906024016040805180830381865afa15801561230f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123339190615ccc565b9150915081600003611faf57604051633b0c4c3160e11b815260040160405180910390fd5b612360613820565b6001600160a01b038116612387576040516303988b8160e61b815260040160405180910390fd5b601e546001600160a01b03908116908216036123b65760405163aba916dd60e01b815260040160405180910390fd5b601e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f593eaf5e0e1afc1c041a664a437fdae719a628836785d06572b008e6ca5c189d90600090a35050565b600080805b6001600160a01b038416600090815260136020526040902054811015611faf576001600160a01b0384166000908152601360205260409020805461246d9186918490811061245d5761245d615b1c565b906000526020600020015461250c565b6124779083615ba8565b91508061248381615b32565b91505061240d565b612493613820565b6001600160a01b0381166124ba576040516303988b8160e61b815260040160405180910390fd5b601f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f5d16ad41baeb009cd23eb8f6c7cde5c2e0cd5acf4a33926ab488875c37c37f3890600090a35050565b6001600160a01b03821660009081526012602090815260408083208484528252808320815160c08101835281548152600182015460ff9081161515948201949094526002820154928101929092526003810154606083018190526004820154909316151560808301526005015460a082015260085490916125a9916125a19190600160801b90046001600160801b0316615b09565b82519061454d565b81516112919190615ba8565b6125bd6137c8565b6125c56137f2565b81806000036125e75760405163162908e360e11b815260040160405180910390fd5b601e54600160a01b900460ff16612611576040516312cefcd560e31b815260040160405180910390fd5b6001600160a01b038216612638576040516303988b8160e61b815260040160405180910390fd5b612643848484614590565b5061264d60018055565b505050565b601f546000906001600160a01b0316331461267f576040516282b42960e81b815260040160405180910390fd5b602a546001600160a01b03166126c65760405162461bcd60e51b815260206004820152600c60248201526b139bc81d985d5b1d081cd95d60a21b60448201526064016115aa565b60045460218054426022556000909155601f546001600160a01b03928316926126f2918491168361488e565b6040518181527f7edfb0d5d58c6a3d398df94a9bdfa2b33f3fa42ae40d72ebdc717d2db3953ee59060200160405180910390a19150505b90565b6127346137c8565b61273c6137f2565b808060000361275e5760405163162908e360e11b815260040160405180910390fd5b61276733613c01565b6127736003600a613816565b60006127836003600a85336148bf565b33600090815260136020526040812060010154919250036127b8573360009081526013602052604090206001018390556127e0565b33600090815260136020526040812060010180548592906127da908490615ba8565b90915550505b6127e86140f9565b604080518481526020810183905233917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15910160405180910390a250506110ff60018055565b60006128386137c8565b61284133613c01565b50600161272960018055565b6128556137c8565b601e546001600160a01b0316331461287f576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03821660009081526012602090815260408083208484529091529020600181015460ff166128c75760405163013e5dc360e61b815260040160405180910390fd5b6001600160a01b038316600090815260136020908152604080832085845260020190915290205460ff1661290e5760405163346fad7360e01b815260040160405180910390fd5b61291a6003600a613816565b600481015460ff16801561293f5750602854816002015461293b9190615ba8565b4211155b1561295d576040516363e5f12d60e11b815260040160405180910390fd5b6000612969848461250c565b60018301805460ff199081169091556000600280860182905560048087018054851690556001600160a01b03808a1684526013602090815260408086208b87529094019052928290208054909416909355601e5490516323b872dd60e01b81529394507f00000000000000000000000000000000000000000000000000000000000000008216936323b872dd93612a069330931691899101615b4b565b600060405180830381600087803b158015612a2057600080fd5b505af1158015612a34573d6000803e3d6000fd5b5050506000848152602d602052604080822080546001600160a01b03191690556005546008549151636f3df85160e11b81529293508392839283926001600160a01b03169163de7bf0a291612aa3918c918a91600160801b9091046001600160801b0316908d90600401615cf0565b6080604051808303816000875af1158015612ac2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ae69190615d1f565b600854600160801b90046001600160801b031660038b810191909155546004549498509296509094509250612b2a916001600160a01b039081169133911687613b1e565b6000808755600587018190556007849055612b4c90600390600a908790614a03565b601e5487906001600160a01b03808b1691167f3f2ad1b98f8838e6f90c126ac5f8a9875c7acf2a56aeb8a630c0fa475b07056a88612b89856122c2565b6040805192835260208301919091520160405180910390a450505050505061128460018055565b612bdb6040518060800160405280606081526020016000815260200160008152602001606081525090565b6001600160a01b0382166000908152601360209081526040808320815160808101835260608082529381018590529182019390935281810191909152815460408051602080840282018101909252828152918491830182828015612c5e57602002820191906000526020600020905b815481526020019060010190808311612c4a575b5050509183525050815467ffffffffffffffff811115612c8057612c80615788565b604051908082528060200260200182016040528015612cb957816020015b612ca6615699565b815260200190600190039081612c9e5790505b506060820152600060208201819052604082018190525b8254811015612e1c57306001600160a01b0316631d00ac3a86856000018481548110612cfe57612cfe615b1c565b6000918252602090912001546040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260440160e060405180830381865afa158015612d53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d779190615d6a565b82606001518281518110612d8d57612d8d615b1c565b602002602001018190525081606001518181518110612dae57612dae615b1c565b60200260200101516020015182602001818151612dcb9190615ba8565b9052508254612df690849083908110612de657612de6615b1c565b90600052602060002001546122c2565b82604001818151612e079190615ba8565b90525080612e1481615b32565b915050612cd0565b509392505050565b601a546001600160a01b03163314612e4e576040516282b42960e81b815260040160405180910390fd5b6110ff6003600a83614b55565b6003546001600160a01b03163314612eb55760405162461bcd60e51b815260206004820152601e60248201527f4f6e6c792052546f6b656e2063616e207570646174652072657761726473000060448201526064016115aa565b6000612ec0826114a7565b90508015612f43576001600160a01b038216600090815260176020526040812054601554670de0b6b3a764000091612ef791615b09565b612f019084615b6f565b612f0b9190615b86565b90508015612f41576001600160a01b03831660009081526018602052604081208054839290612f3b908490615ba8565b90915550505b505b506015546001600160a01b03909116600090815260176020526040902055565b601e546000906001600160a01b0316612f7e57506000919050565b601e546040516001600160a01b038481166024830152600092839291169060440160408051601f198184030181529181526020820180516001600160e01b031663c084b10b60e01b17905251612fd49190615df9565b600060405180830381855afa9150503d806000811461300f576040519150601f19603f3d011682016040523d82523d6000602084013e613014565b606091505b5091509150808060200190518101906112919190615bbb565b6130356137c8565b61303d6137f2565b33600081815260126020908152604080832086845290915281209161306290856120a0565b90506000613071338686613661565b601b54601f54604051636eb1769f60e11b81523360048201526001600160a01b039182166024820152929350839291169063dd62ed3e90604401602060405180830381865afa1580156130c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130ec9190615bbb565b101561310b576040516339e067d560e21b815260040160405180910390fd5b601b546040516370a0823160e01b815233600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa158015613153573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131779190615bbb565b101561319657604051631e9acf1760e31b815260040160405180910390fd5b6131a08585613873565b6131a981614c2e565b60048301805460ff191660011790556131c28483615ba8565b8360050160008282546131d59190615ba8565b909155505060405182815285907fd5c2dc3f0ec76ece0185d374bca424347955bce9b5e7b08757bb8e1bb8d9c0a99060200160405180910390a250505061128460018055565b6132236137c8565b61322b6137f2565b808060000361324d5760405163162908e360e11b815260040160405180910390fd5b61127a838333614590565b613260613820565b6003546001600160a01b03908116908416036132b55760405162461bcd60e51b815260206004820152601460248201527321b0b73737ba103932b9b1bab290292a37b5b2b760611b60448201526064016115aa565b61264d6001600160a01b038416838361488e565b600080805b6001600160a01b038416600090815260136020526040902054811015611faf576001600160a01b038416600090815260136020908152604080832084845260020190915290205460ff161561333457613327848261250c565b6133319083615ba8565b91505b8061333e81615b32565b9150506132ce565b61334e6137c8565b6133566137f2565b6133626003600a613816565b6040516331a9108f60e11b81526004810182905233906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa1580156133c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133ed9190615caf565b6001600160a01b031614613414576040516384b359d160e01b815260040160405180910390fd5b336000908152601360209081526040808320848452600281019092529091205460ff16156134555760405163e8edca8360e01b815260040160405180910390fd5b60008281526002820160209081526040808320805460ff191660019081179091558454908101855584845282842001859055848352602d9091529081902080546001600160a01b031916339081179091559051632142170760e11b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316916342842e0e916134f4919030908790600401615b4b565b600060405180830381600087803b15801561350e57600080fd5b505af1158015613522573d6000803e3d6000fd5b50506040518481523392507f1c4b8380f61aea3d5d98cbadaf2e6b2e4f3d8ca8c0fce1290b26ac267158745f915060200160405180910390a2506110ff60018055565b6000818152602d60205260408120546001600160a01b031661360a576040516331a9108f60e11b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690636352211e90602401602060405180830381865afa1580156135e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112389190615caf565b506000908152602d60205260409020546001600160a01b031690565b61362e613820565b6001600160a01b03811661365857604051631e4fbdf760e01b8152600060048201526024016115aa565b6110ff816144c0565b60008061366e85856120a0565b905061368860295484836136829190615ba8565b9061384d565b9150505b9392505050565b61369b6137c8565b6136a36137f2565b6001600160a01b03821660009081526012602090815260408083208484529091529020600181015460ff16156136ec5760405163b84f7eb560e01b815260040160405180910390fd5b6001600160a01b038316600090815260136020908152604080832085845260020190915290205460ff166137335760405163346fad7360e01b815260040160405180910390fd5b61373f6003600a613816565b600061374b84846111c2565b9050602754811061376f5760405163317416e560e11b815260040160405180910390fd5b6001828101805460ff1916909117905542600283015560405183906001600160a01b0386169033907f4601ff28b457321206747d0540f02cfb8a9d6bf3021146378e8544e1817e20e790600090a4505061128460018055565b6002600154036137eb57604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b60025460ff16156114a55760405163d93c066560e01b815260040160405180910390fd5b6112848282614d21565b6000546001600160a01b031633146114a55760405163118cdaa760e01b81523360048201526024016115aa565b60008115611388198390048411151761386557600080fd5b506127109102611388010490565b3360009081526012602090815260408083208584529091529020600181015460ff16156138b357604051630bff073160e31b815260040160405180910390fd5b336000908152601360209081526040808320868452600281019092529091205460ff166138f35760405163346fad7360e01b815260040160405180910390fd5b60006138fe856122c2565b90508060000361392157604051638dc8d9b360e01b815260040160405180910390fd5b61392d6003600a613816565b61393684613ca8565b600061394d6026548361384d90919063ffffffff16565b90508461395a338861134a565b6139649190615ba8565b81101561398457604051630369fbd160e51b815260040160405180910390fd5b600554600854604051639ceeaca760e01b81523360048201819052602482015260448101889052600160801b9091046001600160801b0316606482015260848101889052600091829182916001600160a01b031690639ceeaca79060a4016060604051808303816000875af1158015613a01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a259190615e28565b600854600160801b90046001600160801b031660038b81019190915554604051635c921eb960e01b8152336004820152602481018d905293965091945092506001600160a01b031690635c921eb990604401600060405180830381600087803b158015613a9157600080fd5b505af1158015613aa5573d6000803e3d6000fd5b5050505081876000016000828254613abd9190615ba8565b90915550506007819055613ad66003600a60008b614a03565b613ade6140f9565b60405188815233907fcbc04eca7e9da35cb1393a6135a199ca52e450d5e9251cbd99f7847d33a367509060200160405180910390a2505050505050505050565b613b7884856001600160a01b03166323b872dd868686604051602401613b4693929190615b4b565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050614e53565b50505050565b6014546001600160a01b0316613ba757604051632506892760e01b815260040160405180910390fd5b6006546000819003613bb7575050565b811561128457600081613bd284670de0b6b3a7640000615b6f565b613bdc9190615b86565b90508060146001016000828254613bf39190615ba8565b909155505042601655505050565b6014546001600160a01b0316613c145750565b6000613c1f82611bdd565b90508015611284576001600160a01b038083166000908152601860209081526040808320839055601554601790925290912055601454613c619116838361488e565b816001600160a01b03167fe34918ff1c7084970068b53fd71ad6d8b04e9f15d3886cbf006443e6cdc52ea682604051613c9c91815260200190565b60405180910390a25050565b602a546001600160a01b0316613cbb5750565b600480546003546040516370a0823160e01b81526001600160a01b03918216938101939093526000929116906370a0823190602401602060405180830381865afa158015613d0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d319190615bbb565b905081811015611284576000613d478284615b09565b602a5460405163ce96cb7760e01b81523060048201529192506000916001600160a01b039091169063ce96cb7790602401602060405180830381865afa158015613d95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613db99190615bbb565b90506000613dc78285615ba8565b905082811015613e305760405162461bcd60e51b815260206004820152602e60248201527f4e6f7420656e6f756768206c697175696469747920746f2066756c66696c6c2060448201526d1d1a19481dda5d1a191c985dd85b60921b60648201526084016115aa565b6006546000613e3f8783615b09565b905060008115613e5a57602b54613e5790839061384d565b90505b8585811115613e665750845b8015613e7557613e7581614301565b600480546040516370a0823160e01b815230928101929092526001600160a01b0316906370a0823190602401602060405180830381865afa158015613ebe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ee29190615bbb565b600480546003546040516370a0823160e01b81526001600160a01b039182169381019390935216906370a0823190602401602060405180830381865afa158015613f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f549190615bbb565b613f5e9190615ba8565b975088881015613fc65760405162461bcd60e51b815260206004820152602d60248201527f496e73756666696369656e74206c69717569646974792061667465722076617560448201526c1b1d081dda5d1a191c985dd85b609a1b60648201526084016115aa565b505050505050505050565b60008060006001851015613ff85760405163162908e360e11b815260040160405180910390fd5b6140028787614d21565b86546005880154604051636b81068560e11b8152600092839283926001600160a01b039092169163d7020d0a9161404b918b9182918e916001600160801b031690600401615e5d565b6060604051808303816000875af115801561406a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061408e9190615e8e565b9250925092508295506140a48a8a600084614a03565b60408051828152602081018590526001600160a01b038916917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568910160405180910390a2999198508997509095505050505050565b602a546001600160a01b031661410b57565b600654602b5460009061411f90839061384d565b600480546003546040516370a0823160e01b81526001600160a01b039182169381019390935292935060009216906370a0823190602401602060405180830381865afa158015614173573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141979190615bbb565b9050818111156141be5760006141ad8383615b09565b90506141b881614eb6565b50614275565b818110156142755760006141d28284615b09565b90506000602a60009054906101000a90046001600160a01b03166001600160a01b03166301e1d1146040518163ffffffff1660e01b8152600401602060405180830381865afa158015614229573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061424d9190615bbb565b9050600081831161425e5782614260565b815b905080156142715761427181614301565b5050505b6020805460408051848152928301919091527f8f9497c27f572ff1a65e8b2c7a0706d466466ae0b5efc78462b5f0021da6695691016117c1565b6142b76150ec565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b602a546040516328c0620360e01b8152600160048201526000916001600160a01b0316906328c0620390602401602060405180830381865afa15801561434b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061436f9190615bbb565b602a54604051632d182be560e21b815260048101859052306024820181905260448201529192506000916001600160a01b039091169063b460af94906064016020604051808303816000875af11580156143cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143f19190615bbb565b90506000602060030154831115614454576023546000906144129085615b09565b9050670de0b6b3a76400006144278285615b6f565b6144319190615b86565b915081602060010160008282546144489190615ba8565b90915550614458915050565b5060005b60006144648286615b09565b600354600454919250614484916001600160a01b0390811691168361488e565b6020548511156144985760006020556144b3565b84602060000160008282546144ad9190615b09565b90915550505b5050506023555042602455565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6145186137f2565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586142e43390565b600081156b019d971e4fe8401e74000000198390048411151761456f57600080fd5b50676765c793fa10079d601b1b91026b019d971e4fe8401e74000000010490565b816000036145b15760405163162908e360e11b815260040160405180910390fd5b6001600160a01b0381166145d8576040516303988b8160e61b815260040160405180910390fd5b6001600160a01b0381166000908152601360209081526040808320868452600281019092529091205460ff166146215760405163346fad7360e01b815260040160405180910390fd5b61462d6003600a613816565b6001600160a01b03821660009081526012602090815260408083208784529091529020600181015460ff1680156146695750600481015460ff16155b156146875760405163224aae4f60e21b815260040160405180910390fd5b600181015460ff1680156146ab575060285481600201546146a89190615ba8565b42115b156146c957604051634b3c322760e11b815260040160405180910390fd5b60006146d5848761250c565b905060008186116146e657856146e8565b815b9050600080600080600360020160009054906101000a90046001600160a01b03166001600160a01b031663de7bf0a28a87600360050160109054906101000a90046001600160801b03168f6040518563ffffffff1660e01b81526004016147529493929190615cf0565b6080604051808303816000875af1158015614771573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147959190615d1f565b600854600160801b90046001600160801b031660038c8101919091555460045494985092965090945092506147d9916001600160a01b039081169133911688613b1e565b600783905580156147fe57808760000160008282546147f89190615ba8565b90915550505b865461480b908390615b09565b8088556005880154111561482157865460058801555b865460000361483257600060058801555b6148416003600a876000614a03565b6040518581526001600160a01b038a169033907f05f2eeda0e08e4b437f487c8d7d29b14537d15e3488170dc3de5dbdf8dac46849060200160405180910390a35050505050505050505050565b6040516001600160a01b0383811660248301526044820183905261264d91859182169063a9059cbb90606401613b46565b600060018310156148e35760405163162908e360e11b815260040160405180910390fd5b6148ed8585614d21565b8454600186015461490d916001600160a01b039182169133911686613b1e565b8454600586015460405163b3f1c93d60e01b81526000928392839283926001600160a01b03169163b3f1c93d916149589130918b918d916001600160801b0390911690600401615e5d565b6080604051808303816000875af1158015614977573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061499b9190615ebc565b93509350935093508294506149b38989896000614a03565b60408051888152602081018790526001600160a01b038816917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15910160405180910390a250505050949350505050565b8115614a3057614a128261510f565b6001600160801b03168460030154614a2a9190615ba8565b60038501555b8015614a82578084600301541015614a5b5760405163bb55fd2760e01b815260040160405180910390fd5b614a648161510f565b6001600160801b03168460030154614a7c9190615b09565b60038501555b600384015460048501546000614a988787615147565b90506000614aa688886151a8565b90506000614abc89600301548a60040154615203565b9050614ae0886002015489600301548a600401548b600501548c600601548661524f565b600189018190556007890154614af891839187615339565b8855614b048989614d21565b875460018901546040517f48f4f83c2f1843e8fd7ef13ffcff40fca5055dc1b9b074cd9dd0f9a8a8e09dd992614b4292908252602082015260400190565b60405180910390a1505050505050505050565b6001811015614b775760405163824c180760e01b815260040160405180910390fd5b60028201548015614bda576000614b90826101f461384d565b90506000828411614baa57614ba58484615b09565b614bb4565b614bb48385615b09565b905081811115614bd757604051631a8b543360e21b815260040160405180910390fd5b50505b60028301829055614bee8484600080614a03565b60408051828152602081018490527fd45d1eb66419c036e2fa401916c7db417696f889cf4ab8ca92272327e8e1c83e91015b60405180910390a150505050565b601f546001600160a01b0316614c57576040516303988b8160e61b815260040160405180910390fd5b80600003614c785760405163162908e360e11b815260040160405180910390fd5b601f5460048054604051636033e31560e01b81526001600160a01b0391821692810192909252336024830152604482018490527f65991ea5d80f7b6dc8c32648f59c5a653beb10caddae8fefad6966b35a0a65f1606483015290911690636033e315906084016020604051808303816000875af1158015614cfd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112849190615ef9565b6006820154600090614d3a9064ffffffffff1642615b09565b90506001811015614d4a57505050565b60058301546001600160801b03166001811015614d7a57604051630a1cf3ed60e21b815260040160405180910390fd5b82546005850154614d96919084906001600160801b0316615380565b6005850180546fffffffffffffffffffffffffffffffff19166001600160801b0392831617908190556001850154614dda9290918591600160801b9091041661539d565b6005850180546001600160801b03908116600160801b93821684028181179384905560068901805464ffffffffff19164264ffffffffff16179055604080519184169092178152939092041660208301527ff92a3abee06d57c996e7e19eb34560241fdc1fe67e9ebd503177710bf9fd82049101614c20565b6000614e686001600160a01b038416836153b9565b90508051600014158015614e8d575080806020019051810190614e8b9190615ef9565b155b1561264d57604051635274afe760e01b81526001600160a01b03841660048201526024016115aa565b600354604051635c921eb960e01b8152306004820152602481018390526001600160a01b0390911690635c921eb990604401600060405180830381600087803b158015614f0257600080fd5b505af1158015614f16573d6000803e3d6000fd5b505060048054602a5460405163095ea7b360e01b81526001600160a01b03918216938101939093526024830186905216925063095ea7b391506044016020604051808303816000875af1158015614f71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614f959190615ef9565b50602a54604051636e553f6560e01b8152600481018390523060248201526000916001600160a01b031690636e553f65906044016020604051808303816000875af1158015614fe8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061500c9190615bbb565b602a546040516328c0620360e01b81526000600482018190529293506001600160a01b03909116906328c0620390602401602060405180830381865afa15801561505a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061507e9190615bbb565b9050600082116150c75760405162461bcd60e51b815260206004820152601460248201527315985d5b1d0819195c1bdcda5d0819985a5b195960621b60448201526064016115aa565b82602060000160008282546150dc9190615ba8565b9091555050602355505042602555565b60025460ff166114a557604051638dfc202b60e01b815260040160405180910390fd5b60006001600160801b03821115615143576040516306dfcc6560e41b815260806004820152602481018390526044016115aa565b5090565b600682015460009081906151629064ffffffffff1642615b09565b905060018110156151795750506004820154611238565b6005840154600184015461129191600160801b90046001600160801b0316906151a290846153c7565b9061454d565b600682015460009081906151c39064ffffffffff1642615b09565b905060018110156151e357505060058201546001600160801b0316611238565b60058401548354611291916001600160801b0316906151a2908483615416565b600060018310156152205750676765c793fa10079d601b1b611238565b600061523e6152396152328587615ba8565b859061544a565b61510f565b6001600160801b0316949350505050565b600085871115806152605750838710155b8061526b5750858511155b806152765750838510155b156152945760405163abc83fed60e01b815260040160405180910390fd5b60008383116152d65760006152a9888a615b09565b905060006152c1866152bb878561454d565b9061544a565b90506152cd818a615ba8565b9250505061532e565b60006152e28585615b09565b905060006152fb86676765c793fa10079d601b1b615b09565b905060006153098b89615b09565b9050600061531b836152bb868561454d565b9050615327818d615ba8565b9450505050505b979650505050505050565b6000600182101561534c57506000611291565b6000615358868661454d565b90506000615366828661454d565b905060006153748284615b09565b98975050505050505050565b60008061538e858585615416565b9050613688615239828561454d565b6000806153aa85856153c7565b9050613688615239848361454d565b606061368c83836000615487565b600060018210156153e45750676765c793fa10079d601b1b611238565b60006153f4846301e1338061544a565b90506000615402828561454d565b905061540d81615524565b95945050505050565b6000806154238486615b6f565b90506154336301e1338082615b86565b905061368881676765c793fa10079d601b1b615ba8565b60008115676765c793fa10079d601b1b6002840419048411171561546d57600080fd5b50676765c793fa10079d601b1b9190910260028204010490565b6060814710156154ac5760405163cd78605960e01b81523060048201526024016115aa565b600080856001600160a01b031684866040516154c89190615df9565b60006040518083038185875af1925050503d8060008114615505576040519150601f19603f3d011682016040523d82523d6000602084013e61550a565b606091505b509150915061551a8683836155cd565b9695505050505050565b6000816000036155405750676765c793fa10079d601b1b919050565b506b169e43a85eb381aa580000006b1363156bbee3016d700000006b1027e72f1f128130880000006b0cecb8f27f4200f3a00000006b09b18ab5df7180b6b80000006b06765c793fa10079d000000086800204808702919091048087029290920480870293909304808702949094048087029590950495010101010101676765c793fa10079d601b1b0190565b6060826155e2576155dd82615629565b61368c565b81511580156155f957506001600160a01b0384163b155b1561562257604051639996b31560e01b81526001600160a01b03851660048201526024016115aa565b508061368c565b8051156156395780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b82805482825590600052602060002090810192821561568d579160200282015b8281111561568d578251825591602001919060010190615672565b506151439291506156da565b6040518060e0016040528060008152602001600081526020016000815260200160001515815260200160008152602001600081526020016000151581525090565b5b8082111561514357600081556001016156db565b60006020828403121561570157600080fd5b5035919050565b6001600160a01b03811681146110ff57600080fd5b60006020828403121561572f57600080fd5b813561368c81615708565b6000806040838503121561574d57600080fd5b823561575881615708565b946020939093013593505050565b6000806040838503121561577957600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156157c4576157c4615788565b6040525050565b600080600080608085870312156157e157600080fd5b84356157ec81615708565b93506020858101356157fd81615708565b935060408601359250606086013567ffffffffffffffff8082111561582157600080fd5b818801915088601f83011261583557600080fd5b81358181111561584757615847615788565b604051915061585f601f8201601f191685018361579e565b808252898482850101111561587357600080fd5b808484018584013760008482840101525080935050505092959194509250565b8051825260208101516020830152604081015160408301526060810151151560608301526080810151608083015260a081015160a083015260c0810151151560c08301525050565b60e081016112388284615893565b600080604083850312156158fc57600080fd5b82356008811061575857600080fd5b60008060006060848603121561592057600080fd5b8335925060208401359150604084013561593981615708565b809150509250925092565b600081518084526020808501945080840160005b8381101561597e5761596b878351615893565b60e0969096019590820190600101615958565b509495945050505050565b60208082528251608083830152805160a0840181905260009291820190839060c08601905b808310156159ce57835182529284019260019290920191908401906159ae565b508387015160408701526040870151606087015260608701519350601f1986820301608087015261532e8185615944565b600080600060608486031215615a1457600080fd5b8335615a1f81615708565b92506020840135615a2f81615708565b929592945050506040919091013590565b60006101008201905060018060a01b0380845116835280602085015116602084015280604085015116604084015250606083015160608301526080830151608083015260a08301516001600160801b0380821660a08501528060c08601511660c0850152505060e0830151611faf60e084018264ffffffffff169052565b600080600060608486031215615ad357600080fd5b8335615ade81615708565b95602085013595506040909401359392505050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561123857611238615af3565b634e487b7160e01b600052603260045260246000fd5b600060018201615b4457615b44615af3565b5060010190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b808202811582820484141761123857611238615af3565b600082615ba357634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561123857611238615af3565b600060208284031215615bcd57600080fd5b5051919050565b634e487b7160e01b600052602160045260246000fd5b600060033d11156127295760046000803e5060005160e01c90565b600060443d1015615c135790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715615c4357505050505090565b8285019150815181811115615c5b5750505050505090565b843d8701016020828501011115615c755750505050505090565b615c846020828601018761579e565b509095945050505050565b60008060233d1115615cab576020600460003e50506000516001905b9091565b600060208284031215615cc157600080fd5b815161368c81615708565b60008060408385031215615cdf57600080fd5b505080516020909101519092909150565b6001600160a01b0394909416845260208401929092526001600160801b03166040830152606082015260800190565b60008060008060808587031215615d3557600080fd5b505082516020840151604085015160609095015191969095509092509050565b80518015158114615d6557600080fd5b919050565b600060e08284031215615d7c57600080fd5b60405160e0810181811067ffffffffffffffff82111715615d9f57615d9f615788565b8060405250825181526020830151602082015260408301516040820152615dc860608401615d55565b60608201526080830151608082015260a083015160a0820152615ded60c08401615d55565b60c08201529392505050565b6000825160005b81811015615e1a5760208186018101518583015201615e00565b506000920191825250919050565b600080600060608486031215615e3d57600080fd5b615e4684615d55565b925060208401519150604084015190509250925092565b6001600160a01b03948516815292909316602083015260408201526001600160801b03909116606082015260800190565b600080600060608486031215615ea357600080fd5b8351925060208401519150604084015190509250925092565b60008060008060808587031215615ed257600080fd5b615edb85615d55565b60208601516040870151606090970151919890975090945092505050565b600060208284031215615f0b57600080fd5b61368c82615d5556fea264697066735822122085790ad8a34ebf38e48587fd6cfb2d6f5a50229056245092ddebc2e6bc8f63c264736f6c63430008140033",
|
|
2758
|
-
"linkReferences": {},
|
|
2759
|
-
"deployedLinkReferences": {}
|
|
2760
|
-
}
|