@raac/rpc 1.2.0-beta.10 → 1.2.0-beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/RPCLibrary.js +2 -0
- package/dist/artifacts/core/governance/gauges/BaseGauge.sol/BaseGauge.json +113 -20
- package/dist/artifacts/core/governance/gauges/GaugeController.sol/GaugeController.json +259 -31
- package/dist/artifacts/core/governance/gauges/GaugeRewardsDistributor.sol/GaugeRewardsDistributor.json +159 -31
- package/dist/artifacts/core/governance/gauges/RAACGauge.sol/RAACGauge.json +115 -22
- package/dist/artifacts/core/governance/gauges/RWAGauge.sol/RWAGauge.json +115 -22
- package/dist/configs/chains/1.json +22 -25
- package/dist/configs/chains/11155111.json +56 -71
- package/dist/configs/chains/17000.json +22 -25
- package/dist/configs/chains/18453.json +22 -25
- package/dist/configs/chains/8453.json +61 -31
- package/dist/contracts/findContract.js +11 -4
- package/dist/contracts/getContractAddress.js +0 -1
- package/dist/contracts/governance/distributor/claimAll.js +18 -11
- package/dist/contracts/governance/distributor/claimForGauge.js +18 -12
- package/dist/contracts/governance/distributor/deposit.js +17 -12
- package/dist/contracts/governance/distributor/getClaimableForGauge.js +10 -9
- package/dist/contracts/governance/distributor/getClaimedAtEpoch.js +11 -10
- package/dist/contracts/governance/distributor/getDepositedAtEpoch.js +8 -8
- package/dist/contracts/governance/distributor/getDustLastProcessedEpoch.js +28 -0
- package/dist/contracts/governance/distributor/getGaugeController.js +7 -7
- package/dist/contracts/governance/distributor/getLastClaimedEpoch.js +10 -9
- package/dist/contracts/governance/distributor/getMaxClaimBound.js +29 -0
- package/dist/contracts/governance/distributor/getPeriodDuration.js +7 -7
- package/dist/contracts/governance/distributor/getRewardToken.js +7 -7
- package/dist/contracts/governance/distributor/getRewardTokenInfo.js +7 -7
- package/dist/contracts/governance/distributor/getRewardTokenStats.js +7 -7
- package/dist/contracts/governance/distributor/index.js +5 -2
- package/dist/contracts/governance/distributor/setController.js +17 -12
- package/dist/contracts/governance/distributor/setLastClaimedEpoch.js +32 -0
- package/dist/contracts/governance/distributor/setMaxClaimBound.js +31 -0
- package/dist/contracts/governance/distributor/withdrawDust.js +31 -0
- package/dist/contracts/governance/distributor/withdrawRemovedGaugeRewards.js +19 -13
- package/dist/contracts/governance/gauge/_apy.js +122 -0
- package/dist/contracts/governance/gauge/_tokens.js +36 -0
- package/dist/contracts/governance/gauge/addRewardToken.js +2 -12
- package/dist/contracts/governance/gauge/approveGaugeToken.js +31 -0
- package/dist/contracts/governance/gauge/claimExtraReward.js +2 -12
- package/dist/contracts/governance/gauge/claimExtraRewards.js +2 -12
- package/dist/contracts/governance/gauge/claimOnBehalfOf.js +2 -12
- package/dist/contracts/governance/gauge/claimRewardToken.js +3 -13
- package/dist/contracts/governance/gauge/claimRewardsFor.js +2 -12
- package/dist/contracts/governance/gauge/depositRewardToken.js +2 -12
- package/dist/contracts/governance/gauge/getAllPendingExtraRewards.js +2 -9
- package/dist/contracts/governance/gauge/getApy.js +44 -0
- package/dist/contracts/governance/gauge/getBalanceOf.js +2 -15
- package/dist/contracts/governance/gauge/getControllerAddress.js +2 -9
- package/dist/contracts/governance/gauge/getDecimalAdjustment.js +2 -9
- package/dist/contracts/governance/gauge/getDepositRAACOnClaim.js +2 -9
- package/dist/contracts/governance/gauge/getDistributorData.js +2 -9
- package/dist/contracts/governance/gauge/getDistributors.js +2 -9
- package/dist/contracts/governance/gauge/getEarnedExtraReward.js +30 -0
- package/dist/contracts/governance/gauge/getEarnedReward.js +8 -14
- package/dist/contracts/governance/gauge/getExtraRewardTokens.js +2 -9
- package/dist/contracts/governance/gauge/getGaugeData.js +39 -0
- package/dist/contracts/governance/gauge/getGaugeRewardTokenData.js +2 -9
- package/dist/contracts/governance/gauge/getPauseStatus.js +31 -0
- package/dist/contracts/governance/gauge/getPendingExtraRewards.js +2 -9
- package/dist/contracts/governance/gauge/getPendingRewards.js +8 -14
- package/dist/contracts/governance/gauge/getPeriodBoundaries.js +2 -15
- package/dist/contracts/governance/gauge/getPeriodDuration.js +2 -15
- package/dist/contracts/governance/gauge/getRaacAutolockMin.js +2 -9
- package/dist/contracts/governance/gauge/getRawBalanceOf.js +2 -15
- package/dist/contracts/governance/gauge/getRawTotalSupply.js +2 -15
- package/dist/contracts/governance/gauge/getRewardTokens.js +28 -0
- package/dist/contracts/governance/gauge/getTotalSupply.js +2 -15
- package/dist/contracts/governance/gauge/getUserApy.js +71 -0
- package/dist/contracts/governance/gauge/getUserClaimableRewards.js +21 -73
- package/dist/contracts/governance/gauge/getUserGaugeState.js +44 -0
- package/dist/contracts/governance/gauge/getUserRewardTokenData.js +2 -9
- package/dist/contracts/governance/gauge/getUserWeight.js +2 -9
- package/dist/contracts/governance/gauge/index.js +11 -1
- package/dist/contracts/governance/gauge/isPaused.js +4 -11
- package/dist/contracts/governance/gauge/manageDistributor.js +2 -12
- package/dist/contracts/governance/gauge/pullRewardsFromDistributor.js +30 -0
- package/dist/contracts/governance/gauge/setController.js +2 -12
- package/dist/contracts/governance/gauge/setDepositRAACOnClaim.js +2 -12
- package/dist/contracts/governance/gauge/setEmergencyPaused.js +2 -12
- package/dist/contracts/governance/gauge/setGaugeRewardDistributor.js +2 -12
- package/dist/contracts/governance/gauge/setRaacAutolockMin.js +2 -12
- package/dist/contracts/governance/gauge/stake.js +2 -18
- package/dist/contracts/governance/gauge/unwrapStakingToken.js +28 -0
- package/dist/contracts/governance/gauge/updateUserRewards.js +2 -18
- package/dist/contracts/governance/gauge/withdraw.js +2 -18
- package/dist/contracts/governance/gauge/wrapStakingToken.js +28 -0
- package/dist/contracts/governance/gaugeController/addGauge.js +19 -11
- package/dist/contracts/governance/gaugeController/batchVote.js +20 -12
- package/dist/contracts/governance/gaugeController/calculateBoost.js +20 -23
- package/dist/contracts/governance/gaugeController/forceCompleteCheckpoint.js +19 -11
- package/dist/contracts/governance/gaugeController/getActiveGaugeCount.js +28 -0
- package/dist/contracts/governance/gaugeController/getActiveGauges.js +10 -13
- package/dist/contracts/governance/gaugeController/getConstants.js +10 -18
- package/dist/contracts/governance/gaugeController/getCurrentEpoch.js +8 -7
- package/dist/contracts/governance/gaugeController/getExpiredGaugeVotePower.js +30 -0
- package/dist/contracts/governance/gaugeController/getGauge.js +11 -9
- package/dist/contracts/governance/gaugeController/getGaugeDistributor.js +28 -0
- package/dist/contracts/governance/gaugeController/getGaugeEmissions.js +15 -9
- package/dist/contracts/governance/gaugeController/getGaugeRelativeWeight.js +19 -15
- package/dist/contracts/governance/gaugeController/getGaugeRelativeWeightView.js +12 -10
- package/dist/contracts/governance/gaugeController/getGaugeWeight.js +10 -8
- package/dist/contracts/governance/gaugeController/getLastVoteTime.js +11 -9
- package/dist/contracts/governance/gaugeController/getMaxVoteBuckets.js +28 -0
- package/dist/contracts/governance/gaugeController/getNextEpoch.js +8 -7
- package/dist/contracts/governance/gaugeController/getRegisteredGaugeList.js +28 -0
- package/dist/contracts/governance/gaugeController/getTotalWeight.js +8 -7
- package/dist/contracts/governance/gaugeController/getUserGaugeVotePower.js +11 -9
- package/dist/contracts/governance/gaugeController/getUserVotePowerRemaining.js +10 -9
- package/dist/contracts/governance/gaugeController/getVeToken.js +8 -7
- package/dist/contracts/governance/gaugeController/getVoteUserLocks.js +32 -0
- package/dist/contracts/governance/gaugeController/getVoteUserPower.js +8 -7
- package/dist/contracts/governance/gaugeController/getVoteUserSlope.js +12 -10
- package/dist/contracts/governance/gaugeController/index.js +10 -1
- package/dist/contracts/governance/gaugeController/isGaugeActive.js +11 -9
- package/dist/contracts/governance/gaugeController/isPaused.js +9 -8
- package/dist/contracts/governance/gaugeController/kick.js +17 -10
- package/dist/contracts/governance/gaugeController/removeGauge.js +20 -11
- package/dist/contracts/governance/gaugeController/removePowerFromGauge.js +19 -11
- package/dist/contracts/governance/gaugeController/setBoostAmplificationEnabled.js +20 -12
- package/dist/contracts/governance/gaugeController/setDistributor.js +31 -0
- package/dist/contracts/governance/gaugeController/setEmergencyGaugePause.js +20 -12
- package/dist/contracts/governance/gaugeController/setEmergencyGaugePauseBatch.js +33 -0
- package/dist/contracts/governance/gaugeController/setEmergencyPause.js +18 -11
- package/dist/contracts/governance/gaugeController/setMaxVoteBuckets.js +31 -0
- package/dist/contracts/governance/gaugeController/vote.js +15 -16
- package/dist/contracts/governance/gaugeSystems/_helpers.js +123 -0
- package/dist/contracts/governance/gaugeSystems/findGauge.js +14 -0
- package/dist/contracts/governance/gaugeSystems/getGaugeSystem.js +14 -0
- package/dist/contracts/governance/gaugeSystems/getGaugeSystems.js +13 -0
- package/dist/contracts/governance/gaugeSystems/getGauges.js +15 -0
- package/dist/contracts/governance/gaugeSystems/index.js +21 -0
- package/dist/types/RPCLibrary.d.ts +2 -0
- package/dist/types/configs/chains/index.d.ts +36 -46
- package/dist/types/configs/index.d.ts +18 -23
- package/dist/types/contracts/governance/distributor/claimAll.d.ts +7 -5
- package/dist/types/contracts/governance/distributor/claimForGauge.d.ts +7 -6
- package/dist/types/contracts/governance/distributor/deposit.d.ts +7 -6
- package/dist/types/contracts/governance/distributor/getClaimableForGauge.d.ts +6 -4
- package/dist/types/contracts/governance/distributor/getClaimedAtEpoch.d.ts +7 -5
- package/dist/types/contracts/governance/distributor/getDepositedAtEpoch.d.ts +6 -4
- package/dist/types/contracts/governance/distributor/getDustLastProcessedEpoch.d.ts +12 -0
- package/dist/types/contracts/governance/distributor/getGaugeController.d.ts +5 -3
- package/dist/types/contracts/governance/distributor/getLastClaimedEpoch.d.ts +6 -4
- package/dist/types/contracts/governance/distributor/getMaxClaimBound.d.ts +15 -0
- package/dist/types/contracts/governance/distributor/getPeriodDuration.d.ts +5 -3
- package/dist/types/contracts/governance/distributor/getRewardToken.d.ts +5 -3
- package/dist/types/contracts/governance/distributor/getRewardTokenInfo.d.ts +5 -3
- package/dist/types/contracts/governance/distributor/getRewardTokenStats.d.ts +5 -3
- package/dist/types/contracts/governance/distributor/index.d.ts +5 -2
- package/dist/types/contracts/governance/distributor/setController.d.ts +7 -6
- package/dist/types/contracts/governance/distributor/setLastClaimedEpoch.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/setMaxClaimBound.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/withdrawDust.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/withdrawRemovedGaugeRewards.d.ts +8 -7
- package/dist/types/contracts/governance/gauge/_apy.d.ts +61 -0
- package/dist/types/contracts/governance/gauge/_tokens.d.ts +14 -0
- package/dist/types/contracts/governance/gauge/approveGaugeToken.d.ts +14 -0
- package/dist/types/contracts/governance/gauge/claimRewardToken.d.ts +1 -1
- package/dist/types/contracts/governance/gauge/getApy.d.ts +41 -0
- package/dist/types/contracts/governance/gauge/getEarnedExtraReward.d.ts +13 -0
- package/dist/types/contracts/governance/gauge/getEarnedReward.d.ts +3 -2
- package/dist/types/contracts/governance/gauge/getGaugeData.d.ts +23 -0
- package/dist/types/contracts/governance/gauge/getPauseStatus.d.ts +19 -0
- package/dist/types/contracts/governance/gauge/getPendingRewards.d.ts +3 -2
- package/dist/types/contracts/governance/gauge/getRewardTokens.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/getUserApy.d.ts +44 -0
- package/dist/types/contracts/governance/gauge/getUserClaimableRewards.d.ts +14 -12
- package/dist/types/contracts/governance/gauge/getUserGaugeState.d.ts +31 -0
- package/dist/types/contracts/governance/gauge/index.d.ts +11 -1
- package/dist/types/contracts/governance/gauge/isPaused.d.ts +1 -1
- package/dist/types/contracts/governance/gauge/pullRewardsFromDistributor.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/unwrapStakingToken.d.ts +12 -0
- package/dist/types/contracts/governance/gauge/wrapStakingToken.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/addGauge.d.ts +8 -5
- package/dist/types/contracts/governance/gaugeController/batchVote.d.ts +9 -6
- package/dist/types/contracts/governance/gaugeController/calculateBoost.d.ts +10 -8
- package/dist/types/contracts/governance/gaugeController/forceCompleteCheckpoint.d.ts +8 -5
- package/dist/types/contracts/governance/gaugeController/getActiveGaugeCount.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getActiveGauges.d.ts +7 -3
- package/dist/types/contracts/governance/gaugeController/getConstants.d.ts +6 -4
- package/dist/types/contracts/governance/gaugeController/getCurrentEpoch.d.ts +6 -3
- package/dist/types/contracts/governance/gaugeController/getExpiredGaugeVotePower.d.ts +16 -0
- package/dist/types/contracts/governance/gaugeController/getGauge.d.ts +7 -4
- package/dist/types/contracts/governance/gaugeController/getGaugeDistributor.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getGaugeEmissions.d.ts +6 -3
- package/dist/types/contracts/governance/gaugeController/getGaugeRelativeWeight.d.ts +8 -9
- package/dist/types/contracts/governance/gaugeController/getGaugeRelativeWeightView.d.ts +8 -5
- package/dist/types/contracts/governance/gaugeController/getGaugeWeight.d.ts +6 -4
- package/dist/types/contracts/governance/gaugeController/getLastVoteTime.d.ts +7 -4
- package/dist/types/contracts/governance/gaugeController/getMaxVoteBuckets.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getNextEpoch.d.ts +6 -3
- package/dist/types/contracts/governance/gaugeController/getRegisteredGaugeList.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getTotalWeight.d.ts +5 -3
- package/dist/types/contracts/governance/gaugeController/getUserGaugeVotePower.d.ts +7 -4
- package/dist/types/contracts/governance/gaugeController/getUserVotePowerRemaining.d.ts +6 -4
- package/dist/types/contracts/governance/gaugeController/getVeToken.d.ts +6 -3
- package/dist/types/contracts/governance/gaugeController/getVoteUserLocks.d.ts +17 -0
- package/dist/types/contracts/governance/gaugeController/getVoteUserPower.d.ts +6 -3
- package/dist/types/contracts/governance/gaugeController/getVoteUserSlope.d.ts +8 -5
- package/dist/types/contracts/governance/gaugeController/index.d.ts +10 -1
- package/dist/types/contracts/governance/gaugeController/isGaugeActive.d.ts +6 -4
- package/dist/types/contracts/governance/gaugeController/isPaused.d.ts +6 -3
- package/dist/types/contracts/governance/gaugeController/kick.d.ts +7 -4
- package/dist/types/contracts/governance/gaugeController/removeGauge.d.ts +9 -5
- package/dist/types/contracts/governance/gaugeController/removePowerFromGauge.d.ts +8 -5
- package/dist/types/contracts/governance/gaugeController/setBoostAmplificationEnabled.d.ts +9 -6
- package/dist/types/contracts/governance/gaugeController/setDistributor.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/setEmergencyGaugePause.d.ts +9 -6
- package/dist/types/contracts/governance/gaugeController/setEmergencyGaugePauseBatch.d.ts +14 -0
- package/dist/types/contracts/governance/gaugeController/setEmergencyPause.d.ts +8 -5
- package/dist/types/contracts/governance/gaugeController/setMaxVoteBuckets.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/vote.d.ts +9 -7
- package/dist/types/contracts/governance/gaugeSystems/_helpers.d.ts +71 -0
- package/dist/types/contracts/governance/gaugeSystems/findGauge.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeSystems/getGaugeSystem.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeSystems/getGaugeSystems.d.ts +10 -0
- package/dist/types/contracts/governance/gaugeSystems/getGauges.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeSystems/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +176 -105
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +260 -213
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +173 -212
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +176 -105
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +176 -105
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +111 -108
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +210 -34
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +112 -151
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +174 -95
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +243 -227
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +164 -232
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +185 -98
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +185 -98
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +104 -95
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +241 -22
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +72 -158
- package/dist/types/utils/artifacts.d.ts +40 -0
- package/dist/types/utils/contracts.d.ts +34 -44
- package/dist/utils/contracts.js +1 -1
- package/package.json +1 -1
- package/dist/contracts/governance/distributor/getStartEpoch.js +0 -28
- package/dist/contracts/governance/distributor/withdrawUnallocatedRewards.js +0 -26
- package/dist/contracts/governance/gauge/setDistributorApproval.js +0 -35
- package/dist/types/contracts/governance/distributor/getStartEpoch.d.ts +0 -10
- package/dist/types/contracts/governance/distributor/withdrawUnallocatedRewards.d.ts +0 -12
- package/dist/types/contracts/governance/gauge/setDistributorApproval.d.ts +0 -11
package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts
CHANGED
|
@@ -5,16 +5,16 @@ import type { RWAGauge, RWAGaugeInterface } from "../../../../../contracts/core/
|
|
|
5
5
|
type RWAGaugeConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
6
|
export declare class RWAGauge__factory extends ContractFactory {
|
|
7
7
|
constructor(...args: RWAGaugeConstructorParams);
|
|
8
|
-
getDeployTransaction(_stakingToken: AddressLike, _controller: AddressLike, _raacLiquidLocker: AddressLike, _raacToken: AddressLike, overrides?: NonPayableOverrides & {
|
|
8
|
+
getDeployTransaction(_stakingToken: AddressLike, _controller: AddressLike, _raacLiquidLocker: AddressLike, _raacToken: AddressLike, _rewardToken: AddressLike, _rewardDistributor: AddressLike, overrides?: NonPayableOverrides & {
|
|
9
9
|
from?: string;
|
|
10
10
|
}): Promise<ContractDeployTransaction>;
|
|
11
|
-
deploy(_stakingToken: AddressLike, _controller: AddressLike, _raacLiquidLocker: AddressLike, _raacToken: AddressLike, overrides?: NonPayableOverrides & {
|
|
11
|
+
deploy(_stakingToken: AddressLike, _controller: AddressLike, _raacLiquidLocker: AddressLike, _raacToken: AddressLike, _rewardToken: AddressLike, _rewardDistributor: AddressLike, overrides?: NonPayableOverrides & {
|
|
12
12
|
from?: string;
|
|
13
13
|
}): Promise<RWAGauge & {
|
|
14
14
|
deploymentTransaction(): ContractTransactionResponse;
|
|
15
15
|
}>;
|
|
16
16
|
connect(runner: ContractRunner | null): RWAGauge__factory;
|
|
17
|
-
static readonly bytecode = "0x60c0604052346102c55761465f6080813803918261001c816102c9565b9384928339810103126102c557610032816102ee565b9061003f602082016102ee565b6100576060610050604085016102ee565b93016102ee565b61006042610302565b60015f556011805460ff60a01b1916600160a01b1790556001600160a01b0383169485156102b6576001600160a01b03169081156102b6576001600160a01b0385169283156102b6576001600160a01b03169384156102b6576100cc906100c633610391565b50610407565b506100d63361049a565b5060035562093a806004555f60055560018060a01b031960065416176006555f6007555f600855602093610109856102c9565b5f81525f3681378051906001600160401b03821161025e5768010000000000000000821161025e5786906009548360095580841061028d575b500160095f52865f205f5b8381106102725750505050610161856102c9565b5f81525f3681378051906001600160401b03821161025e5768010000000000000000821161025e578690600c5483600c55808410610235575b5001600c5f52865f205f5b83811061021a5742600e5560a08590526080869052601180546001600160a01b031916881790556101d58861052d565b50604051613ffe90816105c1823960805181818161144801526136a4015260a0518181816115910152818161172501528181611a94015281816135a301526137a40152f35b82516001600160a01b031682820155918801916001016101a5565b600c5f5283835f2091820191015b818110610250575061019a565b5f8155899350600101610243565b634e487b7160e01b5f52604160045260245ffd5b82516001600160a01b0316828201559188019160010161014d565b60095f5283835f2091820191015b8181106102a85750610142565b5f815589935060010161029b565b63e6c4247b60e01b5f5260045ffd5b5f80fd5b6040519190601f01601f191682016001600160401b0381118382101761025e57604052565b51906001600160a01b03821682036102c557565b6201518081049060078206908115908180610384575b61037d57501561035d575060075b810180911161034957620151808102908082046201518014901517156103495790565b634e487b7160e01b5f52601160045260245ffd5b600703600781111561032657634e487b7160e01b5f52601160045260245ffd5b9250505090565b5062015180810615610318565b6001600160a01b0381165f9081525f5160206145df5f395f51905f52602052604090205460ff16610402576001600160a01b03165f8181525f5160206145df5f395f51905f5260205260408120805460ff191660011790553391905f5160206145bf5f395f51905f528180a4600190565b505f90565b6001600160a01b0381165f9081525f51602061461f5f395f51905f52602052604090205460ff16610402576001600160a01b03165f8181525f51602061461f5f395f51905f5260205260408120805460ff191660011790553391907f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c570223357905f5160206145bf5f395f51905f529080a4600190565b6001600160a01b0381165f9081525f5160206145ff5f395f51905f52602052604090205460ff16610402576001600160a01b03165f8181525f5160206145ff5f395f51905f5260205260408120805460ff191660011790553391907f5c91514091af31f62f596a314af7d5be40146b2f2355969392f055e12e0982fb905f5160206145bf5f395f51905f529080a4600190565b6001600160a01b0381165f9081525f51602061463f5f395f51905f52602052604090205460ff16610402576001600160a01b03165f8181525f51602061463f5f395f51905f5260205260408120805460ff191660011790553391907f24927c918ee933e498c4f4704c8c8c5997712350624a2ab5df3edca55f9ac033905f5160206145bf5f395f51905f529080a460019056fe60806040526004361015610011575f80fd5b5f3560e01c806301ad758e146103af57806301ffc9a7146103aa578063092c5b3b146103a557806312064c34146103a057806318160ddd1461039b5780631ac6d19d1461039657806323cb239014610391578063248a9ca31461038c5780632b1b9a21146103875780632d5ce3e6146103825780632e1a7d4d1461037d5780632f2ff15d1461037857806332d86ded1461037357806336568abe1461036e578063372500ab1461036957806339f26f4b146103645780633b946c711461035f5780633e2e52401461035a578063489bd367146103555780635c975abb146103505780635ea3f4fa1461034b578063616a53121461034657806365547c2b1461034157806370a082311461033c57806379d6abbe1461033757806380ac82281461033257806382fd8e5d1461032d57806388327d5014610328578063906a56701461032357806390e879861461031e57806391d148541461031957806395ccea671461031457806399eecb3b146102ec5780639d0ab89f1461030f578063a217fddf1461030a578063a592d9ec14610305578063a694fc3a14610300578063b470aade146102fb578063c0e1c59e146102f6578063c4f59f9b146102f1578063c57380a2146102ec578063c5a3ca46146102e7578063c925c680146102e2578063ca37271b146102dd578063cdbcaf18146102d8578063ce60089d146102d3578063d547741f146102ce578063d5999a5c146102c9578063d6585ecf146102c4578063db517212146102bf578063dbc99775146102ba578063dd4b1fb1146102b5578063dd89b736146102b0578063e40963f2146102ab578063ecc68a29146102a6578063f06e22b8146102a1578063f4359ce51461029c5763fda80b5514610297575f80fd5b612214565b6121f7565b61211b565b611f8a565b611f62565b611ee3565b611e11565b611d49565b611c3a565b611c13565b611bf6565b611bc2565b611ba7565b611b64565b611afa565b611a5c565b6118f3565b61157c565b611876565b61180d565b6117f0565b6116d0565b6116b3565b611699565b6115c0565b611540565b6114fe565b611488565b611433565b6112fb565b6112ba565b6112a1565b61124f565b611211565b6111d6565b6111af565b6110dd565b6110bb565b611096565b610fef565b610e39565b610dc1565b610d48565b610d00565b610c0b565b610b48565b610ad0565b610a45565b6107c6565b6107a0565b6105d0565b6104e2565b6104c5565b61048a565b610452565b6103fc565b6103c2565b5f9103126103be57565b5f80fd5b346103be575f3660031901126103be576103e460055460035460045491612857565b604080519283526020830191909152819081015b0390f35b346103be5760203660031901126103be5760043563ffffffff60e01b81168091036103be57602090637965db0b60e01b8114908115610441575b506040519015158152f35b6301ffc9a760e01b1490505f610436565b346103be575f3660031901126103be5760206040515f516020613f095f395f51905f528152f35b6001600160a01b038116036103be57565b346103be5760203660031901126103be576004356104a781610479565b60018060a01b03165f526010602052602060405f2054604051908152f35b346103be575f3660031901126103be576020600854604051908152f35b346103be5760203660031901126103be576004356104ff81610479565b61050761287a565b600354421061059957610518612898565b6001600160a01b0381161561058a5761052f612a6d565b610537612b47565b61054081612b87565b5f5b60095481101561057f5760095f525f516020613f695f395f51905f5281015460019190610578906001600160a01b031684612ba8565b5001610542565b61058860015f55565b005b63e6c4247b60e01b5f5260045ffd5b6302455a9b60e11b5f5260045ffd5b60409060031901126103be576004356105c081610479565b906024356105cd81610479565b90565b346103be576105de366105a8565b6105e6612898565b6001600160a01b038216918215801561078f575b61058a576008600a5410156107805760405163313ce56760e01b8152602081600481875afa5f918161075f575b5061063b5763552b2fcd60e01b5f5260045ffd5b61064d9061064883610f76565b612363565b61065d61065982612ca7565b1590565b610751575b60405163313ce56760e01b815291602083600481875afa92831561074c577f46e16ae007fe8fc34f1a55933582e40b6ddcf62e168b5c5dd32fa927b4664f389361071293610706925f92610717575b50610701906106d16106c161245b565b60018152935b60ff166020850152565b5f60408401526106e4856060850161247a565b5f60808401524260a08401525f60c08401525f60e0840152610f76565b6124a8565b604051918291826118e0565b0390a2005b61070191925061073e9060203d602011610745575b610736818361231c565b81019061233f565b91906106b1565b503d61072c565b612358565b61075a8161239c565b610662565b61077991925060203d60201161074557610736818361231c565b905f610627565b635024a38f60e01b5f5260045ffd5b506001600160a01b038216156105fa565b346103be5760203660031901126103be5760206107be600435612528565b604051908152f35b346103be5760403660031901126103be576004356107e381610479565b602435906107ef61287a565b6107f881610f76565b6002810154909190336001600160a01b0390911603610a075761081d61065982612ca7565b6109f85782156109e95761082f612cc4565b6040516370a0823160e01b81526001600160a01b0391909116926020828061085a30600483016118e0565b0381875afa91821561074c575f926109c4575b5061087a90303386612ea4565b6040516370a0823160e01b8152916020838061089930600483016118e0565b0381875afa801561074c576108dd610952936006927ffecaab358bdc05070c1a3688285e1fcea6591abad3ac197a35c589f26ace38d4965f91610995575b50612570565b916108f66108f0825460ff9060081c1690565b84612edf565b60038201908154804210155f1461095e575061091461091d9161257d565b62093a80900490565b60018301555b61092c426125b4565b9055426004820155016109408282546125c4565b90556040519081529081906020820190565b0390a261058860015f55565b61091461096f61098e924290612570565b9261098961098360018801958654906125a1565b9161257d565b6125c4565b9055610923565b6109b7915060203d6020116109bd575b6109af818361231c565b81019061253a565b5f6108d7565b503d6109a5565b61087a9192506109e29060203d6020116109bd576109af818361231c565b919061086d565b63162908e360e11b5f5260045ffd5b63c8a08d6f60e01b5f5260045ffd5b635c187b8d60e01b5f5260045ffd5b801515036103be57565b60409060031901126103be57600435610a3881610479565b906024356105cd81610a16565b346103be57610a5336610a20565b90610a5c612898565b6001600160a01b039081165f818152600d60205260409020549092911615610ac15760207fd0c9b7d29c9d78752c4c849829be427bcd906db1676631e06ffeb91590df929391835f52600d8252610ab68160405f206125ef565b6040519015158152a2005b6312a3d7e760e31b5f5260045ffd5b346103be5760203660031901126103be57600435610aec61287a565b60035442106105995780156109e957610b03612a6d565b610b0c33612b87565b610b168133612eeb565b6040519081527f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d560203392a260015f55005b346103be5760403660031901126103be57610588602435600435610b6b82610479565b610b7c610b7782612528565b612a36565b612fb5565b90602080835192838152019201905f5b818110610b9e5750505090565b82516001600160a01b0316845260209384019390920191600101610b91565b90610bd090604083526040830190610b81565b906020818303910152602080835192838152019201905f5b818110610bf55750505090565b8251845260209384019390920191600101610be8565b346103be5760203660031901126103be57600435610c2881610479565b600954610c3481612623565b90610c3e81612623565b925f5b828110610c5a575050506103f860405192839283610bbd565b80610c83610c74610c6d610cbb94612280565b9054611f4f565b610c7e8388612655565b61247a565b602083610ca0610c938489612655565b516001600160a01b031690565b6040516365547c2b60e01b8152948592839260048401612669565b0381305afa801561074c576001925f91610ce2575b50610cdb8288612655565b5201610c41565b610cfa915060203d81116109bd576109af818361231c565b5f610cd0565b346103be5760403660031901126103be57600435602435610d2081610479565b336001600160a01b03821603610d39576105889161302d565b63334bd91960e11b5f5260045ffd5b346103be575f3660031901126103be57610d6061287a565b600354421061059957610d71612a6d565b610d79612b47565b610d8233612b87565b5f5b60095481101561057f5760095f525f516020613f695f395f51905f5281015460019190610dba906001600160a01b031633612ba8565b5001610d84565b346103be5760203660031901126103be577f778c97e44d5672cf4e47c61c5d19aedece6e59debf5c9c9193f669cffe548c786020600435610e0181610a16565b610e09612906565b6011805460ff60a01b191691151560a090811b60ff60a01b169290921790819055604051911c60ff1615158152a1005b346103be57610e4736610a20565b90610e50612898565b8115610e8d5761071281610e715f516020613f895f395f51905f5293613104565b60405193151584526001600160a01b0316929081906020820190565b6001600160a01b03610eae610ea183610f8f565b546001600160a01b031690565b1615610ac157610ecd610ec082610f8f565b805460ff60a01b19169055565b6001600160a01b038116905f5b600c5480821015610f5b5783610f04610ef28461229d565b90546001600160a01b03929190611f4f565b1614610f135750600101610eda565b5f516020613f895f395f51905f5293506107129291610f48610f42610c6d610f3d610f4e9561255d565b61229d565b9161229d565b90612379565b610f5661309d565b610e71565b50505f516020613f895f395f51905f52915061071290610e71565b6001600160a01b03165f908152600f6020526040902090565b6001600160a01b03165f908152600d6020526040902090565b6001600160a01b03165f90815260106020526040902090565b6001600160a01b03165f908152600b6020526040902090565b9060018060a01b03165f5260205260405f2090565b346103be5760203660031901126103be5760043561100c81610479565b6001600160a01b039081165f908152600f6020908152604091829020805460018201546002830154600384015460048501546005860154600690960154885160ff8088161515825260089790971c90961697860197909752968401929092529095166060820152608081019490945260a084019290925260c083019190915260e082015261010090f35b346103be575f3660031901126103be57602060ff60115460a01c166040519015158152f35b346103be575f3660031901126103be57602060ff600254166040519015158152f35b346103be5760203660031901126103be576004356110fa81610479565b60095461110681612623565b9061111081612623565b925f5b82811061112c575050506103f860405192839283610bbd565b8061113f610c74610c6d61116a94612280565b60208361114f610c938489612655565b604051631015904560e31b8152948592839260048401612669565b0381305afa801561074c576001925f91611191575b5061118a8288612655565b5201611113565b6111a9915060203d81116109bd576109af818361231c565b5f61117f565b346103be575f3660031901126103be5760206040515f516020613f295f395f51905f528152f35b346103be57602060036112076111eb366105a8565b6001600160a01b03165f90815260108552604090208301610fda565b0154604051908152f35b346103be5760203660031901126103be5760043561122e81610479565b60018060a01b03165f5260106020526020600160405f200154604051908152f35b346103be5760203660031901126103be5760043561126c81610479565b60018060a01b03165f526010602052606060405f20805490600260018201549101549060405192835260208301526040820152f35b346103be5760206107be6112b4366105a8565b90612683565b346103be5760203660031901126103be576004356112d781610479565b60018060a01b03165f52600b60205260206107be60ff60405f205460081c1661326b565b346103be576103f8611399611394611312366105a8565b61131d829392610f76565b805460081c60ff169360038201548042115f1461142b57915b60058101549260048201548082115f146114225761135391612570565b905b81151580611417575b6113e6575b505061137a90600461137485610fa8565b01610fda565b905f928254908183116113a9575b505050600101546125c4565b6132a1565b6040519081529081906020820190565b6001939450916113c96113cf926113c26113dd95610fa8565b5492612570565b906125a1565b670de0b6b3a7640000900490565b91905f80611388565b9261140961140061140f93600161137a96970154906125a1565b600754906125d1565b906125c4565b91905f611363565b50600754151561135e565b50505f90611355565b504291611336565b346103be575f3660031901126103be576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b9060206105cd928181520190610b81565b346103be575f3660031901126103be57604051600c80548083525f91825260208301915f516020613ea95f395f51905f5291905b8181106114df576103f8856114d38187038261231c565b60405191829182611477565b82546001600160a01b03168452602090930192600192830192016114bc565b346103be5760403660031901126103be57602060ff61153460243560043561152582610479565b5f526001845260405f20610fda565b54166040519015158152f35b346103be5760403660031901126103be5761058860043561156081610479565b6024359061156c612906565b33906001600160a01b03166132c8565b346103be575f3660031901126103be576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b346103be5760203660031901126103be576004356115dd81610a16565b6115e561295a565b80156116355760025460ff16611626576116215f516020613ee95f395f51905f529161160f6132ef565b60405190151581529081906020820190565b0390a1005b631785c68160e01b5f5260045ffd5b60025460ff81161561168a575f516020613ee95f395f51905f52916116219160ff19166002557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a161160f565b636cd6020160e01b5f5260045ffd5b346103be575f3660031901126103be5760206040515f8152f35b346103be575f3660031901126103be576020600754604051908152f35b346103be5760203660031901126103be576004356116ec61287a565b6116f4613330565b60035442106105995780156109e95760405163aa79979b60e01b81526020818061172130600483016118e0565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa90811561074c575f916117c1575b50156117b25761176b612a6d565b61177433612b87565b61177e8133612f5d565b60405190815233907f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d908060208101610952565b63d4220bed60e01b5f5260045ffd5b6117e3915060203d6020116117e9575b6117db818361231c565b810190612700565b5f61175d565b503d6117d1565b346103be575f3660031901126103be576020600454604051908152f35b346103be575f3660031901126103be5761182561287a565b60035442106105995761183733612d72565b5f5b600a5481101561057f57600a5f525f516020613ec95f395f51905f528101546001919061186f906001600160a01b03163361334b565b5001611839565b346103be575f3660031901126103be57604051600980548083525f91825260208301915f516020613f695f395f51905f5291905b8181106118c1576103f8856114d38187038261231c565b82546001600160a01b03168452602090930192600192830192016118aa565b6001600160a01b03909116815260200190565b346103be5760603660031901126103be5760043561191081610479565b602435906044359061192182610479565b6003544210610599576119326129c8565b82156109e9576001600160a01b03821690811561058a57611951612a6d565b61195b8133613494565b6119643361356c565b61197381600361137433610fa8565b60028101908154948587116109e9576040516370a0823160e01b8152966001600160a01b0385169490602089806119ad30600483016118e0565b0381895afa90811561074c576103f8995f92611a3b575b5081811115611a3157509687935b846119e6575b60405185815280602081018c565b611a0b956119f686600394612570565b905501611a048482546125c4565b9055613674565b6040518381525f516020613fa95f395f51905f5290602090a35f808083818080806119d8565b90509687936119d2565b611a5591925060203d6020116109bd576109af818361231c565b905f6119c4565b346103be5760203660031901126103be57600435611a7981610479565b60405163395f293b60e11b81523060048201526020816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa801561074c576103f892611399925f92611ad9575b5061378d565b611af391925060203d6020116109bd576109af818361231c565b905f611ad3565b346103be5760203660031901126103be57600435611b1781610479565b611b1f61287a565b600354421061059957611b58602091611b36612a6d565b611b3f8161386e565b611b498133613494565b611b523361356c565b33612ba8565b60015f55604051908152f35b346103be5760203660031901126103be57600435611b8181610479565b611b8961287a565b600354421061059957611b58602091611ba133612d72565b3361334b565b346103be575f3660031901126103be57602060405160088152f35b346103be5760403660031901126103be57610588602435600435611be582610479565b611bf1610b7782612528565b61302d565b346103be575f3660031901126103be5760206040516224ea008152f35b346103be575f3660031901126103be5760206040515f516020613f495f395f51905f528152f35b346103be5760203660031901126103be57600435611c5781610479565b5f60c0604051611c66816122e1565b8281528260208201528260408201528260608201528260808201528260a0820152015260018060a01b03165f52600b6020526103f860405f20600560405191611cae836122e1565b805460ff80821615158552611cc69160081c166106c7565b600181015460408401526002810154606084015260038101546080840152600481015460a0840152015460c08201526040519182918291909160c08060e083019480511515845260ff602082015116602085015260408101516040850152606081015160608501526080810151608085015260a081015160a08501520151910152565b346103be576103f8611d9e611d5d366105a8565b5f6080604051611d6c81612301565b828152826020820152826040820152826060820152015260018060a01b03165f526010602052600360405f2001610fda565b600460405191611dad83612301565b80548352600181015460208401526002810154604084015260038101546060840152015460808201526040519182918291909160808060a0830194805184526020810151602085015260408101516040850152606081015160608501520151910152565b346103be5760203660031901126103be57600435611e2e81610479565b600a54611e3a81612623565b90611e4481612623565b925f5b828110611e60575050506103f860405192839283610bbd565b80611e73610c74610c6d611e9e946122b5565b602083611e83610c938489612655565b60405163088327d560e41b8152948592839260048401612669565b0381305afa801561074c576001925f91611ec5575b50611ebe8288612655565b5201611e47565b611edd915060203d81116109bd576109af818361231c565b5f611eb3565b346103be575f3660031901126103be57611efb61287a565b600354421061059957611f0c612a6d565b611f1533612b87565b611f1e33612d72565b6040514281527e745e876c45796ea32ef5ef1bcbf9cef81cfd16666c9364caa1cb8a6ddbd67660203392a260015f55005b60039190911b1c6001600160a01b031690565b346103be575f3660031901126103be576011546040516001600160a01b039091168152602090f35b346103be57611f98366105a8565b611fa0612898565b611fb3611fac83610fc1565b5460ff1690565b61210c576001600160a01b031615610a075760405163313ce56760e01b81526001600160a01b0382169190602081600481865afa5f91816120eb575b506120035763552b2fcd60e01b5f5260045ffd5b6120109061064883610fc1565b6001600160a01b0381165f908152600b602052604090205460ff16156120dd575b60405163313ce56760e01b815290602082600481865afa90811561074c57612092925f926120b8575b5061208d9061206a6106c161246b565b5f60408401525f60608401524260808401525f60a08401525f60c0840152610fc1565b612775565b7ff3e4c2c64e71e6ba2eaab9a599bced62f9eb91d2cda610bf41aa8c80ff2cf8265f80a2005b61208d9192506120d69060203d60201161074557610736818361231c565b919061205a565b6120e6816123dd565b612031565b61210591925060203d60201161074557610736818361231c565b905f611fef565b63185add2960e11b5f5260045ffd5b346103be575f3660031901126103be5761213361287a565b600354421061059957612144612a6d565b5f5b600c548110156121ee5761215c610c6d8261229d565b60405163133dac2960e11b815291905f838061217b30600483016118e0565b03816001600160a01b0385165afa801561074c576001935f916121cc575b505f5b81518110156121c357806121bd846121b8610c93899587612655565b61391d565b0161219c565b50505001612146565b6121e891503d805f833e6121e0818361231c565b8101906127d4565b5f612199565b61057f42600e55565b346103be575f3660031901126103be57602060405162093a808152f35b346103be575f3660031901126103be5760e060035460045460055460018060a01b03600654166007549060085492600e5494604051968752602087015260408601526060850152608084015260a083015260c0820152f35b634e487b7160e01b5f52603260045260245ffd5b6009548110156122985760095f5260205f2001905f90565b61226c565b600c5481101561229857600c5f5260205f2001905f90565b600a5481101561229857600a5f5260205f2001905f90565b634e487b7160e01b5f52604160045260245ffd5b60e081019081106001600160401b038211176122fc57604052565b6122cd565b60a081019081106001600160401b038211176122fc57604052565b601f909101601f19168101906001600160401b038211908210176122fc57604052565b908160209103126103be575160ff811681036103be5790565b6040513d5f823e3d90fd5b9061ff0082549160081b169061ff001916179055565b80546001600160a01b0360039390931b83811b199091169290931690921b179055565b600a5490600160401b8210156122fc5760018201600a55600a5482101561229857600a5f9081526123db925f516020613ec95f395f51905f5201612379565b565b60095490600160401b8210156122fc57600182016009556009548210156122985760095f9081526123db925f516020613f695f395f51905f5201612379565b600c5490600160401b8210156122fc5760018201600c55600c5482101561229857600c5f9081526123db925f516020613ea95f395f51905f5201612379565b604051906123db6101008361231c565b604051906123db60e08361231c565b6001600160a01b039091169052565b80546001600160a01b0319166001600160a01b03909216919091179055565b9060e06006916124c781511515859060ff801983541691151516179055565b6124de6124d8602083015160ff1690565b85612363565b604081015160018501556060810151612503906001600160a01b031660028601612489565b6080810151600385015560a0810151600485015560c081015160058501550151910155565b5f526001602052600160405f20015490565b908160209103126103be575190565b634e487b7160e01b5f52601160045260245ffd5b5f1981019190821161256b57565b612549565b9190820391821161256b57565b90670de0b6b3a7640000820291808304670de0b6b3a7640000149015171561256b57565b8181029291811591840414171561256b57565b9062093a80820180921161256b57565b9190820180921161256b57565b81156125db570490565b634e487b7160e01b5f52601260045260245ffd5b805460ff60a01b191691151560a01b60ff60a01b16919091179055565b6001600160401b0381116122fc5760051b60200190565b9061262d8261260c565b61263a604051918261231c565b828152809261264b601f199161260c565b0190602036910137565b80518210156122985760209160051b010190565b6001600160a01b0391821681529116602082015260400190565b60018060a01b0382165f52601060205260405f20916001830154156126f9578160036126e36126b76002956126ea95613192565b91505060018060a01b0384165f52600b6020526126dd60ff60405f205460081c1661326b565b906125d1565b9401610fda565b015490810180911161256b5790565b5050505f90565b908160209103126103be57516105cd81610a16565b90604051612722816122e1565b60c06005829461274660ff82548181161515875260081c16602086019060ff169052565b600181015460408501526002810154606085015260038101546080850152600481015460a08501520154910152565b9060c060059161279481511515859060ff801983541691151516179055565b6127a560ff60208301511685612363565b60408101516001850155606081015160028501556080810151600385015560a081015160048501550151910155565b6020818303126103be578051906001600160401b0382116103be57019080601f830112156103be5781516128078161260c565b92612815604051948561231c565b81845260208085019260051b8201019283116103be57602001905b82821061283d5750505090565b60208091835161284c81610479565b815201910190612830565b82612864919493946125a1565b810180911161256b5791820180831161256b5790565b60025f54146128895760025f55565b633ee5aeb560e01b5f5260045ffd5b5f516020613f095f395f51905f525f52600160205260ff6128d9337fc3eac9ead20d697480ab489ced881761c627fd3281937449e4d4d7fbf9faa2cd610fda565b5416156128e257565b63e2517d3f60e01b5f52336004525f516020613f095f395f51905f5260245260445ffd5b5f8052600160205260ff61293a337fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49610fda565b54161561294357565b63e2517d3f60e01b5f52336004525f60245260445ffd5b5f516020613f495f395f51905f525f52600160205260ff61299b337f0298389358dc4e56cb082b3bb11d0524b39b30d4fc48a48562a008cd6edee05f610fda565b5416156129a457565b63e2517d3f60e01b5f52336004525f516020613f495f395f51905f5260245260445ffd5b5f516020613f295f395f51905f525f52600160205260ff612a09337f016de9afd02c17cd0ae54c97293c2a2a0d799672f990d1e187070b9998197fdb610fda565b541615612a1257565b63e2517d3f60e01b5f52336004525f516020613f295f395f51905f5260245260445ffd5b805f52600160205260ff612a4d3360405f20610fda565b541615612a575750565b63e2517d3f60e01b5f523360045260245260445ffd5b612a7f60055460035460045491612857565b809150421015612a8c5750565b5f5b600954811015612b2d5780826003612ab2612aad610c6d600196612280565b610fc1565b60085480151580612b21575b612ad7575b505f858201555f6005820155015501612a8e565b8183015480851115612b1957612aed9085612570565b905b81612afb575b50612ac3565b612b1090600284019283548986015490613a4d565b90555f80612af5565b505f90612aef565b50858201541515612abe565b50506123db612b426003546004549042613aa2565b600555565b5f5b600954811015612b845760095f525f516020613f695f395f51905f5281015460019190612b7e906001600160a01b031661386e565b01612b49565b50565b6001600160a01b03811615612b845780612ba36123db92613abd565b61356c565b905f91612bba82600361137484610fa8565b90600282019182549384612bd1575b505050505090565b6040516370a0823160e01b815294955092936001600160a01b0384169391929060208180612c0230600483016118e0565b0381885afa90811561074c575f91612c88575b5080871115612c8057945b612c2b868098612570565b90558415612bc957612c598582612c739460035f516020613fa95f395f51905f529701611a048482546125c4565b6040519485526001600160a01b0316939081906020820190565b0390a35f80808080612bc9565b508594612c20565b612ca1915060203d6020116109bd576109af818361231c565b5f612c15565b6001600160a01b03165f908152600f602052604090205460ff1690565b5f5b600a54811015612b845780612ce7612ce2610c6d6001946122b5565b610f76565b60038101548042115f14612d6a57905b6005810191825490600483019081548082115f14612d6257612d199082612570565b915b82612d2d575b50505050505001612cc6565b5560075480612d3d575b80612d21565b612d516114099288612d56960154906125a1565b6125d1565b90555f80808080612d37565b505f91612d1b565b504290612cf7565b5f5b600a54811015612e7e5780612d8d610c6d6001936122b5565b612d9681610f76565b9060038201548042115f14612e7657915b6005810190815493600482019081548082115f14612e6e57612dc99082612570565b915b82612e3a575b5050505050838060a01b038516612deb575b505001612d74565b612dfa90600461137487610fa8565b908154808211612e0b575b50612de3565b612e266113cf836113c98894612e309688556113c28b610fa8565b92019182546125c4565b90555f8080612e05565b556007549182612e4b575b80612dd1565b91612d516114099289612e629698950154906125a1565b8092555f808080612e45565b505f91612dcb565b504291612da7565b5050565b6001600160a01b03918216815291166020820152604081019190915260600190565b90612eda90612ecc6123db956040519586936323b872dd60e01b602086015260248501612e82565b03601f19810184528361231c565b613b0b565b6113c96105cd9261326b565b612ef481610fa8565b612efd82612d72565b80548311612f4e5760075483810390811161256b5760075580549280840393841161256b579290556006546123db92612f409183906001600160a01b03166132c8565b612f498161356c565b613abd565b6345a5c39960e11b5f5260045ffd5b612f6681610fa8565b91612f7082612d72565b600654612f8b908290309085906001600160a01b0316612ea4565b60075481810180911161256b57600755825490810180911161256b576123db9255612f498161356c565b805f52600160205260ff612fcc8360405f20610fda565b541661302757805f526001602052612fe78260405f20610fda565b805460ff1916600117905533916001600160a01b0316907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d5f80a4600190565b50505f90565b805f52600160205260ff6130448360405f20610fda565b54161561302757805f5260016020526130608260405f20610fda565b805460ff1916905533916001600160a01b0316907ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b5f80a4600190565b600c5480156130f0575f19810190600c5482101561229857600c5f8190527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c690910180546001600160a01b031916905555565b634e487b7160e01b5f52603160045260245ffd5b6001600160a01b038181165f818152600d6020526040902054909291166131835760408051908101906001600160401b038211818310176122fc576123db9361317e926040528082525f60208301525f52600d602052602060405f209161317460018060a01b0382511684612489565b01511515906125ef565b61241c565b633d873e1f60e01b5f5260045ffd5b91906131a56131a082610fc1565b612715565b926131b860055460035460045491612857565b429150808211613263575b5060808501518082111561325b576131da91612570565b60608501519481151580613250575b61322f575b5050908184613224600161320461322b96610fa8565b0154936003611374600161321c84846113748a610fa8565b015495610fa8565b5492613b63565b9091565b9461324791604061322b959497015160085492613a4d565b9390915f6131ee565b5060085415156131e9565b50505f6131da565b90505f6131c3565b60ff1680158015613297575b6109f85760120360ff811161256b5760ff16604d811161256b57600a0a90565b5060128111613277565b6126dd6105cd9261326b565b6001600160a01b039091168152602081019190915260400190565b612eda6123db9392612ecc60405194859263a9059cbb60e01b6020850152602484016132ad565b6132f7613330565b600160ff1960025416176002557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a1565b60ff6002541661333c57565b63d93c066560e01b5f5260045ffd5b91905f9261335e82600461137484610fa8565b9061337561336b84610f76565b5460081c60ff1690565b600183019283549261338f6133898461326b565b856125d1565b958661339f575b50505050505050565b909192939495975060018060a01b0316936040516370a0823160e01b8152602081806133ce30600483016118e0565b0381895afa90811561074c575f91613475575b508089111561346d57955b6133f787809a612570565b8155861561339657600261345e946134519261344661343f6134397ff378efe1103309c7c4ac2b55ac99569131ab2aa8aee6be174ea37474197bb3529a61326b565b8c6125a1565b8096612570565b9055019182546125c4565b9055612c598582866132c8565b0390a35f808080808080613396565b5087956133ec565b61348e915060203d6020116109bd576109af818361231c565b5f6133e1565b9060016134a083610fa8565b0154906001600160a01b03831615613567576134bb81610fc1565b916134d5826134cf81600361137489610fa8565b95613192565b92909194856002820180548203613532575b5050506134ff575b5050506001820155600442910155565b61351461336b613519946126dd938855610fc1565b61326b565b613528600284019182546125c4565b90555f80806134ef565b5561354560055460035460045491612857565b4292915080831161355e575b50600301555f85816134e7565b91506003613551565b505050565b61357581610fa8565b600181019182549082549261358a848361378d565b60405163315865df60e01b8152959093906020876004817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa95861561074c576136127f3042bda52a74ddb3e9f32af4781d52bf053f705dba3c9e09f402f6fb9446474d9761364e9761362b936136269b5f93613653575b50613bb1565b978893613621856008546125c4565b612570565b600855565b5542600291909101556040519384526001600160a01b0316929081906020820190565b0390a2565b61366d91935060203d6020116109bd576109af818361231c565b915f61360c565b6011546001600160a01b039182169391811684149081613769575b501561375f5760405163095ea7b360e01b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316936020908290815f816136e3888b600484016132ad565b03925af1801561074c57613742575b50823b156103be5761371d925f9283604051809681958294630f29367d60e21b8452600484016132ad565b03925af1801561074c5761372e5750565b8061373c5f6123db9361231c565b806103b4565b61375a9060203d6020116117e9576117db818361231c565b6136f2565b906123db926132c8565b60a01c60ff1690505f61368f565b91908260409103126103be576020825192015190565b908015613027576040805163a85bde9d60e01b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316939092839182916137e291309060048501612e82565b0381855afa5f918161383c575b506138375750602060049160405192838092630a7486c760e01b82525afa90811561074c575f9161381e575090565b6105cd915060203d6020116109bd576109af818361231c565b905090565b61385f91925060403d604011613867575b613857818361231c565b810190613777565b50905f6137ef565b503d61384d565b9060ff61387d61336b84610fc1565b1615613919575f5b600c548110156139145761389b610c6d8261229d565b604051632d538ac560e21b81529190602083806138bc883060048401612669565b03816001600160a01b0385165afa801561074c576001935f916138f6575b50156138f0576138ea9085613bde565b01613885565b506138ea565b61390e915060203d81116117e9576117db818361231c565b5f6138da565b509050565b9050565b9061392782610fc1565b91825460ff61393a8260ff9060081c1690565b166139f25750825460ff1916600117835560405163313ce56760e01b8152926001600160a01b03821690602085600481855afa5f95816139d1575b506139895763552b2fcd60e01b5f5260045ffd5b60ff8516156109f8576123db9461399f91612363565b6139a8826123dd565b7fce34593ca634648919e160816626a2dac47222f33d18bd1c49154fc50b929c175f80a2613bde565b6139eb91965060203d60201161074557610736818361231c565b945f613975565b92613a036106596123db9560ff1690565b613a0e575b50613bde565b805460ff191660011790556001600160a01b0381167f4b4d15aa7b18b06d57b6c468bef7e8fba250a69227a78f19a622b7dd87dc81d45f80a25f613a08565b92909181158015613a9a575b8015613a92575b613a8c57613a74613a7a91613a8094613d88565b91613dc2565b90613dd9565b810180911161256b5790565b50505090565b508015613a60565b508215613a59565b91908083106126f957820391821161256b576105cd916125d1565b906001600160a01b03821615613919575f5b6009548110156139145760095f525f516020613f695f395f51905f5281015460019190613b05906001600160a01b031685613494565b01613acf565b905f602091828151910182855af115612358575f513d613b5a57506001600160a01b0381163b155b613b3a5750565b635274afe760e01b5f9081526001600160a01b0391909116600452602490fd5b60011415613b33565b909193929381158015613ba7575b6126f957820391821161256b57613b9891613b8e613b9392613dc2565b613d88565b613e09565b9182810180911161256b579190565b5080831115613b71565b9291908315613bd75790612d51613bc892856125a1565b91808311613bd35750565b9150565b505f925050565b6020604051809363fd1a0e9f60e01b8252815f81613c00873060048401612669565b03926001600160a01b03165af191821561074c575f92613d67575b508115612e7e57613c56613c2e82610fc1565b9260085480151580613d5a575b613d0d575b504260038501556113c961351461336b85610fc1565b6004613c6183613e28565b93846005820155613ca4600554613c7f600354918554928391612857565b905042811115613d0757613c9591504290612570565b613c9f87866125c4565b613e81565b600182015501613cb58282546125c4565b905582613cc157505050565b6040805193845260208401919091526001600160a01b03909116917f5710c657a345f3bf2b24aa91da64582691e7b10198bad5a0ecd2096b33bbe161918190810161364e565b50613c95565b60038501548042115f14613d5257613d259042612570565b905b81613d33575b50613c40565b613d499060028701928354600189015490613a4d565b90555f80613d2d565b505f90613d27565b5060018501541515613c3b565b613d8191925060203d6020116109bd576109af818361231c565b905f613c1b565b8115676765c793fa10079d601a1b1983900482111517156103be57676765c793fa10079d601b1b9102676765c793fa10079d601a1b010490565b90633b9aca00820291633b9aca008304036103be57565b600182901c908215676765c793fa10079d601b1b8319048211176103be57676765c793fa10079d601b1b02010490565b90631dcd6500633b9aca0080840493061015613e2157565b9060010190565b6001600160a01b03165f908152600b60205260409020600101548015613e7c57613e5a60055460035460045491612857565b809291504210156130275742820391821161256b576105cd91613b9391613d88565b505f90565b9080158015613ea0575b61302757613e9b6105cd92613dc2565b613dd9565b508115613e8b56fedf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8ed1f3e12429ce88e77b14ddf9c2eb89f0b9e1e0faa7e33a95d0ce1bbc90a1c2f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335724927c918ee933e498c4f4704c8c8c5997712350624a2ab5df3edca55f9ac0335c91514091af31f62f596a314af7d5be40146b2f2355969392f055e12e0982fb6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af19e1fee2e38695e60ad3ef8c81759c22d6d7ee56f9b8805363820a50da468a184634ecdf654a6f266749291b25bdd00963ec5fe7262fb458f390d94b670558eea26469706673582212206ae0caec0c1042206fa0b85c9eb0ac0f07fc97f85c987e3697718b4390e67b5064736f6c634300081e00332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0da6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb490298389358dc4e56cb082b3bb11d0524b39b30d4fc48a48562a008cd6edee05fc3eac9ead20d697480ab489ced881761c627fd3281937449e4d4d7fbf9faa2cd016de9afd02c17cd0ae54c97293c2a2a0d799672f990d1e187070b9998197fdb";
|
|
17
|
+
static readonly bytecode = "0x60a0806040523461035f5760c081614c21803803809161001f8285610404565b83398101031261035f5761003281610427565b61003e60208301610427565b9061004b60408401610427565b9161005860608501610427565b9261007160a061006a60808801610427565b9601610427565b61007a4261043b565b60015f55662386f26fc100006003556014805460ff60a01b1916600160a01b1790556001600160a01b0384169490939085156103b9576001600160a01b031680156103b9576001600160a01b0384169687156103b9576001600160a01b03169788156103b9576001600160a01b03169485156103b9576001600160a01b0384169283156103b9576004956101306101369261012a60209861011a336104ca565b5061012433610540565b506105d3565b50610666565b506106f9565b506005556224ea006006555f600755600880546001600160a01b0319908116929092179055600c8054821686179055600b80549091168217905560405163f7c618c160e01b815292839182905afa801561036a5782915f916103c8575b506001600160a01b0316036103b9575f6009555f600a556020906040516101ba8382610404565b5f81525f3681378051906001600160401b03821161031957680100000000000000008211610319578390600f5483600f55808410610390575b5001600f5f52835f205f5b83811061037557505042601155505060405163313ce56760e01b8152908282600481845afa91821561036a575f9261032d575b506040519260e08401926001600160401b03841185851017610319576005936040526001855260ff82860191168152604085015f815260608601905f82526080870192428452600e60a08901955f875260c08a01975f89525f525260405f209751151560ff80198a541691161788555161ff0088549160081b169061ff0019161787555160018701555160028601555160038501555160048401555191015560018060a01b0319600454161760045560805260018060a01b031960145416176014556040516143d4908161078d823960805181818161141301528181612ad20152613d700152f35b634e487b7160e01b5f52604160045260245ffd5b9091508281813d8311610363575b6103458183610404565b8101031261035f575160ff8116810361035f57905f610231565b5f80fd5b503d61033b565b6040513d5f823e3d90fd5b82516001600160a01b031682820155918501916001016101fe565b600f5f5283835f2091820191015b8181106103ab57506101f3565b5f815586935060010161039e565b63e6c4247b60e01b5f5260045ffd5b9150506020813d6020116103fc575b816103e460209383610404565b8101031261035f576103f68291610427565b5f610193565b3d91506103d7565b601f909101601f19168101906001600160401b0382119082101761031957604052565b51906001600160a01b038216820361035f57565b62015180810490600782069081159081806104bd575b6104b6575015610496575060075b810180911161048257620151808102908082046201518014901517156104825790565b634e487b7160e01b5f52601160045260245ffd5b600703600781111561045f57634e487b7160e01b5f52601160045260245ffd5b9250505090565b5062015180810615610451565b6001600160a01b0381165f9081525f516020614b815f395f51905f52602052604090205460ff1661053b576001600160a01b03165f8181525f516020614b815f395f51905f5260205260408120805460ff191660011790553391905f516020614b615f395f51905f528180a4600190565b505f90565b6001600160a01b0381165f9081525f516020614be15f395f51905f52602052604090205460ff1661053b576001600160a01b03165f8181525f516020614be15f395f51905f5260205260408120805460ff191660011790553391907ffda1ae526c1fb38407f23e8b7712f7cfacc146f3e340a04221488331e0d42014905f516020614b615f395f51905f529080a4600190565b6001600160a01b0381165f9081525f516020614ba15f395f51905f52602052604090205460ff1661053b576001600160a01b03165f8181525f516020614ba15f395f51905f5260205260408120805460ff191660011790553391907ffbd454f36a7e1a388bd6fc3ab10d434aa4578f811acbbcf33afb1c697486313c905f516020614b615f395f51905f529080a4600190565b6001600160a01b0381165f9081525f516020614bc15f395f51905f52602052604090205460ff1661053b576001600160a01b03165f8181525f516020614bc15f395f51905f5260205260408120805460ff191660011790553391907f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c570223357905f516020614b615f395f51905f529080a4600190565b6001600160a01b0381165f9081525f516020614c015f395f51905f52602052604090205460ff1661053b576001600160a01b03165f8181525f516020614c015f395f51905f5260205260408120805460ff191660011790553391907f24927c918ee933e498c4f4704c8c8c5997712350624a2ab5df3edca55f9ac033905f516020614b615f395f51905f529080a460019056fe60806040526004361015610011575f80fd5b5f3560e01c806301ad758e146103da57806301ffc9a7146103d5578063092c5b3b146103d05780630e34750e146103cb57806312064c34146103c6578063161d5c1b146103c157806318160ddd146103bc5780631ac6d19d146103b75780631c03e6cc146103b2578063248a9ca3146103ad5780632b1b9a21146103a85780632b4fde00146103a35780632e1a7d4d1461039e5780632f2ff15d1461039957806336568abe1461039457806339f26f4b1461038f5780633b946c711461038a5780633e2e524014610385578063489bd367146103805780635c975abb14610317578063616a53121461037b57806365547c2b14610376578063680730041461037157806370a082311461036c578063736157081461036757806379d6abbe1461036257806380ac82281461035d57806382fd8e5d14610358578063864c29b91461035357806388327d501461034e578063906a56701461034957806390e879861461034457806391d148541461033f57806392eefe9b1461033a57806399eecb3b146103035780639d0ab89f14610335578063a217fddf14610330578063a592d9ec1461032b578063a694fc3a14610326578063a710d3ba14610321578063afd189161461031c578063b187bd2614610317578063b470aade14610312578063c0e1c59e1461030d578063c4f59f9b14610308578063c57380a214610303578063c5a3ca46146102fe578063c925c680146102f9578063cdbcaf18146102f4578063ce60089d146102ef578063d547741f146102ea578063d5999a5c146102e5578063db517212146102e0578063dbc99775146102db578063dcda162c146102d6578063dd4b1fb1146102d1578063e40963f2146102cc578063f0bd87cc146102c7578063f31878ae146102c2578063f4359ce5146102bd5763fda80b55146102b8575f80fd5b6120af565b612092565b611ffe565b611fd7565b611faf565b611eb5565b611e40565b611d65565b611c5a565b611c3d565b611c0c565b611bf1565b611b5a565b611ac0565b611a0b565b6115e5565b611963565b6118d9565b6118bc565b610f56565b611827565b6117bd565b61171d565b611700565b6116e6565b61160d565b611547565b611508565b611492565b6113fe565b6112d3565b611244565b611206565b61116f565b611120565b6110d4565b611099565b610feb565b610f9f565b610f78565b610f31565b610e9f565b610cd8565b610c60565b610c12565b610bdc565b610b4c565b610b20565b61084b565b610825565b610674565b6105ba565b61059d565b610547565b61050f565b6104a4565b61047d565b610427565b6103ed565b5f9103126103e957565b5f80fd5b346103e9575f3660031901126103e95761040f60075460055460065491612b61565b604080519283526020830191909152819081015b0390f35b346103e95760203660031901126103e95760043563ffffffff60e01b81168091036103e957602090637965db0b60e01b811490811561046c575b506040519015158152f35b6301ffc9a760e01b1490505f610461565b346103e9575f3660031901126103e95760206040515f51602061425f5f395f51905f528152f35b346103e9575f3660031901126103e9576020600354604051908152f35b6001600160a01b031690565b600435906001600160a01b03821682036103e957565b602435906001600160a01b03821682036103e957565b604435906001600160a01b03821682036103e957565b346103e95760203660031901126103e9576001600160a01b036105306104cd565b165f526013602052602060405f2054604051908152f35b346103e95760203660031901126103e95760406001600160a01b0361056a6104cd565b165f90815260106020908152908290205482516001600160a01b038216815260a09190911c60ff16151591810191909152f35b346103e9575f3660031901126103e9576020600a54604051908152f35b346103e95760203660031901126103e9576105d36104cd565b60ff6002541680156105fe575b6105ef576105ed906121d3565b005b63d93c066560e01b5f5260045ffd5b5060048054602090610618906001600160a01b03166104c1565b6040516358c3de9360e11b815292839182905afa90811561066f575f91610640575b506105e0565b610662915060203d602011610668575b61065a8183612190565b8101906121b3565b5f61063a565b503d610650565b6121c8565b346103e95760203660031901126103e95761068d6104cd565b610695612ba2565b6001600160a01b038116908115610816576106af816131cc565b610807576008600d5410156107f85760405163313ce56760e01b8152602081600481865afa5f91816107d7575b506106f05763552b2fcd60e01b5f5260045ffd5b610702906106fd83610e26565b6122b2565b61070b8161232f565b60405163313ce56760e01b815290602082600481865afa90811561066f5761077c925f926107a2575b50610777906107546107446123ad565b60018152935b60ff166020850152565b5f60408401525f60608401524260808401525f60a08401525f60c0840152610e26565b6123bc565b7fe8a8fe2740576ea7353a02468cc63be9b391ca8f67842e6c10350ea8742e49b15f80a2005b6107779192506107c99060203d6020116107d0575b6107c18183612190565b810190612299565b9190610734565b503d6107b7565b6107f191925060203d6020116107d0576107c18183612190565b905f6106dc565b635024a38f60e01b5f5260045ffd5b63185add2960e11b5f5260045ffd5b63e6c4247b60e01b5f5260045ffd5b346103e95760203660031901126103e9576020610843600435612414565b604051908152f35b346103e95760403660031901126103e9576108646104cd565b60243590610870612b84565b61087981610e26565b906001600160a01b0361089461088e33610e3f565b546104c1565b1615610b11576108b76108b36108a933610e3f565b5460a01c60ff1690565b1590565b610b02576108c76108b3826131cc565b610af3578215610ae4576108d96131e9565b6040516370a0823160e01b81526001600160a01b0391909116926020828061090430600483016119f8565b0381875afa91821561066f575f92610abf575b50610924903033866133f3565b6040516370a0823160e01b8152916020838061094330600483016119f8565b0381875afa801561066f57610987610a16936005927ffecaab358bdc05070c1a3688285e1fcea6591abad3ac197a35c589f26ace38d4965f91610a90575b50612457565b916109a061099a825460ff9060081c1690565b8461342e565b60028201908154804210155f14610a55576109d36109d8916109e1935f91600388015490808210610a22575b50506124b9565b612464565b62093a80900490565b60018301555b6109f04261249b565b905542600382015501610a048282546124b9565b90556040519081529081906020820190565b0390a26105ed60015f55565b610a4d929350610a3f91610a3591612457565b6001890154612488565b670de0b6b3a7640000900490565b905f806109cc565b6109d8610a6a610a8992600387015490612457565b92610a84610a7e6001880195865490612488565b91612464565b6124b9565b90556109e7565b610ab2915060203d602011610ab8575b610aaa8183612190565b810190612426565b5f610981565b503d610aa0565b610924919250610add9060203d602011610ab857610aaa8183612190565b9190610917565b63162908e360e11b5f5260045ffd5b63c8a08d6f60e01b5f5260045ffd5b6330dbc71960e11b5f5260045ffd5b6312a3d7e760e31b5f5260045ffd5b346103e95760403660031901126103e9576020610843610b3e6104cd565b610b466104e3565b906124e4565b346103e95760203660031901126103e957600435610b68612b84565b6005544210610bcd578015610ae457610b7f612dbf565b610b88336140d7565b610b9133613b57565b610b9b813361343a565b6040519081527f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d560203392a260015f55005b6302455a9b60e11b5f5260045ffd5b346103e95760403660031901126103e9576105ed600435610bfb6104e3565b90610c0d610c0882612414565b612d88565b613638565b346103e95760403660031901126103e957600435610c2e6104e3565b336001600160a01b03821603610c47576105ed916137cd565b63334bd91960e11b5f5260045ffd5b801515036103e957565b346103e95760203660031901126103e9577f778c97e44d5672cf4e47c61c5d19aedece6e59debf5c9c9193f669cffe548c786020600435610ca081610c56565b610ca8612c10565b6014805460ff60a01b191691151560a090811b60ff60a01b169290921790819055604051911c60ff1615158152a1005b346103e95760403660031901126103e957610cf16104cd565b60243590610cfe82610c56565b610d06612ba2565b8115610d4857610d4381610d275f5160206142ff5f395f51905f5293613891565b60405193151584526001600160a01b0316929081906020820190565b0390a2005b6001600160a01b03610d5c61088e83610e3f565b1615610b11575f610d6c82610e3f565b556001600160a01b038116905f5b600f5480821015610e0b5783610da4610d92846122dc565b90546001600160a01b039291906115d2565b1614610db35750600101610d7a565b5f5160206142ff5f395f51905f529350610d439291610def610de9610de2610ddd610df595612449565b6122dc565b90546115d2565b916122dc565b9061230c565b610dfd61382a565b610e0642601155565b610d27565b50505f5160206142ff5f395f51905f529150610d4390610dfd565b6001600160a01b03165f90815260126020526040902090565b6001600160a01b03165f90815260106020526040902090565b6001600160a01b03165f90815260136020526040902090565b6001600160a01b03165f908152600e6020526040902090565b9060018060a01b03165f5260205260405f2090565b346103e95760203660031901126103e9576001600160a01b03610ec06104cd565b165f52601260205260405f20805461042360018301549260028101549060038101546005600483015492015492604051968660ff808a9960081c1691168893909796959260ff60c0969360e087019a1515875216602086015260408501526060840152608083015260a08201520152565b346103e9575f3660031901126103e957602060ff60145460a01c166040519015158152f35b346103e9575f3660031901126103e957602060ff600254166040519015158152f35b346103e9575f3660031901126103e95760206040515f51602061429f5f395f51905f528152f35b346103e95760403660031901126103e95760206003610fe1610fbf6104cd565b6001600160a01b03610fcf6104e3565b165f52601384528260405f2001610e8a565b0154604051908152f35b346103e9575f3660031901126103e957611003612b84565b60ff600254168015611038575b6105ef5761042361101f612543565b61102860015f55565b6040519081529081906020820190565b5060048054602090611052906001600160a01b03166104c1565b6040516358c3de9360e11b815292839182905afa90811561066f575f9161107a575b50611010565b611093915060203d6020116106685761065a8183612190565b5f611074565b346103e95760203660031901126103e9576001600160a01b036110ba6104cd565b165f5260136020526020600160405f200154604051908152f35b346103e95760203660031901126103e9577f7bee376135eb903bead0fd2a4c16c13bd1b51125d0cd3016c9c40137f8bfb0496020600435611113612c10565b80600355604051908152a1005b346103e95760203660031901126103e9576001600160a01b036111416104cd565b165f526013602052606060405f20805490600260018201549101549060405192835260208301526040820152f35b346103e95760403660031901126103e9576111886104cd565b6111906104e3565b9060018060a01b0382165f52601360205260026111c18260036111b78260405f2097613938565b9791505001610e8a565b0154918201809211611201576001600160a01b03165f908152600e602052604090205461042391611028916111fb9060081c60ff16613a11565b906124c6565b612435565b346103e95760203660031901126103e9576001600160a01b036112276104cd565b165f52600e602052602061084360ff60405f205460081c16613a11565b346103e95760203660031901126103e95761125d6104cd565b611265612c10565b6001600160a01b03811690811561081657600b546112a89190611290906001600160a01b031661369d565b50600b80546001600160a01b03191684179055613504565b50426011557fc25467daddca749c7ea27c70132640189f3c1a2ec9f10083dcf248cee139d34c5f80a2005b346103e95760403660031901126103e9576104236110286112f26104cd565b61137d6112fd6104e3565b61130683610e26565b805460081c60ff169360028201548042115f146113f657915b60048101549260038201548082115f146113ed5761133c91612457565b905b811515806113e2575b6113b1575b505061136390600461135d85610e58565b01610e8a565b905f92825490818311611382575b505050600101546124b9565b613a47565b6001939450916113a2610a3f9261139b6113a895610e58565b5492612457565b90612488565b91905f80611371565b926113d46113cb6113da9360016113639697015490612488565b600954906124c6565b906124b9565b91905f61134c565b506009541515611347565b50505f9061133e565b50429161131f565b346103e9575f3660031901126103e9576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b90602080835192838152019201905f5b81811061145f5750505090565b82516001600160a01b0316845260209384019390920191600101611452565b90602061148f928181520190611442565b90565b346103e9575f3660031901126103e957604051600f80548083525f91825260208301915f51602061437f5f395f51905f5291905b8181106114e957610423856114dd81870382612190565b6040519182918261147e565b82546001600160a01b03168452602090930192600192830192016114c6565b346103e95760403660031901126103e957602060ff61153b60043561152b6104e3565b905f526001845260405f20610e8a565b54166040519015158152f35b346103e95760203660031901126103e9576115606104cd565b611568612ba2565b6001600160a01b038116908115610816576004546001600160a01b0316906115ab9061159383613735565b50600480546001600160a01b0319168517905561359e565b507f1c87e2bbc4e5fa5d7f6f8c44d66cb241dff224b8602eb5435ca2076d2a5c6fc25f80a3005b60039190911b1c6001600160a01b031690565b346103e9575f3660031901126103e9576004546040516001600160a01b039091168152602090f35b346103e95760203660031901126103e95760043561162a81610c56565b611632612c64565b80156116825760025460ff166116735761166e5f51602061421f5f395f51905f529161165c613a53565b60405190151581529081906020820190565b0390a1005b631785c68160e01b5f5260045ffd5b60025460ff8116156116d7575f51602061421f5f395f51905f529161166e9160ff19166002557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a161165c565b636cd6020160e01b5f5260045ffd5b346103e9575f3660031901126103e95760206040515f8152f35b346103e9575f3660031901126103e9576020600954604051908152f35b346103e95760203660031901126103e957600435611739612b84565b60ff60025416801561175c575b6105ef57611753906125bc565b6105ed60015f55565b5060048054602090611776906001600160a01b03166104c1565b6040516358c3de9360e11b815292839182905afa90811561066f575f9161179e575b50611746565b6117b7915060203d6020116106685761065a8183612190565b5f611798565b346103e9575f3660031901126103e957604051600d80548083525f91825260208301915f51602061427f5f395f51905f5291905b81811061180857610423856114dd81870382612190565b82546001600160a01b03168452602090930192600192830192016117f1565b346103e9575f3660031901126103e95761183f612b84565b60ff60025416801561185b575b6105ef5761042361101f61268f565b5060048054602090611875906001600160a01b03166104c1565b6040516358c3de9360e11b815292839182905afa90811561066f575f9161189d575b5061184c565b6118b6915060203d6020116106685761065a8183612190565b5f611897565b346103e9575f3660031901126103e9576020600654604051908152f35b346103e9575f3660031901126103e95760ff600254168015611902575b6105ef576105ed61272b565b506004805460209061191c906001600160a01b03166104c1565b6040516358c3de9360e11b815292839182905afa90811561066f575f91611944575b506118f6565b61195d915060203d6020116106685761065a8183612190565b5f61193e565b346103e9575f3660031901126103e957600d5480600101806001116112015761198b906127a2565b9060018060a01b03600c54168251156119f35760208301525f5b8181106119ba5760405180610423858261147e565b806119ed6119cc610de26001946122f4565b6119de6119d8846124ab565b876127d4565b6001600160a01b039091169052565b016119a5565b6122c8565b6001600160a01b03909116815260200190565b346103e95760603660031901126103e957611a246104cd565b60243590611a306104f9565b6005544210610bcd57611a41612cbf565b60ff600254168015611a5f575b6105ef5761042392611028926127e8565b5060048054602090611a79906001600160a01b03166104c1565b6040516358c3de9360e11b815292839182905afa90811561066f575f91611aa1575b50611a4e565b611aba915060203d6020116106685761065a8183612190565b5f611a9b565b346103e95760203660031901126103e957611ad96104cd565b60018060a01b0381165f5260136020526004611afa60405f20548093613e7d565b815460405163315865df60e01b81529260209184919082906001600160a01b03165afa90811561066f5761042393611028935f93611b39575b50613f41565b611b5391935060203d602011610ab857610aaa8183612190565b915f611b33565b346103e95760203660031901126103e957611b736104cd565b60ff600254168015611b90575b6105ef5761102861042391612a23565b5060048054602090611baa906001600160a01b03166104c1565b6040516358c3de9360e11b815292839182905afa90811561066f575f91611bd2575b50611b80565b611beb915060203d6020116106685761065a8183612190565b5f611bcc565b346103e9575f3660031901126103e957602060405160088152f35b346103e95760403660031901126103e9576105ed600435611c2b6104e3565b90611c38610c0882612414565b6137cd565b346103e9575f3660031901126103e95760206040516224ea008152f35b346103e95760203660031901126103e957611c736104cd565b5f60c0604051611c828161213a565b8281528260208201528260408201528260608201528260808201528260a0820152015260018060a01b03165f52600e60205261042360405f20600560405191611cca8361213a565b805460ff80821615158552611ce29160081c1661074a565b600181015460408401526002810154606084015260038101546080840152600481015460a0840152015460c08201526040519182918291909160c08060e083019480511515845260ff602082015116602085015260408101516040850152606081015160608501526080810151608085015260a081015160a08501520151910152565b346103e95760403660031901126103e957610423611dcd611d846104cd565b611d8c6104e3565b5f6080604051611d9b8161215a565b828152826020820152826040820152826060820152015260018060a01b03165f526013602052600360405f2001610e8a565b600460405191611ddc8361215a565b80548352600181015460208401526002810154604084015260038101546060840152015460808201526040519182918291909160808060a0830194805184526020810151602085015260408101516040850152606081015160608501520151910152565b346103e9575f3660031901126103e95760206040515f51602061431f5f395f51905f528152f35b90611e7a90604083526040830190611442565b906020818303910152602080835192838152019201905f5b818110611e9f5750505090565b8251845260209384019390920191600101611e92565b346103e95760203660031901126103e957611ece6104cd565b600d54611eda816127a2565b90611ee4816127a2565b925f5b828110611f005750505061042360405192839283611e67565b80611f1d611f13610de2611f6a946122f4565b6119de83886127d4565b602083611f3a611f2d84896127d4565b516001600160a01b031690565b60405163088327d560e41b81526001600160a01b0391821660048201529116602482015292839081906044820190565b0381305afa801561066f576001925f91611f91575b50611f8a82886127d4565b5201611ee7565b611fa9915060203d8111610ab857610aaa8183612190565b5f611f7f565b346103e9575f3660031901126103e9576014546040516001600160a01b039091168152602090f35b346103e9575f3660031901126103e95760206040515f51602061423f5f395f51905f528152f35b346103e95760203660031901126103e9576120176104cd565b60ff600254168015612031575b6105ef576105ed90612aae565b506004805460209061204b906001600160a01b03166104c1565b6040516358c3de9360e11b815292839182905afa90811561066f575f91612073575b50612024565b61208c915060203d6020116106685761065a8183612190565b5f61206d565b346103e9575f3660031901126103e957602060405162093a808152f35b346103e9575f3660031901126103e957600554600654600754600854600954600a54600b54600c5460115460408051998a5260208a0198909852968801959095526001600160a01b039384166060880152608087019290925260a0860152811660c08501521660e083015261010082015261012090f35b634e487b7160e01b5f52604160045260245ffd5b60e081019081106001600160401b0382111761215557604052565b612126565b60a081019081106001600160401b0382111761215557604052565b608081019081106001600160401b0382111761215557604052565b601f909101601f19168101906001600160401b0382119082101761215557604052565b908160209103126103e9575161148f81610c56565b6040513d5f823e3d90fd5b6121db612b84565b6005544210610bcd576121ec612d2d565b6001600160a01b0381161561081657612203612dbf565b6122166122116004546104c1565b6104c1565b9060206040518093631ddb007160e21b8252818061223730600483016119f8565b03915afa801561066f57612260925f9161227a575b5061226c575b61225b8161309f565b6130b1565b5061226a60015f55565b565b612274612ebb565b50612252565b612293915060203d6020116106685761065a8183612190565b5f61224c565b908160209103126103e9575160ff811681036103e95790565b9061ff0082549160081b169061ff001916179055565b634e487b7160e01b5f52603260045260245ffd5b600f548110156119f357600f5f5260205f2001905f90565b600d548110156119f357600d5f5260205f2001905f90565b80546001600160a01b0360039390931b83811b199091169290931690921b179055565b600d5490600160401b8210156121555760018201600d55600d548210156119f357600d5f90815261226a925f51602061427f5f395f51905f520161230c565b600f5490600160401b8210156121555760018201600f55600f548210156119f357600f5f90815261226a925f51602061437f5f395f51905f520161230c565b6040519061226a60e083612190565b9060c06005918051151560ff8019865416911515161784556123e560ff602083015116856122b2565b60408101516001850155606081015160028501556080810151600385015560a081015160048501550151910155565b5f526001602052600160405f20015490565b908160209103126103e9575190565b634e487b7160e01b5f52601160045260245ffd5b5f1981019190821161120157565b9190820391821161120157565b90670de0b6b3a7640000820291808304670de0b6b3a7640000149015171561120157565b8181029291811591840414171561120157565b9062093a80820180921161120157565b906001820180921161120157565b9190820180921161120157565b81156124d0570490565b634e487b7160e01b5f52601260045260245ffd5b6124ed816131cc565b15610816576125119160018060a01b03165f526013602052600460405f2001610e8a565b60405161251d81612175565b815481526001820154602082015260606003600284015493846040850152015491015290565b6005544210610bcd57612554612dbf565b61255c612ebb565b600b546040517f025f2adac97e780ff094c6f4f9a98558f1b779380df0ffc917c03374b88fa7b091819061259b9085906001600160a01b0316836125a1565b0390a190565b6001600160a01b039091168152602081019190915260400190565b6005544210610bcd578015610ae4576125d96122116004546104c1565b60206040518092631ddb007160e21b825281806125f930600483016119f8565b03915afa90811561066f575f91612670575b501561266157612619612dbf565b6126223361309f565b61262c81336134ac565b60405190815233907f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d9080602081015b0390a2565b63d4220bed60e01b5f5260045ffd5b612689915060203d6020116106685761065a8183612190565b5f61260b565b6005544210610bcd576126a0612dbf565b60018060a01b036004541660206040518092631ddb007160e21b825281806126cb30600483016119f8565b03915afa90811561066f575f9161270c575b506126fe575b6126ec33613a95565b6126f533613b57565b61148f336130b1565b612706612ebb565b506126e3565b612725915060203d6020116106685761065a8183612190565b5f6126dd565b612733612b84565b6005544210610bcd57612745336132ad565b5f5b600d5481101561278457600d5f525f51602061427f5f395f51905f528101546001919061277d906001600160a01b031633613c24565b5001612747565b5060015f55565b6001600160401b0381116121555760051b60200190565b906127ac8261278b565b6127b96040519182612190565b82815280926127ca601f199161278b565b0190602036910137565b80518210156119f35760209160051b010190565b90918215610ae4576001600160a01b0381169182156108165761280f612211600c546104c1565b6001600160a01b0382169290830361295257612829612dbf565b61283233613a95565b61284182600361135d33610e58565b600281019586549661287061286a61286561285b88610e71565b5460081c60ff1690565b613a11565b896124c6565b926040516370a0823160e01b81526020818061288f30600483016119f8565b03818b5afa91821561066f576128df926003925f91612933575b508086111561292b57935b6128d4859c6128ce6128c861285b8d610e71565b8861342e565b90612457565b9055019182546124b9565b90556128ea33613b57565b11610ae4578490816128ff575b505050505090565b61290892613d2a565b6040518381525f51602061435f5f395f51905f5290602090a35f808083816128f7565b5084936128b4565b61294c915060203d602011610ab857610aaa8183612190565b5f6128a9565b61295b826131cc565b1561081657612969336132ad565b61297882600461135d33610e58565b61298461285b84610e26565b95600182018054906129968983613a47565b6040516370a0823160e01b81529094602082806129b630600483016119f8565b03818c5afa92831561066f576129f2936002935f91612a04575b50808711156129f9576128d490955b6128ce6129ec889f613a11565b88612488565b90556128ea565b506128d486956129df565b612a1d915060203d602011610ab857610aaa8183612190565b5f6129d0565b612a2b612b84565b6005544210610bcd57612a4790612a41336132ad565b33613c24565b9060015f55565b90604051612a5b8161213a565b60c060058294612a7f60ff82548181161515875260081c16602086019060ff169052565b600181015460408501526002810154606085015260038101546080850152600481015460a08501520154910152565b612ab6612b84565b6005544210610bcd576001600160a01b038116908115610816577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168214612b5257612b2390612b0c612dbf565b612b15816140d7565b612b1e81613b57565b6132ad565b7e745e876c45796ea32ef5ef1bcbf9cef81cfd16666c9364caa1cb8a6ddbd6766020604051428152a260015f55565b631c3df11960e11b5f5260045ffd5b82612b6e91949394612488565b8101809111611201579182018083116112015790565b60025f5414612b935760025f55565b633ee5aeb560e01b5f5260045ffd5b5f51602061431f5f395f51905f525f52600160205260ff612be3337fbb55feefbbeeb450791a2805b5c4f111914a5147fd3ab1f161e7773d871abcc3610e8a565b541615612bec57565b63e2517d3f60e01b5f52336004525f51602061431f5f395f51905f5260245260445ffd5b5f8052600160205260ff612c44337fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49610e8a565b541615612c4d57565b63e2517d3f60e01b5f52336004525f60245260445ffd5b5f51602061425f5f395f51905f525f52600160205260ff612c92335f51602061433f5f395f51905f52610e8a565b541615612c9b57565b63e2517d3f60e01b5f52336004525f51602061425f5f395f51905f5260245260445ffd5b5f51602061429f5f395f51905f525f52600160205260ff612d00337f016de9afd02c17cd0ae54c97293c2a2a0d799672f990d1e187070b9998197fdb610e8a565b541615612d0957565b63e2517d3f60e01b5f52336004525f51602061429f5f395f51905f5260245260445ffd5b5f51602061423f5f395f51905f525f52600160205260ff612d5b335f5160206142df5f395f51905f52610e8a565b541615612d6457565b63e2517d3f60e01b5f52336004525f51602061423f5f395f51905f5260245260445ffd5b805f52600160205260ff612d9f3360405f20610e8a565b541615612da95750565b63e2517d3f60e01b5f523360045260245260445ffd5b612dd160075460055460065491612b61565b809150421015612dde5750565b5f612df2612ded600c546104c1565b610e71565b91600183019081549081612e3f575b505055612e1c612e176005546006549042614016565b600755565b612e2542601155565b6003612e3960075460055460065491612b61565b50910155565b60038501548082118514612eb257612e5691612457565b905b8115612e0157600a5415158414612e8a5750612e8060028501918254908454600a5492613fc7565b90555b5f80612e01565b612e9c91612e9791613f6e565b613fa8565b612eab600585019182546124b9565b9055612e83565b50508290612e58565b612ecc612211612211600b546104c1565b602060405180926371f2f57b60e01b8252815f81612eed30600483016119f8565b03925af190811561066f575f91613080575b50801561307b57612f11600c546104c1565b612f1a81610e71565b90600a548015158061306e575b613021575b50600a54613016575b612f4d612f4761286561285b84610e71565b84612488565b6004612f5883614038565b935f612f6a60058301968754906124b9565b9555612fa9600754612f8460055491600654928391612b61565b90504281111561301057612f9a91504290612457565b612fa487866124b9565b6140b0565b600182015501612fba8582546124b9565b905582612fc8575b50505090565b6040805193845260208401919091526001600160a01b0391909116917f5710c657a345f3bf2b24aa91da64582691e7b10198bad5a0ecd2096b33bbe1619190a25f8080612fc2565b50612f9a565b426003830155612f35565b60038301548042115f14613066576130399042612457565b905b81613047575b50612f2c565b61305d9060028501928354600187015490613fc7565b90555f80613041565b505f9061303b565b5060018301541515612f27565b505f90565b613099915060203d602011610ab857610aaa8183612190565b5f612eff565b61226a906130ac816140d7565b613b57565b5f906130be600c546104c1565b906130ce82600361135d84610e58565b9160028301926130e884546111fb61286561285b86610e71565b91826130f657505050505090565b6040516370a0823160e01b815294955092936001600160a01b0384169391926020828061312630600483016119f8565b0381885afa91821561066f575f926131ab575b50818111156131a35750935b5f85965584156128f75761317c85826131969460035f51602061435f5f395f51905f5297016131758482546124b9565b9055613d2a565b6040519485526001600160a01b0316939081906020820190565b0390a35f808080806128f7565b905093613145565b6131c591925060203d602011610ab857610aaa8183612190565b905f613139565b6001600160a01b03165f9081526012602052604090205460ff1690565b5f5b600d548110156132aa578061320c613207610de26001946122f4565b610e26565b60028101548042115f146132a257905b60048101805491600381019283548086115f1461329b5761323d9086612457565b62093a808111613291575b8061325a575b505050505050016131eb565b60095480613269575b5061324e565b61327d6113d4928a61328296015490612488565b6124c6565b9055555f808080808080613263565b5062093a80613248565b505f61323d565b50429061321c565b50565b5f5b600d548110156133cd57806132c8610de26001936122f4565b6132d181610e26565b9060028201548042115f146133c6575b6004830190815493600381019081548084115f146133bf576133039084612457565b62093a8081116133b5575b8061337d575b5050505050838060a01b03851661332e575b5050016132af565b61333d90600461135d87610e58565b90815480821161334e575b50613326565b613369610a3f836113a2889461337396885561139b8b610e58565b92019182546124b9565b90555f8080613348565b600954918261338d575b50613314565b9161327d6113d4928b6133a69697989a95015490612488565b809455555f8080808080613387565b5062093a8061330e565b505f613303565b50426132e1565b5050565b6001600160a01b03918216815291166020820152604081019190915260600190565b906134299061341b61226a956040519586936323b872dd60e01b6020860152602485016133d1565b03601f198101845283612190565b6140ef565b6113a261148f92613a11565b61344381610e58565b61344c826132ad565b8054831161349d57600954838103908111611201576009558054928084039384116112015792905560085461226a9261348f9183906001600160a01b0316614147565b61349881613b57565b613a95565b6345a5c39960e11b5f5260045ffd5b6134b581610e58565b916134bf826132ad565b6008546134da908290309085906001600160a01b03166133f3565b6009548181018091116112015760095582549081018091116112015761226a925561349881613b57565b5f51602061423f5f395f51905f525f52600160205260ff613532825f5160206142df5f395f51905f52610e8a565b541661307b575f51602061423f5f395f51905f525f526001602052613564815f5160206142df5f395f51905f52610e8a565b805460ff1916600117905533906001600160a01b03165f51602061423f5f395f51905f525f5160206141ff5f395f51905f525f80a4600190565b5f51602061425f5f395f51905f525f52600160205260ff6135cc825f51602061433f5f395f51905f52610e8a565b541661307b575f51602061425f5f395f51905f525f5260016020526135fe815f51602061433f5f395f51905f52610e8a565b805460ff1916600117905533906001600160a01b03165f51602061425f5f395f51905f525f5160206141ff5f395f51905f525f80a4600190565b805f52600160205260ff61364f8360405f20610e8a565b541661369757805f52600160205261366a8260405f20610e8a565b805460ff1916600117905533916001600160a01b0316905f5160206141ff5f395f51905f525f80a4600190565b50505f90565b5f51602061423f5f395f51905f525f52600160205260ff6136cb825f5160206142df5f395f51905f52610e8a565b54161561307b575f51602061423f5f395f51905f525f5260016020526136fe815f5160206142df5f395f51905f52610e8a565b805460ff1916905533906001600160a01b03165f51602061423f5f395f51905f525f5160206142bf5f395f51905f525f80a4600190565b5f51602061425f5f395f51905f525f52600160205260ff613763825f51602061433f5f395f51905f52610e8a565b54161561307b575f51602061425f5f395f51905f525f526001602052613796815f51602061433f5f395f51905f52610e8a565b805460ff1916905533906001600160a01b03165f51602061425f5f395f51905f525f5160206142bf5f395f51905f525f80a4600190565b805f52600160205260ff6137e48360405f20610e8a565b54161561369757805f5260016020526138008260405f20610e8a565b805460ff1916905533916001600160a01b0316905f5160206142bf5f395f51905f525f80a4600190565b600f54801561387d575f19810190600f548210156119f357600f5f8190527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80190910180546001600160a01b031916905555565b634e487b7160e01b5f52603160045260245ffd5b6001600160a01b038181165f81815260106020526040902054909291166139295760408051908101926001600160401b03841182851017612155576139209360405281526001602082015260206138e783610e3f565b8251815492909301516001600160a81b03199092166001600160a01b03939093169290921790151560a01b60ff60a01b1617905561236e565b61226a42601155565b633d873e1f60e01b5f5260045ffd5b919061394b61394682610e71565b612a4e565b9261395e60075460055460065491612b61565b429150808211613a09575b50608085015180821115613a015761398091612457565b606085015194811515806139f6575b6139d5575b50509081846139ca60016139aa6139d196610e58565b015493600361135d60016139c2848461135d8a610e58565b015495610e58565b549261416e565b9091565b946139ed9160406139d19594970151600a5492613fc7565b9390915f613994565b50600a54151561398f565b50505f613980565b90505f613969565b60ff1680158015613a3d575b610af35760120360ff81116112015760ff16604d811161120157600a0a90565b5060128111613a1d565b6111fb61148f92613a11565b60025460ff81166105ef5760019060ff1916176002557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a1565b6001613aa082610e58565b01546001600160a01b038216156133cd57613abc600c546104c1565b90613adf613ac983610e71565b92613ad981600361135d88610e58565b94613938565b92909193846002820180548203613b22575b505050613b08575b50506001820155600442910155565b8355613b19600284019182546124b9565b90555f80613af9565b55613b3560075460055460065491612b61565b42929150808311613b4e575b50600301555f8481613af1565b91506003613b41565b600490613b6381610e58565b906001820190815492805493613b798584613e7d565b936020613b8961221189546104c1565b60405163315865df60e01b815298899182905afa95861561066f57613be17f3042bda52a74ddb3e9f32af4781d52bf053f705dba3c9e09f402f6fb9446474d9761265c97613bfa93613bf59b5f93611b395750613f41565b978893613bf085600a546124b9565b612457565b600a55565b55600242910155613c0a42601155565b6040519384526001600160a01b0316929081906020820190565b91905f92613c3782600461135d84610e58565b91613c4461285b82610e26565b92613c5460018201948554613a47565b9182613c62575b5050505050565b6040516370a0823160e01b815294965092936001600160a01b03841693919260208280613c9230600483016119f8565b0381885afa91821561066f575f92613d09575b5081811115613d015750935b5f8597558415613c5b5761317c8582613cf49460027ff378efe1103309c7c4ac2b55ac99569131ab2aa8aee6be174ea37474197bb35297016131758482546124b9565b0390a35f80808080613c5b565b905093613cb1565b613d2391925060203d602011610ab857610aaa8183612190565b905f613ca5565b91601454613d3a612211826104c1565b6001600160a01b039094169384149081613e4f575b81613e41575b5080613e35575b15613e2b5760405163095ea7b360e01b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316936020908290815f81613daf888b600484016125a1565b03925af1801561066f57613e0e575b50823b156103e957613de9925f9283604051809681958294630f29367d60e21b8452600484016125a1565b03925af1801561066f57613dfa5750565b80613e085f61226a93612190565b806103df565b613e269060203d6020116106685761065a8183612190565b613dbe565b9061226a92614147565b50600354811015613d5c565b60a01c60ff1690505f613d55565b9050613e5f612211600c546104c1565b841490613d4f565b91908260409103126103e9576020825192015190565b908015613697576040613eb591613e986122116004546104c1565b938251938492839263a85bde9d60e01b84523090600485016133d1565b0381855afa5f9181613f0f575b50613f0a5750602060049160405192838092630a7486c760e01b82525afa90811561066f575f91613ef1575090565b61148f915060203d602011610ab857610aaa8183612190565b905090565b613f3291925060403d604011613f3a575b613f2a8183612190565b810190613e67565b50905f613ec2565b503d613f20565b9291908315613f67579061327d613f589285612488565b91808311613f635750565b9150565b505f925050565b8115676765c793fa10079d601a1b1983900482111517156103e957676765c793fa10079d601b1b9102676765c793fa10079d601a1b010490565b90631dcd6500633b9aca0080840493061015613fc057565b9060010190565b9290918115801561400e575b8015614006575b612fc257613fee613ff491613ffa94613f6e565b916141b7565b906141ce565b81018091116112015790565b508015613fda565b508215613fd3565b91908083106140315782039182116112015761148f916124c6565b5050505f90565b6001600160a01b03165f908152600e60205260409020600181015480156140a557600361406d60075460055460065491612b61565b9390500190828254101561409c57815483039283116112015761148f9261409391613f6e565b90429055613fa8565b50429055505f90565b506003429101555f90565b90801580156140cf575b613697576140ca61148f926141b7565b6141ce565b5081156140ba565b6001600160a01b038116156132aa5761226a90613a95565b905f602091828151910182855af1156121c8575f513d61413e57506001600160a01b0381163b155b61411e5750565b635274afe760e01b5f9081526001600160a01b0391909116600452602490fd5b60011415614117565b61342961226a939261341b60405194859263a9059cbb60e01b6020850152602484016125a1565b9091939293811580156141ad575b6140315782039182116112015761419e91614199612e97926141b7565b613f6e565b91828101809111611201579190565b508083111561417c565b90633b9aca00820291633b9aca008304036103e957565b600182901c908215676765c793fa10079d601b1b8319048211176103e957676765c793fa10079d601b1b0201049056fe2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0ded1f3e12429ce88e77b14ddf9c2eb89f0b9e1e0faa7e33a95d0ce1bbc90a1c2ffbd454f36a7e1a388bd6fc3ab10d434aa4578f811acbbcf33afb1c697486313c7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c570223357d7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb524927c918ee933e498c4f4704c8c8c5997712350624a2ab5df3edca55f9ac033f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b210932760c18fe8bc12f9d1bd245c25c0f21fa2541f289eb5b159588ce1f7b3f19e1fee2e38695e60ad3ef8c81759c22d6d7ee56f9b8805363820a50da468a18fda1ae526c1fb38407f23e8b7712f7cfacc146f3e340a04221488331e0d42014c3eac9ead20d697480ab489ced881761c627fd3281937449e4d4d7fbf9faa2cd4634ecdf654a6f266749291b25bdd00963ec5fe7262fb458f390d94b670558ee8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802a264697066735822122029fe4d8cde4fd78d01a75204481aa3fd5429c2b575f018b57c1c7d27bdfd314b64736f6c634300081e00332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0da6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49210932760c18fe8bc12f9d1bd245c25c0f21fa2541f289eb5b159588ce1f7b3fc3eac9ead20d697480ab489ced881761c627fd3281937449e4d4d7fbf9faa2cdbb55feefbbeeb450791a2805b5c4f111914a5147fd3ab1f161e7773d871abcc3016de9afd02c17cd0ae54c97293c2a2a0d799672f990d1e187070b9998197fdb";
|
|
18
18
|
static readonly abi: readonly [{
|
|
19
19
|
readonly inputs: readonly [{
|
|
20
20
|
readonly internalType: "address";
|
|
@@ -32,6 +32,14 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
32
32
|
readonly internalType: "address";
|
|
33
33
|
readonly name: "_raacToken";
|
|
34
34
|
readonly type: "address";
|
|
35
|
+
}, {
|
|
36
|
+
readonly internalType: "address";
|
|
37
|
+
readonly name: "_rewardToken";
|
|
38
|
+
readonly type: "address";
|
|
39
|
+
}, {
|
|
40
|
+
readonly internalType: "address";
|
|
41
|
+
readonly name: "_rewardDistributor";
|
|
42
|
+
readonly type: "address";
|
|
35
43
|
}];
|
|
36
44
|
readonly stateMutability: "nonpayable";
|
|
37
45
|
readonly type: "constructor";
|
|
@@ -63,6 +71,10 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
63
71
|
readonly inputs: readonly [];
|
|
64
72
|
readonly name: "DistributorNotAdded";
|
|
65
73
|
readonly type: "error";
|
|
74
|
+
}, {
|
|
75
|
+
readonly inputs: readonly [];
|
|
76
|
+
readonly name: "DistributorNotApproved";
|
|
77
|
+
readonly type: "error";
|
|
66
78
|
}, {
|
|
67
79
|
readonly inputs: readonly [];
|
|
68
80
|
readonly name: "EnforcedPause";
|
|
@@ -103,6 +115,10 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
103
115
|
readonly inputs: readonly [];
|
|
104
116
|
readonly name: "MaxExtraRewardsReached";
|
|
105
117
|
readonly type: "error";
|
|
118
|
+
}, {
|
|
119
|
+
readonly inputs: readonly [];
|
|
120
|
+
readonly name: "NotKickable";
|
|
121
|
+
readonly type: "error";
|
|
106
122
|
}, {
|
|
107
123
|
readonly inputs: readonly [];
|
|
108
124
|
readonly name: "NotPaused";
|
|
@@ -127,6 +143,21 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
127
143
|
readonly inputs: readonly [];
|
|
128
144
|
readonly name: "TokenAlreadyInitialized";
|
|
129
145
|
readonly type: "error";
|
|
146
|
+
}, {
|
|
147
|
+
readonly anonymous: false;
|
|
148
|
+
readonly inputs: readonly [{
|
|
149
|
+
readonly indexed: true;
|
|
150
|
+
readonly internalType: "address";
|
|
151
|
+
readonly name: "oldController";
|
|
152
|
+
readonly type: "address";
|
|
153
|
+
}, {
|
|
154
|
+
readonly indexed: true;
|
|
155
|
+
readonly internalType: "address";
|
|
156
|
+
readonly name: "newController";
|
|
157
|
+
readonly type: "address";
|
|
158
|
+
}];
|
|
159
|
+
readonly name: "ControllerUpdated";
|
|
160
|
+
readonly type: "event";
|
|
130
161
|
}, {
|
|
131
162
|
readonly anonymous: false;
|
|
132
163
|
readonly inputs: readonly [{
|
|
@@ -219,13 +250,18 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
219
250
|
readonly internalType: "address";
|
|
220
251
|
readonly name: "token";
|
|
221
252
|
readonly type: "address";
|
|
222
|
-
}
|
|
223
|
-
|
|
253
|
+
}];
|
|
254
|
+
readonly name: "ExtraRewardTokenAdded";
|
|
255
|
+
readonly type: "event";
|
|
256
|
+
}, {
|
|
257
|
+
readonly anonymous: false;
|
|
258
|
+
readonly inputs: readonly [{
|
|
259
|
+
readonly indexed: true;
|
|
224
260
|
readonly internalType: "address";
|
|
225
|
-
readonly name: "
|
|
261
|
+
readonly name: "rewardDistributor";
|
|
226
262
|
readonly type: "address";
|
|
227
263
|
}];
|
|
228
|
-
readonly name: "
|
|
264
|
+
readonly name: "GaugeRewardDistributorUpdated";
|
|
229
265
|
readonly type: "event";
|
|
230
266
|
}, {
|
|
231
267
|
readonly anonymous: false;
|
|
@@ -257,6 +293,16 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
257
293
|
}];
|
|
258
294
|
readonly name: "Paused";
|
|
259
295
|
readonly type: "event";
|
|
296
|
+
}, {
|
|
297
|
+
readonly anonymous: false;
|
|
298
|
+
readonly inputs: readonly [{
|
|
299
|
+
readonly indexed: false;
|
|
300
|
+
readonly internalType: "uint256";
|
|
301
|
+
readonly name: "newRaacAutolockMin";
|
|
302
|
+
readonly type: "uint256";
|
|
303
|
+
}];
|
|
304
|
+
readonly name: "RaacAutolockMinUpdated";
|
|
305
|
+
readonly type: "event";
|
|
260
306
|
}, {
|
|
261
307
|
readonly anonymous: false;
|
|
262
308
|
readonly inputs: readonly [{
|
|
@@ -292,12 +338,12 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
292
338
|
readonly inputs: readonly [{
|
|
293
339
|
readonly indexed: true;
|
|
294
340
|
readonly internalType: "address";
|
|
295
|
-
readonly name: "
|
|
341
|
+
readonly name: "token";
|
|
296
342
|
readonly type: "address";
|
|
297
343
|
}, {
|
|
298
344
|
readonly indexed: true;
|
|
299
345
|
readonly internalType: "address";
|
|
300
|
-
readonly name: "
|
|
346
|
+
readonly name: "user";
|
|
301
347
|
readonly type: "address";
|
|
302
348
|
}, {
|
|
303
349
|
readonly indexed: false;
|
|
@@ -307,6 +353,21 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
307
353
|
}];
|
|
308
354
|
readonly name: "RewardTransferred";
|
|
309
355
|
readonly type: "event";
|
|
356
|
+
}, {
|
|
357
|
+
readonly anonymous: false;
|
|
358
|
+
readonly inputs: readonly [{
|
|
359
|
+
readonly indexed: false;
|
|
360
|
+
readonly internalType: "address";
|
|
361
|
+
readonly name: "distributor";
|
|
362
|
+
readonly type: "address";
|
|
363
|
+
}, {
|
|
364
|
+
readonly indexed: false;
|
|
365
|
+
readonly internalType: "uint256";
|
|
366
|
+
readonly name: "transferred";
|
|
367
|
+
readonly type: "uint256";
|
|
368
|
+
}];
|
|
369
|
+
readonly name: "RewardsPulledFromDistributor";
|
|
370
|
+
readonly type: "event";
|
|
310
371
|
}, {
|
|
311
372
|
readonly anonymous: false;
|
|
312
373
|
readonly inputs: readonly [{
|
|
@@ -469,7 +530,17 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
469
530
|
readonly type: "function";
|
|
470
531
|
}, {
|
|
471
532
|
readonly inputs: readonly [];
|
|
472
|
-
readonly name: "
|
|
533
|
+
readonly name: "DISTRIBUTOR_ROLE";
|
|
534
|
+
readonly outputs: readonly [{
|
|
535
|
+
readonly internalType: "bytes32";
|
|
536
|
+
readonly name: "";
|
|
537
|
+
readonly type: "bytes32";
|
|
538
|
+
}];
|
|
539
|
+
readonly stateMutability: "view";
|
|
540
|
+
readonly type: "function";
|
|
541
|
+
}, {
|
|
542
|
+
readonly inputs: readonly [];
|
|
543
|
+
readonly name: "GAUGE_ADMIN";
|
|
473
544
|
readonly outputs: readonly [{
|
|
474
545
|
readonly internalType: "bytes32";
|
|
475
546
|
readonly name: "";
|
|
@@ -512,33 +583,11 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
512
583
|
readonly internalType: "address";
|
|
513
584
|
readonly name: "token";
|
|
514
585
|
readonly type: "address";
|
|
515
|
-
}, {
|
|
516
|
-
readonly internalType: "address";
|
|
517
|
-
readonly name: "distributor";
|
|
518
|
-
readonly type: "address";
|
|
519
586
|
}];
|
|
520
587
|
readonly name: "addRewardToken";
|
|
521
588
|
readonly outputs: readonly [];
|
|
522
589
|
readonly stateMutability: "nonpayable";
|
|
523
590
|
readonly type: "function";
|
|
524
|
-
}, {
|
|
525
|
-
readonly inputs: readonly [{
|
|
526
|
-
readonly internalType: "address";
|
|
527
|
-
readonly name: "account";
|
|
528
|
-
readonly type: "address";
|
|
529
|
-
}];
|
|
530
|
-
readonly name: "allEarnedRewards";
|
|
531
|
-
readonly outputs: readonly [{
|
|
532
|
-
readonly internalType: "address[]";
|
|
533
|
-
readonly name: "";
|
|
534
|
-
readonly type: "address[]";
|
|
535
|
-
}, {
|
|
536
|
-
readonly internalType: "uint256[]";
|
|
537
|
-
readonly name: "";
|
|
538
|
-
readonly type: "uint256[]";
|
|
539
|
-
}];
|
|
540
|
-
readonly stateMutability: "view";
|
|
541
|
-
readonly type: "function";
|
|
542
591
|
}, {
|
|
543
592
|
readonly inputs: readonly [{
|
|
544
593
|
readonly internalType: "address";
|
|
@@ -557,24 +606,6 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
557
606
|
}];
|
|
558
607
|
readonly stateMutability: "view";
|
|
559
608
|
readonly type: "function";
|
|
560
|
-
}, {
|
|
561
|
-
readonly inputs: readonly [{
|
|
562
|
-
readonly internalType: "address";
|
|
563
|
-
readonly name: "account";
|
|
564
|
-
readonly type: "address";
|
|
565
|
-
}];
|
|
566
|
-
readonly name: "allPendingRewards";
|
|
567
|
-
readonly outputs: readonly [{
|
|
568
|
-
readonly internalType: "address[]";
|
|
569
|
-
readonly name: "";
|
|
570
|
-
readonly type: "address[]";
|
|
571
|
-
}, {
|
|
572
|
-
readonly internalType: "uint256[]";
|
|
573
|
-
readonly name: "";
|
|
574
|
-
readonly type: "uint256[]";
|
|
575
|
-
}];
|
|
576
|
-
readonly stateMutability: "view";
|
|
577
|
-
readonly type: "function";
|
|
578
609
|
}, {
|
|
579
610
|
readonly inputs: readonly [{
|
|
580
611
|
readonly internalType: "address";
|
|
@@ -632,11 +663,7 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
632
663
|
readonly stateMutability: "nonpayable";
|
|
633
664
|
readonly type: "function";
|
|
634
665
|
}, {
|
|
635
|
-
readonly inputs: readonly [
|
|
636
|
-
readonly internalType: "address";
|
|
637
|
-
readonly name: "token";
|
|
638
|
-
readonly type: "address";
|
|
639
|
-
}];
|
|
666
|
+
readonly inputs: readonly [];
|
|
640
667
|
readonly name: "claimRewardToken";
|
|
641
668
|
readonly outputs: readonly [{
|
|
642
669
|
readonly internalType: "uint256";
|
|
@@ -645,12 +672,6 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
645
672
|
}];
|
|
646
673
|
readonly stateMutability: "nonpayable";
|
|
647
674
|
readonly type: "function";
|
|
648
|
-
}, {
|
|
649
|
-
readonly inputs: readonly [];
|
|
650
|
-
readonly name: "claimRewards";
|
|
651
|
-
readonly outputs: readonly [];
|
|
652
|
-
readonly stateMutability: "nonpayable";
|
|
653
|
-
readonly type: "function";
|
|
654
675
|
}, {
|
|
655
676
|
readonly inputs: readonly [{
|
|
656
677
|
readonly internalType: "address";
|
|
@@ -695,7 +716,7 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
695
716
|
readonly name: "user";
|
|
696
717
|
readonly type: "address";
|
|
697
718
|
}];
|
|
698
|
-
readonly name: "
|
|
719
|
+
readonly name: "earnedExtraReward";
|
|
699
720
|
readonly outputs: readonly [{
|
|
700
721
|
readonly internalType: "uint256";
|
|
701
722
|
readonly name: "";
|
|
@@ -709,13 +730,17 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
709
730
|
readonly name: "token";
|
|
710
731
|
readonly type: "address";
|
|
711
732
|
}, {
|
|
733
|
+
readonly internalType: "address";
|
|
734
|
+
readonly name: "user";
|
|
735
|
+
readonly type: "address";
|
|
736
|
+
}];
|
|
737
|
+
readonly name: "earnedReward";
|
|
738
|
+
readonly outputs: readonly [{
|
|
712
739
|
readonly internalType: "uint256";
|
|
713
|
-
readonly name: "
|
|
740
|
+
readonly name: "";
|
|
714
741
|
readonly type: "uint256";
|
|
715
742
|
}];
|
|
716
|
-
readonly
|
|
717
|
-
readonly outputs: readonly [];
|
|
718
|
-
readonly stateMutability: "nonpayable";
|
|
743
|
+
readonly stateMutability: "view";
|
|
719
744
|
readonly type: "function";
|
|
720
745
|
}, {
|
|
721
746
|
readonly inputs: readonly [{
|
|
@@ -736,10 +761,6 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
736
761
|
readonly internalType: "uint256";
|
|
737
762
|
readonly name: "rate";
|
|
738
763
|
readonly type: "uint256";
|
|
739
|
-
}, {
|
|
740
|
-
readonly internalType: "address";
|
|
741
|
-
readonly name: "distributor";
|
|
742
|
-
readonly type: "address";
|
|
743
764
|
}, {
|
|
744
765
|
readonly internalType: "uint256";
|
|
745
766
|
readonly name: "periodFinish";
|
|
@@ -796,6 +817,14 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
796
817
|
readonly internalType: "uint256";
|
|
797
818
|
readonly name: "workingSupply";
|
|
798
819
|
readonly type: "uint256";
|
|
820
|
+
}, {
|
|
821
|
+
readonly internalType: "address";
|
|
822
|
+
readonly name: "rewardDistributor";
|
|
823
|
+
readonly type: "address";
|
|
824
|
+
}, {
|
|
825
|
+
readonly internalType: "address";
|
|
826
|
+
readonly name: "rewardToken";
|
|
827
|
+
readonly type: "address";
|
|
799
828
|
}, {
|
|
800
829
|
readonly internalType: "uint256";
|
|
801
830
|
readonly name: "lastUpdateTime";
|
|
@@ -827,6 +856,24 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
827
856
|
}];
|
|
828
857
|
readonly stateMutability: "view";
|
|
829
858
|
readonly type: "function";
|
|
859
|
+
}, {
|
|
860
|
+
readonly inputs: readonly [{
|
|
861
|
+
readonly internalType: "address";
|
|
862
|
+
readonly name: "distributor";
|
|
863
|
+
readonly type: "address";
|
|
864
|
+
}];
|
|
865
|
+
readonly name: "getDistributorData";
|
|
866
|
+
readonly outputs: readonly [{
|
|
867
|
+
readonly internalType: "address";
|
|
868
|
+
readonly name: "distro";
|
|
869
|
+
readonly type: "address";
|
|
870
|
+
}, {
|
|
871
|
+
readonly internalType: "bool";
|
|
872
|
+
readonly name: "approved";
|
|
873
|
+
readonly type: "bool";
|
|
874
|
+
}];
|
|
875
|
+
readonly stateMutability: "view";
|
|
876
|
+
readonly type: "function";
|
|
830
877
|
}, {
|
|
831
878
|
readonly inputs: readonly [];
|
|
832
879
|
readonly name: "getDistributors";
|
|
@@ -837,6 +884,16 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
837
884
|
}];
|
|
838
885
|
readonly stateMutability: "view";
|
|
839
886
|
readonly type: "function";
|
|
887
|
+
}, {
|
|
888
|
+
readonly inputs: readonly [];
|
|
889
|
+
readonly name: "getExtraRewardTokens";
|
|
890
|
+
readonly outputs: readonly [{
|
|
891
|
+
readonly internalType: "address[]";
|
|
892
|
+
readonly name: "";
|
|
893
|
+
readonly type: "address[]";
|
|
894
|
+
}];
|
|
895
|
+
readonly stateMutability: "view";
|
|
896
|
+
readonly type: "function";
|
|
840
897
|
}, {
|
|
841
898
|
readonly inputs: readonly [{
|
|
842
899
|
readonly internalType: "address";
|
|
@@ -1004,18 +1061,14 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
1004
1061
|
readonly stateMutability: "view";
|
|
1005
1062
|
readonly type: "function";
|
|
1006
1063
|
}, {
|
|
1007
|
-
readonly inputs: readonly [
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
readonly
|
|
1011
|
-
|
|
1012
|
-
readonly
|
|
1013
|
-
readonly name: "distributor";
|
|
1014
|
-
readonly type: "address";
|
|
1064
|
+
readonly inputs: readonly [];
|
|
1065
|
+
readonly name: "isPaused";
|
|
1066
|
+
readonly outputs: readonly [{
|
|
1067
|
+
readonly internalType: "bool";
|
|
1068
|
+
readonly name: "";
|
|
1069
|
+
readonly type: "bool";
|
|
1015
1070
|
}];
|
|
1016
|
-
readonly
|
|
1017
|
-
readonly outputs: readonly [];
|
|
1018
|
-
readonly stateMutability: "nonpayable";
|
|
1071
|
+
readonly stateMutability: "view";
|
|
1019
1072
|
readonly type: "function";
|
|
1020
1073
|
}, {
|
|
1021
1074
|
readonly inputs: readonly [{
|
|
@@ -1087,6 +1140,26 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
1087
1140
|
}];
|
|
1088
1141
|
readonly stateMutability: "view";
|
|
1089
1142
|
readonly type: "function";
|
|
1143
|
+
}, {
|
|
1144
|
+
readonly inputs: readonly [];
|
|
1145
|
+
readonly name: "pullRewardsFromDistributor";
|
|
1146
|
+
readonly outputs: readonly [{
|
|
1147
|
+
readonly internalType: "uint256";
|
|
1148
|
+
readonly name: "transferred";
|
|
1149
|
+
readonly type: "uint256";
|
|
1150
|
+
}];
|
|
1151
|
+
readonly stateMutability: "nonpayable";
|
|
1152
|
+
readonly type: "function";
|
|
1153
|
+
}, {
|
|
1154
|
+
readonly inputs: readonly [];
|
|
1155
|
+
readonly name: "raacAutolockMin";
|
|
1156
|
+
readonly outputs: readonly [{
|
|
1157
|
+
readonly internalType: "uint256";
|
|
1158
|
+
readonly name: "";
|
|
1159
|
+
readonly type: "uint256";
|
|
1160
|
+
}];
|
|
1161
|
+
readonly stateMutability: "view";
|
|
1162
|
+
readonly type: "function";
|
|
1090
1163
|
}, {
|
|
1091
1164
|
readonly inputs: readonly [];
|
|
1092
1165
|
readonly name: "raacLiquidLocker";
|
|
@@ -1161,25 +1234,21 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
1161
1234
|
readonly type: "function";
|
|
1162
1235
|
}, {
|
|
1163
1236
|
readonly inputs: readonly [{
|
|
1164
|
-
readonly internalType: "
|
|
1165
|
-
readonly name: "
|
|
1166
|
-
readonly type: "
|
|
1237
|
+
readonly internalType: "address";
|
|
1238
|
+
readonly name: "_controller";
|
|
1239
|
+
readonly type: "address";
|
|
1167
1240
|
}];
|
|
1168
|
-
readonly name: "
|
|
1241
|
+
readonly name: "setController";
|
|
1169
1242
|
readonly outputs: readonly [];
|
|
1170
1243
|
readonly stateMutability: "nonpayable";
|
|
1171
1244
|
readonly type: "function";
|
|
1172
1245
|
}, {
|
|
1173
1246
|
readonly inputs: readonly [{
|
|
1174
|
-
readonly internalType: "address";
|
|
1175
|
-
readonly name: "distributor";
|
|
1176
|
-
readonly type: "address";
|
|
1177
|
-
}, {
|
|
1178
1247
|
readonly internalType: "bool";
|
|
1179
|
-
readonly name: "
|
|
1248
|
+
readonly name: "newDepositRAACOnClaim";
|
|
1180
1249
|
readonly type: "bool";
|
|
1181
1250
|
}];
|
|
1182
|
-
readonly name: "
|
|
1251
|
+
readonly name: "setDepositRAACOnClaim";
|
|
1183
1252
|
readonly outputs: readonly [];
|
|
1184
1253
|
readonly stateMutability: "nonpayable";
|
|
1185
1254
|
readonly type: "function";
|
|
@@ -1193,6 +1262,26 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
1193
1262
|
readonly outputs: readonly [];
|
|
1194
1263
|
readonly stateMutability: "nonpayable";
|
|
1195
1264
|
readonly type: "function";
|
|
1265
|
+
}, {
|
|
1266
|
+
readonly inputs: readonly [{
|
|
1267
|
+
readonly internalType: "address";
|
|
1268
|
+
readonly name: "rewardDistributor";
|
|
1269
|
+
readonly type: "address";
|
|
1270
|
+
}];
|
|
1271
|
+
readonly name: "setGaugeRewardDistributor";
|
|
1272
|
+
readonly outputs: readonly [];
|
|
1273
|
+
readonly stateMutability: "nonpayable";
|
|
1274
|
+
readonly type: "function";
|
|
1275
|
+
}, {
|
|
1276
|
+
readonly inputs: readonly [{
|
|
1277
|
+
readonly internalType: "uint256";
|
|
1278
|
+
readonly name: "newRaacAutolockMin";
|
|
1279
|
+
readonly type: "uint256";
|
|
1280
|
+
}];
|
|
1281
|
+
readonly name: "setRaacAutolockMin";
|
|
1282
|
+
readonly outputs: readonly [];
|
|
1283
|
+
readonly stateMutability: "nonpayable";
|
|
1284
|
+
readonly type: "function";
|
|
1196
1285
|
}, {
|
|
1197
1286
|
readonly inputs: readonly [{
|
|
1198
1287
|
readonly internalType: "uint256";
|
|
@@ -1217,12 +1306,6 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
1217
1306
|
}];
|
|
1218
1307
|
readonly stateMutability: "view";
|
|
1219
1308
|
readonly type: "function";
|
|
1220
|
-
}, {
|
|
1221
|
-
readonly inputs: readonly [];
|
|
1222
|
-
readonly name: "syncRewardTokens";
|
|
1223
|
-
readonly outputs: readonly [];
|
|
1224
|
-
readonly stateMutability: "nonpayable";
|
|
1225
|
-
readonly type: "function";
|
|
1226
1309
|
}, {
|
|
1227
1310
|
readonly inputs: readonly [];
|
|
1228
1311
|
readonly name: "totalSupply";
|
|
@@ -1234,7 +1317,11 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
1234
1317
|
readonly stateMutability: "view";
|
|
1235
1318
|
readonly type: "function";
|
|
1236
1319
|
}, {
|
|
1237
|
-
readonly inputs: readonly [
|
|
1320
|
+
readonly inputs: readonly [{
|
|
1321
|
+
readonly internalType: "address";
|
|
1322
|
+
readonly name: "user";
|
|
1323
|
+
readonly type: "address";
|
|
1324
|
+
}];
|
|
1238
1325
|
readonly name: "updateUserRewards";
|
|
1239
1326
|
readonly outputs: readonly [];
|
|
1240
1327
|
readonly stateMutability: "nonpayable";
|