@etherisc/gif-next 0.0.2-8d47fa1-080 → 0.0.2-8d69bcd-543
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +252 -21
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1007 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +744 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1341 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
- package/artifacts/contracts/{shared/IOwnable.sol/IOwnable.json → authorization/AccessAdmin.sol/IAccessManagedChecker.json} +4 -4
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1434 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +508 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/access → authorization}/IAccess.sol/IAccess.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1092 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +324 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1338 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +527 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1016 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1501 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +860 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +915 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1008 -0
- 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 +1487 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +555 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2048 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +527 -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 +1495 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +527 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1211 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1663 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +555 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2416 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +527 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +364 -1783
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +759 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +441 -2076
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1862 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +631 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +2339 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1025 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +744 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3718 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -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/base/Cloneable.sol/Cloneable.json +137 -0
- 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 +223 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{distribution/IDistribution.sol → IDistribution.sol}/IDistribution.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.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 +975 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +535 -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 +774 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +733 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +875 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +764 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1252 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +555 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1367 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +820 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +946 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +907 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1309 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1027 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1626 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +792 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +813 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +728 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1161 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +527 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1538 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +860 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +262 -339
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1082 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +968 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +602 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1018 -0
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentServiceBase.sol/ComponentServiceBase.json → product/IRiskService.sol/IRiskService.json} +218 -158
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1336 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +816 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +930 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +784 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1119 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +637 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +724 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +103 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +810 -171
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +561 -186
- package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
- package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +1016 -148
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1861 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +625 -217
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +735 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1795 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1325 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +707 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1597 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +824 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ServiceBase.sol/ServiceBase.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +255 -150
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +541 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
- package/artifacts/contracts/{instance/IInstanceLinked.sol/IInstanceLinked.json → shared/ContractLib.sol/IInstanceAdminHelper.json} +5 -5
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +632 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1221 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +709 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +122 -172
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/component/ComponentModule.sol/ComponentModule.json → shared/INftOwnable.sol/INftOwnable.json} +82 -52
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +213 -8
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → shared/IService.sol/IService.json} +189 -179
- 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 +797 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -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 +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +209 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +226 -8
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/Service.sol/Service.json} +196 -199
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +724 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +395 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +140 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1447 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1067 -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 +1857 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +792 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +587 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1272 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +732 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -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/Key32Set.sol/LibKey32Set.dbg.json +4 -0
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -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 +199 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +433 -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/type/StateId.sol/StateIdLib.json +105 -0
- 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/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 +158 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +113 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -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/upgradeability/Versionable.sol/Versionable.json +78 -0
- package/contracts/accounting/AccountingService.sol +262 -0
- package/contracts/accounting/AccountingServiceManager.sol +38 -0
- package/contracts/accounting/IAccountingService.sol +45 -0
- package/contracts/authorization/AccessAdmin.sol +656 -0
- package/contracts/authorization/AccessManagerCloneable.sol +149 -0
- package/contracts/authorization/Authorization.sol +316 -0
- package/contracts/authorization/IAccess.sol +49 -0
- package/contracts/authorization/IAccessAdmin.sol +140 -0
- package/contracts/authorization/IAuthorization.sol +66 -0
- package/contracts/authorization/IServiceAuthorization.sol +40 -0
- package/contracts/authorization/ServiceAuthorization.sol +106 -0
- package/contracts/distribution/BasicDistribution.sol +139 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +39 -0
- package/contracts/distribution/Distribution.sol +287 -0
- package/contracts/distribution/DistributionService.sol +357 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +52 -0
- package/contracts/distribution/IDistributionService.sol +100 -0
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +90 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
- package/contracts/examples/fire/FireProduct.sol +438 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +57 -0
- package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +107 -0
- package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +370 -0
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BundleSet.sol +130 -0
- package/contracts/instance/IInstance.sol +63 -47
- package/contracts/instance/IInstanceService.sol +72 -0
- package/contracts/instance/Instance.sol +233 -71
- package/contracts/instance/InstanceAdmin.sol +436 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +213 -0
- package/contracts/instance/InstanceReader.sol +596 -0
- package/contracts/instance/InstanceService.sol +404 -0
- package/contracts/instance/InstanceServiceManager.sol +39 -0
- package/contracts/instance/InstanceStore.sol +298 -0
- package/contracts/instance/RiskSet.sol +118 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +20 -0
- package/contracts/instance/base/ObjectLifecycle.sol +113 -0
- package/contracts/instance/base/ObjectSet.sol +77 -0
- package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IComponents.sol +51 -0
- package/contracts/instance/module/IDistribution.sol +41 -0
- package/contracts/instance/module/IPolicy.sol +85 -0
- package/contracts/instance/module/IRisk.sol +14 -0
- package/contracts/{test/TestToken.sol → mock/Dip.sol} +6 -6
- package/contracts/oracle/BasicOracle.sol +47 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +37 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +66 -0
- package/contracts/oracle/Oracle.sol +156 -0
- package/contracts/oracle/OracleService.sol +310 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +175 -0
- package/contracts/pool/BasicPoolAuthorization.sol +59 -0
- package/contracts/pool/BundleService.sol +425 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +121 -0
- package/contracts/pool/IPoolComponent.sol +62 -0
- package/contracts/pool/IPoolService.sol +153 -0
- package/contracts/pool/Pool.sol +345 -0
- package/contracts/pool/PoolService.sol +613 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +259 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/BasicProduct.sol +51 -0
- package/contracts/product/BasicProductAuthorization.sol +32 -0
- package/contracts/product/ClaimService.sol +708 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +66 -0
- package/contracts/product/IClaimService.sol +136 -0
- package/contracts/product/IPolicyService.sol +90 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +62 -0
- package/contracts/product/IRiskService.sol +33 -0
- package/contracts/product/PolicyService.sol +718 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +304 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +463 -0
- package/contracts/product/RiskService.sol +145 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +99 -37
- package/contracts/registry/IRegistry.sol +131 -40
- package/contracts/registry/IRegistryService.sol +49 -16
- package/contracts/registry/IRelease.sol +26 -0
- package/contracts/registry/ITransferInterceptor.sol +1 -1
- package/contracts/registry/Registry.sol +569 -344
- package/contracts/registry/RegistryAdmin.sol +344 -0
- package/contracts/registry/RegistryService.sol +147 -289
- package/contracts/registry/RegistryServiceManager.sol +53 -0
- package/contracts/registry/ReleaseAdmin.sol +245 -0
- package/contracts/registry/ReleaseLifecycle.sol +32 -0
- package/contracts/registry/ReleaseRegistry.sol +511 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +242 -0
- package/contracts/registry/TokenRegistry.sol +313 -0
- package/contracts/shared/Component.sol +241 -0
- package/contracts/shared/ComponentService.sol +692 -0
- package/contracts/shared/ComponentServiceManager.sol +38 -0
- package/contracts/shared/ComponentVerifyingService.sol +128 -0
- package/contracts/shared/ContractLib.sol +253 -0
- package/contracts/shared/IComponent.sol +61 -0
- package/contracts/shared/IComponentService.sol +116 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
- package/contracts/shared/IKeyValueStore.sol +54 -0
- package/contracts/{instance/base → shared}/ILifecycle.sol +6 -5
- package/contracts/shared/INftOwnable.sol +25 -0
- package/contracts/shared/IPolicyHolder.sol +35 -0
- package/contracts/shared/IRegisterable.sol +24 -9
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +23 -0
- package/contracts/shared/InitializableERC165.sol +27 -0
- package/contracts/shared/InstanceLinkedComponent.sol +197 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +88 -0
- package/contracts/shared/NftIdSet.sol +65 -0
- package/contracts/shared/NftOwnable.sol +127 -0
- package/contracts/shared/PolicyHolder.sol +62 -0
- package/contracts/shared/Registerable.sol +54 -62
- package/contracts/shared/RegistryLinked.sol +38 -0
- package/contracts/shared/Service.sol +65 -0
- package/contracts/shared/TokenHandler.sol +312 -0
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +165 -0
- package/contracts/staking/IStakingService.sol +157 -0
- package/contracts/staking/StakeManagerLib.sol +224 -0
- package/contracts/staking/Staking.sol +526 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +52 -0
- package/contracts/staking/StakingReader.sol +190 -0
- package/contracts/staking/StakingService.sol +408 -0
- package/contracts/staking/StakingServiceManager.sol +45 -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 +27 -3
- package/contracts/type/ClaimId.sol +80 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/{types → type}/Key32.sol +10 -5
- package/contracts/type/Key32Set.sol +62 -0
- package/contracts/{types → type}/NftId.sol +28 -15
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/type/ObjectType.sol +303 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +90 -0
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +74 -0
- package/contracts/type/RoleId.sol +182 -0
- package/contracts/type/Seconds.sol +101 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +53 -5
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +37 -19
- package/contracts/{types → type}/UFixed.sol +48 -12
- package/contracts/{types → type}/Version.sol +22 -6
- package/contracts/{shared → upgradeability}/IVersionable.sol +5 -48
- package/contracts/upgradeability/ProxyManager.sol +232 -0
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +2 -4
- package/contracts/upgradeability/Versionable.sol +59 -0
- package/package.json +12 -7
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -213
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -445
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -177
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -343
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -474
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -373
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -602
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -502
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- 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/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -344
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.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 -710
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -297
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -297
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -117
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -284
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -284
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -164
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -164
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -113
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -131
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -638
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -638
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -690
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -526
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -369
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -484
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -649
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -964
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -457
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.json +0 -344
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -310
- 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/shared/Versionable.sol/Versionable.json +0 -228
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +0 -4
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +0 -445
- 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/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -602
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -632
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -191
- 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 -472
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
- 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 -270
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
- 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/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/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
- 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/ReferralId.sol/ReferralIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +0 -99
- 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 -30
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.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 -30
- package/contracts/components/BaseComponent.sol +0 -79
- package/contracts/components/Distribution.sol +0 -155
- package/contracts/components/IBaseComponent.sol +0 -19
- package/contracts/components/IDistributionComponent.sol +0 -47
- package/contracts/components/IPoolComponent.sol +0 -65
- package/contracts/components/IProductComponent.sol +0 -39
- package/contracts/components/Pool.sol +0 -246
- package/contracts/components/Product.sol +0 -299
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/ComponentServiceBase.sol +0 -49
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/base/IKeyValueStore.sol +0 -50
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -89
- package/contracts/instance/base/KeyValueStore.sol +0 -161
- package/contracts/instance/base/Lifecycle.sol +0 -100
- package/contracts/instance/base/ModuleBase.sol +0 -57
- package/contracts/instance/base/ServiceBase.sol +0 -43
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/instance/module/bundle/BundleModule.sol +0 -134
- package/contracts/instance/module/bundle/IBundle.sol +0 -53
- package/contracts/instance/module/component/ComponentModule.sol +0 -71
- package/contracts/instance/module/component/IComponent.sol +0 -28
- package/contracts/instance/module/distribution/DistributionModule.sol +0 -17
- package/contracts/instance/module/distribution/IDistribution.sol +0 -10
- package/contracts/instance/module/policy/IPolicy.sol +0 -63
- package/contracts/instance/module/policy/PolicyModule.sol +0 -91
- package/contracts/instance/module/pool/IPoolModule.sol +0 -41
- package/contracts/instance/module/pool/PoolModule.sol +0 -95
- package/contracts/instance/module/risk/IRisk.sol +0 -26
- package/contracts/instance/module/risk/RiskModule.sol +0 -62
- package/contracts/instance/module/treasury/ITreasury.sol +0 -84
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -131
- package/contracts/instance/service/ComponentOwnerService.sol +0 -272
- package/contracts/instance/service/DistributionService.sol +0 -54
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/instance/service/IDistributionService.sol +0 -12
- package/contracts/instance/service/IPoolService.sol +0 -37
- package/contracts/instance/service/IProductService.sol +0 -107
- package/contracts/instance/service/PoolService.sol +0 -149
- package/contracts/instance/service/ProductService.sol +0 -509
- package/contracts/registry/IChainNft.sol +0 -22
- package/contracts/registry/IRegistryLinked.sol +0 -8
- package/contracts/registry/RegistryInstaller.sol +0 -100
- package/contracts/shared/ERC165.sol +0 -21
- package/contracts/shared/IOwnable.sol +0 -6
- package/contracts/shared/ProxyManager.sol +0 -115
- package/contracts/shared/Versionable.sol +0 -147
- package/contracts/test/TestDistribution.sol +0 -22
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestPool.sol +0 -27
- package/contracts/test/TestProduct.sol +0 -74
- package/contracts/test/TestRegisterable.sol +0 -18
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/test/Usdc.sol +0 -26
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/Fee.sol +0 -56
- package/contracts/types/NftIdSet.sol +0 -60
- package/contracts/types/ObjectType.sol +0 -131
- package/contracts/types/ReferralId.sol +0 -48
- package/contracts/types/RiskId.sol +0 -43
- package/contracts/types/RoleId.sol +0 -38
@@ -0,0 +1,1597 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "ComponentService",
|
4
|
+
"sourceName": "contracts/shared/ComponentService.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "authority",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorAuthorityInvalid",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
57
|
+
{
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "component",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "ErrorComponentServiceAlreadyRegistered",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [
|
68
|
+
{
|
69
|
+
"internalType": "address",
|
70
|
+
"name": "instanceAddress",
|
71
|
+
"type": "address"
|
72
|
+
},
|
73
|
+
{
|
74
|
+
"internalType": "VersionPart",
|
75
|
+
"name": "instanceVersion",
|
76
|
+
"type": "uint8"
|
77
|
+
}
|
78
|
+
],
|
79
|
+
"name": "ErrorComponentServiceInstanceVersionMismatch",
|
80
|
+
"type": "error"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"inputs": [
|
84
|
+
{
|
85
|
+
"internalType": "address",
|
86
|
+
"name": "component",
|
87
|
+
"type": "address"
|
88
|
+
},
|
89
|
+
{
|
90
|
+
"internalType": "ObjectType",
|
91
|
+
"name": "requiredType",
|
92
|
+
"type": "uint8"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"internalType": "ObjectType",
|
96
|
+
"name": "componentType",
|
97
|
+
"type": "uint8"
|
98
|
+
}
|
99
|
+
],
|
100
|
+
"name": "ErrorComponentServiceInvalidType",
|
101
|
+
"type": "error"
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"inputs": [],
|
105
|
+
"name": "ErrorComponentServiceNewWalletAddressZero",
|
106
|
+
"type": "error"
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"inputs": [
|
110
|
+
{
|
111
|
+
"internalType": "address",
|
112
|
+
"name": "component",
|
113
|
+
"type": "address"
|
114
|
+
}
|
115
|
+
],
|
116
|
+
"name": "ErrorComponentServiceNotComponent",
|
117
|
+
"type": "error"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"inputs": [
|
121
|
+
{
|
122
|
+
"internalType": "address",
|
123
|
+
"name": "instanceAddress",
|
124
|
+
"type": "address"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"internalType": "ObjectType",
|
128
|
+
"name": "objectType",
|
129
|
+
"type": "uint8"
|
130
|
+
}
|
131
|
+
],
|
132
|
+
"name": "ErrorComponentServiceNotInstance",
|
133
|
+
"type": "error"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"inputs": [
|
137
|
+
{
|
138
|
+
"internalType": "address",
|
139
|
+
"name": "component",
|
140
|
+
"type": "address"
|
141
|
+
}
|
142
|
+
],
|
143
|
+
"name": "ErrorComponentServiceNotInstanceLinkedComponent",
|
144
|
+
"type": "error"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"inputs": [
|
148
|
+
{
|
149
|
+
"internalType": "address",
|
150
|
+
"name": "instanceAddress",
|
151
|
+
"type": "address"
|
152
|
+
}
|
153
|
+
],
|
154
|
+
"name": "ErrorComponentServiceNotRegistered",
|
155
|
+
"type": "error"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"inputs": [
|
159
|
+
{
|
160
|
+
"internalType": "NftId",
|
161
|
+
"name": "nftId",
|
162
|
+
"type": "uint96"
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"internalType": "ObjectType",
|
166
|
+
"name": "objectType",
|
167
|
+
"type": "uint8"
|
168
|
+
}
|
169
|
+
],
|
170
|
+
"name": "ErrorComponentServiceParentNotInstance",
|
171
|
+
"type": "error"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"inputs": [
|
175
|
+
{
|
176
|
+
"internalType": "NftId",
|
177
|
+
"name": "nftId",
|
178
|
+
"type": "uint96"
|
179
|
+
},
|
180
|
+
{
|
181
|
+
"internalType": "ObjectType",
|
182
|
+
"name": "objectType",
|
183
|
+
"type": "uint8"
|
184
|
+
}
|
185
|
+
],
|
186
|
+
"name": "ErrorComponentServiceParentNotProduct",
|
187
|
+
"type": "error"
|
188
|
+
},
|
189
|
+
{
|
190
|
+
"inputs": [
|
191
|
+
{
|
192
|
+
"internalType": "address",
|
193
|
+
"name": "component",
|
194
|
+
"type": "address"
|
195
|
+
},
|
196
|
+
{
|
197
|
+
"internalType": "VersionPart",
|
198
|
+
"name": "componentRelease",
|
199
|
+
"type": "uint8"
|
200
|
+
},
|
201
|
+
{
|
202
|
+
"internalType": "VersionPart",
|
203
|
+
"name": "parentRelease",
|
204
|
+
"type": "uint8"
|
205
|
+
}
|
206
|
+
],
|
207
|
+
"name": "ErrorComponentServiceReleaseMismatch",
|
208
|
+
"type": "error"
|
209
|
+
},
|
210
|
+
{
|
211
|
+
"inputs": [
|
212
|
+
{
|
213
|
+
"internalType": "NftId",
|
214
|
+
"name": "senderNftId",
|
215
|
+
"type": "uint96"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"internalType": "NftId",
|
219
|
+
"name": "compnentParentNftId",
|
220
|
+
"type": "uint96"
|
221
|
+
}
|
222
|
+
],
|
223
|
+
"name": "ErrorComponentServiceSenderNotComponentParent",
|
224
|
+
"type": "error"
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"inputs": [
|
228
|
+
{
|
229
|
+
"internalType": "address",
|
230
|
+
"name": "sender",
|
231
|
+
"type": "address"
|
232
|
+
}
|
233
|
+
],
|
234
|
+
"name": "ErrorComponentServiceSenderNotRegistered",
|
235
|
+
"type": "error"
|
236
|
+
},
|
237
|
+
{
|
238
|
+
"inputs": [
|
239
|
+
{
|
240
|
+
"internalType": "address",
|
241
|
+
"name": "component",
|
242
|
+
"type": "address"
|
243
|
+
},
|
244
|
+
{
|
245
|
+
"internalType": "ObjectType",
|
246
|
+
"name": "invalidType",
|
247
|
+
"type": "uint8"
|
248
|
+
}
|
249
|
+
],
|
250
|
+
"name": "ErrorComponentServiceTypeNotSupported",
|
251
|
+
"type": "error"
|
252
|
+
},
|
253
|
+
{
|
254
|
+
"inputs": [],
|
255
|
+
"name": "ErrorComponentServiceWalletAddressIsSameAsCurrent",
|
256
|
+
"type": "error"
|
257
|
+
},
|
258
|
+
{
|
259
|
+
"inputs": [],
|
260
|
+
"name": "ErrorComponentServiceWalletAddressZero",
|
261
|
+
"type": "error"
|
262
|
+
},
|
263
|
+
{
|
264
|
+
"inputs": [
|
265
|
+
{
|
266
|
+
"internalType": "address",
|
267
|
+
"name": "wallet",
|
268
|
+
"type": "address"
|
269
|
+
},
|
270
|
+
{
|
271
|
+
"internalType": "address",
|
272
|
+
"name": "spender",
|
273
|
+
"type": "address"
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"internalType": "uint256",
|
277
|
+
"name": "allowance",
|
278
|
+
"type": "uint256"
|
279
|
+
},
|
280
|
+
{
|
281
|
+
"internalType": "uint256",
|
282
|
+
"name": "amount",
|
283
|
+
"type": "uint256"
|
284
|
+
}
|
285
|
+
],
|
286
|
+
"name": "ErrorComponentServiceWalletAllowanceTooSmall",
|
287
|
+
"type": "error"
|
288
|
+
},
|
289
|
+
{
|
290
|
+
"inputs": [
|
291
|
+
{
|
292
|
+
"internalType": "Amount",
|
293
|
+
"name": "withdrawnAmount",
|
294
|
+
"type": "uint96"
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"internalType": "Amount",
|
298
|
+
"name": "withdrawLimit",
|
299
|
+
"type": "uint96"
|
300
|
+
}
|
301
|
+
],
|
302
|
+
"name": "ErrorComponentServiceWithdrawAmountExceedsLimit",
|
303
|
+
"type": "error"
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"inputs": [],
|
307
|
+
"name": "ErrorComponentServiceWithdrawAmountIsZero",
|
308
|
+
"type": "error"
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"inputs": [
|
312
|
+
{
|
313
|
+
"internalType": "NftId",
|
314
|
+
"name": "nftId",
|
315
|
+
"type": "uint96"
|
316
|
+
}
|
317
|
+
],
|
318
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
319
|
+
"type": "error"
|
320
|
+
},
|
321
|
+
{
|
322
|
+
"inputs": [
|
323
|
+
{
|
324
|
+
"internalType": "address",
|
325
|
+
"name": "contractAddress",
|
326
|
+
"type": "address"
|
327
|
+
}
|
328
|
+
],
|
329
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
330
|
+
"type": "error"
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"inputs": [],
|
334
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
335
|
+
"type": "error"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"inputs": [
|
339
|
+
{
|
340
|
+
"internalType": "NftId",
|
341
|
+
"name": "nftId",
|
342
|
+
"type": "uint96"
|
343
|
+
},
|
344
|
+
{
|
345
|
+
"internalType": "ObjectType",
|
346
|
+
"name": "expectedObjectType",
|
347
|
+
"type": "uint8"
|
348
|
+
}
|
349
|
+
],
|
350
|
+
"name": "ErrorNftOwnableInvalidType",
|
351
|
+
"type": "error"
|
352
|
+
},
|
353
|
+
{
|
354
|
+
"inputs": [
|
355
|
+
{
|
356
|
+
"internalType": "address",
|
357
|
+
"name": "account",
|
358
|
+
"type": "address"
|
359
|
+
}
|
360
|
+
],
|
361
|
+
"name": "ErrorNftOwnableNotOwner",
|
362
|
+
"type": "error"
|
363
|
+
},
|
364
|
+
{
|
365
|
+
"inputs": [
|
366
|
+
{
|
367
|
+
"internalType": "address",
|
368
|
+
"name": "registryAddress",
|
369
|
+
"type": "address"
|
370
|
+
}
|
371
|
+
],
|
372
|
+
"name": "ErrorNotRegistry",
|
373
|
+
"type": "error"
|
374
|
+
},
|
375
|
+
{
|
376
|
+
"inputs": [
|
377
|
+
{
|
378
|
+
"internalType": "NftId",
|
379
|
+
"name": "productNftId",
|
380
|
+
"type": "uint96"
|
381
|
+
},
|
382
|
+
{
|
383
|
+
"internalType": "NftId",
|
384
|
+
"name": "distributionNftId",
|
385
|
+
"type": "uint96"
|
386
|
+
}
|
387
|
+
],
|
388
|
+
"name": "ErrorProductServiceDistributionAlreadyRegistered",
|
389
|
+
"type": "error"
|
390
|
+
},
|
391
|
+
{
|
392
|
+
"inputs": [
|
393
|
+
{
|
394
|
+
"internalType": "NftId",
|
395
|
+
"name": "productNftId",
|
396
|
+
"type": "uint96"
|
397
|
+
}
|
398
|
+
],
|
399
|
+
"name": "ErrorProductServiceNoDistributionExpected",
|
400
|
+
"type": "error"
|
401
|
+
},
|
402
|
+
{
|
403
|
+
"inputs": [
|
404
|
+
{
|
405
|
+
"internalType": "NftId",
|
406
|
+
"name": "productNftId",
|
407
|
+
"type": "uint96"
|
408
|
+
}
|
409
|
+
],
|
410
|
+
"name": "ErrorProductServiceNoOraclesExpected",
|
411
|
+
"type": "error"
|
412
|
+
},
|
413
|
+
{
|
414
|
+
"inputs": [
|
415
|
+
{
|
416
|
+
"internalType": "NftId",
|
417
|
+
"name": "productNftId",
|
418
|
+
"type": "uint96"
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"internalType": "uint8",
|
422
|
+
"name": "expectedOracles",
|
423
|
+
"type": "uint8"
|
424
|
+
}
|
425
|
+
],
|
426
|
+
"name": "ErrorProductServiceOraclesAlreadyRegistered",
|
427
|
+
"type": "error"
|
428
|
+
},
|
429
|
+
{
|
430
|
+
"inputs": [
|
431
|
+
{
|
432
|
+
"internalType": "NftId",
|
433
|
+
"name": "productNftId",
|
434
|
+
"type": "uint96"
|
435
|
+
},
|
436
|
+
{
|
437
|
+
"internalType": "NftId",
|
438
|
+
"name": "poolNftId",
|
439
|
+
"type": "uint96"
|
440
|
+
}
|
441
|
+
],
|
442
|
+
"name": "ErrorProductServicePoolAlreadyRegistered",
|
443
|
+
"type": "error"
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"inputs": [],
|
447
|
+
"name": "ErrorRegisterableNotActive",
|
448
|
+
"type": "error"
|
449
|
+
},
|
450
|
+
{
|
451
|
+
"inputs": [],
|
452
|
+
"name": "InvalidInitialization",
|
453
|
+
"type": "error"
|
454
|
+
},
|
455
|
+
{
|
456
|
+
"inputs": [],
|
457
|
+
"name": "NotInitializing",
|
458
|
+
"type": "error"
|
459
|
+
},
|
460
|
+
{
|
461
|
+
"inputs": [],
|
462
|
+
"name": "ReentrancyGuardReentrantCall",
|
463
|
+
"type": "error"
|
464
|
+
},
|
465
|
+
{
|
466
|
+
"anonymous": false,
|
467
|
+
"inputs": [
|
468
|
+
{
|
469
|
+
"indexed": false,
|
470
|
+
"internalType": "address",
|
471
|
+
"name": "authority",
|
472
|
+
"type": "address"
|
473
|
+
}
|
474
|
+
],
|
475
|
+
"name": "AuthorityUpdated",
|
476
|
+
"type": "event"
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"anonymous": false,
|
480
|
+
"inputs": [
|
481
|
+
{
|
482
|
+
"indexed": false,
|
483
|
+
"internalType": "uint64",
|
484
|
+
"name": "version",
|
485
|
+
"type": "uint64"
|
486
|
+
}
|
487
|
+
],
|
488
|
+
"name": "Initialized",
|
489
|
+
"type": "event"
|
490
|
+
},
|
491
|
+
{
|
492
|
+
"anonymous": false,
|
493
|
+
"inputs": [
|
494
|
+
{
|
495
|
+
"indexed": false,
|
496
|
+
"internalType": "NftId",
|
497
|
+
"name": "componentNftId",
|
498
|
+
"type": "uint96"
|
499
|
+
},
|
500
|
+
{
|
501
|
+
"indexed": false,
|
502
|
+
"internalType": "address",
|
503
|
+
"name": "recipient",
|
504
|
+
"type": "address"
|
505
|
+
},
|
506
|
+
{
|
507
|
+
"indexed": false,
|
508
|
+
"internalType": "address",
|
509
|
+
"name": "token",
|
510
|
+
"type": "address"
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"indexed": false,
|
514
|
+
"internalType": "Amount",
|
515
|
+
"name": "withdrawnAmount",
|
516
|
+
"type": "uint96"
|
517
|
+
}
|
518
|
+
],
|
519
|
+
"name": "LogComponentServiceComponentFeesWithdrawn",
|
520
|
+
"type": "event"
|
521
|
+
},
|
522
|
+
{
|
523
|
+
"anonymous": false,
|
524
|
+
"inputs": [
|
525
|
+
{
|
526
|
+
"indexed": false,
|
527
|
+
"internalType": "NftId",
|
528
|
+
"name": "distributionNftId",
|
529
|
+
"type": "uint96"
|
530
|
+
}
|
531
|
+
],
|
532
|
+
"name": "LogComponentServiceDistributionFeesUpdated",
|
533
|
+
"type": "event"
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"anonymous": false,
|
537
|
+
"inputs": [
|
538
|
+
{
|
539
|
+
"indexed": false,
|
540
|
+
"internalType": "NftId",
|
541
|
+
"name": "poolNftId",
|
542
|
+
"type": "uint96"
|
543
|
+
}
|
544
|
+
],
|
545
|
+
"name": "LogComponentServicePoolFeesUpdated",
|
546
|
+
"type": "event"
|
547
|
+
},
|
548
|
+
{
|
549
|
+
"anonymous": false,
|
550
|
+
"inputs": [
|
551
|
+
{
|
552
|
+
"indexed": false,
|
553
|
+
"internalType": "NftId",
|
554
|
+
"name": "productNftId",
|
555
|
+
"type": "uint96"
|
556
|
+
}
|
557
|
+
],
|
558
|
+
"name": "LogComponentServiceProductFeesUpdated",
|
559
|
+
"type": "event"
|
560
|
+
},
|
561
|
+
{
|
562
|
+
"anonymous": false,
|
563
|
+
"inputs": [
|
564
|
+
{
|
565
|
+
"indexed": false,
|
566
|
+
"internalType": "NftId",
|
567
|
+
"name": "instanceNftId",
|
568
|
+
"type": "uint96"
|
569
|
+
},
|
570
|
+
{
|
571
|
+
"indexed": false,
|
572
|
+
"internalType": "NftId",
|
573
|
+
"name": "componentNftId",
|
574
|
+
"type": "uint96"
|
575
|
+
},
|
576
|
+
{
|
577
|
+
"indexed": false,
|
578
|
+
"internalType": "ObjectType",
|
579
|
+
"name": "componentType",
|
580
|
+
"type": "uint8"
|
581
|
+
},
|
582
|
+
{
|
583
|
+
"indexed": false,
|
584
|
+
"internalType": "address",
|
585
|
+
"name": "component",
|
586
|
+
"type": "address"
|
587
|
+
},
|
588
|
+
{
|
589
|
+
"indexed": false,
|
590
|
+
"internalType": "address",
|
591
|
+
"name": "token",
|
592
|
+
"type": "address"
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"indexed": false,
|
596
|
+
"internalType": "address",
|
597
|
+
"name": "initialOwner",
|
598
|
+
"type": "address"
|
599
|
+
}
|
600
|
+
],
|
601
|
+
"name": "LogComponentServiceRegistered",
|
602
|
+
"type": "event"
|
603
|
+
},
|
604
|
+
{
|
605
|
+
"anonymous": false,
|
606
|
+
"inputs": [
|
607
|
+
{
|
608
|
+
"indexed": false,
|
609
|
+
"internalType": "NftId",
|
610
|
+
"name": "nftId",
|
611
|
+
"type": "uint96"
|
612
|
+
},
|
613
|
+
{
|
614
|
+
"indexed": false,
|
615
|
+
"internalType": "string",
|
616
|
+
"name": "feeName",
|
617
|
+
"type": "string"
|
618
|
+
},
|
619
|
+
{
|
620
|
+
"indexed": false,
|
621
|
+
"internalType": "UFixed",
|
622
|
+
"name": "previousFractionalFee",
|
623
|
+
"type": "uint256"
|
624
|
+
},
|
625
|
+
{
|
626
|
+
"indexed": false,
|
627
|
+
"internalType": "uint256",
|
628
|
+
"name": "previousFixedFee",
|
629
|
+
"type": "uint256"
|
630
|
+
},
|
631
|
+
{
|
632
|
+
"indexed": false,
|
633
|
+
"internalType": "UFixed",
|
634
|
+
"name": "newFractionalFee",
|
635
|
+
"type": "uint256"
|
636
|
+
},
|
637
|
+
{
|
638
|
+
"indexed": false,
|
639
|
+
"internalType": "uint256",
|
640
|
+
"name": "newFixedFee",
|
641
|
+
"type": "uint256"
|
642
|
+
}
|
643
|
+
],
|
644
|
+
"name": "LogComponentServiceUpdateFee",
|
645
|
+
"type": "event"
|
646
|
+
},
|
647
|
+
{
|
648
|
+
"anonymous": false,
|
649
|
+
"inputs": [
|
650
|
+
{
|
651
|
+
"indexed": false,
|
652
|
+
"internalType": "NftId",
|
653
|
+
"name": "componentNftId",
|
654
|
+
"type": "uint96"
|
655
|
+
},
|
656
|
+
{
|
657
|
+
"indexed": false,
|
658
|
+
"internalType": "address",
|
659
|
+
"name": "currentWallet",
|
660
|
+
"type": "address"
|
661
|
+
},
|
662
|
+
{
|
663
|
+
"indexed": false,
|
664
|
+
"internalType": "address",
|
665
|
+
"name": "newWallet",
|
666
|
+
"type": "address"
|
667
|
+
}
|
668
|
+
],
|
669
|
+
"name": "LogComponentServiceWalletAddressChanged",
|
670
|
+
"type": "event"
|
671
|
+
},
|
672
|
+
{
|
673
|
+
"anonymous": false,
|
674
|
+
"inputs": [
|
675
|
+
{
|
676
|
+
"indexed": false,
|
677
|
+
"internalType": "NftId",
|
678
|
+
"name": "componentNftId",
|
679
|
+
"type": "uint96"
|
680
|
+
},
|
681
|
+
{
|
682
|
+
"indexed": false,
|
683
|
+
"internalType": "address",
|
684
|
+
"name": "currentWallet",
|
685
|
+
"type": "address"
|
686
|
+
},
|
687
|
+
{
|
688
|
+
"indexed": false,
|
689
|
+
"internalType": "address",
|
690
|
+
"name": "newWallet",
|
691
|
+
"type": "address"
|
692
|
+
},
|
693
|
+
{
|
694
|
+
"indexed": false,
|
695
|
+
"internalType": "uint256",
|
696
|
+
"name": "currentBalance",
|
697
|
+
"type": "uint256"
|
698
|
+
}
|
699
|
+
],
|
700
|
+
"name": "LogComponentServiceWalletTokensTransferred",
|
701
|
+
"type": "event"
|
702
|
+
},
|
703
|
+
{
|
704
|
+
"inputs": [],
|
705
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
706
|
+
"outputs": [
|
707
|
+
{
|
708
|
+
"internalType": "bytes32",
|
709
|
+
"name": "",
|
710
|
+
"type": "bytes32"
|
711
|
+
}
|
712
|
+
],
|
713
|
+
"stateMutability": "view",
|
714
|
+
"type": "function"
|
715
|
+
},
|
716
|
+
{
|
717
|
+
"inputs": [],
|
718
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
719
|
+
"outputs": [
|
720
|
+
{
|
721
|
+
"internalType": "bytes32",
|
722
|
+
"name": "",
|
723
|
+
"type": "bytes32"
|
724
|
+
}
|
725
|
+
],
|
726
|
+
"stateMutability": "view",
|
727
|
+
"type": "function"
|
728
|
+
},
|
729
|
+
{
|
730
|
+
"inputs": [
|
731
|
+
{
|
732
|
+
"internalType": "contract IERC20Metadata",
|
733
|
+
"name": "token",
|
734
|
+
"type": "address"
|
735
|
+
},
|
736
|
+
{
|
737
|
+
"internalType": "Amount",
|
738
|
+
"name": "amount",
|
739
|
+
"type": "uint96"
|
740
|
+
}
|
741
|
+
],
|
742
|
+
"name": "approveStakingTokenHandler",
|
743
|
+
"outputs": [],
|
744
|
+
"stateMutability": "nonpayable",
|
745
|
+
"type": "function"
|
746
|
+
},
|
747
|
+
{
|
748
|
+
"inputs": [
|
749
|
+
{
|
750
|
+
"internalType": "contract IERC20Metadata",
|
751
|
+
"name": "token",
|
752
|
+
"type": "address"
|
753
|
+
},
|
754
|
+
{
|
755
|
+
"internalType": "Amount",
|
756
|
+
"name": "amount",
|
757
|
+
"type": "uint96"
|
758
|
+
}
|
759
|
+
],
|
760
|
+
"name": "approveTokenHandler",
|
761
|
+
"outputs": [],
|
762
|
+
"stateMutability": "nonpayable",
|
763
|
+
"type": "function"
|
764
|
+
},
|
765
|
+
{
|
766
|
+
"inputs": [],
|
767
|
+
"name": "authority",
|
768
|
+
"outputs": [
|
769
|
+
{
|
770
|
+
"internalType": "address",
|
771
|
+
"name": "",
|
772
|
+
"type": "address"
|
773
|
+
}
|
774
|
+
],
|
775
|
+
"stateMutability": "view",
|
776
|
+
"type": "function"
|
777
|
+
},
|
778
|
+
{
|
779
|
+
"inputs": [],
|
780
|
+
"name": "getDomain",
|
781
|
+
"outputs": [
|
782
|
+
{
|
783
|
+
"internalType": "ObjectType",
|
784
|
+
"name": "serviceDomain",
|
785
|
+
"type": "uint8"
|
786
|
+
}
|
787
|
+
],
|
788
|
+
"stateMutability": "pure",
|
789
|
+
"type": "function"
|
790
|
+
},
|
791
|
+
{
|
792
|
+
"inputs": [],
|
793
|
+
"name": "getInitialInfo",
|
794
|
+
"outputs": [
|
795
|
+
{
|
796
|
+
"components": [
|
797
|
+
{
|
798
|
+
"internalType": "NftId",
|
799
|
+
"name": "nftId",
|
800
|
+
"type": "uint96"
|
801
|
+
},
|
802
|
+
{
|
803
|
+
"internalType": "NftId",
|
804
|
+
"name": "parentNftId",
|
805
|
+
"type": "uint96"
|
806
|
+
},
|
807
|
+
{
|
808
|
+
"internalType": "ObjectType",
|
809
|
+
"name": "objectType",
|
810
|
+
"type": "uint8"
|
811
|
+
},
|
812
|
+
{
|
813
|
+
"internalType": "bool",
|
814
|
+
"name": "isInterceptor",
|
815
|
+
"type": "bool"
|
816
|
+
},
|
817
|
+
{
|
818
|
+
"internalType": "address",
|
819
|
+
"name": "objectAddress",
|
820
|
+
"type": "address"
|
821
|
+
},
|
822
|
+
{
|
823
|
+
"internalType": "address",
|
824
|
+
"name": "initialOwner",
|
825
|
+
"type": "address"
|
826
|
+
},
|
827
|
+
{
|
828
|
+
"internalType": "bytes",
|
829
|
+
"name": "data",
|
830
|
+
"type": "bytes"
|
831
|
+
}
|
832
|
+
],
|
833
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
834
|
+
"name": "info",
|
835
|
+
"type": "tuple"
|
836
|
+
}
|
837
|
+
],
|
838
|
+
"stateMutability": "view",
|
839
|
+
"type": "function"
|
840
|
+
},
|
841
|
+
{
|
842
|
+
"inputs": [],
|
843
|
+
"name": "getNftId",
|
844
|
+
"outputs": [
|
845
|
+
{
|
846
|
+
"internalType": "NftId",
|
847
|
+
"name": "",
|
848
|
+
"type": "uint96"
|
849
|
+
}
|
850
|
+
],
|
851
|
+
"stateMutability": "view",
|
852
|
+
"type": "function"
|
853
|
+
},
|
854
|
+
{
|
855
|
+
"inputs": [],
|
856
|
+
"name": "getOwner",
|
857
|
+
"outputs": [
|
858
|
+
{
|
859
|
+
"internalType": "address",
|
860
|
+
"name": "",
|
861
|
+
"type": "address"
|
862
|
+
}
|
863
|
+
],
|
864
|
+
"stateMutability": "view",
|
865
|
+
"type": "function"
|
866
|
+
},
|
867
|
+
{
|
868
|
+
"inputs": [],
|
869
|
+
"name": "getRegistry",
|
870
|
+
"outputs": [
|
871
|
+
{
|
872
|
+
"internalType": "contract IRegistry",
|
873
|
+
"name": "",
|
874
|
+
"type": "address"
|
875
|
+
}
|
876
|
+
],
|
877
|
+
"stateMutability": "view",
|
878
|
+
"type": "function"
|
879
|
+
},
|
880
|
+
{
|
881
|
+
"inputs": [],
|
882
|
+
"name": "getRelease",
|
883
|
+
"outputs": [
|
884
|
+
{
|
885
|
+
"internalType": "VersionPart",
|
886
|
+
"name": "release",
|
887
|
+
"type": "uint8"
|
888
|
+
}
|
889
|
+
],
|
890
|
+
"stateMutability": "view",
|
891
|
+
"type": "function"
|
892
|
+
},
|
893
|
+
{
|
894
|
+
"inputs": [],
|
895
|
+
"name": "getRoleId",
|
896
|
+
"outputs": [
|
897
|
+
{
|
898
|
+
"internalType": "RoleId",
|
899
|
+
"name": "serviceRoleId",
|
900
|
+
"type": "uint64"
|
901
|
+
}
|
902
|
+
],
|
903
|
+
"stateMutability": "view",
|
904
|
+
"type": "function"
|
905
|
+
},
|
906
|
+
{
|
907
|
+
"inputs": [],
|
908
|
+
"name": "getVersion",
|
909
|
+
"outputs": [
|
910
|
+
{
|
911
|
+
"internalType": "Version",
|
912
|
+
"name": "",
|
913
|
+
"type": "uint24"
|
914
|
+
}
|
915
|
+
],
|
916
|
+
"stateMutability": "pure",
|
917
|
+
"type": "function"
|
918
|
+
},
|
919
|
+
{
|
920
|
+
"inputs": [
|
921
|
+
{
|
922
|
+
"internalType": "address",
|
923
|
+
"name": "activatedBy",
|
924
|
+
"type": "address"
|
925
|
+
},
|
926
|
+
{
|
927
|
+
"internalType": "bytes",
|
928
|
+
"name": "data",
|
929
|
+
"type": "bytes"
|
930
|
+
}
|
931
|
+
],
|
932
|
+
"name": "initializeVersionable",
|
933
|
+
"outputs": [],
|
934
|
+
"stateMutability": "nonpayable",
|
935
|
+
"type": "function"
|
936
|
+
},
|
937
|
+
{
|
938
|
+
"inputs": [],
|
939
|
+
"name": "isActive",
|
940
|
+
"outputs": [
|
941
|
+
{
|
942
|
+
"internalType": "bool",
|
943
|
+
"name": "active",
|
944
|
+
"type": "bool"
|
945
|
+
}
|
946
|
+
],
|
947
|
+
"stateMutability": "view",
|
948
|
+
"type": "function"
|
949
|
+
},
|
950
|
+
{
|
951
|
+
"inputs": [],
|
952
|
+
"name": "isConsumingScheduledOp",
|
953
|
+
"outputs": [
|
954
|
+
{
|
955
|
+
"internalType": "bytes4",
|
956
|
+
"name": "",
|
957
|
+
"type": "bytes4"
|
958
|
+
}
|
959
|
+
],
|
960
|
+
"stateMutability": "view",
|
961
|
+
"type": "function"
|
962
|
+
},
|
963
|
+
{
|
964
|
+
"inputs": [],
|
965
|
+
"name": "linkToRegisteredNftId",
|
966
|
+
"outputs": [
|
967
|
+
{
|
968
|
+
"internalType": "NftId",
|
969
|
+
"name": "nftId",
|
970
|
+
"type": "uint96"
|
971
|
+
}
|
972
|
+
],
|
973
|
+
"stateMutability": "nonpayable",
|
974
|
+
"type": "function"
|
975
|
+
},
|
976
|
+
{
|
977
|
+
"inputs": [
|
978
|
+
{
|
979
|
+
"internalType": "address",
|
980
|
+
"name": "component",
|
981
|
+
"type": "address"
|
982
|
+
}
|
983
|
+
],
|
984
|
+
"name": "registerComponent",
|
985
|
+
"outputs": [
|
986
|
+
{
|
987
|
+
"internalType": "NftId",
|
988
|
+
"name": "componentNftId",
|
989
|
+
"type": "uint96"
|
990
|
+
}
|
991
|
+
],
|
992
|
+
"stateMutability": "nonpayable",
|
993
|
+
"type": "function"
|
994
|
+
},
|
995
|
+
{
|
996
|
+
"inputs": [
|
997
|
+
{
|
998
|
+
"internalType": "address",
|
999
|
+
"name": "productAddress",
|
1000
|
+
"type": "address"
|
1001
|
+
}
|
1002
|
+
],
|
1003
|
+
"name": "registerProduct",
|
1004
|
+
"outputs": [
|
1005
|
+
{
|
1006
|
+
"internalType": "NftId",
|
1007
|
+
"name": "productNftId",
|
1008
|
+
"type": "uint96"
|
1009
|
+
}
|
1010
|
+
],
|
1011
|
+
"stateMutability": "nonpayable",
|
1012
|
+
"type": "function"
|
1013
|
+
},
|
1014
|
+
{
|
1015
|
+
"inputs": [
|
1016
|
+
{
|
1017
|
+
"internalType": "address",
|
1018
|
+
"name": "newAuthority",
|
1019
|
+
"type": "address"
|
1020
|
+
}
|
1021
|
+
],
|
1022
|
+
"name": "setAuthority",
|
1023
|
+
"outputs": [],
|
1024
|
+
"stateMutability": "nonpayable",
|
1025
|
+
"type": "function"
|
1026
|
+
},
|
1027
|
+
{
|
1028
|
+
"inputs": [
|
1029
|
+
{
|
1030
|
+
"components": [
|
1031
|
+
{
|
1032
|
+
"internalType": "UFixed",
|
1033
|
+
"name": "fractionalFee",
|
1034
|
+
"type": "uint256"
|
1035
|
+
},
|
1036
|
+
{
|
1037
|
+
"internalType": "uint256",
|
1038
|
+
"name": "fixedFee",
|
1039
|
+
"type": "uint256"
|
1040
|
+
}
|
1041
|
+
],
|
1042
|
+
"internalType": "struct Fee",
|
1043
|
+
"name": "distributionFee",
|
1044
|
+
"type": "tuple"
|
1045
|
+
},
|
1046
|
+
{
|
1047
|
+
"components": [
|
1048
|
+
{
|
1049
|
+
"internalType": "UFixed",
|
1050
|
+
"name": "fractionalFee",
|
1051
|
+
"type": "uint256"
|
1052
|
+
},
|
1053
|
+
{
|
1054
|
+
"internalType": "uint256",
|
1055
|
+
"name": "fixedFee",
|
1056
|
+
"type": "uint256"
|
1057
|
+
}
|
1058
|
+
],
|
1059
|
+
"internalType": "struct Fee",
|
1060
|
+
"name": "minDistributionOwnerFee",
|
1061
|
+
"type": "tuple"
|
1062
|
+
}
|
1063
|
+
],
|
1064
|
+
"name": "setDistributionFees",
|
1065
|
+
"outputs": [],
|
1066
|
+
"stateMutability": "nonpayable",
|
1067
|
+
"type": "function"
|
1068
|
+
},
|
1069
|
+
{
|
1070
|
+
"inputs": [
|
1071
|
+
{
|
1072
|
+
"internalType": "address",
|
1073
|
+
"name": "componentAddress",
|
1074
|
+
"type": "address"
|
1075
|
+
},
|
1076
|
+
{
|
1077
|
+
"internalType": "bool",
|
1078
|
+
"name": "locked",
|
1079
|
+
"type": "bool"
|
1080
|
+
}
|
1081
|
+
],
|
1082
|
+
"name": "setLockedFromComponent",
|
1083
|
+
"outputs": [],
|
1084
|
+
"stateMutability": "nonpayable",
|
1085
|
+
"type": "function"
|
1086
|
+
},
|
1087
|
+
{
|
1088
|
+
"inputs": [
|
1089
|
+
{
|
1090
|
+
"internalType": "address",
|
1091
|
+
"name": "componentAddress",
|
1092
|
+
"type": "address"
|
1093
|
+
},
|
1094
|
+
{
|
1095
|
+
"internalType": "bool",
|
1096
|
+
"name": "locked",
|
1097
|
+
"type": "bool"
|
1098
|
+
}
|
1099
|
+
],
|
1100
|
+
"name": "setLockedFromInstance",
|
1101
|
+
"outputs": [],
|
1102
|
+
"stateMutability": "nonpayable",
|
1103
|
+
"type": "function"
|
1104
|
+
},
|
1105
|
+
{
|
1106
|
+
"inputs": [
|
1107
|
+
{
|
1108
|
+
"components": [
|
1109
|
+
{
|
1110
|
+
"internalType": "UFixed",
|
1111
|
+
"name": "fractionalFee",
|
1112
|
+
"type": "uint256"
|
1113
|
+
},
|
1114
|
+
{
|
1115
|
+
"internalType": "uint256",
|
1116
|
+
"name": "fixedFee",
|
1117
|
+
"type": "uint256"
|
1118
|
+
}
|
1119
|
+
],
|
1120
|
+
"internalType": "struct Fee",
|
1121
|
+
"name": "poolFee",
|
1122
|
+
"type": "tuple"
|
1123
|
+
},
|
1124
|
+
{
|
1125
|
+
"components": [
|
1126
|
+
{
|
1127
|
+
"internalType": "UFixed",
|
1128
|
+
"name": "fractionalFee",
|
1129
|
+
"type": "uint256"
|
1130
|
+
},
|
1131
|
+
{
|
1132
|
+
"internalType": "uint256",
|
1133
|
+
"name": "fixedFee",
|
1134
|
+
"type": "uint256"
|
1135
|
+
}
|
1136
|
+
],
|
1137
|
+
"internalType": "struct Fee",
|
1138
|
+
"name": "stakingFee",
|
1139
|
+
"type": "tuple"
|
1140
|
+
},
|
1141
|
+
{
|
1142
|
+
"components": [
|
1143
|
+
{
|
1144
|
+
"internalType": "UFixed",
|
1145
|
+
"name": "fractionalFee",
|
1146
|
+
"type": "uint256"
|
1147
|
+
},
|
1148
|
+
{
|
1149
|
+
"internalType": "uint256",
|
1150
|
+
"name": "fixedFee",
|
1151
|
+
"type": "uint256"
|
1152
|
+
}
|
1153
|
+
],
|
1154
|
+
"internalType": "struct Fee",
|
1155
|
+
"name": "performanceFee",
|
1156
|
+
"type": "tuple"
|
1157
|
+
}
|
1158
|
+
],
|
1159
|
+
"name": "setPoolFees",
|
1160
|
+
"outputs": [],
|
1161
|
+
"stateMutability": "nonpayable",
|
1162
|
+
"type": "function"
|
1163
|
+
},
|
1164
|
+
{
|
1165
|
+
"inputs": [
|
1166
|
+
{
|
1167
|
+
"components": [
|
1168
|
+
{
|
1169
|
+
"internalType": "UFixed",
|
1170
|
+
"name": "fractionalFee",
|
1171
|
+
"type": "uint256"
|
1172
|
+
},
|
1173
|
+
{
|
1174
|
+
"internalType": "uint256",
|
1175
|
+
"name": "fixedFee",
|
1176
|
+
"type": "uint256"
|
1177
|
+
}
|
1178
|
+
],
|
1179
|
+
"internalType": "struct Fee",
|
1180
|
+
"name": "productFee",
|
1181
|
+
"type": "tuple"
|
1182
|
+
},
|
1183
|
+
{
|
1184
|
+
"components": [
|
1185
|
+
{
|
1186
|
+
"internalType": "UFixed",
|
1187
|
+
"name": "fractionalFee",
|
1188
|
+
"type": "uint256"
|
1189
|
+
},
|
1190
|
+
{
|
1191
|
+
"internalType": "uint256",
|
1192
|
+
"name": "fixedFee",
|
1193
|
+
"type": "uint256"
|
1194
|
+
}
|
1195
|
+
],
|
1196
|
+
"internalType": "struct Fee",
|
1197
|
+
"name": "processingFee",
|
1198
|
+
"type": "tuple"
|
1199
|
+
}
|
1200
|
+
],
|
1201
|
+
"name": "setProductFees",
|
1202
|
+
"outputs": [],
|
1203
|
+
"stateMutability": "nonpayable",
|
1204
|
+
"type": "function"
|
1205
|
+
},
|
1206
|
+
{
|
1207
|
+
"inputs": [
|
1208
|
+
{
|
1209
|
+
"internalType": "address",
|
1210
|
+
"name": "newWallet",
|
1211
|
+
"type": "address"
|
1212
|
+
}
|
1213
|
+
],
|
1214
|
+
"name": "setWallet",
|
1215
|
+
"outputs": [],
|
1216
|
+
"stateMutability": "nonpayable",
|
1217
|
+
"type": "function"
|
1218
|
+
},
|
1219
|
+
{
|
1220
|
+
"inputs": [
|
1221
|
+
{
|
1222
|
+
"internalType": "bytes4",
|
1223
|
+
"name": "interfaceId",
|
1224
|
+
"type": "bytes4"
|
1225
|
+
}
|
1226
|
+
],
|
1227
|
+
"name": "supportsInterface",
|
1228
|
+
"outputs": [
|
1229
|
+
{
|
1230
|
+
"internalType": "bool",
|
1231
|
+
"name": "",
|
1232
|
+
"type": "bool"
|
1233
|
+
}
|
1234
|
+
],
|
1235
|
+
"stateMutability": "view",
|
1236
|
+
"type": "function"
|
1237
|
+
},
|
1238
|
+
{
|
1239
|
+
"inputs": [
|
1240
|
+
{
|
1241
|
+
"internalType": "bytes",
|
1242
|
+
"name": "data",
|
1243
|
+
"type": "bytes"
|
1244
|
+
}
|
1245
|
+
],
|
1246
|
+
"name": "upgradeVersionable",
|
1247
|
+
"outputs": [],
|
1248
|
+
"stateMutability": "nonpayable",
|
1249
|
+
"type": "function"
|
1250
|
+
},
|
1251
|
+
{
|
1252
|
+
"inputs": [
|
1253
|
+
{
|
1254
|
+
"internalType": "Amount",
|
1255
|
+
"name": "amount",
|
1256
|
+
"type": "uint96"
|
1257
|
+
}
|
1258
|
+
],
|
1259
|
+
"name": "withdrawFees",
|
1260
|
+
"outputs": [
|
1261
|
+
{
|
1262
|
+
"internalType": "Amount",
|
1263
|
+
"name": "withdrawnAmount",
|
1264
|
+
"type": "uint96"
|
1265
|
+
}
|
1266
|
+
],
|
1267
|
+
"stateMutability": "nonpayable",
|
1268
|
+
"type": "function"
|
1269
|
+
}
|
1270
|
+
],
|
1271
|
+
"bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615ab7806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101c6575f3560e01c80636078a3b2116100fe5780638fb360371161009e578063bf7e214f1161006e578063bf7e214f14610419578063c142a30314610421578063deaa59df14610434578063f133a56614610447575f80fd5b80638fb36037146103ca578063ada9652e146103eb578063ae1fa5e6146103ff578063b68d180914610412575f80fd5b80636c741e78116100d95780636c741e781461037557806376b707b7146103955780637a9e5e4b146103af578063893d20e8146103c2575f80fd5b80636078a3b214610332578063644c45e01461034557806367ba1c1014610362575f80fd5b80632d46f5df1161016957806337a897ee1161014457806337a897ee146102d4578063419197fe146102e757806349bb9e4b146102fa5780635ab1bd531461030d575f80fd5b80632d46f5df146102995780633192acb2146102ac578063329d6e74146102c1575f80fd5b8063138461e0116101a4578063138461e01461023c5780631c6b21901461025c5780631eff4b221461026f57806322f3e2d414610291575f80fd5b806301ffc9a7146101ca5780630d8e6e2c1461020b5780630fec111c14610227575b5f80fd5b6101f66101d8366004614b5d565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021361045a565b60405162ffffff9091168152602001610202565b61022f6104e1565b6040516102029190614bb2565b61024461068c565b6040516001600160601b039091168152602001610202565b61024461026a366004614c5a565b610696565b6102835f80516020615a2283398151915281565b604051908152602001610202565b6101f6610dc5565b6102446102a7366004614c89565b610e3c565b6102bf6102ba366004614ca4565b611153565b005b6102bf6102cf366004614e26565b6112b2565b6102bf6102e2366004614e86565b6113fc565b6102bf6102f5366004614ca4565b611714565b6102bf610308366004614eb0565b611860565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610202565b610244610340366004614c89565b61194e565b5f80516020615a02833981519152546001600160601b0316610244565b6102bf610370366004614e86565b611a39565b61037d611db8565b6040516001600160401b039091168152602001610202565b61039d611e44565b60405160ff9091168152602001610202565b6102bf6103bd366004614c89565b611e60565b61031a611ee2565b6103d2612013565b6040516001600160e01b03199091168152602001610202565b6102835f80516020615a0283398151915281565b6102bf61040d366004614f09565b61205b565b600b61039d565b61031a6120e4565b6102bf61042f366004614f35565b612112565b6102bf610442366004614c89565b6124a6565b6102bf610455366004614f09565b6125e5565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156104b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104dc9190614f78565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f5f80516020615a2283398151915290506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561057e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105a29190614fa5565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160701b909104161515606082015230608082015260a0016105ea611ee2565b6001600160a01b0316815260200182600101805461060790614fc0565b80601f016020809104026020016040519081016040528092919081815260200182805461063390614fc0565b801561067e5780601f106106555761010080835404028352916020019161067e565b820191905f5260205f20905b81548152906001019060200180831161066157829003601f168201915b505050505081525091505090565b5f6104dc30612946565b5f80806106a3600b612b3f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107089190614ff2565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015610754573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261077b919081019061506c565b9050849350836001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156107ed573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108119190614fa5565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af415801561085a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087e9190615140565b1561095b57816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e39190614ff2565b604051630232ca4960e01b81526001600160601b03851660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610930573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109549190614fa5565b9350610b82565b604051630a4d29dd60e31b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af41580156109b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d59190615140565b156109f35760405163b079ec2b60e01b815260040160405180910390fd5b5f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a549190614ff2565b604051630232ca4960e01b81526001600160601b03861660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610aa1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac59190614fa5565b604051632601631360e21b81526001600160601b0387811660048301528216602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af4158015610b26573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4a9190615140565b15610b805760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b505b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610be1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c059190614ff2565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038087166024830152871660448201526064015f604051808303815f87803b158015610c5a575f80fd5b505af1158015610c6c573d5f803e3d5ffd5b505050505f610c836001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03861660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610cd0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf49190614ff2565b602080840151604080516001600160601b03808a1682526001600160a01b0380871695830195909552939092169082015290871660608201529091507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde99060800160405180910390a181604001516001600160a01b03166367ed5f3682876040518363ffffffff1660e01b8152600401610d8f92919061515b565b5f604051808303815f87803b158015610da6575f80fd5b505af1158015610db8573d5f803e3d5ffd5b5050505050505050919050565b5f610dce6120e4565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610e12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e369190615140565b15905090565b5f610e45612b55565b81610e4f81612b8c565b5f80610e5c85600c612c3e565b604080516330422f5360e21b815290519199509396509194508893505f926001600160a01b0385169263c108bd4c9250600480830192869291908290030181865afa158015610ead573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610ed4919081019061521e565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f1d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f419190614fa5565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af4158015610f9d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fc19190614fa5565b6001600160601b031660c0820152606081015160ff166001600160401b03811115610fee57610fee614cdb565b604051908082528060200260200182016040528015611017578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0384169063fe2ee7929061104b90899085906004016153e5565b5f604051808303815f87803b158015611062575f80fd5b505af1158015611074573d5f803e3d5ffd5b50505050826001600160a01b031663bedaa84687846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa1580156110c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e99190615435565b6040518363ffffffff1660e01b81526004016111069291906154d2565b5f604051808303815f87803b15801561111d575f80fd5b505af115801561112f573d5f803e3d5ffd5b50505050505050505061114e60015f80516020615a4283398151915255565b919050565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__630c21dea261117f6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044015f60405180830381865af41580156111c6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526111ed9190810190615639565b505f336001600160a01b03166343d752d36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561122b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124f9190614ff2565b60405163ea0b3c7360e01b81529091506001600160a01b0382169063ea0b3c7390611280908690869060040161515b565b5f604051808303815f87803b158015611297575f80fd5b505af11580156112a9573d5f803e3d5ffd5b50505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6112d461045a565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611312573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611336919061567e565b5f80516020615a628339815191528054600160401b900460ff1680611368575080546001600160401b03808416911610155b156113865760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556113b0836131e7565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80611408600e612b3f565b915091505f80611477836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561144d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114719190614ff2565b856131ef565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b81526004016114b9929190615699565b602060405180830381865af41580156114d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f89190615140565b61153e57611533836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a6132f1565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161157a91908a90600401615699565b602060405180830381865af4158015611595573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115b99190615140565b61160d57611602836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460600151896132f1565b506060810185905260015b80156112a957836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561164f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116739190614ff2565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b81526004016116a09291906154d2565b5f604051808303815f87803b1580156116b7575f80fd5b505af11580156116c9573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a150505050505050565b5f80611720600b612b3f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611761573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117859190614ff2565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa1580156117d1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526117f8919081019061506c565b604001519050806001600160a01b031663ea0b3c7386866040518363ffffffff1660e01b815260040161182c92919061515b565b5f604051808303815f87803b158015611843575f80fd5b505af1158015611855573d5f803e3d5ffd5b505050505050505050565b5f80516020615a628339815191528054600160401b810460ff1615906001600160401b03165f811580156118915750825b90505f826001600160401b031660011480156118ac5750303b155b9050811580156118ba575080155b156118d85760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561190257845460ff60401b1916600160401b1785555b61190c8787613344565b83156112a957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611703565b5f8161195981612b8c565b5f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015611995573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526119bc9190810190615639565b60400151905060ff8116600f036119de576119d6846134dc565b925050611a33565b60ff8116600e036119f2576119d6846137b3565b60ff8116600d03611a06576119d684613971565b604051630de61afd60e41b81526001600160a01b038516600482015260ff82166024820152604401610b77565b50919050565b611a41612b55565b5f80611a4d600c612b3f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a8e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ab29190614ff2565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa158015611b00573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b249190615435565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611b6291908a90600401615699565b602060405180830381865af4158015611b7d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ba19190615140565b611bdd57611bd6846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f0151896132f1565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611c1991908990600401615699565b602060405180830381865af4158015611c34573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c589190615140565b611c9c57611c91846040518060400160405280600d81526020016c50726f63657373696e6746656560981b8152508460200151886132f1565b506020810184905260015b8015611d9a57826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d029190614ff2565b6001600160a01b031663462d5a8485846040518363ffffffff1660e01b8152600401611d2f9291906154d2565b5f604051808303815f87803b158015611d46575f80fd5b505af1158015611d58573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b50505050611db460015f80516020615a4283398151915255565b5050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b611ddd611e44565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611e20573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104dc919061567e565b5f80516020615a2283398151915254600160681b900460ff1690565b33611e696120e4565b6001600160a01b0316816001600160a01b031614611ea45760405162d1953b60e31b81526001600160a01b0382166004820152602401610b77565b816001600160a01b03163b5f03611ed9576040516361798f2f60e11b81526001600160a01b0383166004820152602401610b77565b611db482613b37565b5f805f80516020615a0283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611f4e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f729190615140565b15611ffd576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611fd3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ff79190614ff2565b91505090565b54600160601b90046001600160a01b0316919050565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0080545f9190600160a01b900460ff1661204d575f611ff7565b638fb3603760e01b91505090565b3361206581612b8c565b5f612071600b5f613baa565b9150506120de816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120d79190614ff2565b8585613d5c565b50505050565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00546001600160a01b031690565b5f8061211e600f612b3f565b915091505f80612163836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561144d573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b81526004016121a5929190615699565b602060405180830381865af41580156121c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121e49190615140565b612222576122178360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b6132f1565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161225e91908b90600401615699565b602060405180830381865af4158015612279573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061229d9190615140565b6122de576122d3836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a6132f1565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161231a91908a90600401615699565b602060405180830381865af4158015612335573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123599190615140565b61239e57612393836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c00151896132f1565b5060c0810185905260015b801561249c57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124049190614ff2565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b81526004016124319291906154d2565b5f604051808303815f87803b158015612448575f80fd5b505af115801561245a573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b5f806124b2600b612b3f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125179190614ff2565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015612563573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261258a919081019061506c565b604090810151905163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b1580156125d3575f80fd5b505af115801561249c573d5f803e3d5ffd5b5f6125f86001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa15801561263c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126609190614fa5565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156126b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126dd9190615140565b156126fd57604051632c057fb960e11b8152336004820152602401610b77565b5f6127106001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa15801561275c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526127839190810190615639565b60400151905061279c81600a5b60ff9081169116141590565b156127c557604051630a7f204160e21b815233600482015260ff82166024820152604401610b77565b5f336001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612802573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061282691906156bf565b90506128ab8161283461045a565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015612887573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061279091906156bf565b156128d4576040516302d3414160e31b815233600482015260ff82166024820152604401610b77565b5f3390505f8190506112a9816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa15801561291b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061293f9190614ff2565b8888613d5c565b5f805f80516020615a0283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156129b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129d69190615140565b15612a025780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610b77565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612a54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a789190615140565b612aa05760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610b77565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612af2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b169190614fa5565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f80612b4c836001613baa565b91509150915091565b5f80516020615a42833981519152805460011901612b8657604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b60405163d905700760e01b81526001600160a01b038216600482015263a9c1bc6f60e01b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af4158015612bef573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c139190615140565b612c3b5760405163b03d8c4360e01b81526001600160a01b0382166004820152602401610b77565b50565b5f805f805f805f805f612c63612c5c6001546001600160a01b031690565b8c8c613d92565b809550819650829a508397508498505050505050826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cb3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cd79190614ff2565b9850826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d15573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d399190614ff2565b9750826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d9b9190614ff2565b965060ff8a16600c03612e2757600354604051635d96628960e01b81526001600160a01b038481166004830152838116602483015290911690635d966289906044015f604051808303815f875af1158015612df8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e1f9190810190615639565b519450612eab565b600354604051631fa14e4960e11b81526001600160a01b03848116600483015260ff8d166024830152838116604483015290911690633f429c92906064015f604051808303815f875af1158015612e80573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612ea79190810190615639565b5194505b5f826001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612ee7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612f0e919081019061506c565b602081015190915073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d612f426001546001600160a01b031690565b86848e6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f80573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fa49190614ff2565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af4158015612ffe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130229190614ff2565b6001600160a01b03908116604080850191909152516328f72e8760e01b8152908a16906328f72e879061305b908a9086906004016156da565b5f604051808303815f87803b158015613072575f80fd5b505af1158015613084573d5f803e3d5ffd5b50505050836001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af11580156130c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130e99190614fa5565b506040516392e2a62f60e01b81526001600160a01b0385811660048301528b16906392e2a62f906024015f604051808303815f87803b15801561312a575f80fd5b505af115801561313c573d5f803e3d5ffd5b505050507f269a46dac9ba8227194b6513fdb68da07796b42aa1d111f1eaec8f2126aed6c686888e8785886040516131bc969594939291906001600160601b03968716815294909516602085015260ff9290921660408401526001600160a01b03908116606084015290811660808301529190911660a082015260c00190565b60405180910390a15050505050509295509295909350565b60015f80516020615a4283398151915255565b6101c66144e6565b5f6131f8614a79565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015613251573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132759190614fa5565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa1580156132c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132e89190615435565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db94613336948a948a949293909290615746565b60405180910390a150505050565b5f80516020615a628339815191528054600160401b810460ff1615906001600160401b03165f811580156133755750825b90505f826001600160401b031660011480156133905750303b155b90508115801561339e575080155b156133bc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156133e657845460ff60401b1916600160401b1785555b5f80878060200190518101906133fc919061578c565b9150915061340b82828b61451e565b61341560286145c0565b600280546001600160a01b0319166001600160a01b039290921691909117815561343e906145c0565b600380546001600160a01b0319166001600160a01b0392909216919091179055613468600a6145c0565b600480546001600160a01b0319166001600160a01b03929092169190911790556134986331803d1360e01b614657565b505083156112a957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611703565b5f808080806134ec86600f612c3e565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa158015613545573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261356c919081019061521e565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156135cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135ef9190615140565b156136265760a08101516040516397f129bf60e01b81526001600160601b0380851660048301529091166024820152604401610b77565b5f879050836001600160a01b031663fe7fc94188836001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015613676573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061369a91906157b9565b604080516001600160e01b031960e086901b1681526001600160601b03938416600482015282519093166024840152602082015115156044840152810151151560648301526060810151151560848301526080810151151560a483015260a081015160c483015260c0015160e4820152610104015f604051808303815f87803b158015613725575f80fd5b505af1158015613737573d5f803e3d5ffd5b505050506001600160601b03871660a083015260405163659743e960e11b81526001600160a01b0385169063cb2e87d29061377b908690869060ff90600401615847565b5f604051808303815f87803b158015613792575f80fd5b505af11580156137a4573d5f803e3d5ffd5b50505050505050505050919050565b5f6137bc612b55565b5f8080806137cb86600e612c3e565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa158015613824573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261384b919081019061521e565b9050806040015161387a5760405163931d421760e01b81526001600160601b0383166004820152602401610b77565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156138d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138fa9190615140565b156139315760c08101516040516323a0cc7160e11b81526001600160601b0380851660048301529091166024820152604401610b77565b6001600160601b03861660c082015260405163659743e960e11b81526001600160a01b0384169063cb2e87d290611106908590859060ff90600401615847565b5f8080808061398186600d612c3e565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa1580156139da573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613a01919081019061521e565b9050806060015160ff165f03613a3557604051634435e56b60e01b81526001600160601b0383166004820152602401610b77565b806060015160ff16816080015160ff1603613a7d5760608101516040516379060d1360e11b81526001600160601b038416600482015260ff9091166024820152604401610b77565b858160e00151826080015160ff1681518110613a9b57613a9b61587b565b6001600160601b039092166020928302919091019091015260808101805190613ac38261588f565b60ff169052506001600160a01b03831663cb2e87d28383613ae260ff90565b6040518463ffffffff1660e01b8152600401613b0093929190615847565b5f604051808303815f87803b158015613b17575f80fd5b505af1158015613b29573d5f803e3d5ffd5b505050505050505050919050565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0080546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015281905f613bee86600b612790565b15613ca85773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed3613c1f6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af4158015613c77573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613c9e91908101906158b9565b9092509050613d50565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a988613cd46001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af4158015613d23573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d4a91908101906158b9565b90925090505b90519590945092505050565b604051638689231360e01b81526001600160a01b0383811660048301528215156024830152841690638689231390604401611280565b6040516308b09a5f60e41b81523360048201525f90819081908190819081906001600160a01b038a1690638b09a5f0906024015f60405180830381865afa158015613ddf573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613e069190810190615639565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613e62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e869190615140565b15613ea65760405163f75940a160e01b8152336004820152602401610b77565b805f015193508792505f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613eeb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613f129190810190615639565b9050613f2981604001518960ff9081169116141590565b15613f69576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b1660248301529091166044820152606401610b77565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b038b811660048301529190911690635e546bee90602401602060405180830381865afa158015613fbb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fdf9190614fa5565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015614036573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061405a9190615140565b15614083576040516322e6526160e11b81526001600160a01b038a166004820152602401610b77565b60405163bf8e179760e01b81526001600160601b03861660048201525f906001600160a01b038c169063bf8e179790602401602060405180830381865afa1580156140d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140f49190614ff2565b9050614161856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015614135573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061415991906156bf565b612790611e44565b156142045789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141c791906156bf565b6141cf611e44565b6040516381ce428760e01b81526001600160a01b03909316600484015260ff9182166024840152166044820152606401610b77565b6142a3856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015614243573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061426791906156bf565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612887573d5f803e3d5ffd5b156143695789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156142e5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061430991906156bf565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015614345573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141cf91906156bf565b61437a8260200151845f0151614683565b156143b25782516020830151604051633e22765160e11b81526001600160601b03928316600482015291166024820152604401610b77565b60ff8916600c0361440f576143cd8360400151612790600a90565b15614406578251604080850151905163179bdfb960e01b81526001600160601b03909216600483015260ff166024820152604401610b77565b8251975061445f565b61441f8360400151612790600c90565b15614457578251604080850151905162d4546160e11b81526001600160601b03909216600483015260ff166024820152604401610b77565b826020015197505b60a082015160405163bf8e179760e01b81526001600160601b038a1660048201529094506001600160a01b038c169063bf8e179790602401602060405180830381865afa1580156144b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144d69190614ff2565b9650505050939792965093509350565b5f80516020615a6283398151915254600160401b900460ff1661451c57604051631afcd79f60e31b815260040160405180910390fd5b565b6145266144e6565b61452e61470e565b6145ab8383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561456f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145939190614fa5565b60085f8660405180602001604052805f81525061471e565b6145bb63daf9067160e01b614657565b505050565b5f6145d36001546001600160a01b031690565b6001600160a01b031663d39e6043836145ea611e44565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561462d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146519190614ff2565b92915050565b61465f6144e6565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401602060405180830381865af41580156146e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906147079190615140565b9392505050565b6147166144e6565b61451c6148c8565b6147266144e6565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af415801561477c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906147a09190615140565b6147c85760405163cf6935e560e01b81526001600160a01b0388166004820152602401610b77565b6147d1876148d0565b6147db86836148e1565b5f80516020615a2283398151915280546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff871602178155604080516376b707b760e01b815290516001600160a01b038a16916376b707b79160048083019260209291908290030181865afa158015614858573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061487c91906156bf565b815461ffff60681b1916600160681b60ff929092169190910260ff60701b191617600160701b85151502178155600181016148b78382615947565b5061249c634a531f3360e01b614657565b6131d46144e6565b6148d86144e6565b612c3b81614957565b6148e96144e6565b6148f282614968565b6148fa614a34565b6001600160a01b0381166149215760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020615a0283398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b61495f6144e6565b612c3b81613b37565b6149706144e6565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af41580156149c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906149ea9190615140565b614a125760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610b77565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b614a3c6144e6565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805161012081019091525f60e0820181815261010083019190915281908152602001614ab860405180604001604052805f81526020015f81525090565b8152602001614ad860405180604001604052805f81526020015f81525090565b8152602001614af860405180604001604052805f81526020015f81525090565b8152602001614b1860405180604001604052805f81526020015f81525090565b8152602001614b3860405180604001604052805f81526020015f81525090565b8152602001614b5860405180604001604052805f81526020015f81525090565b905290565b5f60208284031215614b6d575f80fd5b81356001600160e01b031981168114614707575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614bfa608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614c3e610100840182614b84565b949350505050565b6001600160601b0381168114612c3b575f80fd5b5f60208284031215614c6a575f80fd5b813561470781614c46565b6001600160a01b0381168114612c3b575f80fd5b5f60208284031215614c99575f80fd5b813561470781614c75565b5f8060408385031215614cb5575f80fd5b8235614cc081614c75565b91506020830135614cd081614c46565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715614d1157614d11614cdb565b60405290565b604051608081016001600160401b0381118282101715614d1157614d11614cdb565b60405161010081016001600160401b0381118282101715614d1157614d11614cdb565b60405160e081016001600160401b0381118282101715614d1157614d11614cdb565b604051601f8201601f191681016001600160401b0381118282101715614da657614da6614cdb565b604052919050565b5f6001600160401b03821115614dc657614dc6614cdb565b50601f01601f191660200190565b5f82601f830112614de3575f80fd5b8135614df6614df182614dae565b614d7e565b818152846020838601011115614e0a575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614e36575f80fd5b81356001600160401b03811115614e4b575f80fd5b614c3e84828501614dd4565b5f60408284031215614e67575f80fd5b614e6f614cef565b823581526020928301359281019290925250919050565b5f8060808385031215614e97575f80fd5b614ea18484614e57565b91506132e88460408501614e57565b5f8060408385031215614ec1575f80fd5b8235614ecc81614c75565b915060208301356001600160401b03811115614ee6575f80fd5b614ef285828601614dd4565b9150509250929050565b8015158114612c3b575f80fd5b5f8060408385031215614f1a575f80fd5b8235614f2581614c75565b91506020830135614cd081614efc565b5f805f60c08486031215614f47575f80fd5b614f518585614e57565b9250614f608560408601614e57565b9150614f6f8560808601614e57565b90509250925092565b5f60208284031215614f88575f80fd5b815162ffffff81168114614707575f80fd5b805161114e81614c46565b5f60208284031215614fb5575f80fd5b815161470781614c46565b600181811c90821680614fd457607f821691505b602082108103611a3357634e487b7160e01b5f52602260045260245ffd5b5f60208284031215615002575f80fd5b815161470781614c75565b5f61501a614df184614dae565b905082815283838301111561502d575f80fd5b8282602083015e5f602084830101529392505050565b805161114e81614c75565b5f82601f83011261505d575f80fd5b6147078383516020850161500d565b5f6020828403121561507c575f80fd5b81516001600160401b03811115615091575f80fd5b8201608081850312156150a2575f80fd5b6150aa614d17565b81516001600160401b038111156150bf575f80fd5b8201601f810186136150cf575f80fd5b6150de8682516020840161500d565b8252506150ed60208301615043565b60208201526150fe60408301615043565b604082015260608201516001600160401b0381111561511b575f80fd5b6151278682850161504e565b606083015250949350505050565b805161114e81614efc565b5f60208284031215615150575f80fd5b815161470781614efc565b6001600160a01b039290921682526001600160601b0316602082015260400190565b60ff81168114612c3b575f80fd5b805161114e8161517d565b5f82601f8301126151a5575f80fd5b81516001600160401b038111156151be576151be614cdb565b8060051b6151ce60208201614d7e565b918252602081850181019290810190868411156151e9575f80fd5b6020860192505b8383101561521457825161520381614c46565b8252602092830192909101906151f0565b9695505050505050565b5f6020828403121561522e575f80fd5b81516001600160401b03811115615243575f80fd5b82016101008185031215615255575f80fd5b61525d614d39565b61526682615135565b815261527460208301615135565b602082015261528560408301615135565b60408201526152966060830161518b565b60608201526152a76080830161518b565b60808201526152b860a08301614f9a565b60a08201526152c960c08301614f9a565b60c082015260e08201516001600160401b038111156152e6575f80fd5b6152f286828501615196565b60e083015250949350505050565b5f8151808452602084019350602083015f5b828110156153395781516001600160601b0316865260209586019590910190600101615312565b5093949350505050565b8051151582526020810151151560208301525f6040820151615369604085018215159052565b50606082015161537e606085018260ff169052565b506080820151615393608085018260ff169052565b5060a08201516153ae60a08501826001600160601b03169052565b5060c08201516153c960c08501826001600160601b03169052565b5060e082015161010060e0850152614c3e610100850182615300565b6001600160601b0383168152604060208201525f614c3e6040830184615343565b5f60408284031215615416575f80fd5b61541e614cef565b825181526020928301519281019290925250919050565b5f6101c0828403128015615447575f80fd5b50615450614d5c565b61545a8484615406565b81526154698460408501615406565b602082015261547b8460808501615406565b604082015261548d8460c08501615406565b60608201526154a0846101008501615406565b60808201526154b3846101408501615406565b60a08201526154c6846101808501615406565b60c08201529392505050565b6001600160601b038316815281518051602080840191909152015160408201526101e0810160208381015180516060850152908101516080840152506040830151805160a0840152602081015160c0840152506060830151805160e08401526020810151610100840152506080830151805161012084015260208101516101408401525060a0830151805161016084015260208101516101808401525060c083015180516101a084015260208101516101c0840152509392505050565b5f60e0828403121561559f575f80fd5b6155a7614d5c565b90506155b282614f9a565b81526155c060208301614f9a565b60208201526155d16040830161518b565b60408201526155e260608301615135565b60608201526155f360808301615043565b608082015261560460a08301615043565b60a082015260c08201516001600160401b03811115615621575f80fd5b61562d8482850161504e565b60c08301525092915050565b5f60208284031215615649575f80fd5b81516001600160401b0381111561565e575f80fd5b614c3e8482850161558f565b6001600160401b0381168114612c3b575f80fd5b5f6020828403121561568e575f80fd5b81516147078161566a565b825181526020808401518183015282516040830152820151606082015260808101614707565b5f602082840312156156cf575f80fd5b81516147078161517d565b6001600160601b0383168152604060208201525f82516080604084015261570460c0840182614b84565b60208501516001600160a01b0390811660608681019190915260408701519091166080860152850151848203603f190160a08601529091506152148282614b84565b6001600160601b038716815260c060208201525f61576760c0830188614b84565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f806040838503121561579d575f80fd5b82516157a881614c75565b6020840151909250614cd081614c75565b5f60e08284031280156157ca575f80fd5b506157d3614d5c565b82516157de81614c46565b815260208301516157ee81614efc565b6020820152604083015161580181614efc565b6040820152606083015161581481614efc565b606082015261582560808401615135565b608082015260a0838101519082015260c0928301519281019290925250919050565b6001600160601b0384168152606060208201525f6158686060830185615343565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff81036158b057634e487b7160e01b5f52601160045260245ffd5b60010192915050565b5f80604083850312156158ca575f80fd5b82516001600160401b038111156158df575f80fd5b6158eb8582860161558f565b9250506020830151614cd081614c75565b601f8211156145bb57805f5260205f20601f840160051c810160208510156159215750805b601f840160051c820191505b81811015615940575f815560010161592d565b5050505050565b81516001600160401b0381111561596057615960614cdb565b6159748161596e8454614fc0565b846158fc565b6020601f8211600181146159a6575f831561598f5750848201515b5f19600385901b1c1916600184901b178455615940565b5f84815260208120601f198516915b828110156159d557878501518255602094850194600190920191016159b5565b50848210156159f257868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f006548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122083c0e403cafefc89f7a0bc1f4f780baa923145fec055d6fc11ac1b9e6c676e4e64736f6c634300081a0033",
|
1272
|
+
"deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101c6575f3560e01c80636078a3b2116100fe5780638fb360371161009e578063bf7e214f1161006e578063bf7e214f14610419578063c142a30314610421578063deaa59df14610434578063f133a56614610447575f80fd5b80638fb36037146103ca578063ada9652e146103eb578063ae1fa5e6146103ff578063b68d180914610412575f80fd5b80636c741e78116100d95780636c741e781461037557806376b707b7146103955780637a9e5e4b146103af578063893d20e8146103c2575f80fd5b80636078a3b214610332578063644c45e01461034557806367ba1c1014610362575f80fd5b80632d46f5df1161016957806337a897ee1161014457806337a897ee146102d4578063419197fe146102e757806349bb9e4b146102fa5780635ab1bd531461030d575f80fd5b80632d46f5df146102995780633192acb2146102ac578063329d6e74146102c1575f80fd5b8063138461e0116101a4578063138461e01461023c5780631c6b21901461025c5780631eff4b221461026f57806322f3e2d414610291575f80fd5b806301ffc9a7146101ca5780630d8e6e2c1461020b5780630fec111c14610227575b5f80fd5b6101f66101d8366004614b5d565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021361045a565b60405162ffffff9091168152602001610202565b61022f6104e1565b6040516102029190614bb2565b61024461068c565b6040516001600160601b039091168152602001610202565b61024461026a366004614c5a565b610696565b6102835f80516020615a2283398151915281565b604051908152602001610202565b6101f6610dc5565b6102446102a7366004614c89565b610e3c565b6102bf6102ba366004614ca4565b611153565b005b6102bf6102cf366004614e26565b6112b2565b6102bf6102e2366004614e86565b6113fc565b6102bf6102f5366004614ca4565b611714565b6102bf610308366004614eb0565b611860565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610202565b610244610340366004614c89565b61194e565b5f80516020615a02833981519152546001600160601b0316610244565b6102bf610370366004614e86565b611a39565b61037d611db8565b6040516001600160401b039091168152602001610202565b61039d611e44565b60405160ff9091168152602001610202565b6102bf6103bd366004614c89565b611e60565b61031a611ee2565b6103d2612013565b6040516001600160e01b03199091168152602001610202565b6102835f80516020615a0283398151915281565b6102bf61040d366004614f09565b61205b565b600b61039d565b61031a6120e4565b6102bf61042f366004614f35565b612112565b6102bf610442366004614c89565b6124a6565b6102bf610455366004614f09565b6125e5565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156104b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104dc9190614f78565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f5f80516020615a2283398151915290506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561057e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105a29190614fa5565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160701b909104161515606082015230608082015260a0016105ea611ee2565b6001600160a01b0316815260200182600101805461060790614fc0565b80601f016020809104026020016040519081016040528092919081815260200182805461063390614fc0565b801561067e5780601f106106555761010080835404028352916020019161067e565b820191905f5260205f20905b81548152906001019060200180831161066157829003601f168201915b505050505081525091505090565b5f6104dc30612946565b5f80806106a3600b612b3f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107089190614ff2565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015610754573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261077b919081019061506c565b9050849350836001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156107ed573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108119190614fa5565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af415801561085a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087e9190615140565b1561095b57816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e39190614ff2565b604051630232ca4960e01b81526001600160601b03851660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610930573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109549190614fa5565b9350610b82565b604051630a4d29dd60e31b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af41580156109b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d59190615140565b156109f35760405163b079ec2b60e01b815260040160405180910390fd5b5f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a549190614ff2565b604051630232ca4960e01b81526001600160601b03861660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610aa1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac59190614fa5565b604051632601631360e21b81526001600160601b0387811660048301528216602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af4158015610b26573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4a9190615140565b15610b805760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b505b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610be1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c059190614ff2565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038087166024830152871660448201526064015f604051808303815f87803b158015610c5a575f80fd5b505af1158015610c6c573d5f803e3d5ffd5b505050505f610c836001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03861660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610cd0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf49190614ff2565b602080840151604080516001600160601b03808a1682526001600160a01b0380871695830195909552939092169082015290871660608201529091507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde99060800160405180910390a181604001516001600160a01b03166367ed5f3682876040518363ffffffff1660e01b8152600401610d8f92919061515b565b5f604051808303815f87803b158015610da6575f80fd5b505af1158015610db8573d5f803e3d5ffd5b5050505050505050919050565b5f610dce6120e4565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610e12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e369190615140565b15905090565b5f610e45612b55565b81610e4f81612b8c565b5f80610e5c85600c612c3e565b604080516330422f5360e21b815290519199509396509194508893505f926001600160a01b0385169263c108bd4c9250600480830192869291908290030181865afa158015610ead573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610ed4919081019061521e565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f1d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f419190614fa5565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af4158015610f9d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fc19190614fa5565b6001600160601b031660c0820152606081015160ff166001600160401b03811115610fee57610fee614cdb565b604051908082528060200260200182016040528015611017578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0384169063fe2ee7929061104b90899085906004016153e5565b5f604051808303815f87803b158015611062575f80fd5b505af1158015611074573d5f803e3d5ffd5b50505050826001600160a01b031663bedaa84687846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa1580156110c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e99190615435565b6040518363ffffffff1660e01b81526004016111069291906154d2565b5f604051808303815f87803b15801561111d575f80fd5b505af115801561112f573d5f803e3d5ffd5b50505050505050505061114e60015f80516020615a4283398151915255565b919050565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__630c21dea261117f6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044015f60405180830381865af41580156111c6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526111ed9190810190615639565b505f336001600160a01b03166343d752d36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561122b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124f9190614ff2565b60405163ea0b3c7360e01b81529091506001600160a01b0382169063ea0b3c7390611280908690869060040161515b565b5f604051808303815f87803b158015611297575f80fd5b505af11580156112a9573d5f803e3d5ffd5b50505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6112d461045a565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611312573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611336919061567e565b5f80516020615a628339815191528054600160401b900460ff1680611368575080546001600160401b03808416911610155b156113865760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556113b0836131e7565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80611408600e612b3f565b915091505f80611477836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561144d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114719190614ff2565b856131ef565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b81526004016114b9929190615699565b602060405180830381865af41580156114d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f89190615140565b61153e57611533836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a6132f1565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161157a91908a90600401615699565b602060405180830381865af4158015611595573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115b99190615140565b61160d57611602836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460600151896132f1565b506060810185905260015b80156112a957836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561164f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116739190614ff2565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b81526004016116a09291906154d2565b5f604051808303815f87803b1580156116b7575f80fd5b505af11580156116c9573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a150505050505050565b5f80611720600b612b3f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611761573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117859190614ff2565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa1580156117d1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526117f8919081019061506c565b604001519050806001600160a01b031663ea0b3c7386866040518363ffffffff1660e01b815260040161182c92919061515b565b5f604051808303815f87803b158015611843575f80fd5b505af1158015611855573d5f803e3d5ffd5b505050505050505050565b5f80516020615a628339815191528054600160401b810460ff1615906001600160401b03165f811580156118915750825b90505f826001600160401b031660011480156118ac5750303b155b9050811580156118ba575080155b156118d85760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561190257845460ff60401b1916600160401b1785555b61190c8787613344565b83156112a957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611703565b5f8161195981612b8c565b5f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015611995573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526119bc9190810190615639565b60400151905060ff8116600f036119de576119d6846134dc565b925050611a33565b60ff8116600e036119f2576119d6846137b3565b60ff8116600d03611a06576119d684613971565b604051630de61afd60e41b81526001600160a01b038516600482015260ff82166024820152604401610b77565b50919050565b611a41612b55565b5f80611a4d600c612b3f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a8e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ab29190614ff2565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa158015611b00573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b249190615435565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611b6291908a90600401615699565b602060405180830381865af4158015611b7d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ba19190615140565b611bdd57611bd6846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f0151896132f1565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611c1991908990600401615699565b602060405180830381865af4158015611c34573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c589190615140565b611c9c57611c91846040518060400160405280600d81526020016c50726f63657373696e6746656560981b8152508460200151886132f1565b506020810184905260015b8015611d9a57826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d029190614ff2565b6001600160a01b031663462d5a8485846040518363ffffffff1660e01b8152600401611d2f9291906154d2565b5f604051808303815f87803b158015611d46575f80fd5b505af1158015611d58573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b50505050611db460015f80516020615a4283398151915255565b5050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b611ddd611e44565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611e20573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104dc919061567e565b5f80516020615a2283398151915254600160681b900460ff1690565b33611e696120e4565b6001600160a01b0316816001600160a01b031614611ea45760405162d1953b60e31b81526001600160a01b0382166004820152602401610b77565b816001600160a01b03163b5f03611ed9576040516361798f2f60e11b81526001600160a01b0383166004820152602401610b77565b611db482613b37565b5f805f80516020615a0283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611f4e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f729190615140565b15611ffd576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611fd3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ff79190614ff2565b91505090565b54600160601b90046001600160a01b0316919050565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0080545f9190600160a01b900460ff1661204d575f611ff7565b638fb3603760e01b91505090565b3361206581612b8c565b5f612071600b5f613baa565b9150506120de816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120d79190614ff2565b8585613d5c565b50505050565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00546001600160a01b031690565b5f8061211e600f612b3f565b915091505f80612163836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561144d573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b81526004016121a5929190615699565b602060405180830381865af41580156121c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121e49190615140565b612222576122178360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b6132f1565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161225e91908b90600401615699565b602060405180830381865af4158015612279573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061229d9190615140565b6122de576122d3836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a6132f1565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161231a91908a90600401615699565b602060405180830381865af4158015612335573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123599190615140565b61239e57612393836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c00151896132f1565b5060c0810185905260015b801561249c57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124049190614ff2565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b81526004016124319291906154d2565b5f604051808303815f87803b158015612448575f80fd5b505af115801561245a573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b5f806124b2600b612b3f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125179190614ff2565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015612563573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261258a919081019061506c565b604090810151905163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b1580156125d3575f80fd5b505af115801561249c573d5f803e3d5ffd5b5f6125f86001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa15801561263c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126609190614fa5565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156126b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126dd9190615140565b156126fd57604051632c057fb960e11b8152336004820152602401610b77565b5f6127106001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa15801561275c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526127839190810190615639565b60400151905061279c81600a5b60ff9081169116141590565b156127c557604051630a7f204160e21b815233600482015260ff82166024820152604401610b77565b5f336001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612802573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061282691906156bf565b90506128ab8161283461045a565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015612887573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061279091906156bf565b156128d4576040516302d3414160e31b815233600482015260ff82166024820152604401610b77565b5f3390505f8190506112a9816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa15801561291b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061293f9190614ff2565b8888613d5c565b5f805f80516020615a0283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156129b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129d69190615140565b15612a025780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610b77565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612a54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a789190615140565b612aa05760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610b77565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612af2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b169190614fa5565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f80612b4c836001613baa565b91509150915091565b5f80516020615a42833981519152805460011901612b8657604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b60405163d905700760e01b81526001600160a01b038216600482015263a9c1bc6f60e01b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af4158015612bef573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c139190615140565b612c3b5760405163b03d8c4360e01b81526001600160a01b0382166004820152602401610b77565b50565b5f805f805f805f805f612c63612c5c6001546001600160a01b031690565b8c8c613d92565b809550819650829a508397508498505050505050826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cb3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cd79190614ff2565b9850826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d15573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d399190614ff2565b9750826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d9b9190614ff2565b965060ff8a16600c03612e2757600354604051635d96628960e01b81526001600160a01b038481166004830152838116602483015290911690635d966289906044015f604051808303815f875af1158015612df8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e1f9190810190615639565b519450612eab565b600354604051631fa14e4960e11b81526001600160a01b03848116600483015260ff8d166024830152838116604483015290911690633f429c92906064015f604051808303815f875af1158015612e80573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612ea79190810190615639565b5194505b5f826001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612ee7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612f0e919081019061506c565b602081015190915073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d612f426001546001600160a01b031690565b86848e6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f80573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fa49190614ff2565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af4158015612ffe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130229190614ff2565b6001600160a01b03908116604080850191909152516328f72e8760e01b8152908a16906328f72e879061305b908a9086906004016156da565b5f604051808303815f87803b158015613072575f80fd5b505af1158015613084573d5f803e3d5ffd5b50505050836001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af11580156130c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130e99190614fa5565b506040516392e2a62f60e01b81526001600160a01b0385811660048301528b16906392e2a62f906024015f604051808303815f87803b15801561312a575f80fd5b505af115801561313c573d5f803e3d5ffd5b505050507f269a46dac9ba8227194b6513fdb68da07796b42aa1d111f1eaec8f2126aed6c686888e8785886040516131bc969594939291906001600160601b03968716815294909516602085015260ff9290921660408401526001600160a01b03908116606084015290811660808301529190911660a082015260c00190565b60405180910390a15050505050509295509295909350565b60015f80516020615a4283398151915255565b6101c66144e6565b5f6131f8614a79565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015613251573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132759190614fa5565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa1580156132c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132e89190615435565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db94613336948a948a949293909290615746565b60405180910390a150505050565b5f80516020615a628339815191528054600160401b810460ff1615906001600160401b03165f811580156133755750825b90505f826001600160401b031660011480156133905750303b155b90508115801561339e575080155b156133bc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156133e657845460ff60401b1916600160401b1785555b5f80878060200190518101906133fc919061578c565b9150915061340b82828b61451e565b61341560286145c0565b600280546001600160a01b0319166001600160a01b039290921691909117815561343e906145c0565b600380546001600160a01b0319166001600160a01b0392909216919091179055613468600a6145c0565b600480546001600160a01b0319166001600160a01b03929092169190911790556134986331803d1360e01b614657565b505083156112a957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611703565b5f808080806134ec86600f612c3e565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa158015613545573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261356c919081019061521e565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156135cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135ef9190615140565b156136265760a08101516040516397f129bf60e01b81526001600160601b0380851660048301529091166024820152604401610b77565b5f879050836001600160a01b031663fe7fc94188836001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015613676573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061369a91906157b9565b604080516001600160e01b031960e086901b1681526001600160601b03938416600482015282519093166024840152602082015115156044840152810151151560648301526060810151151560848301526080810151151560a483015260a081015160c483015260c0015160e4820152610104015f604051808303815f87803b158015613725575f80fd5b505af1158015613737573d5f803e3d5ffd5b505050506001600160601b03871660a083015260405163659743e960e11b81526001600160a01b0385169063cb2e87d29061377b908690869060ff90600401615847565b5f604051808303815f87803b158015613792575f80fd5b505af11580156137a4573d5f803e3d5ffd5b50505050505050505050919050565b5f6137bc612b55565b5f8080806137cb86600e612c3e565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa158015613824573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261384b919081019061521e565b9050806040015161387a5760405163931d421760e01b81526001600160601b0383166004820152602401610b77565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156138d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138fa9190615140565b156139315760c08101516040516323a0cc7160e11b81526001600160601b0380851660048301529091166024820152604401610b77565b6001600160601b03861660c082015260405163659743e960e11b81526001600160a01b0384169063cb2e87d290611106908590859060ff90600401615847565b5f8080808061398186600d612c3e565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa1580156139da573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613a01919081019061521e565b9050806060015160ff165f03613a3557604051634435e56b60e01b81526001600160601b0383166004820152602401610b77565b806060015160ff16816080015160ff1603613a7d5760608101516040516379060d1360e11b81526001600160601b038416600482015260ff9091166024820152604401610b77565b858160e00151826080015160ff1681518110613a9b57613a9b61587b565b6001600160601b039092166020928302919091019091015260808101805190613ac38261588f565b60ff169052506001600160a01b03831663cb2e87d28383613ae260ff90565b6040518463ffffffff1660e01b8152600401613b0093929190615847565b5f604051808303815f87803b158015613b17575f80fd5b505af1158015613b29573d5f803e3d5ffd5b505050505050505050919050565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0080546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015281905f613bee86600b612790565b15613ca85773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed3613c1f6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af4158015613c77573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613c9e91908101906158b9565b9092509050613d50565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a988613cd46001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af4158015613d23573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d4a91908101906158b9565b90925090505b90519590945092505050565b604051638689231360e01b81526001600160a01b0383811660048301528215156024830152841690638689231390604401611280565b6040516308b09a5f60e41b81523360048201525f90819081908190819081906001600160a01b038a1690638b09a5f0906024015f60405180830381865afa158015613ddf573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613e069190810190615639565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613e62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e869190615140565b15613ea65760405163f75940a160e01b8152336004820152602401610b77565b805f015193508792505f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613eeb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613f129190810190615639565b9050613f2981604001518960ff9081169116141590565b15613f69576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b1660248301529091166044820152606401610b77565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b038b811660048301529190911690635e546bee90602401602060405180830381865afa158015613fbb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fdf9190614fa5565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015614036573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061405a9190615140565b15614083576040516322e6526160e11b81526001600160a01b038a166004820152602401610b77565b60405163bf8e179760e01b81526001600160601b03861660048201525f906001600160a01b038c169063bf8e179790602401602060405180830381865afa1580156140d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140f49190614ff2565b9050614161856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015614135573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061415991906156bf565b612790611e44565b156142045789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141c791906156bf565b6141cf611e44565b6040516381ce428760e01b81526001600160a01b03909316600484015260ff9182166024840152166044820152606401610b77565b6142a3856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015614243573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061426791906156bf565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612887573d5f803e3d5ffd5b156143695789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156142e5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061430991906156bf565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015614345573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141cf91906156bf565b61437a8260200151845f0151614683565b156143b25782516020830151604051633e22765160e11b81526001600160601b03928316600482015291166024820152604401610b77565b60ff8916600c0361440f576143cd8360400151612790600a90565b15614406578251604080850151905163179bdfb960e01b81526001600160601b03909216600483015260ff166024820152604401610b77565b8251975061445f565b61441f8360400151612790600c90565b15614457578251604080850151905162d4546160e11b81526001600160601b03909216600483015260ff166024820152604401610b77565b826020015197505b60a082015160405163bf8e179760e01b81526001600160601b038a1660048201529094506001600160a01b038c169063bf8e179790602401602060405180830381865afa1580156144b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144d69190614ff2565b9650505050939792965093509350565b5f80516020615a6283398151915254600160401b900460ff1661451c57604051631afcd79f60e31b815260040160405180910390fd5b565b6145266144e6565b61452e61470e565b6145ab8383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561456f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145939190614fa5565b60085f8660405180602001604052805f81525061471e565b6145bb63daf9067160e01b614657565b505050565b5f6145d36001546001600160a01b031690565b6001600160a01b031663d39e6043836145ea611e44565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561462d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146519190614ff2565b92915050565b61465f6144e6565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401602060405180830381865af41580156146e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906147079190615140565b9392505050565b6147166144e6565b61451c6148c8565b6147266144e6565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af415801561477c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906147a09190615140565b6147c85760405163cf6935e560e01b81526001600160a01b0388166004820152602401610b77565b6147d1876148d0565b6147db86836148e1565b5f80516020615a2283398151915280546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff871602178155604080516376b707b760e01b815290516001600160a01b038a16916376b707b79160048083019260209291908290030181865afa158015614858573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061487c91906156bf565b815461ffff60681b1916600160681b60ff929092169190910260ff60701b191617600160701b85151502178155600181016148b78382615947565b5061249c634a531f3360e01b614657565b6131d46144e6565b6148d86144e6565b612c3b81614957565b6148e96144e6565b6148f282614968565b6148fa614a34565b6001600160a01b0381166149215760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020615a0283398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b61495f6144e6565b612c3b81613b37565b6149706144e6565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af41580156149c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906149ea9190615140565b614a125760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610b77565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b614a3c6144e6565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805161012081019091525f60e0820181815261010083019190915281908152602001614ab860405180604001604052805f81526020015f81525090565b8152602001614ad860405180604001604052805f81526020015f81525090565b8152602001614af860405180604001604052805f81526020015f81525090565b8152602001614b1860405180604001604052805f81526020015f81525090565b8152602001614b3860405180604001604052805f81526020015f81525090565b8152602001614b5860405180604001604052805f81526020015f81525090565b905290565b5f60208284031215614b6d575f80fd5b81356001600160e01b031981168114614707575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614bfa608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614c3e610100840182614b84565b949350505050565b6001600160601b0381168114612c3b575f80fd5b5f60208284031215614c6a575f80fd5b813561470781614c46565b6001600160a01b0381168114612c3b575f80fd5b5f60208284031215614c99575f80fd5b813561470781614c75565b5f8060408385031215614cb5575f80fd5b8235614cc081614c75565b91506020830135614cd081614c46565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715614d1157614d11614cdb565b60405290565b604051608081016001600160401b0381118282101715614d1157614d11614cdb565b60405161010081016001600160401b0381118282101715614d1157614d11614cdb565b60405160e081016001600160401b0381118282101715614d1157614d11614cdb565b604051601f8201601f191681016001600160401b0381118282101715614da657614da6614cdb565b604052919050565b5f6001600160401b03821115614dc657614dc6614cdb565b50601f01601f191660200190565b5f82601f830112614de3575f80fd5b8135614df6614df182614dae565b614d7e565b818152846020838601011115614e0a575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614e36575f80fd5b81356001600160401b03811115614e4b575f80fd5b614c3e84828501614dd4565b5f60408284031215614e67575f80fd5b614e6f614cef565b823581526020928301359281019290925250919050565b5f8060808385031215614e97575f80fd5b614ea18484614e57565b91506132e88460408501614e57565b5f8060408385031215614ec1575f80fd5b8235614ecc81614c75565b915060208301356001600160401b03811115614ee6575f80fd5b614ef285828601614dd4565b9150509250929050565b8015158114612c3b575f80fd5b5f8060408385031215614f1a575f80fd5b8235614f2581614c75565b91506020830135614cd081614efc565b5f805f60c08486031215614f47575f80fd5b614f518585614e57565b9250614f608560408601614e57565b9150614f6f8560808601614e57565b90509250925092565b5f60208284031215614f88575f80fd5b815162ffffff81168114614707575f80fd5b805161114e81614c46565b5f60208284031215614fb5575f80fd5b815161470781614c46565b600181811c90821680614fd457607f821691505b602082108103611a3357634e487b7160e01b5f52602260045260245ffd5b5f60208284031215615002575f80fd5b815161470781614c75565b5f61501a614df184614dae565b905082815283838301111561502d575f80fd5b8282602083015e5f602084830101529392505050565b805161114e81614c75565b5f82601f83011261505d575f80fd5b6147078383516020850161500d565b5f6020828403121561507c575f80fd5b81516001600160401b03811115615091575f80fd5b8201608081850312156150a2575f80fd5b6150aa614d17565b81516001600160401b038111156150bf575f80fd5b8201601f810186136150cf575f80fd5b6150de8682516020840161500d565b8252506150ed60208301615043565b60208201526150fe60408301615043565b604082015260608201516001600160401b0381111561511b575f80fd5b6151278682850161504e565b606083015250949350505050565b805161114e81614efc565b5f60208284031215615150575f80fd5b815161470781614efc565b6001600160a01b039290921682526001600160601b0316602082015260400190565b60ff81168114612c3b575f80fd5b805161114e8161517d565b5f82601f8301126151a5575f80fd5b81516001600160401b038111156151be576151be614cdb565b8060051b6151ce60208201614d7e565b918252602081850181019290810190868411156151e9575f80fd5b6020860192505b8383101561521457825161520381614c46565b8252602092830192909101906151f0565b9695505050505050565b5f6020828403121561522e575f80fd5b81516001600160401b03811115615243575f80fd5b82016101008185031215615255575f80fd5b61525d614d39565b61526682615135565b815261527460208301615135565b602082015261528560408301615135565b60408201526152966060830161518b565b60608201526152a76080830161518b565b60808201526152b860a08301614f9a565b60a08201526152c960c08301614f9a565b60c082015260e08201516001600160401b038111156152e6575f80fd5b6152f286828501615196565b60e083015250949350505050565b5f8151808452602084019350602083015f5b828110156153395781516001600160601b0316865260209586019590910190600101615312565b5093949350505050565b8051151582526020810151151560208301525f6040820151615369604085018215159052565b50606082015161537e606085018260ff169052565b506080820151615393608085018260ff169052565b5060a08201516153ae60a08501826001600160601b03169052565b5060c08201516153c960c08501826001600160601b03169052565b5060e082015161010060e0850152614c3e610100850182615300565b6001600160601b0383168152604060208201525f614c3e6040830184615343565b5f60408284031215615416575f80fd5b61541e614cef565b825181526020928301519281019290925250919050565b5f6101c0828403128015615447575f80fd5b50615450614d5c565b61545a8484615406565b81526154698460408501615406565b602082015261547b8460808501615406565b604082015261548d8460c08501615406565b60608201526154a0846101008501615406565b60808201526154b3846101408501615406565b60a08201526154c6846101808501615406565b60c08201529392505050565b6001600160601b038316815281518051602080840191909152015160408201526101e0810160208381015180516060850152908101516080840152506040830151805160a0840152602081015160c0840152506060830151805160e08401526020810151610100840152506080830151805161012084015260208101516101408401525060a0830151805161016084015260208101516101808401525060c083015180516101a084015260208101516101c0840152509392505050565b5f60e0828403121561559f575f80fd5b6155a7614d5c565b90506155b282614f9a565b81526155c060208301614f9a565b60208201526155d16040830161518b565b60408201526155e260608301615135565b60608201526155f360808301615043565b608082015261560460a08301615043565b60a082015260c08201516001600160401b03811115615621575f80fd5b61562d8482850161504e565b60c08301525092915050565b5f60208284031215615649575f80fd5b81516001600160401b0381111561565e575f80fd5b614c3e8482850161558f565b6001600160401b0381168114612c3b575f80fd5b5f6020828403121561568e575f80fd5b81516147078161566a565b825181526020808401518183015282516040830152820151606082015260808101614707565b5f602082840312156156cf575f80fd5b81516147078161517d565b6001600160601b0383168152604060208201525f82516080604084015261570460c0840182614b84565b60208501516001600160a01b0390811660608681019190915260408701519091166080860152850151848203603f190160a08601529091506152148282614b84565b6001600160601b038716815260c060208201525f61576760c0830188614b84565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f806040838503121561579d575f80fd5b82516157a881614c75565b6020840151909250614cd081614c75565b5f60e08284031280156157ca575f80fd5b506157d3614d5c565b82516157de81614c46565b815260208301516157ee81614efc565b6020820152604083015161580181614efc565b6040820152606083015161581481614efc565b606082015261582560808401615135565b608082015260a0838101519082015260c0928301519281019290925250919050565b6001600160601b0384168152606060208201525f6158686060830185615343565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff81036158b057634e487b7160e01b5f52601160045260245ffd5b60010192915050565b5f80604083850312156158ca575f80fd5b82516001600160401b038111156158df575f80fd5b6158eb8582860161558f565b9250506020830151614cd081614c75565b601f8211156145bb57805f5260205f20601f840160051c810160208510156159215750805b601f840160051c820191505b81811015615940575f815560010161592d565b5050505050565b81516001600160401b0381111561596057615960614cdb565b6159748161596e8454614fc0565b846158fc565b6020601f8211600181146159a6575f831561598f5750848201515b5f19600385901b1c1916600184901b178455615940565b5f84815260208120601f198516915b828110156159d557878501518255602094850194600190920191016159b5565b50848210156159f257868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f006548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122083c0e403cafefc89f7a0bc1f4f780baa923145fec055d6fc11ac1b9e6c676e4e64736f6c634300081a0033",
|
1273
|
+
"linkReferences": {
|
1274
|
+
"contracts/shared/ContractLib.sol": {
|
1275
|
+
"ContractLib": [
|
1276
|
+
{
|
1277
|
+
"length": 20,
|
1278
|
+
"start": 4651
|
1279
|
+
},
|
1280
|
+
{
|
1281
|
+
"length": 20,
|
1282
|
+
"start": 11405
|
1283
|
+
},
|
1284
|
+
{
|
1285
|
+
"length": 20,
|
1286
|
+
"start": 15563
|
1287
|
+
},
|
1288
|
+
{
|
1289
|
+
"length": 20,
|
1290
|
+
"start": 15744
|
1291
|
+
},
|
1292
|
+
{
|
1293
|
+
"length": 20,
|
1294
|
+
"start": 18458
|
1295
|
+
},
|
1296
|
+
{
|
1297
|
+
"length": 20,
|
1298
|
+
"start": 19044
|
1299
|
+
}
|
1300
|
+
]
|
1301
|
+
},
|
1302
|
+
"contracts/shared/TokenHandlerDeployerLib.sol": {
|
1303
|
+
"TokenHandlerDeployerLib": [
|
1304
|
+
{
|
1305
|
+
"length": 20,
|
1306
|
+
"start": 12270
|
1307
|
+
}
|
1308
|
+
]
|
1309
|
+
},
|
1310
|
+
"contracts/type/Amount.sol": {
|
1311
|
+
"AmountLib": [
|
1312
|
+
{
|
1313
|
+
"length": 20,
|
1314
|
+
"start": 2146
|
1315
|
+
},
|
1316
|
+
{
|
1317
|
+
"length": 20,
|
1318
|
+
"start": 2174
|
1319
|
+
},
|
1320
|
+
{
|
1321
|
+
"length": 20,
|
1322
|
+
"start": 2639
|
1323
|
+
},
|
1324
|
+
{
|
1325
|
+
"length": 20,
|
1326
|
+
"start": 3012
|
1327
|
+
}
|
1328
|
+
]
|
1329
|
+
},
|
1330
|
+
"contracts/type/Fee.sol": {
|
1331
|
+
"FeeLib": [
|
1332
|
+
{
|
1333
|
+
"length": 20,
|
1334
|
+
"start": 5460
|
1335
|
+
},
|
1336
|
+
{
|
1337
|
+
"length": 20,
|
1338
|
+
"start": 5671
|
1339
|
+
},
|
1340
|
+
{
|
1341
|
+
"length": 20,
|
1342
|
+
"start": 7183
|
1343
|
+
},
|
1344
|
+
{
|
1345
|
+
"length": 20,
|
1346
|
+
"start": 7366
|
1347
|
+
},
|
1348
|
+
{
|
1349
|
+
"length": 20,
|
1350
|
+
"start": 8768
|
1351
|
+
},
|
1352
|
+
{
|
1353
|
+
"length": 20,
|
1354
|
+
"start": 8971
|
1355
|
+
},
|
1356
|
+
{
|
1357
|
+
"length": 20,
|
1358
|
+
"start": 9159
|
1359
|
+
}
|
1360
|
+
]
|
1361
|
+
},
|
1362
|
+
"contracts/type/NftId.sol": {
|
1363
|
+
"NftIdLib": [
|
1364
|
+
{
|
1365
|
+
"length": 20,
|
1366
|
+
"start": 1551
|
1367
|
+
},
|
1368
|
+
{
|
1369
|
+
"length": 20,
|
1370
|
+
"start": 4014
|
1371
|
+
},
|
1372
|
+
{
|
1373
|
+
"length": 20,
|
1374
|
+
"start": 4151
|
1375
|
+
},
|
1376
|
+
{
|
1377
|
+
"length": 20,
|
1378
|
+
"start": 8172
|
1379
|
+
},
|
1380
|
+
{
|
1381
|
+
"length": 20,
|
1382
|
+
"start": 10071
|
1383
|
+
},
|
1384
|
+
{
|
1385
|
+
"length": 20,
|
1386
|
+
"start": 10832
|
1387
|
+
},
|
1388
|
+
{
|
1389
|
+
"length": 20,
|
1390
|
+
"start": 13929
|
1391
|
+
},
|
1392
|
+
{
|
1393
|
+
"length": 20,
|
1394
|
+
"start": 14708
|
1395
|
+
},
|
1396
|
+
{
|
1397
|
+
"length": 20,
|
1398
|
+
"start": 16128
|
1399
|
+
},
|
1400
|
+
{
|
1401
|
+
"length": 20,
|
1402
|
+
"start": 16596
|
1403
|
+
},
|
1404
|
+
{
|
1405
|
+
"length": 20,
|
1406
|
+
"start": 18305
|
1407
|
+
}
|
1408
|
+
]
|
1409
|
+
},
|
1410
|
+
"contracts/type/RoleId.sol": {
|
1411
|
+
"RoleIdLib": [
|
1412
|
+
{
|
1413
|
+
"length": 20,
|
1414
|
+
"start": 7825
|
1415
|
+
}
|
1416
|
+
]
|
1417
|
+
},
|
1418
|
+
"contracts/type/Version.sol": {
|
1419
|
+
"VersionLib": [
|
1420
|
+
{
|
1421
|
+
"length": 20,
|
1422
|
+
"start": 1366
|
1423
|
+
},
|
1424
|
+
{
|
1425
|
+
"length": 20,
|
1426
|
+
"start": 5002
|
1427
|
+
},
|
1428
|
+
{
|
1429
|
+
"length": 20,
|
1430
|
+
"start": 10533
|
1431
|
+
}
|
1432
|
+
]
|
1433
|
+
}
|
1434
|
+
},
|
1435
|
+
"deployedLinkReferences": {
|
1436
|
+
"contracts/shared/ContractLib.sol": {
|
1437
|
+
"ContractLib": [
|
1438
|
+
{
|
1439
|
+
"length": 20,
|
1440
|
+
"start": 4437
|
1441
|
+
},
|
1442
|
+
{
|
1443
|
+
"length": 20,
|
1444
|
+
"start": 11191
|
1445
|
+
},
|
1446
|
+
{
|
1447
|
+
"length": 20,
|
1448
|
+
"start": 15349
|
1449
|
+
},
|
1450
|
+
{
|
1451
|
+
"length": 20,
|
1452
|
+
"start": 15530
|
1453
|
+
},
|
1454
|
+
{
|
1455
|
+
"length": 20,
|
1456
|
+
"start": 18244
|
1457
|
+
},
|
1458
|
+
{
|
1459
|
+
"length": 20,
|
1460
|
+
"start": 18830
|
1461
|
+
}
|
1462
|
+
]
|
1463
|
+
},
|
1464
|
+
"contracts/shared/TokenHandlerDeployerLib.sol": {
|
1465
|
+
"TokenHandlerDeployerLib": [
|
1466
|
+
{
|
1467
|
+
"length": 20,
|
1468
|
+
"start": 12056
|
1469
|
+
}
|
1470
|
+
]
|
1471
|
+
},
|
1472
|
+
"contracts/type/Amount.sol": {
|
1473
|
+
"AmountLib": [
|
1474
|
+
{
|
1475
|
+
"length": 20,
|
1476
|
+
"start": 1932
|
1477
|
+
},
|
1478
|
+
{
|
1479
|
+
"length": 20,
|
1480
|
+
"start": 1960
|
1481
|
+
},
|
1482
|
+
{
|
1483
|
+
"length": 20,
|
1484
|
+
"start": 2425
|
1485
|
+
},
|
1486
|
+
{
|
1487
|
+
"length": 20,
|
1488
|
+
"start": 2798
|
1489
|
+
}
|
1490
|
+
]
|
1491
|
+
},
|
1492
|
+
"contracts/type/Fee.sol": {
|
1493
|
+
"FeeLib": [
|
1494
|
+
{
|
1495
|
+
"length": 20,
|
1496
|
+
"start": 5246
|
1497
|
+
},
|
1498
|
+
{
|
1499
|
+
"length": 20,
|
1500
|
+
"start": 5457
|
1501
|
+
},
|
1502
|
+
{
|
1503
|
+
"length": 20,
|
1504
|
+
"start": 6969
|
1505
|
+
},
|
1506
|
+
{
|
1507
|
+
"length": 20,
|
1508
|
+
"start": 7152
|
1509
|
+
},
|
1510
|
+
{
|
1511
|
+
"length": 20,
|
1512
|
+
"start": 8554
|
1513
|
+
},
|
1514
|
+
{
|
1515
|
+
"length": 20,
|
1516
|
+
"start": 8757
|
1517
|
+
},
|
1518
|
+
{
|
1519
|
+
"length": 20,
|
1520
|
+
"start": 8945
|
1521
|
+
}
|
1522
|
+
]
|
1523
|
+
},
|
1524
|
+
"contracts/type/NftId.sol": {
|
1525
|
+
"NftIdLib": [
|
1526
|
+
{
|
1527
|
+
"length": 20,
|
1528
|
+
"start": 1337
|
1529
|
+
},
|
1530
|
+
{
|
1531
|
+
"length": 20,
|
1532
|
+
"start": 3800
|
1533
|
+
},
|
1534
|
+
{
|
1535
|
+
"length": 20,
|
1536
|
+
"start": 3937
|
1537
|
+
},
|
1538
|
+
{
|
1539
|
+
"length": 20,
|
1540
|
+
"start": 7958
|
1541
|
+
},
|
1542
|
+
{
|
1543
|
+
"length": 20,
|
1544
|
+
"start": 9857
|
1545
|
+
},
|
1546
|
+
{
|
1547
|
+
"length": 20,
|
1548
|
+
"start": 10618
|
1549
|
+
},
|
1550
|
+
{
|
1551
|
+
"length": 20,
|
1552
|
+
"start": 13715
|
1553
|
+
},
|
1554
|
+
{
|
1555
|
+
"length": 20,
|
1556
|
+
"start": 14494
|
1557
|
+
},
|
1558
|
+
{
|
1559
|
+
"length": 20,
|
1560
|
+
"start": 15914
|
1561
|
+
},
|
1562
|
+
{
|
1563
|
+
"length": 20,
|
1564
|
+
"start": 16382
|
1565
|
+
},
|
1566
|
+
{
|
1567
|
+
"length": 20,
|
1568
|
+
"start": 18091
|
1569
|
+
}
|
1570
|
+
]
|
1571
|
+
},
|
1572
|
+
"contracts/type/RoleId.sol": {
|
1573
|
+
"RoleIdLib": [
|
1574
|
+
{
|
1575
|
+
"length": 20,
|
1576
|
+
"start": 7611
|
1577
|
+
}
|
1578
|
+
]
|
1579
|
+
},
|
1580
|
+
"contracts/type/Version.sol": {
|
1581
|
+
"VersionLib": [
|
1582
|
+
{
|
1583
|
+
"length": 20,
|
1584
|
+
"start": 1152
|
1585
|
+
},
|
1586
|
+
{
|
1587
|
+
"length": 20,
|
1588
|
+
"start": 4788
|
1589
|
+
},
|
1590
|
+
{
|
1591
|
+
"length": 20,
|
1592
|
+
"start": 10319
|
1593
|
+
}
|
1594
|
+
]
|
1595
|
+
}
|
1596
|
+
}
|
1597
|
+
}
|