@etherisc/gif-next 0.0.2-d086e6d-456 → 0.0.2-d13bb9e-069
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +57 -93
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1234 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1013 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1342 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1012 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1405 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +818 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +198 -261
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +186 -357
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1491 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +410 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +1946 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +414 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1411 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1171 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1545 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +1980 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +296 -2011
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +195 -95
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +353 -2827
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1623 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1062 -308
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +246 -316
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +132 -119
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3607 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -54
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +10 -118
- 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 +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +979 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +765 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +254 -209
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/{components/Component.sol/Component.json → oracle/Oracle.sol/Oracle.json} +236 -207
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +927 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +710 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +299 -399
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1431 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +822 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +312 -64
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +937 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1267 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +358 -360
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1612 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +758 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +737 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +698 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +339 -408
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1397 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +826 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IClaimService.sol/IClaimService.json → product/IApplicationService.sol/IApplicationService.json} +129 -111
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +913 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +896 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → product/IPricingService.sol/IPricingService.json} +110 -207
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → product}/IProductComponent.sol/IProductComponent.json +319 -199
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +12 -86
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1268 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +770 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +865 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +746 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1056 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +588 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +682 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +404 -31
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +199 -149
- 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 +802 -46
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1858 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +264 -279
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +126 -95
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1169 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/Component.sol/Component.json} +265 -222
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1573 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +794 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +432 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +92 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +107 -107
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → shared/IComponentService.sol/IComponentService.json} +482 -317
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +700 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +59 -14
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +3 -10
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +3 -10
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +17 -30
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +793 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +12 -70
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +18 -106
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +20 -135
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +382 -9
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/{components/Distribution.sol/Distribution.json → staking/IStaking.sol/IStaking.json} +684 -575
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1828 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +750 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1236 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +698 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +142 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +586 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
- package/contracts/authorization/AccessAdmin.sol +592 -0
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +221 -0
- package/contracts/authorization/IAccess.sol +48 -0
- package/contracts/authorization/IAccessAdmin.sol +135 -0
- package/contracts/authorization/IAuthorization.sol +54 -0
- package/contracts/authorization/IModuleAuthorization.sol +21 -0
- package/contracts/authorization/IServiceAuthorization.sol +38 -0
- package/contracts/authorization/ModuleAuthorization.sol +78 -0
- package/contracts/authorization/ServiceAuthorization.sol +90 -0
- package/contracts/distribution/BasicDistribution.sol +138 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
- package/contracts/{components → distribution}/Distribution.sol +178 -163
- package/contracts/distribution/DistributionService.sol +336 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +52 -0
- package/contracts/{instance/service → distribution}/IDistributionService.sol +41 -38
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +75 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
- package/contracts/examples/fire/FireProduct.sol +410 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +50 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +76 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +351 -0
- package/contracts/instance/{BundleManager.sol → BundleSet.sol} +30 -31
- package/contracts/instance/IInstance.sol +38 -73
- package/contracts/instance/IInstanceService.sol +50 -30
- package/contracts/instance/Instance.sol +147 -245
- package/contracts/instance/InstanceAdmin.sol +288 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
- package/contracts/instance/InstanceReader.sol +264 -60
- package/contracts/instance/InstanceService.sol +305 -335
- package/contracts/instance/InstanceServiceManager.sol +14 -29
- package/contracts/instance/InstanceStore.sol +287 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectLifecycle.sol +111 -0
- package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +18 -21
- package/contracts/instance/module/IAccess.sol +5 -13
- package/contracts/instance/module/IBundle.sol +6 -9
- package/contracts/instance/module/IComponents.sol +23 -16
- package/contracts/instance/module/IDistribution.sol +6 -6
- package/contracts/instance/module/IPolicy.sol +47 -35
- package/contracts/instance/module/IRisk.sol +1 -1
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
- package/contracts/oracle/BasicOracle.sol +48 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +167 -0
- package/contracts/oracle/OracleService.sol +281 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +166 -0
- package/contracts/pool/BasicPoolAuthorization.sol +58 -0
- package/contracts/pool/BundleService.sol +461 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +143 -0
- package/contracts/pool/IPoolComponent.sol +68 -0
- package/contracts/pool/IPoolService.sol +171 -0
- package/contracts/pool/Pool.sol +353 -0
- package/contracts/pool/PoolService.sol +563 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +251 -0
- package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
- package/contracts/product/BasicProduct.sol +53 -0
- package/contracts/product/BasicProductAuthorization.sol +43 -0
- package/contracts/product/ClaimService.sol +581 -0
- package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
- package/contracts/{instance/service → product}/IApplicationService.sol +16 -35
- package/contracts/product/IClaimService.sol +123 -0
- package/contracts/product/IPolicyService.sol +80 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +53 -0
- package/contracts/product/IRiskService.sol +33 -0
- package/contracts/product/PolicyService.sol +686 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +300 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +432 -0
- package/contracts/product/RiskService.sol +96 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +72 -32
- package/contracts/registry/IRegistry.sol +94 -25
- package/contracts/registry/IRegistryService.sol +35 -43
- package/contracts/registry/Registry.sol +432 -192
- package/contracts/registry/RegistryAdmin.sol +464 -0
- package/contracts/registry/RegistryService.sol +108 -134
- package/contracts/registry/RegistryServiceManager.sol +23 -32
- package/contracts/registry/ReleaseLifecycle.sol +27 -0
- package/contracts/registry/ReleaseRegistry.sol +491 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +198 -0
- package/contracts/registry/TokenRegistry.sol +261 -62
- package/contracts/shared/Component.sol +268 -0
- package/contracts/shared/ComponentService.sol +641 -0
- package/contracts/shared/ComponentServiceManager.sol +38 -0
- package/contracts/shared/ComponentVerifyingService.sol +116 -0
- package/contracts/shared/ContractLib.sol +38 -0
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +108 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +49 -0
- package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
- package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
- package/contracts/shared/INftOwnable.sol +2 -2
- package/contracts/shared/IPolicyHolder.sol +23 -14
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +12 -8
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +4 -4
- package/contracts/shared/InstanceLinkedComponent.sol +171 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +77 -0
- package/contracts/shared/NftIdSet.sol +65 -0
- package/contracts/shared/NftOwnable.sol +10 -23
- package/contracts/shared/PolicyHolder.sol +22 -41
- package/contracts/shared/Registerable.sol +17 -16
- package/contracts/shared/RegistryLinked.sol +3 -7
- package/contracts/shared/Service.sol +53 -29
- package/contracts/shared/TokenHandler.sol +115 -9
- package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +160 -0
- package/contracts/staking/StakeManagerLib.sol +224 -0
- package/contracts/staking/Staking.sol +498 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +52 -0
- package/contracts/staking/StakingReader.sol +183 -0
- package/contracts/staking/StakingService.sol +407 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +605 -0
- package/contracts/staking/TargetManagerLib.sol +211 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +150 -0
- package/contracts/{types → type}/Blocknumber.sol +26 -3
- package/contracts/{types → type}/ClaimId.sol +31 -3
- package/contracts/{types → type}/Fee.sol +24 -22
- package/contracts/{types → type}/NftId.sol +15 -16
- package/contracts/{types → type}/NftIdSet.sol +2 -2
- package/contracts/type/ObjectType.sol +275 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/{types → type}/Referral.sol +2 -1
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/{types → type}/RiskId.sol +16 -2
- package/contracts/type/RoleId.sol +174 -0
- package/contracts/type/Seconds.sol +101 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +34 -4
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +21 -2
- package/contracts/{types → type}/UFixed.sol +38 -9
- package/contracts/{types → type}/Version.sol +4 -2
- package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
- package/contracts/{shared → upgradeability}/ProxyManager.sol +92 -30
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
- package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
- package/package.json +8 -5
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1311
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -1058
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -665
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1258
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -717
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -844
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1822
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1111
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -689
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1264
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -657
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -867
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
- package/artifacts/contracts/test/TestService.sol/TestService.json +0 -611
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +0 -4
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -161
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -288
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
- package/contracts/components/Component.sol +0 -253
- package/contracts/components/IComponent.sol +0 -76
- package/contracts/components/IDistributionComponent.sol +0 -71
- package/contracts/components/IPoolComponent.sol +0 -113
- package/contracts/components/IProductComponent.sol +0 -40
- package/contracts/components/Pool.sol +0 -303
- package/contracts/components/Product.sol +0 -293
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
- package/contracts/instance/Cloneable.sol +0 -51
- package/contracts/instance/InstanceAccessManager.sol +0 -522
- package/contracts/instance/base/ComponentService.sol +0 -136
- package/contracts/instance/base/KeyValueStore.sol +0 -180
- package/contracts/instance/base/Lifecycle.sol +0 -109
- package/contracts/instance/module/ISetup.sol +0 -33
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/ApplicationService.sol +0 -350
- package/contracts/instance/service/BundleService.sol +0 -431
- package/contracts/instance/service/BundleServiceManager.sol +0 -51
- package/contracts/instance/service/ClaimService.sol +0 -151
- package/contracts/instance/service/DistributionService.sol +0 -435
- package/contracts/instance/service/DistributionServiceManager.sol +0 -51
- package/contracts/instance/service/IBundleService.sol +0 -93
- package/contracts/instance/service/IClaimService.sol +0 -61
- package/contracts/instance/service/IPolicyService.sol +0 -72
- package/contracts/instance/service/IPoolService.sol +0 -99
- package/contracts/instance/service/IProductService.sol +0 -40
- package/contracts/instance/service/PolicyService.sol +0 -360
- package/contracts/instance/service/PolicyServiceManager.sol +0 -54
- package/contracts/instance/service/PoolService.sol +0 -343
- package/contracts/instance/service/PoolServiceManager.sol +0 -51
- package/contracts/instance/service/ProductService.sol +0 -210
- package/contracts/instance/service/ProductServiceManager.sol +0 -54
- package/contracts/registry/RegistryAccessManager.sol +0 -216
- package/contracts/registry/ReleaseManager.sol +0 -322
- package/contracts/shared/ContractDeployerLib.sol +0 -72
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestRegisterable.sol +0 -18
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -25
- package/contracts/test/TestToken.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/types/Amount.sol +0 -60
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/NumberId.sol +0 -52
- package/contracts/types/ObjectType.sol +0 -157
- package/contracts/types/PayoutId.sol +0 -54
- package/contracts/types/RoleId.sol +0 -97
- package/contracts/types/Seconds.sol +0 -54
- /package/contracts/{types → type}/DistributorType.sol +0 -0
- /package/contracts/{types → type}/Key32.sol +0 -0
@@ -0,0 +1,1946 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "FireProduct",
|
4
|
+
"sourceName": "contracts/examples/fire/FireProduct.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "registry",
|
11
|
+
"type": "address"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"internalType": "NftId",
|
15
|
+
"name": "instanceNftid",
|
16
|
+
"type": "uint96"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"internalType": "string",
|
20
|
+
"name": "componentName",
|
21
|
+
"type": "string"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"internalType": "address",
|
25
|
+
"name": "token",
|
26
|
+
"type": "address"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"internalType": "address",
|
30
|
+
"name": "pool",
|
31
|
+
"type": "address"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"internalType": "contract IAuthorization",
|
35
|
+
"name": "authorization",
|
36
|
+
"type": "address"
|
37
|
+
}
|
38
|
+
],
|
39
|
+
"stateMutability": "nonpayable",
|
40
|
+
"type": "constructor"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"inputs": [
|
44
|
+
{
|
45
|
+
"internalType": "address",
|
46
|
+
"name": "authority",
|
47
|
+
"type": "address"
|
48
|
+
}
|
49
|
+
],
|
50
|
+
"name": "AccessManagedInvalidAuthority",
|
51
|
+
"type": "error"
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"inputs": [
|
55
|
+
{
|
56
|
+
"internalType": "address",
|
57
|
+
"name": "caller",
|
58
|
+
"type": "address"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"internalType": "uint32",
|
62
|
+
"name": "delay",
|
63
|
+
"type": "uint32"
|
64
|
+
}
|
65
|
+
],
|
66
|
+
"name": "AccessManagedRequiredDelay",
|
67
|
+
"type": "error"
|
68
|
+
},
|
69
|
+
{
|
70
|
+
"inputs": [
|
71
|
+
{
|
72
|
+
"internalType": "address",
|
73
|
+
"name": "caller",
|
74
|
+
"type": "address"
|
75
|
+
}
|
76
|
+
],
|
77
|
+
"name": "AccessManagedUnauthorized",
|
78
|
+
"type": "error"
|
79
|
+
},
|
80
|
+
{
|
81
|
+
"inputs": [],
|
82
|
+
"name": "ErrorComponentNameLengthZero",
|
83
|
+
"type": "error"
|
84
|
+
},
|
85
|
+
{
|
86
|
+
"inputs": [
|
87
|
+
{
|
88
|
+
"internalType": "address",
|
89
|
+
"name": "caller",
|
90
|
+
"type": "address"
|
91
|
+
}
|
92
|
+
],
|
93
|
+
"name": "ErrorComponentNotChainNft",
|
94
|
+
"type": "error"
|
95
|
+
},
|
96
|
+
{
|
97
|
+
"inputs": [
|
98
|
+
{
|
99
|
+
"internalType": "NftId",
|
100
|
+
"name": "instanceNftId",
|
101
|
+
"type": "uint96"
|
102
|
+
}
|
103
|
+
],
|
104
|
+
"name": "ErrorComponentNotInstance",
|
105
|
+
"type": "error"
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"inputs": [],
|
109
|
+
"name": "ErrorComponentProductNftAlreadySet",
|
110
|
+
"type": "error"
|
111
|
+
},
|
112
|
+
{
|
113
|
+
"inputs": [],
|
114
|
+
"name": "ErrorComponentTokenAddressZero",
|
115
|
+
"type": "error"
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"inputs": [],
|
119
|
+
"name": "ErrorComponentWalletAddressIsSameAsCurrent",
|
120
|
+
"type": "error"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"inputs": [],
|
124
|
+
"name": "ErrorComponentWalletAddressZero",
|
125
|
+
"type": "error"
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"inputs": [],
|
129
|
+
"name": "ErrorComponentWalletNotComponent",
|
130
|
+
"type": "error"
|
131
|
+
},
|
132
|
+
{
|
133
|
+
"inputs": [],
|
134
|
+
"name": "ErrorFireProductAlreadyClaimed",
|
135
|
+
"type": "error"
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"inputs": [
|
139
|
+
{
|
140
|
+
"internalType": "string",
|
141
|
+
"name": "cityName",
|
142
|
+
"type": "string"
|
143
|
+
}
|
144
|
+
],
|
145
|
+
"name": "ErrorFireProductCityUnknown",
|
146
|
+
"type": "error"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"inputs": [],
|
150
|
+
"name": "ErrorFireProductFireAlreadyReported",
|
151
|
+
"type": "error"
|
152
|
+
},
|
153
|
+
{
|
154
|
+
"inputs": [
|
155
|
+
{
|
156
|
+
"internalType": "uint256",
|
157
|
+
"name": "fireId",
|
158
|
+
"type": "uint256"
|
159
|
+
}
|
160
|
+
],
|
161
|
+
"name": "ErrorFireProductFireUnknown",
|
162
|
+
"type": "error"
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"inputs": [
|
166
|
+
{
|
167
|
+
"internalType": "NftId",
|
168
|
+
"name": "nftId",
|
169
|
+
"type": "uint96"
|
170
|
+
},
|
171
|
+
{
|
172
|
+
"internalType": "address",
|
173
|
+
"name": "owner",
|
174
|
+
"type": "address"
|
175
|
+
}
|
176
|
+
],
|
177
|
+
"name": "ErrorFireProductNotPolicyOwner",
|
178
|
+
"type": "error"
|
179
|
+
},
|
180
|
+
{
|
181
|
+
"inputs": [
|
182
|
+
{
|
183
|
+
"internalType": "Timestamp",
|
184
|
+
"name": "expiredAt",
|
185
|
+
"type": "uint40"
|
186
|
+
}
|
187
|
+
],
|
188
|
+
"name": "ErrorFireProductPolicyExpired",
|
189
|
+
"type": "error"
|
190
|
+
},
|
191
|
+
{
|
192
|
+
"inputs": [],
|
193
|
+
"name": "ErrorFireProductPolicyNotActive",
|
194
|
+
"type": "error"
|
195
|
+
},
|
196
|
+
{
|
197
|
+
"inputs": [
|
198
|
+
{
|
199
|
+
"internalType": "Timestamp",
|
200
|
+
"name": "activateAt",
|
201
|
+
"type": "uint40"
|
202
|
+
}
|
203
|
+
],
|
204
|
+
"name": "ErrorFireProductPolicyNotYetActive",
|
205
|
+
"type": "error"
|
206
|
+
},
|
207
|
+
{
|
208
|
+
"inputs": [],
|
209
|
+
"name": "ErrorFireProductTimestampTooEarly",
|
210
|
+
"type": "error"
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"inputs": [
|
214
|
+
{
|
215
|
+
"internalType": "DamageLevel",
|
216
|
+
"name": "damageLevel",
|
217
|
+
"type": "uint8"
|
218
|
+
}
|
219
|
+
],
|
220
|
+
"name": "ErrorFireProductUnknownDamageLevel",
|
221
|
+
"type": "error"
|
222
|
+
},
|
223
|
+
{
|
224
|
+
"inputs": [
|
225
|
+
{
|
226
|
+
"internalType": "NftId",
|
227
|
+
"name": "nftId",
|
228
|
+
"type": "uint96"
|
229
|
+
}
|
230
|
+
],
|
231
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
232
|
+
"type": "error"
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"inputs": [
|
236
|
+
{
|
237
|
+
"internalType": "address",
|
238
|
+
"name": "contractAddress",
|
239
|
+
"type": "address"
|
240
|
+
}
|
241
|
+
],
|
242
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
243
|
+
"type": "error"
|
244
|
+
},
|
245
|
+
{
|
246
|
+
"inputs": [],
|
247
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
248
|
+
"type": "error"
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"inputs": [
|
252
|
+
{
|
253
|
+
"internalType": "address",
|
254
|
+
"name": "account",
|
255
|
+
"type": "address"
|
256
|
+
}
|
257
|
+
],
|
258
|
+
"name": "ErrorNftOwnableNotOwner",
|
259
|
+
"type": "error"
|
260
|
+
},
|
261
|
+
{
|
262
|
+
"inputs": [
|
263
|
+
{
|
264
|
+
"internalType": "address",
|
265
|
+
"name": "registryAddress",
|
266
|
+
"type": "address"
|
267
|
+
}
|
268
|
+
],
|
269
|
+
"name": "ErrorNotRegistry",
|
270
|
+
"type": "error"
|
271
|
+
},
|
272
|
+
{
|
273
|
+
"inputs": [],
|
274
|
+
"name": "InvalidInitialization",
|
275
|
+
"type": "error"
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"inputs": [],
|
279
|
+
"name": "MathLigMulDivOverflow",
|
280
|
+
"type": "error"
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"inputs": [],
|
284
|
+
"name": "NotInitializing",
|
285
|
+
"type": "error"
|
286
|
+
},
|
287
|
+
{
|
288
|
+
"inputs": [],
|
289
|
+
"name": "UFixedLibDivisionByZero",
|
290
|
+
"type": "error"
|
291
|
+
},
|
292
|
+
{
|
293
|
+
"anonymous": false,
|
294
|
+
"inputs": [
|
295
|
+
{
|
296
|
+
"indexed": false,
|
297
|
+
"internalType": "address",
|
298
|
+
"name": "authority",
|
299
|
+
"type": "address"
|
300
|
+
}
|
301
|
+
],
|
302
|
+
"name": "AuthorityUpdated",
|
303
|
+
"type": "event"
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"anonymous": false,
|
307
|
+
"inputs": [
|
308
|
+
{
|
309
|
+
"indexed": false,
|
310
|
+
"internalType": "uint64",
|
311
|
+
"name": "version",
|
312
|
+
"type": "uint64"
|
313
|
+
}
|
314
|
+
],
|
315
|
+
"name": "Initialized",
|
316
|
+
"type": "event"
|
317
|
+
},
|
318
|
+
{
|
319
|
+
"anonymous": false,
|
320
|
+
"inputs": [
|
321
|
+
{
|
322
|
+
"indexed": false,
|
323
|
+
"internalType": "address",
|
324
|
+
"name": "token",
|
325
|
+
"type": "address"
|
326
|
+
},
|
327
|
+
{
|
328
|
+
"indexed": false,
|
329
|
+
"internalType": "Amount",
|
330
|
+
"name": "limit",
|
331
|
+
"type": "uint96"
|
332
|
+
}
|
333
|
+
],
|
334
|
+
"name": "LogComponentTokenHandlerApproved",
|
335
|
+
"type": "event"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"anonymous": false,
|
339
|
+
"inputs": [
|
340
|
+
{
|
341
|
+
"indexed": false,
|
342
|
+
"internalType": "address",
|
343
|
+
"name": "oldWallet",
|
344
|
+
"type": "address"
|
345
|
+
},
|
346
|
+
{
|
347
|
+
"indexed": false,
|
348
|
+
"internalType": "address",
|
349
|
+
"name": "newWallet",
|
350
|
+
"type": "address"
|
351
|
+
}
|
352
|
+
],
|
353
|
+
"name": "LogComponentWalletAddressChanged",
|
354
|
+
"type": "event"
|
355
|
+
},
|
356
|
+
{
|
357
|
+
"anonymous": false,
|
358
|
+
"inputs": [
|
359
|
+
{
|
360
|
+
"indexed": false,
|
361
|
+
"internalType": "address",
|
362
|
+
"name": "from",
|
363
|
+
"type": "address"
|
364
|
+
},
|
365
|
+
{
|
366
|
+
"indexed": false,
|
367
|
+
"internalType": "address",
|
368
|
+
"name": "to",
|
369
|
+
"type": "address"
|
370
|
+
},
|
371
|
+
{
|
372
|
+
"indexed": false,
|
373
|
+
"internalType": "uint256",
|
374
|
+
"name": "amount",
|
375
|
+
"type": "uint256"
|
376
|
+
}
|
377
|
+
],
|
378
|
+
"name": "LogComponentWalletTokensTransferred",
|
379
|
+
"type": "event"
|
380
|
+
},
|
381
|
+
{
|
382
|
+
"inputs": [],
|
383
|
+
"name": "COMPONENT_LOCATION_V1",
|
384
|
+
"outputs": [
|
385
|
+
{
|
386
|
+
"internalType": "bytes32",
|
387
|
+
"name": "",
|
388
|
+
"type": "bytes32"
|
389
|
+
}
|
390
|
+
],
|
391
|
+
"stateMutability": "view",
|
392
|
+
"type": "function"
|
393
|
+
},
|
394
|
+
{
|
395
|
+
"inputs": [],
|
396
|
+
"name": "INSTANCE_LINKED_COMPONENT_LOCATION_V1",
|
397
|
+
"outputs": [
|
398
|
+
{
|
399
|
+
"internalType": "bytes32",
|
400
|
+
"name": "",
|
401
|
+
"type": "bytes32"
|
402
|
+
}
|
403
|
+
],
|
404
|
+
"stateMutability": "view",
|
405
|
+
"type": "function"
|
406
|
+
},
|
407
|
+
{
|
408
|
+
"inputs": [],
|
409
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
410
|
+
"outputs": [
|
411
|
+
{
|
412
|
+
"internalType": "bytes32",
|
413
|
+
"name": "",
|
414
|
+
"type": "bytes32"
|
415
|
+
}
|
416
|
+
],
|
417
|
+
"stateMutability": "view",
|
418
|
+
"type": "function"
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"inputs": [],
|
422
|
+
"name": "PRODUCT_STORAGE_LOCATION_V1",
|
423
|
+
"outputs": [
|
424
|
+
{
|
425
|
+
"internalType": "bytes32",
|
426
|
+
"name": "",
|
427
|
+
"type": "bytes32"
|
428
|
+
}
|
429
|
+
],
|
430
|
+
"stateMutability": "view",
|
431
|
+
"type": "function"
|
432
|
+
},
|
433
|
+
{
|
434
|
+
"inputs": [],
|
435
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
436
|
+
"outputs": [
|
437
|
+
{
|
438
|
+
"internalType": "bytes32",
|
439
|
+
"name": "",
|
440
|
+
"type": "bytes32"
|
441
|
+
}
|
442
|
+
],
|
443
|
+
"stateMutability": "view",
|
444
|
+
"type": "function"
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"inputs": [
|
448
|
+
{
|
449
|
+
"internalType": "address",
|
450
|
+
"name": "token",
|
451
|
+
"type": "address"
|
452
|
+
},
|
453
|
+
{
|
454
|
+
"internalType": "Amount",
|
455
|
+
"name": "spendingLimitAmount",
|
456
|
+
"type": "uint96"
|
457
|
+
}
|
458
|
+
],
|
459
|
+
"name": "approveTokenHandler",
|
460
|
+
"outputs": [],
|
461
|
+
"stateMutability": "nonpayable",
|
462
|
+
"type": "function"
|
463
|
+
},
|
464
|
+
{
|
465
|
+
"inputs": [
|
466
|
+
{
|
467
|
+
"internalType": "Amount",
|
468
|
+
"name": "spendingLimitAmount",
|
469
|
+
"type": "uint96"
|
470
|
+
}
|
471
|
+
],
|
472
|
+
"name": "approveTokenHandler",
|
473
|
+
"outputs": [],
|
474
|
+
"stateMutability": "nonpayable",
|
475
|
+
"type": "function"
|
476
|
+
},
|
477
|
+
{
|
478
|
+
"inputs": [],
|
479
|
+
"name": "authority",
|
480
|
+
"outputs": [
|
481
|
+
{
|
482
|
+
"internalType": "address",
|
483
|
+
"name": "",
|
484
|
+
"type": "address"
|
485
|
+
}
|
486
|
+
],
|
487
|
+
"stateMutability": "view",
|
488
|
+
"type": "function"
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"inputs": [
|
492
|
+
{
|
493
|
+
"internalType": "Amount",
|
494
|
+
"name": "sumInsured",
|
495
|
+
"type": "uint96"
|
496
|
+
},
|
497
|
+
{
|
498
|
+
"internalType": "RiskId",
|
499
|
+
"name": "",
|
500
|
+
"type": "bytes8"
|
501
|
+
},
|
502
|
+
{
|
503
|
+
"internalType": "Seconds",
|
504
|
+
"name": "lifetime",
|
505
|
+
"type": "uint40"
|
506
|
+
},
|
507
|
+
{
|
508
|
+
"internalType": "bytes",
|
509
|
+
"name": "",
|
510
|
+
"type": "bytes"
|
511
|
+
}
|
512
|
+
],
|
513
|
+
"name": "calculateNetPremium",
|
514
|
+
"outputs": [
|
515
|
+
{
|
516
|
+
"internalType": "Amount",
|
517
|
+
"name": "netPremiumAmount",
|
518
|
+
"type": "uint96"
|
519
|
+
}
|
520
|
+
],
|
521
|
+
"stateMutability": "view",
|
522
|
+
"type": "function"
|
523
|
+
},
|
524
|
+
{
|
525
|
+
"inputs": [
|
526
|
+
{
|
527
|
+
"internalType": "Amount",
|
528
|
+
"name": "sumInsuredAmount",
|
529
|
+
"type": "uint96"
|
530
|
+
},
|
531
|
+
{
|
532
|
+
"internalType": "RiskId",
|
533
|
+
"name": "riskId",
|
534
|
+
"type": "bytes8"
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"internalType": "Seconds",
|
538
|
+
"name": "lifetime",
|
539
|
+
"type": "uint40"
|
540
|
+
},
|
541
|
+
{
|
542
|
+
"internalType": "bytes",
|
543
|
+
"name": "applicationData",
|
544
|
+
"type": "bytes"
|
545
|
+
},
|
546
|
+
{
|
547
|
+
"internalType": "NftId",
|
548
|
+
"name": "bundleNftId",
|
549
|
+
"type": "uint96"
|
550
|
+
},
|
551
|
+
{
|
552
|
+
"internalType": "ReferralId",
|
553
|
+
"name": "referralId",
|
554
|
+
"type": "bytes8"
|
555
|
+
}
|
556
|
+
],
|
557
|
+
"name": "calculatePremium",
|
558
|
+
"outputs": [
|
559
|
+
{
|
560
|
+
"internalType": "Amount",
|
561
|
+
"name": "premiumAmount",
|
562
|
+
"type": "uint96"
|
563
|
+
}
|
564
|
+
],
|
565
|
+
"stateMutability": "view",
|
566
|
+
"type": "function"
|
567
|
+
},
|
568
|
+
{
|
569
|
+
"inputs": [
|
570
|
+
{
|
571
|
+
"internalType": "string",
|
572
|
+
"name": "cityName",
|
573
|
+
"type": "string"
|
574
|
+
},
|
575
|
+
{
|
576
|
+
"internalType": "Amount",
|
577
|
+
"name": "sumInsured",
|
578
|
+
"type": "uint96"
|
579
|
+
},
|
580
|
+
{
|
581
|
+
"internalType": "Seconds",
|
582
|
+
"name": "lifetime",
|
583
|
+
"type": "uint40"
|
584
|
+
},
|
585
|
+
{
|
586
|
+
"internalType": "NftId",
|
587
|
+
"name": "bundleNftId",
|
588
|
+
"type": "uint96"
|
589
|
+
}
|
590
|
+
],
|
591
|
+
"name": "calculatePremium",
|
592
|
+
"outputs": [
|
593
|
+
{
|
594
|
+
"internalType": "Amount",
|
595
|
+
"name": "premiumAmount",
|
596
|
+
"type": "uint96"
|
597
|
+
}
|
598
|
+
],
|
599
|
+
"stateMutability": "view",
|
600
|
+
"type": "function"
|
601
|
+
},
|
602
|
+
{
|
603
|
+
"inputs": [],
|
604
|
+
"name": "cities",
|
605
|
+
"outputs": [
|
606
|
+
{
|
607
|
+
"internalType": "uint256",
|
608
|
+
"name": "",
|
609
|
+
"type": "uint256"
|
610
|
+
}
|
611
|
+
],
|
612
|
+
"stateMutability": "view",
|
613
|
+
"type": "function"
|
614
|
+
},
|
615
|
+
{
|
616
|
+
"inputs": [
|
617
|
+
{
|
618
|
+
"internalType": "uint256",
|
619
|
+
"name": "idx",
|
620
|
+
"type": "uint256"
|
621
|
+
}
|
622
|
+
],
|
623
|
+
"name": "city",
|
624
|
+
"outputs": [
|
625
|
+
{
|
626
|
+
"internalType": "string",
|
627
|
+
"name": "",
|
628
|
+
"type": "string"
|
629
|
+
}
|
630
|
+
],
|
631
|
+
"stateMutability": "view",
|
632
|
+
"type": "function"
|
633
|
+
},
|
634
|
+
{
|
635
|
+
"inputs": [
|
636
|
+
{
|
637
|
+
"internalType": "NftId",
|
638
|
+
"name": "policyNftId",
|
639
|
+
"type": "uint96"
|
640
|
+
}
|
641
|
+
],
|
642
|
+
"name": "close",
|
643
|
+
"outputs": [],
|
644
|
+
"stateMutability": "nonpayable",
|
645
|
+
"type": "function"
|
646
|
+
},
|
647
|
+
{
|
648
|
+
"inputs": [
|
649
|
+
{
|
650
|
+
"internalType": "string",
|
651
|
+
"name": "cityName",
|
652
|
+
"type": "string"
|
653
|
+
},
|
654
|
+
{
|
655
|
+
"internalType": "Amount",
|
656
|
+
"name": "sumInsured",
|
657
|
+
"type": "uint96"
|
658
|
+
},
|
659
|
+
{
|
660
|
+
"internalType": "Seconds",
|
661
|
+
"name": "lifetime",
|
662
|
+
"type": "uint40"
|
663
|
+
},
|
664
|
+
{
|
665
|
+
"internalType": "NftId",
|
666
|
+
"name": "bundleNftId",
|
667
|
+
"type": "uint96"
|
668
|
+
}
|
669
|
+
],
|
670
|
+
"name": "createApplication",
|
671
|
+
"outputs": [
|
672
|
+
{
|
673
|
+
"internalType": "NftId",
|
674
|
+
"name": "policyNftId",
|
675
|
+
"type": "uint96"
|
676
|
+
}
|
677
|
+
],
|
678
|
+
"stateMutability": "nonpayable",
|
679
|
+
"type": "function"
|
680
|
+
},
|
681
|
+
{
|
682
|
+
"inputs": [
|
683
|
+
{
|
684
|
+
"internalType": "NftId",
|
685
|
+
"name": "policyNftId",
|
686
|
+
"type": "uint96"
|
687
|
+
},
|
688
|
+
{
|
689
|
+
"internalType": "Timestamp",
|
690
|
+
"name": "activateAt",
|
691
|
+
"type": "uint40"
|
692
|
+
}
|
693
|
+
],
|
694
|
+
"name": "createPolicy",
|
695
|
+
"outputs": [],
|
696
|
+
"stateMutability": "nonpayable",
|
697
|
+
"type": "function"
|
698
|
+
},
|
699
|
+
{
|
700
|
+
"inputs": [
|
701
|
+
{
|
702
|
+
"internalType": "NftId",
|
703
|
+
"name": "policyNftId",
|
704
|
+
"type": "uint96"
|
705
|
+
}
|
706
|
+
],
|
707
|
+
"name": "decline",
|
708
|
+
"outputs": [],
|
709
|
+
"stateMutability": "nonpayable",
|
710
|
+
"type": "function"
|
711
|
+
},
|
712
|
+
{
|
713
|
+
"inputs": [
|
714
|
+
{
|
715
|
+
"internalType": "NftId",
|
716
|
+
"name": "policyNftId",
|
717
|
+
"type": "uint96"
|
718
|
+
},
|
719
|
+
{
|
720
|
+
"internalType": "Timestamp",
|
721
|
+
"name": "expireAt",
|
722
|
+
"type": "uint40"
|
723
|
+
}
|
724
|
+
],
|
725
|
+
"name": "expire",
|
726
|
+
"outputs": [
|
727
|
+
{
|
728
|
+
"internalType": "Timestamp",
|
729
|
+
"name": "",
|
730
|
+
"type": "uint40"
|
731
|
+
}
|
732
|
+
],
|
733
|
+
"stateMutability": "nonpayable",
|
734
|
+
"type": "function"
|
735
|
+
},
|
736
|
+
{
|
737
|
+
"inputs": [
|
738
|
+
{
|
739
|
+
"internalType": "uint256",
|
740
|
+
"name": "fireId",
|
741
|
+
"type": "uint256"
|
742
|
+
}
|
743
|
+
],
|
744
|
+
"name": "fire",
|
745
|
+
"outputs": [
|
746
|
+
{
|
747
|
+
"components": [
|
748
|
+
{
|
749
|
+
"internalType": "string",
|
750
|
+
"name": "cityName",
|
751
|
+
"type": "string"
|
752
|
+
},
|
753
|
+
{
|
754
|
+
"internalType": "DamageLevel",
|
755
|
+
"name": "damageLevel",
|
756
|
+
"type": "uint8"
|
757
|
+
},
|
758
|
+
{
|
759
|
+
"internalType": "Timestamp",
|
760
|
+
"name": "reportedAt",
|
761
|
+
"type": "uint40"
|
762
|
+
}
|
763
|
+
],
|
764
|
+
"internalType": "struct FireProduct.Fire",
|
765
|
+
"name": "",
|
766
|
+
"type": "tuple"
|
767
|
+
}
|
768
|
+
],
|
769
|
+
"stateMutability": "view",
|
770
|
+
"type": "function"
|
771
|
+
},
|
772
|
+
{
|
773
|
+
"inputs": [],
|
774
|
+
"name": "getAuthorization",
|
775
|
+
"outputs": [
|
776
|
+
{
|
777
|
+
"internalType": "contract IAuthorization",
|
778
|
+
"name": "authorization",
|
779
|
+
"type": "address"
|
780
|
+
}
|
781
|
+
],
|
782
|
+
"stateMutability": "view",
|
783
|
+
"type": "function"
|
784
|
+
},
|
785
|
+
{
|
786
|
+
"inputs": [],
|
787
|
+
"name": "getComponentInfo",
|
788
|
+
"outputs": [
|
789
|
+
{
|
790
|
+
"components": [
|
791
|
+
{
|
792
|
+
"internalType": "string",
|
793
|
+
"name": "name",
|
794
|
+
"type": "string"
|
795
|
+
},
|
796
|
+
{
|
797
|
+
"internalType": "NftId",
|
798
|
+
"name": "productNftId",
|
799
|
+
"type": "uint96"
|
800
|
+
},
|
801
|
+
{
|
802
|
+
"internalType": "contract IERC20Metadata",
|
803
|
+
"name": "token",
|
804
|
+
"type": "address"
|
805
|
+
},
|
806
|
+
{
|
807
|
+
"internalType": "contract TokenHandler",
|
808
|
+
"name": "tokenHandler",
|
809
|
+
"type": "address"
|
810
|
+
},
|
811
|
+
{
|
812
|
+
"internalType": "address",
|
813
|
+
"name": "wallet",
|
814
|
+
"type": "address"
|
815
|
+
},
|
816
|
+
{
|
817
|
+
"internalType": "bytes",
|
818
|
+
"name": "data",
|
819
|
+
"type": "bytes"
|
820
|
+
}
|
821
|
+
],
|
822
|
+
"internalType": "struct IComponents.ComponentInfo",
|
823
|
+
"name": "info",
|
824
|
+
"type": "tuple"
|
825
|
+
}
|
826
|
+
],
|
827
|
+
"stateMutability": "view",
|
828
|
+
"type": "function"
|
829
|
+
},
|
830
|
+
{
|
831
|
+
"inputs": [],
|
832
|
+
"name": "getInitialComponentInfo",
|
833
|
+
"outputs": [
|
834
|
+
{
|
835
|
+
"components": [
|
836
|
+
{
|
837
|
+
"internalType": "string",
|
838
|
+
"name": "name",
|
839
|
+
"type": "string"
|
840
|
+
},
|
841
|
+
{
|
842
|
+
"internalType": "NftId",
|
843
|
+
"name": "productNftId",
|
844
|
+
"type": "uint96"
|
845
|
+
},
|
846
|
+
{
|
847
|
+
"internalType": "contract IERC20Metadata",
|
848
|
+
"name": "token",
|
849
|
+
"type": "address"
|
850
|
+
},
|
851
|
+
{
|
852
|
+
"internalType": "contract TokenHandler",
|
853
|
+
"name": "tokenHandler",
|
854
|
+
"type": "address"
|
855
|
+
},
|
856
|
+
{
|
857
|
+
"internalType": "address",
|
858
|
+
"name": "wallet",
|
859
|
+
"type": "address"
|
860
|
+
},
|
861
|
+
{
|
862
|
+
"internalType": "bytes",
|
863
|
+
"name": "data",
|
864
|
+
"type": "bytes"
|
865
|
+
}
|
866
|
+
],
|
867
|
+
"internalType": "struct IComponents.ComponentInfo",
|
868
|
+
"name": "info",
|
869
|
+
"type": "tuple"
|
870
|
+
}
|
871
|
+
],
|
872
|
+
"stateMutability": "view",
|
873
|
+
"type": "function"
|
874
|
+
},
|
875
|
+
{
|
876
|
+
"inputs": [],
|
877
|
+
"name": "getInitialInfo",
|
878
|
+
"outputs": [
|
879
|
+
{
|
880
|
+
"components": [
|
881
|
+
{
|
882
|
+
"internalType": "NftId",
|
883
|
+
"name": "nftId",
|
884
|
+
"type": "uint96"
|
885
|
+
},
|
886
|
+
{
|
887
|
+
"internalType": "NftId",
|
888
|
+
"name": "parentNftId",
|
889
|
+
"type": "uint96"
|
890
|
+
},
|
891
|
+
{
|
892
|
+
"internalType": "ObjectType",
|
893
|
+
"name": "objectType",
|
894
|
+
"type": "uint8"
|
895
|
+
},
|
896
|
+
{
|
897
|
+
"internalType": "bool",
|
898
|
+
"name": "isInterceptor",
|
899
|
+
"type": "bool"
|
900
|
+
},
|
901
|
+
{
|
902
|
+
"internalType": "address",
|
903
|
+
"name": "objectAddress",
|
904
|
+
"type": "address"
|
905
|
+
},
|
906
|
+
{
|
907
|
+
"internalType": "address",
|
908
|
+
"name": "initialOwner",
|
909
|
+
"type": "address"
|
910
|
+
},
|
911
|
+
{
|
912
|
+
"internalType": "bytes",
|
913
|
+
"name": "data",
|
914
|
+
"type": "bytes"
|
915
|
+
}
|
916
|
+
],
|
917
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
918
|
+
"name": "info",
|
919
|
+
"type": "tuple"
|
920
|
+
}
|
921
|
+
],
|
922
|
+
"stateMutability": "view",
|
923
|
+
"type": "function"
|
924
|
+
},
|
925
|
+
{
|
926
|
+
"inputs": [],
|
927
|
+
"name": "getInitialProductInfo",
|
928
|
+
"outputs": [
|
929
|
+
{
|
930
|
+
"components": [
|
931
|
+
{
|
932
|
+
"internalType": "NftId",
|
933
|
+
"name": "distributionNftId",
|
934
|
+
"type": "uint96"
|
935
|
+
},
|
936
|
+
{
|
937
|
+
"internalType": "NftId",
|
938
|
+
"name": "poolNftId",
|
939
|
+
"type": "uint96"
|
940
|
+
},
|
941
|
+
{
|
942
|
+
"internalType": "bool",
|
943
|
+
"name": "isProcessingFundedClaims",
|
944
|
+
"type": "bool"
|
945
|
+
},
|
946
|
+
{
|
947
|
+
"components": [
|
948
|
+
{
|
949
|
+
"internalType": "UFixed",
|
950
|
+
"name": "fractionalFee",
|
951
|
+
"type": "uint256"
|
952
|
+
},
|
953
|
+
{
|
954
|
+
"internalType": "uint256",
|
955
|
+
"name": "fixedFee",
|
956
|
+
"type": "uint256"
|
957
|
+
}
|
958
|
+
],
|
959
|
+
"internalType": "struct Fee",
|
960
|
+
"name": "productFee",
|
961
|
+
"type": "tuple"
|
962
|
+
},
|
963
|
+
{
|
964
|
+
"components": [
|
965
|
+
{
|
966
|
+
"internalType": "UFixed",
|
967
|
+
"name": "fractionalFee",
|
968
|
+
"type": "uint256"
|
969
|
+
},
|
970
|
+
{
|
971
|
+
"internalType": "uint256",
|
972
|
+
"name": "fixedFee",
|
973
|
+
"type": "uint256"
|
974
|
+
}
|
975
|
+
],
|
976
|
+
"internalType": "struct Fee",
|
977
|
+
"name": "processingFee",
|
978
|
+
"type": "tuple"
|
979
|
+
},
|
980
|
+
{
|
981
|
+
"components": [
|
982
|
+
{
|
983
|
+
"internalType": "UFixed",
|
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": "distributionFee",
|
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": "minDistributionOwnerFee",
|
1012
|
+
"type": "tuple"
|
1013
|
+
},
|
1014
|
+
{
|
1015
|
+
"components": [
|
1016
|
+
{
|
1017
|
+
"internalType": "UFixed",
|
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": "poolFee",
|
1029
|
+
"type": "tuple"
|
1030
|
+
},
|
1031
|
+
{
|
1032
|
+
"components": [
|
1033
|
+
{
|
1034
|
+
"internalType": "UFixed",
|
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": "stakingFee",
|
1046
|
+
"type": "tuple"
|
1047
|
+
},
|
1048
|
+
{
|
1049
|
+
"components": [
|
1050
|
+
{
|
1051
|
+
"internalType": "UFixed",
|
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": "performanceFee",
|
1063
|
+
"type": "tuple"
|
1064
|
+
}
|
1065
|
+
],
|
1066
|
+
"internalType": "struct IComponents.ProductInfo",
|
1067
|
+
"name": "poolInfo",
|
1068
|
+
"type": "tuple"
|
1069
|
+
}
|
1070
|
+
],
|
1071
|
+
"stateMutability": "view",
|
1072
|
+
"type": "function"
|
1073
|
+
},
|
1074
|
+
{
|
1075
|
+
"inputs": [],
|
1076
|
+
"name": "getInstance",
|
1077
|
+
"outputs": [
|
1078
|
+
{
|
1079
|
+
"internalType": "contract IInstance",
|
1080
|
+
"name": "instance",
|
1081
|
+
"type": "address"
|
1082
|
+
}
|
1083
|
+
],
|
1084
|
+
"stateMutability": "view",
|
1085
|
+
"type": "function"
|
1086
|
+
},
|
1087
|
+
{
|
1088
|
+
"inputs": [],
|
1089
|
+
"name": "getName",
|
1090
|
+
"outputs": [
|
1091
|
+
{
|
1092
|
+
"internalType": "string",
|
1093
|
+
"name": "name",
|
1094
|
+
"type": "string"
|
1095
|
+
}
|
1096
|
+
],
|
1097
|
+
"stateMutability": "view",
|
1098
|
+
"type": "function"
|
1099
|
+
},
|
1100
|
+
{
|
1101
|
+
"inputs": [],
|
1102
|
+
"name": "getNftId",
|
1103
|
+
"outputs": [
|
1104
|
+
{
|
1105
|
+
"internalType": "NftId",
|
1106
|
+
"name": "",
|
1107
|
+
"type": "uint96"
|
1108
|
+
}
|
1109
|
+
],
|
1110
|
+
"stateMutability": "view",
|
1111
|
+
"type": "function"
|
1112
|
+
},
|
1113
|
+
{
|
1114
|
+
"inputs": [],
|
1115
|
+
"name": "getOwner",
|
1116
|
+
"outputs": [
|
1117
|
+
{
|
1118
|
+
"internalType": "address",
|
1119
|
+
"name": "",
|
1120
|
+
"type": "address"
|
1121
|
+
}
|
1122
|
+
],
|
1123
|
+
"stateMutability": "view",
|
1124
|
+
"type": "function"
|
1125
|
+
},
|
1126
|
+
{
|
1127
|
+
"inputs": [],
|
1128
|
+
"name": "getProductNftId",
|
1129
|
+
"outputs": [
|
1130
|
+
{
|
1131
|
+
"internalType": "NftId",
|
1132
|
+
"name": "productNftId",
|
1133
|
+
"type": "uint96"
|
1134
|
+
}
|
1135
|
+
],
|
1136
|
+
"stateMutability": "view",
|
1137
|
+
"type": "function"
|
1138
|
+
},
|
1139
|
+
{
|
1140
|
+
"inputs": [],
|
1141
|
+
"name": "getRegistry",
|
1142
|
+
"outputs": [
|
1143
|
+
{
|
1144
|
+
"internalType": "contract IRegistry",
|
1145
|
+
"name": "",
|
1146
|
+
"type": "address"
|
1147
|
+
}
|
1148
|
+
],
|
1149
|
+
"stateMutability": "view",
|
1150
|
+
"type": "function"
|
1151
|
+
},
|
1152
|
+
{
|
1153
|
+
"inputs": [],
|
1154
|
+
"name": "getToken",
|
1155
|
+
"outputs": [
|
1156
|
+
{
|
1157
|
+
"internalType": "contract IERC20Metadata",
|
1158
|
+
"name": "token",
|
1159
|
+
"type": "address"
|
1160
|
+
}
|
1161
|
+
],
|
1162
|
+
"stateMutability": "view",
|
1163
|
+
"type": "function"
|
1164
|
+
},
|
1165
|
+
{
|
1166
|
+
"inputs": [],
|
1167
|
+
"name": "getTokenHandler",
|
1168
|
+
"outputs": [
|
1169
|
+
{
|
1170
|
+
"internalType": "contract TokenHandler",
|
1171
|
+
"name": "tokenHandler",
|
1172
|
+
"type": "address"
|
1173
|
+
}
|
1174
|
+
],
|
1175
|
+
"stateMutability": "view",
|
1176
|
+
"type": "function"
|
1177
|
+
},
|
1178
|
+
{
|
1179
|
+
"inputs": [],
|
1180
|
+
"name": "getWallet",
|
1181
|
+
"outputs": [
|
1182
|
+
{
|
1183
|
+
"internalType": "address",
|
1184
|
+
"name": "walletAddress",
|
1185
|
+
"type": "address"
|
1186
|
+
}
|
1187
|
+
],
|
1188
|
+
"stateMutability": "view",
|
1189
|
+
"type": "function"
|
1190
|
+
},
|
1191
|
+
{
|
1192
|
+
"inputs": [
|
1193
|
+
{
|
1194
|
+
"internalType": "string",
|
1195
|
+
"name": "cityName",
|
1196
|
+
"type": "string"
|
1197
|
+
}
|
1198
|
+
],
|
1199
|
+
"name": "initializeCity",
|
1200
|
+
"outputs": [
|
1201
|
+
{
|
1202
|
+
"internalType": "RiskId",
|
1203
|
+
"name": "riskId",
|
1204
|
+
"type": "bytes8"
|
1205
|
+
}
|
1206
|
+
],
|
1207
|
+
"stateMutability": "nonpayable",
|
1208
|
+
"type": "function"
|
1209
|
+
},
|
1210
|
+
{
|
1211
|
+
"inputs": [],
|
1212
|
+
"name": "isConsumingScheduledOp",
|
1213
|
+
"outputs": [
|
1214
|
+
{
|
1215
|
+
"internalType": "bytes4",
|
1216
|
+
"name": "",
|
1217
|
+
"type": "bytes4"
|
1218
|
+
}
|
1219
|
+
],
|
1220
|
+
"stateMutability": "view",
|
1221
|
+
"type": "function"
|
1222
|
+
},
|
1223
|
+
{
|
1224
|
+
"inputs": [],
|
1225
|
+
"name": "isNftInterceptor",
|
1226
|
+
"outputs": [
|
1227
|
+
{
|
1228
|
+
"internalType": "bool",
|
1229
|
+
"name": "isInterceptor",
|
1230
|
+
"type": "bool"
|
1231
|
+
}
|
1232
|
+
],
|
1233
|
+
"stateMutability": "view",
|
1234
|
+
"type": "function"
|
1235
|
+
},
|
1236
|
+
{
|
1237
|
+
"inputs": [],
|
1238
|
+
"name": "isRegistered",
|
1239
|
+
"outputs": [
|
1240
|
+
{
|
1241
|
+
"internalType": "bool",
|
1242
|
+
"name": "",
|
1243
|
+
"type": "bool"
|
1244
|
+
}
|
1245
|
+
],
|
1246
|
+
"stateMutability": "view",
|
1247
|
+
"type": "function"
|
1248
|
+
},
|
1249
|
+
{
|
1250
|
+
"inputs": [],
|
1251
|
+
"name": "linkToRegisteredNftId",
|
1252
|
+
"outputs": [
|
1253
|
+
{
|
1254
|
+
"internalType": "NftId",
|
1255
|
+
"name": "nftId",
|
1256
|
+
"type": "uint96"
|
1257
|
+
}
|
1258
|
+
],
|
1259
|
+
"stateMutability": "nonpayable",
|
1260
|
+
"type": "function"
|
1261
|
+
},
|
1262
|
+
{
|
1263
|
+
"inputs": [],
|
1264
|
+
"name": "lock",
|
1265
|
+
"outputs": [],
|
1266
|
+
"stateMutability": "nonpayable",
|
1267
|
+
"type": "function"
|
1268
|
+
},
|
1269
|
+
{
|
1270
|
+
"inputs": [
|
1271
|
+
{
|
1272
|
+
"internalType": "address",
|
1273
|
+
"name": "to",
|
1274
|
+
"type": "address"
|
1275
|
+
},
|
1276
|
+
{
|
1277
|
+
"internalType": "uint256",
|
1278
|
+
"name": "tokenId",
|
1279
|
+
"type": "uint256"
|
1280
|
+
}
|
1281
|
+
],
|
1282
|
+
"name": "nftMint",
|
1283
|
+
"outputs": [],
|
1284
|
+
"stateMutability": "nonpayable",
|
1285
|
+
"type": "function"
|
1286
|
+
},
|
1287
|
+
{
|
1288
|
+
"inputs": [
|
1289
|
+
{
|
1290
|
+
"internalType": "address",
|
1291
|
+
"name": "from",
|
1292
|
+
"type": "address"
|
1293
|
+
},
|
1294
|
+
{
|
1295
|
+
"internalType": "address",
|
1296
|
+
"name": "to",
|
1297
|
+
"type": "address"
|
1298
|
+
},
|
1299
|
+
{
|
1300
|
+
"internalType": "uint256",
|
1301
|
+
"name": "tokenId",
|
1302
|
+
"type": "uint256"
|
1303
|
+
}
|
1304
|
+
],
|
1305
|
+
"name": "nftTransferFrom",
|
1306
|
+
"outputs": [],
|
1307
|
+
"stateMutability": "nonpayable",
|
1308
|
+
"type": "function"
|
1309
|
+
},
|
1310
|
+
{
|
1311
|
+
"inputs": [
|
1312
|
+
{
|
1313
|
+
"internalType": "string",
|
1314
|
+
"name": "cityName",
|
1315
|
+
"type": "string"
|
1316
|
+
}
|
1317
|
+
],
|
1318
|
+
"name": "pauseCity",
|
1319
|
+
"outputs": [],
|
1320
|
+
"stateMutability": "nonpayable",
|
1321
|
+
"type": "function"
|
1322
|
+
},
|
1323
|
+
{
|
1324
|
+
"inputs": [
|
1325
|
+
{
|
1326
|
+
"internalType": "NftId",
|
1327
|
+
"name": "policyNftId",
|
1328
|
+
"type": "uint96"
|
1329
|
+
},
|
1330
|
+
{
|
1331
|
+
"internalType": "ClaimId",
|
1332
|
+
"name": "claimId",
|
1333
|
+
"type": "uint16"
|
1334
|
+
},
|
1335
|
+
{
|
1336
|
+
"internalType": "Amount",
|
1337
|
+
"name": "availableAmount",
|
1338
|
+
"type": "uint96"
|
1339
|
+
}
|
1340
|
+
],
|
1341
|
+
"name": "processFundedClaim",
|
1342
|
+
"outputs": [],
|
1343
|
+
"stateMutability": "nonpayable",
|
1344
|
+
"type": "function"
|
1345
|
+
},
|
1346
|
+
{
|
1347
|
+
"inputs": [],
|
1348
|
+
"name": "register",
|
1349
|
+
"outputs": [],
|
1350
|
+
"stateMutability": "nonpayable",
|
1351
|
+
"type": "function"
|
1352
|
+
},
|
1353
|
+
{
|
1354
|
+
"inputs": [
|
1355
|
+
{
|
1356
|
+
"internalType": "uint256",
|
1357
|
+
"name": "fireId",
|
1358
|
+
"type": "uint256"
|
1359
|
+
},
|
1360
|
+
{
|
1361
|
+
"internalType": "string",
|
1362
|
+
"name": "cityName",
|
1363
|
+
"type": "string"
|
1364
|
+
},
|
1365
|
+
{
|
1366
|
+
"internalType": "DamageLevel",
|
1367
|
+
"name": "damageLevel",
|
1368
|
+
"type": "uint8"
|
1369
|
+
},
|
1370
|
+
{
|
1371
|
+
"internalType": "Timestamp",
|
1372
|
+
"name": "reportedAt",
|
1373
|
+
"type": "uint40"
|
1374
|
+
}
|
1375
|
+
],
|
1376
|
+
"name": "reportFire",
|
1377
|
+
"outputs": [],
|
1378
|
+
"stateMutability": "nonpayable",
|
1379
|
+
"type": "function"
|
1380
|
+
},
|
1381
|
+
{
|
1382
|
+
"inputs": [
|
1383
|
+
{
|
1384
|
+
"internalType": "string",
|
1385
|
+
"name": "cityName",
|
1386
|
+
"type": "string"
|
1387
|
+
}
|
1388
|
+
],
|
1389
|
+
"name": "riskId",
|
1390
|
+
"outputs": [
|
1391
|
+
{
|
1392
|
+
"internalType": "RiskId",
|
1393
|
+
"name": "",
|
1394
|
+
"type": "bytes8"
|
1395
|
+
}
|
1396
|
+
],
|
1397
|
+
"stateMutability": "view",
|
1398
|
+
"type": "function"
|
1399
|
+
},
|
1400
|
+
{
|
1401
|
+
"inputs": [
|
1402
|
+
{
|
1403
|
+
"internalType": "address",
|
1404
|
+
"name": "newAuthority",
|
1405
|
+
"type": "address"
|
1406
|
+
}
|
1407
|
+
],
|
1408
|
+
"name": "setAuthority",
|
1409
|
+
"outputs": [],
|
1410
|
+
"stateMutability": "nonpayable",
|
1411
|
+
"type": "function"
|
1412
|
+
},
|
1413
|
+
{
|
1414
|
+
"inputs": [
|
1415
|
+
{
|
1416
|
+
"components": [
|
1417
|
+
{
|
1418
|
+
"internalType": "UFixed",
|
1419
|
+
"name": "fractionalFee",
|
1420
|
+
"type": "uint256"
|
1421
|
+
},
|
1422
|
+
{
|
1423
|
+
"internalType": "uint256",
|
1424
|
+
"name": "fixedFee",
|
1425
|
+
"type": "uint256"
|
1426
|
+
}
|
1427
|
+
],
|
1428
|
+
"internalType": "struct Fee",
|
1429
|
+
"name": "productFee",
|
1430
|
+
"type": "tuple"
|
1431
|
+
},
|
1432
|
+
{
|
1433
|
+
"components": [
|
1434
|
+
{
|
1435
|
+
"internalType": "UFixed",
|
1436
|
+
"name": "fractionalFee",
|
1437
|
+
"type": "uint256"
|
1438
|
+
},
|
1439
|
+
{
|
1440
|
+
"internalType": "uint256",
|
1441
|
+
"name": "fixedFee",
|
1442
|
+
"type": "uint256"
|
1443
|
+
}
|
1444
|
+
],
|
1445
|
+
"internalType": "struct Fee",
|
1446
|
+
"name": "processingFee",
|
1447
|
+
"type": "tuple"
|
1448
|
+
}
|
1449
|
+
],
|
1450
|
+
"name": "setFees",
|
1451
|
+
"outputs": [],
|
1452
|
+
"stateMutability": "nonpayable",
|
1453
|
+
"type": "function"
|
1454
|
+
},
|
1455
|
+
{
|
1456
|
+
"inputs": [
|
1457
|
+
{
|
1458
|
+
"internalType": "address",
|
1459
|
+
"name": "newWallet",
|
1460
|
+
"type": "address"
|
1461
|
+
}
|
1462
|
+
],
|
1463
|
+
"name": "setWallet",
|
1464
|
+
"outputs": [],
|
1465
|
+
"stateMutability": "nonpayable",
|
1466
|
+
"type": "function"
|
1467
|
+
},
|
1468
|
+
{
|
1469
|
+
"inputs": [
|
1470
|
+
{
|
1471
|
+
"internalType": "NftId",
|
1472
|
+
"name": "policyNftId",
|
1473
|
+
"type": "uint96"
|
1474
|
+
},
|
1475
|
+
{
|
1476
|
+
"internalType": "uint256",
|
1477
|
+
"name": "fireId",
|
1478
|
+
"type": "uint256"
|
1479
|
+
}
|
1480
|
+
],
|
1481
|
+
"name": "submitClaim",
|
1482
|
+
"outputs": [
|
1483
|
+
{
|
1484
|
+
"internalType": "ClaimId",
|
1485
|
+
"name": "claimId",
|
1486
|
+
"type": "uint16"
|
1487
|
+
},
|
1488
|
+
{
|
1489
|
+
"internalType": "PayoutId",
|
1490
|
+
"name": "payoutId",
|
1491
|
+
"type": "uint40"
|
1492
|
+
}
|
1493
|
+
],
|
1494
|
+
"stateMutability": "nonpayable",
|
1495
|
+
"type": "function"
|
1496
|
+
},
|
1497
|
+
{
|
1498
|
+
"inputs": [
|
1499
|
+
{
|
1500
|
+
"internalType": "bytes4",
|
1501
|
+
"name": "interfaceId",
|
1502
|
+
"type": "bytes4"
|
1503
|
+
}
|
1504
|
+
],
|
1505
|
+
"name": "supportsInterface",
|
1506
|
+
"outputs": [
|
1507
|
+
{
|
1508
|
+
"internalType": "bool",
|
1509
|
+
"name": "",
|
1510
|
+
"type": "bool"
|
1511
|
+
}
|
1512
|
+
],
|
1513
|
+
"stateMutability": "view",
|
1514
|
+
"type": "function"
|
1515
|
+
},
|
1516
|
+
{
|
1517
|
+
"inputs": [],
|
1518
|
+
"name": "unlock",
|
1519
|
+
"outputs": [],
|
1520
|
+
"stateMutability": "nonpayable",
|
1521
|
+
"type": "function"
|
1522
|
+
},
|
1523
|
+
{
|
1524
|
+
"inputs": [
|
1525
|
+
{
|
1526
|
+
"internalType": "string",
|
1527
|
+
"name": "cityName",
|
1528
|
+
"type": "string"
|
1529
|
+
}
|
1530
|
+
],
|
1531
|
+
"name": "unpauseCity",
|
1532
|
+
"outputs": [],
|
1533
|
+
"stateMutability": "nonpayable",
|
1534
|
+
"type": "function"
|
1535
|
+
},
|
1536
|
+
{
|
1537
|
+
"inputs": [
|
1538
|
+
{
|
1539
|
+
"internalType": "Amount",
|
1540
|
+
"name": "amount",
|
1541
|
+
"type": "uint96"
|
1542
|
+
}
|
1543
|
+
],
|
1544
|
+
"name": "withdrawFees",
|
1545
|
+
"outputs": [
|
1546
|
+
{
|
1547
|
+
"internalType": "Amount",
|
1548
|
+
"name": "withdrawnAmount",
|
1549
|
+
"type": "uint96"
|
1550
|
+
}
|
1551
|
+
],
|
1552
|
+
"stateMutability": "nonpayable",
|
1553
|
+
"type": "function"
|
1554
|
+
}
|
1555
|
+
],
|
1556
|
+
"bytecode": "0x608060405234801561000f575f80fd5b506040516167ef3803806167ef83398101604081905261002e91610d44565b3361003e8787878787878761004a565b50505050505050610ff8565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff1615906001600160401b03165f811580156100935750825b90505f826001600160401b031660011480156100ae5750303b155b9050811580156100bc575080155b156100da5760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561010857845460ff60401b1916680100000000000000001785555b6101198c8c89898e8e5f8f8161016d565b831561015f57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b6101756101b5565b6101aa89898989898989898960405180602001604052805f81525060405180602001604052805f81525061020560201b60201c565b505050505050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661020357604051631afcd79f60e31b815260040160405180910390fd5b565b61020d6101b5565b6102208b8b8989600c8e8b8f8a8a6104c3565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d6800610250600c61077d565b61077d565b81546001600160a01b0319166001600160a01b039190911617815561027661024b601490565b6001820180546001600160a01b0319166001600160a01b03929092169190911790556102a361024b601590565b6002820180546001600160a01b0319166001600160a01b03929092169190911790556102d061024b601790565b6003820180546001600160a01b0319166001600160a01b03929092169190911790556102fd61024b601a90565b6004820180546001600160a01b0319166001600160a01b039290921691909117905561032a61024b600b90565b6005820180546001600160a01b03199081166001600160a01b03938416179091556006830180546001600160601b03166c010000000000000000000000008985160217905560078301805490911686831617905560015416604051632f2a35f760e11b81526001600160a01b0387811660048301529190911690635e546bee90602401602060405180830381865afa1580156103c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103ec9190610e47565b6005820180546001600160601b0392909216600160a01b026001600160a01b039092169190911790556104276001546001600160a01b031690565b604051632f2a35f760e11b81526001600160a01b0386811660048301529190911690635e546bee90602401602060405180830381865afa15801561046d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104919190610e47565b6006820180546001600160601b0319166001600160601b039290921691909117905561015f63416554bd60e11b610898565b6104cb6101b5565b5f7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0060405163bf8e179760e01b81526001600160601b038c1660048201529091506001600160a01b038c169063bf8e179790602401602060405180830381865afa15801561053b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061055f9190610e60565b81546001600160a01b0319166001600160a01b039190911690811782556040516301ffc9a760e01b8152632b1cb34b60e11b60048201526301ffc9a790602401602060405180830381865afa1580156105ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105de9190610e7b565b61060b57604051637db5183160e11b81526001600160601b038b1660048201526024015b60405180910390fd5b80546040805163bf7e214f60e01b81529051610685926001600160a01b03169163bf7e214f9160048083019260209291908290030181865afa158015610653573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106779190610e60565b8c8c8c8c8c8b8b8b8b6108c4565b8054604080516302cd307160e01b815290516001600160a01b03909216916302cd3071916004808201926020929091908290030181865afa1580156106cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106f09190610e60565b6001820180546001600160a01b03199081166001600160a01b039384161790915560028301805490911691881691909117905561072e61024b600b90565b6003820180546001600160a01b0319166001600160a01b0392909216919091179055610760634a531f3360e01b610898565b6107706376c9b41160e11b610898565b5050505050505050505050565b5f807fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f005460408051633379d27d60e21b815290516001600160a01b039092169163cde749f4916004808201926020929091908290030181865afa1580156107e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061080a9190610e9a565b905061081e6001546001600160a01b031690565b60405163d39e604360e01b815260ff8086166004830152831660248201526001600160a01b03919091169063d39e604390604401602060405180830381865afa15801561086d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108919190610e60565b9392505050565b6108a06101b5565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6108cc6101b5565b6108da8989878787876109c9565b6108e38a610a7b565b6001600160a01b03861661090a576040516327eab2e360e11b815260040160405180910390fd5b86515f0361092b5760405163591eebf360e11b815260040160405180910390fd5b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00806109578982610f3e565b506001810180546001600160a01b0319166001600160a01b0389161790556002810180546001600160a81b0319163060ff60a01b191617600160a01b87151502179055600381016109a88382610f3e565b506109b9634a531f3360e01b610898565b610770632986755f60e11b610898565b6109d16101b5565b6109db8287610a8f565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166001600160681b0319909116176c0100000000000000000000000060ff8716021760ff60681b19166d0100000000000000000000000000851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610a718382610f3e565b5050505050505050565b610a836101b5565b610a8c81610b21565b50565b610a976101b5565b610aa081610b32565b610aa8610c3e565b6001600160a01b038216610acf5760405163f17ef42d60e01b815260040160405180910390fd5b507f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546001600160601b03166c010000000000000000000000006001600160a01b0390931692909202919091179055565b610b296101b5565b610a8c81610c83565b610b3a6101b5565b806001600160a01b03163b5f03610b6f5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610602565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152634871d8b760e11b60048201526301ffc9a790602401602060405180830381865afa925050508015610be9575060408051601f3d908101601f19168201909252610be691810190610e7b565b60015b610c115760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610602565b80610c3a5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610602565b5050565b610c466101b5565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0080546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6001600160a01b0381168114610a8c575f80fd5b8051610d1581610cf6565b919050565b80516001600160601b0381168114610d15575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f805f8060c08789031215610d59575f80fd5b8651610d6481610cf6565b9550610d7260208801610d1a565b60408801519095506001600160401b03811115610d8d575f80fd5b8701601f81018913610d9d575f80fd5b80516001600160401b03811115610db657610db6610d30565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610de457610de4610d30565b6040528181528282016020018b1015610dfb575f80fd5b8160208401602083015e5f60208383010152809650505050610e1f60608801610d0a565b9250610e2d60808801610d0a565b9150610e3b60a08801610d0a565b90509295509295509295565b5f60208284031215610e57575f80fd5b61089182610d1a565b5f60208284031215610e70575f80fd5b815161089181610cf6565b5f60208284031215610e8b575f80fd5b81518015158114610891575f80fd5b5f60208284031215610eaa575f80fd5b815160ff81168114610891575f80fd5b600181811c90821680610ece57607f821691505b602082108103610eec57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610f3957805f5260205f20601f840160051c81016020851015610f175750805b601f840160051c820191505b81811015610f36575f8155600101610f23565b50505b505050565b81516001600160401b03811115610f5757610f57610d30565b610f6b81610f658454610eba565b84610ef2565b6020601f821160018114610f9d575f8315610f865750848201515b5f19600385901b1c1916600184901b178455610f36565b5f84815260208120601f198516915b82811015610fcc5787850151825560209485019460019092019101610fac565b5084821015610fe957868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6157ea806110055f395ff3fe608060405234801561000f575f80fd5b5060043610610332575f3560e01c8063893d20e8116101af578063bf7e214f116100fe578063e7f7fb861161009e578063eb0df31911610079578063eb0df31914610741578063f179d06414610754578063f29d9cd814610767578063f83d08ba1461079a575f80fd5b8063e7f7fb86146106f3578063e9b2460c14610706578063ea15869f1461071a575f80fd5b8063d8fb2577116100d9578063d8fb2577146106b2578063de7b5d14146106c5578063deaa59df146106cd578063e1f216fa146106e0575f80fd5b8063bf7e214f1461068d578063c108bd4c14610695578063c9d87e69146106aa575f80fd5b8063aa5ae5aa11610169578063b6b412ba11610144578063b6b412ba14610641578063b8bc787e14610654578063bae99c9914610667578063bb1e0e591461067a575f80fd5b8063aa5ae5aa14610612578063ada9652e14610625578063b423086c14610639575f80fd5b8063893d20e8146105a65780638fb36037146105ae57806390edbd35146105cf5780639ffcede9146105e4578063a69df4b5146105f7578063a7407c71146105ff575f80fd5b806322366844116102855780635741e5e91161022557806364854f9b1161020057806364854f9b146105275780636bd1c0eb1461053a5780637a9e5e4b1461056a5780637baa9a0b1461057d575f80fd5b80635741e5e9146105065780635ab1bd531461050e578063644c45e01461051f575f80fd5b8063419197fe11610260578063419197fe146104c557806343d752d3146104d85780634545177f146104e05780635349d2a8146104f3575f80fd5b806322366844146104895780632eb3e6f414610491578063330234fc146104a5575f80fd5b806313299604116102f05780631aa3a008116102cb5780631aa3a008146104315780631c6b2190146104395780631eff4b221461044c57806321df0da714610481575f80fd5b806313299604146103f4578063138461e01461041457806317d7de7c1461041c575f80fd5b806251884a1461033657806301ffc9a71461035b578063034dac63146103975780630aaba8e8146103ac5780630bb9b257146103bf5780630fec111c146103df575b5f80fd5b61033e6107a2565b6040516001600160601b0390911681526020015b60405180910390f35b610387610369366004614413565b6001600160e01b0319165f9081526020819052604090205460ff1690565b6040519015158152602001610352565b6103aa6103a53660046145ca565b6107b4565b005b6103aa6103ba366004614645565b610a56565b6103d26103cd366004614660565b610aa6565b60405161035291906146a5565b6103e7610b90565b60405161035291906146ea565b6103fc610d4e565b6040516001600160a01b039091168152602001610352565b61033e610d60565b610424610d6f565b6040516103529190614776565b6103aa610d7f565b61033e610447366004614645565b610e3f565b6104737f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610352565b6103fc610e95565b610387610ea7565b6104735f8051602061577583398151915281565b6104b86104b3366004614788565b610f9d565b60405161035291906147b9565b6103aa6104d33660046147e2565b61117c565b6103fc61133c565b6104246104ee366004614660565b61134e565b61033e61050136600461482e565b6113f9565b61038761149b565b6001546001600160a01b03166103fc565b61033e61154f565b61033e6105353660046148c3565b61156a565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b03166103fc565b6103aa610578366004614928565b611699565b61059061058b366004614943565b61171f565b60405164ffffffffff9091168152602001610352565b6103fc611775565b6105b66118a6565b6040516001600160e01b03199091168152602001610352565b6105d76118db565b604051610352919061496f565b6103aa6105f2366004614645565b611900565b6103aa61194d565b61033e61060d3660046148c3565b6119eb565b6103aa610620366004614943565b611b16565b6104735f805160206156f583398151915281565b6105d7611b6e565b6103aa61064f366004614a28565b611b7e565b6104b8610662366004614788565b611bcc565b6103aa610675366004614645565b611bdd565b6103aa610688366004614a5b565b611c29565b6103fc611cc6565b61069d611ce1565b6040516103529190614a85565b600254610473565b6103aa6106c0366004614788565b61212a565b6103fc61222b565b6103aa6106db366004614928565b61224a565b6103aa6106ee366004614b8e565b6124c0565b6103aa610701366004614bd6565b6124c9565b6104735f8051602061575583398151915281565b6104737fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6103aa61074f366004614788565b612566565b61033e610762366004614c14565b612662565b61077a610775366004614c84565b612961565b6040805161ffff909316835264ffffffffff909116602083015201610352565b6103aa612c32565b5f6107ab6118db565b60200151905090565b6107c0335b5f36612ca6565b6003836040516107d09190614cb7565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf91610826916001600160c01b031960c09290921b91909116906004016147b9565b602060405180830381865af4158015610841573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108659190614cd1565b1561088e57826040516316add56760e21b81526004016108859190614776565b60405180910390fd5b61090c8173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156108d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108fd9190614cf5565b64ffffffffff90811691161090565b1561092a576040516374775ddb60e11b815260040160405180910390fd5b5f8481526004602081905260409182902060010154915163790a38ad60e01b815261010090920464ffffffffff169082015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015610996573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ba9190614cd1565b6109d757604051636ec7628b60e11b815260040160405180910390fd5b6040805160608101825284815260ff841660208083019190915264ffffffffff8416828401525f87815260049091529190912081518190610a189082614d8c565b5060208201516001909101805460409093015164ffffffffff166101000265ffffffffffff1990931660ff9092169190911791909117905550505050565b610a5f336107b9565b610a67611775565b6001600160a01b0316336001600160a01b031614610a9a5760405163086391f760e31b8152336004820152602401610885565b610aa381612da4565b50565b604080516060808201835281525f60208201819052918101919091525f8281526004602052604090819020815160608101909252805482908290610ae990614d10565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1590614d10565b8015610b605780601f10610b3757610100808354040283529160200191610b60565b820191905f5260205f20905b815481529060010190602001808311610b4357829003601f168201915b50505091835250506001919091015460ff81166020830152610100900464ffffffffff1660409091015292915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c649190614e51565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610cac611775565b6001600160a01b03168152602001826001018054610cc990614d10565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf590614d10565b8015610d405780601f10610d1757610100808354040283529160200191610d40565b820191905f5260205f20905b815481529060010190602001808311610d2357829003601f168201915b505050505081525091505090565b5f610d576118db565b60800151905090565b5f610d6a30612e15565b905090565b6060610d796118db565b51919050565b610d87611775565b6001600160a01b0316336001600160a01b031614610dba5760405163086391f760e31b8152336004820152602401610885565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68055460408051636fec97c560e11b815290516001600160a01b039092169163dfd92f8a916004808201925f9290919082900301818387803b158015610e1d575f80fd5b505af1158015610e2f573d5f803e3d5ffd5b50505050610e3d5f1961300e565b565b5f610e48611775565b6001600160a01b0316336001600160a01b031614610e7b5760405163086391f760e31b8152336004820152602401610885565b610e84336107b9565b610e8d8261309f565b90505b919050565b5f610e9e6118db565b60400151905090565b5f610eba6001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610efe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f229190614e51565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610f79573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d6a9190614cd1565b5f600382604051610fae9190614cb7565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf91611004916001600160c01b031960c09290921b91909116906004016147b9565b602060405180830381865af415801561101f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110439190614cd1565b611070576003826040516110579190614cb7565b9081526040519081900360200190205460c01b92915050565b600280546001810182555f919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace016110ab8382614d8c565b5060405163253a42dd60e11b815273__$32e9ecefef68cb354d118e0496fdd3f4bc$__90634a7485ba906110e3908590600401614776565b602060405180830381865af41580156110fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111229190614e77565b905061113c8160405180602001604052805f815250613123565b8060038360405161114d9190614cb7565b908152604051908190036020019020805460c09290921c67ffffffffffffffff19909216919091179055919050565b611184611775565b6001600160a01b0316336001600160a01b0316146111b75760405163086391f760e31b8152336004820152602401610885565b306111c0610d4e565b6001600160a01b0316146111e75760405163b6d7537f60e01b815260040160405180910390fd5b7ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e61121061133c565b604080516001600160a01b0390921682526001600160601b03841660208301520160405180910390a1816001600160a01b031663095ea7b361125061133c565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af41580156112a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112ca9190614e92565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044015b6020604051808303815f875af1158015611313573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113379190614cd1565b505050565b5f6113456118db565b60600151905090565b60606002828154811061136357611363614ea9565b905f5260205f2001805461137690614d10565b80601f01602080910402602001604051908101604052809291908181526020018280546113a290614d10565b80156113ed5780601f106113c4576101008083540402835291602001916113ed565b820191905f5260205f20905b8154815290600101906020018083116113d057829003601f168201915b50505050509050919050565b5f805f80516020615755833981519152600401546001600160a01b031663f4bfe53a61142361154f565b898b8a8a8a8a6040518863ffffffff1660e01b815260040161144b9796959493929190614ebd565b61024060405180830381865afa158015611467573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061148b9190614f3a565b60a0015198975050505050505050565b5f6114a4610ea7565b1561151f576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa1580156114f8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526113459190810190615101565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b5f805160206156f5833981519152546001600160601b031690565b5f611574336107b9565b335f61157f87610f9d565b90505f61160387838860405180602001604052805f8152508973__$05887d5853069c88bcd4c0a2107db45f29$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156115df573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105019190614e77565b905061168d838389848a8a73__$05887d5853069c88bcd4c0a2107db45f29$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611655573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116799190614e77565b60405180602001604052805f815250613181565b98975050505050505050565b336116a2611cc6565b6001600160a01b0316816001600160a01b0316146116dd5760405162d1953b60e31b81526001600160a01b0382166004820152602401610885565b816001600160a01b03163b5f03611712576040516361798f2f60e11b81526001600160a01b0383166004820152602401610885565b61171b8261322b565b5050565b5f611729336107b9565b611731611775565b6001600160a01b0316336001600160a01b0316146117645760405163086391f760e31b8152336004820152602401610885565b61176e838361328b565b9392505050565b5f805f805160206156f583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156117e1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118059190614cd1565b15611890576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611866573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061188a91906151d1565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061571583398151915280545f9190600160a01b900460ff166118cd575f61188a565b638fb3603760e01b91505090565b6118e36143bd565b6118eb610ea7565b156118f857610d6a61331c565b610d6a611b6e565b611909336107b9565b611911611775565b6001600160a01b0316336001600160a01b0316146119445760405163086391f760e31b8152336004820152602401610885565b610aa3816134c9565b611955611775565b6001600160a01b0316336001600160a01b0316146119885760405163086391f760e31b8152336004820152602401610885565b611992600a61350e565b60405163581e954760e11b81525f60048201526001600160a01b03919091169063b03d2a8e906024015b5f604051808303815f87803b1580156119d3575f80fd5b505af11580156119e5573d5f803e3d5ffd5b50505050565b5f806003866040516119fd9190614cb7565b90815260405190819003602001812054637bc32ecf60e01b825260c01b915073__$32e9ecefef68cb354d118e0496fdd3f4bc$__90637bc32ecf90611a50906001600160c01b03198516906004016147b9565b602060405180830381865af4158015611a6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a8f9190614cd1565b15611aaf57856040516316add56760e21b81526004016108859190614776565b611b0c85828660405180602001604052805f8152508773__$05887d5853069c88bcd4c0a2107db45f29$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156115df573d5f803e3d5ffd5b9695505050505050565b611b1f336107b9565b611b27611775565b6001600160a01b0316336001600160a01b031614611b5a5760405163086391f760e31b8152336004820152602401610885565b611b64828261360f565b61171b8282613661565b611b766143bd565b610d6a61331c565b611b86611775565b6001600160a01b0316336001600160a01b031614611bb95760405163086391f760e31b8152336004820152602401610885565b611bc2336107b9565b61171b82826136b3565b5f6003826040516110579190614cb7565b611be5611775565b6001600160a01b0316336001600160a01b031614611c185760405163086391f760e31b8152336004820152602401610885565b610aa3611c23610e95565b8261117c565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c9491906151d1565b6001600160a01b0316336001600160a01b03161461171b5760405162f0630960e01b8152336004820152602401610885565b5f80516020615715833981519152546001600160a01b031690565b611d9860408051610140810182525f80825260208083018290528284018290528351808501855282815280820183905260608401528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e08401528351808501855282815280820183905261010084015283518085019094528184528301529061012082015290565b60408051610140810182527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d6806546001600160601b0390811682527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680554600160a01b90041660208201525f81830152815163bc1b392d60e01b815282515f8051602061575583398151915293606084019273__$58e11c6004c5796aaa8c56e718245e69a2$__9263bc1b392d926004808401939192918290030181865af4158015611e64573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e8891906151ec565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af4158015611ed3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ef791906151ec565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af4158015611f42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f6691906151ec565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af4158015611fb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fd591906151ec565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af4158015612020573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061204491906151ec565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af415801561208f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120b391906151ec565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af41580156120fe573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061212291906151ec565b905292915050565b612133336107b9565b6003816040516121439190614cb7565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf91612199916001600160c01b031960c09290921b91909116906004016147b9565b602060405180830381865af41580156121b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121d89190614cd1565b156121f857806040516316add56760e21b81526004016108859190614776565b610aa360038260405161220b9190614cb7565b9081526040519081900360200190205460c01b612226606e90565b613704565b5f5f805160206157758339815191525b546001600160a01b0316919050565b612252611775565b6001600160a01b0316336001600160a01b0316146122855760405163086391f760e31b8152336004820152602401610885565b5f61228e610d4e565b90505f612299610e95565b6040516370a0823160e01b81526001600160a01b03848116600483015291909116906370a0823190602401602060405180830381865afa1580156122df573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123039190614e92565b905061230e8361374d565b801561133757604080516001600160a01b038085168252851660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a1306001600160a01b0383160361246f5761237761133c565b6001600160a01b03166354f0d84c838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b81526004016123c091815260200190565b602060405180830381865af41580156123db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123ff9190614e51565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526001600160601b031660448201526064015f604051808303815f87803b158015612454575f80fd5b505af1158015612466573d5f803e3d5ffd5b50505050505050565b61247761133c565b6001600160a01b031663c7d63d57838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b81526004016123c091815260200190565b611337336107b9565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612510573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061253491906151d1565b6001600160a01b0316336001600160a01b0316146113375760405162f0630960e01b8152336004820152602401610885565b61256f336107b9565b60038160405161257f9190614cb7565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf916125d5916001600160c01b031960c09290921b91909116906004016147b9565b602060405180830381865af41580156125f0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126149190614cd1565b1561263457806040516316add56760e21b81526004016108859190614776565b610aa36003826040516126479190614cb7565b9081526040519081900360200190205460c01b612226600490565b604051633682752160e21b815264ffffffffff831660048201525f90819073__$bf7bc340cbb9229ef1de2c568356e67902$__906345ebb61e90620151809073__$71e292c09eace9601b3e21e68a1278917a$__9063da09d48490602401602060405180830381865af41580156126db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126ff9190614e92565b6127099190615231565b6040518263ffffffff1660e01b815260040161272791815260200190565b602060405180830381865af4158015612742573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127669190614e92565b90505f6127ec8273__$bf7bc340cbb9229ef1de2c568356e67902$__6345ebb61e6101686040518263ffffffff1660e01b81526004016127a891815260200190565b602060405180830381865af41580156127c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127e79190614e92565b6137c2565b60405163046e44af60e11b81526001600160601b03891660048201529091505f9073__$3bac17678db7ae928afa209f2f44deec9c$__90634c41dd969060149083906308dc895e90602401602060405180830381865af4158015612852573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128769190614e92565b6128809190615231565b6040518263ffffffff1660e01b815260040161289e91815260200190565b602060405180830381865af41580156128b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128dd9190614e51565b604051632c34efe560e11b81526001600160601b03821660048201526024810184905290915073__$3bac17678db7ae928afa209f2f44deec9c$__90635869dfca90604401602060405180830381865af415801561293d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061168d9190614e51565b5f8061296c336107b9565b8361297f6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156129cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129f091906151d1565b6001600160a01b0316336001600160a01b031614612a235760405163086391f760e31b8152336004820152602401610885565b5f612a2c6137f6565b60405163bd7d9d8560e01b81526001600160601b03881660048201526001600160a01b03919091169063bd7d9d85906024015f60405180830381865afa158015612a78573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a9f919081019061525b565b9050612aac868683613824565b5f85815260046020526040808220815160608101909252805482908290612ad290614d10565b80601f0160208091040260200160405190810160405280929190818152602001828054612afe90614d10565b8015612b495780601f10612b2057610100808354040283529160200191612b49565b820191905f5260205f20905b815481529060010190602001808311612b2c57829003601f168201915b505050918352505060019182015460ff811660208084019190915261010090910464ffffffffff166040928301525f8a8152600582528281206001600160601b038d1682528252918220805460ff191690931790925560808501519183015192935091612bb7918a91613b91565b9050612be5888289604051602001612bd191815260200190565b604051602081830303815290604052613cca565b9550612c0188878360405180602001604052805f815250613d52565b612c1b88878360405180602001604052805f815250613dc7565b9450612c278886613e52565b505050509250929050565b612c3a611775565b6001600160a01b0316336001600160a01b031614612c6d5760405163086391f760e31b8152336004820152602401610885565b612c77600a61350e565b60405163581e954760e11b8152600160048201526001600160a01b03919091169063b03d2a8e906024016119bc565b5f805160206157158339815191525f80612cde612cc1611cc6565b8730612cd060045f8a8c6153ee565b612cd991615415565b613ea4565b9150915081612d9c5763ffffffff811615612d7957825460ff60a01b1916600160a01b178355612d0c611cc6565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612d3b9392919061544b565b5f604051808303815f87803b158015612d52575f80fd5b505af1158015612d64573d5f803e3d5ffd5b5050845460ff60a01b1916855550612d9c9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610885565b505050505050565b5f8051602061579583398151915254604051630155751d60e31b81526001600160601b03831660048201526001600160a01b0390911690630aaba8e8906024015b5f604051808303815f87803b158015612dfc575f80fd5b505af1158015612e0e573d5f803e3d5ffd5b5050505050565b5f805f805160206156f583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ea59190614cd1565b15612ed15780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610885565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612f23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f479190614cd1565b612f6f5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610885565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612fc1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fe59190614e51565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f01547fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00906001600160a01b031663095ea7b36130686118db565b606001516040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018590526044016112f7565b5f5f80516020615775833981519152600301546040516301c6b21960e41b81526001600160601b03841660048201526001600160a01b0390911690631c6b2190906024016020604051808303815f875af11580156130ff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8d9190614e51565b61312b613fac565b6001600160a01b031663095e2b7283836040518363ffffffff1660e01b815260040161315892919061548a565b5f604051808303815f87803b15801561316f575f80fd5b505af1158015612d9c573d5f803e3d5ffd5b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680154604051639a83274160e01b81525f916001600160a01b031690639a832741906131de908c908c908c908c908c908c908c908c906004016154ae565b6020604051808303815f875af11580156131fa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061321e9190614e51565b9998505050505050505050565b5f8051602061571583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f5f8051602061575583398151915260020154604051637baa9a0b60e01b81526001600160601b038516600482015264ffffffffff841660248201526001600160a01b0390911690637baa9a0b906044016020604051808303815f875af11580156132f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061176e9190614cf5565b6133246143bd565b5f6133376001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa15801561337b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061339f9190614e51565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156133f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061341c9190614cd1565b156134c1576134296137f6565b6001600160a01b031663f0ea17c361343f61154f565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015613480573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526134a79190810190615524565b60808101519092506001600160a01b0316156134c1575090565b61188a613fc0565b5f8051602061579583398151915254604051639ffcede960e01b81526001600160601b03831660048201526001600160a01b0390911690639ffcede990602401612de5565b5f805f805160206157758339815191525460408051633379d27d60e21b815290516001600160a01b039092169163cde749f4916004808201926020929091908290030181865afa158015613564573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061358891906155fc565b905061359c6001546001600160a01b031690565b60405163d39e604360e01b815260ff8086166004830152831660248201526001600160a01b03919091169063d39e604390604401602060405180830381865afa1580156135eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061176e91906151d1565b5f805160206157958339815191525460405163552d72d560e11b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b039091169063aa5ae5aa90604401613158565b5f8051602061579583398151915254604051635dfddfdd60e11b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b039091169063bbfbbfba90604401613158565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68055460405163067ba1c160e41b81526001600160a01b03909116906367ba1c10906131589085908590600401615617565b61370c613fac565b604051633e77a42160e11b81526001600160c01b03198416600482015260ff831660248201526001600160a01b039190911690637cef484290604401613158565b613755611775565b6001600160a01b0316336001600160a01b0316146137885760405163086391f760e31b8152336004820152602401610885565b613792600b61350e565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df90602401612de5565b5f815f036137e357604051630f6c8fc360e21b815260040160405180910390fd5b61176e83670de0b6b3a764000084614137565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031690565b5f8281526004602081905260409182902060010154915163790a38ad60e01b815261010090920464ffffffffff169082015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015613890573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138b49190614cd1565b156138d5576040516395b47f7b60e01b815260048101839052602401610885565b5f8281526005602090815260408083206001600160601b038716845290915290205460ff161561391857604051639758dd1d60e01b815260040160405180910390fd5b5f6139216137f6565b604051639096a1f360e01b81526001600160601b03861660048201526001600160a01b039190911690639096a1f390602401602060405180830381865afa15801561396e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061399291906155fc565b905073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__632c2f8a6760ff831660286040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156139f7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a1b9190614cd1565b613a385760405163aa462ceb60e01b815260040160405180910390fd5b5f83815260046020526040808220815160608101909252805482908290613a5e90614d10565b80601f0160208091040260200160405190810160405280929190818152602001828054613a8a90614d10565b8015613ad55780601f10613aac57610100808354040283529160200191613ad5565b820191905f5260205f20905b815481529060010190602001808311613ab857829003601f168201915b50505091835250506001919091015460ff81166020830152610100900464ffffffffff166040918201528101516101a0850151919250613b1e9164ffffffffff90811691161090565b15613b4c576101a0830151604051634a1dee2f60e11b815264ffffffffff9091166004820152602401610885565b60408101516101c084015164ffffffffff90811691161115612e0e576101c083015160405163725802a760e11b815264ffffffffff9091166004820152602401610885565b5f8073__$3bac17678db7ae928afa209f2f44deec9c$__635869dfca6001600160601b038616613bc0866141f4565b6040516001600160e01b031960e085901b1681526001600160601b0390921660048301526024820152604401602060405180830381865af4158015613c07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c2b9190614e51565b90505f613c366137f6565b604051630160668360e51b81526001600160601b03881660048201526001600160a01b039190911690632c0cd06090602401602060405180830381865afa158015613c83573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ca79190614e51565b9050613cb38183614339565b15613cc157915061176e9050565b50949350505050565b5f80516020615735833981519152546040516374b775eb60e01b81525f916001600160a01b0316906374b775eb90613d0a9087908790879060040161563d565b6020604051808303815f875af1158015613d26573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d4a919061566d565b949350505050565b5f8051602061573583398151915254604051636e2cdce760e01b81526001600160a01b0390911690636e2cdce790613d94908790879087908790600401615688565b5f604051808303815f87803b158015613dab575f80fd5b505af1158015613dbd573d5f803e3d5ffd5b5050505050505050565b5f8051602061573583398151915254604051631e2992c760e11b81525f916001600160a01b031690633c53258e90613e09908890889088908890600401615688565b6020604051808303815f875af1158015613e25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e499190614cf5565b95945050505050565b5f805160206157358339815191525460405163137a92a760e01b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b039091169063137a92a790604401613158565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613f129190614cb7565b5f60405180830381855afa9150503d805f8114613f4a576040519150601f19603f3d011682016040523d82523d5f602084013e613f4f565b606091505b50915091508115613fa1576040815110613f815780806020019051810190613f7791906156c2565b9094509250613fa1565b6020815110613fa15780806020019051810190613f9e9190614cd1565b93505b505094509492505050565b5f5f8051602061575583398151915261223b565b613fc86143bd565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060c00160405280825f01805461400590614d10565b80601f016020809104026020016040519081016040528092919081815260200182805461403190614d10565b801561407c5780601f106140535761010080835404028352916020019161407c565b820191905f5260205f20905b81548152906001019060200180831161405f57829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156140cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140f19190614e51565b6001600160601b0316815260018301546001600160a01b0390811660208301525f60408301526002840154166060820152600383018054608090920191610cc990614d10565b5f80805f19858709858702925082811083820303915050805f0361416e578382816141645761416461521d565b049250505061176e565b80841161418d57604051629540d960e61b815260040160405180910390fd5b5f8486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091025f889003889004909101858311909403939093029303949094049190911702949350505050565b5f61420660015b60ff84811691161490565b1561428657604051631488c84560e01b815260196004820152600119602482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90631488c845906044015b602060405180830381865af4158015614262573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8d9190614e92565b61429060026141fb565b156142d457604051631488c84560e01b8152600560048201525f19602482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90631488c84590604401614247565b6142de60036141fb565b1561431b576040516322f5db0f60e11b81526001600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__906345ebb61e90602401614247565b6040516363d977df60e01b815260ff83166004820152602401610885565b6040516304d40eb160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906309a81d6290604401602060405180830381865af4158015614399573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061176e9190614cd1565b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f60208284031215614423575f80fd5b81356001600160e01b03198116811461176e575f80fd5b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156144705761447061443a565b60405290565b60405161024081016001600160401b03811182821017156144705761447061443a565b60405160e081016001600160401b03811182821017156144705761447061443a565b60405161020081016001600160401b03811182821017156144705761447061443a565b60405160c081016001600160401b03811182821017156144705761447061443a565b604051601f8201601f191681016001600160401b03811182821017156145285761452861443a565b604052919050565b5f6001600160401b038211156145485761454861443a565b50601f01601f191660200190565b5f82601f830112614565575f80fd5b8135602083015f61457d61457884614530565b614500565b9050828152858383011115614590575f80fd5b828260208301375f92810160200192909252509392505050565b60ff81168114610aa3575f80fd5b64ffffffffff81168114610aa3575f80fd5b5f805f80608085870312156145dd575f80fd5b8435935060208501356001600160401b038111156145f9575f80fd5b61460587828801614556565b9350506040850135614616816145aa565b91506060850135614626816145b8565b939692955090935050565b6001600160601b0381168114610aa3575f80fd5b5f60208284031215614655575f80fd5b813561176e81614631565b5f60208284031215614670575f80fd5b5035919050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f8251606060208401526146c06080840182614677565b905060ff602085015116604084015264ffffffffff60408501511660608401528091505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614732608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152613d4a610100840182614677565b602081525f61176e6020830184614677565b5f60208284031215614798575f80fd5b81356001600160401b038111156147ad575f80fd5b613d4a84828501614556565b6001600160c01b031991909116815260200190565b6001600160a01b0381168114610aa3575f80fd5b5f80604083850312156147f3575f80fd5b82356147fe816147ce565b9150602083013561480e81614631565b809150509250929050565b6001600160c01b031981168114610aa3575f80fd5b5f805f805f8060c08789031215614843575f80fd5b863561484e81614631565b9550602087013561485e81614819565b9450604087013561486e816145b8565b935060608701356001600160401b03811115614888575f80fd5b61489489828a01614556565b93505060808701356148a581614631565b915060a08701356148b581614819565b809150509295509295509295565b5f805f80608085870312156148d6575f80fd5b84356001600160401b038111156148eb575f80fd5b6148f787828801614556565b945050602085013561490881614631565b92506040850135614918816145b8565b9150606085013561462681614631565b5f60208284031215614938575f80fd5b813561176e816147ce565b5f8060408385031215614954575f80fd5b823561495f81614631565b9150602083013561480e816145b8565b602081525f825160c0602084015261498a60e0840182614677565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b03606085015116608084015260808401516149dd60a08501826001600160a01b03169052565b5060a0840151838203601f190160c0850152613e498282614677565b5f60408284031215614a09575f80fd5b614a1161444e565b823581526020928301359281019290925250919050565b5f8060808385031215614a39575f80fd5b614a4384846149f9565b9150614a5284604085016149f9565b90509250929050565b5f8060408385031215614a6c575f80fd5b8235614a77816147ce565b946020939093013593505050565b81516001600160601b0316815261022081016020830151614ab160208401826001600160601b03169052565b506040830151614ac5604084018215159052565b506060830151614ae2606084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151805161012084015260208101516101408401525060e0830151805161016084015260208101516101808401525061010083015180516101a084015260208101516101c08401525061012083015180516101e084015260208101516102008401525b5092915050565b61ffff81168114610aa3575f80fd5b5f805f60608486031215614ba0575f80fd5b8335614bab81614631565b92506020840135614bbb81614b7f565b91506040840135614bcb81614631565b809150509250925092565b5f805f60608486031215614be8575f80fd5b8335614bf3816147ce565b92506020840135614c03816147ce565b929592945050506040919091013590565b5f805f8060808587031215614c27575f80fd5b8435614c3281614631565b93506020850135614c4281614819565b92506040850135614c52816145b8565b915060608501356001600160401b03811115614c6c575f80fd5b614c7887828801614556565b91505092959194509250565b5f8060408385031215614c95575f80fd5b8235614a7781614631565b5f81518060208401855e5f93019283525090919050565b5f61176e8284614ca0565b80518015158114610e90575f80fd5b5f60208284031215614ce1575f80fd5b61176e82614cc2565b8051610e90816145b8565b5f60208284031215614d05575f80fd5b815161176e816145b8565b600181811c90821680614d2457607f821691505b602082108103614d4257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561133757805f5260205f20601f840160051c81016020851015614d6d5750805b601f840160051c820191505b81811015612e0e575f8155600101614d79565b81516001600160401b03811115614da557614da561443a565b614db981614db38454614d10565b84614d48565b6020601f821160018114614deb575f8315614dd45750848201515b5f19600385901b1c1916600184901b178455612e0e565b5f84815260208120601f198516915b82811015614e1a5787850151825560209485019460019092019101614dfa565b5084821015614e3757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8051610e9081614631565b5f60208284031215614e61575f80fd5b815161176e81614631565b8051610e9081614819565b5f60208284031215614e87575f80fd5b815161176e81614819565b5f60208284031215614ea2575f80fd5b5051919050565b634e487b7160e01b5f52603260045260245ffd5b6001600160601b03881681526001600160401b0360c01b871660208201526001600160601b038616604082015264ffffffffff8516606082015260e060808201525f614f0c60e0830186614677565b6001600160601b039490941660a0830152506001600160c01b03199190911660c09091015295945050505050565b5f610240828403128015614f4c575f80fd5b50614f55614476565b614f5e83614e46565b8152614f6c60208401614e46565b6020820152614f7d60408401614e46565b6040820152614f8e60608401614e46565b6060820152614f9f60808401614e46565b6080820152614fb060a08401614e46565b60a0820152614fc160c08401614e46565b60c0820152614fd260e08401614e46565b60e0820152614fe46101008401614e46565b610100820152614ff76101208401614e46565b61012082015261500a6101408401614e46565b61014082015261501d6101608401614e46565b6101608201526150306101808401614e46565b6101808201526150436101a08401614e46565b6101a08201526150566101c08401614e46565b6101c08201526150696101e08401614e46565b6101e082015261507c6102008401614e46565b61020082015261508f6102208401614e46565b6102208201529392505050565b8051610e90816145aa565b8051610e90816147ce565b5f82601f8301126150c1575f80fd5b8151602083015f6150d461457884614530565b90508281528583830111156150e7575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215615111575f80fd5b81516001600160401b03811115615126575f80fd5b820160e08185031215615137575f80fd5b61513f614499565b61514882614e46565b815261515660208301614e46565b60208201526151676040830161509c565b604082015261517860608301614cc2565b6060820152615189608083016150a7565b608082015261519a60a083016150a7565b60a082015260c08201516001600160401b038111156151b7575f80fd5b6151c3868285016150b2565b60c083015250949350505050565b5f602082840312156151e1575f80fd5b815161176e816147ce565b5f60408284031280156151fd575f80fd5b5061520661444e565b825181526020928301519281019290925250919050565b634e487b7160e01b5f52601260045260245ffd5b5f8261524b57634e487b7160e01b5f52601260045260245ffd5b500490565b8051610e9081614b7f565b5f6020828403121561526b575f80fd5b81516001600160401b03811115615280575f80fd5b82016102008185031215615292575f80fd5b61529a6144bb565b6152a382614e46565b81526152b160208301614e46565b60208201526152c260408301614e6c565b60408201526152d360608301614e6c565b60608201526152e460808301614e46565b60808201526152f560a08301614e46565b60a082015261530660c08301614cea565b60c082015260e08201516001600160401b03811115615323575f80fd5b61532f868285016150b2565b60e0830152506101008201516001600160401b0381111561534e575f80fd5b61535a868285016150b2565b6101008301525061536e6101208301615250565b6101208201526153816101408301615250565b6101408201526153946101608301614e46565b6101608201526153a76101808301614e46565b6101808201526153ba6101a08301614cea565b6101a08201526153cd6101c08301614cea565b6101c08201526153e06101e08301614cea565b6101e0820152949350505050565b5f80858511156153fc575f80fd5b83861115615408575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015614b78576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b6001600160401b0360c01b83168152604060208201525f613d4a6040830184614677565b6001600160a01b03891681526001600160c01b031988811660208301526001600160601b038881166040840152878116606084015264ffffffffff87166080840152851660a0830152831660c082015261010060e082018190525f9061551690830184614677565b9a9950505050505050505050565b5f60208284031215615534575f80fd5b81516001600160401b03811115615549575f80fd5b820160c0818503121561555a575f80fd5b6155626144de565b81516001600160401b03811115615577575f80fd5b615583868285016150b2565b82525061559260208301614e46565b60208201526155a3604083016150a7565b60408201526155b4606083016150a7565b60608201526155c5608083016150a7565b608082015260a08201516001600160401b038111156155e2575f80fd5b6155ee868285016150b2565b60a083015250949350505050565b5f6020828403121561560c575f80fd5b815161176e816145aa565b82518152602080840151818301528251604083015282015160608201526080810161176e565b6001600160601b03841681526001600160601b0383166020820152606060408201525f613e496060830184614677565b5f6020828403121561567d575f80fd5b815161176e81614b7f565b6001600160601b038516815261ffff841660208201526001600160601b0383166040820152608060608201525f611b0c6080830184614677565b5f80604083850312156156d3575f80fd5b6156dc83614cc2565b9150602083015163ffffffff8116811461480e575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a000bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68030bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d6800ffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f000bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d6802a2646970667358221220ccbc9502084d32a57bd6aad4c2e264aaad96a0d0eec47ce9d5b108fc312a2f4f64736f6c634300081a0033",
|
1557
|
+
"deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610332575f3560e01c8063893d20e8116101af578063bf7e214f116100fe578063e7f7fb861161009e578063eb0df31911610079578063eb0df31914610741578063f179d06414610754578063f29d9cd814610767578063f83d08ba1461079a575f80fd5b8063e7f7fb86146106f3578063e9b2460c14610706578063ea15869f1461071a575f80fd5b8063d8fb2577116100d9578063d8fb2577146106b2578063de7b5d14146106c5578063deaa59df146106cd578063e1f216fa146106e0575f80fd5b8063bf7e214f1461068d578063c108bd4c14610695578063c9d87e69146106aa575f80fd5b8063aa5ae5aa11610169578063b6b412ba11610144578063b6b412ba14610641578063b8bc787e14610654578063bae99c9914610667578063bb1e0e591461067a575f80fd5b8063aa5ae5aa14610612578063ada9652e14610625578063b423086c14610639575f80fd5b8063893d20e8146105a65780638fb36037146105ae57806390edbd35146105cf5780639ffcede9146105e4578063a69df4b5146105f7578063a7407c71146105ff575f80fd5b806322366844116102855780635741e5e91161022557806364854f9b1161020057806364854f9b146105275780636bd1c0eb1461053a5780637a9e5e4b1461056a5780637baa9a0b1461057d575f80fd5b80635741e5e9146105065780635ab1bd531461050e578063644c45e01461051f575f80fd5b8063419197fe11610260578063419197fe146104c557806343d752d3146104d85780634545177f146104e05780635349d2a8146104f3575f80fd5b806322366844146104895780632eb3e6f414610491578063330234fc146104a5575f80fd5b806313299604116102f05780631aa3a008116102cb5780631aa3a008146104315780631c6b2190146104395780631eff4b221461044c57806321df0da714610481575f80fd5b806313299604146103f4578063138461e01461041457806317d7de7c1461041c575f80fd5b806251884a1461033657806301ffc9a71461035b578063034dac63146103975780630aaba8e8146103ac5780630bb9b257146103bf5780630fec111c146103df575b5f80fd5b61033e6107a2565b6040516001600160601b0390911681526020015b60405180910390f35b610387610369366004614413565b6001600160e01b0319165f9081526020819052604090205460ff1690565b6040519015158152602001610352565b6103aa6103a53660046145ca565b6107b4565b005b6103aa6103ba366004614645565b610a56565b6103d26103cd366004614660565b610aa6565b60405161035291906146a5565b6103e7610b90565b60405161035291906146ea565b6103fc610d4e565b6040516001600160a01b039091168152602001610352565b61033e610d60565b610424610d6f565b6040516103529190614776565b6103aa610d7f565b61033e610447366004614645565b610e3f565b6104737f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610352565b6103fc610e95565b610387610ea7565b6104735f8051602061577583398151915281565b6104b86104b3366004614788565b610f9d565b60405161035291906147b9565b6103aa6104d33660046147e2565b61117c565b6103fc61133c565b6104246104ee366004614660565b61134e565b61033e61050136600461482e565b6113f9565b61038761149b565b6001546001600160a01b03166103fc565b61033e61154f565b61033e6105353660046148c3565b61156a565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b03166103fc565b6103aa610578366004614928565b611699565b61059061058b366004614943565b61171f565b60405164ffffffffff9091168152602001610352565b6103fc611775565b6105b66118a6565b6040516001600160e01b03199091168152602001610352565b6105d76118db565b604051610352919061496f565b6103aa6105f2366004614645565b611900565b6103aa61194d565b61033e61060d3660046148c3565b6119eb565b6103aa610620366004614943565b611b16565b6104735f805160206156f583398151915281565b6105d7611b6e565b6103aa61064f366004614a28565b611b7e565b6104b8610662366004614788565b611bcc565b6103aa610675366004614645565b611bdd565b6103aa610688366004614a5b565b611c29565b6103fc611cc6565b61069d611ce1565b6040516103529190614a85565b600254610473565b6103aa6106c0366004614788565b61212a565b6103fc61222b565b6103aa6106db366004614928565b61224a565b6103aa6106ee366004614b8e565b6124c0565b6103aa610701366004614bd6565b6124c9565b6104735f8051602061575583398151915281565b6104737fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6103aa61074f366004614788565b612566565b61033e610762366004614c14565b612662565b61077a610775366004614c84565b612961565b6040805161ffff909316835264ffffffffff909116602083015201610352565b6103aa612c32565b5f6107ab6118db565b60200151905090565b6107c0335b5f36612ca6565b6003836040516107d09190614cb7565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf91610826916001600160c01b031960c09290921b91909116906004016147b9565b602060405180830381865af4158015610841573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108659190614cd1565b1561088e57826040516316add56760e21b81526004016108859190614776565b60405180910390fd5b61090c8173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156108d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108fd9190614cf5565b64ffffffffff90811691161090565b1561092a576040516374775ddb60e11b815260040160405180910390fd5b5f8481526004602081905260409182902060010154915163790a38ad60e01b815261010090920464ffffffffff169082015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015610996573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ba9190614cd1565b6109d757604051636ec7628b60e11b815260040160405180910390fd5b6040805160608101825284815260ff841660208083019190915264ffffffffff8416828401525f87815260049091529190912081518190610a189082614d8c565b5060208201516001909101805460409093015164ffffffffff166101000265ffffffffffff1990931660ff9092169190911791909117905550505050565b610a5f336107b9565b610a67611775565b6001600160a01b0316336001600160a01b031614610a9a5760405163086391f760e31b8152336004820152602401610885565b610aa381612da4565b50565b604080516060808201835281525f60208201819052918101919091525f8281526004602052604090819020815160608101909252805482908290610ae990614d10565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1590614d10565b8015610b605780601f10610b3757610100808354040283529160200191610b60565b820191905f5260205f20905b815481529060010190602001808311610b4357829003601f168201915b50505091835250506001919091015460ff81166020830152610100900464ffffffffff1660409091015292915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c649190614e51565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610cac611775565b6001600160a01b03168152602001826001018054610cc990614d10565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf590614d10565b8015610d405780601f10610d1757610100808354040283529160200191610d40565b820191905f5260205f20905b815481529060010190602001808311610d2357829003601f168201915b505050505081525091505090565b5f610d576118db565b60800151905090565b5f610d6a30612e15565b905090565b6060610d796118db565b51919050565b610d87611775565b6001600160a01b0316336001600160a01b031614610dba5760405163086391f760e31b8152336004820152602401610885565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68055460408051636fec97c560e11b815290516001600160a01b039092169163dfd92f8a916004808201925f9290919082900301818387803b158015610e1d575f80fd5b505af1158015610e2f573d5f803e3d5ffd5b50505050610e3d5f1961300e565b565b5f610e48611775565b6001600160a01b0316336001600160a01b031614610e7b5760405163086391f760e31b8152336004820152602401610885565b610e84336107b9565b610e8d8261309f565b90505b919050565b5f610e9e6118db565b60400151905090565b5f610eba6001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610efe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f229190614e51565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610f79573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d6a9190614cd1565b5f600382604051610fae9190614cb7565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf91611004916001600160c01b031960c09290921b91909116906004016147b9565b602060405180830381865af415801561101f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110439190614cd1565b611070576003826040516110579190614cb7565b9081526040519081900360200190205460c01b92915050565b600280546001810182555f919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace016110ab8382614d8c565b5060405163253a42dd60e11b815273__$32e9ecefef68cb354d118e0496fdd3f4bc$__90634a7485ba906110e3908590600401614776565b602060405180830381865af41580156110fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111229190614e77565b905061113c8160405180602001604052805f815250613123565b8060038360405161114d9190614cb7565b908152604051908190036020019020805460c09290921c67ffffffffffffffff19909216919091179055919050565b611184611775565b6001600160a01b0316336001600160a01b0316146111b75760405163086391f760e31b8152336004820152602401610885565b306111c0610d4e565b6001600160a01b0316146111e75760405163b6d7537f60e01b815260040160405180910390fd5b7ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e61121061133c565b604080516001600160a01b0390921682526001600160601b03841660208301520160405180910390a1816001600160a01b031663095ea7b361125061133c565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af41580156112a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112ca9190614e92565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044015b6020604051808303815f875af1158015611313573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113379190614cd1565b505050565b5f6113456118db565b60600151905090565b60606002828154811061136357611363614ea9565b905f5260205f2001805461137690614d10565b80601f01602080910402602001604051908101604052809291908181526020018280546113a290614d10565b80156113ed5780601f106113c4576101008083540402835291602001916113ed565b820191905f5260205f20905b8154815290600101906020018083116113d057829003601f168201915b50505050509050919050565b5f805f80516020615755833981519152600401546001600160a01b031663f4bfe53a61142361154f565b898b8a8a8a8a6040518863ffffffff1660e01b815260040161144b9796959493929190614ebd565b61024060405180830381865afa158015611467573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061148b9190614f3a565b60a0015198975050505050505050565b5f6114a4610ea7565b1561151f576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa1580156114f8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526113459190810190615101565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b5f805160206156f5833981519152546001600160601b031690565b5f611574336107b9565b335f61157f87610f9d565b90505f61160387838860405180602001604052805f8152508973__$05887d5853069c88bcd4c0a2107db45f29$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156115df573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105019190614e77565b905061168d838389848a8a73__$05887d5853069c88bcd4c0a2107db45f29$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611655573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116799190614e77565b60405180602001604052805f815250613181565b98975050505050505050565b336116a2611cc6565b6001600160a01b0316816001600160a01b0316146116dd5760405162d1953b60e31b81526001600160a01b0382166004820152602401610885565b816001600160a01b03163b5f03611712576040516361798f2f60e11b81526001600160a01b0383166004820152602401610885565b61171b8261322b565b5050565b5f611729336107b9565b611731611775565b6001600160a01b0316336001600160a01b0316146117645760405163086391f760e31b8152336004820152602401610885565b61176e838361328b565b9392505050565b5f805f805160206156f583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156117e1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118059190614cd1565b15611890576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611866573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061188a91906151d1565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061571583398151915280545f9190600160a01b900460ff166118cd575f61188a565b638fb3603760e01b91505090565b6118e36143bd565b6118eb610ea7565b156118f857610d6a61331c565b610d6a611b6e565b611909336107b9565b611911611775565b6001600160a01b0316336001600160a01b0316146119445760405163086391f760e31b8152336004820152602401610885565b610aa3816134c9565b611955611775565b6001600160a01b0316336001600160a01b0316146119885760405163086391f760e31b8152336004820152602401610885565b611992600a61350e565b60405163581e954760e11b81525f60048201526001600160a01b03919091169063b03d2a8e906024015b5f604051808303815f87803b1580156119d3575f80fd5b505af11580156119e5573d5f803e3d5ffd5b50505050565b5f806003866040516119fd9190614cb7565b90815260405190819003602001812054637bc32ecf60e01b825260c01b915073__$32e9ecefef68cb354d118e0496fdd3f4bc$__90637bc32ecf90611a50906001600160c01b03198516906004016147b9565b602060405180830381865af4158015611a6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a8f9190614cd1565b15611aaf57856040516316add56760e21b81526004016108859190614776565b611b0c85828660405180602001604052805f8152508773__$05887d5853069c88bcd4c0a2107db45f29$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156115df573d5f803e3d5ffd5b9695505050505050565b611b1f336107b9565b611b27611775565b6001600160a01b0316336001600160a01b031614611b5a5760405163086391f760e31b8152336004820152602401610885565b611b64828261360f565b61171b8282613661565b611b766143bd565b610d6a61331c565b611b86611775565b6001600160a01b0316336001600160a01b031614611bb95760405163086391f760e31b8152336004820152602401610885565b611bc2336107b9565b61171b82826136b3565b5f6003826040516110579190614cb7565b611be5611775565b6001600160a01b0316336001600160a01b031614611c185760405163086391f760e31b8152336004820152602401610885565b610aa3611c23610e95565b8261117c565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c9491906151d1565b6001600160a01b0316336001600160a01b03161461171b5760405162f0630960e01b8152336004820152602401610885565b5f80516020615715833981519152546001600160a01b031690565b611d9860408051610140810182525f80825260208083018290528284018290528351808501855282815280820183905260608401528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e08401528351808501855282815280820183905261010084015283518085019094528184528301529061012082015290565b60408051610140810182527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d6806546001600160601b0390811682527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680554600160a01b90041660208201525f81830152815163bc1b392d60e01b815282515f8051602061575583398151915293606084019273__$58e11c6004c5796aaa8c56e718245e69a2$__9263bc1b392d926004808401939192918290030181865af4158015611e64573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e8891906151ec565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af4158015611ed3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ef791906151ec565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af4158015611f42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f6691906151ec565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af4158015611fb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fd591906151ec565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af4158015612020573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061204491906151ec565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af415801561208f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120b391906151ec565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af41580156120fe573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061212291906151ec565b905292915050565b612133336107b9565b6003816040516121439190614cb7565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf91612199916001600160c01b031960c09290921b91909116906004016147b9565b602060405180830381865af41580156121b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121d89190614cd1565b156121f857806040516316add56760e21b81526004016108859190614776565b610aa360038260405161220b9190614cb7565b9081526040519081900360200190205460c01b612226606e90565b613704565b5f5f805160206157758339815191525b546001600160a01b0316919050565b612252611775565b6001600160a01b0316336001600160a01b0316146122855760405163086391f760e31b8152336004820152602401610885565b5f61228e610d4e565b90505f612299610e95565b6040516370a0823160e01b81526001600160a01b03848116600483015291909116906370a0823190602401602060405180830381865afa1580156122df573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123039190614e92565b905061230e8361374d565b801561133757604080516001600160a01b038085168252851660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a1306001600160a01b0383160361246f5761237761133c565b6001600160a01b03166354f0d84c838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b81526004016123c091815260200190565b602060405180830381865af41580156123db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123ff9190614e51565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526001600160601b031660448201526064015f604051808303815f87803b158015612454575f80fd5b505af1158015612466573d5f803e3d5ffd5b50505050505050565b61247761133c565b6001600160a01b031663c7d63d57838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b81526004016123c091815260200190565b611337336107b9565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612510573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061253491906151d1565b6001600160a01b0316336001600160a01b0316146113375760405162f0630960e01b8152336004820152602401610885565b61256f336107b9565b60038160405161257f9190614cb7565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf916125d5916001600160c01b031960c09290921b91909116906004016147b9565b602060405180830381865af41580156125f0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126149190614cd1565b1561263457806040516316add56760e21b81526004016108859190614776565b610aa36003826040516126479190614cb7565b9081526040519081900360200190205460c01b612226600490565b604051633682752160e21b815264ffffffffff831660048201525f90819073__$bf7bc340cbb9229ef1de2c568356e67902$__906345ebb61e90620151809073__$71e292c09eace9601b3e21e68a1278917a$__9063da09d48490602401602060405180830381865af41580156126db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126ff9190614e92565b6127099190615231565b6040518263ffffffff1660e01b815260040161272791815260200190565b602060405180830381865af4158015612742573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127669190614e92565b90505f6127ec8273__$bf7bc340cbb9229ef1de2c568356e67902$__6345ebb61e6101686040518263ffffffff1660e01b81526004016127a891815260200190565b602060405180830381865af41580156127c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127e79190614e92565b6137c2565b60405163046e44af60e11b81526001600160601b03891660048201529091505f9073__$3bac17678db7ae928afa209f2f44deec9c$__90634c41dd969060149083906308dc895e90602401602060405180830381865af4158015612852573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128769190614e92565b6128809190615231565b6040518263ffffffff1660e01b815260040161289e91815260200190565b602060405180830381865af41580156128b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128dd9190614e51565b604051632c34efe560e11b81526001600160601b03821660048201526024810184905290915073__$3bac17678db7ae928afa209f2f44deec9c$__90635869dfca90604401602060405180830381865af415801561293d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061168d9190614e51565b5f8061296c336107b9565b8361297f6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156129cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129f091906151d1565b6001600160a01b0316336001600160a01b031614612a235760405163086391f760e31b8152336004820152602401610885565b5f612a2c6137f6565b60405163bd7d9d8560e01b81526001600160601b03881660048201526001600160a01b03919091169063bd7d9d85906024015f60405180830381865afa158015612a78573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a9f919081019061525b565b9050612aac868683613824565b5f85815260046020526040808220815160608101909252805482908290612ad290614d10565b80601f0160208091040260200160405190810160405280929190818152602001828054612afe90614d10565b8015612b495780601f10612b2057610100808354040283529160200191612b49565b820191905f5260205f20905b815481529060010190602001808311612b2c57829003601f168201915b505050918352505060019182015460ff811660208084019190915261010090910464ffffffffff166040928301525f8a8152600582528281206001600160601b038d1682528252918220805460ff191690931790925560808501519183015192935091612bb7918a91613b91565b9050612be5888289604051602001612bd191815260200190565b604051602081830303815290604052613cca565b9550612c0188878360405180602001604052805f815250613d52565b612c1b88878360405180602001604052805f815250613dc7565b9450612c278886613e52565b505050509250929050565b612c3a611775565b6001600160a01b0316336001600160a01b031614612c6d5760405163086391f760e31b8152336004820152602401610885565b612c77600a61350e565b60405163581e954760e11b8152600160048201526001600160a01b03919091169063b03d2a8e906024016119bc565b5f805160206157158339815191525f80612cde612cc1611cc6565b8730612cd060045f8a8c6153ee565b612cd991615415565b613ea4565b9150915081612d9c5763ffffffff811615612d7957825460ff60a01b1916600160a01b178355612d0c611cc6565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612d3b9392919061544b565b5f604051808303815f87803b158015612d52575f80fd5b505af1158015612d64573d5f803e3d5ffd5b5050845460ff60a01b1916855550612d9c9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610885565b505050505050565b5f8051602061579583398151915254604051630155751d60e31b81526001600160601b03831660048201526001600160a01b0390911690630aaba8e8906024015b5f604051808303815f87803b158015612dfc575f80fd5b505af1158015612e0e573d5f803e3d5ffd5b5050505050565b5f805f805160206156f583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ea59190614cd1565b15612ed15780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610885565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612f23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f479190614cd1565b612f6f5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610885565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612fc1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fe59190614e51565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f01547fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00906001600160a01b031663095ea7b36130686118db565b606001516040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018590526044016112f7565b5f5f80516020615775833981519152600301546040516301c6b21960e41b81526001600160601b03841660048201526001600160a01b0390911690631c6b2190906024016020604051808303815f875af11580156130ff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8d9190614e51565b61312b613fac565b6001600160a01b031663095e2b7283836040518363ffffffff1660e01b815260040161315892919061548a565b5f604051808303815f87803b15801561316f575f80fd5b505af1158015612d9c573d5f803e3d5ffd5b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680154604051639a83274160e01b81525f916001600160a01b031690639a832741906131de908c908c908c908c908c908c908c908c906004016154ae565b6020604051808303815f875af11580156131fa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061321e9190614e51565b9998505050505050505050565b5f8051602061571583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f5f8051602061575583398151915260020154604051637baa9a0b60e01b81526001600160601b038516600482015264ffffffffff841660248201526001600160a01b0390911690637baa9a0b906044016020604051808303815f875af11580156132f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061176e9190614cf5565b6133246143bd565b5f6133376001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa15801561337b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061339f9190614e51565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156133f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061341c9190614cd1565b156134c1576134296137f6565b6001600160a01b031663f0ea17c361343f61154f565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015613480573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526134a79190810190615524565b60808101519092506001600160a01b0316156134c1575090565b61188a613fc0565b5f8051602061579583398151915254604051639ffcede960e01b81526001600160601b03831660048201526001600160a01b0390911690639ffcede990602401612de5565b5f805f805160206157758339815191525460408051633379d27d60e21b815290516001600160a01b039092169163cde749f4916004808201926020929091908290030181865afa158015613564573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061358891906155fc565b905061359c6001546001600160a01b031690565b60405163d39e604360e01b815260ff8086166004830152831660248201526001600160a01b03919091169063d39e604390604401602060405180830381865afa1580156135eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061176e91906151d1565b5f805160206157958339815191525460405163552d72d560e11b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b039091169063aa5ae5aa90604401613158565b5f8051602061579583398151915254604051635dfddfdd60e11b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b039091169063bbfbbfba90604401613158565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68055460405163067ba1c160e41b81526001600160a01b03909116906367ba1c10906131589085908590600401615617565b61370c613fac565b604051633e77a42160e11b81526001600160c01b03198416600482015260ff831660248201526001600160a01b039190911690637cef484290604401613158565b613755611775565b6001600160a01b0316336001600160a01b0316146137885760405163086391f760e31b8152336004820152602401610885565b613792600b61350e565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df90602401612de5565b5f815f036137e357604051630f6c8fc360e21b815260040160405180910390fd5b61176e83670de0b6b3a764000084614137565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031690565b5f8281526004602081905260409182902060010154915163790a38ad60e01b815261010090920464ffffffffff169082015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015613890573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138b49190614cd1565b156138d5576040516395b47f7b60e01b815260048101839052602401610885565b5f8281526005602090815260408083206001600160601b038716845290915290205460ff161561391857604051639758dd1d60e01b815260040160405180910390fd5b5f6139216137f6565b604051639096a1f360e01b81526001600160601b03861660048201526001600160a01b039190911690639096a1f390602401602060405180830381865afa15801561396e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061399291906155fc565b905073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__632c2f8a6760ff831660286040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156139f7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a1b9190614cd1565b613a385760405163aa462ceb60e01b815260040160405180910390fd5b5f83815260046020526040808220815160608101909252805482908290613a5e90614d10565b80601f0160208091040260200160405190810160405280929190818152602001828054613a8a90614d10565b8015613ad55780601f10613aac57610100808354040283529160200191613ad5565b820191905f5260205f20905b815481529060010190602001808311613ab857829003601f168201915b50505091835250506001919091015460ff81166020830152610100900464ffffffffff166040918201528101516101a0850151919250613b1e9164ffffffffff90811691161090565b15613b4c576101a0830151604051634a1dee2f60e11b815264ffffffffff9091166004820152602401610885565b60408101516101c084015164ffffffffff90811691161115612e0e576101c083015160405163725802a760e11b815264ffffffffff9091166004820152602401610885565b5f8073__$3bac17678db7ae928afa209f2f44deec9c$__635869dfca6001600160601b038616613bc0866141f4565b6040516001600160e01b031960e085901b1681526001600160601b0390921660048301526024820152604401602060405180830381865af4158015613c07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c2b9190614e51565b90505f613c366137f6565b604051630160668360e51b81526001600160601b03881660048201526001600160a01b039190911690632c0cd06090602401602060405180830381865afa158015613c83573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ca79190614e51565b9050613cb38183614339565b15613cc157915061176e9050565b50949350505050565b5f80516020615735833981519152546040516374b775eb60e01b81525f916001600160a01b0316906374b775eb90613d0a9087908790879060040161563d565b6020604051808303815f875af1158015613d26573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d4a919061566d565b949350505050565b5f8051602061573583398151915254604051636e2cdce760e01b81526001600160a01b0390911690636e2cdce790613d94908790879087908790600401615688565b5f604051808303815f87803b158015613dab575f80fd5b505af1158015613dbd573d5f803e3d5ffd5b5050505050505050565b5f8051602061573583398151915254604051631e2992c760e11b81525f916001600160a01b031690633c53258e90613e09908890889088908890600401615688565b6020604051808303815f875af1158015613e25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e499190614cf5565b95945050505050565b5f805160206157358339815191525460405163137a92a760e01b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b039091169063137a92a790604401613158565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613f129190614cb7565b5f60405180830381855afa9150503d805f8114613f4a576040519150601f19603f3d011682016040523d82523d5f602084013e613f4f565b606091505b50915091508115613fa1576040815110613f815780806020019051810190613f7791906156c2565b9094509250613fa1565b6020815110613fa15780806020019051810190613f9e9190614cd1565b93505b505094509492505050565b5f5f8051602061575583398151915261223b565b613fc86143bd565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060c00160405280825f01805461400590614d10565b80601f016020809104026020016040519081016040528092919081815260200182805461403190614d10565b801561407c5780601f106140535761010080835404028352916020019161407c565b820191905f5260205f20905b81548152906001019060200180831161405f57829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156140cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140f19190614e51565b6001600160601b0316815260018301546001600160a01b0390811660208301525f60408301526002840154166060820152600383018054608090920191610cc990614d10565b5f80805f19858709858702925082811083820303915050805f0361416e578382816141645761416461521d565b049250505061176e565b80841161418d57604051629540d960e61b815260040160405180910390fd5b5f8486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091025f889003889004909101858311909403939093029303949094049190911702949350505050565b5f61420660015b60ff84811691161490565b1561428657604051631488c84560e01b815260196004820152600119602482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90631488c845906044015b602060405180830381865af4158015614262573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8d9190614e92565b61429060026141fb565b156142d457604051631488c84560e01b8152600560048201525f19602482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90631488c84590604401614247565b6142de60036141fb565b1561431b576040516322f5db0f60e11b81526001600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__906345ebb61e90602401614247565b6040516363d977df60e01b815260ff83166004820152602401610885565b6040516304d40eb160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906309a81d6290604401602060405180830381865af4158015614399573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061176e9190614cd1565b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f60208284031215614423575f80fd5b81356001600160e01b03198116811461176e575f80fd5b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156144705761447061443a565b60405290565b60405161024081016001600160401b03811182821017156144705761447061443a565b60405160e081016001600160401b03811182821017156144705761447061443a565b60405161020081016001600160401b03811182821017156144705761447061443a565b60405160c081016001600160401b03811182821017156144705761447061443a565b604051601f8201601f191681016001600160401b03811182821017156145285761452861443a565b604052919050565b5f6001600160401b038211156145485761454861443a565b50601f01601f191660200190565b5f82601f830112614565575f80fd5b8135602083015f61457d61457884614530565b614500565b9050828152858383011115614590575f80fd5b828260208301375f92810160200192909252509392505050565b60ff81168114610aa3575f80fd5b64ffffffffff81168114610aa3575f80fd5b5f805f80608085870312156145dd575f80fd5b8435935060208501356001600160401b038111156145f9575f80fd5b61460587828801614556565b9350506040850135614616816145aa565b91506060850135614626816145b8565b939692955090935050565b6001600160601b0381168114610aa3575f80fd5b5f60208284031215614655575f80fd5b813561176e81614631565b5f60208284031215614670575f80fd5b5035919050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f8251606060208401526146c06080840182614677565b905060ff602085015116604084015264ffffffffff60408501511660608401528091505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614732608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152613d4a610100840182614677565b602081525f61176e6020830184614677565b5f60208284031215614798575f80fd5b81356001600160401b038111156147ad575f80fd5b613d4a84828501614556565b6001600160c01b031991909116815260200190565b6001600160a01b0381168114610aa3575f80fd5b5f80604083850312156147f3575f80fd5b82356147fe816147ce565b9150602083013561480e81614631565b809150509250929050565b6001600160c01b031981168114610aa3575f80fd5b5f805f805f8060c08789031215614843575f80fd5b863561484e81614631565b9550602087013561485e81614819565b9450604087013561486e816145b8565b935060608701356001600160401b03811115614888575f80fd5b61489489828a01614556565b93505060808701356148a581614631565b915060a08701356148b581614819565b809150509295509295509295565b5f805f80608085870312156148d6575f80fd5b84356001600160401b038111156148eb575f80fd5b6148f787828801614556565b945050602085013561490881614631565b92506040850135614918816145b8565b9150606085013561462681614631565b5f60208284031215614938575f80fd5b813561176e816147ce565b5f8060408385031215614954575f80fd5b823561495f81614631565b9150602083013561480e816145b8565b602081525f825160c0602084015261498a60e0840182614677565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b03606085015116608084015260808401516149dd60a08501826001600160a01b03169052565b5060a0840151838203601f190160c0850152613e498282614677565b5f60408284031215614a09575f80fd5b614a1161444e565b823581526020928301359281019290925250919050565b5f8060808385031215614a39575f80fd5b614a4384846149f9565b9150614a5284604085016149f9565b90509250929050565b5f8060408385031215614a6c575f80fd5b8235614a77816147ce565b946020939093013593505050565b81516001600160601b0316815261022081016020830151614ab160208401826001600160601b03169052565b506040830151614ac5604084018215159052565b506060830151614ae2606084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151805161012084015260208101516101408401525060e0830151805161016084015260208101516101808401525061010083015180516101a084015260208101516101c08401525061012083015180516101e084015260208101516102008401525b5092915050565b61ffff81168114610aa3575f80fd5b5f805f60608486031215614ba0575f80fd5b8335614bab81614631565b92506020840135614bbb81614b7f565b91506040840135614bcb81614631565b809150509250925092565b5f805f60608486031215614be8575f80fd5b8335614bf3816147ce565b92506020840135614c03816147ce565b929592945050506040919091013590565b5f805f8060808587031215614c27575f80fd5b8435614c3281614631565b93506020850135614c4281614819565b92506040850135614c52816145b8565b915060608501356001600160401b03811115614c6c575f80fd5b614c7887828801614556565b91505092959194509250565b5f8060408385031215614c95575f80fd5b8235614a7781614631565b5f81518060208401855e5f93019283525090919050565b5f61176e8284614ca0565b80518015158114610e90575f80fd5b5f60208284031215614ce1575f80fd5b61176e82614cc2565b8051610e90816145b8565b5f60208284031215614d05575f80fd5b815161176e816145b8565b600181811c90821680614d2457607f821691505b602082108103614d4257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561133757805f5260205f20601f840160051c81016020851015614d6d5750805b601f840160051c820191505b81811015612e0e575f8155600101614d79565b81516001600160401b03811115614da557614da561443a565b614db981614db38454614d10565b84614d48565b6020601f821160018114614deb575f8315614dd45750848201515b5f19600385901b1c1916600184901b178455612e0e565b5f84815260208120601f198516915b82811015614e1a5787850151825560209485019460019092019101614dfa565b5084821015614e3757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8051610e9081614631565b5f60208284031215614e61575f80fd5b815161176e81614631565b8051610e9081614819565b5f60208284031215614e87575f80fd5b815161176e81614819565b5f60208284031215614ea2575f80fd5b5051919050565b634e487b7160e01b5f52603260045260245ffd5b6001600160601b03881681526001600160401b0360c01b871660208201526001600160601b038616604082015264ffffffffff8516606082015260e060808201525f614f0c60e0830186614677565b6001600160601b039490941660a0830152506001600160c01b03199190911660c09091015295945050505050565b5f610240828403128015614f4c575f80fd5b50614f55614476565b614f5e83614e46565b8152614f6c60208401614e46565b6020820152614f7d60408401614e46565b6040820152614f8e60608401614e46565b6060820152614f9f60808401614e46565b6080820152614fb060a08401614e46565b60a0820152614fc160c08401614e46565b60c0820152614fd260e08401614e46565b60e0820152614fe46101008401614e46565b610100820152614ff76101208401614e46565b61012082015261500a6101408401614e46565b61014082015261501d6101608401614e46565b6101608201526150306101808401614e46565b6101808201526150436101a08401614e46565b6101a08201526150566101c08401614e46565b6101c08201526150696101e08401614e46565b6101e082015261507c6102008401614e46565b61020082015261508f6102208401614e46565b6102208201529392505050565b8051610e90816145aa565b8051610e90816147ce565b5f82601f8301126150c1575f80fd5b8151602083015f6150d461457884614530565b90508281528583830111156150e7575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215615111575f80fd5b81516001600160401b03811115615126575f80fd5b820160e08185031215615137575f80fd5b61513f614499565b61514882614e46565b815261515660208301614e46565b60208201526151676040830161509c565b604082015261517860608301614cc2565b6060820152615189608083016150a7565b608082015261519a60a083016150a7565b60a082015260c08201516001600160401b038111156151b7575f80fd5b6151c3868285016150b2565b60c083015250949350505050565b5f602082840312156151e1575f80fd5b815161176e816147ce565b5f60408284031280156151fd575f80fd5b5061520661444e565b825181526020928301519281019290925250919050565b634e487b7160e01b5f52601260045260245ffd5b5f8261524b57634e487b7160e01b5f52601260045260245ffd5b500490565b8051610e9081614b7f565b5f6020828403121561526b575f80fd5b81516001600160401b03811115615280575f80fd5b82016102008185031215615292575f80fd5b61529a6144bb565b6152a382614e46565b81526152b160208301614e46565b60208201526152c260408301614e6c565b60408201526152d360608301614e6c565b60608201526152e460808301614e46565b60808201526152f560a08301614e46565b60a082015261530660c08301614cea565b60c082015260e08201516001600160401b03811115615323575f80fd5b61532f868285016150b2565b60e0830152506101008201516001600160401b0381111561534e575f80fd5b61535a868285016150b2565b6101008301525061536e6101208301615250565b6101208201526153816101408301615250565b6101408201526153946101608301614e46565b6101608201526153a76101808301614e46565b6101808201526153ba6101a08301614cea565b6101a08201526153cd6101c08301614cea565b6101c08201526153e06101e08301614cea565b6101e0820152949350505050565b5f80858511156153fc575f80fd5b83861115615408575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015614b78576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b6001600160401b0360c01b83168152604060208201525f613d4a6040830184614677565b6001600160a01b03891681526001600160c01b031988811660208301526001600160601b038881166040840152878116606084015264ffffffffff87166080840152851660a0830152831660c082015261010060e082018190525f9061551690830184614677565b9a9950505050505050505050565b5f60208284031215615534575f80fd5b81516001600160401b03811115615549575f80fd5b820160c0818503121561555a575f80fd5b6155626144de565b81516001600160401b03811115615577575f80fd5b615583868285016150b2565b82525061559260208301614e46565b60208201526155a3604083016150a7565b60408201526155b4606083016150a7565b60608201526155c5608083016150a7565b608082015260a08201516001600160401b038111156155e2575f80fd5b6155ee868285016150b2565b60a083015250949350505050565b5f6020828403121561560c575f80fd5b815161176e816145aa565b82518152602080840151818301528251604083015282015160608201526080810161176e565b6001600160601b03841681526001600160601b0383166020820152606060408201525f613e496060830184614677565b5f6020828403121561567d575f80fd5b815161176e81614b7f565b6001600160601b038516815261ffff841660208201526001600160601b0383166040820152608060608201525f611b0c6080830184614677565b5f80604083850312156156d3575f80fd5b6156dc83614cc2565b9150602083015163ffffffff8116811461480e575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a000bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68030bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d6800ffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f000bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d6802a2646970667358221220ccbc9502084d32a57bd6aad4c2e264aaad96a0d0eec47ce9d5b108fc312a2f4f64736f6c634300081a0033",
|
1558
|
+
"linkReferences": {
|
1559
|
+
"contracts/type/Amount.sol": {
|
1560
|
+
"AmountLib": [
|
1561
|
+
{
|
1562
|
+
"length": 20,
|
1563
|
+
"start": 8819
|
1564
|
+
},
|
1565
|
+
{
|
1566
|
+
"length": 20,
|
1567
|
+
"start": 13198
|
1568
|
+
},
|
1569
|
+
{
|
1570
|
+
"length": 20,
|
1571
|
+
"start": 13454
|
1572
|
+
},
|
1573
|
+
{
|
1574
|
+
"length": 20,
|
1575
|
+
"start": 14356
|
1576
|
+
},
|
1577
|
+
{
|
1578
|
+
"length": 20,
|
1579
|
+
"start": 14602
|
1580
|
+
},
|
1581
|
+
{
|
1582
|
+
"length": 20,
|
1583
|
+
"start": 19354
|
1584
|
+
},
|
1585
|
+
{
|
1586
|
+
"length": 20,
|
1587
|
+
"start": 21350
|
1588
|
+
}
|
1589
|
+
]
|
1590
|
+
},
|
1591
|
+
"contracts/type/Fee.sol": {
|
1592
|
+
"FeeLib": [
|
1593
|
+
{
|
1594
|
+
"length": 20,
|
1595
|
+
"start": 11823
|
1596
|
+
},
|
1597
|
+
{
|
1598
|
+
"length": 20,
|
1599
|
+
"start": 11924
|
1600
|
+
},
|
1601
|
+
{
|
1602
|
+
"length": 20,
|
1603
|
+
"start": 12035
|
1604
|
+
},
|
1605
|
+
{
|
1606
|
+
"length": 20,
|
1607
|
+
"start": 12146
|
1608
|
+
},
|
1609
|
+
{
|
1610
|
+
"length": 20,
|
1611
|
+
"start": 12257
|
1612
|
+
},
|
1613
|
+
{
|
1614
|
+
"length": 20,
|
1615
|
+
"start": 12368
|
1616
|
+
},
|
1617
|
+
{
|
1618
|
+
"length": 20,
|
1619
|
+
"start": 12479
|
1620
|
+
}
|
1621
|
+
]
|
1622
|
+
},
|
1623
|
+
"contracts/type/NftId.sol": {
|
1624
|
+
"NftIdLib": [
|
1625
|
+
{
|
1626
|
+
"length": 20,
|
1627
|
+
"start": 7168
|
1628
|
+
},
|
1629
|
+
{
|
1630
|
+
"length": 20,
|
1631
|
+
"start": 8006
|
1632
|
+
},
|
1633
|
+
{
|
1634
|
+
"length": 20,
|
1635
|
+
"start": 10158
|
1636
|
+
},
|
1637
|
+
{
|
1638
|
+
"length": 20,
|
1639
|
+
"start": 15950
|
1640
|
+
},
|
1641
|
+
{
|
1642
|
+
"length": 20,
|
1643
|
+
"start": 17349
|
1644
|
+
},
|
1645
|
+
{
|
1646
|
+
"length": 20,
|
1647
|
+
"start": 20621
|
1648
|
+
}
|
1649
|
+
]
|
1650
|
+
},
|
1651
|
+
"contracts/type/Referral.sol": {
|
1652
|
+
"ReferralLib": [
|
1653
|
+
{
|
1654
|
+
"length": 20,
|
1655
|
+
"start": 9631
|
1656
|
+
},
|
1657
|
+
{
|
1658
|
+
"length": 20,
|
1659
|
+
"start": 9749
|
1660
|
+
},
|
1661
|
+
{
|
1662
|
+
"length": 20,
|
1663
|
+
"start": 10956
|
1664
|
+
}
|
1665
|
+
]
|
1666
|
+
},
|
1667
|
+
"contracts/type/RiskId.sol": {
|
1668
|
+
"RiskIdLib": [
|
1669
|
+
{
|
1670
|
+
"length": 20,
|
1671
|
+
"start": 6129
|
1672
|
+
},
|
1673
|
+
{
|
1674
|
+
"length": 20,
|
1675
|
+
"start": 8143
|
1676
|
+
},
|
1677
|
+
{
|
1678
|
+
"length": 20,
|
1679
|
+
"start": 8384
|
1680
|
+
},
|
1681
|
+
{
|
1682
|
+
"length": 20,
|
1683
|
+
"start": 10787
|
1684
|
+
},
|
1685
|
+
{
|
1686
|
+
"length": 20,
|
1687
|
+
"start": 12644
|
1688
|
+
},
|
1689
|
+
{
|
1690
|
+
"length": 20,
|
1691
|
+
"start": 13728
|
1692
|
+
}
|
1693
|
+
]
|
1694
|
+
},
|
1695
|
+
"contracts/type/Seconds.sol": {
|
1696
|
+
"SecondsLib": [
|
1697
|
+
{
|
1698
|
+
"length": 20,
|
1699
|
+
"start": 13992
|
1700
|
+
}
|
1701
|
+
]
|
1702
|
+
},
|
1703
|
+
"contracts/type/StateId.sol": {
|
1704
|
+
"StateIdLib": [
|
1705
|
+
{
|
1706
|
+
"length": 20,
|
1707
|
+
"start": 18843
|
1708
|
+
}
|
1709
|
+
]
|
1710
|
+
},
|
1711
|
+
"contracts/type/Timestamp.sol": {
|
1712
|
+
"TimestampLib": [
|
1713
|
+
{
|
1714
|
+
"length": 20,
|
1715
|
+
"start": 6297
|
1716
|
+
},
|
1717
|
+
{
|
1718
|
+
"length": 20,
|
1719
|
+
"start": 6499
|
1720
|
+
},
|
1721
|
+
{
|
1722
|
+
"length": 20,
|
1723
|
+
"start": 18525
|
1724
|
+
}
|
1725
|
+
]
|
1726
|
+
},
|
1727
|
+
"contracts/type/UFixed.sol": {
|
1728
|
+
"UFixedLib": [
|
1729
|
+
{
|
1730
|
+
"length": 20,
|
1731
|
+
"start": 13959
|
1732
|
+
},
|
1733
|
+
{
|
1734
|
+
"length": 20,
|
1735
|
+
"start": 14196
|
1736
|
+
},
|
1737
|
+
{
|
1738
|
+
"length": 20,
|
1739
|
+
"start": 21038
|
1740
|
+
},
|
1741
|
+
{
|
1742
|
+
"length": 20,
|
1743
|
+
"start": 21175
|
1744
|
+
},
|
1745
|
+
{
|
1746
|
+
"length": 20,
|
1747
|
+
"start": 21246
|
1748
|
+
}
|
1749
|
+
]
|
1750
|
+
}
|
1751
|
+
},
|
1752
|
+
"deployedLinkReferences": {
|
1753
|
+
"contracts/type/Amount.sol": {
|
1754
|
+
"AmountLib": [
|
1755
|
+
{
|
1756
|
+
"length": 20,
|
1757
|
+
"start": 4718
|
1758
|
+
},
|
1759
|
+
{
|
1760
|
+
"length": 20,
|
1761
|
+
"start": 9097
|
1762
|
+
},
|
1763
|
+
{
|
1764
|
+
"length": 20,
|
1765
|
+
"start": 9353
|
1766
|
+
},
|
1767
|
+
{
|
1768
|
+
"length": 20,
|
1769
|
+
"start": 10255
|
1770
|
+
},
|
1771
|
+
{
|
1772
|
+
"length": 20,
|
1773
|
+
"start": 10501
|
1774
|
+
},
|
1775
|
+
{
|
1776
|
+
"length": 20,
|
1777
|
+
"start": 15253
|
1778
|
+
},
|
1779
|
+
{
|
1780
|
+
"length": 20,
|
1781
|
+
"start": 17249
|
1782
|
+
}
|
1783
|
+
]
|
1784
|
+
},
|
1785
|
+
"contracts/type/Fee.sol": {
|
1786
|
+
"FeeLib": [
|
1787
|
+
{
|
1788
|
+
"length": 20,
|
1789
|
+
"start": 7722
|
1790
|
+
},
|
1791
|
+
{
|
1792
|
+
"length": 20,
|
1793
|
+
"start": 7823
|
1794
|
+
},
|
1795
|
+
{
|
1796
|
+
"length": 20,
|
1797
|
+
"start": 7934
|
1798
|
+
},
|
1799
|
+
{
|
1800
|
+
"length": 20,
|
1801
|
+
"start": 8045
|
1802
|
+
},
|
1803
|
+
{
|
1804
|
+
"length": 20,
|
1805
|
+
"start": 8156
|
1806
|
+
},
|
1807
|
+
{
|
1808
|
+
"length": 20,
|
1809
|
+
"start": 8267
|
1810
|
+
},
|
1811
|
+
{
|
1812
|
+
"length": 20,
|
1813
|
+
"start": 8378
|
1814
|
+
}
|
1815
|
+
]
|
1816
|
+
},
|
1817
|
+
"contracts/type/NftId.sol": {
|
1818
|
+
"NftIdLib": [
|
1819
|
+
{
|
1820
|
+
"length": 20,
|
1821
|
+
"start": 3067
|
1822
|
+
},
|
1823
|
+
{
|
1824
|
+
"length": 20,
|
1825
|
+
"start": 3905
|
1826
|
+
},
|
1827
|
+
{
|
1828
|
+
"length": 20,
|
1829
|
+
"start": 6057
|
1830
|
+
},
|
1831
|
+
{
|
1832
|
+
"length": 20,
|
1833
|
+
"start": 11849
|
1834
|
+
},
|
1835
|
+
{
|
1836
|
+
"length": 20,
|
1837
|
+
"start": 13248
|
1838
|
+
},
|
1839
|
+
{
|
1840
|
+
"length": 20,
|
1841
|
+
"start": 16520
|
1842
|
+
}
|
1843
|
+
]
|
1844
|
+
},
|
1845
|
+
"contracts/type/Referral.sol": {
|
1846
|
+
"ReferralLib": [
|
1847
|
+
{
|
1848
|
+
"length": 20,
|
1849
|
+
"start": 5530
|
1850
|
+
},
|
1851
|
+
{
|
1852
|
+
"length": 20,
|
1853
|
+
"start": 5648
|
1854
|
+
},
|
1855
|
+
{
|
1856
|
+
"length": 20,
|
1857
|
+
"start": 6855
|
1858
|
+
}
|
1859
|
+
]
|
1860
|
+
},
|
1861
|
+
"contracts/type/RiskId.sol": {
|
1862
|
+
"RiskIdLib": [
|
1863
|
+
{
|
1864
|
+
"length": 20,
|
1865
|
+
"start": 2028
|
1866
|
+
},
|
1867
|
+
{
|
1868
|
+
"length": 20,
|
1869
|
+
"start": 4042
|
1870
|
+
},
|
1871
|
+
{
|
1872
|
+
"length": 20,
|
1873
|
+
"start": 4283
|
1874
|
+
},
|
1875
|
+
{
|
1876
|
+
"length": 20,
|
1877
|
+
"start": 6686
|
1878
|
+
},
|
1879
|
+
{
|
1880
|
+
"length": 20,
|
1881
|
+
"start": 8543
|
1882
|
+
},
|
1883
|
+
{
|
1884
|
+
"length": 20,
|
1885
|
+
"start": 9627
|
1886
|
+
}
|
1887
|
+
]
|
1888
|
+
},
|
1889
|
+
"contracts/type/Seconds.sol": {
|
1890
|
+
"SecondsLib": [
|
1891
|
+
{
|
1892
|
+
"length": 20,
|
1893
|
+
"start": 9891
|
1894
|
+
}
|
1895
|
+
]
|
1896
|
+
},
|
1897
|
+
"contracts/type/StateId.sol": {
|
1898
|
+
"StateIdLib": [
|
1899
|
+
{
|
1900
|
+
"length": 20,
|
1901
|
+
"start": 14742
|
1902
|
+
}
|
1903
|
+
]
|
1904
|
+
},
|
1905
|
+
"contracts/type/Timestamp.sol": {
|
1906
|
+
"TimestampLib": [
|
1907
|
+
{
|
1908
|
+
"length": 20,
|
1909
|
+
"start": 2196
|
1910
|
+
},
|
1911
|
+
{
|
1912
|
+
"length": 20,
|
1913
|
+
"start": 2398
|
1914
|
+
},
|
1915
|
+
{
|
1916
|
+
"length": 20,
|
1917
|
+
"start": 14424
|
1918
|
+
}
|
1919
|
+
]
|
1920
|
+
},
|
1921
|
+
"contracts/type/UFixed.sol": {
|
1922
|
+
"UFixedLib": [
|
1923
|
+
{
|
1924
|
+
"length": 20,
|
1925
|
+
"start": 9858
|
1926
|
+
},
|
1927
|
+
{
|
1928
|
+
"length": 20,
|
1929
|
+
"start": 10095
|
1930
|
+
},
|
1931
|
+
{
|
1932
|
+
"length": 20,
|
1933
|
+
"start": 16937
|
1934
|
+
},
|
1935
|
+
{
|
1936
|
+
"length": 20,
|
1937
|
+
"start": 17074
|
1938
|
+
},
|
1939
|
+
{
|
1940
|
+
"length": 20,
|
1941
|
+
"start": 17145
|
1942
|
+
}
|
1943
|
+
]
|
1944
|
+
}
|
1945
|
+
}
|
1946
|
+
}
|