@etherisc/gif-next 0.0.2-ccfa4c7-304 → 0.0.2-cd48412-522
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +63 -1
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +1 -1
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +106 -38
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +91 -45
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +1 -1
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +58 -6
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +272 -102
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +662 -46
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +2 -2
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +227 -52
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +180 -32
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +90 -17
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +246 -16
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +420 -27
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +64 -152
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +226 -65
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +21 -98
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +378 -149
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +140 -78
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +20 -97
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +232 -19
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +109 -110
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +225 -64
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +145 -134
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +225 -64
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +83 -177
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +225 -64
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +37 -71
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +130 -148
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +225 -64
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +333 -190
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +225 -64
- package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
- package/artifacts/contracts/{shared/IKeyValueStore.sol/IKeyValueStore.json → instance/BaseStore.sol/BaseStore.json} +51 -229
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +2 -2
- package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +4 -0
- package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.json +304 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +368 -34
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +295 -5
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +419 -96
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +591 -343
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +194 -73
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +569 -513
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +321 -31
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +80 -42
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1316 -2015
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +3427 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +1 -1
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +101 -88
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +8 -8
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +2 -2
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +2 -2
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +20 -20
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +29 -41
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +239 -61
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +19 -31
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +29 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +19 -31
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +83 -38
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +96 -50
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +59 -79
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +225 -64
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +300 -123
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +124 -58
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +186 -33
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +29 -41
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +238 -19
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +29 -41
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +100 -34
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +338 -79
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +121 -63
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +238 -52
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +96 -42
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +46 -58
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +225 -64
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +142 -102
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +113 -75
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +187 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +50 -10
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +55 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +50 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +40 -52
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +1 -1
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +224 -18
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +157 -86
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +511 -21
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +118 -72
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +114 -112
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +99 -69
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +40 -52
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +1 -1
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +258 -44
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +84 -42
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +33 -22
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +29 -0
- package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +71 -60
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +385 -243
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +266 -70
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +41 -12
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +76 -38
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +389 -191
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +2 -2
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +149 -97
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +437 -26
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +119 -59
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/shared/Component.sol/Component.json +19 -31
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +209 -190
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +113 -63
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +76 -41
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +1 -1
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +1 -1
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +1 -1
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +2 -2
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +19 -31
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +118 -123
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +19 -31
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +19 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +29 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +19 -31
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +21 -2
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +19 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +29 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +2 -2
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +2 -2
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1385 -150
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +97 -117
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1471 -213
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +77 -76
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +123 -72
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +296 -152
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +131 -167
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +84 -54
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +1615 -815
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +309 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +153 -91
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +10 -10
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +45 -19
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +2 -2
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +93 -37
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +1 -1
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +2 -2
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +6 -6
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +2 -2
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +2 -2
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +39 -218
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +45 -2
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
- package/artifacts/contracts/type/String.sol/StrLib.json +50 -2
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +3 -3
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +60 -36
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +10 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +65 -27
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +15 -2
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +10 -0
- package/contracts/accounting/AccountingService.sol +15 -3
- package/contracts/accounting/IAccountingService.sol +4 -2
- package/contracts/authorization/AccessAdmin.sol +264 -188
- package/contracts/authorization/AccessAdminLib.sol +222 -9
- package/contracts/authorization/Authorization.sol +38 -234
- package/contracts/authorization/IAccess.sol +25 -7
- package/contracts/authorization/IAccessAdmin.sol +19 -45
- package/contracts/authorization/IAuthorization.sol +3 -57
- package/contracts/authorization/IServiceAuthorization.sol +55 -17
- package/contracts/authorization/ServiceAuthorization.sol +248 -34
- package/contracts/distribution/BasicDistribution.sol +7 -8
- package/contracts/distribution/BasicDistributionAuthorization.sol +11 -4
- package/contracts/distribution/Distribution.sol +12 -56
- package/contracts/distribution/DistributionService.sol +126 -63
- package/contracts/distribution/IDistributionComponent.sol +3 -10
- package/contracts/distribution/IDistributionService.sol +20 -8
- package/contracts/examples/fire/FirePool.sol +0 -4
- package/contracts/examples/fire/FireProduct.sol +6 -10
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +4 -8
- package/contracts/examples/unpermissioned/SimpleOracle.sol +4 -8
- package/contracts/examples/unpermissioned/SimplePool.sol +0 -4
- package/contracts/examples/unpermissioned/SimpleProduct.sol +83 -23
- package/contracts/instance/BaseStore.sol +93 -0
- package/contracts/instance/IBaseStore.sol +37 -0
- package/contracts/instance/IInstance.sol +57 -6
- package/contracts/instance/IInstanceService.sol +42 -7
- package/contracts/instance/Instance.sol +112 -57
- package/contracts/instance/InstanceAdmin.sol +164 -235
- package/contracts/instance/InstanceAuthorizationV3.sol +101 -61
- package/contracts/instance/InstanceReader.sol +354 -392
- package/contracts/instance/InstanceService.sol +186 -134
- package/contracts/instance/InstanceStore.sol +153 -128
- package/contracts/instance/ProductStore.sol +290 -0
- package/contracts/instance/RiskSet.sol +10 -2
- package/contracts/instance/TargetNames.sol +10 -0
- package/contracts/instance/base/BalanceStore.sol +4 -6
- package/contracts/instance/base/ObjectLifecycle.sol +2 -6
- package/contracts/instance/module/IBundle.sol +6 -5
- package/contracts/instance/module/IComponents.sol +15 -6
- package/contracts/instance/module/IDistribution.sol +17 -7
- package/contracts/instance/module/IPolicy.sol +28 -8
- package/contracts/instance/module/IRisk.sol +2 -0
- package/contracts/oracle/BasicOracle.sol +3 -6
- package/contracts/oracle/BasicOracleAuthorization.sol +18 -2
- package/contracts/oracle/IOracle.sol +9 -4
- package/contracts/oracle/Oracle.sol +4 -8
- package/contracts/oracle/OracleService.sol +8 -8
- package/contracts/pool/BasicPool.sol +4 -18
- package/contracts/pool/BasicPoolAuthorization.sol +10 -5
- package/contracts/pool/BundleService.sol +34 -43
- package/contracts/pool/IBundleService.sol +14 -13
- package/contracts/pool/IPoolService.sol +7 -2
- package/contracts/pool/Pool.sol +6 -20
- package/contracts/pool/PoolLib.sol +127 -2
- package/contracts/pool/PoolService.sol +41 -184
- package/contracts/product/ApplicationService.sol +69 -11
- package/contracts/product/BasicProduct.sol +2 -5
- package/contracts/product/BasicProductAuthorization.sol +11 -4
- package/contracts/product/ClaimService.sol +99 -105
- package/contracts/product/IApplicationService.sol +23 -2
- package/contracts/product/IClaimService.sol +5 -4
- package/contracts/product/IPolicyService.sol +9 -2
- package/contracts/product/IPricingService.sol +1 -0
- package/contracts/product/IRiskService.sol +21 -3
- package/contracts/product/PolicyService.sol +40 -59
- package/contracts/product/PolicyServiceLib.sol +79 -5
- package/contracts/product/PricingService.sol +33 -31
- package/contracts/product/Product.sol +40 -18
- package/contracts/product/RiskService.sol +57 -12
- package/contracts/registry/IRegistry.sol +15 -9
- package/contracts/registry/IRelease.sol +6 -3
- package/contracts/registry/Registry.sol +15 -9
- package/contracts/registry/RegistryAdmin.sol +33 -100
- package/contracts/registry/RegistryAuthorization.sol +121 -52
- package/contracts/registry/RegistryService.sol +1 -1
- package/contracts/registry/ReleaseAdmin.sol +42 -100
- package/contracts/registry/ReleaseRegistry.sol +20 -12
- package/contracts/registry/ServiceAuthorizationV3.sol +43 -32
- package/contracts/registry/TokenRegistry.sol +56 -52
- package/contracts/shared/Component.sol +16 -33
- package/contracts/shared/ComponentService.sol +249 -247
- package/contracts/shared/ContractLib.sol +106 -75
- package/contracts/shared/IComponent.sol +1 -4
- package/contracts/shared/IComponentService.sol +17 -16
- package/contracts/shared/INftOwnable.sol +2 -0
- package/contracts/shared/IRegisterable.sol +0 -1
- package/contracts/shared/InstanceLinkedComponent.sol +6 -11
- package/contracts/shared/NftOwnable.sol +3 -1
- package/contracts/shared/PolicyHolder.sol +3 -2
- package/contracts/shared/Service.sol +6 -4
- package/contracts/staking/IStaking.sol +262 -70
- package/contracts/staking/IStakingService.sol +39 -84
- package/contracts/staking/ITargetLimitHandler.sol +17 -0
- package/contracts/staking/Staking.sol +470 -219
- package/contracts/staking/StakingLib.sol +38 -124
- package/contracts/staking/StakingManager.sol +4 -3
- package/contracts/staking/StakingReader.sol +62 -71
- package/contracts/staking/StakingService.sol +42 -185
- package/contracts/staking/StakingServiceManager.sol +1 -0
- package/contracts/staking/StakingStore.sol +1093 -331
- package/contracts/staking/TargetHandler.sol +132 -0
- package/contracts/staking/TargetManagerLib.sol +69 -46
- package/contracts/type/Amount.sol +4 -0
- package/contracts/type/Blocknumber.sol +15 -15
- package/contracts/type/ChainId.sol +101 -0
- package/contracts/type/Fee.sol +8 -8
- package/contracts/type/NftId.sol +3 -3
- package/contracts/type/ObjectType.sol +16 -3
- package/contracts/type/RoleId.sol +57 -59
- package/contracts/type/Seconds.sol +19 -0
- package/contracts/type/String.sol +12 -0
- package/contracts/type/Timestamp.sol +4 -2
- package/contracts/type/UFixed.sol +28 -10
- package/contracts/upgradeability/IVersionable.sol +3 -0
- package/contracts/upgradeability/ProxyManager.sol +25 -11
- package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +12 -2
- package/contracts/upgradeability/Versionable.sol +6 -3
- package/package.json +1 -1
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +0 -4
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +0 -24
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +0 -4
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +0 -485
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +0 -538
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +0 -4
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +0 -205
- package/contracts/shared/ComponentVerifyingService.sol +0 -128
- package/contracts/shared/IKeyValueStore.sol +0 -54
- package/contracts/shared/KeyValueStore.sol +0 -131
- package/contracts/staking/StakingLifecycle.sol +0 -23
@@ -66,53 +66,28 @@
|
|
66
66
|
{
|
67
67
|
"inputs": [
|
68
68
|
{
|
69
|
-
"internalType": "
|
70
|
-
"name": "
|
71
|
-
"type": "
|
69
|
+
"internalType": "Key32",
|
70
|
+
"name": "key",
|
71
|
+
"type": "bytes32"
|
72
72
|
},
|
73
73
|
{
|
74
74
|
"internalType": "ObjectType",
|
75
75
|
"name": "objectType",
|
76
76
|
"type": "uint8"
|
77
|
-
},
|
78
|
-
{
|
79
|
-
"internalType": "StateId",
|
80
|
-
"name": "actual",
|
81
|
-
"type": "uint8"
|
82
|
-
},
|
83
|
-
{
|
84
|
-
"internalType": "StateId",
|
85
|
-
"name": "required",
|
86
|
-
"type": "uint8"
|
87
77
|
}
|
88
78
|
],
|
89
|
-
"name": "
|
79
|
+
"name": "ErrorBaseStoreAlreadyCreated",
|
90
80
|
"type": "error"
|
91
81
|
},
|
92
82
|
{
|
93
83
|
"inputs": [
|
94
|
-
{
|
95
|
-
"internalType": "address",
|
96
|
-
"name": "contractAddress",
|
97
|
-
"type": "address"
|
98
|
-
},
|
99
84
|
{
|
100
85
|
"internalType": "ObjectType",
|
101
86
|
"name": "objectType",
|
102
87
|
"type": "uint8"
|
103
|
-
},
|
104
|
-
{
|
105
|
-
"internalType": "StateId",
|
106
|
-
"name": "fromStateId",
|
107
|
-
"type": "uint8"
|
108
|
-
},
|
109
|
-
{
|
110
|
-
"internalType": "StateId",
|
111
|
-
"name": "toStateId",
|
112
|
-
"type": "uint8"
|
113
88
|
}
|
114
89
|
],
|
115
|
-
"name": "
|
90
|
+
"name": "ErrorBaseStoreNoLifecycle",
|
116
91
|
"type": "error"
|
117
92
|
},
|
118
93
|
{
|
@@ -121,58 +96,83 @@
|
|
121
96
|
"internalType": "Key32",
|
122
97
|
"name": "key",
|
123
98
|
"type": "bytes32"
|
124
|
-
},
|
125
|
-
{
|
126
|
-
"internalType": "ObjectType",
|
127
|
-
"name": "objectType",
|
128
|
-
"type": "uint8"
|
129
99
|
}
|
130
100
|
],
|
131
|
-
"name": "
|
101
|
+
"name": "ErrorBaseStoreNotExisting",
|
132
102
|
"type": "error"
|
133
103
|
},
|
134
104
|
{
|
135
105
|
"inputs": [
|
136
106
|
{
|
137
|
-
"internalType": "
|
138
|
-
"name": "
|
139
|
-
"type": "
|
107
|
+
"internalType": "Key32",
|
108
|
+
"name": "key",
|
109
|
+
"type": "bytes32"
|
140
110
|
}
|
141
111
|
],
|
142
|
-
"name": "
|
112
|
+
"name": "ErrorBaseStoreStateZero",
|
143
113
|
"type": "error"
|
144
114
|
},
|
145
115
|
{
|
146
116
|
"inputs": [
|
147
117
|
{
|
148
|
-
"internalType": "
|
149
|
-
"name": "
|
150
|
-
"type": "
|
118
|
+
"internalType": "ObjectType",
|
119
|
+
"name": "objectType",
|
120
|
+
"type": "uint8"
|
151
121
|
}
|
152
122
|
],
|
153
|
-
"name": "
|
123
|
+
"name": "ErrorBaseStoreTypeUndefined",
|
154
124
|
"type": "error"
|
155
125
|
},
|
156
126
|
{
|
157
127
|
"inputs": [
|
158
128
|
{
|
159
|
-
"internalType": "
|
160
|
-
"name": "
|
161
|
-
"type": "
|
129
|
+
"internalType": "address",
|
130
|
+
"name": "contractAddress",
|
131
|
+
"type": "address"
|
132
|
+
},
|
133
|
+
{
|
134
|
+
"internalType": "ObjectType",
|
135
|
+
"name": "objectType",
|
136
|
+
"type": "uint8"
|
137
|
+
},
|
138
|
+
{
|
139
|
+
"internalType": "StateId",
|
140
|
+
"name": "actual",
|
141
|
+
"type": "uint8"
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"internalType": "StateId",
|
145
|
+
"name": "required",
|
146
|
+
"type": "uint8"
|
162
147
|
}
|
163
148
|
],
|
164
|
-
"name": "
|
149
|
+
"name": "ErrorFromStateMissmatch",
|
165
150
|
"type": "error"
|
166
151
|
},
|
167
152
|
{
|
168
153
|
"inputs": [
|
154
|
+
{
|
155
|
+
"internalType": "address",
|
156
|
+
"name": "contractAddress",
|
157
|
+
"type": "address"
|
158
|
+
},
|
169
159
|
{
|
170
160
|
"internalType": "ObjectType",
|
171
161
|
"name": "objectType",
|
172
162
|
"type": "uint8"
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"internalType": "StateId",
|
166
|
+
"name": "fromStateId",
|
167
|
+
"type": "uint8"
|
168
|
+
},
|
169
|
+
{
|
170
|
+
"internalType": "StateId",
|
171
|
+
"name": "toStateId",
|
172
|
+
"type": "uint8"
|
173
173
|
}
|
174
174
|
],
|
175
|
-
"name": "
|
175
|
+
"name": "ErrorInvalidStateTransition",
|
176
176
|
"type": "error"
|
177
177
|
},
|
178
178
|
{
|
@@ -252,7 +252,7 @@
|
|
252
252
|
"indexed": false,
|
253
253
|
"internalType": "Blocknumber",
|
254
254
|
"name": "lastUpdatedIn",
|
255
|
-
"type": "
|
255
|
+
"type": "uint40"
|
256
256
|
}
|
257
257
|
],
|
258
258
|
"name": "LogBalanceStoreBalanceDecreased",
|
@@ -283,7 +283,7 @@
|
|
283
283
|
"indexed": false,
|
284
284
|
"internalType": "Blocknumber",
|
285
285
|
"name": "lastUpdatedIn",
|
286
|
-
"type": "
|
286
|
+
"type": "uint40"
|
287
287
|
}
|
288
288
|
],
|
289
289
|
"name": "LogBalanceStoreBalanceIncreased",
|
@@ -314,7 +314,7 @@
|
|
314
314
|
"indexed": false,
|
315
315
|
"internalType": "Blocknumber",
|
316
316
|
"name": "lastUpdatedIn",
|
317
|
-
"type": "
|
317
|
+
"type": "uint40"
|
318
318
|
}
|
319
319
|
],
|
320
320
|
"name": "LogBalanceStoreFeesDecreased",
|
@@ -345,7 +345,7 @@
|
|
345
345
|
"indexed": false,
|
346
346
|
"internalType": "Blocknumber",
|
347
347
|
"name": "lastUpdatedIn",
|
348
|
-
"type": "
|
348
|
+
"type": "uint40"
|
349
349
|
}
|
350
350
|
],
|
351
351
|
"name": "LogBalanceStoreFeesIncreased",
|
@@ -376,7 +376,7 @@
|
|
376
376
|
"indexed": false,
|
377
377
|
"internalType": "Blocknumber",
|
378
378
|
"name": "lastUpdatedIn",
|
379
|
-
"type": "
|
379
|
+
"type": "uint40"
|
380
380
|
}
|
381
381
|
],
|
382
382
|
"name": "LogBalanceStoreLockedDecreased",
|
@@ -407,7 +407,7 @@
|
|
407
407
|
"indexed": false,
|
408
408
|
"internalType": "Blocknumber",
|
409
409
|
"name": "lastUpdatedIn",
|
410
|
-
"type": "
|
410
|
+
"type": "uint40"
|
411
411
|
}
|
412
412
|
],
|
413
413
|
"name": "LogBalanceStoreLockedIncreased",
|
@@ -431,15 +431,9 @@
|
|
431
431
|
"inputs": [
|
432
432
|
{
|
433
433
|
"indexed": false,
|
434
|
-
"internalType": "
|
435
|
-
"name": "
|
436
|
-
"type": "
|
437
|
-
},
|
438
|
-
{
|
439
|
-
"indexed": false,
|
440
|
-
"internalType": "KeyId",
|
441
|
-
"name": "keyId",
|
442
|
-
"type": "bytes31"
|
434
|
+
"internalType": "NftId",
|
435
|
+
"name": "bundleNftId",
|
436
|
+
"type": "uint96"
|
443
437
|
},
|
444
438
|
{
|
445
439
|
"indexed": false,
|
@@ -460,7 +454,7 @@
|
|
460
454
|
"type": "address"
|
461
455
|
}
|
462
456
|
],
|
463
|
-
"name": "
|
457
|
+
"name": "LogProductStoreBundleInfoCreated",
|
464
458
|
"type": "event"
|
465
459
|
},
|
466
460
|
{
|
@@ -468,20 +462,20 @@
|
|
468
462
|
"inputs": [
|
469
463
|
{
|
470
464
|
"indexed": false,
|
471
|
-
"internalType": "
|
472
|
-
"name": "
|
473
|
-
"type": "
|
465
|
+
"internalType": "NftId",
|
466
|
+
"name": "bundleNftId",
|
467
|
+
"type": "uint96"
|
474
468
|
},
|
475
469
|
{
|
476
470
|
"indexed": false,
|
477
|
-
"internalType": "
|
478
|
-
"name": "
|
479
|
-
"type": "
|
471
|
+
"internalType": "StateId",
|
472
|
+
"name": "oldState",
|
473
|
+
"type": "uint8"
|
480
474
|
},
|
481
475
|
{
|
482
476
|
"indexed": false,
|
483
477
|
"internalType": "StateId",
|
484
|
-
"name": "
|
478
|
+
"name": "newState",
|
485
479
|
"type": "uint8"
|
486
480
|
},
|
487
481
|
{
|
@@ -500,10 +494,10 @@
|
|
500
494
|
"indexed": false,
|
501
495
|
"internalType": "Blocknumber",
|
502
496
|
"name": "lastUpdatedIn",
|
503
|
-
"type": "
|
497
|
+
"type": "uint40"
|
504
498
|
}
|
505
499
|
],
|
506
|
-
"name": "
|
500
|
+
"name": "LogProductStoreBundleInfoUpdated",
|
507
501
|
"type": "event"
|
508
502
|
},
|
509
503
|
{
|
@@ -511,26 +505,51 @@
|
|
511
505
|
"inputs": [
|
512
506
|
{
|
513
507
|
"indexed": false,
|
514
|
-
"internalType": "
|
515
|
-
"name": "
|
508
|
+
"internalType": "NftId",
|
509
|
+
"name": "componentNftId",
|
510
|
+
"type": "uint96"
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"indexed": false,
|
514
|
+
"internalType": "StateId",
|
515
|
+
"name": "state",
|
516
516
|
"type": "uint8"
|
517
517
|
},
|
518
518
|
{
|
519
519
|
"indexed": false,
|
520
|
-
"internalType": "
|
521
|
-
"name": "
|
522
|
-
"type": "
|
520
|
+
"internalType": "address",
|
521
|
+
"name": "createdby",
|
522
|
+
"type": "address"
|
523
|
+
},
|
524
|
+
{
|
525
|
+
"indexed": false,
|
526
|
+
"internalType": "address",
|
527
|
+
"name": "txOrigin",
|
528
|
+
"type": "address"
|
529
|
+
}
|
530
|
+
],
|
531
|
+
"name": "LogProductStoreComponentInfoCreated",
|
532
|
+
"type": "event"
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"anonymous": false,
|
536
|
+
"inputs": [
|
537
|
+
{
|
538
|
+
"indexed": false,
|
539
|
+
"internalType": "NftId",
|
540
|
+
"name": "componentNftId",
|
541
|
+
"type": "uint96"
|
523
542
|
},
|
524
543
|
{
|
525
544
|
"indexed": false,
|
526
545
|
"internalType": "StateId",
|
527
|
-
"name": "
|
546
|
+
"name": "oldState",
|
528
547
|
"type": "uint8"
|
529
548
|
},
|
530
549
|
{
|
531
550
|
"indexed": false,
|
532
551
|
"internalType": "StateId",
|
533
|
-
"name": "
|
552
|
+
"name": "newState",
|
534
553
|
"type": "uint8"
|
535
554
|
},
|
536
555
|
{
|
@@ -549,560 +568,481 @@
|
|
549
568
|
"indexed": false,
|
550
569
|
"internalType": "Blocknumber",
|
551
570
|
"name": "lastUpdatedIn",
|
552
|
-
"type": "
|
571
|
+
"type": "uint40"
|
553
572
|
}
|
554
573
|
],
|
555
|
-
"name": "
|
574
|
+
"name": "LogProductStoreComponentInfoUpdated",
|
556
575
|
"type": "event"
|
557
576
|
},
|
558
577
|
{
|
559
|
-
"
|
560
|
-
"
|
561
|
-
|
578
|
+
"anonymous": false,
|
579
|
+
"inputs": [
|
580
|
+
{
|
581
|
+
"indexed": false,
|
582
|
+
"internalType": "NftId",
|
583
|
+
"name": "distributorNftId",
|
584
|
+
"type": "uint96"
|
585
|
+
},
|
586
|
+
{
|
587
|
+
"indexed": false,
|
588
|
+
"internalType": "StateId",
|
589
|
+
"name": "state",
|
590
|
+
"type": "uint8"
|
591
|
+
},
|
562
592
|
{
|
593
|
+
"indexed": false,
|
563
594
|
"internalType": "address",
|
564
|
-
"name": "",
|
595
|
+
"name": "createdBy",
|
596
|
+
"type": "address"
|
597
|
+
},
|
598
|
+
{
|
599
|
+
"indexed": false,
|
600
|
+
"internalType": "address",
|
601
|
+
"name": "txOrigin",
|
565
602
|
"type": "address"
|
566
603
|
}
|
567
604
|
],
|
568
|
-
"
|
569
|
-
"type": "
|
605
|
+
"name": "LogProductStoreDistributorInfoCreated",
|
606
|
+
"type": "event"
|
570
607
|
},
|
571
608
|
{
|
609
|
+
"anonymous": false,
|
572
610
|
"inputs": [
|
573
611
|
{
|
574
|
-
"
|
575
|
-
"
|
576
|
-
"
|
612
|
+
"indexed": false,
|
613
|
+
"internalType": "NftId",
|
614
|
+
"name": "distributorNftId",
|
615
|
+
"type": "uint96"
|
577
616
|
},
|
578
617
|
{
|
579
|
-
"
|
580
|
-
"
|
618
|
+
"indexed": false,
|
619
|
+
"internalType": "StateId",
|
620
|
+
"name": "oldState",
|
581
621
|
"type": "uint8"
|
582
622
|
},
|
583
623
|
{
|
624
|
+
"indexed": false,
|
584
625
|
"internalType": "StateId",
|
585
|
-
"name": "
|
626
|
+
"name": "newState",
|
586
627
|
"type": "uint8"
|
587
628
|
},
|
588
629
|
{
|
589
|
-
"
|
590
|
-
"
|
591
|
-
"
|
630
|
+
"indexed": false,
|
631
|
+
"internalType": "address",
|
632
|
+
"name": "updatedBy",
|
633
|
+
"type": "address"
|
634
|
+
},
|
635
|
+
{
|
636
|
+
"indexed": false,
|
637
|
+
"internalType": "address",
|
638
|
+
"name": "txOrigin",
|
639
|
+
"type": "address"
|
640
|
+
},
|
641
|
+
{
|
642
|
+
"indexed": false,
|
643
|
+
"internalType": "Blocknumber",
|
644
|
+
"name": "lastUpdatedIn",
|
645
|
+
"type": "uint40"
|
592
646
|
}
|
593
647
|
],
|
594
|
-
"name": "
|
595
|
-
"
|
596
|
-
"stateMutability": "view",
|
597
|
-
"type": "function"
|
648
|
+
"name": "LogProductStoreDistributorInfoUpdated",
|
649
|
+
"type": "event"
|
598
650
|
},
|
599
651
|
{
|
652
|
+
"anonymous": false,
|
600
653
|
"inputs": [
|
601
654
|
{
|
602
|
-
"
|
603
|
-
"
|
604
|
-
"
|
655
|
+
"indexed": false,
|
656
|
+
"internalType": "DistributorType",
|
657
|
+
"name": "distributorType",
|
658
|
+
"type": "bytes8"
|
605
659
|
},
|
606
660
|
{
|
607
|
-
"
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
{
|
624
|
-
"internalType": "RiskId",
|
625
|
-
"name": "riskId",
|
626
|
-
"type": "bytes8"
|
627
|
-
},
|
628
|
-
{
|
629
|
-
"internalType": "Amount",
|
630
|
-
"name": "sumInsuredAmount",
|
631
|
-
"type": "uint96"
|
632
|
-
},
|
633
|
-
{
|
634
|
-
"internalType": "Amount",
|
635
|
-
"name": "premiumAmount",
|
636
|
-
"type": "uint96"
|
637
|
-
},
|
638
|
-
{
|
639
|
-
"internalType": "Seconds",
|
640
|
-
"name": "lifetime",
|
641
|
-
"type": "uint40"
|
642
|
-
},
|
643
|
-
{
|
644
|
-
"internalType": "bytes",
|
645
|
-
"name": "applicationData",
|
646
|
-
"type": "bytes"
|
647
|
-
},
|
648
|
-
{
|
649
|
-
"internalType": "bytes",
|
650
|
-
"name": "processData",
|
651
|
-
"type": "bytes"
|
652
|
-
},
|
653
|
-
{
|
654
|
-
"internalType": "uint16",
|
655
|
-
"name": "claimsCount",
|
656
|
-
"type": "uint16"
|
657
|
-
},
|
658
|
-
{
|
659
|
-
"internalType": "uint16",
|
660
|
-
"name": "openClaimsCount",
|
661
|
-
"type": "uint16"
|
662
|
-
},
|
663
|
-
{
|
664
|
-
"internalType": "Amount",
|
665
|
-
"name": "claimAmount",
|
666
|
-
"type": "uint96"
|
667
|
-
},
|
668
|
-
{
|
669
|
-
"internalType": "Amount",
|
670
|
-
"name": "payoutAmount",
|
671
|
-
"type": "uint96"
|
672
|
-
},
|
673
|
-
{
|
674
|
-
"internalType": "Timestamp",
|
675
|
-
"name": "activatedAt",
|
676
|
-
"type": "uint40"
|
677
|
-
},
|
678
|
-
{
|
679
|
-
"internalType": "Timestamp",
|
680
|
-
"name": "expiredAt",
|
681
|
-
"type": "uint40"
|
682
|
-
},
|
683
|
-
{
|
684
|
-
"internalType": "Timestamp",
|
685
|
-
"name": "closedAt",
|
686
|
-
"type": "uint40"
|
687
|
-
}
|
688
|
-
],
|
689
|
-
"internalType": "struct IPolicy.PolicyInfo",
|
690
|
-
"name": "policy",
|
691
|
-
"type": "tuple"
|
661
|
+
"indexed": false,
|
662
|
+
"internalType": "StateId",
|
663
|
+
"name": "state",
|
664
|
+
"type": "uint8"
|
665
|
+
},
|
666
|
+
{
|
667
|
+
"indexed": false,
|
668
|
+
"internalType": "address",
|
669
|
+
"name": "createdBy",
|
670
|
+
"type": "address"
|
671
|
+
},
|
672
|
+
{
|
673
|
+
"indexed": false,
|
674
|
+
"internalType": "address",
|
675
|
+
"name": "txOrigin",
|
676
|
+
"type": "address"
|
692
677
|
}
|
693
678
|
],
|
694
|
-
"name": "
|
695
|
-
"
|
696
|
-
"stateMutability": "nonpayable",
|
697
|
-
"type": "function"
|
679
|
+
"name": "LogProductStoreDistributorTypeInfoCreated",
|
680
|
+
"type": "event"
|
698
681
|
},
|
699
682
|
{
|
683
|
+
"anonymous": false,
|
700
684
|
"inputs": [
|
701
685
|
{
|
702
|
-
"
|
703
|
-
"
|
704
|
-
"
|
686
|
+
"indexed": false,
|
687
|
+
"internalType": "DistributorType",
|
688
|
+
"name": "distributorType",
|
689
|
+
"type": "bytes8"
|
705
690
|
},
|
706
691
|
{
|
707
|
-
"
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
{
|
736
|
-
"internalType": "Timestamp",
|
737
|
-
"name": "activatedAt",
|
738
|
-
"type": "uint40"
|
739
|
-
},
|
740
|
-
{
|
741
|
-
"internalType": "Timestamp",
|
742
|
-
"name": "expiredAt",
|
743
|
-
"type": "uint40"
|
744
|
-
},
|
745
|
-
{
|
746
|
-
"internalType": "Timestamp",
|
747
|
-
"name": "closedAt",
|
748
|
-
"type": "uint40"
|
749
|
-
}
|
750
|
-
],
|
751
|
-
"internalType": "struct IBundle.BundleInfo",
|
752
|
-
"name": "bundle",
|
753
|
-
"type": "tuple"
|
692
|
+
"indexed": false,
|
693
|
+
"internalType": "StateId",
|
694
|
+
"name": "oldState",
|
695
|
+
"type": "uint8"
|
696
|
+
},
|
697
|
+
{
|
698
|
+
"indexed": false,
|
699
|
+
"internalType": "StateId",
|
700
|
+
"name": "newState",
|
701
|
+
"type": "uint8"
|
702
|
+
},
|
703
|
+
{
|
704
|
+
"indexed": false,
|
705
|
+
"internalType": "address",
|
706
|
+
"name": "updatedBy",
|
707
|
+
"type": "address"
|
708
|
+
},
|
709
|
+
{
|
710
|
+
"indexed": false,
|
711
|
+
"internalType": "address",
|
712
|
+
"name": "txOrigin",
|
713
|
+
"type": "address"
|
714
|
+
},
|
715
|
+
{
|
716
|
+
"indexed": false,
|
717
|
+
"internalType": "Blocknumber",
|
718
|
+
"name": "lastUpdatedIn",
|
719
|
+
"type": "uint40"
|
754
720
|
}
|
755
721
|
],
|
756
|
-
"name": "
|
757
|
-
"
|
758
|
-
"stateMutability": "nonpayable",
|
759
|
-
"type": "function"
|
722
|
+
"name": "LogProductStoreDistributorTypeInfoUpdated",
|
723
|
+
"type": "event"
|
760
724
|
},
|
761
725
|
{
|
726
|
+
"anonymous": false,
|
762
727
|
"inputs": [
|
763
728
|
{
|
729
|
+
"indexed": false,
|
764
730
|
"internalType": "NftId",
|
765
|
-
"name": "
|
731
|
+
"name": "poolNftId",
|
766
732
|
"type": "uint96"
|
767
733
|
},
|
768
734
|
{
|
769
|
-
"
|
770
|
-
"
|
771
|
-
"
|
735
|
+
"indexed": false,
|
736
|
+
"internalType": "StateId",
|
737
|
+
"name": "state",
|
738
|
+
"type": "uint8"
|
772
739
|
},
|
773
740
|
{
|
774
|
-
"
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
},
|
785
|
-
{
|
786
|
-
"internalType": "uint24",
|
787
|
-
"name": "payoutsCount",
|
788
|
-
"type": "uint24"
|
789
|
-
},
|
790
|
-
{
|
791
|
-
"internalType": "uint24",
|
792
|
-
"name": "openPayoutsCount",
|
793
|
-
"type": "uint24"
|
794
|
-
},
|
795
|
-
{
|
796
|
-
"internalType": "bytes",
|
797
|
-
"name": "submissionData",
|
798
|
-
"type": "bytes"
|
799
|
-
},
|
800
|
-
{
|
801
|
-
"internalType": "bytes",
|
802
|
-
"name": "processData",
|
803
|
-
"type": "bytes"
|
804
|
-
},
|
805
|
-
{
|
806
|
-
"internalType": "Timestamp",
|
807
|
-
"name": "closedAt",
|
808
|
-
"type": "uint40"
|
809
|
-
}
|
810
|
-
],
|
811
|
-
"internalType": "struct IPolicy.ClaimInfo",
|
812
|
-
"name": "claim",
|
813
|
-
"type": "tuple"
|
741
|
+
"indexed": false,
|
742
|
+
"internalType": "address",
|
743
|
+
"name": "createdBy",
|
744
|
+
"type": "address"
|
745
|
+
},
|
746
|
+
{
|
747
|
+
"indexed": false,
|
748
|
+
"internalType": "address",
|
749
|
+
"name": "txOrigin",
|
750
|
+
"type": "address"
|
814
751
|
}
|
815
752
|
],
|
816
|
-
"name": "
|
817
|
-
"
|
818
|
-
"stateMutability": "nonpayable",
|
819
|
-
"type": "function"
|
753
|
+
"name": "LogProductStorePoolInfoCreated",
|
754
|
+
"type": "event"
|
820
755
|
},
|
821
756
|
{
|
757
|
+
"anonymous": false,
|
822
758
|
"inputs": [
|
823
759
|
{
|
760
|
+
"indexed": false,
|
824
761
|
"internalType": "NftId",
|
825
|
-
"name": "
|
762
|
+
"name": "poolNftId",
|
826
763
|
"type": "uint96"
|
827
764
|
},
|
828
765
|
{
|
829
|
-
"
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
"
|
766
|
+
"indexed": false,
|
767
|
+
"internalType": "StateId",
|
768
|
+
"name": "oldState",
|
769
|
+
"type": "uint8"
|
770
|
+
},
|
771
|
+
{
|
772
|
+
"indexed": false,
|
773
|
+
"internalType": "StateId",
|
774
|
+
"name": "newState",
|
775
|
+
"type": "uint8"
|
776
|
+
},
|
777
|
+
{
|
778
|
+
"indexed": false,
|
779
|
+
"internalType": "address",
|
780
|
+
"name": "updatedBy",
|
781
|
+
"type": "address"
|
782
|
+
},
|
783
|
+
{
|
784
|
+
"indexed": false,
|
785
|
+
"internalType": "address",
|
786
|
+
"name": "txOrigin",
|
787
|
+
"type": "address"
|
788
|
+
},
|
789
|
+
{
|
790
|
+
"indexed": false,
|
791
|
+
"internalType": "Blocknumber",
|
792
|
+
"name": "lastUpdatedIn",
|
793
|
+
"type": "uint40"
|
854
794
|
}
|
855
795
|
],
|
856
|
-
"name": "
|
857
|
-
"
|
858
|
-
"stateMutability": "nonpayable",
|
859
|
-
"type": "function"
|
796
|
+
"name": "LogProductStorePoolInfoUpdated",
|
797
|
+
"type": "event"
|
860
798
|
},
|
861
799
|
{
|
800
|
+
"anonymous": false,
|
862
801
|
"inputs": [
|
863
802
|
{
|
864
|
-
"
|
865
|
-
"
|
866
|
-
"
|
803
|
+
"indexed": false,
|
804
|
+
"internalType": "ReferralId",
|
805
|
+
"name": "referralId",
|
806
|
+
"type": "bytes8"
|
867
807
|
},
|
868
808
|
{
|
869
|
-
"
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
{
|
886
|
-
"internalType": "uint32",
|
887
|
-
"name": "numPoliciesSold",
|
888
|
-
"type": "uint32"
|
889
|
-
}
|
890
|
-
],
|
891
|
-
"internalType": "struct IDistribution.DistributorInfo",
|
892
|
-
"name": "info",
|
893
|
-
"type": "tuple"
|
809
|
+
"indexed": false,
|
810
|
+
"internalType": "StateId",
|
811
|
+
"name": "state",
|
812
|
+
"type": "uint8"
|
813
|
+
},
|
814
|
+
{
|
815
|
+
"indexed": false,
|
816
|
+
"internalType": "address",
|
817
|
+
"name": "createdBy",
|
818
|
+
"type": "address"
|
819
|
+
},
|
820
|
+
{
|
821
|
+
"indexed": false,
|
822
|
+
"internalType": "address",
|
823
|
+
"name": "txOrigin",
|
824
|
+
"type": "address"
|
894
825
|
}
|
895
826
|
],
|
896
|
-
"name": "
|
897
|
-
"
|
898
|
-
"stateMutability": "nonpayable",
|
899
|
-
"type": "function"
|
827
|
+
"name": "LogProductStoreReferralInfoCreated",
|
828
|
+
"type": "event"
|
900
829
|
},
|
901
830
|
{
|
831
|
+
"anonymous": false,
|
902
832
|
"inputs": [
|
903
833
|
{
|
904
|
-
"
|
905
|
-
"
|
834
|
+
"indexed": false,
|
835
|
+
"internalType": "ReferralId",
|
836
|
+
"name": "referralId",
|
906
837
|
"type": "bytes8"
|
907
838
|
},
|
908
839
|
{
|
909
|
-
"
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
"
|
962
|
-
|
963
|
-
|
840
|
+
"indexed": false,
|
841
|
+
"internalType": "StateId",
|
842
|
+
"name": "oldState",
|
843
|
+
"type": "uint8"
|
844
|
+
},
|
845
|
+
{
|
846
|
+
"indexed": false,
|
847
|
+
"internalType": "StateId",
|
848
|
+
"name": "newState",
|
849
|
+
"type": "uint8"
|
850
|
+
},
|
851
|
+
{
|
852
|
+
"indexed": false,
|
853
|
+
"internalType": "address",
|
854
|
+
"name": "updatedBy",
|
855
|
+
"type": "address"
|
856
|
+
},
|
857
|
+
{
|
858
|
+
"indexed": false,
|
859
|
+
"internalType": "address",
|
860
|
+
"name": "txOrigin",
|
861
|
+
"type": "address"
|
862
|
+
},
|
863
|
+
{
|
864
|
+
"indexed": false,
|
865
|
+
"internalType": "Blocknumber",
|
866
|
+
"name": "lastUpdatedIn",
|
867
|
+
"type": "uint40"
|
868
|
+
}
|
869
|
+
],
|
870
|
+
"name": "LogProductStoreReferralInfoUpdated",
|
871
|
+
"type": "event"
|
872
|
+
},
|
873
|
+
{
|
874
|
+
"anonymous": false,
|
875
|
+
"inputs": [
|
876
|
+
{
|
877
|
+
"indexed": false,
|
878
|
+
"internalType": "RequestId",
|
879
|
+
"name": "requestId",
|
880
|
+
"type": "uint64"
|
881
|
+
},
|
882
|
+
{
|
883
|
+
"indexed": false,
|
884
|
+
"internalType": "StateId",
|
885
|
+
"name": "state",
|
886
|
+
"type": "uint8"
|
887
|
+
},
|
888
|
+
{
|
889
|
+
"indexed": false,
|
890
|
+
"internalType": "address",
|
891
|
+
"name": "createdBy",
|
892
|
+
"type": "address"
|
893
|
+
},
|
894
|
+
{
|
895
|
+
"indexed": false,
|
896
|
+
"internalType": "address",
|
897
|
+
"name": "txOrigin",
|
898
|
+
"type": "address"
|
899
|
+
}
|
900
|
+
],
|
901
|
+
"name": "LogProductStoreRequestInfoCreated",
|
902
|
+
"type": "event"
|
903
|
+
},
|
904
|
+
{
|
905
|
+
"anonymous": false,
|
906
|
+
"inputs": [
|
907
|
+
{
|
908
|
+
"indexed": false,
|
909
|
+
"internalType": "RequestId",
|
910
|
+
"name": "requestId",
|
911
|
+
"type": "uint64"
|
912
|
+
},
|
913
|
+
{
|
914
|
+
"indexed": false,
|
915
|
+
"internalType": "StateId",
|
916
|
+
"name": "oldState",
|
917
|
+
"type": "uint8"
|
918
|
+
},
|
919
|
+
{
|
920
|
+
"indexed": false,
|
921
|
+
"internalType": "StateId",
|
922
|
+
"name": "newState",
|
923
|
+
"type": "uint8"
|
924
|
+
},
|
925
|
+
{
|
926
|
+
"indexed": false,
|
927
|
+
"internalType": "address",
|
928
|
+
"name": "updatedBy",
|
929
|
+
"type": "address"
|
930
|
+
},
|
931
|
+
{
|
932
|
+
"indexed": false,
|
933
|
+
"internalType": "address",
|
934
|
+
"name": "txOrigin",
|
935
|
+
"type": "address"
|
936
|
+
},
|
937
|
+
{
|
938
|
+
"indexed": false,
|
939
|
+
"internalType": "Blocknumber",
|
940
|
+
"name": "lastUpdatedIn",
|
941
|
+
"type": "uint40"
|
964
942
|
}
|
965
943
|
],
|
966
|
-
"name": "
|
944
|
+
"name": "LogProductStoreRequestInfoUpdated",
|
945
|
+
"type": "event"
|
946
|
+
},
|
947
|
+
{
|
948
|
+
"inputs": [],
|
949
|
+
"name": "authority",
|
950
|
+
"outputs": [
|
951
|
+
{
|
952
|
+
"internalType": "address",
|
953
|
+
"name": "",
|
954
|
+
"type": "address"
|
955
|
+
}
|
956
|
+
],
|
957
|
+
"stateMutability": "view",
|
958
|
+
"type": "function"
|
959
|
+
},
|
960
|
+
{
|
961
|
+
"inputs": [
|
962
|
+
{
|
963
|
+
"internalType": "StateId",
|
964
|
+
"name": "stateId",
|
965
|
+
"type": "uint8"
|
966
|
+
},
|
967
|
+
{
|
968
|
+
"internalType": "ObjectType",
|
969
|
+
"name": "objectType",
|
970
|
+
"type": "uint8"
|
971
|
+
},
|
972
|
+
{
|
973
|
+
"internalType": "StateId",
|
974
|
+
"name": "expectedFromId",
|
975
|
+
"type": "uint8"
|
976
|
+
},
|
977
|
+
{
|
978
|
+
"internalType": "StateId",
|
979
|
+
"name": "toId",
|
980
|
+
"type": "uint8"
|
981
|
+
}
|
982
|
+
],
|
983
|
+
"name": "checkTransition",
|
967
984
|
"outputs": [],
|
968
|
-
"stateMutability": "
|
985
|
+
"stateMutability": "view",
|
969
986
|
"type": "function"
|
970
987
|
},
|
971
988
|
{
|
972
989
|
"inputs": [
|
973
990
|
{
|
974
991
|
"internalType": "NftId",
|
975
|
-
"name": "
|
992
|
+
"name": "bundleNftId",
|
976
993
|
"type": "uint96"
|
977
994
|
},
|
978
995
|
{
|
979
996
|
"components": [
|
980
997
|
{
|
981
|
-
"
|
982
|
-
|
983
|
-
|
984
|
-
"name": "fractionalFee",
|
985
|
-
"type": "uint256"
|
986
|
-
},
|
987
|
-
{
|
988
|
-
"internalType": "uint256",
|
989
|
-
"name": "fixedFee",
|
990
|
-
"type": "uint256"
|
991
|
-
}
|
992
|
-
],
|
993
|
-
"internalType": "struct Fee",
|
994
|
-
"name": "productFee",
|
995
|
-
"type": "tuple"
|
996
|
-
},
|
997
|
-
{
|
998
|
-
"components": [
|
999
|
-
{
|
1000
|
-
"internalType": "UFixed",
|
1001
|
-
"name": "fractionalFee",
|
1002
|
-
"type": "uint256"
|
1003
|
-
},
|
1004
|
-
{
|
1005
|
-
"internalType": "uint256",
|
1006
|
-
"name": "fixedFee",
|
1007
|
-
"type": "uint256"
|
1008
|
-
}
|
1009
|
-
],
|
1010
|
-
"internalType": "struct Fee",
|
1011
|
-
"name": "processingFee",
|
1012
|
-
"type": "tuple"
|
998
|
+
"internalType": "Timestamp",
|
999
|
+
"name": "activatedAt",
|
1000
|
+
"type": "uint40"
|
1013
1001
|
},
|
1014
1002
|
{
|
1015
|
-
"
|
1016
|
-
|
1017
|
-
|
1018
|
-
"name": "fractionalFee",
|
1019
|
-
"type": "uint256"
|
1020
|
-
},
|
1021
|
-
{
|
1022
|
-
"internalType": "uint256",
|
1023
|
-
"name": "fixedFee",
|
1024
|
-
"type": "uint256"
|
1025
|
-
}
|
1026
|
-
],
|
1027
|
-
"internalType": "struct Fee",
|
1028
|
-
"name": "distributionFee",
|
1029
|
-
"type": "tuple"
|
1003
|
+
"internalType": "Timestamp",
|
1004
|
+
"name": "expiredAt",
|
1005
|
+
"type": "uint40"
|
1030
1006
|
},
|
1031
1007
|
{
|
1032
|
-
"
|
1033
|
-
|
1034
|
-
|
1035
|
-
"name": "fractionalFee",
|
1036
|
-
"type": "uint256"
|
1037
|
-
},
|
1038
|
-
{
|
1039
|
-
"internalType": "uint256",
|
1040
|
-
"name": "fixedFee",
|
1041
|
-
"type": "uint256"
|
1042
|
-
}
|
1043
|
-
],
|
1044
|
-
"internalType": "struct Fee",
|
1045
|
-
"name": "minDistributionOwnerFee",
|
1046
|
-
"type": "tuple"
|
1008
|
+
"internalType": "Timestamp",
|
1009
|
+
"name": "closedAt",
|
1010
|
+
"type": "uint40"
|
1047
1011
|
},
|
1048
1012
|
{
|
1049
|
-
"
|
1050
|
-
|
1051
|
-
|
1052
|
-
"name": "fractionalFee",
|
1053
|
-
"type": "uint256"
|
1054
|
-
},
|
1055
|
-
{
|
1056
|
-
"internalType": "uint256",
|
1057
|
-
"name": "fixedFee",
|
1058
|
-
"type": "uint256"
|
1059
|
-
}
|
1060
|
-
],
|
1061
|
-
"internalType": "struct Fee",
|
1062
|
-
"name": "poolFee",
|
1063
|
-
"type": "tuple"
|
1013
|
+
"internalType": "NftId",
|
1014
|
+
"name": "poolNftId",
|
1015
|
+
"type": "uint96"
|
1064
1016
|
},
|
1065
1017
|
{
|
1066
1018
|
"components": [
|
1067
1019
|
{
|
1068
1020
|
"internalType": "UFixed",
|
1069
1021
|
"name": "fractionalFee",
|
1070
|
-
"type": "
|
1022
|
+
"type": "uint160"
|
1071
1023
|
},
|
1072
1024
|
{
|
1073
|
-
"internalType": "
|
1025
|
+
"internalType": "Amount",
|
1074
1026
|
"name": "fixedFee",
|
1075
|
-
"type": "
|
1027
|
+
"type": "uint96"
|
1076
1028
|
}
|
1077
1029
|
],
|
1078
1030
|
"internalType": "struct Fee",
|
1079
|
-
"name": "
|
1031
|
+
"name": "fee",
|
1080
1032
|
"type": "tuple"
|
1081
1033
|
},
|
1082
1034
|
{
|
1083
|
-
"
|
1084
|
-
|
1085
|
-
|
1086
|
-
"name": "fractionalFee",
|
1087
|
-
"type": "uint256"
|
1088
|
-
},
|
1089
|
-
{
|
1090
|
-
"internalType": "uint256",
|
1091
|
-
"name": "fixedFee",
|
1092
|
-
"type": "uint256"
|
1093
|
-
}
|
1094
|
-
],
|
1095
|
-
"internalType": "struct Fee",
|
1096
|
-
"name": "performanceFee",
|
1097
|
-
"type": "tuple"
|
1035
|
+
"internalType": "bytes",
|
1036
|
+
"name": "filter",
|
1037
|
+
"type": "bytes"
|
1098
1038
|
}
|
1099
1039
|
],
|
1100
|
-
"internalType": "struct
|
1101
|
-
"name": "
|
1040
|
+
"internalType": "struct IBundle.BundleInfo",
|
1041
|
+
"name": "bundle",
|
1102
1042
|
"type": "tuple"
|
1103
1043
|
}
|
1104
1044
|
],
|
1105
|
-
"name": "
|
1045
|
+
"name": "createBundle",
|
1106
1046
|
"outputs": [],
|
1107
1047
|
"stateMutability": "nonpayable",
|
1108
1048
|
"type": "function"
|
@@ -1111,48 +1051,28 @@
|
|
1111
1051
|
"inputs": [
|
1112
1052
|
{
|
1113
1053
|
"internalType": "NftId",
|
1114
|
-
"name": "
|
1054
|
+
"name": "componentNftId",
|
1115
1055
|
"type": "uint96"
|
1116
1056
|
},
|
1117
|
-
{
|
1118
|
-
"internalType": "PayoutId",
|
1119
|
-
"name": "payoutId",
|
1120
|
-
"type": "uint40"
|
1121
|
-
},
|
1122
1057
|
{
|
1123
1058
|
"components": [
|
1124
1059
|
{
|
1125
|
-
"internalType": "
|
1126
|
-
"name": "
|
1127
|
-
"type": "
|
1128
|
-
},
|
1129
|
-
{
|
1130
|
-
"internalType": "Amount",
|
1131
|
-
"name": "amount",
|
1132
|
-
"type": "uint96"
|
1060
|
+
"internalType": "string",
|
1061
|
+
"name": "name",
|
1062
|
+
"type": "string"
|
1133
1063
|
},
|
1134
1064
|
{
|
1135
|
-
"internalType": "
|
1136
|
-
"name": "
|
1065
|
+
"internalType": "contract TokenHandler",
|
1066
|
+
"name": "tokenHandler",
|
1137
1067
|
"type": "address"
|
1138
|
-
},
|
1139
|
-
{
|
1140
|
-
"internalType": "bytes",
|
1141
|
-
"name": "data",
|
1142
|
-
"type": "bytes"
|
1143
|
-
},
|
1144
|
-
{
|
1145
|
-
"internalType": "Timestamp",
|
1146
|
-
"name": "paidAt",
|
1147
|
-
"type": "uint40"
|
1148
1068
|
}
|
1149
1069
|
],
|
1150
|
-
"internalType": "struct
|
1151
|
-
"name": "
|
1070
|
+
"internalType": "struct IComponents.ComponentInfo",
|
1071
|
+
"name": "componentInfo",
|
1152
1072
|
"type": "tuple"
|
1153
1073
|
}
|
1154
1074
|
],
|
1155
|
-
"name": "
|
1075
|
+
"name": "createComponent",
|
1156
1076
|
"outputs": [],
|
1157
1077
|
"stateMutability": "nonpayable",
|
1158
1078
|
"type": "function"
|
@@ -1161,53 +1081,38 @@
|
|
1161
1081
|
"inputs": [
|
1162
1082
|
{
|
1163
1083
|
"internalType": "NftId",
|
1164
|
-
"name": "
|
1084
|
+
"name": "distributorNftId",
|
1165
1085
|
"type": "uint96"
|
1166
1086
|
},
|
1167
1087
|
{
|
1168
1088
|
"components": [
|
1169
1089
|
{
|
1170
|
-
"internalType": "
|
1171
|
-
"name": "
|
1172
|
-
"type": "
|
1173
|
-
},
|
1174
|
-
{
|
1175
|
-
"internalType": "bool",
|
1176
|
-
"name": "isInterceptingBundleTransfers",
|
1177
|
-
"type": "bool"
|
1178
|
-
},
|
1179
|
-
{
|
1180
|
-
"internalType": "bool",
|
1181
|
-
"name": "isProcessingConfirmedClaims",
|
1182
|
-
"type": "bool"
|
1183
|
-
},
|
1184
|
-
{
|
1185
|
-
"internalType": "bool",
|
1186
|
-
"name": "isExternallyManaged",
|
1187
|
-
"type": "bool"
|
1090
|
+
"internalType": "DistributorType",
|
1091
|
+
"name": "distributorType",
|
1092
|
+
"type": "bytes8"
|
1188
1093
|
},
|
1189
1094
|
{
|
1190
1095
|
"internalType": "bool",
|
1191
|
-
"name": "
|
1096
|
+
"name": "active",
|
1192
1097
|
"type": "bool"
|
1193
1098
|
},
|
1194
1099
|
{
|
1195
|
-
"internalType": "
|
1196
|
-
"name": "
|
1197
|
-
"type": "
|
1100
|
+
"internalType": "uint32",
|
1101
|
+
"name": "numPoliciesSold",
|
1102
|
+
"type": "uint32"
|
1198
1103
|
},
|
1199
1104
|
{
|
1200
|
-
"internalType": "
|
1201
|
-
"name": "
|
1202
|
-
"type": "
|
1105
|
+
"internalType": "bytes",
|
1106
|
+
"name": "data",
|
1107
|
+
"type": "bytes"
|
1203
1108
|
}
|
1204
1109
|
],
|
1205
|
-
"internalType": "struct
|
1110
|
+
"internalType": "struct IDistribution.DistributorInfo",
|
1206
1111
|
"name": "info",
|
1207
1112
|
"type": "tuple"
|
1208
1113
|
}
|
1209
1114
|
],
|
1210
|
-
"name": "
|
1115
|
+
"name": "createDistributor",
|
1211
1116
|
"outputs": [],
|
1212
1117
|
"stateMutability": "nonpayable",
|
1213
1118
|
"type": "function"
|
@@ -1215,109 +1120,69 @@
|
|
1215
1120
|
{
|
1216
1121
|
"inputs": [
|
1217
1122
|
{
|
1218
|
-
"internalType": "
|
1219
|
-
"name": "
|
1220
|
-
"type": "
|
1123
|
+
"internalType": "DistributorType",
|
1124
|
+
"name": "distributorType",
|
1125
|
+
"type": "bytes8"
|
1221
1126
|
},
|
1222
1127
|
{
|
1223
1128
|
"components": [
|
1224
1129
|
{
|
1225
|
-
"internalType": "
|
1226
|
-
"name": "
|
1227
|
-
"type": "
|
1228
|
-
},
|
1229
|
-
{
|
1230
|
-
"internalType": "Amount",
|
1231
|
-
"name": "distributionFeeAndCommissionAmount",
|
1232
|
-
"type": "uint96"
|
1233
|
-
},
|
1234
|
-
{
|
1235
|
-
"internalType": "Amount",
|
1236
|
-
"name": "poolPremiumAndFeeAmount",
|
1237
|
-
"type": "uint96"
|
1238
|
-
},
|
1239
|
-
{
|
1240
|
-
"internalType": "Amount",
|
1241
|
-
"name": "netPremiumAmount",
|
1242
|
-
"type": "uint96"
|
1243
|
-
},
|
1244
|
-
{
|
1245
|
-
"internalType": "Amount",
|
1246
|
-
"name": "fullPremiumAmount",
|
1247
|
-
"type": "uint96"
|
1248
|
-
},
|
1249
|
-
{
|
1250
|
-
"internalType": "Amount",
|
1251
|
-
"name": "premiumAmount",
|
1252
|
-
"type": "uint96"
|
1253
|
-
},
|
1254
|
-
{
|
1255
|
-
"internalType": "Amount",
|
1256
|
-
"name": "productFeeFixAmount",
|
1257
|
-
"type": "uint96"
|
1258
|
-
},
|
1259
|
-
{
|
1260
|
-
"internalType": "Amount",
|
1261
|
-
"name": "poolFeeFixAmount",
|
1262
|
-
"type": "uint96"
|
1263
|
-
},
|
1264
|
-
{
|
1265
|
-
"internalType": "Amount",
|
1266
|
-
"name": "bundleFeeFixAmount",
|
1267
|
-
"type": "uint96"
|
1130
|
+
"internalType": "UFixed",
|
1131
|
+
"name": "minDiscountPercentage",
|
1132
|
+
"type": "uint160"
|
1268
1133
|
},
|
1269
1134
|
{
|
1270
|
-
"internalType": "
|
1271
|
-
"name": "
|
1135
|
+
"internalType": "NftId",
|
1136
|
+
"name": "distributionNftId",
|
1272
1137
|
"type": "uint96"
|
1273
1138
|
},
|
1274
1139
|
{
|
1275
|
-
"internalType": "
|
1276
|
-
"name": "
|
1277
|
-
"type": "
|
1140
|
+
"internalType": "UFixed",
|
1141
|
+
"name": "maxDiscountPercentage",
|
1142
|
+
"type": "uint160"
|
1278
1143
|
},
|
1279
1144
|
{
|
1280
|
-
"internalType": "
|
1281
|
-
"name": "
|
1282
|
-
"type": "
|
1145
|
+
"internalType": "uint32",
|
1146
|
+
"name": "maxReferralCount",
|
1147
|
+
"type": "uint32"
|
1283
1148
|
},
|
1284
1149
|
{
|
1285
|
-
"internalType": "
|
1286
|
-
"name": "
|
1287
|
-
"type": "
|
1150
|
+
"internalType": "Seconds",
|
1151
|
+
"name": "maxReferralLifetime",
|
1152
|
+
"type": "uint40"
|
1288
1153
|
},
|
1289
1154
|
{
|
1290
|
-
"internalType": "
|
1291
|
-
"name": "
|
1292
|
-
"type": "
|
1155
|
+
"internalType": "bool",
|
1156
|
+
"name": "allowSelfReferrals",
|
1157
|
+
"type": "bool"
|
1293
1158
|
},
|
1294
1159
|
{
|
1295
|
-
"internalType": "
|
1296
|
-
"name": "
|
1297
|
-
"type": "
|
1160
|
+
"internalType": "bool",
|
1161
|
+
"name": "allowRenewals",
|
1162
|
+
"type": "bool"
|
1298
1163
|
},
|
1299
1164
|
{
|
1300
|
-
"internalType": "
|
1301
|
-
"name": "
|
1302
|
-
"type": "
|
1165
|
+
"internalType": "UFixed",
|
1166
|
+
"name": "commissionPercentage",
|
1167
|
+
"type": "uint160"
|
1303
1168
|
},
|
1304
1169
|
{
|
1305
|
-
"internalType": "
|
1306
|
-
"name": "
|
1307
|
-
"type": "
|
1170
|
+
"internalType": "string",
|
1171
|
+
"name": "name",
|
1172
|
+
"type": "string"
|
1308
1173
|
},
|
1309
1174
|
{
|
1310
|
-
"internalType": "
|
1311
|
-
"name": "
|
1312
|
-
"type": "
|
1175
|
+
"internalType": "bytes",
|
1176
|
+
"name": "data",
|
1177
|
+
"type": "bytes"
|
1313
1178
|
}
|
1314
1179
|
],
|
1315
|
-
"internalType": "struct
|
1316
|
-
"name": "
|
1180
|
+
"internalType": "struct IDistribution.DistributorTypeInfo",
|
1181
|
+
"name": "info",
|
1317
1182
|
"type": "tuple"
|
1318
1183
|
}
|
1319
1184
|
],
|
1320
|
-
"name": "
|
1185
|
+
"name": "createDistributorType",
|
1321
1186
|
"outputs": [],
|
1322
1187
|
"stateMutability": "nonpayable",
|
1323
1188
|
"type": "function"
|
@@ -1326,58 +1191,53 @@
|
|
1326
1191
|
"inputs": [
|
1327
1192
|
{
|
1328
1193
|
"internalType": "NftId",
|
1329
|
-
"name": "
|
1194
|
+
"name": "poolNftId",
|
1330
1195
|
"type": "uint96"
|
1331
1196
|
},
|
1332
1197
|
{
|
1333
1198
|
"components": [
|
1334
1199
|
{
|
1335
|
-
"internalType": "
|
1336
|
-
"name": "
|
1337
|
-
"type": "
|
1338
|
-
},
|
1339
|
-
{
|
1340
|
-
"internalType": "bool",
|
1341
|
-
"name": "isInterceptingPolicyTransfers",
|
1342
|
-
"type": "bool"
|
1200
|
+
"internalType": "Amount",
|
1201
|
+
"name": "maxBalanceAmount",
|
1202
|
+
"type": "uint96"
|
1343
1203
|
},
|
1344
1204
|
{
|
1345
|
-
"internalType": "
|
1346
|
-
"name": "
|
1347
|
-
"type": "
|
1205
|
+
"internalType": "UFixed",
|
1206
|
+
"name": "collateralizationLevel",
|
1207
|
+
"type": "uint160"
|
1348
1208
|
},
|
1349
1209
|
{
|
1350
|
-
"internalType": "
|
1351
|
-
"name": "
|
1352
|
-
"type": "
|
1210
|
+
"internalType": "UFixed",
|
1211
|
+
"name": "retentionLevel",
|
1212
|
+
"type": "uint160"
|
1353
1213
|
},
|
1354
1214
|
{
|
1355
|
-
"internalType": "
|
1356
|
-
"name": "
|
1357
|
-
"type": "
|
1215
|
+
"internalType": "bool",
|
1216
|
+
"name": "isInterceptingBundleTransfers",
|
1217
|
+
"type": "bool"
|
1358
1218
|
},
|
1359
1219
|
{
|
1360
|
-
"internalType": "
|
1361
|
-
"name": "
|
1362
|
-
"type": "
|
1220
|
+
"internalType": "bool",
|
1221
|
+
"name": "isProcessingConfirmedClaims",
|
1222
|
+
"type": "bool"
|
1363
1223
|
},
|
1364
1224
|
{
|
1365
|
-
"internalType": "
|
1366
|
-
"name": "
|
1367
|
-
"type": "
|
1225
|
+
"internalType": "bool",
|
1226
|
+
"name": "isExternallyManaged",
|
1227
|
+
"type": "bool"
|
1368
1228
|
},
|
1369
1229
|
{
|
1370
|
-
"internalType": "
|
1371
|
-
"name": "
|
1372
|
-
"type": "
|
1230
|
+
"internalType": "bool",
|
1231
|
+
"name": "isVerifyingApplications",
|
1232
|
+
"type": "bool"
|
1373
1233
|
}
|
1374
1234
|
],
|
1375
|
-
"internalType": "struct IComponents.
|
1235
|
+
"internalType": "struct IComponents.PoolInfo",
|
1376
1236
|
"name": "info",
|
1377
1237
|
"type": "tuple"
|
1378
1238
|
}
|
1379
1239
|
],
|
1380
|
-
"name": "
|
1240
|
+
"name": "createPool",
|
1381
1241
|
"outputs": [],
|
1382
1242
|
"stateMutability": "nonpayable",
|
1383
1243
|
"type": "function"
|
@@ -1401,16 +1261,6 @@
|
|
1401
1261
|
"name": "distributorNftId",
|
1402
1262
|
"type": "uint96"
|
1403
1263
|
},
|
1404
|
-
{
|
1405
|
-
"internalType": "string",
|
1406
|
-
"name": "referralCode",
|
1407
|
-
"type": "string"
|
1408
|
-
},
|
1409
|
-
{
|
1410
|
-
"internalType": "UFixed",
|
1411
|
-
"name": "discountPercentage",
|
1412
|
-
"type": "uint256"
|
1413
|
-
},
|
1414
1264
|
{
|
1415
1265
|
"internalType": "uint32",
|
1416
1266
|
"name": "maxReferrals",
|
@@ -1421,11 +1271,21 @@
|
|
1421
1271
|
"name": "usedReferrals",
|
1422
1272
|
"type": "uint32"
|
1423
1273
|
},
|
1274
|
+
{
|
1275
|
+
"internalType": "UFixed",
|
1276
|
+
"name": "discountPercentage",
|
1277
|
+
"type": "uint160"
|
1278
|
+
},
|
1424
1279
|
{
|
1425
1280
|
"internalType": "Timestamp",
|
1426
1281
|
"name": "expiryAt",
|
1427
1282
|
"type": "uint40"
|
1428
1283
|
},
|
1284
|
+
{
|
1285
|
+
"internalType": "string",
|
1286
|
+
"name": "referralCode",
|
1287
|
+
"type": "string"
|
1288
|
+
},
|
1429
1289
|
{
|
1430
1290
|
"internalType": "bytes",
|
1431
1291
|
"name": "data",
|
@@ -1451,25 +1311,15 @@
|
|
1451
1311
|
"name": "requesterNftId",
|
1452
1312
|
"type": "uint96"
|
1453
1313
|
},
|
1454
|
-
{
|
1455
|
-
"internalType": "string",
|
1456
|
-
"name": "callbackMethodName",
|
1457
|
-
"type": "string"
|
1458
|
-
},
|
1459
1314
|
{
|
1460
1315
|
"internalType": "NftId",
|
1461
1316
|
"name": "oracleNftId",
|
1462
1317
|
"type": "uint96"
|
1463
1318
|
},
|
1464
1319
|
{
|
1465
|
-
"internalType": "
|
1466
|
-
"name": "
|
1467
|
-
"type": "
|
1468
|
-
},
|
1469
|
-
{
|
1470
|
-
"internalType": "bytes",
|
1471
|
-
"name": "responseData",
|
1472
|
-
"type": "bytes"
|
1320
|
+
"internalType": "bool",
|
1321
|
+
"name": "isCancelled",
|
1322
|
+
"type": "bool"
|
1473
1323
|
},
|
1474
1324
|
{
|
1475
1325
|
"internalType": "Timestamp",
|
@@ -1482,233 +1332,35 @@
|
|
1482
1332
|
"type": "uint40"
|
1483
1333
|
},
|
1484
1334
|
{
|
1485
|
-
"internalType": "
|
1486
|
-
"name": "
|
1487
|
-
"type": "
|
1488
|
-
}
|
1489
|
-
],
|
1490
|
-
"internalType": "struct IOracle.RequestInfo",
|
1491
|
-
"name": "request",
|
1492
|
-
"type": "tuple"
|
1493
|
-
}
|
1494
|
-
],
|
1495
|
-
"name": "createRequest",
|
1496
|
-
"outputs": [
|
1497
|
-
{
|
1498
|
-
"internalType": "RequestId",
|
1499
|
-
"name": "requestId",
|
1500
|
-
"type": "uint64"
|
1501
|
-
}
|
1502
|
-
],
|
1503
|
-
"stateMutability": "nonpayable",
|
1504
|
-
"type": "function"
|
1505
|
-
},
|
1506
|
-
{
|
1507
|
-
"inputs": [
|
1508
|
-
{
|
1509
|
-
"internalType": "RiskId",
|
1510
|
-
"name": "riskId",
|
1511
|
-
"type": "bytes8"
|
1512
|
-
},
|
1513
|
-
{
|
1514
|
-
"components": [
|
1515
|
-
{
|
1516
|
-
"internalType": "NftId",
|
1517
|
-
"name": "productNftId",
|
1518
|
-
"type": "uint96"
|
1519
|
-
},
|
1520
|
-
{
|
1521
|
-
"internalType": "Timestamp",
|
1522
|
-
"name": "createdAt",
|
1523
|
-
"type": "uint40"
|
1335
|
+
"internalType": "string",
|
1336
|
+
"name": "callbackMethodName",
|
1337
|
+
"type": "string"
|
1524
1338
|
},
|
1525
1339
|
{
|
1526
|
-
"internalType": "bytes",
|
1527
|
-
"name": "
|
1528
|
-
"type": "bytes"
|
1529
|
-
}
|
1530
|
-
],
|
1531
|
-
"internalType": "struct IRisk.RiskInfo",
|
1532
|
-
"name": "risk",
|
1533
|
-
"type": "tuple"
|
1534
|
-
}
|
1535
|
-
],
|
1536
|
-
"name": "createRisk",
|
1537
|
-
"outputs": [],
|
1538
|
-
"stateMutability": "nonpayable",
|
1539
|
-
"type": "function"
|
1540
|
-
},
|
1541
|
-
{
|
1542
|
-
"inputs": [
|
1543
|
-
{
|
1544
|
-
"internalType": "NftId",
|
1545
|
-
"name": "targetNftId",
|
1546
|
-
"type": "uint96"
|
1547
|
-
},
|
1548
|
-
{
|
1549
|
-
"internalType": "Amount",
|
1550
|
-
"name": "amount",
|
1551
|
-
"type": "uint96"
|
1552
|
-
}
|
1553
|
-
],
|
1554
|
-
"name": "decreaseBalance",
|
1555
|
-
"outputs": [
|
1556
|
-
{
|
1557
|
-
"internalType": "Amount",
|
1558
|
-
"name": "newBalance",
|
1559
|
-
"type": "uint96"
|
1560
|
-
}
|
1561
|
-
],
|
1562
|
-
"stateMutability": "nonpayable",
|
1563
|
-
"type": "function"
|
1564
|
-
},
|
1565
|
-
{
|
1566
|
-
"inputs": [
|
1567
|
-
{
|
1568
|
-
"internalType": "NftId",
|
1569
|
-
"name": "targetNftId",
|
1570
|
-
"type": "uint96"
|
1571
|
-
},
|
1572
|
-
{
|
1573
|
-
"internalType": "Amount",
|
1574
|
-
"name": "amount",
|
1575
|
-
"type": "uint96"
|
1576
|
-
}
|
1577
|
-
],
|
1578
|
-
"name": "decreaseFees",
|
1579
|
-
"outputs": [
|
1580
|
-
{
|
1581
|
-
"internalType": "Amount",
|
1582
|
-
"name": "newFeeBalance",
|
1583
|
-
"type": "uint96"
|
1584
|
-
}
|
1585
|
-
],
|
1586
|
-
"stateMutability": "nonpayable",
|
1587
|
-
"type": "function"
|
1588
|
-
},
|
1589
|
-
{
|
1590
|
-
"inputs": [
|
1591
|
-
{
|
1592
|
-
"internalType": "NftId",
|
1593
|
-
"name": "targetNftId",
|
1594
|
-
"type": "uint96"
|
1595
|
-
},
|
1596
|
-
{
|
1597
|
-
"internalType": "Amount",
|
1598
|
-
"name": "amount",
|
1599
|
-
"type": "uint96"
|
1600
|
-
}
|
1601
|
-
],
|
1602
|
-
"name": "decreaseLocked",
|
1603
|
-
"outputs": [
|
1604
|
-
{
|
1605
|
-
"internalType": "Amount",
|
1606
|
-
"name": "newBalance",
|
1607
|
-
"type": "uint96"
|
1608
|
-
}
|
1609
|
-
],
|
1610
|
-
"stateMutability": "nonpayable",
|
1611
|
-
"type": "function"
|
1612
|
-
},
|
1613
|
-
{
|
1614
|
-
"inputs": [
|
1615
|
-
{
|
1616
|
-
"internalType": "Key32",
|
1617
|
-
"name": "key32",
|
1618
|
-
"type": "bytes32"
|
1619
|
-
}
|
1620
|
-
],
|
1621
|
-
"name": "exists",
|
1622
|
-
"outputs": [
|
1623
|
-
{
|
1624
|
-
"internalType": "bool",
|
1625
|
-
"name": "",
|
1626
|
-
"type": "bool"
|
1627
|
-
}
|
1628
|
-
],
|
1629
|
-
"stateMutability": "view",
|
1630
|
-
"type": "function"
|
1631
|
-
},
|
1632
|
-
{
|
1633
|
-
"inputs": [
|
1634
|
-
{
|
1635
|
-
"internalType": "Key32",
|
1636
|
-
"name": "key32",
|
1637
|
-
"type": "bytes32"
|
1638
|
-
}
|
1639
|
-
],
|
1640
|
-
"name": "get",
|
1641
|
-
"outputs": [
|
1642
|
-
{
|
1643
|
-
"components": [
|
1644
|
-
{
|
1645
|
-
"components": [
|
1646
|
-
{
|
1647
|
-
"internalType": "ObjectType",
|
1648
|
-
"name": "objectType",
|
1649
|
-
"type": "uint8"
|
1650
|
-
},
|
1651
|
-
{
|
1652
|
-
"internalType": "StateId",
|
1653
|
-
"name": "state",
|
1654
|
-
"type": "uint8"
|
1655
|
-
},
|
1656
|
-
{
|
1657
|
-
"internalType": "Blocknumber",
|
1658
|
-
"name": "updatedIn",
|
1659
|
-
"type": "uint32"
|
1660
|
-
},
|
1661
|
-
{
|
1662
|
-
"internalType": "Blocknumber",
|
1663
|
-
"name": "createdIn",
|
1664
|
-
"type": "uint32"
|
1665
|
-
}
|
1666
|
-
],
|
1667
|
-
"internalType": "struct IKeyValueStore.Metadata",
|
1668
|
-
"name": "metadata",
|
1669
|
-
"type": "tuple"
|
1340
|
+
"internalType": "bytes",
|
1341
|
+
"name": "requestData",
|
1342
|
+
"type": "bytes"
|
1670
1343
|
},
|
1671
1344
|
{
|
1672
1345
|
"internalType": "bytes",
|
1673
|
-
"name": "
|
1346
|
+
"name": "responseData",
|
1674
1347
|
"type": "bytes"
|
1675
1348
|
}
|
1676
1349
|
],
|
1677
|
-
"internalType": "struct
|
1678
|
-
"name": "
|
1350
|
+
"internalType": "struct IOracle.RequestInfo",
|
1351
|
+
"name": "request",
|
1679
1352
|
"type": "tuple"
|
1680
1353
|
}
|
1681
1354
|
],
|
1682
|
-
"
|
1683
|
-
"type": "function"
|
1684
|
-
},
|
1685
|
-
{
|
1686
|
-
"inputs": [
|
1687
|
-
{
|
1688
|
-
"internalType": "NftId",
|
1689
|
-
"name": "targetNftId",
|
1690
|
-
"type": "uint96"
|
1691
|
-
}
|
1692
|
-
],
|
1693
|
-
"name": "getAmounts",
|
1355
|
+
"name": "createRequest",
|
1694
1356
|
"outputs": [
|
1695
1357
|
{
|
1696
|
-
"internalType": "
|
1697
|
-
"name": "
|
1698
|
-
"type": "
|
1699
|
-
},
|
1700
|
-
{
|
1701
|
-
"internalType": "Amount",
|
1702
|
-
"name": "lockedAmount",
|
1703
|
-
"type": "uint96"
|
1704
|
-
},
|
1705
|
-
{
|
1706
|
-
"internalType": "Amount",
|
1707
|
-
"name": "feeAmount",
|
1708
|
-
"type": "uint96"
|
1358
|
+
"internalType": "RequestId",
|
1359
|
+
"name": "requestId",
|
1360
|
+
"type": "uint64"
|
1709
1361
|
}
|
1710
1362
|
],
|
1711
|
-
"stateMutability": "
|
1363
|
+
"stateMutability": "nonpayable",
|
1712
1364
|
"type": "function"
|
1713
1365
|
},
|
1714
1366
|
{
|
@@ -1717,36 +1369,22 @@
|
|
1717
1369
|
"internalType": "NftId",
|
1718
1370
|
"name": "targetNftId",
|
1719
1371
|
"type": "uint96"
|
1720
|
-
}
|
1721
|
-
],
|
1722
|
-
"name": "getBalanceAmount",
|
1723
|
-
"outputs": [
|
1372
|
+
},
|
1724
1373
|
{
|
1725
1374
|
"internalType": "Amount",
|
1726
|
-
"name": "
|
1375
|
+
"name": "amount",
|
1727
1376
|
"type": "uint96"
|
1728
1377
|
}
|
1729
1378
|
],
|
1730
|
-
"
|
1731
|
-
"type": "function"
|
1732
|
-
},
|
1733
|
-
{
|
1734
|
-
"inputs": [
|
1735
|
-
{
|
1736
|
-
"internalType": "Key32",
|
1737
|
-
"name": "key32",
|
1738
|
-
"type": "bytes32"
|
1739
|
-
}
|
1740
|
-
],
|
1741
|
-
"name": "getData",
|
1379
|
+
"name": "decreaseBalance",
|
1742
1380
|
"outputs": [
|
1743
1381
|
{
|
1744
|
-
"internalType": "
|
1745
|
-
"name": "
|
1746
|
-
"type": "
|
1382
|
+
"internalType": "Amount",
|
1383
|
+
"name": "newBalance",
|
1384
|
+
"type": "uint96"
|
1747
1385
|
}
|
1748
1386
|
],
|
1749
|
-
"stateMutability": "
|
1387
|
+
"stateMutability": "nonpayable",
|
1750
1388
|
"type": "function"
|
1751
1389
|
},
|
1752
1390
|
{
|
@@ -1755,36 +1393,22 @@
|
|
1755
1393
|
"internalType": "NftId",
|
1756
1394
|
"name": "targetNftId",
|
1757
1395
|
"type": "uint96"
|
1758
|
-
}
|
1759
|
-
],
|
1760
|
-
"name": "getFeeAmount",
|
1761
|
-
"outputs": [
|
1396
|
+
},
|
1762
1397
|
{
|
1763
1398
|
"internalType": "Amount",
|
1764
|
-
"name": "
|
1399
|
+
"name": "amount",
|
1765
1400
|
"type": "uint96"
|
1766
1401
|
}
|
1767
1402
|
],
|
1768
|
-
"
|
1769
|
-
"type": "function"
|
1770
|
-
},
|
1771
|
-
{
|
1772
|
-
"inputs": [
|
1773
|
-
{
|
1774
|
-
"internalType": "ObjectType",
|
1775
|
-
"name": "objectType",
|
1776
|
-
"type": "uint8"
|
1777
|
-
}
|
1778
|
-
],
|
1779
|
-
"name": "getInitialState",
|
1403
|
+
"name": "decreaseFees",
|
1780
1404
|
"outputs": [
|
1781
1405
|
{
|
1782
|
-
"internalType": "
|
1783
|
-
"name": "",
|
1784
|
-
"type": "
|
1406
|
+
"internalType": "Amount",
|
1407
|
+
"name": "newFeeBalance",
|
1408
|
+
"type": "uint96"
|
1785
1409
|
}
|
1786
1410
|
],
|
1787
|
-
"stateMutability": "
|
1411
|
+
"stateMutability": "nonpayable",
|
1788
1412
|
"type": "function"
|
1789
1413
|
},
|
1790
1414
|
{
|
@@ -1793,58 +1417,22 @@
|
|
1793
1417
|
"internalType": "NftId",
|
1794
1418
|
"name": "targetNftId",
|
1795
1419
|
"type": "uint96"
|
1796
|
-
}
|
1797
|
-
],
|
1798
|
-
"name": "getLockedAmount",
|
1799
|
-
"outputs": [
|
1420
|
+
},
|
1800
1421
|
{
|
1801
1422
|
"internalType": "Amount",
|
1802
|
-
"name": "
|
1423
|
+
"name": "amount",
|
1803
1424
|
"type": "uint96"
|
1804
1425
|
}
|
1805
1426
|
],
|
1806
|
-
"
|
1807
|
-
"type": "function"
|
1808
|
-
},
|
1809
|
-
{
|
1810
|
-
"inputs": [
|
1811
|
-
{
|
1812
|
-
"internalType": "Key32",
|
1813
|
-
"name": "key32",
|
1814
|
-
"type": "bytes32"
|
1815
|
-
}
|
1816
|
-
],
|
1817
|
-
"name": "getMetadata",
|
1427
|
+
"name": "decreaseLocked",
|
1818
1428
|
"outputs": [
|
1819
1429
|
{
|
1820
|
-
"
|
1821
|
-
|
1822
|
-
|
1823
|
-
"name": "objectType",
|
1824
|
-
"type": "uint8"
|
1825
|
-
},
|
1826
|
-
{
|
1827
|
-
"internalType": "StateId",
|
1828
|
-
"name": "state",
|
1829
|
-
"type": "uint8"
|
1830
|
-
},
|
1831
|
-
{
|
1832
|
-
"internalType": "Blocknumber",
|
1833
|
-
"name": "updatedIn",
|
1834
|
-
"type": "uint32"
|
1835
|
-
},
|
1836
|
-
{
|
1837
|
-
"internalType": "Blocknumber",
|
1838
|
-
"name": "createdIn",
|
1839
|
-
"type": "uint32"
|
1840
|
-
}
|
1841
|
-
],
|
1842
|
-
"internalType": "struct IKeyValueStore.Metadata",
|
1843
|
-
"name": "metadata",
|
1844
|
-
"type": "tuple"
|
1430
|
+
"internalType": "Amount",
|
1431
|
+
"name": "newBalance",
|
1432
|
+
"type": "uint96"
|
1845
1433
|
}
|
1846
1434
|
],
|
1847
|
-
"stateMutability": "
|
1435
|
+
"stateMutability": "nonpayable",
|
1848
1436
|
"type": "function"
|
1849
1437
|
},
|
1850
1438
|
{
|
@@ -1855,26 +1443,7 @@
|
|
1855
1443
|
"type": "bytes32"
|
1856
1444
|
}
|
1857
1445
|
],
|
1858
|
-
"name": "
|
1859
|
-
"outputs": [
|
1860
|
-
{
|
1861
|
-
"internalType": "StateId",
|
1862
|
-
"name": "state",
|
1863
|
-
"type": "uint8"
|
1864
|
-
}
|
1865
|
-
],
|
1866
|
-
"stateMutability": "view",
|
1867
|
-
"type": "function"
|
1868
|
-
},
|
1869
|
-
{
|
1870
|
-
"inputs": [
|
1871
|
-
{
|
1872
|
-
"internalType": "ObjectType",
|
1873
|
-
"name": "objectType",
|
1874
|
-
"type": "uint8"
|
1875
|
-
}
|
1876
|
-
],
|
1877
|
-
"name": "hasLifecycle",
|
1446
|
+
"name": "exists",
|
1878
1447
|
"outputs": [
|
1879
1448
|
{
|
1880
1449
|
"internalType": "bool",
|
@@ -1891,46 +1460,27 @@
|
|
1891
1460
|
"internalType": "NftId",
|
1892
1461
|
"name": "targetNftId",
|
1893
1462
|
"type": "uint96"
|
1894
|
-
},
|
1895
|
-
{
|
1896
|
-
"internalType": "Amount",
|
1897
|
-
"name": "amount",
|
1898
|
-
"type": "uint96"
|
1899
1463
|
}
|
1900
1464
|
],
|
1901
|
-
"name": "
|
1465
|
+
"name": "getAmounts",
|
1902
1466
|
"outputs": [
|
1903
1467
|
{
|
1904
1468
|
"internalType": "Amount",
|
1905
|
-
"name": "
|
1906
|
-
"type": "uint96"
|
1907
|
-
}
|
1908
|
-
],
|
1909
|
-
"stateMutability": "nonpayable",
|
1910
|
-
"type": "function"
|
1911
|
-
},
|
1912
|
-
{
|
1913
|
-
"inputs": [
|
1914
|
-
{
|
1915
|
-
"internalType": "NftId",
|
1916
|
-
"name": "targetNftId",
|
1469
|
+
"name": "balanceAmount",
|
1917
1470
|
"type": "uint96"
|
1918
1471
|
},
|
1919
1472
|
{
|
1920
1473
|
"internalType": "Amount",
|
1921
|
-
"name": "
|
1474
|
+
"name": "lockedAmount",
|
1922
1475
|
"type": "uint96"
|
1923
|
-
}
|
1924
|
-
],
|
1925
|
-
"name": "increaseFees",
|
1926
|
-
"outputs": [
|
1476
|
+
},
|
1927
1477
|
{
|
1928
1478
|
"internalType": "Amount",
|
1929
|
-
"name": "
|
1479
|
+
"name": "feeAmount",
|
1930
1480
|
"type": "uint96"
|
1931
1481
|
}
|
1932
1482
|
],
|
1933
|
-
"stateMutability": "
|
1483
|
+
"stateMutability": "view",
|
1934
1484
|
"type": "function"
|
1935
1485
|
},
|
1936
1486
|
{
|
@@ -1939,39 +1489,77 @@
|
|
1939
1489
|
"internalType": "NftId",
|
1940
1490
|
"name": "targetNftId",
|
1941
1491
|
"type": "uint96"
|
1942
|
-
},
|
1943
|
-
{
|
1944
|
-
"internalType": "Amount",
|
1945
|
-
"name": "amount",
|
1946
|
-
"type": "uint96"
|
1947
1492
|
}
|
1948
1493
|
],
|
1949
|
-
"name": "
|
1494
|
+
"name": "getBalanceAmount",
|
1950
1495
|
"outputs": [
|
1951
1496
|
{
|
1952
1497
|
"internalType": "Amount",
|
1953
|
-
"name": "
|
1498
|
+
"name": "balanceAmount",
|
1954
1499
|
"type": "uint96"
|
1955
1500
|
}
|
1956
1501
|
],
|
1957
|
-
"stateMutability": "
|
1958
|
-
"type": "function"
|
1959
|
-
},
|
1960
|
-
{
|
1961
|
-
"inputs": [],
|
1962
|
-
"name": "initialize",
|
1963
|
-
"outputs": [],
|
1964
|
-
"stateMutability": "nonpayable",
|
1502
|
+
"stateMutability": "view",
|
1965
1503
|
"type": "function"
|
1966
1504
|
},
|
1967
1505
|
{
|
1968
|
-
"inputs": [
|
1969
|
-
|
1506
|
+
"inputs": [
|
1507
|
+
{
|
1508
|
+
"internalType": "NftId",
|
1509
|
+
"name": "bundleNftId",
|
1510
|
+
"type": "uint96"
|
1511
|
+
}
|
1512
|
+
],
|
1513
|
+
"name": "getBundleInfo",
|
1970
1514
|
"outputs": [
|
1971
1515
|
{
|
1972
|
-
"
|
1973
|
-
|
1974
|
-
|
1516
|
+
"components": [
|
1517
|
+
{
|
1518
|
+
"internalType": "Timestamp",
|
1519
|
+
"name": "activatedAt",
|
1520
|
+
"type": "uint40"
|
1521
|
+
},
|
1522
|
+
{
|
1523
|
+
"internalType": "Timestamp",
|
1524
|
+
"name": "expiredAt",
|
1525
|
+
"type": "uint40"
|
1526
|
+
},
|
1527
|
+
{
|
1528
|
+
"internalType": "Timestamp",
|
1529
|
+
"name": "closedAt",
|
1530
|
+
"type": "uint40"
|
1531
|
+
},
|
1532
|
+
{
|
1533
|
+
"internalType": "NftId",
|
1534
|
+
"name": "poolNftId",
|
1535
|
+
"type": "uint96"
|
1536
|
+
},
|
1537
|
+
{
|
1538
|
+
"components": [
|
1539
|
+
{
|
1540
|
+
"internalType": "UFixed",
|
1541
|
+
"name": "fractionalFee",
|
1542
|
+
"type": "uint160"
|
1543
|
+
},
|
1544
|
+
{
|
1545
|
+
"internalType": "Amount",
|
1546
|
+
"name": "fixedFee",
|
1547
|
+
"type": "uint96"
|
1548
|
+
}
|
1549
|
+
],
|
1550
|
+
"internalType": "struct Fee",
|
1551
|
+
"name": "fee",
|
1552
|
+
"type": "tuple"
|
1553
|
+
},
|
1554
|
+
{
|
1555
|
+
"internalType": "bytes",
|
1556
|
+
"name": "filter",
|
1557
|
+
"type": "bytes"
|
1558
|
+
}
|
1559
|
+
],
|
1560
|
+
"internalType": "struct IBundle.BundleInfo",
|
1561
|
+
"name": "bundle",
|
1562
|
+
"type": "tuple"
|
1975
1563
|
}
|
1976
1564
|
],
|
1977
1565
|
"stateMutability": "view",
|
@@ -1980,27 +1568,29 @@
|
|
1980
1568
|
{
|
1981
1569
|
"inputs": [
|
1982
1570
|
{
|
1983
|
-
"internalType": "
|
1984
|
-
"name": "
|
1985
|
-
"type": "
|
1986
|
-
},
|
1987
|
-
{
|
1988
|
-
"internalType": "StateId",
|
1989
|
-
"name": "fromId",
|
1990
|
-
"type": "uint8"
|
1991
|
-
},
|
1992
|
-
{
|
1993
|
-
"internalType": "StateId",
|
1994
|
-
"name": "toId",
|
1995
|
-
"type": "uint8"
|
1571
|
+
"internalType": "NftId",
|
1572
|
+
"name": "componentNftId",
|
1573
|
+
"type": "uint96"
|
1996
1574
|
}
|
1997
1575
|
],
|
1998
|
-
"name": "
|
1576
|
+
"name": "getComponentInfo",
|
1999
1577
|
"outputs": [
|
2000
1578
|
{
|
2001
|
-
"
|
2002
|
-
|
2003
|
-
|
1579
|
+
"components": [
|
1580
|
+
{
|
1581
|
+
"internalType": "string",
|
1582
|
+
"name": "name",
|
1583
|
+
"type": "string"
|
1584
|
+
},
|
1585
|
+
{
|
1586
|
+
"internalType": "contract TokenHandler",
|
1587
|
+
"name": "tokenHandler",
|
1588
|
+
"type": "address"
|
1589
|
+
}
|
1590
|
+
],
|
1591
|
+
"internalType": "struct IComponents.ComponentInfo",
|
1592
|
+
"name": "componentInfo",
|
1593
|
+
"type": "tuple"
|
2004
1594
|
}
|
2005
1595
|
],
|
2006
1596
|
"stateMutability": "view",
|
@@ -2009,359 +1599,310 @@
|
|
2009
1599
|
{
|
2010
1600
|
"inputs": [
|
2011
1601
|
{
|
2012
|
-
"internalType": "
|
2013
|
-
"name": "
|
2014
|
-
"type": "
|
2015
|
-
}
|
2016
|
-
],
|
2017
|
-
"name": "setAuthority",
|
2018
|
-
"outputs": [],
|
2019
|
-
"stateMutability": "nonpayable",
|
2020
|
-
"type": "function"
|
2021
|
-
},
|
2022
|
-
{
|
2023
|
-
"inputs": [
|
2024
|
-
{
|
2025
|
-
"internalType": "ObjectType",
|
2026
|
-
"name": "objectType",
|
2027
|
-
"type": "uint8"
|
2028
|
-
},
|
2029
|
-
{
|
2030
|
-
"internalType": "KeyId",
|
2031
|
-
"name": "id",
|
2032
|
-
"type": "bytes31"
|
1602
|
+
"internalType": "NftId",
|
1603
|
+
"name": "distributorNftId",
|
1604
|
+
"type": "uint96"
|
2033
1605
|
}
|
2034
1606
|
],
|
2035
|
-
"name": "
|
1607
|
+
"name": "getDistributorInfo",
|
2036
1608
|
"outputs": [
|
2037
1609
|
{
|
2038
|
-
"
|
2039
|
-
|
2040
|
-
|
1610
|
+
"components": [
|
1611
|
+
{
|
1612
|
+
"internalType": "DistributorType",
|
1613
|
+
"name": "distributorType",
|
1614
|
+
"type": "bytes8"
|
1615
|
+
},
|
1616
|
+
{
|
1617
|
+
"internalType": "bool",
|
1618
|
+
"name": "active",
|
1619
|
+
"type": "bool"
|
1620
|
+
},
|
1621
|
+
{
|
1622
|
+
"internalType": "uint32",
|
1623
|
+
"name": "numPoliciesSold",
|
1624
|
+
"type": "uint32"
|
1625
|
+
},
|
1626
|
+
{
|
1627
|
+
"internalType": "bytes",
|
1628
|
+
"name": "data",
|
1629
|
+
"type": "bytes"
|
1630
|
+
}
|
1631
|
+
],
|
1632
|
+
"internalType": "struct IDistribution.DistributorInfo",
|
1633
|
+
"name": "info",
|
1634
|
+
"type": "tuple"
|
2041
1635
|
}
|
2042
1636
|
],
|
2043
|
-
"stateMutability": "
|
1637
|
+
"stateMutability": "view",
|
2044
1638
|
"type": "function"
|
2045
1639
|
},
|
2046
1640
|
{
|
2047
1641
|
"inputs": [
|
2048
1642
|
{
|
2049
|
-
"internalType": "
|
2050
|
-
"name": "
|
2051
|
-
"type": "
|
2052
|
-
}
|
1643
|
+
"internalType": "DistributorType",
|
1644
|
+
"name": "distributorType",
|
1645
|
+
"type": "bytes8"
|
1646
|
+
}
|
1647
|
+
],
|
1648
|
+
"name": "getDistributorTypeInfo",
|
1649
|
+
"outputs": [
|
2053
1650
|
{
|
2054
1651
|
"components": [
|
2055
1652
|
{
|
2056
|
-
"internalType": "
|
2057
|
-
"name": "
|
2058
|
-
"type": "
|
1653
|
+
"internalType": "UFixed",
|
1654
|
+
"name": "minDiscountPercentage",
|
1655
|
+
"type": "uint160"
|
2059
1656
|
},
|
2060
1657
|
{
|
2061
1658
|
"internalType": "NftId",
|
2062
|
-
"name": "
|
1659
|
+
"name": "distributionNftId",
|
2063
1660
|
"type": "uint96"
|
2064
1661
|
},
|
2065
1662
|
{
|
2066
|
-
"internalType": "
|
2067
|
-
"name": "
|
2068
|
-
"type": "
|
2069
|
-
},
|
2070
|
-
{
|
2071
|
-
"internalType": "RiskId",
|
2072
|
-
"name": "riskId",
|
2073
|
-
"type": "bytes8"
|
2074
|
-
},
|
2075
|
-
{
|
2076
|
-
"internalType": "Amount",
|
2077
|
-
"name": "sumInsuredAmount",
|
2078
|
-
"type": "uint96"
|
1663
|
+
"internalType": "UFixed",
|
1664
|
+
"name": "maxDiscountPercentage",
|
1665
|
+
"type": "uint160"
|
2079
1666
|
},
|
2080
1667
|
{
|
2081
|
-
"internalType": "
|
2082
|
-
"name": "
|
2083
|
-
"type": "
|
1668
|
+
"internalType": "uint32",
|
1669
|
+
"name": "maxReferralCount",
|
1670
|
+
"type": "uint32"
|
2084
1671
|
},
|
2085
1672
|
{
|
2086
1673
|
"internalType": "Seconds",
|
2087
|
-
"name": "
|
1674
|
+
"name": "maxReferralLifetime",
|
2088
1675
|
"type": "uint40"
|
2089
1676
|
},
|
2090
1677
|
{
|
2091
|
-
"internalType": "
|
2092
|
-
"name": "
|
2093
|
-
"type": "
|
2094
|
-
},
|
2095
|
-
{
|
2096
|
-
"internalType": "bytes",
|
2097
|
-
"name": "processData",
|
2098
|
-
"type": "bytes"
|
2099
|
-
},
|
2100
|
-
{
|
2101
|
-
"internalType": "uint16",
|
2102
|
-
"name": "claimsCount",
|
2103
|
-
"type": "uint16"
|
2104
|
-
},
|
2105
|
-
{
|
2106
|
-
"internalType": "uint16",
|
2107
|
-
"name": "openClaimsCount",
|
2108
|
-
"type": "uint16"
|
2109
|
-
},
|
2110
|
-
{
|
2111
|
-
"internalType": "Amount",
|
2112
|
-
"name": "claimAmount",
|
2113
|
-
"type": "uint96"
|
1678
|
+
"internalType": "bool",
|
1679
|
+
"name": "allowSelfReferrals",
|
1680
|
+
"type": "bool"
|
2114
1681
|
},
|
2115
1682
|
{
|
2116
|
-
"internalType": "
|
2117
|
-
"name": "
|
2118
|
-
"type": "
|
1683
|
+
"internalType": "bool",
|
1684
|
+
"name": "allowRenewals",
|
1685
|
+
"type": "bool"
|
2119
1686
|
},
|
2120
1687
|
{
|
2121
|
-
"internalType": "
|
2122
|
-
"name": "
|
2123
|
-
"type": "
|
1688
|
+
"internalType": "UFixed",
|
1689
|
+
"name": "commissionPercentage",
|
1690
|
+
"type": "uint160"
|
2124
1691
|
},
|
2125
1692
|
{
|
2126
|
-
"internalType": "
|
2127
|
-
"name": "
|
2128
|
-
"type": "
|
1693
|
+
"internalType": "string",
|
1694
|
+
"name": "name",
|
1695
|
+
"type": "string"
|
2129
1696
|
},
|
2130
1697
|
{
|
2131
|
-
"internalType": "
|
2132
|
-
"name": "
|
2133
|
-
"type": "
|
1698
|
+
"internalType": "bytes",
|
1699
|
+
"name": "data",
|
1700
|
+
"type": "bytes"
|
2134
1701
|
}
|
2135
1702
|
],
|
2136
|
-
"internalType": "struct
|
2137
|
-
"name": "
|
1703
|
+
"internalType": "struct IDistribution.DistributorTypeInfo",
|
1704
|
+
"name": "info",
|
2138
1705
|
"type": "tuple"
|
2139
|
-
},
|
2140
|
-
{
|
2141
|
-
"internalType": "StateId",
|
2142
|
-
"name": "newState",
|
2143
|
-
"type": "uint8"
|
2144
1706
|
}
|
2145
1707
|
],
|
2146
|
-
"
|
2147
|
-
"outputs": [],
|
2148
|
-
"stateMutability": "nonpayable",
|
1708
|
+
"stateMutability": "view",
|
2149
1709
|
"type": "function"
|
2150
1710
|
},
|
2151
1711
|
{
|
2152
1712
|
"inputs": [
|
2153
1713
|
{
|
2154
1714
|
"internalType": "NftId",
|
2155
|
-
"name": "
|
1715
|
+
"name": "targetNftId",
|
2156
1716
|
"type": "uint96"
|
2157
|
-
}
|
1717
|
+
}
|
1718
|
+
],
|
1719
|
+
"name": "getFeeAmount",
|
1720
|
+
"outputs": [
|
2158
1721
|
{
|
2159
|
-
"internalType": "
|
2160
|
-
"name": "
|
2161
|
-
"type": "
|
1722
|
+
"internalType": "Amount",
|
1723
|
+
"name": "feeAmount",
|
1724
|
+
"type": "uint96"
|
2162
1725
|
}
|
2163
1726
|
],
|
2164
|
-
"
|
2165
|
-
"outputs": [],
|
2166
|
-
"stateMutability": "nonpayable",
|
1727
|
+
"stateMutability": "view",
|
2167
1728
|
"type": "function"
|
2168
1729
|
},
|
2169
1730
|
{
|
2170
1731
|
"inputs": [
|
2171
1732
|
{
|
2172
|
-
"internalType": "
|
2173
|
-
"name": "
|
2174
|
-
"type": "
|
2175
|
-
}
|
2176
|
-
|
2177
|
-
|
2178
|
-
|
2179
|
-
"internalType": "NftId",
|
2180
|
-
"name": "poolNftId",
|
2181
|
-
"type": "uint96"
|
2182
|
-
},
|
2183
|
-
{
|
2184
|
-
"components": [
|
2185
|
-
{
|
2186
|
-
"internalType": "UFixed",
|
2187
|
-
"name": "fractionalFee",
|
2188
|
-
"type": "uint256"
|
2189
|
-
},
|
2190
|
-
{
|
2191
|
-
"internalType": "uint256",
|
2192
|
-
"name": "fixedFee",
|
2193
|
-
"type": "uint256"
|
2194
|
-
}
|
2195
|
-
],
|
2196
|
-
"internalType": "struct Fee",
|
2197
|
-
"name": "fee",
|
2198
|
-
"type": "tuple"
|
2199
|
-
},
|
2200
|
-
{
|
2201
|
-
"internalType": "bytes",
|
2202
|
-
"name": "filter",
|
2203
|
-
"type": "bytes"
|
2204
|
-
},
|
2205
|
-
{
|
2206
|
-
"internalType": "Timestamp",
|
2207
|
-
"name": "activatedAt",
|
2208
|
-
"type": "uint40"
|
2209
|
-
},
|
2210
|
-
{
|
2211
|
-
"internalType": "Timestamp",
|
2212
|
-
"name": "expiredAt",
|
2213
|
-
"type": "uint40"
|
2214
|
-
},
|
2215
|
-
{
|
2216
|
-
"internalType": "Timestamp",
|
2217
|
-
"name": "closedAt",
|
2218
|
-
"type": "uint40"
|
2219
|
-
}
|
2220
|
-
],
|
2221
|
-
"internalType": "struct IBundle.BundleInfo",
|
2222
|
-
"name": "bundle",
|
2223
|
-
"type": "tuple"
|
2224
|
-
},
|
1733
|
+
"internalType": "ObjectType",
|
1734
|
+
"name": "objectType",
|
1735
|
+
"type": "uint8"
|
1736
|
+
}
|
1737
|
+
],
|
1738
|
+
"name": "getInitialState",
|
1739
|
+
"outputs": [
|
2225
1740
|
{
|
2226
1741
|
"internalType": "StateId",
|
2227
|
-
"name": "
|
1742
|
+
"name": "",
|
2228
1743
|
"type": "uint8"
|
2229
1744
|
}
|
2230
1745
|
],
|
2231
|
-
"
|
2232
|
-
"outputs": [],
|
2233
|
-
"stateMutability": "nonpayable",
|
1746
|
+
"stateMutability": "view",
|
2234
1747
|
"type": "function"
|
2235
1748
|
},
|
2236
1749
|
{
|
2237
1750
|
"inputs": [
|
2238
1751
|
{
|
2239
1752
|
"internalType": "NftId",
|
2240
|
-
"name": "
|
1753
|
+
"name": "targetNftId",
|
2241
1754
|
"type": "uint96"
|
2242
|
-
}
|
1755
|
+
}
|
1756
|
+
],
|
1757
|
+
"name": "getLockedAmount",
|
1758
|
+
"outputs": [
|
2243
1759
|
{
|
2244
|
-
"internalType": "
|
2245
|
-
"name": "
|
2246
|
-
"type": "
|
1760
|
+
"internalType": "Amount",
|
1761
|
+
"name": "lockedAmount",
|
1762
|
+
"type": "uint96"
|
2247
1763
|
}
|
2248
1764
|
],
|
2249
|
-
"
|
2250
|
-
"
|
2251
|
-
|
1765
|
+
"stateMutability": "view",
|
1766
|
+
"type": "function"
|
1767
|
+
},
|
1768
|
+
{
|
1769
|
+
"inputs": [
|
1770
|
+
{
|
1771
|
+
"internalType": "Key32",
|
1772
|
+
"name": "key32",
|
1773
|
+
"type": "bytes32"
|
1774
|
+
}
|
1775
|
+
],
|
1776
|
+
"name": "getMetadata",
|
1777
|
+
"outputs": [
|
1778
|
+
{
|
1779
|
+
"components": [
|
1780
|
+
{
|
1781
|
+
"internalType": "ObjectType",
|
1782
|
+
"name": "objectType",
|
1783
|
+
"type": "uint8"
|
1784
|
+
},
|
1785
|
+
{
|
1786
|
+
"internalType": "StateId",
|
1787
|
+
"name": "state",
|
1788
|
+
"type": "uint8"
|
1789
|
+
},
|
1790
|
+
{
|
1791
|
+
"internalType": "Blocknumber",
|
1792
|
+
"name": "updatedIn",
|
1793
|
+
"type": "uint40"
|
1794
|
+
}
|
1795
|
+
],
|
1796
|
+
"internalType": "struct IBaseStore.Metadata",
|
1797
|
+
"name": "metadata",
|
1798
|
+
"type": "tuple"
|
1799
|
+
}
|
1800
|
+
],
|
1801
|
+
"stateMutability": "view",
|
2252
1802
|
"type": "function"
|
2253
1803
|
},
|
2254
1804
|
{
|
2255
1805
|
"inputs": [
|
2256
1806
|
{
|
2257
1807
|
"internalType": "NftId",
|
2258
|
-
"name": "
|
1808
|
+
"name": "poolNftId",
|
2259
1809
|
"type": "uint96"
|
2260
|
-
}
|
2261
|
-
|
2262
|
-
|
2263
|
-
|
2264
|
-
"type": "uint16"
|
2265
|
-
},
|
1810
|
+
}
|
1811
|
+
],
|
1812
|
+
"name": "getPoolInfo",
|
1813
|
+
"outputs": [
|
2266
1814
|
{
|
2267
1815
|
"components": [
|
2268
1816
|
{
|
2269
1817
|
"internalType": "Amount",
|
2270
|
-
"name": "
|
1818
|
+
"name": "maxBalanceAmount",
|
2271
1819
|
"type": "uint96"
|
2272
1820
|
},
|
2273
1821
|
{
|
2274
|
-
"internalType": "
|
2275
|
-
"name": "
|
2276
|
-
"type": "
|
1822
|
+
"internalType": "UFixed",
|
1823
|
+
"name": "collateralizationLevel",
|
1824
|
+
"type": "uint160"
|
2277
1825
|
},
|
2278
1826
|
{
|
2279
|
-
"internalType": "
|
2280
|
-
"name": "
|
2281
|
-
"type": "
|
1827
|
+
"internalType": "UFixed",
|
1828
|
+
"name": "retentionLevel",
|
1829
|
+
"type": "uint160"
|
2282
1830
|
},
|
2283
1831
|
{
|
2284
|
-
"internalType": "
|
2285
|
-
"name": "
|
2286
|
-
"type": "
|
1832
|
+
"internalType": "bool",
|
1833
|
+
"name": "isInterceptingBundleTransfers",
|
1834
|
+
"type": "bool"
|
2287
1835
|
},
|
2288
1836
|
{
|
2289
|
-
"internalType": "
|
2290
|
-
"name": "
|
2291
|
-
"type": "
|
1837
|
+
"internalType": "bool",
|
1838
|
+
"name": "isProcessingConfirmedClaims",
|
1839
|
+
"type": "bool"
|
2292
1840
|
},
|
2293
1841
|
{
|
2294
|
-
"internalType": "
|
2295
|
-
"name": "
|
2296
|
-
"type": "
|
1842
|
+
"internalType": "bool",
|
1843
|
+
"name": "isExternallyManaged",
|
1844
|
+
"type": "bool"
|
2297
1845
|
},
|
2298
1846
|
{
|
2299
|
-
"internalType": "
|
2300
|
-
"name": "
|
2301
|
-
"type": "
|
1847
|
+
"internalType": "bool",
|
1848
|
+
"name": "isVerifyingApplications",
|
1849
|
+
"type": "bool"
|
2302
1850
|
}
|
2303
1851
|
],
|
2304
|
-
"internalType": "struct
|
2305
|
-
"name": "
|
1852
|
+
"internalType": "struct IComponents.PoolInfo",
|
1853
|
+
"name": "info",
|
2306
1854
|
"type": "tuple"
|
2307
|
-
},
|
2308
|
-
{
|
2309
|
-
"internalType": "StateId",
|
2310
|
-
"name": "newState",
|
2311
|
-
"type": "uint8"
|
2312
1855
|
}
|
2313
1856
|
],
|
2314
|
-
"
|
2315
|
-
"outputs": [],
|
2316
|
-
"stateMutability": "nonpayable",
|
1857
|
+
"stateMutability": "view",
|
2317
1858
|
"type": "function"
|
2318
1859
|
},
|
2319
1860
|
{
|
2320
1861
|
"inputs": [
|
2321
1862
|
{
|
2322
|
-
"internalType": "
|
2323
|
-
"name": "
|
2324
|
-
"type": "
|
2325
|
-
},
|
2326
|
-
{
|
2327
|
-
"internalType": "ClaimId",
|
2328
|
-
"name": "claimId",
|
2329
|
-
"type": "uint16"
|
2330
|
-
},
|
2331
|
-
{
|
2332
|
-
"internalType": "StateId",
|
2333
|
-
"name": "newState",
|
2334
|
-
"type": "uint8"
|
1863
|
+
"internalType": "ReferralId",
|
1864
|
+
"name": "referralId",
|
1865
|
+
"type": "bytes8"
|
2335
1866
|
}
|
2336
1867
|
],
|
2337
|
-
"name": "
|
2338
|
-
"outputs": [
|
2339
|
-
"stateMutability": "nonpayable",
|
2340
|
-
"type": "function"
|
2341
|
-
},
|
2342
|
-
{
|
2343
|
-
"inputs": [
|
2344
|
-
{
|
2345
|
-
"internalType": "NftId",
|
2346
|
-
"name": "componentNftId",
|
2347
|
-
"type": "uint96"
|
2348
|
-
},
|
1868
|
+
"name": "getReferralInfo",
|
1869
|
+
"outputs": [
|
2349
1870
|
{
|
2350
1871
|
"components": [
|
2351
1872
|
{
|
2352
|
-
"internalType": "
|
2353
|
-
"name": "
|
2354
|
-
"type": "
|
1873
|
+
"internalType": "NftId",
|
1874
|
+
"name": "distributionNftId",
|
1875
|
+
"type": "uint96"
|
2355
1876
|
},
|
2356
1877
|
{
|
2357
|
-
"internalType": "
|
2358
|
-
"name": "
|
2359
|
-
"type": "
|
1878
|
+
"internalType": "NftId",
|
1879
|
+
"name": "distributorNftId",
|
1880
|
+
"type": "uint96"
|
2360
1881
|
},
|
2361
1882
|
{
|
2362
|
-
"internalType": "
|
2363
|
-
"name": "
|
2364
|
-
"type": "
|
1883
|
+
"internalType": "uint32",
|
1884
|
+
"name": "maxReferrals",
|
1885
|
+
"type": "uint32"
|
1886
|
+
},
|
1887
|
+
{
|
1888
|
+
"internalType": "uint32",
|
1889
|
+
"name": "usedReferrals",
|
1890
|
+
"type": "uint32"
|
1891
|
+
},
|
1892
|
+
{
|
1893
|
+
"internalType": "UFixed",
|
1894
|
+
"name": "discountPercentage",
|
1895
|
+
"type": "uint160"
|
1896
|
+
},
|
1897
|
+
{
|
1898
|
+
"internalType": "Timestamp",
|
1899
|
+
"name": "expiryAt",
|
1900
|
+
"type": "uint40"
|
1901
|
+
},
|
1902
|
+
{
|
1903
|
+
"internalType": "string",
|
1904
|
+
"name": "referralCode",
|
1905
|
+
"type": "string"
|
2365
1906
|
},
|
2366
1907
|
{
|
2367
1908
|
"internalType": "bytes",
|
@@ -2369,312 +1910,243 @@
|
|
2369
1910
|
"type": "bytes"
|
2370
1911
|
}
|
2371
1912
|
],
|
2372
|
-
"internalType": "struct
|
2373
|
-
"name": "
|
1913
|
+
"internalType": "struct IDistribution.ReferralInfo",
|
1914
|
+
"name": "referralInfo",
|
2374
1915
|
"type": "tuple"
|
2375
|
-
},
|
2376
|
-
{
|
2377
|
-
"internalType": "StateId",
|
2378
|
-
"name": "newState",
|
2379
|
-
"type": "uint8"
|
2380
1916
|
}
|
2381
1917
|
],
|
2382
|
-
"
|
2383
|
-
"outputs": [],
|
2384
|
-
"stateMutability": "nonpayable",
|
1918
|
+
"stateMutability": "view",
|
2385
1919
|
"type": "function"
|
2386
1920
|
},
|
2387
1921
|
{
|
2388
1922
|
"inputs": [
|
2389
1923
|
{
|
2390
|
-
"internalType": "
|
2391
|
-
"name": "
|
2392
|
-
"type": "
|
2393
|
-
}
|
1924
|
+
"internalType": "RequestId",
|
1925
|
+
"name": "requestId",
|
1926
|
+
"type": "uint64"
|
1927
|
+
}
|
1928
|
+
],
|
1929
|
+
"name": "getRequestInfo",
|
1930
|
+
"outputs": [
|
2394
1931
|
{
|
2395
1932
|
"components": [
|
2396
1933
|
{
|
2397
|
-
"internalType": "
|
2398
|
-
"name": "
|
2399
|
-
"type": "
|
1934
|
+
"internalType": "NftId",
|
1935
|
+
"name": "requesterNftId",
|
1936
|
+
"type": "uint96"
|
1937
|
+
},
|
1938
|
+
{
|
1939
|
+
"internalType": "NftId",
|
1940
|
+
"name": "oracleNftId",
|
1941
|
+
"type": "uint96"
|
2400
1942
|
},
|
2401
1943
|
{
|
2402
1944
|
"internalType": "bool",
|
2403
|
-
"name": "
|
1945
|
+
"name": "isCancelled",
|
2404
1946
|
"type": "bool"
|
2405
1947
|
},
|
1948
|
+
{
|
1949
|
+
"internalType": "Timestamp",
|
1950
|
+
"name": "respondedAt",
|
1951
|
+
"type": "uint40"
|
1952
|
+
},
|
1953
|
+
{
|
1954
|
+
"internalType": "Timestamp",
|
1955
|
+
"name": "expiredAt",
|
1956
|
+
"type": "uint40"
|
1957
|
+
},
|
1958
|
+
{
|
1959
|
+
"internalType": "string",
|
1960
|
+
"name": "callbackMethodName",
|
1961
|
+
"type": "string"
|
1962
|
+
},
|
2406
1963
|
{
|
2407
1964
|
"internalType": "bytes",
|
2408
|
-
"name": "
|
1965
|
+
"name": "requestData",
|
2409
1966
|
"type": "bytes"
|
2410
1967
|
},
|
2411
1968
|
{
|
2412
|
-
"internalType": "
|
2413
|
-
"name": "
|
2414
|
-
"type": "
|
1969
|
+
"internalType": "bytes",
|
1970
|
+
"name": "responseData",
|
1971
|
+
"type": "bytes"
|
2415
1972
|
}
|
2416
1973
|
],
|
2417
|
-
"internalType": "struct
|
2418
|
-
"name": "
|
1974
|
+
"internalType": "struct IOracle.RequestInfo",
|
1975
|
+
"name": "request",
|
2419
1976
|
"type": "tuple"
|
2420
|
-
}
|
1977
|
+
}
|
1978
|
+
],
|
1979
|
+
"stateMutability": "view",
|
1980
|
+
"type": "function"
|
1981
|
+
},
|
1982
|
+
{
|
1983
|
+
"inputs": [
|
1984
|
+
{
|
1985
|
+
"internalType": "Key32",
|
1986
|
+
"name": "key32",
|
1987
|
+
"type": "bytes32"
|
1988
|
+
}
|
1989
|
+
],
|
1990
|
+
"name": "getState",
|
1991
|
+
"outputs": [
|
2421
1992
|
{
|
2422
1993
|
"internalType": "StateId",
|
2423
|
-
"name": "
|
1994
|
+
"name": "state",
|
1995
|
+
"type": "uint8"
|
1996
|
+
}
|
1997
|
+
],
|
1998
|
+
"stateMutability": "view",
|
1999
|
+
"type": "function"
|
2000
|
+
},
|
2001
|
+
{
|
2002
|
+
"inputs": [
|
2003
|
+
{
|
2004
|
+
"internalType": "ObjectType",
|
2005
|
+
"name": "objectType",
|
2424
2006
|
"type": "uint8"
|
2425
2007
|
}
|
2426
2008
|
],
|
2427
|
-
"name": "
|
2428
|
-
"outputs": [
|
2429
|
-
|
2009
|
+
"name": "hasLifecycle",
|
2010
|
+
"outputs": [
|
2011
|
+
{
|
2012
|
+
"internalType": "bool",
|
2013
|
+
"name": "",
|
2014
|
+
"type": "bool"
|
2015
|
+
}
|
2016
|
+
],
|
2017
|
+
"stateMutability": "view",
|
2430
2018
|
"type": "function"
|
2431
2019
|
},
|
2432
2020
|
{
|
2433
2021
|
"inputs": [
|
2434
2022
|
{
|
2435
2023
|
"internalType": "NftId",
|
2436
|
-
"name": "
|
2024
|
+
"name": "targetNftId",
|
2437
2025
|
"type": "uint96"
|
2438
2026
|
},
|
2439
2027
|
{
|
2440
|
-
"internalType": "
|
2441
|
-
"name": "
|
2442
|
-
"type": "
|
2028
|
+
"internalType": "Amount",
|
2029
|
+
"name": "amount",
|
2030
|
+
"type": "uint96"
|
2031
|
+
}
|
2032
|
+
],
|
2033
|
+
"name": "increaseBalance",
|
2034
|
+
"outputs": [
|
2035
|
+
{
|
2036
|
+
"internalType": "Amount",
|
2037
|
+
"name": "newBalance",
|
2038
|
+
"type": "uint96"
|
2443
2039
|
}
|
2444
2040
|
],
|
2445
|
-
"name": "updateDistributorState",
|
2446
|
-
"outputs": [],
|
2447
2041
|
"stateMutability": "nonpayable",
|
2448
2042
|
"type": "function"
|
2449
2043
|
},
|
2450
2044
|
{
|
2451
2045
|
"inputs": [
|
2452
2046
|
{
|
2453
|
-
"internalType": "
|
2454
|
-
"name": "
|
2455
|
-
"type": "
|
2047
|
+
"internalType": "NftId",
|
2048
|
+
"name": "targetNftId",
|
2049
|
+
"type": "uint96"
|
2456
2050
|
},
|
2457
2051
|
{
|
2458
|
-
"
|
2459
|
-
|
2460
|
-
|
2461
|
-
|
2462
|
-
|
2463
|
-
|
2464
|
-
|
2465
|
-
"internalType": "NftId",
|
2466
|
-
"name": "distributionNftId",
|
2467
|
-
"type": "uint96"
|
2468
|
-
},
|
2469
|
-
{
|
2470
|
-
"internalType": "UFixed",
|
2471
|
-
"name": "minDiscountPercentage",
|
2472
|
-
"type": "uint256"
|
2473
|
-
},
|
2474
|
-
{
|
2475
|
-
"internalType": "UFixed",
|
2476
|
-
"name": "maxDiscountPercentage",
|
2477
|
-
"type": "uint256"
|
2478
|
-
},
|
2479
|
-
{
|
2480
|
-
"internalType": "UFixed",
|
2481
|
-
"name": "commissionPercentage",
|
2482
|
-
"type": "uint256"
|
2483
|
-
},
|
2484
|
-
{
|
2485
|
-
"internalType": "uint32",
|
2486
|
-
"name": "maxReferralCount",
|
2487
|
-
"type": "uint32"
|
2488
|
-
},
|
2489
|
-
{
|
2490
|
-
"internalType": "Seconds",
|
2491
|
-
"name": "maxReferralLifetime",
|
2492
|
-
"type": "uint40"
|
2493
|
-
},
|
2494
|
-
{
|
2495
|
-
"internalType": "bool",
|
2496
|
-
"name": "allowSelfReferrals",
|
2497
|
-
"type": "bool"
|
2498
|
-
},
|
2499
|
-
{
|
2500
|
-
"internalType": "bool",
|
2501
|
-
"name": "allowRenewals",
|
2502
|
-
"type": "bool"
|
2503
|
-
},
|
2504
|
-
{
|
2505
|
-
"internalType": "bytes",
|
2506
|
-
"name": "data",
|
2507
|
-
"type": "bytes"
|
2508
|
-
}
|
2509
|
-
],
|
2510
|
-
"internalType": "struct IDistribution.DistributorTypeInfo",
|
2511
|
-
"name": "info",
|
2512
|
-
"type": "tuple"
|
2513
|
-
},
|
2052
|
+
"internalType": "Amount",
|
2053
|
+
"name": "amount",
|
2054
|
+
"type": "uint96"
|
2055
|
+
}
|
2056
|
+
],
|
2057
|
+
"name": "increaseFees",
|
2058
|
+
"outputs": [
|
2514
2059
|
{
|
2515
|
-
"internalType": "
|
2516
|
-
"name": "
|
2517
|
-
"type": "
|
2060
|
+
"internalType": "Amount",
|
2061
|
+
"name": "newFeeBalance",
|
2062
|
+
"type": "uint96"
|
2518
2063
|
}
|
2519
2064
|
],
|
2520
|
-
"name": "updateDistributorType",
|
2521
|
-
"outputs": [],
|
2522
2065
|
"stateMutability": "nonpayable",
|
2523
2066
|
"type": "function"
|
2524
2067
|
},
|
2525
2068
|
{
|
2526
2069
|
"inputs": [
|
2527
2070
|
{
|
2528
|
-
"internalType": "
|
2529
|
-
"name": "
|
2530
|
-
"type": "
|
2071
|
+
"internalType": "NftId",
|
2072
|
+
"name": "targetNftId",
|
2073
|
+
"type": "uint96"
|
2531
2074
|
},
|
2532
2075
|
{
|
2533
|
-
"internalType": "
|
2534
|
-
"name": "
|
2535
|
-
"type": "
|
2076
|
+
"internalType": "Amount",
|
2077
|
+
"name": "amount",
|
2078
|
+
"type": "uint96"
|
2536
2079
|
}
|
2537
2080
|
],
|
2538
|
-
"name": "
|
2081
|
+
"name": "increaseLocked",
|
2082
|
+
"outputs": [
|
2083
|
+
{
|
2084
|
+
"internalType": "Amount",
|
2085
|
+
"name": "newBalance",
|
2086
|
+
"type": "uint96"
|
2087
|
+
}
|
2088
|
+
],
|
2089
|
+
"stateMutability": "nonpayable",
|
2090
|
+
"type": "function"
|
2091
|
+
},
|
2092
|
+
{
|
2093
|
+
"inputs": [],
|
2094
|
+
"name": "initialize",
|
2539
2095
|
"outputs": [],
|
2540
2096
|
"stateMutability": "nonpayable",
|
2541
2097
|
"type": "function"
|
2542
2098
|
},
|
2099
|
+
{
|
2100
|
+
"inputs": [],
|
2101
|
+
"name": "isConsumingScheduledOp",
|
2102
|
+
"outputs": [
|
2103
|
+
{
|
2104
|
+
"internalType": "bytes4",
|
2105
|
+
"name": "",
|
2106
|
+
"type": "bytes4"
|
2107
|
+
}
|
2108
|
+
],
|
2109
|
+
"stateMutability": "view",
|
2110
|
+
"type": "function"
|
2111
|
+
},
|
2543
2112
|
{
|
2544
2113
|
"inputs": [
|
2545
2114
|
{
|
2546
|
-
"internalType": "
|
2547
|
-
"name": "
|
2548
|
-
"type": "
|
2115
|
+
"internalType": "ObjectType",
|
2116
|
+
"name": "objectType",
|
2117
|
+
"type": "uint8"
|
2549
2118
|
},
|
2550
2119
|
{
|
2551
|
-
"
|
2552
|
-
|
2553
|
-
|
2554
|
-
|
2555
|
-
|
2556
|
-
|
2557
|
-
|
2558
|
-
|
2559
|
-
|
2560
|
-
|
2561
|
-
|
2562
|
-
|
2563
|
-
|
2564
|
-
|
2565
|
-
|
2566
|
-
|
2567
|
-
|
2568
|
-
|
2569
|
-
|
2570
|
-
|
2571
|
-
|
2572
|
-
|
2573
|
-
|
2574
|
-
|
2575
|
-
|
2576
|
-
|
2577
|
-
|
2578
|
-
"name": "fixedFee",
|
2579
|
-
"type": "uint256"
|
2580
|
-
}
|
2581
|
-
],
|
2582
|
-
"internalType": "struct Fee",
|
2583
|
-
"name": "processingFee",
|
2584
|
-
"type": "tuple"
|
2585
|
-
},
|
2586
|
-
{
|
2587
|
-
"components": [
|
2588
|
-
{
|
2589
|
-
"internalType": "UFixed",
|
2590
|
-
"name": "fractionalFee",
|
2591
|
-
"type": "uint256"
|
2592
|
-
},
|
2593
|
-
{
|
2594
|
-
"internalType": "uint256",
|
2595
|
-
"name": "fixedFee",
|
2596
|
-
"type": "uint256"
|
2597
|
-
}
|
2598
|
-
],
|
2599
|
-
"internalType": "struct Fee",
|
2600
|
-
"name": "distributionFee",
|
2601
|
-
"type": "tuple"
|
2602
|
-
},
|
2603
|
-
{
|
2604
|
-
"components": [
|
2605
|
-
{
|
2606
|
-
"internalType": "UFixed",
|
2607
|
-
"name": "fractionalFee",
|
2608
|
-
"type": "uint256"
|
2609
|
-
},
|
2610
|
-
{
|
2611
|
-
"internalType": "uint256",
|
2612
|
-
"name": "fixedFee",
|
2613
|
-
"type": "uint256"
|
2614
|
-
}
|
2615
|
-
],
|
2616
|
-
"internalType": "struct Fee",
|
2617
|
-
"name": "minDistributionOwnerFee",
|
2618
|
-
"type": "tuple"
|
2619
|
-
},
|
2620
|
-
{
|
2621
|
-
"components": [
|
2622
|
-
{
|
2623
|
-
"internalType": "UFixed",
|
2624
|
-
"name": "fractionalFee",
|
2625
|
-
"type": "uint256"
|
2626
|
-
},
|
2627
|
-
{
|
2628
|
-
"internalType": "uint256",
|
2629
|
-
"name": "fixedFee",
|
2630
|
-
"type": "uint256"
|
2631
|
-
}
|
2632
|
-
],
|
2633
|
-
"internalType": "struct Fee",
|
2634
|
-
"name": "poolFee",
|
2635
|
-
"type": "tuple"
|
2636
|
-
},
|
2637
|
-
{
|
2638
|
-
"components": [
|
2639
|
-
{
|
2640
|
-
"internalType": "UFixed",
|
2641
|
-
"name": "fractionalFee",
|
2642
|
-
"type": "uint256"
|
2643
|
-
},
|
2644
|
-
{
|
2645
|
-
"internalType": "uint256",
|
2646
|
-
"name": "fixedFee",
|
2647
|
-
"type": "uint256"
|
2648
|
-
}
|
2649
|
-
],
|
2650
|
-
"internalType": "struct Fee",
|
2651
|
-
"name": "stakingFee",
|
2652
|
-
"type": "tuple"
|
2653
|
-
},
|
2654
|
-
{
|
2655
|
-
"components": [
|
2656
|
-
{
|
2657
|
-
"internalType": "UFixed",
|
2658
|
-
"name": "fractionalFee",
|
2659
|
-
"type": "uint256"
|
2660
|
-
},
|
2661
|
-
{
|
2662
|
-
"internalType": "uint256",
|
2663
|
-
"name": "fixedFee",
|
2664
|
-
"type": "uint256"
|
2665
|
-
}
|
2666
|
-
],
|
2667
|
-
"internalType": "struct Fee",
|
2668
|
-
"name": "performanceFee",
|
2669
|
-
"type": "tuple"
|
2670
|
-
}
|
2671
|
-
],
|
2672
|
-
"internalType": "struct IComponents.FeeInfo",
|
2673
|
-
"name": "info",
|
2674
|
-
"type": "tuple"
|
2120
|
+
"internalType": "StateId",
|
2121
|
+
"name": "fromId",
|
2122
|
+
"type": "uint8"
|
2123
|
+
},
|
2124
|
+
{
|
2125
|
+
"internalType": "StateId",
|
2126
|
+
"name": "toId",
|
2127
|
+
"type": "uint8"
|
2128
|
+
}
|
2129
|
+
],
|
2130
|
+
"name": "isValidTransition",
|
2131
|
+
"outputs": [
|
2132
|
+
{
|
2133
|
+
"internalType": "bool",
|
2134
|
+
"name": "",
|
2135
|
+
"type": "bool"
|
2136
|
+
}
|
2137
|
+
],
|
2138
|
+
"stateMutability": "view",
|
2139
|
+
"type": "function"
|
2140
|
+
},
|
2141
|
+
{
|
2142
|
+
"inputs": [
|
2143
|
+
{
|
2144
|
+
"internalType": "address",
|
2145
|
+
"name": "newAuthority",
|
2146
|
+
"type": "address"
|
2675
2147
|
}
|
2676
2148
|
],
|
2677
|
-
"name": "
|
2149
|
+
"name": "setAuthority",
|
2678
2150
|
"outputs": [],
|
2679
2151
|
"stateMutability": "nonpayable",
|
2680
2152
|
"type": "function"
|
@@ -2682,45 +2154,81 @@
|
|
2682
2154
|
{
|
2683
2155
|
"inputs": [
|
2684
2156
|
{
|
2685
|
-
"internalType": "
|
2686
|
-
"name": "
|
2687
|
-
"type": "
|
2157
|
+
"internalType": "ObjectType",
|
2158
|
+
"name": "objectType",
|
2159
|
+
"type": "uint8"
|
2688
2160
|
},
|
2689
2161
|
{
|
2690
|
-
"internalType": "
|
2691
|
-
"name": "
|
2692
|
-
"type": "
|
2162
|
+
"internalType": "KeyId",
|
2163
|
+
"name": "id",
|
2164
|
+
"type": "bytes31"
|
2165
|
+
}
|
2166
|
+
],
|
2167
|
+
"name": "toKey32",
|
2168
|
+
"outputs": [
|
2169
|
+
{
|
2170
|
+
"internalType": "Key32",
|
2171
|
+
"name": "",
|
2172
|
+
"type": "bytes32"
|
2173
|
+
}
|
2174
|
+
],
|
2175
|
+
"stateMutability": "pure",
|
2176
|
+
"type": "function"
|
2177
|
+
},
|
2178
|
+
{
|
2179
|
+
"inputs": [
|
2180
|
+
{
|
2181
|
+
"internalType": "NftId",
|
2182
|
+
"name": "bundleNftId",
|
2183
|
+
"type": "uint96"
|
2693
2184
|
},
|
2694
2185
|
{
|
2695
2186
|
"components": [
|
2696
2187
|
{
|
2697
|
-
"internalType": "
|
2698
|
-
"name": "
|
2699
|
-
"type": "
|
2188
|
+
"internalType": "Timestamp",
|
2189
|
+
"name": "activatedAt",
|
2190
|
+
"type": "uint40"
|
2700
2191
|
},
|
2701
2192
|
{
|
2702
|
-
"internalType": "
|
2703
|
-
"name": "
|
2193
|
+
"internalType": "Timestamp",
|
2194
|
+
"name": "expiredAt",
|
2195
|
+
"type": "uint40"
|
2196
|
+
},
|
2197
|
+
{
|
2198
|
+
"internalType": "Timestamp",
|
2199
|
+
"name": "closedAt",
|
2200
|
+
"type": "uint40"
|
2201
|
+
},
|
2202
|
+
{
|
2203
|
+
"internalType": "NftId",
|
2204
|
+
"name": "poolNftId",
|
2704
2205
|
"type": "uint96"
|
2705
2206
|
},
|
2706
2207
|
{
|
2707
|
-
"
|
2708
|
-
|
2709
|
-
|
2208
|
+
"components": [
|
2209
|
+
{
|
2210
|
+
"internalType": "UFixed",
|
2211
|
+
"name": "fractionalFee",
|
2212
|
+
"type": "uint160"
|
2213
|
+
},
|
2214
|
+
{
|
2215
|
+
"internalType": "Amount",
|
2216
|
+
"name": "fixedFee",
|
2217
|
+
"type": "uint96"
|
2218
|
+
}
|
2219
|
+
],
|
2220
|
+
"internalType": "struct Fee",
|
2221
|
+
"name": "fee",
|
2222
|
+
"type": "tuple"
|
2710
2223
|
},
|
2711
2224
|
{
|
2712
2225
|
"internalType": "bytes",
|
2713
|
-
"name": "
|
2226
|
+
"name": "filter",
|
2714
2227
|
"type": "bytes"
|
2715
|
-
},
|
2716
|
-
{
|
2717
|
-
"internalType": "Timestamp",
|
2718
|
-
"name": "paidAt",
|
2719
|
-
"type": "uint40"
|
2720
2228
|
}
|
2721
2229
|
],
|
2722
|
-
"internalType": "struct
|
2723
|
-
"name": "
|
2230
|
+
"internalType": "struct IBundle.BundleInfo",
|
2231
|
+
"name": "bundle",
|
2724
2232
|
"type": "tuple"
|
2725
2233
|
},
|
2726
2234
|
{
|
@@ -2729,7 +2237,7 @@
|
|
2729
2237
|
"type": "uint8"
|
2730
2238
|
}
|
2731
2239
|
],
|
2732
|
-
"name": "
|
2240
|
+
"name": "updateBundle",
|
2733
2241
|
"outputs": [],
|
2734
2242
|
"stateMutability": "nonpayable",
|
2735
2243
|
"type": "function"
|
@@ -2738,21 +2246,16 @@
|
|
2738
2246
|
"inputs": [
|
2739
2247
|
{
|
2740
2248
|
"internalType": "NftId",
|
2741
|
-
"name": "
|
2249
|
+
"name": "bundleNftId",
|
2742
2250
|
"type": "uint96"
|
2743
2251
|
},
|
2744
|
-
{
|
2745
|
-
"internalType": "PayoutId",
|
2746
|
-
"name": "payoutId",
|
2747
|
-
"type": "uint40"
|
2748
|
-
},
|
2749
2252
|
{
|
2750
2253
|
"internalType": "StateId",
|
2751
2254
|
"name": "newState",
|
2752
2255
|
"type": "uint8"
|
2753
2256
|
}
|
2754
2257
|
],
|
2755
|
-
"name": "
|
2258
|
+
"name": "updateBundleState",
|
2756
2259
|
"outputs": [],
|
2757
2260
|
"stateMutability": "nonpayable",
|
2758
2261
|
"type": "function"
|
@@ -2761,94 +2264,24 @@
|
|
2761
2264
|
"inputs": [
|
2762
2265
|
{
|
2763
2266
|
"internalType": "NftId",
|
2764
|
-
"name": "
|
2267
|
+
"name": "componentNftId",
|
2765
2268
|
"type": "uint96"
|
2766
2269
|
},
|
2767
2270
|
{
|
2768
2271
|
"components": [
|
2769
2272
|
{
|
2770
|
-
"internalType": "
|
2771
|
-
"name": "
|
2772
|
-
"type": "
|
2773
|
-
},
|
2774
|
-
{
|
2775
|
-
"internalType": "NftId",
|
2776
|
-
"name": "bundleNftId",
|
2777
|
-
"type": "uint96"
|
2778
|
-
},
|
2779
|
-
{
|
2780
|
-
"internalType": "ReferralId",
|
2781
|
-
"name": "referralId",
|
2782
|
-
"type": "bytes8"
|
2783
|
-
},
|
2784
|
-
{
|
2785
|
-
"internalType": "RiskId",
|
2786
|
-
"name": "riskId",
|
2787
|
-
"type": "bytes8"
|
2788
|
-
},
|
2789
|
-
{
|
2790
|
-
"internalType": "Amount",
|
2791
|
-
"name": "sumInsuredAmount",
|
2792
|
-
"type": "uint96"
|
2793
|
-
},
|
2794
|
-
{
|
2795
|
-
"internalType": "Amount",
|
2796
|
-
"name": "premiumAmount",
|
2797
|
-
"type": "uint96"
|
2798
|
-
},
|
2799
|
-
{
|
2800
|
-
"internalType": "Seconds",
|
2801
|
-
"name": "lifetime",
|
2802
|
-
"type": "uint40"
|
2803
|
-
},
|
2804
|
-
{
|
2805
|
-
"internalType": "bytes",
|
2806
|
-
"name": "applicationData",
|
2807
|
-
"type": "bytes"
|
2808
|
-
},
|
2809
|
-
{
|
2810
|
-
"internalType": "bytes",
|
2811
|
-
"name": "processData",
|
2812
|
-
"type": "bytes"
|
2813
|
-
},
|
2814
|
-
{
|
2815
|
-
"internalType": "uint16",
|
2816
|
-
"name": "claimsCount",
|
2817
|
-
"type": "uint16"
|
2818
|
-
},
|
2819
|
-
{
|
2820
|
-
"internalType": "uint16",
|
2821
|
-
"name": "openClaimsCount",
|
2822
|
-
"type": "uint16"
|
2823
|
-
},
|
2824
|
-
{
|
2825
|
-
"internalType": "Amount",
|
2826
|
-
"name": "claimAmount",
|
2827
|
-
"type": "uint96"
|
2828
|
-
},
|
2829
|
-
{
|
2830
|
-
"internalType": "Amount",
|
2831
|
-
"name": "payoutAmount",
|
2832
|
-
"type": "uint96"
|
2833
|
-
},
|
2834
|
-
{
|
2835
|
-
"internalType": "Timestamp",
|
2836
|
-
"name": "activatedAt",
|
2837
|
-
"type": "uint40"
|
2838
|
-
},
|
2839
|
-
{
|
2840
|
-
"internalType": "Timestamp",
|
2841
|
-
"name": "expiredAt",
|
2842
|
-
"type": "uint40"
|
2273
|
+
"internalType": "string",
|
2274
|
+
"name": "name",
|
2275
|
+
"type": "string"
|
2843
2276
|
},
|
2844
2277
|
{
|
2845
|
-
"internalType": "
|
2846
|
-
"name": "
|
2847
|
-
"type": "
|
2278
|
+
"internalType": "contract TokenHandler",
|
2279
|
+
"name": "tokenHandler",
|
2280
|
+
"type": "address"
|
2848
2281
|
}
|
2849
2282
|
],
|
2850
|
-
"internalType": "struct
|
2851
|
-
"name": "
|
2283
|
+
"internalType": "struct IComponents.ComponentInfo",
|
2284
|
+
"name": "componentInfo",
|
2852
2285
|
"type": "tuple"
|
2853
2286
|
},
|
2854
2287
|
{
|
@@ -2857,7 +2290,7 @@
|
|
2857
2290
|
"type": "uint8"
|
2858
2291
|
}
|
2859
2292
|
],
|
2860
|
-
"name": "
|
2293
|
+
"name": "updateComponent",
|
2861
2294
|
"outputs": [],
|
2862
2295
|
"stateMutability": "nonpayable",
|
2863
2296
|
"type": "function"
|
@@ -2866,94 +2299,34 @@
|
|
2866
2299
|
"inputs": [
|
2867
2300
|
{
|
2868
2301
|
"internalType": "NftId",
|
2869
|
-
"name": "
|
2302
|
+
"name": "distributorNftId",
|
2870
2303
|
"type": "uint96"
|
2871
2304
|
},
|
2872
2305
|
{
|
2873
2306
|
"components": [
|
2874
2307
|
{
|
2875
|
-
"internalType": "
|
2876
|
-
"name": "
|
2877
|
-
"type": "uint96"
|
2878
|
-
},
|
2879
|
-
{
|
2880
|
-
"internalType": "NftId",
|
2881
|
-
"name": "bundleNftId",
|
2882
|
-
"type": "uint96"
|
2883
|
-
},
|
2884
|
-
{
|
2885
|
-
"internalType": "ReferralId",
|
2886
|
-
"name": "referralId",
|
2887
|
-
"type": "bytes8"
|
2888
|
-
},
|
2889
|
-
{
|
2890
|
-
"internalType": "RiskId",
|
2891
|
-
"name": "riskId",
|
2308
|
+
"internalType": "DistributorType",
|
2309
|
+
"name": "distributorType",
|
2892
2310
|
"type": "bytes8"
|
2893
2311
|
},
|
2894
2312
|
{
|
2895
|
-
"internalType": "
|
2896
|
-
"name": "
|
2897
|
-
"type": "
|
2898
|
-
},
|
2899
|
-
{
|
2900
|
-
"internalType": "Amount",
|
2901
|
-
"name": "premiumAmount",
|
2902
|
-
"type": "uint96"
|
2903
|
-
},
|
2904
|
-
{
|
2905
|
-
"internalType": "Seconds",
|
2906
|
-
"name": "lifetime",
|
2907
|
-
"type": "uint40"
|
2313
|
+
"internalType": "bool",
|
2314
|
+
"name": "active",
|
2315
|
+
"type": "bool"
|
2908
2316
|
},
|
2909
2317
|
{
|
2910
|
-
"internalType": "
|
2911
|
-
"name": "
|
2912
|
-
"type": "
|
2318
|
+
"internalType": "uint32",
|
2319
|
+
"name": "numPoliciesSold",
|
2320
|
+
"type": "uint32"
|
2913
2321
|
},
|
2914
2322
|
{
|
2915
2323
|
"internalType": "bytes",
|
2916
|
-
"name": "
|
2324
|
+
"name": "data",
|
2917
2325
|
"type": "bytes"
|
2918
|
-
},
|
2919
|
-
{
|
2920
|
-
"internalType": "uint16",
|
2921
|
-
"name": "claimsCount",
|
2922
|
-
"type": "uint16"
|
2923
|
-
},
|
2924
|
-
{
|
2925
|
-
"internalType": "uint16",
|
2926
|
-
"name": "openClaimsCount",
|
2927
|
-
"type": "uint16"
|
2928
|
-
},
|
2929
|
-
{
|
2930
|
-
"internalType": "Amount",
|
2931
|
-
"name": "claimAmount",
|
2932
|
-
"type": "uint96"
|
2933
|
-
},
|
2934
|
-
{
|
2935
|
-
"internalType": "Amount",
|
2936
|
-
"name": "payoutAmount",
|
2937
|
-
"type": "uint96"
|
2938
|
-
},
|
2939
|
-
{
|
2940
|
-
"internalType": "Timestamp",
|
2941
|
-
"name": "activatedAt",
|
2942
|
-
"type": "uint40"
|
2943
|
-
},
|
2944
|
-
{
|
2945
|
-
"internalType": "Timestamp",
|
2946
|
-
"name": "expiredAt",
|
2947
|
-
"type": "uint40"
|
2948
|
-
},
|
2949
|
-
{
|
2950
|
-
"internalType": "Timestamp",
|
2951
|
-
"name": "closedAt",
|
2952
|
-
"type": "uint40"
|
2953
2326
|
}
|
2954
2327
|
],
|
2955
|
-
"internalType": "struct
|
2956
|
-
"name": "
|
2328
|
+
"internalType": "struct IDistribution.DistributorInfo",
|
2329
|
+
"name": "info",
|
2957
2330
|
"type": "tuple"
|
2958
2331
|
},
|
2959
2332
|
{
|
@@ -2962,7 +2335,7 @@
|
|
2962
2335
|
"type": "uint8"
|
2963
2336
|
}
|
2964
2337
|
],
|
2965
|
-
"name": "
|
2338
|
+
"name": "updateDistributor",
|
2966
2339
|
"outputs": [],
|
2967
2340
|
"stateMutability": "nonpayable",
|
2968
2341
|
"type": "function"
|
@@ -2971,7 +2344,7 @@
|
|
2971
2344
|
"inputs": [
|
2972
2345
|
{
|
2973
2346
|
"internalType": "NftId",
|
2974
|
-
"name": "
|
2347
|
+
"name": "distributorNftId",
|
2975
2348
|
"type": "uint96"
|
2976
2349
|
},
|
2977
2350
|
{
|
@@ -2980,7 +2353,7 @@
|
|
2980
2353
|
"type": "uint8"
|
2981
2354
|
}
|
2982
2355
|
],
|
2983
|
-
"name": "
|
2356
|
+
"name": "updateDistributorState",
|
2984
2357
|
"outputs": [],
|
2985
2358
|
"stateMutability": "nonpayable",
|
2986
2359
|
"type": "function"
|
@@ -2988,49 +2361,64 @@
|
|
2988
2361
|
{
|
2989
2362
|
"inputs": [
|
2990
2363
|
{
|
2991
|
-
"internalType": "
|
2992
|
-
"name": "
|
2993
|
-
"type": "
|
2364
|
+
"internalType": "DistributorType",
|
2365
|
+
"name": "distributorType",
|
2366
|
+
"type": "bytes8"
|
2994
2367
|
},
|
2995
2368
|
{
|
2996
2369
|
"components": [
|
2997
2370
|
{
|
2998
|
-
"internalType": "
|
2999
|
-
"name": "
|
2371
|
+
"internalType": "UFixed",
|
2372
|
+
"name": "minDiscountPercentage",
|
2373
|
+
"type": "uint160"
|
2374
|
+
},
|
2375
|
+
{
|
2376
|
+
"internalType": "NftId",
|
2377
|
+
"name": "distributionNftId",
|
3000
2378
|
"type": "uint96"
|
3001
2379
|
},
|
3002
2380
|
{
|
3003
|
-
"internalType": "
|
3004
|
-
"name": "
|
3005
|
-
"type": "
|
2381
|
+
"internalType": "UFixed",
|
2382
|
+
"name": "maxDiscountPercentage",
|
2383
|
+
"type": "uint160"
|
3006
2384
|
},
|
3007
2385
|
{
|
3008
|
-
"internalType": "
|
3009
|
-
"name": "
|
3010
|
-
"type": "
|
2386
|
+
"internalType": "uint32",
|
2387
|
+
"name": "maxReferralCount",
|
2388
|
+
"type": "uint32"
|
2389
|
+
},
|
2390
|
+
{
|
2391
|
+
"internalType": "Seconds",
|
2392
|
+
"name": "maxReferralLifetime",
|
2393
|
+
"type": "uint40"
|
3011
2394
|
},
|
3012
2395
|
{
|
3013
2396
|
"internalType": "bool",
|
3014
|
-
"name": "
|
2397
|
+
"name": "allowSelfReferrals",
|
3015
2398
|
"type": "bool"
|
3016
2399
|
},
|
3017
2400
|
{
|
3018
2401
|
"internalType": "bool",
|
3019
|
-
"name": "
|
2402
|
+
"name": "allowRenewals",
|
3020
2403
|
"type": "bool"
|
3021
2404
|
},
|
3022
2405
|
{
|
3023
2406
|
"internalType": "UFixed",
|
3024
|
-
"name": "
|
3025
|
-
"type": "
|
2407
|
+
"name": "commissionPercentage",
|
2408
|
+
"type": "uint160"
|
2409
|
+
},
|
2410
|
+
{
|
2411
|
+
"internalType": "string",
|
2412
|
+
"name": "name",
|
2413
|
+
"type": "string"
|
3026
2414
|
},
|
3027
2415
|
{
|
3028
|
-
"internalType": "
|
3029
|
-
"name": "
|
3030
|
-
"type": "
|
2416
|
+
"internalType": "bytes",
|
2417
|
+
"name": "data",
|
2418
|
+
"type": "bytes"
|
3031
2419
|
}
|
3032
2420
|
],
|
3033
|
-
"internalType": "struct
|
2421
|
+
"internalType": "struct IDistribution.DistributorTypeInfo",
|
3034
2422
|
"name": "info",
|
3035
2423
|
"type": "tuple"
|
3036
2424
|
},
|
@@ -3040,7 +2428,7 @@
|
|
3040
2428
|
"type": "uint8"
|
3041
2429
|
}
|
3042
2430
|
],
|
3043
|
-
"name": "
|
2431
|
+
"name": "updateDistributorType",
|
3044
2432
|
"outputs": [],
|
3045
2433
|
"stateMutability": "nonpayable",
|
3046
2434
|
"type": "function"
|
@@ -3048,9 +2436,9 @@
|
|
3048
2436
|
{
|
3049
2437
|
"inputs": [
|
3050
2438
|
{
|
3051
|
-
"internalType": "
|
3052
|
-
"name": "
|
3053
|
-
"type": "
|
2439
|
+
"internalType": "DistributorType",
|
2440
|
+
"name": "distributorType",
|
2441
|
+
"type": "bytes8"
|
3054
2442
|
},
|
3055
2443
|
{
|
3056
2444
|
"internalType": "StateId",
|
@@ -3058,7 +2446,7 @@
|
|
3058
2446
|
"type": "uint8"
|
3059
2447
|
}
|
3060
2448
|
],
|
3061
|
-
"name": "
|
2449
|
+
"name": "updateDistributorTypeState",
|
3062
2450
|
"outputs": [],
|
3063
2451
|
"stateMutability": "nonpayable",
|
3064
2452
|
"type": "function"
|
@@ -3067,53 +2455,48 @@
|
|
3067
2455
|
"inputs": [
|
3068
2456
|
{
|
3069
2457
|
"internalType": "NftId",
|
3070
|
-
"name": "
|
2458
|
+
"name": "poolNftId",
|
3071
2459
|
"type": "uint96"
|
3072
2460
|
},
|
3073
2461
|
{
|
3074
2462
|
"components": [
|
3075
2463
|
{
|
3076
|
-
"internalType": "
|
3077
|
-
"name": "
|
3078
|
-
"type": "
|
3079
|
-
},
|
3080
|
-
{
|
3081
|
-
"internalType": "bool",
|
3082
|
-
"name": "isInterceptingPolicyTransfers",
|
3083
|
-
"type": "bool"
|
2464
|
+
"internalType": "Amount",
|
2465
|
+
"name": "maxBalanceAmount",
|
2466
|
+
"type": "uint96"
|
3084
2467
|
},
|
3085
2468
|
{
|
3086
|
-
"internalType": "
|
3087
|
-
"name": "
|
3088
|
-
"type": "
|
2469
|
+
"internalType": "UFixed",
|
2470
|
+
"name": "collateralizationLevel",
|
2471
|
+
"type": "uint160"
|
3089
2472
|
},
|
3090
2473
|
{
|
3091
|
-
"internalType": "
|
3092
|
-
"name": "
|
3093
|
-
"type": "
|
2474
|
+
"internalType": "UFixed",
|
2475
|
+
"name": "retentionLevel",
|
2476
|
+
"type": "uint160"
|
3094
2477
|
},
|
3095
2478
|
{
|
3096
|
-
"internalType": "
|
3097
|
-
"name": "
|
3098
|
-
"type": "
|
2479
|
+
"internalType": "bool",
|
2480
|
+
"name": "isInterceptingBundleTransfers",
|
2481
|
+
"type": "bool"
|
3099
2482
|
},
|
3100
2483
|
{
|
3101
|
-
"internalType": "
|
3102
|
-
"name": "
|
3103
|
-
"type": "
|
2484
|
+
"internalType": "bool",
|
2485
|
+
"name": "isProcessingConfirmedClaims",
|
2486
|
+
"type": "bool"
|
3104
2487
|
},
|
3105
2488
|
{
|
3106
|
-
"internalType": "
|
3107
|
-
"name": "
|
3108
|
-
"type": "
|
2489
|
+
"internalType": "bool",
|
2490
|
+
"name": "isExternallyManaged",
|
2491
|
+
"type": "bool"
|
3109
2492
|
},
|
3110
2493
|
{
|
3111
|
-
"internalType": "
|
3112
|
-
"name": "
|
3113
|
-
"type": "
|
2494
|
+
"internalType": "bool",
|
2495
|
+
"name": "isVerifyingApplications",
|
2496
|
+
"type": "bool"
|
3114
2497
|
}
|
3115
2498
|
],
|
3116
|
-
"internalType": "struct IComponents.
|
2499
|
+
"internalType": "struct IComponents.PoolInfo",
|
3117
2500
|
"name": "info",
|
3118
2501
|
"type": "tuple"
|
3119
2502
|
},
|
@@ -3123,7 +2506,7 @@
|
|
3123
2506
|
"type": "uint8"
|
3124
2507
|
}
|
3125
2508
|
],
|
3126
|
-
"name": "
|
2509
|
+
"name": "updatePool",
|
3127
2510
|
"outputs": [],
|
3128
2511
|
"stateMutability": "nonpayable",
|
3129
2512
|
"type": "function"
|
@@ -3147,16 +2530,6 @@
|
|
3147
2530
|
"name": "distributorNftId",
|
3148
2531
|
"type": "uint96"
|
3149
2532
|
},
|
3150
|
-
{
|
3151
|
-
"internalType": "string",
|
3152
|
-
"name": "referralCode",
|
3153
|
-
"type": "string"
|
3154
|
-
},
|
3155
|
-
{
|
3156
|
-
"internalType": "UFixed",
|
3157
|
-
"name": "discountPercentage",
|
3158
|
-
"type": "uint256"
|
3159
|
-
},
|
3160
2533
|
{
|
3161
2534
|
"internalType": "uint32",
|
3162
2535
|
"name": "maxReferrals",
|
@@ -3167,11 +2540,21 @@
|
|
3167
2540
|
"name": "usedReferrals",
|
3168
2541
|
"type": "uint32"
|
3169
2542
|
},
|
2543
|
+
{
|
2544
|
+
"internalType": "UFixed",
|
2545
|
+
"name": "discountPercentage",
|
2546
|
+
"type": "uint160"
|
2547
|
+
},
|
3170
2548
|
{
|
3171
2549
|
"internalType": "Timestamp",
|
3172
2550
|
"name": "expiryAt",
|
3173
2551
|
"type": "uint40"
|
3174
2552
|
},
|
2553
|
+
{
|
2554
|
+
"internalType": "string",
|
2555
|
+
"name": "referralCode",
|
2556
|
+
"type": "string"
|
2557
|
+
},
|
3175
2558
|
{
|
3176
2559
|
"internalType": "bytes",
|
3177
2560
|
"name": "data",
|
@@ -3225,25 +2608,15 @@
|
|
3225
2608
|
"name": "requesterNftId",
|
3226
2609
|
"type": "uint96"
|
3227
2610
|
},
|
3228
|
-
{
|
3229
|
-
"internalType": "string",
|
3230
|
-
"name": "callbackMethodName",
|
3231
|
-
"type": "string"
|
3232
|
-
},
|
3233
2611
|
{
|
3234
2612
|
"internalType": "NftId",
|
3235
2613
|
"name": "oracleNftId",
|
3236
2614
|
"type": "uint96"
|
3237
2615
|
},
|
3238
2616
|
{
|
3239
|
-
"internalType": "
|
3240
|
-
"name": "
|
3241
|
-
"type": "
|
3242
|
-
},
|
3243
|
-
{
|
3244
|
-
"internalType": "bytes",
|
3245
|
-
"name": "responseData",
|
3246
|
-
"type": "bytes"
|
2617
|
+
"internalType": "bool",
|
2618
|
+
"name": "isCancelled",
|
2619
|
+
"type": "bool"
|
3247
2620
|
},
|
3248
2621
|
{
|
3249
2622
|
"internalType": "Timestamp",
|
@@ -3256,9 +2629,19 @@
|
|
3256
2629
|
"type": "uint40"
|
3257
2630
|
},
|
3258
2631
|
{
|
3259
|
-
"internalType": "
|
3260
|
-
"name": "
|
3261
|
-
"type": "
|
2632
|
+
"internalType": "string",
|
2633
|
+
"name": "callbackMethodName",
|
2634
|
+
"type": "string"
|
2635
|
+
},
|
2636
|
+
{
|
2637
|
+
"internalType": "bytes",
|
2638
|
+
"name": "requestData",
|
2639
|
+
"type": "bytes"
|
2640
|
+
},
|
2641
|
+
{
|
2642
|
+
"internalType": "bytes",
|
2643
|
+
"name": "responseData",
|
2644
|
+
"type": "bytes"
|
3262
2645
|
}
|
3263
2646
|
],
|
3264
2647
|
"internalType": "struct IOracle.RequestInfo",
|
@@ -3293,78 +2676,20 @@
|
|
3293
2676
|
"outputs": [],
|
3294
2677
|
"stateMutability": "nonpayable",
|
3295
2678
|
"type": "function"
|
3296
|
-
},
|
3297
|
-
{
|
3298
|
-
"inputs": [
|
3299
|
-
{
|
3300
|
-
"internalType": "RiskId",
|
3301
|
-
"name": "riskId",
|
3302
|
-
"type": "bytes8"
|
3303
|
-
},
|
3304
|
-
{
|
3305
|
-
"components": [
|
3306
|
-
{
|
3307
|
-
"internalType": "NftId",
|
3308
|
-
"name": "productNftId",
|
3309
|
-
"type": "uint96"
|
3310
|
-
},
|
3311
|
-
{
|
3312
|
-
"internalType": "Timestamp",
|
3313
|
-
"name": "createdAt",
|
3314
|
-
"type": "uint40"
|
3315
|
-
},
|
3316
|
-
{
|
3317
|
-
"internalType": "bytes",
|
3318
|
-
"name": "data",
|
3319
|
-
"type": "bytes"
|
3320
|
-
}
|
3321
|
-
],
|
3322
|
-
"internalType": "struct IRisk.RiskInfo",
|
3323
|
-
"name": "risk",
|
3324
|
-
"type": "tuple"
|
3325
|
-
},
|
3326
|
-
{
|
3327
|
-
"internalType": "StateId",
|
3328
|
-
"name": "newState",
|
3329
|
-
"type": "uint8"
|
3330
|
-
}
|
3331
|
-
],
|
3332
|
-
"name": "updateRisk",
|
3333
|
-
"outputs": [],
|
3334
|
-
"stateMutability": "nonpayable",
|
3335
|
-
"type": "function"
|
3336
|
-
},
|
3337
|
-
{
|
3338
|
-
"inputs": [
|
3339
|
-
{
|
3340
|
-
"internalType": "RiskId",
|
3341
|
-
"name": "riskId",
|
3342
|
-
"type": "bytes8"
|
3343
|
-
},
|
3344
|
-
{
|
3345
|
-
"internalType": "StateId",
|
3346
|
-
"name": "newState",
|
3347
|
-
"type": "uint8"
|
3348
|
-
}
|
3349
|
-
],
|
3350
|
-
"name": "updateRiskState",
|
3351
|
-
"outputs": [],
|
3352
|
-
"stateMutability": "nonpayable",
|
3353
|
-
"type": "function"
|
3354
2679
|
}
|
3355
2680
|
],
|
3356
|
-
"bytecode": "0x60806040525f6008553480156012575f80fd5b506159a7806100205f395ff3fe608060405234801561000f575f80fd5b50600436106103bf575f3560e01c80638129fc1c116101f5578063bf1db3f911610114578063e80c61ed116100a9578063f71d7ffe11610079578063f71d7ffe14610a00578063fe1f18d614610a13578063fe2ee79214610a26578063fe7fc94114610a39575f80fd5b8063e80c61ed1461097c578063e9e96c701461098f578063ea113322146109cc578063f48016ce146109df575f80fd5b8063d78c599b116100e4578063d78c599b14610930578063dbdf609014610943578063dc46957a14610956578063e145b68b14610969575f80fd5b8063bf1db3f9146108ea578063bf7e214f146108fd578063cb2e87d21461091d578063d625d758146105a2575f80fd5b8063a46eb8dc1161018a578063b4d7efe21161015a578063b4d7efe21461089e578063b6d7cd62146108b1578063bcd65e21146108c4578063bedaa846146108d7575f80fd5b8063a46eb8dc146107d9578063a5961b4c146107ec578063af90250014610878578063b0628dc31461088b575f80fd5b80638fb36037116101c55780638fb360371461077f5780639d4b2ac6146107a05780639f8151e5146107b3578063a2842229146107c6575f80fd5b80638129fc1c1461072c57806381d32d6b146105a25780638eaa6ac0146107345780638eb9000d14610754575f80fd5b8063425d08e2116102e157806354f6127f116102765780636fac8622116102465780636fac8622146106e0578063760f82fc146106f35780637a9e5e4b146107065780637cef484214610719575f80fd5b806354f6127f1461063a578063555e55911461065a5780635d4345cc146104945780635eede1741461066d575f80fd5b8063533086d4116102b1578063533086d4146105ee57806353ebe1291461060157806354e5618e1461061457806354f1fa8114610627575f80fd5b8063425d08e2146105a2578063462d5a84146105b55780634d4a7ae9146105c857806351dd844b146105db575f80fd5b8063275c059511610357578063353e5b7511610327578063353e5b751461054657806338a699a4146105595780633c3f8d0e1461057c57806340529b0f1461058f575f80fd5b8063275c0595146104fa578063288026811461050d57806328f72e87146105205780632ae5819d14610533575f80fd5b80630fad0eb1116103925780630fad0eb11461049457806317c8c490146104a9578063228e42ec146104bc578063248a77dd146104e7575f80fd5b80630232ca49146103c35780630632b17d1461040b57806309648a9d146104365780630d3581811461046f575b5f80fd5b6103ee6103d1366004613376565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b61041e610419366004613668565b610a4c565b6040516001600160401b039091168152602001610402565b61045d6104443660046136a1565b5f90815260076020526040902054610100900460ff1690565b60405160ff9091168152602001610402565b61045d61047d3660046136d1565b60ff9081165f908152602081905260409020541690565b6104a76104a23660046136ec565b610b0c565b005b6104a76104b73660046137cb565b610b2e565b6103ee6104ca366004613376565b6001600160601b039081165f908152600260205260409020541690565b6103ee6104f536600461382a565b610b6b565b6104a761050836600461386a565b610b88565b6104a761051b36600461393a565b610c20565b6104a761052e366004613978565b610c48565b6104a76105413660046136ec565b610c7d565b6104a76105543660046139c4565b610c94565b61056c6105673660046136a1565b610cb0565b6040519015158152602001610402565b6104a761058a366004613acb565b610d38565b6104a761059d3660046136ec565b610d5f565b6104a76105b0366004613cc8565b610d76565b6104a76105c3366004613d57565b610d9e565b6104a76105d6366004613e1b565b610de2565b6104a76105e9366004614043565b610e0a565b6103ee6105fc36600461382a565b610e32565b6103ee61060f36600461382a565b610e46565b6104a761062236600461411f565b610e5a565b6104a7610635366004614162565b610e82565b61064d6106483660046136a1565b610fda565b60405161040291906141de565b6104a7610668366004614279565b61107c565b6106b661067b366004613376565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b0394851681529284166020840152921691810191909152606001610402565b6104a76106ee3660046142bc565b61111a565b6104a76107013660046143cc565b61114b565b6104a761071436600461440f565b6111e9565b6104a761072736600461442a565b61126b565b6104a76112f8565b6107476107423660046136a1565b611474565b6040516104029190614446565b6103ee610762366004613376565b6001600160601b039081165f908152600360205260409020541690565b610787611595565b6040516001600160e01b03199091168152602001610402565b6104a76107ae36600461458a565b6115cb565b6103ee6107c136600461382a565b611669565b6104a76107d436600461442a565b61167d565b6104a76107e73660046145cc565b6116cb565b61086b6107fa3660046136a1565b60408051608080820183525f8083526020808401829052838501829052606093840182905294815260078552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b604051610402919061460e565b6104a761088636600461442a565b6116fc565b6103ee61089936600461382a565b61174a565b6104a76108ac36600461464f565b61175e565b6104a76108bf36600461466b565b6117ab565b6104a76108d2366004614698565b6117c1565b6104a76108e5366004613d57565b6117e8565b61056c6108f83660046136d1565b611810565b61090561185c565b6040516001600160a01b039091168152602001610402565b6104a761092b36600461482d565b611877565b6104a761093e366004614945565b61189f565b6104a7610951366004614999565b6118c6565b6104a76109643660046149dc565b611964565b6104a7610977366004614a1e565b611a02565b6103ee61098a36600461382a565b611a29565b61056c61099d366004614a71565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b6104a76109da366004614a9e565b611a3d565b6109f26109ed366004614aef565b611adb565b604051908152602001610402565b6104a7610a0e366004614b1b565b611b5c565b6104a7610a213660046136ec565b611b8d565b6104a7610a34366004614b5d565b611ba4565b6104a7610a47366004614b9f565b611bcc565b5f610a59335b5f36611bf4565b610a61611cf2565b604051630f37f38f60e41b81526001600160401b0382166004820152909150610b079073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610abe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae29190614bd4565b83604051602001610af39190614beb565b604051602081830303815290604052611d82565b919050565b610b1533610a52565b610b29610b23836015612146565b82612191565b505050565b610b3733610a52565b610b29610b4584600b612146565b83604051602001610b569190614cbd565b6040516020818303038152906040528361248e565b5f610b7533610a52565b610b7f8383612604565b90505b92915050565b610b9133610a52565b604051630f37f38f60e41b81526001600160401b0384166004820152610b299073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610beb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0f9190614bd4565b83604051602001610b569190614beb565b610c2933610a52565b610b29610c3784600f612146565b83604051602001610b569190614d23565b610c5133610a52565b610c5a826126fd565b610c79610c6883600b612146565b82604051602001610af39190614cbd565b5050565b610c8633610a52565b610b29610b2383602b612146565b610c9d33610a52565b610caa610b2384846127ab565b50505050565b5f8181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610d14573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b829190614d81565b610d4133610a52565b610caa610d4e85856127ab565b83604051602001610b569190614d9c565b610d6833610a52565b610b29610b23836017612146565b610d7f33610a52565b610b29610d8d846015612146565b83604051602001610b569190614e07565b610da733610a52565b610c79610db5836029612146565b82604051602001610dc69190614f7f565b604051602081830303815290604052610ddd60ff90565b61248e565b610deb33610a52565b610c79610df983602b612146565b82604051602001610af39190615028565b610e1333610a52565b610b29610e21846016612146565b83604051602001610b569190615218565b5f610e3c33610a52565b610b7f83836127fa565b5f610e5033610a52565b610b7f83836128db565b610e6333610a52565b610b29610e71846017612146565b83604051602001610b5691906152a3565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015610ee4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f089190614d81565b15610f365760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff80851690831614610f775760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401610f2d565b60ff8084165f90815260016020908152604080832088851684528252808320858516845290915290205416610caa5760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401610f2d565b5f818152600760205260409020600101805460609190610ff9906152fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611025906152fc565b80156110705780601f1061104757610100808354040283529160200191611070565b820191905f5260205f20905b81548152906001019060200180831161105357829003601f168201915b50505050509050919050565b61108533610a52565b6040516355ee627560e01b8152610b299073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee6275906110ca906001600160c01b0319881690600401615334565b602060405180830381865af41580156110e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111099190614bd4565b83604051602001610b569190615349565b61112333610a52565b61112c826126fd565b610c7961113a836015612146565b82604051602001610af39190614e07565b61115433610a52565b6040516355ee627560e01b8152610b299073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590611199906001600160c01b0319881690600401615334565b602060405180830381865af41580156111b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111d89190614bd4565b83604051602001610b569190615387565b336111f261185c565b6001600160a01b0316816001600160a01b03161461122d5760405162d1953b60e31b81526001600160a01b0382166004820152602401610f2d565b816001600160a01b03163b5f03611262576040516361798f2f60e11b81526001600160a01b0383166004820152602401610f2d565b610c79826129bc565b61127433610a52565b6040516355ee627560e01b8152610b299073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee6275906112b9906001600160c01b0319871690600401615334565b602060405180830381865af41580156112d4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b239190614bd4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f8115801561133c5750825b90505f826001600160401b031660011480156113575750303b155b905081158015611365575080155b156113835760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113ad57845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114129190615437565b905061141d81612a1c565b611425612a30565b5050831561146d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b6040805160c0810182525f91810182815260608083018490526080830184905260a0830193909352815260208101919091525f82815260076020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a0820152928352600181018054919284019161150e906152fc565b80601f016020809104026020016040519081016040528092919081815260200182805461153a906152fc565b80156115855780601f1061155c57610100808354040283529160200191611585565b820191905f5260205f20905b81548152906001019060200180831161156857829003601f168201915b5050505050815250509050919050565b5f8051602061595283398151915280545f9190600160a01b900460ff166115bc575f6115c5565b638fb3603760e01b5b91505090565b6115d433610a52565b6040516355ee627560e01b8152610c799073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611619906001600160c01b0319871690600401615334565b602060405180830381865af4158015611634573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116589190614bd4565b82604051602001610af39190615452565b5f61167333610a52565b610b7f8383612a42565b61168633610a52565b6040516355ee627560e01b8152610b299073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee6275906112b9906001600160c01b0319871690600401615334565b6116d433610a52565b6116dd826126fd565b610c796116eb836016612146565b82604051602001610af39190615218565b61170533610a52565b6040516355ee627560e01b8152610b299073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906112b9906001600160c01b0319871690600401615334565b5f61175433610a52565b610b7f8383612b23565b61176733610a52565b604051630f37f38f60e41b81526001600160401b0383166004820152610b299073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f0906024016112b9565b6117b433610a52565b610caa610b238484612c04565b6117ca33610a52565b610b296117d784846127ab565b82604051602001610af39190614d9c565b6117f133610a52565b610c796117ff836029612146565b82604051602001610af39190614f7f565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610cf9565b5f80516020615952833981519152546001600160a01b031690565b61188033610a52565b610b2961188e84600c612146565b83604051602001610b569190615554565b6118a833610a52565b610caa6118b58585612c04565b83604051602001610b5691906155e4565b6118cf33610a52565b6040516355ee627560e01b8152610b299073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611914906001600160c01b0319881690600401615334565b602060405180830381865af415801561192f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119539190614bd4565b83604051602001610b569190615452565b61196d33610a52565b6040516355ee627560e01b8152610c799073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906119b2906001600160c01b0319871690600401615334565b602060405180830381865af41580156119cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f19190614bd4565b82604051602001610af39190615387565b611a0b33610a52565b610b29611a188484612c04565b82604051602001610af391906155e4565b5f611a3333610a52565b610b7f8383612c50565b611a4633610a52565b6040516355ee627560e01b8152610c799073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590611a8b906001600160c01b0319871690600401615334565b602060405180830381865af4158015611aa6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aca9190614bd4565b82604051602001610af39190615349565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015611b38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7f9190614bd4565b611b6533610a52565b611b6e826126fd565b610c79611b7c836017612146565b82604051602001610af391906152a3565b611b9633610a52565b610b29610b23836016612146565b611bad33610a52565b610c79611bbb83600c612146565b82604051602001610af39190615554565b611bd533610a52565b610c79611be383600f612146565b82604051602001610af39190614d23565b5f805160206159528339815191525f80611c2c611c0f61185c565b8730611c1e60045f8a8c615686565b611c27916156ad565b612d31565b9150915081611cea5763ffffffff811615611cc757825460ff60a01b1916600160a01b178355611c5a61185c565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c89939291906156e3565b5f604051808303815f87803b158015611ca0575f80fd5b505af1158015611cb2573d5f803e3d5ffd5b5050845460ff60a01b1916855550611cea9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610f2d565b505050505050565b600880545f9182611d0283615722565b9091555050600854604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af4158015611d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d9190615746565b905090565b604051634b00e98f60e11b8152600481018390525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611dd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611df69190615761565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611e49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6d9190614d81565b15611e90576040516307014a8d60e51b815260ff82166004820152602401610f2d565b5f83815260076020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611ef6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f1a9190614d81565b15611f4457604051633f92eac960e21b81526004810185905260ff83166024820152604401610f2d565b611f4d82611810565b611f6f57604051636cb0978b60e11b815260ff83166004820152602401610f2d565b5f611f78612e39565b60ff8085165f908152602081905260408120549293509116835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b919091021784555f87815260076020526040902090915060010161200286826157c0565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612073573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120979190615761565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156120e5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612109919061587a565b6040805160ff938416815260ff199290921660208301529184168183015233606082015232608082015290519081900360a00190a1505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401611b1d565b60405163037c8cb160e51b815260ff821660048201525f9073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156121e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122079190614d81565b156122285760405163093b89e160e11b815260048101849052602401610f2d565b505f82815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561229e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122c29190614d81565b156122e35760405163566ebf7960e01b815260048101869052602401610f2d565b60ff808516146124605781546122ff90829060ff168187610e82565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612381573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123a59190615761565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156123f3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612417919061587a565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b612468612e39565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b5f6124998483612191565b5f8581526007602052604090209091506001016124b684826157c0565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612527573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061254b9190615761565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612599573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125bd919061587a565b6040805160ff938416815260ff199290921660208301529185168183015233606082015232608082015263ffffffff841660a082015290519081900360c00190a150505050565b6001600160601b0382165f90815260056020526040812054839060ff1661264957604051631e94ffd760e11b81526001600160601b0382166004820152602401610f2d565b6001600160601b038085165f9081526003602052604090205461266d911684612ea5565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb08c267f0a5e1593171021f433a0805c3818d5b57ea45f0609ddb7163dc228a7916126e59187918791879163ffffffff90911690615895565b60405180910390a16126f684612f2a565b5092915050565b6001600160601b0381165f9081526005602052604090205460ff1615612741576040516314d5804160e01b81526001600160601b0382166004820152602401610f2d565b6001600160601b0381165f908152600560205260409020805460ff1916600117905561276c81612f2a565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b604051632867b75960e21b815264ffffffffff821660048201526001600160601b03831660248201525f9073__$0f9396e6447a4be57af83e53f51d234633$__9063a19edd6490604401611b1d565b6001600160601b0382165f90815260056020526040812054839060ff1661283f57604051631e94ffd760e11b81526001600160601b0382166004820152602401610f2d565b6001600160601b038085165f90815260046020526040902054612863911684612fc7565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f72d83b31d9d848984842915e1bf55e0b10f5c5c208ea2e893df958de0472fc62916126e59187918791879163ffffffff90911690615895565b6001600160601b0382165f90815260056020526040812054839060ff1661292057604051631e94ffd760e11b81526001600160601b0382166004820152602401610f2d565b6001600160601b038085165f90815260036020526040902054612944911684612fc7565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb254741d2e56b5fc092dabf9d2224554522d8bc0c08a1ffdce59fe0acae2bfc9916126e59187918791879163ffffffff90911690615895565b5f8051602061595283398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612a24613011565b612a2d8161305a565b50565b612a38613011565b612a4061306b565b565b6001600160601b0382165f90815260056020526040812054839060ff16612a8757604051631e94ffd760e11b81526001600160601b0382166004820152602401610f2d565b6001600160601b038085165f90815260026020526040902054612aab911684612ea5565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f5b04742c456b2820460f06a699b464350ad00ad419b30c9bb74699e0d1e64b66916126e59187918791879163ffffffff90911690615895565b6001600160601b0382165f90815260056020526040812054839060ff16612b6857604051631e94ffd760e11b81526001600160601b0382166004820152602401610f2d565b6001600160601b038085165f90815260026020526040902054612b8c911684612fc7565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f4068631e6ddfc25f1831c04cd7b41e313620779732e776b6e8e62273fccd6e6d916126e59187918791879163ffffffff90911690615895565b604051637d56159160e11b815261ffff821660048201526001600160601b03831660248201525f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611b1d565b6001600160601b0382165f90815260056020526040812054839060ff16612c9557604051631e94ffd760e11b81526001600160601b0382166004820152602401610f2d565b6001600160601b038085165f90815260046020526040902054612cb9911684612ea5565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fee2ce932811dedb09eb973e9da29180e86fe3bab034360124e0fd962f795daad916126e59187918791879163ffffffff90911690615895565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612d9f91906158c4565b5f60405180830381855afa9150503d805f8114612dd7576040519150601f19603f3d011682016040523d82523d5f602084013e612ddc565b606091505b50915091508115612e2e576040815110612e0e5780806020019051810190612e0491906158da565b9094509250612e2e565b6020815110612e2e5780806020019051810190612e2b9190614d81565b93505b505094509492505050565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d9190615907565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612f06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7f9190615922565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612f71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f959190615907565b6001600160601b03919091165f908152600660205260409020805463ffffffff191663ffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612eeb565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16612a4057604051631afcd79f60e31b815260040160405180910390fd5b613062613011565b612a2d816129bc565b6130736130c3565b61307b613109565b613083613136565b61308b61317a565b613093613196565b61309b6131d4565b6130a36131f7565b6130ab61321f565b6130b361325e565b6130bb613268565b612a4061327c565b6130d060165b60056132a4565b6130df60165b6005606e6132e6565b6130ee601660055b60c86132e6565b6130fd60165b606e60056132e6565b612a406016606e6130e7565b613113600b6130c9565b61311d600b6130d6565b613127600b6130f4565b612a40600b5b606e60d26132e6565b6131426015600a6132a4565b6131516015600a5b60146132e6565b6131606015600a5b601e6132e6565b61316e6015600a60286132e6565b612a40601560286130e7565b613187602b5b603c6132a4565b612a40602b5b603c60dc6132e6565b6131a2602d60326132a4565b6131ae602d603261314a565b6131bc602d603260336132e6565b6131c8602d6032613159565b612a40602d60336130e7565b6131de602e613180565b6131e8602e61318d565b612a40602e603c5b60486132e6565b613201602c6130c9565b61320b602c6130d6565b613215602c6130f4565b612a40602c61312d565b613229602f6130c9565b613238602f60055b60466132e6565b613246602f600560076132e6565b613252602f6007613231565b612a40602f60056131f0565b612a40600f6130c9565b613272600c6130c9565b612a4060296130c9565b613286600e6130c9565b61329060176130c9565b61329a60306130c9565b612a4060316130c9565b60ff8281165f9081526020819052604090205416156132c5576132c561593d565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561331e5761331e61593d565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b0381168114612a2d575f80fd5b8035610b0781613357565b5f60208284031215613386575f80fd5b813561339181613357565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b03811182821017156133cf576133cf613398565b60405290565b604051608081016001600160401b03811182821017156133cf576133cf613398565b60405160e081016001600160401b03811182821017156133cf576133cf613398565b60405161020081016001600160401b03811182821017156133cf576133cf613398565b60405161024081016001600160401b03811182821017156133cf576133cf613398565b60405160c081016001600160401b03811182821017156133cf576133cf613398565b60405161014081016001600160401b03811182821017156133cf576133cf613398565b604051601f8201601f191681016001600160401b03811182821017156134cc576134cc613398565b604052919050565b5f82601f8301126134e3575f80fd5b8135602083015f806001600160401b0384111561350257613502613398565b50601f8301601f1916602001613517816134a4565b91505082815285838301111561352b575f80fd5b828260208301375f92810160200192909252509392505050565b64ffffffffff81168114612a2d575f80fd5b8035610b0781613545565b8015158114612a2d575f80fd5b8035610b0781613562565b5f610100828403121561358b575f80fd5b6135936133ac565b905061359e8261336b565b815260208201356001600160401b038111156135b8575f80fd5b6135c4848285016134d4565b6020830152506135d66040830161336b565b604082015260608201356001600160401b038111156135f3575f80fd5b6135ff848285016134d4565b60608301525060808201356001600160401b0381111561361d575f80fd5b613629848285016134d4565b60808301525061363b60a08301613557565b60a082015261364c60c08301613557565b60c082015261365d60e0830161356f565b60e082015292915050565b5f60208284031215613678575f80fd5b81356001600160401b0381111561368d575f80fd5b6136998482850161357a565b949350505050565b5f602082840312156136b1575f80fd5b5035919050565b60ff81168114612a2d575f80fd5b8035610b07816136b8565b5f602082840312156136e1575f80fd5b8135613391816136b8565b5f80604083850312156136fd575f80fd5b823561370881613357565b91506020830135613718816136b8565b809150509250929050565b6001600160a01b0381168114612a2d575f80fd5b5f60808284031215613747575f80fd5b61374f6133d5565b905081356001600160401b03811115613766575f80fd5b613772848285016134d4565b825250602082013561378381613723565b6020820152604082013561379681613723565b604082015260608201356001600160401b038111156137b3575f80fd5b6137bf848285016134d4565b60608301525092915050565b5f805f606084860312156137dd575f80fd5b83356137e881613357565b925060208401356001600160401b03811115613802575f80fd5b61380e86828701613737565b925050604084013561381f816136b8565b809150509250925092565b5f806040838503121561383b575f80fd5b823561384681613357565b9150602083013561371881613357565b6001600160401b0381168114612a2d575f80fd5b5f805f6060848603121561387c575f80fd5b833561388781613856565b925060208401356001600160401b038111156138a1575f80fd5b61380e8682870161357a565b5f60e082840312156138bd575f80fd5b6138c56133f7565b905081356138d281613357565b815260208201356138e281613562565b602082015260408201356138f581613562565b6040820152606082013561390881613562565b60608201526139196080830161356f565b608082015260a0828101359082015260c09182013591810191909152919050565b5f805f610120848603121561394d575f80fd5b833561395881613357565b925061396785602086016138ad565b915061010084013561381f816136b8565b5f8060408385031215613989575f80fd5b823561399481613357565b915060208301356001600160401b038111156139ae575f80fd5b6139ba85828601613737565b9150509250929050565b5f805f606084860312156139d6575f80fd5b83356139e181613357565b925060208401356139f181613545565b9150604084013561381f816136b8565b61ffff81168114612a2d575f80fd5b8035610b0781613a01565b5f60a08284031215613a2b575f80fd5b60405160a081016001600160401b0381118282101715613a4d57613a4d613398565b6040529050808235613a5e81613a01565b81526020830135613a6e81613357565b60208201526040830135613a8181613723565b604082015260608301356001600160401b03811115613a9e575f80fd5b613aaa858286016134d4565b6060830152506080830135613abe81613545565b6080919091015292915050565b5f805f8060808587031215613ade575f80fd5b8435613ae981613357565b93506020850135613af981613545565b925060408501356001600160401b03811115613b13575f80fd5b613b1f87828801613a1b565b9250506060850135613b30816136b8565b939692955090935050565b6001600160c01b031981168114612a2d575f80fd5b8035610b0781613b3b565b5f6102008284031215613b6c575f80fd5b613b74613419565b9050613b7f8261336b565b8152613b8d6020830161336b565b6020820152613b9e60408301613b50565b6040820152613baf60608301613b50565b6060820152613bc06080830161336b565b6080820152613bd160a0830161336b565b60a0820152613be260c08301613557565b60c082015260e08201356001600160401b03811115613bff575f80fd5b613c0b848285016134d4565b60e0830152506101008201356001600160401b03811115613c2a575f80fd5b613c36848285016134d4565b61010083015250613c4a6101208301613a10565b610120820152613c5d6101408301613a10565b610140820152613c70610160830161336b565b610160820152613c83610180830161336b565b610180820152613c966101a08301613557565b6101a0820152613ca96101c08301613557565b6101c0820152613cbc6101e08301613557565b6101e082015292915050565b5f805f60608486031215613cda575f80fd5b8335613ce581613357565b925060208401356001600160401b03811115613cff575f80fd5b61380e86828701613b5b565b5f60408284031215613d1b575f80fd5b604080519081016001600160401b0381118282101715613d3d57613d3d613398565b604052823581526020928301359281019290925250919050565b5f808284036101e0811215613d6a575f80fd5b8335613d7581613357565b92506101c0601f1982011215613d89575f80fd5b50613d926133f7565b613d9f8560208601613d0b565b8152613dae8560608601613d0b565b6020820152613dc08560a08601613d0b565b6040820152613dd28560e08601613d0b565b6060820152613de5856101208601613d0b565b6080820152613df8856101608601613d0b565b60a0820152613e0b856101a08601613d0b565b60c0820152809150509250929050565b5f80828403610260811215613e2e575f80fd5b8335613e3981613357565b9250610240601f1982011215613e4d575f80fd5b50613e5661343c565b613e626020850161336b565b8152613e706040850161336b565b6020820152613e816060850161336b565b6040820152613e926080850161336b565b6060820152613ea360a0850161336b565b6080820152613eb460c0850161336b565b60a0820152613ec560e0850161336b565b60c0820152613ed7610100850161336b565b60e0820152613ee9610120850161336b565b610100820152613efc610140850161336b565b610120820152613f0f610160850161336b565b610140820152613f22610180850161336b565b610160820152613f356101a0850161336b565b610180820152613f486101c0850161336b565b6101a0820152613f5b6101e0850161336b565b6101c0820152613f6e610200850161336b565b6101e0820152613f81610220850161336b565b610200820152613f94610240850161336b565b610220820152809150509250929050565b5f60e08284031215613fb5575f80fd5b613fbd61345f565b90508135613fca81613357565b8152613fd98360208401613d0b565b602082015260608201356001600160401b03811115613ff6575f80fd5b614002848285016134d4565b604083015250608082013561401681613545565b606082015261402760a08301613557565b608082015261403860c08301613557565b60a082015292915050565b5f805f60608486031215614055575f80fd5b833561406081613357565b925060208401356001600160401b0381111561407a575f80fd5b61380e86828701613fa5565b63ffffffff81168114612a2d575f80fd5b8035610b0781614086565b5f608082840312156140b2575f80fd5b6140ba6133d5565b905081356140c781613b3b565b815260208201356140d781613562565b602082015260408201356001600160401b038111156140f4575f80fd5b614100848285016134d4565b604083015250606082013561411481614086565b606082015292915050565b5f805f60608486031215614131575f80fd5b833561413c81613357565b925060208401356001600160401b03811115614156575f80fd5b61380e868287016140a2565b5f805f8060808587031215614175575f80fd5b8435614180816136b8565b93506020850135614190816136b8565b925060408501356141a0816136b8565b91506060850135613b30816136b8565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b7f60208301846141b0565b5f60608284031215614200575f80fd5b604051606081016001600160401b038111828210171561422257614222613398565b604052905080823561423381613357565b8152602083013561424381613545565b602082015260408301356001600160401b03811115614260575f80fd5b61426c858286016134d4565b6040830152505092915050565b5f805f6060848603121561428b575f80fd5b833561429681613b3b565b925060208401356001600160401b038111156142b0575f80fd5b61380e868287016141f0565b5f80604083850312156142cd575f80fd5b82356142d881613357565b915060208301356001600160401b038111156142f2575f80fd5b6139ba85828601613b5b565b5f610100828403121561430f575f80fd5b6143176133ac565b90506143228261336b565b81526143306020830161336b565b602082015260408201356001600160401b0381111561434d575f80fd5b614359848285016134d4565b6040830152506060828101359082015261437560808301614097565b608082015261438660a08301614097565b60a082015261439760c08301613557565b60c082015260e08201356001600160401b038111156143b4575f80fd5b6143c0848285016134d4565b60e08301525092915050565b5f805f606084860312156143de575f80fd5b83356143e981613b3b565b925060208401356001600160401b03811115614403575f80fd5b61380e868287016142fe565b5f6020828403121561441f575f80fd5b813561339181613723565b5f806040838503121561443b575f80fd5b823561370881613b3b565b6020815261448b60208201835160ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f602083015160a08084015261369960c08401826141b0565b5f61014082840312156144b5575f80fd5b6144bd613481565b905081356001600160401b038111156144d4575f80fd5b6144e0848285016134d4565b8252506144ef6020830161336b565b602082015260408281013590820152606080830135908201526080808301359082015261451e60a08301614097565b60a082015261452f60c08301613557565b60c082015261454060e0830161356f565b60e0820152614552610100830161356f565b6101008201526101208201356001600160401b03811115614571575f80fd5b61457d848285016134d4565b6101208301525092915050565b5f806040838503121561459b575f80fd5b82356145a681613b3b565b915060208301356001600160401b038111156145c0575f80fd5b6139ba858286016144a4565b5f80604083850312156145dd575f80fd5b82356145e881613357565b915060208301356001600160401b03811115614602575f80fd5b6139ba85828601613fa5565b60808101610b82828460ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f8060408385031215614660575f80fd5b823561370881613856565b5f805f6060848603121561467d575f80fd5b833561468881613357565b925060208401356139f181613a01565b5f805f606084860312156146aa575f80fd5b83356146b581613357565b925060208401356146c581613545565b915060408401356001600160401b038111156146df575f80fd5b6146eb86828701613a1b565b9150509250925092565b5f82601f830112614704575f80fd5b81356001600160401b0381111561471d5761471d613398565b8060051b61472d602082016134a4565b91825260208185018101929081019086841115614748575f80fd5b6020860192505b8383101561477357823561476281613357565b82526020928301929091019061474f565b9695505050505050565b5f610100828403121561478e575f80fd5b6147966133ac565b90506147a18261356f565b81526147af6020830161356f565b60208201526147c06040830161356f565b60408201526147d1606083016136c6565b60608201526147e2608083016136c6565b60808201526147f360a0830161336b565b60a082015261480460c0830161336b565b60c082015260e08201356001600160401b03811115614821575f80fd5b6143c0848285016146f5565b5f805f6060848603121561483f575f80fd5b833561484a81613357565b925060208401356001600160401b03811115614864575f80fd5b61380e8682870161477d565b803562ffffff81168114610b07575f80fd5b5f60e08284031215614892575f80fd5b61489a6133f7565b90506148a58261336b565b81526148b36020830161336b565b60208201526148c460408301614870565b60408201526148d560608301614870565b606082015260808201356001600160401b038111156148f2575f80fd5b6148fe848285016134d4565b60808301525060a08201356001600160401b0381111561491c575f80fd5b614928848285016134d4565b60a08301525061493a60c08301613557565b60c082015292915050565b5f805f8060808587031215614958575f80fd5b843561496381613357565b9350602085013561497381613a01565b925060408501356001600160401b0381111561498d575f80fd5b613b1f87828801614882565b5f805f606084860312156149ab575f80fd5b83356149b681613b3b565b925060208401356001600160401b038111156149d0575f80fd5b61380e868287016144a4565b5f80604083850312156149ed575f80fd5b82356149f881613b3b565b915060208301356001600160401b03811115614a12575f80fd5b6139ba858286016142fe565b5f805f60608486031215614a30575f80fd5b8335614a3b81613357565b92506020840135614a4b81613a01565b915060408401356001600160401b03811115614a65575f80fd5b6146eb86828701614882565b5f805f60608486031215614a83575f80fd5b8335614a8e816136b8565b925060208401356139f1816136b8565b5f8060408385031215614aaf575f80fd5b8235614aba81613b3b565b915060208301356001600160401b03811115614ad4575f80fd5b6139ba858286016141f0565b60ff1981168114612a2d575f80fd5b5f8060408385031215614b00575f80fd5b8235614b0b816136b8565b9150602083013561371881614ae0565b5f8060408385031215614b2c575f80fd5b8235614b3781613357565b915060208301356001600160401b03811115614b51575f80fd5b6139ba858286016140a2565b5f8060408385031215614b6e575f80fd5b8235614b7981613357565b915060208301356001600160401b03811115614b93575f80fd5b6139ba8582860161477d565b5f806101008385031215614bb1575f80fd5b8235614bbc81613357565b9150614bcb84602085016138ad565b90509250929050565b5f60208284031215614be4575f80fd5b5051919050565b60208152614c056020820183516001600160601b03169052565b5f60208301516101006040840152614c216101208401826141b0565b90506040840151614c3d60608501826001600160601b03169052565b506060840151838203601f19016080850152614c5982826141b0565b9150506080840151601f198483030160a0850152614c7782826141b0565b91505060a0840151614c9260c085018264ffffffffff169052565b5060c084015164ffffffffff811660e08501525060e08401518015156101008501525b509392505050565b602081525f825160806020840152614cd860a08401826141b0565b60208501516001600160a01b0390811660408681019190915286015116606080860191909152850151848203601f19016080860152909150614d1a82826141b0565b95945050505050565b5f60e0820190506001600160601b03835116825260208301511515602083015260408301511515604083015260608301511515606083015260808301511515608083015260a083015160a083015260c083015160c083015292915050565b5f60208284031215614d91575f80fd5b815161339181613562565b6020815261ffff82511660208201526001600160601b03602083015116604082015260018060a01b0360408301511660608201525f606083015160a06080840152614dea60c08401826141b0565b905064ffffffffff60808501511660a08401528091505092915050565b60208152614e216020820183516001600160601b03169052565b5f6020830151614e3c60408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b0319811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c083015164ffffffffff811660e08401525060e0830151610200610100840152614ec26102208401826141b0565b9050610100840151601f1984830301610120850152614ee182826141b0565b915050610120840151614efb61014085018261ffff169052565b5061014084015161ffff8116610160850152506101608401516001600160601b038116610180850152506101808401516001600160601b0381166101a0850152506101a084015164ffffffffff81166101c0850152506101c084015164ffffffffff81166101e0850152506101e084015164ffffffffff8116610200850152614cb5565b815180518252602090810151908201526101c081016020838101518051604085015290810151606084015250604083015180516080840152602081015160a0840152506060830151805160c0840152602081015160e0840152506080830151805161010084015260208101516101208401525060a0830151805161014084015260208101516101608401525060c0830151805161018084015260208101516101a08401526126f6565b81516001600160601b031681526102408101602083015161505460208401826001600160601b03169052565b50604083015161506f60408401826001600160601b03169052565b50606083015161508a60608401826001600160601b03169052565b5060808301516150a560808401826001600160601b03169052565b5060a08301516150c060a08401826001600160601b03169052565b5060c08301516150db60c08401826001600160601b03169052565b5060e08301516150f660e08401826001600160601b03169052565b506101008301516151136101008401826001600160601b03169052565b506101208301516151306101208401826001600160601b03169052565b5061014083015161514d6101408401826001600160601b03169052565b5061016083015161516a6101608401826001600160601b03169052565b506101808301516151876101808401826001600160601b03169052565b506101a08301516151a46101a08401826001600160601b03169052565b506101c08301516151c16101c08401826001600160601b03169052565b506101e08301516151de6101e08401826001600160601b03169052565b506102008301516151fb6102008401826001600160601b03169052565b506102208301516126f66102208401826001600160601b03169052565b602081526001600160601b0382511660208201525f6020830151615249604084018280518252602090810151910152565b50604083015160e060808401526152646101008401826141b0565b905064ffffffffff60608501511660a084015264ffffffffff60808501511660c084015264ffffffffff60a08501511660e08401528091505092915050565b602081526001600160401b0360c01b82511660208201526020820151151560408201525f6040830151608060608401526152e060a08401826141b0565b905063ffffffff60608501511660808401528091505092915050565b600181811c9082168061531057607f821691505b60208210810361532e57634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160c01b031991909116815260200190565b602081526001600160601b03825116602082015264ffffffffff60208301511660408201525f604083015160608084015261369960808401826141b0565b602081526001600160601b0382511660208201525f60208301516153b660408401826001600160601b03169052565b50604083015161010060608401526153d26101208401826141b0565b90506060840151608084015260808401516153f560a085018263ffffffff169052565b5060a084015163ffffffff811660c08501525060c084015164ffffffffff811660e08501525060e0840151838203601f1901610100850152614d1a82826141b0565b5f60208284031215615447575f80fd5b815161339181613723565b602081525f8251610140602084015261546f6101608401826141b0565b9050602084015161548b60408501826001600160601b03169052565b506040840151606084015260608401516080840152608084015160a084015260a08401516154c160c085018263ffffffff169052565b5060c084015164ffffffffff811660e08501525060e08401518015156101008501525061010084015180151561012085015250610120840151838203601f1901610140850152614d1a82826141b0565b5f8151808452602084019350602083015f5b8281101561554a5781516001600160601b0316865260209586019590910190600101615523565b5093949350505050565b602081528151151560208201526020820151151560408201525f6040830151615581606084018215159052565b50606083015160ff8116608084015250608083015160ff811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e083015161010080840152613699610120840182615511565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f6040830151615622606084018262ffffff169052565b50606083015162ffffff8116608084015250608083015160e060a084015261564e6101008401826141b0565b905060a0840151601f198483030160c085015261566b82826141b0565b91505060c0840151614cb560e085018264ffffffffff169052565b5f8085851115615694575f80fd5b838611156156a0575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156126f6576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f6001820161573f57634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f60208284031215615756575f80fd5b815161339181613856565b5f60208284031215615771575f80fd5b8151613391816136b8565b601f821115610b2957805f5260205f20601f840160051c810160208510156157a15750805b601f840160051c820191505b8181101561146d575f81556001016157ad565b81516001600160401b038111156157d9576157d9613398565b6157ed816157e784546152fc565b8461577c565b6020601f82116001811461581f575f83156158085750848201515b5f19600385901b1c1916600184901b17845561146d565b5f84815260208120601f198516915b8281101561584e578785015182556020948501946001909201910161582e565b508482101561586b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f6020828403121561588a575f80fd5b815161339181614ae0565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b5f82518060208501845e5f920191825250919050565b5f80604083850312156158eb575f80fd5b82516158f681613562565b602084015190925061371881614086565b5f60208284031215615917575f80fd5b815161339181614086565b5f60208284031215615932575f80fd5b815161339181613357565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220dd908376cfb6f0633fee13cfbfe6cc00ac5500337599d3a8fa3c4fba2f034d1864736f6c634300081a0033",
|
3357
|
-
"deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106103bf575f3560e01c80638129fc1c116101f5578063bf1db3f911610114578063e80c61ed116100a9578063f71d7ffe11610079578063f71d7ffe14610a00578063fe1f18d614610a13578063fe2ee79214610a26578063fe7fc94114610a39575f80fd5b8063e80c61ed1461097c578063e9e96c701461098f578063ea113322146109cc578063f48016ce146109df575f80fd5b8063d78c599b116100e4578063d78c599b14610930578063dbdf609014610943578063dc46957a14610956578063e145b68b14610969575f80fd5b8063bf1db3f9146108ea578063bf7e214f146108fd578063cb2e87d21461091d578063d625d758146105a2575f80fd5b8063a46eb8dc1161018a578063b4d7efe21161015a578063b4d7efe21461089e578063b6d7cd62146108b1578063bcd65e21146108c4578063bedaa846146108d7575f80fd5b8063a46eb8dc146107d9578063a5961b4c146107ec578063af90250014610878578063b0628dc31461088b575f80fd5b80638fb36037116101c55780638fb360371461077f5780639d4b2ac6146107a05780639f8151e5146107b3578063a2842229146107c6575f80fd5b80638129fc1c1461072c57806381d32d6b146105a25780638eaa6ac0146107345780638eb9000d14610754575f80fd5b8063425d08e2116102e157806354f6127f116102765780636fac8622116102465780636fac8622146106e0578063760f82fc146106f35780637a9e5e4b146107065780637cef484214610719575f80fd5b806354f6127f1461063a578063555e55911461065a5780635d4345cc146104945780635eede1741461066d575f80fd5b8063533086d4116102b1578063533086d4146105ee57806353ebe1291461060157806354e5618e1461061457806354f1fa8114610627575f80fd5b8063425d08e2146105a2578063462d5a84146105b55780634d4a7ae9146105c857806351dd844b146105db575f80fd5b8063275c059511610357578063353e5b7511610327578063353e5b751461054657806338a699a4146105595780633c3f8d0e1461057c57806340529b0f1461058f575f80fd5b8063275c0595146104fa578063288026811461050d57806328f72e87146105205780632ae5819d14610533575f80fd5b80630fad0eb1116103925780630fad0eb11461049457806317c8c490146104a9578063228e42ec146104bc578063248a77dd146104e7575f80fd5b80630232ca49146103c35780630632b17d1461040b57806309648a9d146104365780630d3581811461046f575b5f80fd5b6103ee6103d1366004613376565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b61041e610419366004613668565b610a4c565b6040516001600160401b039091168152602001610402565b61045d6104443660046136a1565b5f90815260076020526040902054610100900460ff1690565b60405160ff9091168152602001610402565b61045d61047d3660046136d1565b60ff9081165f908152602081905260409020541690565b6104a76104a23660046136ec565b610b0c565b005b6104a76104b73660046137cb565b610b2e565b6103ee6104ca366004613376565b6001600160601b039081165f908152600260205260409020541690565b6103ee6104f536600461382a565b610b6b565b6104a761050836600461386a565b610b88565b6104a761051b36600461393a565b610c20565b6104a761052e366004613978565b610c48565b6104a76105413660046136ec565b610c7d565b6104a76105543660046139c4565b610c94565b61056c6105673660046136a1565b610cb0565b6040519015158152602001610402565b6104a761058a366004613acb565b610d38565b6104a761059d3660046136ec565b610d5f565b6104a76105b0366004613cc8565b610d76565b6104a76105c3366004613d57565b610d9e565b6104a76105d6366004613e1b565b610de2565b6104a76105e9366004614043565b610e0a565b6103ee6105fc36600461382a565b610e32565b6103ee61060f36600461382a565b610e46565b6104a761062236600461411f565b610e5a565b6104a7610635366004614162565b610e82565b61064d6106483660046136a1565b610fda565b60405161040291906141de565b6104a7610668366004614279565b61107c565b6106b661067b366004613376565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b0394851681529284166020840152921691810191909152606001610402565b6104a76106ee3660046142bc565b61111a565b6104a76107013660046143cc565b61114b565b6104a761071436600461440f565b6111e9565b6104a761072736600461442a565b61126b565b6104a76112f8565b6107476107423660046136a1565b611474565b6040516104029190614446565b6103ee610762366004613376565b6001600160601b039081165f908152600360205260409020541690565b610787611595565b6040516001600160e01b03199091168152602001610402565b6104a76107ae36600461458a565b6115cb565b6103ee6107c136600461382a565b611669565b6104a76107d436600461442a565b61167d565b6104a76107e73660046145cc565b6116cb565b61086b6107fa3660046136a1565b60408051608080820183525f8083526020808401829052838501829052606093840182905294815260078552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b604051610402919061460e565b6104a761088636600461442a565b6116fc565b6103ee61089936600461382a565b61174a565b6104a76108ac36600461464f565b61175e565b6104a76108bf36600461466b565b6117ab565b6104a76108d2366004614698565b6117c1565b6104a76108e5366004613d57565b6117e8565b61056c6108f83660046136d1565b611810565b61090561185c565b6040516001600160a01b039091168152602001610402565b6104a761092b36600461482d565b611877565b6104a761093e366004614945565b61189f565b6104a7610951366004614999565b6118c6565b6104a76109643660046149dc565b611964565b6104a7610977366004614a1e565b611a02565b6103ee61098a36600461382a565b611a29565b61056c61099d366004614a71565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b6104a76109da366004614a9e565b611a3d565b6109f26109ed366004614aef565b611adb565b604051908152602001610402565b6104a7610a0e366004614b1b565b611b5c565b6104a7610a213660046136ec565b611b8d565b6104a7610a34366004614b5d565b611ba4565b6104a7610a47366004614b9f565b611bcc565b5f610a59335b5f36611bf4565b610a61611cf2565b604051630f37f38f60e41b81526001600160401b0382166004820152909150610b079073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610abe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae29190614bd4565b83604051602001610af39190614beb565b604051602081830303815290604052611d82565b919050565b610b1533610a52565b610b29610b23836015612146565b82612191565b505050565b610b3733610a52565b610b29610b4584600b612146565b83604051602001610b569190614cbd565b6040516020818303038152906040528361248e565b5f610b7533610a52565b610b7f8383612604565b90505b92915050565b610b9133610a52565b604051630f37f38f60e41b81526001600160401b0384166004820152610b299073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610beb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0f9190614bd4565b83604051602001610b569190614beb565b610c2933610a52565b610b29610c3784600f612146565b83604051602001610b569190614d23565b610c5133610a52565b610c5a826126fd565b610c79610c6883600b612146565b82604051602001610af39190614cbd565b5050565b610c8633610a52565b610b29610b2383602b612146565b610c9d33610a52565b610caa610b2384846127ab565b50505050565b5f8181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610d14573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b829190614d81565b610d4133610a52565b610caa610d4e85856127ab565b83604051602001610b569190614d9c565b610d6833610a52565b610b29610b23836017612146565b610d7f33610a52565b610b29610d8d846015612146565b83604051602001610b569190614e07565b610da733610a52565b610c79610db5836029612146565b82604051602001610dc69190614f7f565b604051602081830303815290604052610ddd60ff90565b61248e565b610deb33610a52565b610c79610df983602b612146565b82604051602001610af39190615028565b610e1333610a52565b610b29610e21846016612146565b83604051602001610b569190615218565b5f610e3c33610a52565b610b7f83836127fa565b5f610e5033610a52565b610b7f83836128db565b610e6333610a52565b610b29610e71846017612146565b83604051602001610b5691906152a3565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015610ee4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f089190614d81565b15610f365760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff80851690831614610f775760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401610f2d565b60ff8084165f90815260016020908152604080832088851684528252808320858516845290915290205416610caa5760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401610f2d565b5f818152600760205260409020600101805460609190610ff9906152fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611025906152fc565b80156110705780601f1061104757610100808354040283529160200191611070565b820191905f5260205f20905b81548152906001019060200180831161105357829003601f168201915b50505050509050919050565b61108533610a52565b6040516355ee627560e01b8152610b299073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee6275906110ca906001600160c01b0319881690600401615334565b602060405180830381865af41580156110e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111099190614bd4565b83604051602001610b569190615349565b61112333610a52565b61112c826126fd565b610c7961113a836015612146565b82604051602001610af39190614e07565b61115433610a52565b6040516355ee627560e01b8152610b299073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590611199906001600160c01b0319881690600401615334565b602060405180830381865af41580156111b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111d89190614bd4565b83604051602001610b569190615387565b336111f261185c565b6001600160a01b0316816001600160a01b03161461122d5760405162d1953b60e31b81526001600160a01b0382166004820152602401610f2d565b816001600160a01b03163b5f03611262576040516361798f2f60e11b81526001600160a01b0383166004820152602401610f2d565b610c79826129bc565b61127433610a52565b6040516355ee627560e01b8152610b299073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee6275906112b9906001600160c01b0319871690600401615334565b602060405180830381865af41580156112d4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b239190614bd4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f8115801561133c5750825b90505f826001600160401b031660011480156113575750303b155b905081158015611365575080155b156113835760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113ad57845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114129190615437565b905061141d81612a1c565b611425612a30565b5050831561146d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b6040805160c0810182525f91810182815260608083018490526080830184905260a0830193909352815260208101919091525f82815260076020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a0820152928352600181018054919284019161150e906152fc565b80601f016020809104026020016040519081016040528092919081815260200182805461153a906152fc565b80156115855780601f1061155c57610100808354040283529160200191611585565b820191905f5260205f20905b81548152906001019060200180831161156857829003601f168201915b5050505050815250509050919050565b5f8051602061595283398151915280545f9190600160a01b900460ff166115bc575f6115c5565b638fb3603760e01b5b91505090565b6115d433610a52565b6040516355ee627560e01b8152610c799073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611619906001600160c01b0319871690600401615334565b602060405180830381865af4158015611634573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116589190614bd4565b82604051602001610af39190615452565b5f61167333610a52565b610b7f8383612a42565b61168633610a52565b6040516355ee627560e01b8152610b299073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee6275906112b9906001600160c01b0319871690600401615334565b6116d433610a52565b6116dd826126fd565b610c796116eb836016612146565b82604051602001610af39190615218565b61170533610a52565b6040516355ee627560e01b8152610b299073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906112b9906001600160c01b0319871690600401615334565b5f61175433610a52565b610b7f8383612b23565b61176733610a52565b604051630f37f38f60e41b81526001600160401b0383166004820152610b299073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f0906024016112b9565b6117b433610a52565b610caa610b238484612c04565b6117ca33610a52565b610b296117d784846127ab565b82604051602001610af39190614d9c565b6117f133610a52565b610c796117ff836029612146565b82604051602001610af39190614f7f565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610cf9565b5f80516020615952833981519152546001600160a01b031690565b61188033610a52565b610b2961188e84600c612146565b83604051602001610b569190615554565b6118a833610a52565b610caa6118b58585612c04565b83604051602001610b5691906155e4565b6118cf33610a52565b6040516355ee627560e01b8152610b299073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611914906001600160c01b0319881690600401615334565b602060405180830381865af415801561192f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119539190614bd4565b83604051602001610b569190615452565b61196d33610a52565b6040516355ee627560e01b8152610c799073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906119b2906001600160c01b0319871690600401615334565b602060405180830381865af41580156119cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f19190614bd4565b82604051602001610af39190615387565b611a0b33610a52565b610b29611a188484612c04565b82604051602001610af391906155e4565b5f611a3333610a52565b610b7f8383612c50565b611a4633610a52565b6040516355ee627560e01b8152610c799073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590611a8b906001600160c01b0319871690600401615334565b602060405180830381865af4158015611aa6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aca9190614bd4565b82604051602001610af39190615349565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015611b38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7f9190614bd4565b611b6533610a52565b611b6e826126fd565b610c79611b7c836017612146565b82604051602001610af391906152a3565b611b9633610a52565b610b29610b23836016612146565b611bad33610a52565b610c79611bbb83600c612146565b82604051602001610af39190615554565b611bd533610a52565b610c79611be383600f612146565b82604051602001610af39190614d23565b5f805160206159528339815191525f80611c2c611c0f61185c565b8730611c1e60045f8a8c615686565b611c27916156ad565b612d31565b9150915081611cea5763ffffffff811615611cc757825460ff60a01b1916600160a01b178355611c5a61185c565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c89939291906156e3565b5f604051808303815f87803b158015611ca0575f80fd5b505af1158015611cb2573d5f803e3d5ffd5b5050845460ff60a01b1916855550611cea9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610f2d565b505050505050565b600880545f9182611d0283615722565b9091555050600854604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af4158015611d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d9190615746565b905090565b604051634b00e98f60e11b8152600481018390525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611dd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611df69190615761565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611e49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6d9190614d81565b15611e90576040516307014a8d60e51b815260ff82166004820152602401610f2d565b5f83815260076020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611ef6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f1a9190614d81565b15611f4457604051633f92eac960e21b81526004810185905260ff83166024820152604401610f2d565b611f4d82611810565b611f6f57604051636cb0978b60e11b815260ff83166004820152602401610f2d565b5f611f78612e39565b60ff8085165f908152602081905260408120549293509116835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b919091021784555f87815260076020526040902090915060010161200286826157c0565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612073573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120979190615761565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156120e5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612109919061587a565b6040805160ff938416815260ff199290921660208301529184168183015233606082015232608082015290519081900360a00190a1505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401611b1d565b60405163037c8cb160e51b815260ff821660048201525f9073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156121e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122079190614d81565b156122285760405163093b89e160e11b815260048101849052602401610f2d565b505f82815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561229e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122c29190614d81565b156122e35760405163566ebf7960e01b815260048101869052602401610f2d565b60ff808516146124605781546122ff90829060ff168187610e82565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612381573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123a59190615761565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156123f3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612417919061587a565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b612468612e39565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b5f6124998483612191565b5f8581526007602052604090209091506001016124b684826157c0565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612527573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061254b9190615761565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612599573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125bd919061587a565b6040805160ff938416815260ff199290921660208301529185168183015233606082015232608082015263ffffffff841660a082015290519081900360c00190a150505050565b6001600160601b0382165f90815260056020526040812054839060ff1661264957604051631e94ffd760e11b81526001600160601b0382166004820152602401610f2d565b6001600160601b038085165f9081526003602052604090205461266d911684612ea5565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb08c267f0a5e1593171021f433a0805c3818d5b57ea45f0609ddb7163dc228a7916126e59187918791879163ffffffff90911690615895565b60405180910390a16126f684612f2a565b5092915050565b6001600160601b0381165f9081526005602052604090205460ff1615612741576040516314d5804160e01b81526001600160601b0382166004820152602401610f2d565b6001600160601b0381165f908152600560205260409020805460ff1916600117905561276c81612f2a565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b604051632867b75960e21b815264ffffffffff821660048201526001600160601b03831660248201525f9073__$0f9396e6447a4be57af83e53f51d234633$__9063a19edd6490604401611b1d565b6001600160601b0382165f90815260056020526040812054839060ff1661283f57604051631e94ffd760e11b81526001600160601b0382166004820152602401610f2d565b6001600160601b038085165f90815260046020526040902054612863911684612fc7565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f72d83b31d9d848984842915e1bf55e0b10f5c5c208ea2e893df958de0472fc62916126e59187918791879163ffffffff90911690615895565b6001600160601b0382165f90815260056020526040812054839060ff1661292057604051631e94ffd760e11b81526001600160601b0382166004820152602401610f2d565b6001600160601b038085165f90815260036020526040902054612944911684612fc7565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb254741d2e56b5fc092dabf9d2224554522d8bc0c08a1ffdce59fe0acae2bfc9916126e59187918791879163ffffffff90911690615895565b5f8051602061595283398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612a24613011565b612a2d8161305a565b50565b612a38613011565b612a4061306b565b565b6001600160601b0382165f90815260056020526040812054839060ff16612a8757604051631e94ffd760e11b81526001600160601b0382166004820152602401610f2d565b6001600160601b038085165f90815260026020526040902054612aab911684612ea5565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f5b04742c456b2820460f06a699b464350ad00ad419b30c9bb74699e0d1e64b66916126e59187918791879163ffffffff90911690615895565b6001600160601b0382165f90815260056020526040812054839060ff16612b6857604051631e94ffd760e11b81526001600160601b0382166004820152602401610f2d565b6001600160601b038085165f90815260026020526040902054612b8c911684612fc7565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f4068631e6ddfc25f1831c04cd7b41e313620779732e776b6e8e62273fccd6e6d916126e59187918791879163ffffffff90911690615895565b604051637d56159160e11b815261ffff821660048201526001600160601b03831660248201525f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611b1d565b6001600160601b0382165f90815260056020526040812054839060ff16612c9557604051631e94ffd760e11b81526001600160601b0382166004820152602401610f2d565b6001600160601b038085165f90815260046020526040902054612cb9911684612ea5565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fee2ce932811dedb09eb973e9da29180e86fe3bab034360124e0fd962f795daad916126e59187918791879163ffffffff90911690615895565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612d9f91906158c4565b5f60405180830381855afa9150503d805f8114612dd7576040519150601f19603f3d011682016040523d82523d5f602084013e612ddc565b606091505b50915091508115612e2e576040815110612e0e5780806020019051810190612e0491906158da565b9094509250612e2e565b6020815110612e2e5780806020019051810190612e2b9190614d81565b93505b505094509492505050565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d9190615907565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612f06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7f9190615922565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612f71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f959190615907565b6001600160601b03919091165f908152600660205260409020805463ffffffff191663ffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612eeb565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16612a4057604051631afcd79f60e31b815260040160405180910390fd5b613062613011565b612a2d816129bc565b6130736130c3565b61307b613109565b613083613136565b61308b61317a565b613093613196565b61309b6131d4565b6130a36131f7565b6130ab61321f565b6130b361325e565b6130bb613268565b612a4061327c565b6130d060165b60056132a4565b6130df60165b6005606e6132e6565b6130ee601660055b60c86132e6565b6130fd60165b606e60056132e6565b612a406016606e6130e7565b613113600b6130c9565b61311d600b6130d6565b613127600b6130f4565b612a40600b5b606e60d26132e6565b6131426015600a6132a4565b6131516015600a5b60146132e6565b6131606015600a5b601e6132e6565b61316e6015600a60286132e6565b612a40601560286130e7565b613187602b5b603c6132a4565b612a40602b5b603c60dc6132e6565b6131a2602d60326132a4565b6131ae602d603261314a565b6131bc602d603260336132e6565b6131c8602d6032613159565b612a40602d60336130e7565b6131de602e613180565b6131e8602e61318d565b612a40602e603c5b60486132e6565b613201602c6130c9565b61320b602c6130d6565b613215602c6130f4565b612a40602c61312d565b613229602f6130c9565b613238602f60055b60466132e6565b613246602f600560076132e6565b613252602f6007613231565b612a40602f60056131f0565b612a40600f6130c9565b613272600c6130c9565b612a4060296130c9565b613286600e6130c9565b61329060176130c9565b61329a60306130c9565b612a4060316130c9565b60ff8281165f9081526020819052604090205416156132c5576132c561593d565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561331e5761331e61593d565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b0381168114612a2d575f80fd5b8035610b0781613357565b5f60208284031215613386575f80fd5b813561339181613357565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b03811182821017156133cf576133cf613398565b60405290565b604051608081016001600160401b03811182821017156133cf576133cf613398565b60405160e081016001600160401b03811182821017156133cf576133cf613398565b60405161020081016001600160401b03811182821017156133cf576133cf613398565b60405161024081016001600160401b03811182821017156133cf576133cf613398565b60405160c081016001600160401b03811182821017156133cf576133cf613398565b60405161014081016001600160401b03811182821017156133cf576133cf613398565b604051601f8201601f191681016001600160401b03811182821017156134cc576134cc613398565b604052919050565b5f82601f8301126134e3575f80fd5b8135602083015f806001600160401b0384111561350257613502613398565b50601f8301601f1916602001613517816134a4565b91505082815285838301111561352b575f80fd5b828260208301375f92810160200192909252509392505050565b64ffffffffff81168114612a2d575f80fd5b8035610b0781613545565b8015158114612a2d575f80fd5b8035610b0781613562565b5f610100828403121561358b575f80fd5b6135936133ac565b905061359e8261336b565b815260208201356001600160401b038111156135b8575f80fd5b6135c4848285016134d4565b6020830152506135d66040830161336b565b604082015260608201356001600160401b038111156135f3575f80fd5b6135ff848285016134d4565b60608301525060808201356001600160401b0381111561361d575f80fd5b613629848285016134d4565b60808301525061363b60a08301613557565b60a082015261364c60c08301613557565b60c082015261365d60e0830161356f565b60e082015292915050565b5f60208284031215613678575f80fd5b81356001600160401b0381111561368d575f80fd5b6136998482850161357a565b949350505050565b5f602082840312156136b1575f80fd5b5035919050565b60ff81168114612a2d575f80fd5b8035610b07816136b8565b5f602082840312156136e1575f80fd5b8135613391816136b8565b5f80604083850312156136fd575f80fd5b823561370881613357565b91506020830135613718816136b8565b809150509250929050565b6001600160a01b0381168114612a2d575f80fd5b5f60808284031215613747575f80fd5b61374f6133d5565b905081356001600160401b03811115613766575f80fd5b613772848285016134d4565b825250602082013561378381613723565b6020820152604082013561379681613723565b604082015260608201356001600160401b038111156137b3575f80fd5b6137bf848285016134d4565b60608301525092915050565b5f805f606084860312156137dd575f80fd5b83356137e881613357565b925060208401356001600160401b03811115613802575f80fd5b61380e86828701613737565b925050604084013561381f816136b8565b809150509250925092565b5f806040838503121561383b575f80fd5b823561384681613357565b9150602083013561371881613357565b6001600160401b0381168114612a2d575f80fd5b5f805f6060848603121561387c575f80fd5b833561388781613856565b925060208401356001600160401b038111156138a1575f80fd5b61380e8682870161357a565b5f60e082840312156138bd575f80fd5b6138c56133f7565b905081356138d281613357565b815260208201356138e281613562565b602082015260408201356138f581613562565b6040820152606082013561390881613562565b60608201526139196080830161356f565b608082015260a0828101359082015260c09182013591810191909152919050565b5f805f610120848603121561394d575f80fd5b833561395881613357565b925061396785602086016138ad565b915061010084013561381f816136b8565b5f8060408385031215613989575f80fd5b823561399481613357565b915060208301356001600160401b038111156139ae575f80fd5b6139ba85828601613737565b9150509250929050565b5f805f606084860312156139d6575f80fd5b83356139e181613357565b925060208401356139f181613545565b9150604084013561381f816136b8565b61ffff81168114612a2d575f80fd5b8035610b0781613a01565b5f60a08284031215613a2b575f80fd5b60405160a081016001600160401b0381118282101715613a4d57613a4d613398565b6040529050808235613a5e81613a01565b81526020830135613a6e81613357565b60208201526040830135613a8181613723565b604082015260608301356001600160401b03811115613a9e575f80fd5b613aaa858286016134d4565b6060830152506080830135613abe81613545565b6080919091015292915050565b5f805f8060808587031215613ade575f80fd5b8435613ae981613357565b93506020850135613af981613545565b925060408501356001600160401b03811115613b13575f80fd5b613b1f87828801613a1b565b9250506060850135613b30816136b8565b939692955090935050565b6001600160c01b031981168114612a2d575f80fd5b8035610b0781613b3b565b5f6102008284031215613b6c575f80fd5b613b74613419565b9050613b7f8261336b565b8152613b8d6020830161336b565b6020820152613b9e60408301613b50565b6040820152613baf60608301613b50565b6060820152613bc06080830161336b565b6080820152613bd160a0830161336b565b60a0820152613be260c08301613557565b60c082015260e08201356001600160401b03811115613bff575f80fd5b613c0b848285016134d4565b60e0830152506101008201356001600160401b03811115613c2a575f80fd5b613c36848285016134d4565b61010083015250613c4a6101208301613a10565b610120820152613c5d6101408301613a10565b610140820152613c70610160830161336b565b610160820152613c83610180830161336b565b610180820152613c966101a08301613557565b6101a0820152613ca96101c08301613557565b6101c0820152613cbc6101e08301613557565b6101e082015292915050565b5f805f60608486031215613cda575f80fd5b8335613ce581613357565b925060208401356001600160401b03811115613cff575f80fd5b61380e86828701613b5b565b5f60408284031215613d1b575f80fd5b604080519081016001600160401b0381118282101715613d3d57613d3d613398565b604052823581526020928301359281019290925250919050565b5f808284036101e0811215613d6a575f80fd5b8335613d7581613357565b92506101c0601f1982011215613d89575f80fd5b50613d926133f7565b613d9f8560208601613d0b565b8152613dae8560608601613d0b565b6020820152613dc08560a08601613d0b565b6040820152613dd28560e08601613d0b565b6060820152613de5856101208601613d0b565b6080820152613df8856101608601613d0b565b60a0820152613e0b856101a08601613d0b565b60c0820152809150509250929050565b5f80828403610260811215613e2e575f80fd5b8335613e3981613357565b9250610240601f1982011215613e4d575f80fd5b50613e5661343c565b613e626020850161336b565b8152613e706040850161336b565b6020820152613e816060850161336b565b6040820152613e926080850161336b565b6060820152613ea360a0850161336b565b6080820152613eb460c0850161336b565b60a0820152613ec560e0850161336b565b60c0820152613ed7610100850161336b565b60e0820152613ee9610120850161336b565b610100820152613efc610140850161336b565b610120820152613f0f610160850161336b565b610140820152613f22610180850161336b565b610160820152613f356101a0850161336b565b610180820152613f486101c0850161336b565b6101a0820152613f5b6101e0850161336b565b6101c0820152613f6e610200850161336b565b6101e0820152613f81610220850161336b565b610200820152613f94610240850161336b565b610220820152809150509250929050565b5f60e08284031215613fb5575f80fd5b613fbd61345f565b90508135613fca81613357565b8152613fd98360208401613d0b565b602082015260608201356001600160401b03811115613ff6575f80fd5b614002848285016134d4565b604083015250608082013561401681613545565b606082015261402760a08301613557565b608082015261403860c08301613557565b60a082015292915050565b5f805f60608486031215614055575f80fd5b833561406081613357565b925060208401356001600160401b0381111561407a575f80fd5b61380e86828701613fa5565b63ffffffff81168114612a2d575f80fd5b8035610b0781614086565b5f608082840312156140b2575f80fd5b6140ba6133d5565b905081356140c781613b3b565b815260208201356140d781613562565b602082015260408201356001600160401b038111156140f4575f80fd5b614100848285016134d4565b604083015250606082013561411481614086565b606082015292915050565b5f805f60608486031215614131575f80fd5b833561413c81613357565b925060208401356001600160401b03811115614156575f80fd5b61380e868287016140a2565b5f805f8060808587031215614175575f80fd5b8435614180816136b8565b93506020850135614190816136b8565b925060408501356141a0816136b8565b91506060850135613b30816136b8565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b7f60208301846141b0565b5f60608284031215614200575f80fd5b604051606081016001600160401b038111828210171561422257614222613398565b604052905080823561423381613357565b8152602083013561424381613545565b602082015260408301356001600160401b03811115614260575f80fd5b61426c858286016134d4565b6040830152505092915050565b5f805f6060848603121561428b575f80fd5b833561429681613b3b565b925060208401356001600160401b038111156142b0575f80fd5b61380e868287016141f0565b5f80604083850312156142cd575f80fd5b82356142d881613357565b915060208301356001600160401b038111156142f2575f80fd5b6139ba85828601613b5b565b5f610100828403121561430f575f80fd5b6143176133ac565b90506143228261336b565b81526143306020830161336b565b602082015260408201356001600160401b0381111561434d575f80fd5b614359848285016134d4565b6040830152506060828101359082015261437560808301614097565b608082015261438660a08301614097565b60a082015261439760c08301613557565b60c082015260e08201356001600160401b038111156143b4575f80fd5b6143c0848285016134d4565b60e08301525092915050565b5f805f606084860312156143de575f80fd5b83356143e981613b3b565b925060208401356001600160401b03811115614403575f80fd5b61380e868287016142fe565b5f6020828403121561441f575f80fd5b813561339181613723565b5f806040838503121561443b575f80fd5b823561370881613b3b565b6020815261448b60208201835160ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f602083015160a08084015261369960c08401826141b0565b5f61014082840312156144b5575f80fd5b6144bd613481565b905081356001600160401b038111156144d4575f80fd5b6144e0848285016134d4565b8252506144ef6020830161336b565b602082015260408281013590820152606080830135908201526080808301359082015261451e60a08301614097565b60a082015261452f60c08301613557565b60c082015261454060e0830161356f565b60e0820152614552610100830161356f565b6101008201526101208201356001600160401b03811115614571575f80fd5b61457d848285016134d4565b6101208301525092915050565b5f806040838503121561459b575f80fd5b82356145a681613b3b565b915060208301356001600160401b038111156145c0575f80fd5b6139ba858286016144a4565b5f80604083850312156145dd575f80fd5b82356145e881613357565b915060208301356001600160401b03811115614602575f80fd5b6139ba85828601613fa5565b60808101610b82828460ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f8060408385031215614660575f80fd5b823561370881613856565b5f805f6060848603121561467d575f80fd5b833561468881613357565b925060208401356139f181613a01565b5f805f606084860312156146aa575f80fd5b83356146b581613357565b925060208401356146c581613545565b915060408401356001600160401b038111156146df575f80fd5b6146eb86828701613a1b565b9150509250925092565b5f82601f830112614704575f80fd5b81356001600160401b0381111561471d5761471d613398565b8060051b61472d602082016134a4565b91825260208185018101929081019086841115614748575f80fd5b6020860192505b8383101561477357823561476281613357565b82526020928301929091019061474f565b9695505050505050565b5f610100828403121561478e575f80fd5b6147966133ac565b90506147a18261356f565b81526147af6020830161356f565b60208201526147c06040830161356f565b60408201526147d1606083016136c6565b60608201526147e2608083016136c6565b60808201526147f360a0830161336b565b60a082015261480460c0830161336b565b60c082015260e08201356001600160401b03811115614821575f80fd5b6143c0848285016146f5565b5f805f6060848603121561483f575f80fd5b833561484a81613357565b925060208401356001600160401b03811115614864575f80fd5b61380e8682870161477d565b803562ffffff81168114610b07575f80fd5b5f60e08284031215614892575f80fd5b61489a6133f7565b90506148a58261336b565b81526148b36020830161336b565b60208201526148c460408301614870565b60408201526148d560608301614870565b606082015260808201356001600160401b038111156148f2575f80fd5b6148fe848285016134d4565b60808301525060a08201356001600160401b0381111561491c575f80fd5b614928848285016134d4565b60a08301525061493a60c08301613557565b60c082015292915050565b5f805f8060808587031215614958575f80fd5b843561496381613357565b9350602085013561497381613a01565b925060408501356001600160401b0381111561498d575f80fd5b613b1f87828801614882565b5f805f606084860312156149ab575f80fd5b83356149b681613b3b565b925060208401356001600160401b038111156149d0575f80fd5b61380e868287016144a4565b5f80604083850312156149ed575f80fd5b82356149f881613b3b565b915060208301356001600160401b03811115614a12575f80fd5b6139ba858286016142fe565b5f805f60608486031215614a30575f80fd5b8335614a3b81613357565b92506020840135614a4b81613a01565b915060408401356001600160401b03811115614a65575f80fd5b6146eb86828701614882565b5f805f60608486031215614a83575f80fd5b8335614a8e816136b8565b925060208401356139f1816136b8565b5f8060408385031215614aaf575f80fd5b8235614aba81613b3b565b915060208301356001600160401b03811115614ad4575f80fd5b6139ba858286016141f0565b60ff1981168114612a2d575f80fd5b5f8060408385031215614b00575f80fd5b8235614b0b816136b8565b9150602083013561371881614ae0565b5f8060408385031215614b2c575f80fd5b8235614b3781613357565b915060208301356001600160401b03811115614b51575f80fd5b6139ba858286016140a2565b5f8060408385031215614b6e575f80fd5b8235614b7981613357565b915060208301356001600160401b03811115614b93575f80fd5b6139ba8582860161477d565b5f806101008385031215614bb1575f80fd5b8235614bbc81613357565b9150614bcb84602085016138ad565b90509250929050565b5f60208284031215614be4575f80fd5b5051919050565b60208152614c056020820183516001600160601b03169052565b5f60208301516101006040840152614c216101208401826141b0565b90506040840151614c3d60608501826001600160601b03169052565b506060840151838203601f19016080850152614c5982826141b0565b9150506080840151601f198483030160a0850152614c7782826141b0565b91505060a0840151614c9260c085018264ffffffffff169052565b5060c084015164ffffffffff811660e08501525060e08401518015156101008501525b509392505050565b602081525f825160806020840152614cd860a08401826141b0565b60208501516001600160a01b0390811660408681019190915286015116606080860191909152850151848203601f19016080860152909150614d1a82826141b0565b95945050505050565b5f60e0820190506001600160601b03835116825260208301511515602083015260408301511515604083015260608301511515606083015260808301511515608083015260a083015160a083015260c083015160c083015292915050565b5f60208284031215614d91575f80fd5b815161339181613562565b6020815261ffff82511660208201526001600160601b03602083015116604082015260018060a01b0360408301511660608201525f606083015160a06080840152614dea60c08401826141b0565b905064ffffffffff60808501511660a08401528091505092915050565b60208152614e216020820183516001600160601b03169052565b5f6020830151614e3c60408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b0319811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c083015164ffffffffff811660e08401525060e0830151610200610100840152614ec26102208401826141b0565b9050610100840151601f1984830301610120850152614ee182826141b0565b915050610120840151614efb61014085018261ffff169052565b5061014084015161ffff8116610160850152506101608401516001600160601b038116610180850152506101808401516001600160601b0381166101a0850152506101a084015164ffffffffff81166101c0850152506101c084015164ffffffffff81166101e0850152506101e084015164ffffffffff8116610200850152614cb5565b815180518252602090810151908201526101c081016020838101518051604085015290810151606084015250604083015180516080840152602081015160a0840152506060830151805160c0840152602081015160e0840152506080830151805161010084015260208101516101208401525060a0830151805161014084015260208101516101608401525060c0830151805161018084015260208101516101a08401526126f6565b81516001600160601b031681526102408101602083015161505460208401826001600160601b03169052565b50604083015161506f60408401826001600160601b03169052565b50606083015161508a60608401826001600160601b03169052565b5060808301516150a560808401826001600160601b03169052565b5060a08301516150c060a08401826001600160601b03169052565b5060c08301516150db60c08401826001600160601b03169052565b5060e08301516150f660e08401826001600160601b03169052565b506101008301516151136101008401826001600160601b03169052565b506101208301516151306101208401826001600160601b03169052565b5061014083015161514d6101408401826001600160601b03169052565b5061016083015161516a6101608401826001600160601b03169052565b506101808301516151876101808401826001600160601b03169052565b506101a08301516151a46101a08401826001600160601b03169052565b506101c08301516151c16101c08401826001600160601b03169052565b506101e08301516151de6101e08401826001600160601b03169052565b506102008301516151fb6102008401826001600160601b03169052565b506102208301516126f66102208401826001600160601b03169052565b602081526001600160601b0382511660208201525f6020830151615249604084018280518252602090810151910152565b50604083015160e060808401526152646101008401826141b0565b905064ffffffffff60608501511660a084015264ffffffffff60808501511660c084015264ffffffffff60a08501511660e08401528091505092915050565b602081526001600160401b0360c01b82511660208201526020820151151560408201525f6040830151608060608401526152e060a08401826141b0565b905063ffffffff60608501511660808401528091505092915050565b600181811c9082168061531057607f821691505b60208210810361532e57634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160c01b031991909116815260200190565b602081526001600160601b03825116602082015264ffffffffff60208301511660408201525f604083015160608084015261369960808401826141b0565b602081526001600160601b0382511660208201525f60208301516153b660408401826001600160601b03169052565b50604083015161010060608401526153d26101208401826141b0565b90506060840151608084015260808401516153f560a085018263ffffffff169052565b5060a084015163ffffffff811660c08501525060c084015164ffffffffff811660e08501525060e0840151838203601f1901610100850152614d1a82826141b0565b5f60208284031215615447575f80fd5b815161339181613723565b602081525f8251610140602084015261546f6101608401826141b0565b9050602084015161548b60408501826001600160601b03169052565b506040840151606084015260608401516080840152608084015160a084015260a08401516154c160c085018263ffffffff169052565b5060c084015164ffffffffff811660e08501525060e08401518015156101008501525061010084015180151561012085015250610120840151838203601f1901610140850152614d1a82826141b0565b5f8151808452602084019350602083015f5b8281101561554a5781516001600160601b0316865260209586019590910190600101615523565b5093949350505050565b602081528151151560208201526020820151151560408201525f6040830151615581606084018215159052565b50606083015160ff8116608084015250608083015160ff811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e083015161010080840152613699610120840182615511565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f6040830151615622606084018262ffffff169052565b50606083015162ffffff8116608084015250608083015160e060a084015261564e6101008401826141b0565b905060a0840151601f198483030160c085015261566b82826141b0565b91505060c0840151614cb560e085018264ffffffffff169052565b5f8085851115615694575f80fd5b838611156156a0575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156126f6576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f6001820161573f57634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f60208284031215615756575f80fd5b815161339181613856565b5f60208284031215615771575f80fd5b8151613391816136b8565b601f821115610b2957805f5260205f20601f840160051c810160208510156157a15750805b601f840160051c820191505b8181101561146d575f81556001016157ad565b81516001600160401b038111156157d9576157d9613398565b6157ed816157e784546152fc565b8461577c565b6020601f82116001811461581f575f83156158085750848201515b5f19600385901b1c1916600184901b17845561146d565b5f84815260208120601f198516915b8281101561584e578785015182556020948501946001909201910161582e565b508482101561586b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f6020828403121561588a575f80fd5b815161339181614ae0565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b5f82518060208501845e5f920191825250919050565b5f80604083850312156158eb575f80fd5b82516158f681613562565b602084015190925061371881614086565b5f60208284031215615917575f80fd5b815161339181614086565b5f60208284031215615932575f80fd5b815161339181613357565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220dd908376cfb6f0633fee13cfbfe6cc00ac5500337599d3a8fa3c4fba2f034d1864736f6c634300081a0033",
|
2681
|
+
"bytecode": "0x60806040525f6006553480156012575f80fd5b506159b7806100205f395ff3fe608060405234801561000f575f80fd5b5060043610610297575f3560e01c80637d417f0d11610161578063b4d7efe2116100ca578063e9e96c7011610084578063e9e96c70146107b5578063f0ea17c3146107f2578063f48016ce14610812578063f9b3fe3c14610833578063fe1f18d614610846578063febe92af14610859575f80fd5b8063b4d7efe214610729578063bf1db3f91461073c578063bf7e214f1461074f578063d06458c61461076f578063d7719f461461078f578063e80c61ed146107a2575f80fd5b80639f8151e51161011b5780639f8151e514610633578063a284222914610646578063a5961b4c14610659578063af902500146106f0578063b0628dc314610703578063b1d7d56814610716575f80fd5b80637d417f0d146105a65780638129fc1c146105b95780638eb9000d146105c15780638fb36037146105ec578063962605591461060d57806396f4df2f14610620575f80fd5b806340529b0f1161020357806353ebe129116101bd57806353ebe129146104c757806354f1fa81146104da57806357f80bbf146104ed5780635eede1741461050d578063733044ca146105805780637a9e5e4b14610593575f80fd5b806340529b0f146104485780634793b4ab1461045b578063490840b41461047b5780634a8243921461048e5780634bb2d197146104a1578063533086d4146104b4575f80fd5b8063248a77dd11610254578063248a77dd146103a157806327b1d792146103b45780632bce2d7c146103d45780633048cb3c146103e757806334777712146103fa57806338a699a414610425575f80fd5b80630232ca491461029b57806308077cd9146102e357806309648a9d146102f85780630d358181146103315780631d3be47714610356578063228e42ec14610376575b5f80fd5b6102c66102a9366004614487565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b6102f66102f136600461471f565b610879565b005b61031f61030636600461477e565b5f90815260076020526040902054610100900460ff1690565b60405160ff90911681526020016102da565b61031f61033f366004614795565b60ff9081165f908152602081905260409020541690565b6103696103643660046147c5565b6109c0565b6040516102da919061480e565b6102c6610384366004614487565b6001600160601b039081165f908152600260205260409020541690565b6102c66103af3660046148cc565b610c34565b6103c76103c2366004614487565b610c4f565b6040516102da9190614903565b6102f66103e2366004614a27565b610ce9565b6102f66103f5366004614ab6565b610dc3565b61040d610408366004614be7565b610e6d565b6040516001600160401b0390911681526020016102da565b61043861043336600461477e565b61105f565b60405190151581526020016102da565b6102f6610456366004614c18565b6110ed565b61046e610469366004614487565b61115c565b6040516102da9190614c44565b6102f6610489366004614d6d565b61124f565b6102f661049c366004614e35565b611395565b6102f66104af366004614f7c565b61157e565b6102c66104c23660046148cc565b611764565b6102c66104d53660046148cc565b611778565b6102f66104e8366004614fbe565b61178c565b6105006104fb366004614487565b6118ea565b6040516102da9190615017565b61055661051b366004614487565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b03948516815292841660208401529216918101919091526060016102da565b6102f661058e3660046150aa565b6119cb565b6102f66105a13660046150ed565b611b82565b6102f66105b4366004615108565b611c08565b6102f6611e5e565b6102c66105cf366004614487565b6001600160601b039081165f908152600360205260409020541690565b6105f4611fd6565b6040516001600160e01b031990911681526020016102da565b6102f661061b36600461514b565b61200c565b6102f661062e36600461518e565b6121cd565b6102c66106413660046148cc565b6122e5565b6102f66106543660046151cc565b6122f9565b6106bf61066736600461477e565b60408051606080820183525f80835260208084018290529284018190529384526007825292829020825193840183525460ff80821685526101008204169184019190915262010000900464ffffffffff169082015290565b60408051825160ff9081168252602080850151909116908201529181015164ffffffffff16908201526060016102da565b6102f66106fe3660046151cc565b6123cf565b6102c66107113660046148cc565b6124a5565b6102f66107243660046151e8565b6124b9565b6102f661073736600461522a565b612568565b61043861074a366004614795565b612638565b610757612684565b6040516001600160a01b0390911681526020016102da565b61078261077d3660046147c5565b61269f565b6040516102da9190615246565b6102f661079d366004615324565b6128be565b6102c66107b03660046148cc565b6129f8565b6104386107c3366004615366565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b610805610800366004614487565b612a0c565b6040516102da91906153a3565b6108256108203660046153df565b612af0565b6040519081526020016102da565b6102f6610841366004615411565b612b71565b6102f6610854366004614c18565b612c51565b61086c610867366004615453565b612cb1565b6040516102da919061546e565b610885335b5f36612e82565b5f610891846016612f80565b90505f8061089f8385612fcb565b5f858152600d602090815260409182902089518154838c0151948c015160608d01516001600160601b03908116600160781b026bffffffffffffffffffffffff60781b1964ffffffffff938416600160501b0216600160501b600160d81b0319988416650100000000000269ffffffffffffffffffff19909516939095169290921792909217959095169190911793909317815560808a01518051920151909216600160a01b026001600160a01b0390911617600182015560a08801519294509092508691600282019061097390826155b0565b509050507f2f017e855ca4666f28134f4e57d6c215643dd22172128f0455f479cd7c57f2e88682863332876040516109b09695949392919061566a565b60405180910390a1505050505050565b60408051610100810182525f8082526020820181905281830181905260608083018290526080830182905260a0830182905260c0830181905260e083015291516355ee627560e01b81529091600c9173__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590610a43906001600160c01b03198816906004016156b5565b602060405180830381865af4158015610a5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8291906156ca565b815260208082019290925260409081015f2081516101008101835281546001600160601b038082168352600160601b8204169482019490945263ffffffff600160c01b8504811693820193909352600160e01b909304909116606083015260018101546001600160a01b038116608084015264ffffffffff600160a01b9091041660a083015260028101805460c084019190610b1d9061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b499061552f565b8015610b945780601f10610b6b57610100808354040283529160200191610b94565b820191905f5260205f20905b815481529060010190602001808311610b7757829003601f168201915b50505050508152602001600382018054610bad9061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd99061552f565b8015610c245780601f10610bfb57610100808354040283529160200191610c24565b820191905f5260205f20905b815481529060010190602001808311610c0757829003601f168201915b5050505050815250509050919050565b5f610c3e3361087e565b610c4883836131e5565b9392505050565b604080516080810182525f8082526020820181905291810191909152606080820152600b5f610c7f846017612f80565b815260208082019290925260409081015f208151608081018352815460c081901b6001600160c01b0319168252600160401b810460ff16151594820194909452600160481b90930463ffffffff1691830191909152600181018054606084019190610bad9061552f565b610cf23361087e565b5f610cfe846017612f80565b90505f80610d0c8385612fcb565b5f858152600b602090815260409182902089518154928b0151938b015163ffffffff16600160481b0263ffffffff60481b19941515600160401b0268ffffffffffffffffff1990941660c09290921c919091179290921792909216178155606088015192945090925086916001820190610d8690826155b0565b509050507fe960847e97f8a43de8e7a7a6152c864a89cb6b55e8b46681b41d4c614fbee9778682863332876040516109b09695949392919061566a565b610dcc3361087e565b5f610dd884600b612f80565b90505f80610de68385612fcb565b5f858152600860205260409020875192945090925086918190610e0990826155b0565b5060209190910151600190910180546001600160a01b0319166001600160a01b039092169190911790556040517ffb6ab1b17bdd1e79b770513680d33dd87b6b352476f3d4f9fc2418ad57ab9905906109b09088908490889033903290899061566a565b5f610e773361087e565b610e7f613355565b604051630f37f38f60e41b81526001600160401b03821660048201529091505f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610eda573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610efe91906156ca565b9050610f09816133e5565b5f818152600e602090815260409182902085518154928701519387015160608801516001600160601b039283166001600160c01b031990951694909417600160601b92909516919091029390931765ffffffffffff60c01b1916600160c01b9315159390930264ffffffffff60c81b191692909217600160c81b64ffffffffff92831602178255608085015160018301805464ffffffffff19169190921617905560a08401518491906002820190610fc190826155b0565b5060c08201516003820190610fd690826155b0565b5060e08201516004820190610feb90826155b0565b5050505f818152600760205260409020547fe296db687d9aabcda96659491302a529c398d8dcf066ecab41adebed06a71d55908390610100900460ff16604080516001600160401b03909316835260ff9091166020830152339082015232606082015260800160405180910390a150919050565b5f8181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af41580156110c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e791906156e1565b92915050565b6110f63361087e565b5f611102836017612f80565b90505f806111108385612fcb565b915091507fe960847e97f8a43de8e7a7a6152c864a89cb6b55e8b46681b41d4c614fbee97785828633328760405161114d9695949392919061566a565b60405180910390a15050505050565b6111a36040805160c0810182525f80825260208083018290528284018290526060830182905283518085019094528184528301529060808201908152602001606081525090565b600d5f6111b1846016612f80565b815260208082019290925260409081015f20815160c081018352815464ffffffffff8082168352650100000000008204811683870152600160501b820416828501526001600160601b03600160781b90910481166060830152835180850190945260018301546001600160a01b0381168552600160a01b90041693830193909352608083019190915260028101805460a084019190610bad9061552f565b6112583361087e565b5f61126483600f612f80565b905061126f816133e5565b5f8181526009602090815260408083208551868401516001600160601b03909116600160601b6001600160a01b03928316021782558683015160019092018054606089015160808a015160a08b015160c08c0151969095166001600160a81b031990931692909217600160a01b911515919091021761ffff60a81b1916600160a81b9115159190910260ff60b01b191617600160b01b921515929092029190911760ff60b81b1916600160b81b9215159290920291909117905560079091529020547f55c89d942c4cdaf50df15dfa812580b4246be40868dd2e7b4f002ec972657d6b908490610100900460ff165b604080516001600160601b03909316835260ff909116602083015233908201523260608201526080015b60405180910390a1505050565b61139e3361087e565b6040516355ee627560e01b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906113e1906001600160c01b03198716906004016156b5565b602060405180830381865af41580156113fc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061142091906156ca565b905061142b816133e5565b5f818152600c6020908152604091829020845181549286015193860151606087015163ffffffff908116600160e01b026001600160e01b0391909216600160c01b02166001600160c01b036001600160601b03968716600160601b026001600160c01b03199096169690931695909517939093171692909217178155608083015160018201805460a086015164ffffffffff16600160a01b026001600160c81b03199091166001600160a01b039093169290921791909117905560c083015183919060028201906114fc90826155b0565b5060e0820151600382019061151190826155b0565b5050505f818152600760205260409020547f91da34dfa31974c4906c0658e7beb45ba0721f93a70e50942e77932cce7d8b0d908490610100900460ff165b604080516001600160c01b0319909316835260ff90911660208301523390820152326060820152608001611388565b6115873361087e565b6040516355ee627560e01b81525f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee6275906115ca906001600160c01b03198716906004016156b5565b602060405180830381865af41580156115e5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061160991906156ca565b9050611614816133e5565b5f818152600a60209081526040918290208451918501516001600160a01b03928316600160a01b6001600160601b039092168202178255928501516001820180546060880151608089015160a08a015160c08b01519588166001600160c01b03199094169390931763ffffffff9092169097021765ffffffffffff60c01b1916600160c01b64ffffffffff9097169690960260ff60e81b191695909517600160e81b951515959095029490941760ff60f01b1916600160f01b911515919091021790925560e08401516002830180546001600160a01b03191691909216179055610100830151839190600382019061170c90826155b0565b50610120820151600482019061172290826155b0565b5050505f818152600760205260409020547f05bfde9bf10cfb02076d77cd133bc8b091c41ef515166c17b2361a684fc6b924908490610100900460ff1661154f565b5f61176e3361087e565b610c488383613690565b5f6117823361087e565b610c4883836137e8565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156117ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061181291906156e1565b156118405760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff808516908316146118815760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401611837565b60ff8084165f908152600160209081526040808320888516845282528083208585168452909152902054166118e45760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401611837565b50505050565b6040805160e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915260095f61193084600f612f80565b815260208082019290925260409081015f20815160e08101835281546001600160601b03811682526001600160a01b03600160601b9091048116948201949094526001909101549283169181019190915260ff600160a01b8304811615156060830152600160a81b8304811615156080830152600160b01b83048116151560a0830152600160b81b909204909116151560c082015292915050565b6119d43361087e565b604051630f37f38f60e41b81526001600160401b03841660048201525f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015611a2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a5091906156ca565b90505f80611a5e8385612fcb565b5f858152600e602090815260409182902089518154928b0151938b015160608c01516001600160601b039283166001600160c01b031990951694909417600160601b92909516919091029390931765ffffffffffff60c01b1916600160c01b9315159390930264ffffffffff60c81b191692909217600160c81b64ffffffffff92831602178255608089015160018301805464ffffffffff19169190921617905560a088015192945090925086916002820190611b1b90826155b0565b5060c08201516003820190611b3090826155b0565b5060e08201516004820190611b4590826155b0565b509050507fcd6efe20de8bda1c84f56479214f5c845ed9932acb46890901bb98bef682554d8682863332876040516109b0969594939291906156fc565b33611b8b612684565b6001600160a01b0316816001600160a01b031614611bc65760405162d1953b60e31b81526001600160a01b0382166004820152602401611837565b816001600160a01b03163b5f03611bfb576040516361798f2f60e11b81526001600160a01b0383166004820152602401611837565b611c0482613940565b5050565b611c113361087e565b6040516355ee627560e01b81525f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611c54906001600160c01b03198816906004016156b5565b602060405180830381865af4158015611c6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c9391906156ca565b90505f80611ca18385612fcb565b9150915084600a5f8581526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151815f0160146101000a8154816001600160601b0302191690836001600160601b031602179055506040820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555060608201518160010160146101000a81548163ffffffff021916908363ffffffff16021790555060808201518160010160186101000a81548164ffffffffff021916908364ffffffffff16021790555060a082015181600101601d6101000a81548160ff02191690831515021790555060c082015181600101601e6101000a81548160ff02191690831515021790555060e0820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816003019081611e0b91906155b0565b506101208201516004820190611e2190826155b0565b509050507fa8e6a06b96b5dad840c21bc79949e878d0f743ad0a1ba821d6d0870fcec079bb8682863332876040516109b096959493929190615747565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f81158015611ea25750825b90505f826001600160401b03166001148015611ebd5750303b155b905081158015611ecb575080155b15611ee95760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611f1357845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f789190615793565b9050611f83816139a0565b611f8b6139b4565b50508315611fcf57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161114d565b5050505050565b5f8051602061596283398151915280545f9190600160a01b900460ff16611ffd575f612006565b638fb3603760e01b5b91505090565b6120153361087e565b6040516355ee627560e01b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590612058906001600160c01b03198816906004016156b5565b602060405180830381865af4158015612073573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061209791906156ca565b90505f806120a58385612fcb565b5f858152600c602090815260409182902089518154928b0151938b015160608c015163ffffffff908116600160e01b026001600160e01b0391909216600160c01b02166001600160c01b036001600160601b03968716600160601b026001600160c01b03199096169690931695909517939093171692909217178155608088015160018201805460a08b015164ffffffffff16600160a01b026001600160c81b03199091166001600160a01b039093169290921791909117905560c08801519294509092508691600282019061217b90826155b0565b5060e0820151600382019061219090826155b0565b509050507fc4ad93e06e3375a8710bb9cd30ed30b0a69d9aab524480a05f51568c66b8e3c98682863332876040516109b096959493929190615747565b6121d63361087e565b5f6121e284600f612f80565b90505f806121f08385612fcb565b5f858152600960209081526040918290208951918a01516001600160601b03909216600160601b6001600160a01b0393841602178155898301516001909101805460608c015160808d015160a08e015160c08f0151959096166001600160a81b031990931692909217600160a01b911515919091021761ffff60a81b1916600160a81b9115159190910260ff60b01b191617600160b01b931515939093029290921760ff60b81b1916600160b81b911515919091021790555191935091507fab6330e3b0f09e536bb75b9c192c588e6833a785d9097c0483661778fc3b5ca1906109b09088908490889033903290899061566a565b5f6122ef3361087e565b610c4883836139c6565b6123023361087e565b6040516355ee627560e01b81525f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590612345906001600160c01b03198716906004016156b5565b602060405180830381865af4158015612360573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061238491906156ca565b90505f806123928385612fcb565b915091507fa8e6a06b96b5dad840c21bc79949e878d0f743ad0a1ba821d6d0870fcec079bb85828633328760405161114d96959493929190615747565b6123d83361087e565b6040516355ee627560e01b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee62759061241b906001600160c01b03198716906004016156b5565b602060405180830381865af4158015612436573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061245a91906156ca565b90505f806124688385612fcb565b915091507fc4ad93e06e3375a8710bb9cd30ed30b0a69d9aab524480a05f51568c66b8e3c985828633328760405161114d96959493929190615747565b5f6124af3361087e565b610c488383613b1e565b6124c23361087e565b6124cb82613c76565b5f6124d783600b612f80565b90506124e2816133e5565b5f8181526008602052604090208251839190819061250090826155b0565b50602091820151600190910180546001600160a01b0319166001600160a01b039092169190911790555f828152600790915260409020547f99debd4964e0a4ae18ad50bcea2c6cc21c02c47c6526460f830cda565bb35ffd908490610100900460ff1661135e565b6125713361087e565b604051630f37f38f60e41b81526001600160401b03831660048201525f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af41580156125c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125ed91906156ca565b90505f806125fb8385612fcb565b915091507fcd6efe20de8bda1c84f56479214f5c845ed9932acb46890901bb98bef682554d85828633328760405161114d969594939291906156fc565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024016110a8565b5f80516020615962833981519152546001600160a01b031690565b60408051610140810182525f8082526020820181905281830181905260608083018290526080830182905260a0830182905260c0830182905260e08301829052610100830181905261012083015291516355ee627560e01b81529091600a9173__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590612732906001600160c01b03198816906004016156b5565b602060405180830381865af415801561274d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061277191906156ca565b815260208082019290925260409081015f2081516101408101835281546001600160a01b0380821683526001600160601b03600160a01b92839004169583019590955260018301548086169483019490945263ffffffff90840416606082015264ffffffffff600160c01b840416608082015260ff600160e81b84048116151560a0830152600160f01b909304909216151560c0830152600281015490921660e08201526003820180549192916101008401919061282e9061552f565b80601f016020809104026020016040519081016040528092919081815260200182805461285a9061552f565b80156128a55780601f1061287c576101008083540402835291602001916128a5565b820191905f5260205f20905b81548152906001019060200180831161288857829003601f168201915b50505050508152602001600482018054610bad9061552f565b6128c73361087e565b6128d082613c76565b5f6128dc836016612f80565b90506128e7816133e5565b5f818152600d602090815260409182902084518154838701519487015160608801516001600160601b03908116600160781b026bffffffffffffffffffffffff60781b1964ffffffffff938416600160501b0216600160501b600160d81b0319988416650100000000000269ffffffffffffffffffff19909516939095169290921792909217959095169190911793909317815560808501518051920151909216600160a01b026001600160a01b0390911617600182015560a083015183919060028201906129b690826155b0565b5050505f818152600760205260409020547fe4ae723f12a479272b917f87ec8cec8e499456fd990a74003daf0b80d0b32ed3908490610100900460ff1661135e565b5f612a023361087e565b610c488383613d79565b60408051808201909152606081525f602082015260085f612a2e84600b612f80565b81526020019081526020015f206040518060400160405290815f82018054612a559061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054612a819061552f565b8015612acc5780601f10612aa357610100808354040283529160200191612acc565b820191905f5260205f20905b815481529060010190602001808311612aaf57829003601f168201915b5050509183525050600191909101546001600160a01b031660209091015292915050565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015612b4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c4891906156ca565b612b7a3361087e565b612b8382613c76565b5f612b8f836017612f80565b9050612b9a816133e5565b5f818152600b602090815260409182902084518154928601519386015163ffffffff16600160481b0263ffffffff60481b19941515600160401b0268ffffffffffffffffff1990941660c09290921c91909117929092179290921617815560608301518391906001820190612c0f90826155b0565b5050505f818152600760205260409020547f74d7be5c20e6cf628ccae9cc370ffd1d2a95a8164eb772c89be0ed1242752d0e908490610100900460ff1661135e565b612c5a3361087e565b5f612c66836016612f80565b90505f80612c748385612fcb565b915091507f2f017e855ca4666f28134f4e57d6c215643dd22172128f0455f479cd7c57f2e885828633328760405161114d9695949392919061566a565b60408051610100810182525f8082526020820181905281830181905260608083018290526080830182905260a0830181905260c0830181905260e08301529151630f37f38f60e41b81526001600160401b03841660048201529091600e9173__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015612d49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d6d91906156ca565b815260208082019290925260409081015f2081516101008101835281546001600160601b038082168352600160601b82041694820194909452600160c01b840460ff16151592810192909252600160c81b90920464ffffffffff9081166060830152600183015416608082015260028201805491929160a084019190612df29061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054612e1e9061552f565b8015612e695780601f10612e4057610100808354040283529160200191612e69565b820191905f5260205f20905b815481529060010190602001808311612e4c57829003601f168201915b5050505050815260200160038201805461282e9061552f565b5f805160206159628339815191525f80612eba612e9d612684565b8730612eac60045f8a8c6157ae565b612eb5916157d5565b613ed1565b9150915081612f785763ffffffff811615612f5557825460ff60a01b1916600160a01b178355612ee8612684565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612f179392919061580b565b5f604051808303815f87803b158015612f2e575f80fd5b505af1158015612f40573d5f803e3d5ffd5b5050845460ff60a01b1916855550612f789050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401611837565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401612b32565b60405163037c8cb160e51b815260ff821660048201525f90819073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561301f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061304391906156e1565b1561306457604051631260077f60e21b815260048101859052602401611837565b50505f82815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930464ffffffffff1692919073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156130dd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061310191906156e1565b15613122576040516310b1404560e21b815260048101869052602401611837565b60ff8085161461315157805461313e90839060ff16818761178c565b805461ff00191661010060ff8616021781555b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613198573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131bc919061584a565b815464ffffffffff91909116620100000266ffffffffff00001990911617905590939092509050565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613254573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061327891906156e1565b6132a057604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f908152600360205260409020546132c4911684613fd9565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fc813323abc29b7cc59ddd274e5941cad2a987aa85c181fbde230bfb449b000969161333d9187918791879164ffffffffff90911690615865565b60405180910390a161334e8461405e565b5092915050565b600680545f918261336583615895565b9091555050600654604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af41580156133bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133e091906158b9565b905090565b604051634b00e98f60e11b8152600481018290525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015613435573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061345991906158d4565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af41580156134ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134d091906156e1565b156134f357604051633d61be7d60e11b815260ff82166004820152602401611837565b5f828152600760205260409081902080549151638d38cd4b60e01b81526201000090920464ffffffffff1660048301529073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af415801561355e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061358291906156e1565b156135ac57604051637791d47d60e01b81526004810184905260ff83166024820152604401611837565b6135b582612638565b6135d7576040516391eb5e8760e01b815260ff83166004820152602401611837565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af415801561361f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613643919061584a565b60ff9384165f81815260208190526040902054845461ffff19169091179416610100029390931766ffffffffff000019166201000064ffffffffff94909416939093029290921790555050565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af41580156136ff573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061372391906156e1565b61374b57604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f9081526004602052604090205461376f9116846140fd565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f5d0252a8f87c13449ff1a0e89d6a9d8dff6a3860c4cbbae6bd98d16f0924115b9161333d9187918791879164ffffffffff90911690615865565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613857573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061387b91906156e1565b6138a357604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f908152600360205260409020546138c79116846140fd565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fcc72dbc9604f941e2273f4dfa0b71700384aa0f5da7c3fef80ecb075ac0010f89161333d9187918791879164ffffffffff90911690615865565b5f8051602061596283398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6139a8614147565b6139b181614190565b50565b6139bc614147565b6139c46141a1565b565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613a35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a5991906156e1565b613a8157604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f90815260026020526040902054613aa5911684613fd9565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fa9c12735dda7f4e5a00ab4e6a4cfdc194c4f03f3885a5f18abfa66b77b8cdae39161333d9187918791879164ffffffffff90911690615865565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613b8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bb191906156e1565b613bd957604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f90815260026020526040902054613bfd9116846140fd565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f561cfda68ea43752c3141f3761d148409c741e20d766a95c64721f2c6ace5ba29161333d9187918791879164ffffffffff90911690615865565b6001600160601b0381165f9081526005602052604090819020549051638d38cd4b60e01b815264ffffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613ce4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d0891906156e1565b15613d31576040516314d5804160e01b81526001600160601b0382166004820152602401611837565b613d3a8161405e565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613de8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e0c91906156e1565b613e3457604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f90815260046020526040902054613e58911684613fd9565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f52a6c3cc342afb5a41442a5b4757dbdd11e508f0f75a902a75a29d0409905a999161333d9187918791879164ffffffffff90911690615865565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613f3f91906158ef565b5f60405180830381855afa9150503d805f8114613f77576040519150601f19603f3d011682016040523d82523d5f602084013e613f7c565b606091505b50915091508115613fce576040815110613fae5780806020019051810190613fa49190615905565b9094509250613fce565b6020815110613fce5780806020019051810190613fcb91906156e1565b93505b505094509492505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af415801561403a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c489190615932565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af41580156140a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140c9919061584a565b6001600160601b03919091165f908152600560205260409020805464ffffffffff191664ffffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa229060440161401f565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166139c457604051631afcd79f60e31b815260040160405180910390fd5b614198614147565b6139b181613940565b6141a96141f9565b6141b1614216565b6141b961424a565b6141c161428e565b6141c96142aa565b6141d16142f7565b6141d9614317565b6141e161432b565b6141e961436a565b6141f1614374565b6139c4614388565b61420660165b60056143b0565b6139c460165b60055b60c86143f2565b614220600b6141ff565b61422e600b6005606e6143f2565b61423c600b606e60056143f2565b6139c4600b606e60d26143f2565b6142566015600a6143b0565b6142656015600a5b60146143f2565b6142746015600a5b601e6143f2565b6142826015600a60286143f2565b6139c46015602861420f565b61429b602b5b603c6143b0565b6139c4602b5b603c60dc6143f2565b6142b6602d60326143b0565b6142c2602d603261425e565b6142d0602d603260336143f2565b6142dc602d603261426d565b6142e8602d603361420f565b6139c4602d60335b60486143f2565b614301602e614294565b61430b602e6142a1565b6139c4602e603c6142f0565b614321602c6141ff565b6139c4602c61420c565b614335602f6141ff565b614344602f60055b60466143f2565b614352602f600560076143f2565b61435e602f600761433d565b6139c4602f60056142f0565b6139c4600f6141ff565b61437e600c6141ff565b6139c460296141ff565b614392600e6141ff565b61439c60176141ff565b6143a660306141ff565b6139c460316141ff565b60ff8281165f9081526020819052604090205416156143d1576143d161594d565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561442a5761442a61594d565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b03811681146139b1575f80fd5b803561448281614463565b919050565b5f60208284031215614497575f80fd5b8135610c4881614463565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156144d8576144d86144a2565b60405290565b60405160c081016001600160401b03811182821017156144d8576144d86144a2565b60405161010081016001600160401b03811182821017156144d8576144d86144a2565b60405160e081016001600160401b03811182821017156144d8576144d86144a2565b60405161014081016001600160401b03811182821017156144d8576144d86144a2565b64ffffffffff811681146139b1575f80fd5b803561448281614568565b6001600160a01b03811681146139b1575f80fd5b803561448281614585565b5f604082840312156145b4575f80fd5b6145bc6144b6565b905081356145c981614585565b815260208201356145d981614463565b602082015292915050565b5f82601f8301126145f3575f80fd5b8135602083015f806001600160401b03841115614612576146126144a2565b50604051601f19601f85018116603f011681018181106001600160401b0382111715614640576146406144a2565b604052838152905080828401871015614657575f80fd5b838360208301375f602085830101528094505050505092915050565b5f60e08284031215614683575f80fd5b61468b6144de565b9050813561469881614568565b815260208201356146a881614568565b60208201526146b96040830161457a565b60408201526146ca60608301614477565b60608201526146dc83608084016145a4565b608082015260c08201356001600160401b038111156146f9575f80fd5b614705848285016145e4565b60a08301525092915050565b60ff811681146139b1575f80fd5b5f805f60608486031215614731575f80fd5b833561473c81614463565b925060208401356001600160401b03811115614756575f80fd5b61476286828701614673565b925050604084013561477381614711565b809150509250925092565b5f6020828403121561478e575f80fd5b5035919050565b5f602082840312156147a5575f80fd5b8135610c4881614711565b6001600160c01b0319811681146139b1575f80fd5b5f602082840312156147d5575f80fd5b8135610c48816147b0565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201525f602083015161483d60408401826001600160601b03169052565b50604083015163ffffffff8116606084015250606083015163ffffffff811660808401525060808301516001600160a01b03811660a08401525060a083015164ffffffffff811660c08401525060c083015161010060e08401526148a56101208401826147e0565b905060e0840151601f19848303016101008501526148c382826147e0565b95945050505050565b5f80604083850312156148dd575f80fd5b82356148e881614463565b915060208301356148f881614463565b809150509250929050565b602081526001600160401b0360c01b825116602082015260208201511515604082015263ffffffff60408301511660608201525f606083015160808084015261494f60a08401826147e0565b949350505050565b80151581146139b1575f80fd5b803561448281614957565b63ffffffff811681146139b1575f80fd5b80356144828161496f565b5f6080828403121561499b575f80fd5b604051608081016001600160401b03811182821017156149bd576149bd6144a2565b60405290508082356149ce816147b0565b815260208301356149de81614957565b602082015260408301356149f18161496f565b604082015260608301356001600160401b03811115614a0e575f80fd5b614a1a858286016145e4565b6060830152505092915050565b5f805f60608486031215614a39575f80fd5b8335614a4481614463565b925060208401356001600160401b03811115614a5e575f80fd5b6147628682870161498b565b5f60408284031215614a7a575f80fd5b614a826144b6565b905081356001600160401b03811115614a99575f80fd5b614aa5848285016145e4565b82525060208201356145d981614585565b5f805f60608486031215614ac8575f80fd5b8335614ad381614463565b925060208401356001600160401b03811115614aed575f80fd5b61476286828701614a6a565b5f6101008284031215614b0a575f80fd5b614b12614500565b9050614b1d82614477565b8152614b2b60208301614477565b6020820152614b3c60408301614964565b6040820152614b4d6060830161457a565b6060820152614b5e6080830161457a565b608082015260a08201356001600160401b03811115614b7b575f80fd5b614b87848285016145e4565b60a08301525060c08201356001600160401b03811115614ba5575f80fd5b614bb1848285016145e4565b60c08301525060e08201356001600160401b03811115614bcf575f80fd5b614bdb848285016145e4565b60e08301525092915050565b5f60208284031215614bf7575f80fd5b81356001600160401b03811115614c0c575f80fd5b61494f84828501614af9565b5f8060408385031215614c29575f80fd5b8235614c3481614463565b915060208301356148f881614711565b6020815264ffffffffff825116602082015264ffffffffff602083015116604082015264ffffffffff60408301511660608201526001600160601b0360608301511660808201525f6080830151614cba60a084018280516001600160a01b031682526020908101516001600160601b0316910152565b5060a083015160e08084015261494f6101008401826147e0565b5f60e08284031215614ce4575f80fd5b614cec614523565b90508135614cf981614463565b81526020820135614d0981614585565b60208201526040820135614d1c81614585565b60408201526060820135614d2f81614957565b6060820152614d4060808301614964565b6080820152614d5160a08301614964565b60a0820152614d6260c08301614964565b60c082015292915050565b5f806101008385031215614d7f575f80fd5b8235614d8a81614463565b9150614d998460208501614cd4565b90509250929050565b5f6101008284031215614db3575f80fd5b614dbb614500565b9050614dc682614477565b8152614dd460208301614477565b6020820152614de560408301614980565b6040820152614df660608301614980565b6060820152614e0760808301614599565b6080820152614e1860a0830161457a565b60a082015260c08201356001600160401b03811115614ba5575f80fd5b5f8060408385031215614e46575f80fd5b8235614e51816147b0565b915060208301356001600160401b03811115614e6b575f80fd5b614e7785828601614da2565b9150509250929050565b5f6101408284031215614e92575f80fd5b614e9a614545565b9050614ea582614599565b8152614eb360208301614477565b6020820152614ec460408301614599565b6040820152614ed560608301614980565b6060820152614ee66080830161457a565b6080820152614ef760a08301614964565b60a0820152614f0860c08301614964565b60c0820152614f1960e08301614599565b60e08201526101008201356001600160401b03811115614f37575f80fd5b614f43848285016145e4565b610100830152506101208201356001600160401b03811115614f63575f80fd5b614f6f848285016145e4565b6101208301525092915050565b5f8060408385031215614f8d575f80fd5b8235614f98816147b0565b915060208301356001600160401b03811115614fb2575f80fd5b614e7785828601614e81565b5f805f8060808587031215614fd1575f80fd5b8435614fdc81614711565b93506020850135614fec81614711565b92506040850135614ffc81614711565b9150606085013561500c81614711565b939692955090935050565b5f60e0820190506001600160601b03835116825260018060a01b03602084015116602083015260018060a01b036040840151166040830152606083015115156060830152608083015161506e608084018215159052565b5060a083015161508260a084018215159052565b5060c083015161334e60c084018215159052565b6001600160401b03811681146139b1575f80fd5b5f805f606084860312156150bc575f80fd5b83356150c781615096565b925060208401356001600160401b038111156150e1575f80fd5b61476286828701614af9565b5f602082840312156150fd575f80fd5b8135610c4881614585565b5f805f6060848603121561511a575f80fd5b8335615125816147b0565b925060208401356001600160401b0381111561513f575f80fd5b61476286828701614e81565b5f805f6060848603121561515d575f80fd5b8335615168816147b0565b925060208401356001600160401b03811115615182575f80fd5b61476286828701614da2565b5f805f61012084860312156151a1575f80fd5b83356151ac81614463565b92506151bb8560208601614cd4565b915061010084013561477381614711565b5f80604083850312156151dd575f80fd5b8235614c34816147b0565b5f80604083850312156151f9575f80fd5b823561520481614463565b915060208301356001600160401b0381111561521e575f80fd5b614e7785828601614a6a565b5f806040838503121561523b575f80fd5b8235614c3481615096565b602081526152606020820183516001600160a01b03169052565b5f602083015161527b60408401826001600160601b03169052565b5060408301516001600160a01b038116606084015250606083015163ffffffff8116608084015250608083015164ffffffffff811660a08401525060a083015180151560c08401525060c083015180151560e08401525060e08301516001600160a01b038116610100840152506101008301516101406101208401526153056101608401826147e0565b9050610120840151601f19848303016101408501526148c382826147e0565b5f8060408385031215615335575f80fd5b823561534081614463565b915060208301356001600160401b0381111561535a575f80fd5b614e7785828601614673565b5f805f60608486031215615378575f80fd5b833561538381614711565b9250602084013561539381614711565b9150604084013561477381614711565b602081525f8251604060208401526153be60608401826147e0565b602094909401516001600160a01b0316604093909301929092525090919050565b5f80604083850312156153f0575f80fd5b82356153fb81614711565b9150602083013560ff19811681146148f8575f80fd5b5f8060408385031215615422575f80fd5b823561542d81614463565b915060208301356001600160401b03811115615447575f80fd5b614e778582860161498b565b5f60208284031215615463575f80fd5b8135610c4881615096565b602081526154886020820183516001600160601b03169052565b5f60208301516154a360408401826001600160601b03169052565b506040830151801515606084015250606083015164ffffffffff8116608084015250608083015164ffffffffff811660a08401525060a083015161010060c08401526154f36101208401826147e0565b905060c0840151601f198483030160e085015261551082826147e0565b91505060e0840151601f19848303016101008501526148c382826147e0565b600181811c9082168061554357607f821691505b60208210810361556157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156155ab57805f5260205f20601f840160051c8101602085101561558c5750805b601f840160051c820191505b81811015611fcf575f8155600101615598565b505050565b81516001600160401b038111156155c9576155c96144a2565b6155dd816155d7845461552f565b84615567565b6020601f82116001811461560f575f83156155f85750848201515b5f19600385901b1c1916600184901b178455611fcf565b5f84815260208120601f198516915b8281101561563e578785015182556020948501946001909201910161561e565b508482101561565b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160601b0396909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b6001600160c01b031991909116815260200190565b5f602082840312156156da575f80fd5b5051919050565b5f602082840312156156f1575f80fd5b8151610c4881614957565b6001600160401b0396909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b6001600160c01b031996909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b5f602082840312156157a3575f80fd5b8151610c4881614585565b5f80858511156157bc575f80fd5b838611156157c8575f80fd5b5050820193919092039150565b80356001600160e01b0319811690600484101561334e576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f6020828403121561585a575f80fd5b8151610c4881614568565b6001600160601b03948516815292841660208401529216604082015264ffffffffff909116606082015260800190565b5f600182016158b257634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f602082840312156158c9575f80fd5b8151610c4881615096565b5f602082840312156158e4575f80fd5b8151610c4881614711565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615916575f80fd5b825161592181614957565b60208401519092506148f88161496f565b5f60208284031215615942575f80fd5b8151610c4881614463565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220522a8447ccdfeccefc51439dac62d64f9cfe445cdd0997c35d9e4874d604e12664736f6c634300081a0033",
|
2682
|
+
"deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610297575f3560e01c80637d417f0d11610161578063b4d7efe2116100ca578063e9e96c7011610084578063e9e96c70146107b5578063f0ea17c3146107f2578063f48016ce14610812578063f9b3fe3c14610833578063fe1f18d614610846578063febe92af14610859575f80fd5b8063b4d7efe214610729578063bf1db3f91461073c578063bf7e214f1461074f578063d06458c61461076f578063d7719f461461078f578063e80c61ed146107a2575f80fd5b80639f8151e51161011b5780639f8151e514610633578063a284222914610646578063a5961b4c14610659578063af902500146106f0578063b0628dc314610703578063b1d7d56814610716575f80fd5b80637d417f0d146105a65780638129fc1c146105b95780638eb9000d146105c15780638fb36037146105ec578063962605591461060d57806396f4df2f14610620575f80fd5b806340529b0f1161020357806353ebe129116101bd57806353ebe129146104c757806354f1fa81146104da57806357f80bbf146104ed5780635eede1741461050d578063733044ca146105805780637a9e5e4b14610593575f80fd5b806340529b0f146104485780634793b4ab1461045b578063490840b41461047b5780634a8243921461048e5780634bb2d197146104a1578063533086d4146104b4575f80fd5b8063248a77dd11610254578063248a77dd146103a157806327b1d792146103b45780632bce2d7c146103d45780633048cb3c146103e757806334777712146103fa57806338a699a414610425575f80fd5b80630232ca491461029b57806308077cd9146102e357806309648a9d146102f85780630d358181146103315780631d3be47714610356578063228e42ec14610376575b5f80fd5b6102c66102a9366004614487565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b6102f66102f136600461471f565b610879565b005b61031f61030636600461477e565b5f90815260076020526040902054610100900460ff1690565b60405160ff90911681526020016102da565b61031f61033f366004614795565b60ff9081165f908152602081905260409020541690565b6103696103643660046147c5565b6109c0565b6040516102da919061480e565b6102c6610384366004614487565b6001600160601b039081165f908152600260205260409020541690565b6102c66103af3660046148cc565b610c34565b6103c76103c2366004614487565b610c4f565b6040516102da9190614903565b6102f66103e2366004614a27565b610ce9565b6102f66103f5366004614ab6565b610dc3565b61040d610408366004614be7565b610e6d565b6040516001600160401b0390911681526020016102da565b61043861043336600461477e565b61105f565b60405190151581526020016102da565b6102f6610456366004614c18565b6110ed565b61046e610469366004614487565b61115c565b6040516102da9190614c44565b6102f6610489366004614d6d565b61124f565b6102f661049c366004614e35565b611395565b6102f66104af366004614f7c565b61157e565b6102c66104c23660046148cc565b611764565b6102c66104d53660046148cc565b611778565b6102f66104e8366004614fbe565b61178c565b6105006104fb366004614487565b6118ea565b6040516102da9190615017565b61055661051b366004614487565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b03948516815292841660208401529216918101919091526060016102da565b6102f661058e3660046150aa565b6119cb565b6102f66105a13660046150ed565b611b82565b6102f66105b4366004615108565b611c08565b6102f6611e5e565b6102c66105cf366004614487565b6001600160601b039081165f908152600360205260409020541690565b6105f4611fd6565b6040516001600160e01b031990911681526020016102da565b6102f661061b36600461514b565b61200c565b6102f661062e36600461518e565b6121cd565b6102c66106413660046148cc565b6122e5565b6102f66106543660046151cc565b6122f9565b6106bf61066736600461477e565b60408051606080820183525f80835260208084018290529284018190529384526007825292829020825193840183525460ff80821685526101008204169184019190915262010000900464ffffffffff169082015290565b60408051825160ff9081168252602080850151909116908201529181015164ffffffffff16908201526060016102da565b6102f66106fe3660046151cc565b6123cf565b6102c66107113660046148cc565b6124a5565b6102f66107243660046151e8565b6124b9565b6102f661073736600461522a565b612568565b61043861074a366004614795565b612638565b610757612684565b6040516001600160a01b0390911681526020016102da565b61078261077d3660046147c5565b61269f565b6040516102da9190615246565b6102f661079d366004615324565b6128be565b6102c66107b03660046148cc565b6129f8565b6104386107c3366004615366565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b610805610800366004614487565b612a0c565b6040516102da91906153a3565b6108256108203660046153df565b612af0565b6040519081526020016102da565b6102f6610841366004615411565b612b71565b6102f6610854366004614c18565b612c51565b61086c610867366004615453565b612cb1565b6040516102da919061546e565b610885335b5f36612e82565b5f610891846016612f80565b90505f8061089f8385612fcb565b5f858152600d602090815260409182902089518154838c0151948c015160608d01516001600160601b03908116600160781b026bffffffffffffffffffffffff60781b1964ffffffffff938416600160501b0216600160501b600160d81b0319988416650100000000000269ffffffffffffffffffff19909516939095169290921792909217959095169190911793909317815560808a01518051920151909216600160a01b026001600160a01b0390911617600182015560a08801519294509092508691600282019061097390826155b0565b509050507f2f017e855ca4666f28134f4e57d6c215643dd22172128f0455f479cd7c57f2e88682863332876040516109b09695949392919061566a565b60405180910390a1505050505050565b60408051610100810182525f8082526020820181905281830181905260608083018290526080830182905260a0830182905260c0830181905260e083015291516355ee627560e01b81529091600c9173__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590610a43906001600160c01b03198816906004016156b5565b602060405180830381865af4158015610a5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8291906156ca565b815260208082019290925260409081015f2081516101008101835281546001600160601b038082168352600160601b8204169482019490945263ffffffff600160c01b8504811693820193909352600160e01b909304909116606083015260018101546001600160a01b038116608084015264ffffffffff600160a01b9091041660a083015260028101805460c084019190610b1d9061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b499061552f565b8015610b945780601f10610b6b57610100808354040283529160200191610b94565b820191905f5260205f20905b815481529060010190602001808311610b7757829003601f168201915b50505050508152602001600382018054610bad9061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd99061552f565b8015610c245780601f10610bfb57610100808354040283529160200191610c24565b820191905f5260205f20905b815481529060010190602001808311610c0757829003601f168201915b5050505050815250509050919050565b5f610c3e3361087e565b610c4883836131e5565b9392505050565b604080516080810182525f8082526020820181905291810191909152606080820152600b5f610c7f846017612f80565b815260208082019290925260409081015f208151608081018352815460c081901b6001600160c01b0319168252600160401b810460ff16151594820194909452600160481b90930463ffffffff1691830191909152600181018054606084019190610bad9061552f565b610cf23361087e565b5f610cfe846017612f80565b90505f80610d0c8385612fcb565b5f858152600b602090815260409182902089518154928b0151938b015163ffffffff16600160481b0263ffffffff60481b19941515600160401b0268ffffffffffffffffff1990941660c09290921c919091179290921792909216178155606088015192945090925086916001820190610d8690826155b0565b509050507fe960847e97f8a43de8e7a7a6152c864a89cb6b55e8b46681b41d4c614fbee9778682863332876040516109b09695949392919061566a565b610dcc3361087e565b5f610dd884600b612f80565b90505f80610de68385612fcb565b5f858152600860205260409020875192945090925086918190610e0990826155b0565b5060209190910151600190910180546001600160a01b0319166001600160a01b039092169190911790556040517ffb6ab1b17bdd1e79b770513680d33dd87b6b352476f3d4f9fc2418ad57ab9905906109b09088908490889033903290899061566a565b5f610e773361087e565b610e7f613355565b604051630f37f38f60e41b81526001600160401b03821660048201529091505f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610eda573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610efe91906156ca565b9050610f09816133e5565b5f818152600e602090815260409182902085518154928701519387015160608801516001600160601b039283166001600160c01b031990951694909417600160601b92909516919091029390931765ffffffffffff60c01b1916600160c01b9315159390930264ffffffffff60c81b191692909217600160c81b64ffffffffff92831602178255608085015160018301805464ffffffffff19169190921617905560a08401518491906002820190610fc190826155b0565b5060c08201516003820190610fd690826155b0565b5060e08201516004820190610feb90826155b0565b5050505f818152600760205260409020547fe296db687d9aabcda96659491302a529c398d8dcf066ecab41adebed06a71d55908390610100900460ff16604080516001600160401b03909316835260ff9091166020830152339082015232606082015260800160405180910390a150919050565b5f8181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af41580156110c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e791906156e1565b92915050565b6110f63361087e565b5f611102836017612f80565b90505f806111108385612fcb565b915091507fe960847e97f8a43de8e7a7a6152c864a89cb6b55e8b46681b41d4c614fbee97785828633328760405161114d9695949392919061566a565b60405180910390a15050505050565b6111a36040805160c0810182525f80825260208083018290528284018290526060830182905283518085019094528184528301529060808201908152602001606081525090565b600d5f6111b1846016612f80565b815260208082019290925260409081015f20815160c081018352815464ffffffffff8082168352650100000000008204811683870152600160501b820416828501526001600160601b03600160781b90910481166060830152835180850190945260018301546001600160a01b0381168552600160a01b90041693830193909352608083019190915260028101805460a084019190610bad9061552f565b6112583361087e565b5f61126483600f612f80565b905061126f816133e5565b5f8181526009602090815260408083208551868401516001600160601b03909116600160601b6001600160a01b03928316021782558683015160019092018054606089015160808a015160a08b015160c08c0151969095166001600160a81b031990931692909217600160a01b911515919091021761ffff60a81b1916600160a81b9115159190910260ff60b01b191617600160b01b921515929092029190911760ff60b81b1916600160b81b9215159290920291909117905560079091529020547f55c89d942c4cdaf50df15dfa812580b4246be40868dd2e7b4f002ec972657d6b908490610100900460ff165b604080516001600160601b03909316835260ff909116602083015233908201523260608201526080015b60405180910390a1505050565b61139e3361087e565b6040516355ee627560e01b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906113e1906001600160c01b03198716906004016156b5565b602060405180830381865af41580156113fc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061142091906156ca565b905061142b816133e5565b5f818152600c6020908152604091829020845181549286015193860151606087015163ffffffff908116600160e01b026001600160e01b0391909216600160c01b02166001600160c01b036001600160601b03968716600160601b026001600160c01b03199096169690931695909517939093171692909217178155608083015160018201805460a086015164ffffffffff16600160a01b026001600160c81b03199091166001600160a01b039093169290921791909117905560c083015183919060028201906114fc90826155b0565b5060e0820151600382019061151190826155b0565b5050505f818152600760205260409020547f91da34dfa31974c4906c0658e7beb45ba0721f93a70e50942e77932cce7d8b0d908490610100900460ff165b604080516001600160c01b0319909316835260ff90911660208301523390820152326060820152608001611388565b6115873361087e565b6040516355ee627560e01b81525f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee6275906115ca906001600160c01b03198716906004016156b5565b602060405180830381865af41580156115e5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061160991906156ca565b9050611614816133e5565b5f818152600a60209081526040918290208451918501516001600160a01b03928316600160a01b6001600160601b039092168202178255928501516001820180546060880151608089015160a08a015160c08b01519588166001600160c01b03199094169390931763ffffffff9092169097021765ffffffffffff60c01b1916600160c01b64ffffffffff9097169690960260ff60e81b191695909517600160e81b951515959095029490941760ff60f01b1916600160f01b911515919091021790925560e08401516002830180546001600160a01b03191691909216179055610100830151839190600382019061170c90826155b0565b50610120820151600482019061172290826155b0565b5050505f818152600760205260409020547f05bfde9bf10cfb02076d77cd133bc8b091c41ef515166c17b2361a684fc6b924908490610100900460ff1661154f565b5f61176e3361087e565b610c488383613690565b5f6117823361087e565b610c4883836137e8565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156117ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061181291906156e1565b156118405760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff808516908316146118815760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401611837565b60ff8084165f908152600160209081526040808320888516845282528083208585168452909152902054166118e45760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401611837565b50505050565b6040805160e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915260095f61193084600f612f80565b815260208082019290925260409081015f20815160e08101835281546001600160601b03811682526001600160a01b03600160601b9091048116948201949094526001909101549283169181019190915260ff600160a01b8304811615156060830152600160a81b8304811615156080830152600160b01b83048116151560a0830152600160b81b909204909116151560c082015292915050565b6119d43361087e565b604051630f37f38f60e41b81526001600160401b03841660048201525f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015611a2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a5091906156ca565b90505f80611a5e8385612fcb565b5f858152600e602090815260409182902089518154928b0151938b015160608c01516001600160601b039283166001600160c01b031990951694909417600160601b92909516919091029390931765ffffffffffff60c01b1916600160c01b9315159390930264ffffffffff60c81b191692909217600160c81b64ffffffffff92831602178255608089015160018301805464ffffffffff19169190921617905560a088015192945090925086916002820190611b1b90826155b0565b5060c08201516003820190611b3090826155b0565b5060e08201516004820190611b4590826155b0565b509050507fcd6efe20de8bda1c84f56479214f5c845ed9932acb46890901bb98bef682554d8682863332876040516109b0969594939291906156fc565b33611b8b612684565b6001600160a01b0316816001600160a01b031614611bc65760405162d1953b60e31b81526001600160a01b0382166004820152602401611837565b816001600160a01b03163b5f03611bfb576040516361798f2f60e11b81526001600160a01b0383166004820152602401611837565b611c0482613940565b5050565b611c113361087e565b6040516355ee627560e01b81525f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611c54906001600160c01b03198816906004016156b5565b602060405180830381865af4158015611c6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c9391906156ca565b90505f80611ca18385612fcb565b9150915084600a5f8581526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151815f0160146101000a8154816001600160601b0302191690836001600160601b031602179055506040820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555060608201518160010160146101000a81548163ffffffff021916908363ffffffff16021790555060808201518160010160186101000a81548164ffffffffff021916908364ffffffffff16021790555060a082015181600101601d6101000a81548160ff02191690831515021790555060c082015181600101601e6101000a81548160ff02191690831515021790555060e0820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816003019081611e0b91906155b0565b506101208201516004820190611e2190826155b0565b509050507fa8e6a06b96b5dad840c21bc79949e878d0f743ad0a1ba821d6d0870fcec079bb8682863332876040516109b096959493929190615747565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f81158015611ea25750825b90505f826001600160401b03166001148015611ebd5750303b155b905081158015611ecb575080155b15611ee95760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611f1357845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f789190615793565b9050611f83816139a0565b611f8b6139b4565b50508315611fcf57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161114d565b5050505050565b5f8051602061596283398151915280545f9190600160a01b900460ff16611ffd575f612006565b638fb3603760e01b5b91505090565b6120153361087e565b6040516355ee627560e01b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590612058906001600160c01b03198816906004016156b5565b602060405180830381865af4158015612073573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061209791906156ca565b90505f806120a58385612fcb565b5f858152600c602090815260409182902089518154928b0151938b015160608c015163ffffffff908116600160e01b026001600160e01b0391909216600160c01b02166001600160c01b036001600160601b03968716600160601b026001600160c01b03199096169690931695909517939093171692909217178155608088015160018201805460a08b015164ffffffffff16600160a01b026001600160c81b03199091166001600160a01b039093169290921791909117905560c08801519294509092508691600282019061217b90826155b0565b5060e0820151600382019061219090826155b0565b509050507fc4ad93e06e3375a8710bb9cd30ed30b0a69d9aab524480a05f51568c66b8e3c98682863332876040516109b096959493929190615747565b6121d63361087e565b5f6121e284600f612f80565b90505f806121f08385612fcb565b5f858152600960209081526040918290208951918a01516001600160601b03909216600160601b6001600160a01b0393841602178155898301516001909101805460608c015160808d015160a08e015160c08f0151959096166001600160a81b031990931692909217600160a01b911515919091021761ffff60a81b1916600160a81b9115159190910260ff60b01b191617600160b01b931515939093029290921760ff60b81b1916600160b81b911515919091021790555191935091507fab6330e3b0f09e536bb75b9c192c588e6833a785d9097c0483661778fc3b5ca1906109b09088908490889033903290899061566a565b5f6122ef3361087e565b610c4883836139c6565b6123023361087e565b6040516355ee627560e01b81525f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590612345906001600160c01b03198716906004016156b5565b602060405180830381865af4158015612360573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061238491906156ca565b90505f806123928385612fcb565b915091507fa8e6a06b96b5dad840c21bc79949e878d0f743ad0a1ba821d6d0870fcec079bb85828633328760405161114d96959493929190615747565b6123d83361087e565b6040516355ee627560e01b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee62759061241b906001600160c01b03198716906004016156b5565b602060405180830381865af4158015612436573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061245a91906156ca565b90505f806124688385612fcb565b915091507fc4ad93e06e3375a8710bb9cd30ed30b0a69d9aab524480a05f51568c66b8e3c985828633328760405161114d96959493929190615747565b5f6124af3361087e565b610c488383613b1e565b6124c23361087e565b6124cb82613c76565b5f6124d783600b612f80565b90506124e2816133e5565b5f8181526008602052604090208251839190819061250090826155b0565b50602091820151600190910180546001600160a01b0319166001600160a01b039092169190911790555f828152600790915260409020547f99debd4964e0a4ae18ad50bcea2c6cc21c02c47c6526460f830cda565bb35ffd908490610100900460ff1661135e565b6125713361087e565b604051630f37f38f60e41b81526001600160401b03831660048201525f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af41580156125c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125ed91906156ca565b90505f806125fb8385612fcb565b915091507fcd6efe20de8bda1c84f56479214f5c845ed9932acb46890901bb98bef682554d85828633328760405161114d969594939291906156fc565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024016110a8565b5f80516020615962833981519152546001600160a01b031690565b60408051610140810182525f8082526020820181905281830181905260608083018290526080830182905260a0830182905260c0830182905260e08301829052610100830181905261012083015291516355ee627560e01b81529091600a9173__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590612732906001600160c01b03198816906004016156b5565b602060405180830381865af415801561274d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061277191906156ca565b815260208082019290925260409081015f2081516101408101835281546001600160a01b0380821683526001600160601b03600160a01b92839004169583019590955260018301548086169483019490945263ffffffff90840416606082015264ffffffffff600160c01b840416608082015260ff600160e81b84048116151560a0830152600160f01b909304909216151560c0830152600281015490921660e08201526003820180549192916101008401919061282e9061552f565b80601f016020809104026020016040519081016040528092919081815260200182805461285a9061552f565b80156128a55780601f1061287c576101008083540402835291602001916128a5565b820191905f5260205f20905b81548152906001019060200180831161288857829003601f168201915b50505050508152602001600482018054610bad9061552f565b6128c73361087e565b6128d082613c76565b5f6128dc836016612f80565b90506128e7816133e5565b5f818152600d602090815260409182902084518154838701519487015160608801516001600160601b03908116600160781b026bffffffffffffffffffffffff60781b1964ffffffffff938416600160501b0216600160501b600160d81b0319988416650100000000000269ffffffffffffffffffff19909516939095169290921792909217959095169190911793909317815560808501518051920151909216600160a01b026001600160a01b0390911617600182015560a083015183919060028201906129b690826155b0565b5050505f818152600760205260409020547fe4ae723f12a479272b917f87ec8cec8e499456fd990a74003daf0b80d0b32ed3908490610100900460ff1661135e565b5f612a023361087e565b610c488383613d79565b60408051808201909152606081525f602082015260085f612a2e84600b612f80565b81526020019081526020015f206040518060400160405290815f82018054612a559061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054612a819061552f565b8015612acc5780601f10612aa357610100808354040283529160200191612acc565b820191905f5260205f20905b815481529060010190602001808311612aaf57829003601f168201915b5050509183525050600191909101546001600160a01b031660209091015292915050565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015612b4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c4891906156ca565b612b7a3361087e565b612b8382613c76565b5f612b8f836017612f80565b9050612b9a816133e5565b5f818152600b602090815260409182902084518154928601519386015163ffffffff16600160481b0263ffffffff60481b19941515600160401b0268ffffffffffffffffff1990941660c09290921c91909117929092179290921617815560608301518391906001820190612c0f90826155b0565b5050505f818152600760205260409020547f74d7be5c20e6cf628ccae9cc370ffd1d2a95a8164eb772c89be0ed1242752d0e908490610100900460ff1661135e565b612c5a3361087e565b5f612c66836016612f80565b90505f80612c748385612fcb565b915091507f2f017e855ca4666f28134f4e57d6c215643dd22172128f0455f479cd7c57f2e885828633328760405161114d9695949392919061566a565b60408051610100810182525f8082526020820181905281830181905260608083018290526080830182905260a0830181905260c0830181905260e08301529151630f37f38f60e41b81526001600160401b03841660048201529091600e9173__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015612d49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d6d91906156ca565b815260208082019290925260409081015f2081516101008101835281546001600160601b038082168352600160601b82041694820194909452600160c01b840460ff16151592810192909252600160c81b90920464ffffffffff9081166060830152600183015416608082015260028201805491929160a084019190612df29061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054612e1e9061552f565b8015612e695780601f10612e4057610100808354040283529160200191612e69565b820191905f5260205f20905b815481529060010190602001808311612e4c57829003601f168201915b5050505050815260200160038201805461282e9061552f565b5f805160206159628339815191525f80612eba612e9d612684565b8730612eac60045f8a8c6157ae565b612eb5916157d5565b613ed1565b9150915081612f785763ffffffff811615612f5557825460ff60a01b1916600160a01b178355612ee8612684565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612f179392919061580b565b5f604051808303815f87803b158015612f2e575f80fd5b505af1158015612f40573d5f803e3d5ffd5b5050845460ff60a01b1916855550612f789050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401611837565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401612b32565b60405163037c8cb160e51b815260ff821660048201525f90819073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561301f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061304391906156e1565b1561306457604051631260077f60e21b815260048101859052602401611837565b50505f82815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930464ffffffffff1692919073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156130dd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061310191906156e1565b15613122576040516310b1404560e21b815260048101869052602401611837565b60ff8085161461315157805461313e90839060ff16818761178c565b805461ff00191661010060ff8616021781555b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613198573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131bc919061584a565b815464ffffffffff91909116620100000266ffffffffff00001990911617905590939092509050565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613254573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061327891906156e1565b6132a057604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f908152600360205260409020546132c4911684613fd9565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fc813323abc29b7cc59ddd274e5941cad2a987aa85c181fbde230bfb449b000969161333d9187918791879164ffffffffff90911690615865565b60405180910390a161334e8461405e565b5092915050565b600680545f918261336583615895565b9091555050600654604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af41580156133bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133e091906158b9565b905090565b604051634b00e98f60e11b8152600481018290525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015613435573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061345991906158d4565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af41580156134ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134d091906156e1565b156134f357604051633d61be7d60e11b815260ff82166004820152602401611837565b5f828152600760205260409081902080549151638d38cd4b60e01b81526201000090920464ffffffffff1660048301529073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af415801561355e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061358291906156e1565b156135ac57604051637791d47d60e01b81526004810184905260ff83166024820152604401611837565b6135b582612638565b6135d7576040516391eb5e8760e01b815260ff83166004820152602401611837565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af415801561361f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613643919061584a565b60ff9384165f81815260208190526040902054845461ffff19169091179416610100029390931766ffffffffff000019166201000064ffffffffff94909416939093029290921790555050565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af41580156136ff573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061372391906156e1565b61374b57604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f9081526004602052604090205461376f9116846140fd565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f5d0252a8f87c13449ff1a0e89d6a9d8dff6a3860c4cbbae6bd98d16f0924115b9161333d9187918791879164ffffffffff90911690615865565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613857573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061387b91906156e1565b6138a357604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f908152600360205260409020546138c79116846140fd565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fcc72dbc9604f941e2273f4dfa0b71700384aa0f5da7c3fef80ecb075ac0010f89161333d9187918791879164ffffffffff90911690615865565b5f8051602061596283398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6139a8614147565b6139b181614190565b50565b6139bc614147565b6139c46141a1565b565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613a35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a5991906156e1565b613a8157604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f90815260026020526040902054613aa5911684613fd9565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fa9c12735dda7f4e5a00ab4e6a4cfdc194c4f03f3885a5f18abfa66b77b8cdae39161333d9187918791879164ffffffffff90911690615865565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613b8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bb191906156e1565b613bd957604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f90815260026020526040902054613bfd9116846140fd565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f561cfda68ea43752c3141f3761d148409c741e20d766a95c64721f2c6ace5ba29161333d9187918791879164ffffffffff90911690615865565b6001600160601b0381165f9081526005602052604090819020549051638d38cd4b60e01b815264ffffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613ce4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d0891906156e1565b15613d31576040516314d5804160e01b81526001600160601b0382166004820152602401611837565b613d3a8161405e565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613de8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e0c91906156e1565b613e3457604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f90815260046020526040902054613e58911684613fd9565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f52a6c3cc342afb5a41442a5b4757dbdd11e508f0f75a902a75a29d0409905a999161333d9187918791879164ffffffffff90911690615865565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613f3f91906158ef565b5f60405180830381855afa9150503d805f8114613f77576040519150601f19603f3d011682016040523d82523d5f602084013e613f7c565b606091505b50915091508115613fce576040815110613fae5780806020019051810190613fa49190615905565b9094509250613fce565b6020815110613fce5780806020019051810190613fcb91906156e1565b93505b505094509492505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af415801561403a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c489190615932565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af41580156140a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140c9919061584a565b6001600160601b03919091165f908152600560205260409020805464ffffffffff191664ffffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa229060440161401f565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166139c457604051631afcd79f60e31b815260040160405180910390fd5b614198614147565b6139b181613940565b6141a96141f9565b6141b1614216565b6141b961424a565b6141c161428e565b6141c96142aa565b6141d16142f7565b6141d9614317565b6141e161432b565b6141e961436a565b6141f1614374565b6139c4614388565b61420660165b60056143b0565b6139c460165b60055b60c86143f2565b614220600b6141ff565b61422e600b6005606e6143f2565b61423c600b606e60056143f2565b6139c4600b606e60d26143f2565b6142566015600a6143b0565b6142656015600a5b60146143f2565b6142746015600a5b601e6143f2565b6142826015600a60286143f2565b6139c46015602861420f565b61429b602b5b603c6143b0565b6139c4602b5b603c60dc6143f2565b6142b6602d60326143b0565b6142c2602d603261425e565b6142d0602d603260336143f2565b6142dc602d603261426d565b6142e8602d603361420f565b6139c4602d60335b60486143f2565b614301602e614294565b61430b602e6142a1565b6139c4602e603c6142f0565b614321602c6141ff565b6139c4602c61420c565b614335602f6141ff565b614344602f60055b60466143f2565b614352602f600560076143f2565b61435e602f600761433d565b6139c4602f60056142f0565b6139c4600f6141ff565b61437e600c6141ff565b6139c460296141ff565b614392600e6141ff565b61439c60176141ff565b6143a660306141ff565b6139c460316141ff565b60ff8281165f9081526020819052604090205416156143d1576143d161594d565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561442a5761442a61594d565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b03811681146139b1575f80fd5b803561448281614463565b919050565b5f60208284031215614497575f80fd5b8135610c4881614463565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156144d8576144d86144a2565b60405290565b60405160c081016001600160401b03811182821017156144d8576144d86144a2565b60405161010081016001600160401b03811182821017156144d8576144d86144a2565b60405160e081016001600160401b03811182821017156144d8576144d86144a2565b60405161014081016001600160401b03811182821017156144d8576144d86144a2565b64ffffffffff811681146139b1575f80fd5b803561448281614568565b6001600160a01b03811681146139b1575f80fd5b803561448281614585565b5f604082840312156145b4575f80fd5b6145bc6144b6565b905081356145c981614585565b815260208201356145d981614463565b602082015292915050565b5f82601f8301126145f3575f80fd5b8135602083015f806001600160401b03841115614612576146126144a2565b50604051601f19601f85018116603f011681018181106001600160401b0382111715614640576146406144a2565b604052838152905080828401871015614657575f80fd5b838360208301375f602085830101528094505050505092915050565b5f60e08284031215614683575f80fd5b61468b6144de565b9050813561469881614568565b815260208201356146a881614568565b60208201526146b96040830161457a565b60408201526146ca60608301614477565b60608201526146dc83608084016145a4565b608082015260c08201356001600160401b038111156146f9575f80fd5b614705848285016145e4565b60a08301525092915050565b60ff811681146139b1575f80fd5b5f805f60608486031215614731575f80fd5b833561473c81614463565b925060208401356001600160401b03811115614756575f80fd5b61476286828701614673565b925050604084013561477381614711565b809150509250925092565b5f6020828403121561478e575f80fd5b5035919050565b5f602082840312156147a5575f80fd5b8135610c4881614711565b6001600160c01b0319811681146139b1575f80fd5b5f602082840312156147d5575f80fd5b8135610c48816147b0565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201525f602083015161483d60408401826001600160601b03169052565b50604083015163ffffffff8116606084015250606083015163ffffffff811660808401525060808301516001600160a01b03811660a08401525060a083015164ffffffffff811660c08401525060c083015161010060e08401526148a56101208401826147e0565b905060e0840151601f19848303016101008501526148c382826147e0565b95945050505050565b5f80604083850312156148dd575f80fd5b82356148e881614463565b915060208301356148f881614463565b809150509250929050565b602081526001600160401b0360c01b825116602082015260208201511515604082015263ffffffff60408301511660608201525f606083015160808084015261494f60a08401826147e0565b949350505050565b80151581146139b1575f80fd5b803561448281614957565b63ffffffff811681146139b1575f80fd5b80356144828161496f565b5f6080828403121561499b575f80fd5b604051608081016001600160401b03811182821017156149bd576149bd6144a2565b60405290508082356149ce816147b0565b815260208301356149de81614957565b602082015260408301356149f18161496f565b604082015260608301356001600160401b03811115614a0e575f80fd5b614a1a858286016145e4565b6060830152505092915050565b5f805f60608486031215614a39575f80fd5b8335614a4481614463565b925060208401356001600160401b03811115614a5e575f80fd5b6147628682870161498b565b5f60408284031215614a7a575f80fd5b614a826144b6565b905081356001600160401b03811115614a99575f80fd5b614aa5848285016145e4565b82525060208201356145d981614585565b5f805f60608486031215614ac8575f80fd5b8335614ad381614463565b925060208401356001600160401b03811115614aed575f80fd5b61476286828701614a6a565b5f6101008284031215614b0a575f80fd5b614b12614500565b9050614b1d82614477565b8152614b2b60208301614477565b6020820152614b3c60408301614964565b6040820152614b4d6060830161457a565b6060820152614b5e6080830161457a565b608082015260a08201356001600160401b03811115614b7b575f80fd5b614b87848285016145e4565b60a08301525060c08201356001600160401b03811115614ba5575f80fd5b614bb1848285016145e4565b60c08301525060e08201356001600160401b03811115614bcf575f80fd5b614bdb848285016145e4565b60e08301525092915050565b5f60208284031215614bf7575f80fd5b81356001600160401b03811115614c0c575f80fd5b61494f84828501614af9565b5f8060408385031215614c29575f80fd5b8235614c3481614463565b915060208301356148f881614711565b6020815264ffffffffff825116602082015264ffffffffff602083015116604082015264ffffffffff60408301511660608201526001600160601b0360608301511660808201525f6080830151614cba60a084018280516001600160a01b031682526020908101516001600160601b0316910152565b5060a083015160e08084015261494f6101008401826147e0565b5f60e08284031215614ce4575f80fd5b614cec614523565b90508135614cf981614463565b81526020820135614d0981614585565b60208201526040820135614d1c81614585565b60408201526060820135614d2f81614957565b6060820152614d4060808301614964565b6080820152614d5160a08301614964565b60a0820152614d6260c08301614964565b60c082015292915050565b5f806101008385031215614d7f575f80fd5b8235614d8a81614463565b9150614d998460208501614cd4565b90509250929050565b5f6101008284031215614db3575f80fd5b614dbb614500565b9050614dc682614477565b8152614dd460208301614477565b6020820152614de560408301614980565b6040820152614df660608301614980565b6060820152614e0760808301614599565b6080820152614e1860a0830161457a565b60a082015260c08201356001600160401b03811115614ba5575f80fd5b5f8060408385031215614e46575f80fd5b8235614e51816147b0565b915060208301356001600160401b03811115614e6b575f80fd5b614e7785828601614da2565b9150509250929050565b5f6101408284031215614e92575f80fd5b614e9a614545565b9050614ea582614599565b8152614eb360208301614477565b6020820152614ec460408301614599565b6040820152614ed560608301614980565b6060820152614ee66080830161457a565b6080820152614ef760a08301614964565b60a0820152614f0860c08301614964565b60c0820152614f1960e08301614599565b60e08201526101008201356001600160401b03811115614f37575f80fd5b614f43848285016145e4565b610100830152506101208201356001600160401b03811115614f63575f80fd5b614f6f848285016145e4565b6101208301525092915050565b5f8060408385031215614f8d575f80fd5b8235614f98816147b0565b915060208301356001600160401b03811115614fb2575f80fd5b614e7785828601614e81565b5f805f8060808587031215614fd1575f80fd5b8435614fdc81614711565b93506020850135614fec81614711565b92506040850135614ffc81614711565b9150606085013561500c81614711565b939692955090935050565b5f60e0820190506001600160601b03835116825260018060a01b03602084015116602083015260018060a01b036040840151166040830152606083015115156060830152608083015161506e608084018215159052565b5060a083015161508260a084018215159052565b5060c083015161334e60c084018215159052565b6001600160401b03811681146139b1575f80fd5b5f805f606084860312156150bc575f80fd5b83356150c781615096565b925060208401356001600160401b038111156150e1575f80fd5b61476286828701614af9565b5f602082840312156150fd575f80fd5b8135610c4881614585565b5f805f6060848603121561511a575f80fd5b8335615125816147b0565b925060208401356001600160401b0381111561513f575f80fd5b61476286828701614e81565b5f805f6060848603121561515d575f80fd5b8335615168816147b0565b925060208401356001600160401b03811115615182575f80fd5b61476286828701614da2565b5f805f61012084860312156151a1575f80fd5b83356151ac81614463565b92506151bb8560208601614cd4565b915061010084013561477381614711565b5f80604083850312156151dd575f80fd5b8235614c34816147b0565b5f80604083850312156151f9575f80fd5b823561520481614463565b915060208301356001600160401b0381111561521e575f80fd5b614e7785828601614a6a565b5f806040838503121561523b575f80fd5b8235614c3481615096565b602081526152606020820183516001600160a01b03169052565b5f602083015161527b60408401826001600160601b03169052565b5060408301516001600160a01b038116606084015250606083015163ffffffff8116608084015250608083015164ffffffffff811660a08401525060a083015180151560c08401525060c083015180151560e08401525060e08301516001600160a01b038116610100840152506101008301516101406101208401526153056101608401826147e0565b9050610120840151601f19848303016101408501526148c382826147e0565b5f8060408385031215615335575f80fd5b823561534081614463565b915060208301356001600160401b0381111561535a575f80fd5b614e7785828601614673565b5f805f60608486031215615378575f80fd5b833561538381614711565b9250602084013561539381614711565b9150604084013561477381614711565b602081525f8251604060208401526153be60608401826147e0565b602094909401516001600160a01b0316604093909301929092525090919050565b5f80604083850312156153f0575f80fd5b82356153fb81614711565b9150602083013560ff19811681146148f8575f80fd5b5f8060408385031215615422575f80fd5b823561542d81614463565b915060208301356001600160401b03811115615447575f80fd5b614e778582860161498b565b5f60208284031215615463575f80fd5b8135610c4881615096565b602081526154886020820183516001600160601b03169052565b5f60208301516154a360408401826001600160601b03169052565b506040830151801515606084015250606083015164ffffffffff8116608084015250608083015164ffffffffff811660a08401525060a083015161010060c08401526154f36101208401826147e0565b905060c0840151601f198483030160e085015261551082826147e0565b91505060e0840151601f19848303016101008501526148c382826147e0565b600181811c9082168061554357607f821691505b60208210810361556157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156155ab57805f5260205f20601f840160051c8101602085101561558c5750805b601f840160051c820191505b81811015611fcf575f8155600101615598565b505050565b81516001600160401b038111156155c9576155c96144a2565b6155dd816155d7845461552f565b84615567565b6020601f82116001811461560f575f83156155f85750848201515b5f19600385901b1c1916600184901b178455611fcf565b5f84815260208120601f198516915b8281101561563e578785015182556020948501946001909201910161561e565b508482101561565b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160601b0396909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b6001600160c01b031991909116815260200190565b5f602082840312156156da575f80fd5b5051919050565b5f602082840312156156f1575f80fd5b8151610c4881614957565b6001600160401b0396909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b6001600160c01b031996909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b5f602082840312156157a3575f80fd5b8151610c4881614585565b5f80858511156157bc575f80fd5b838611156157c8575f80fd5b5050820193919092039150565b80356001600160e01b0319811690600484101561334e576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f6020828403121561585a575f80fd5b8151610c4881614568565b6001600160601b03948516815292841660208401529216604082015264ffffffffff909116606082015260800190565b5f600182016158b257634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f602082840312156158c9575f80fd5b8151610c4881615096565b5f602082840312156158e4575f80fd5b8151610c4881614711565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615916575f80fd5b825161592181614957565b60208401519092506148f88161496f565b5f60208284031215615942575f80fd5b8151610c4881614463565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220522a8447ccdfeccefc51439dac62d64f9cfe445cdd0997c35d9e4874d604e12664736f6c634300081a0033",
|
3358
2683
|
"linkReferences": {
|
3359
2684
|
"contracts/type/Amount.sol": {
|
3360
2685
|
"AmountLib": [
|
3361
2686
|
{
|
3362
2687
|
"length": 20,
|
3363
|
-
"start":
|
2688
|
+
"start": 16417
|
3364
2689
|
},
|
3365
2690
|
{
|
3366
2691
|
"length": 20,
|
3367
|
-
"start":
|
2692
|
+
"start": 16709
|
3368
2693
|
}
|
3369
2694
|
]
|
3370
2695
|
},
|
@@ -3372,95 +2697,95 @@
|
|
3372
2697
|
"BlocknumberLib": [
|
3373
2698
|
{
|
3374
2699
|
"length": 20,
|
3375
|
-
"start":
|
2700
|
+
"start": 12659
|
3376
2701
|
},
|
3377
2702
|
{
|
3378
2703
|
"length": 20,
|
3379
|
-
"start":
|
3380
|
-
}
|
3381
|
-
]
|
3382
|
-
},
|
3383
|
-
"contracts/type/ClaimId.sol": {
|
3384
|
-
"ClaimIdLib": [
|
2704
|
+
"start": 12860
|
2705
|
+
},
|
3385
2706
|
{
|
3386
2707
|
"length": 20,
|
3387
|
-
"start":
|
3388
|
-
}
|
3389
|
-
]
|
3390
|
-
},
|
3391
|
-
"contracts/type/DistributorType.sol": {
|
3392
|
-
"DistributorTypeLib": [
|
2708
|
+
"start": 13638
|
2709
|
+
},
|
3393
2710
|
{
|
3394
2711
|
"length": 20,
|
3395
|
-
"start":
|
2712
|
+
"start": 13818
|
3396
2713
|
},
|
3397
2714
|
{
|
3398
2715
|
"length": 20,
|
3399
|
-
"start":
|
2716
|
+
"start": 14055
|
3400
2717
|
},
|
3401
2718
|
{
|
3402
2719
|
"length": 20,
|
3403
|
-
"start":
|
3404
|
-
}
|
3405
|
-
]
|
3406
|
-
},
|
3407
|
-
"contracts/type/Key32.sol": {
|
3408
|
-
"Key32Lib": [
|
2720
|
+
"start": 14399
|
2721
|
+
},
|
3409
2722
|
{
|
3410
2723
|
"length": 20,
|
3411
|
-
"start":
|
2724
|
+
"start": 14877
|
3412
2725
|
},
|
3413
2726
|
{
|
3414
2727
|
"length": 20,
|
3415
|
-
"start":
|
2728
|
+
"start": 15221
|
3416
2729
|
},
|
3417
2730
|
{
|
3418
2731
|
"length": 20,
|
3419
|
-
"start":
|
2732
|
+
"start": 15564
|
3420
2733
|
},
|
3421
2734
|
{
|
3422
2735
|
"length": 20,
|
3423
|
-
"start":
|
2736
|
+
"start": 15824
|
3424
2737
|
},
|
3425
2738
|
{
|
3426
2739
|
"length": 20,
|
3427
|
-
"start":
|
2740
|
+
"start": 16512
|
2741
|
+
}
|
2742
|
+
]
|
2743
|
+
},
|
2744
|
+
"contracts/type/DistributorType.sol": {
|
2745
|
+
"DistributorTypeLib": [
|
2746
|
+
{
|
2747
|
+
"length": 20,
|
2748
|
+
"start": 5560
|
3428
2749
|
},
|
3429
2750
|
{
|
3430
2751
|
"length": 20,
|
3431
|
-
"start":
|
2752
|
+
"start": 7234
|
3432
2753
|
},
|
3433
2754
|
{
|
3434
2755
|
"length": 20,
|
3435
|
-
"start":
|
2756
|
+
"start": 9011
|
3436
2757
|
},
|
3437
2758
|
{
|
3438
2759
|
"length": 20,
|
3439
|
-
"start":
|
2760
|
+
"start": 10016
|
3440
2761
|
}
|
3441
2762
|
]
|
3442
2763
|
},
|
3443
|
-
"contracts/type/
|
3444
|
-
"
|
2764
|
+
"contracts/type/Key32.sol": {
|
2765
|
+
"Key32Lib": [
|
2766
|
+
{
|
2767
|
+
"length": 20,
|
2768
|
+
"start": 11060
|
2769
|
+
},
|
3445
2770
|
{
|
3446
2771
|
"length": 20,
|
3447
|
-
"start":
|
2772
|
+
"start": 13341
|
3448
2773
|
}
|
3449
2774
|
]
|
3450
2775
|
},
|
3451
|
-
"contracts/type/
|
3452
|
-
"
|
2776
|
+
"contracts/type/NftId.sol": {
|
2777
|
+
"NftIdLib": [
|
3453
2778
|
{
|
3454
2779
|
"length": 20,
|
3455
|
-
"start":
|
2780
|
+
"start": 12233
|
3456
2781
|
}
|
3457
2782
|
]
|
3458
2783
|
},
|
3459
|
-
"contracts/type/
|
3460
|
-
"
|
2784
|
+
"contracts/type/ObjectType.sol": {
|
2785
|
+
"ObjectTypeLib": [
|
3461
2786
|
{
|
3462
2787
|
"length": 20,
|
3463
|
-
"start":
|
2788
|
+
"start": 13460
|
3464
2789
|
}
|
3465
2790
|
]
|
3466
2791
|
},
|
@@ -3468,15 +2793,19 @@
|
|
3468
2793
|
"ReferralLib": [
|
3469
2794
|
{
|
3470
2795
|
"length": 20,
|
3471
|
-
"start":
|
2796
|
+
"start": 2609
|
3472
2797
|
},
|
3473
2798
|
{
|
3474
2799
|
"length": 20,
|
3475
|
-
"start":
|
2800
|
+
"start": 5071
|
3476
2801
|
},
|
3477
2802
|
{
|
3478
2803
|
"length": 20,
|
3479
|
-
"start":
|
2804
|
+
"start": 8262
|
2805
|
+
},
|
2806
|
+
{
|
2807
|
+
"length": 20,
|
2808
|
+
"start": 9225
|
3480
2809
|
}
|
3481
2810
|
]
|
3482
2811
|
},
|
@@ -3484,35 +2813,23 @@
|
|
3484
2813
|
"RequestIdLib": [
|
3485
2814
|
{
|
3486
2815
|
"length": 20,
|
3487
|
-
"start":
|
3488
|
-
},
|
3489
|
-
{
|
3490
|
-
"length": 20,
|
3491
|
-
"start": 3027
|
2816
|
+
"start": 3778
|
3492
2817
|
},
|
3493
2818
|
{
|
3494
2819
|
"length": 20,
|
3495
|
-
"start":
|
2820
|
+
"start": 6676
|
3496
2821
|
},
|
3497
2822
|
{
|
3498
2823
|
"length": 20,
|
3499
|
-
"start":
|
3500
|
-
}
|
3501
|
-
]
|
3502
|
-
},
|
3503
|
-
"contracts/type/RiskId.sol": {
|
3504
|
-
"RiskIdLib": [
|
3505
|
-
{
|
3506
|
-
"length": 20,
|
3507
|
-
"start": 4280
|
2824
|
+
"start": 9649
|
3508
2825
|
},
|
3509
2826
|
{
|
3510
2827
|
"length": 20,
|
3511
|
-
"start":
|
2828
|
+
"start": 11569
|
3512
2829
|
},
|
3513
2830
|
{
|
3514
2831
|
"length": 20,
|
3515
|
-
"start":
|
2832
|
+
"start": 13220
|
3516
2833
|
}
|
3517
2834
|
]
|
3518
2835
|
},
|
@@ -3520,27 +2837,23 @@
|
|
3520
2837
|
"StateIdLib": [
|
3521
2838
|
{
|
3522
2839
|
"length": 20,
|
3523
|
-
"start":
|
3524
|
-
},
|
3525
|
-
{
|
3526
|
-
"length": 20,
|
3527
|
-
"start": 3788
|
2840
|
+
"start": 4266
|
3528
2841
|
},
|
3529
2842
|
{
|
3530
2843
|
"length": 20,
|
3531
|
-
"start":
|
2844
|
+
"start": 6102
|
3532
2845
|
},
|
3533
2846
|
{
|
3534
2847
|
"length": 20,
|
3535
|
-
"start":
|
2848
|
+
"start": 9858
|
3536
2849
|
},
|
3537
2850
|
{
|
3538
2851
|
"length": 20,
|
3539
|
-
"start":
|
2852
|
+
"start": 12295
|
3540
2853
|
},
|
3541
2854
|
{
|
3542
2855
|
"length": 20,
|
3543
|
-
"start":
|
2856
|
+
"start": 12485
|
3544
2857
|
}
|
3545
2858
|
]
|
3546
2859
|
}
|
@@ -3550,11 +2863,11 @@
|
|
3550
2863
|
"AmountLib": [
|
3551
2864
|
{
|
3552
2865
|
"length": 20,
|
3553
|
-
"start":
|
2866
|
+
"start": 16385
|
3554
2867
|
},
|
3555
2868
|
{
|
3556
2869
|
"length": 20,
|
3557
|
-
"start":
|
2870
|
+
"start": 16677
|
3558
2871
|
}
|
3559
2872
|
]
|
3560
2873
|
},
|
@@ -3562,95 +2875,95 @@
|
|
3562
2875
|
"BlocknumberLib": [
|
3563
2876
|
{
|
3564
2877
|
"length": 20,
|
3565
|
-
"start":
|
2878
|
+
"start": 12627
|
3566
2879
|
},
|
3567
2880
|
{
|
3568
2881
|
"length": 20,
|
3569
|
-
"start":
|
3570
|
-
}
|
3571
|
-
]
|
3572
|
-
},
|
3573
|
-
"contracts/type/ClaimId.sol": {
|
3574
|
-
"ClaimIdLib": [
|
2882
|
+
"start": 12828
|
2883
|
+
},
|
3575
2884
|
{
|
3576
2885
|
"length": 20,
|
3577
|
-
"start":
|
3578
|
-
}
|
3579
|
-
]
|
3580
|
-
},
|
3581
|
-
"contracts/type/DistributorType.sol": {
|
3582
|
-
"DistributorTypeLib": [
|
2886
|
+
"start": 13606
|
2887
|
+
},
|
3583
2888
|
{
|
3584
2889
|
"length": 20,
|
3585
|
-
"start":
|
2890
|
+
"start": 13786
|
3586
2891
|
},
|
3587
2892
|
{
|
3588
2893
|
"length": 20,
|
3589
|
-
"start":
|
2894
|
+
"start": 14023
|
3590
2895
|
},
|
3591
2896
|
{
|
3592
2897
|
"length": 20,
|
3593
|
-
"start":
|
3594
|
-
}
|
3595
|
-
]
|
3596
|
-
},
|
3597
|
-
"contracts/type/Key32.sol": {
|
3598
|
-
"Key32Lib": [
|
2898
|
+
"start": 14367
|
2899
|
+
},
|
3599
2900
|
{
|
3600
2901
|
"length": 20,
|
3601
|
-
"start":
|
2902
|
+
"start": 14845
|
3602
2903
|
},
|
3603
2904
|
{
|
3604
2905
|
"length": 20,
|
3605
|
-
"start":
|
2906
|
+
"start": 15189
|
3606
2907
|
},
|
3607
2908
|
{
|
3608
2909
|
"length": 20,
|
3609
|
-
"start":
|
2910
|
+
"start": 15532
|
3610
2911
|
},
|
3611
2912
|
{
|
3612
2913
|
"length": 20,
|
3613
|
-
"start":
|
2914
|
+
"start": 15792
|
3614
2915
|
},
|
3615
2916
|
{
|
3616
2917
|
"length": 20,
|
3617
|
-
"start":
|
2918
|
+
"start": 16480
|
2919
|
+
}
|
2920
|
+
]
|
2921
|
+
},
|
2922
|
+
"contracts/type/DistributorType.sol": {
|
2923
|
+
"DistributorTypeLib": [
|
2924
|
+
{
|
2925
|
+
"length": 20,
|
2926
|
+
"start": 5528
|
3618
2927
|
},
|
3619
2928
|
{
|
3620
2929
|
"length": 20,
|
3621
|
-
"start":
|
2930
|
+
"start": 7202
|
3622
2931
|
},
|
3623
2932
|
{
|
3624
2933
|
"length": 20,
|
3625
|
-
"start":
|
2934
|
+
"start": 8979
|
3626
2935
|
},
|
3627
2936
|
{
|
3628
2937
|
"length": 20,
|
3629
|
-
"start":
|
2938
|
+
"start": 9984
|
3630
2939
|
}
|
3631
2940
|
]
|
3632
2941
|
},
|
3633
|
-
"contracts/type/
|
3634
|
-
"
|
2942
|
+
"contracts/type/Key32.sol": {
|
2943
|
+
"Key32Lib": [
|
2944
|
+
{
|
2945
|
+
"length": 20,
|
2946
|
+
"start": 11028
|
2947
|
+
},
|
3635
2948
|
{
|
3636
2949
|
"length": 20,
|
3637
|
-
"start":
|
2950
|
+
"start": 13309
|
3638
2951
|
}
|
3639
2952
|
]
|
3640
2953
|
},
|
3641
|
-
"contracts/type/
|
3642
|
-
"
|
2954
|
+
"contracts/type/NftId.sol": {
|
2955
|
+
"NftIdLib": [
|
3643
2956
|
{
|
3644
2957
|
"length": 20,
|
3645
|
-
"start":
|
2958
|
+
"start": 12201
|
3646
2959
|
}
|
3647
2960
|
]
|
3648
2961
|
},
|
3649
|
-
"contracts/type/
|
3650
|
-
"
|
2962
|
+
"contracts/type/ObjectType.sol": {
|
2963
|
+
"ObjectTypeLib": [
|
3651
2964
|
{
|
3652
2965
|
"length": 20,
|
3653
|
-
"start":
|
2966
|
+
"start": 13428
|
3654
2967
|
}
|
3655
2968
|
]
|
3656
2969
|
},
|
@@ -3658,15 +2971,19 @@
|
|
3658
2971
|
"ReferralLib": [
|
3659
2972
|
{
|
3660
2973
|
"length": 20,
|
3661
|
-
"start":
|
2974
|
+
"start": 2577
|
2975
|
+
},
|
2976
|
+
{
|
2977
|
+
"length": 20,
|
2978
|
+
"start": 5039
|
3662
2979
|
},
|
3663
2980
|
{
|
3664
2981
|
"length": 20,
|
3665
|
-
"start":
|
2982
|
+
"start": 8230
|
3666
2983
|
},
|
3667
2984
|
{
|
3668
2985
|
"length": 20,
|
3669
|
-
"start":
|
2986
|
+
"start": 9193
|
3670
2987
|
}
|
3671
2988
|
]
|
3672
2989
|
},
|
@@ -3674,35 +2991,23 @@
|
|
3674
2991
|
"RequestIdLib": [
|
3675
2992
|
{
|
3676
2993
|
"length": 20,
|
3677
|
-
"start":
|
3678
|
-
},
|
3679
|
-
{
|
3680
|
-
"length": 20,
|
3681
|
-
"start": 2995
|
2994
|
+
"start": 3746
|
3682
2995
|
},
|
3683
2996
|
{
|
3684
2997
|
"length": 20,
|
3685
|
-
"start":
|
2998
|
+
"start": 6644
|
3686
2999
|
},
|
3687
3000
|
{
|
3688
3001
|
"length": 20,
|
3689
|
-
"start":
|
3690
|
-
}
|
3691
|
-
]
|
3692
|
-
},
|
3693
|
-
"contracts/type/RiskId.sol": {
|
3694
|
-
"RiskIdLib": [
|
3695
|
-
{
|
3696
|
-
"length": 20,
|
3697
|
-
"start": 4248
|
3002
|
+
"start": 9617
|
3698
3003
|
},
|
3699
3004
|
{
|
3700
3005
|
"length": 20,
|
3701
|
-
"start":
|
3006
|
+
"start": 11537
|
3702
3007
|
},
|
3703
3008
|
{
|
3704
3009
|
"length": 20,
|
3705
|
-
"start":
|
3010
|
+
"start": 13188
|
3706
3011
|
}
|
3707
3012
|
]
|
3708
3013
|
},
|
@@ -3710,27 +3015,23 @@
|
|
3710
3015
|
"StateIdLib": [
|
3711
3016
|
{
|
3712
3017
|
"length": 20,
|
3713
|
-
"start":
|
3714
|
-
},
|
3715
|
-
{
|
3716
|
-
"length": 20,
|
3717
|
-
"start": 3756
|
3018
|
+
"start": 4234
|
3718
3019
|
},
|
3719
3020
|
{
|
3720
3021
|
"length": 20,
|
3721
|
-
"start":
|
3022
|
+
"start": 6070
|
3722
3023
|
},
|
3723
3024
|
{
|
3724
3025
|
"length": 20,
|
3725
|
-
"start":
|
3026
|
+
"start": 9826
|
3726
3027
|
},
|
3727
3028
|
{
|
3728
3029
|
"length": 20,
|
3729
|
-
"start":
|
3030
|
+
"start": 12263
|
3730
3031
|
},
|
3731
3032
|
{
|
3732
3033
|
"length": 20,
|
3733
|
-
"start":
|
3034
|
+
"start": 12453
|
3734
3035
|
}
|
3735
3036
|
]
|
3736
3037
|
}
|