@etherisc/gif-next 0.0.2-e802d97-251 → 0.0.2-e83e4a5-207
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 +18 -2
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
 - package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IAccess.sol/IAccess.json +10 -0
 - package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1032 -0
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
 - package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
 - package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1505 -0
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +17 -242
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +138 -93
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +65 -57
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +71 -146
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +45 -16
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +33 -108
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +58 -78
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +147 -40
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +72 -140
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1208 -290
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +110 -76
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +210 -103
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +49 -49
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +84 -135
 - package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +2 -2
 - package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +0 -53
 - package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
 - package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
 - package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +3 -78
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
 - package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
 - package/artifacts/contracts/mock/Dip.sol/Dip.json +2 -2
 - package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
 - package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1155 -0
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
 - package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
 - package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +43 -1
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +13 -0
 - package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
 - package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +13 -0
 - package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
 - package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +13 -96
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +66 -29
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +44 -32
 - package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
 - package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1477 -0
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.json +78 -49
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +50 -42
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +13 -0
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +7 -202
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +13 -0
 - package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/pool/Pool.sol/Pool.json +7 -303
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.json +62 -41
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +42 -38
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +66 -37
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +44 -36
 - package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
 - package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1299 -0
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +106 -69
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +64 -52
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +13 -0
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +13 -0
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +13 -0
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +13 -0
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +13 -42
 - package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/product/IProductService.sol/IProductService.json +13 -0
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +84 -47
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +53 -41
 - package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
 - package/artifacts/contracts/product/PricingService.sol/PricingService.json +92 -63
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +57 -49
 - package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/product/Product.sol/Product.json +13 -153
 - package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/product/ProductService.sol/ProductService.json +54 -25
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +38 -30
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +0 -44
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +13 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +24 -68
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1505 -166
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +50 -13
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +37 -25
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +185 -318
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +4 -4
 - package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +82 -85
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +52 -60
 - package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +1 -1
 - package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +13 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
 - package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +13 -0
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +13 -0
 - package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +11 -5
 - package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
 - package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +0 -5
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +13 -0
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +1 -1
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +13 -53
 - package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +15 -89
 - package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +4 -65
 - package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +22 -22
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +6 -6
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +6 -6
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +14 -14
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +8 -8
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +13 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +6 -6
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
 - package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +49 -7
 - package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +44 -28
 - package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
 - package/artifacts/contracts/staking/Staking.sol/Staking.json +44 -84
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +40 -56
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +6 -6
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.json +92 -73
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +39 -47
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +197 -149
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +22 -22
 - package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
 - package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +2 -2
 - package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Amount.sol/AmountLib.json +8 -8
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +2 -2
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +4 -4
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +4 -4
 - package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Fee.sol/FeeLib.json +12 -12
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.json +4 -4
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +136 -2
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +4 -4
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.json +4 -4
 - package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +4 -4
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +4 -4
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +219 -6
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +2 -2
 - 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 +1 -1
 - package/artifacts/contracts/type/StateId.sol/StateIdLib.json +2 -2
 - 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 +1 -1
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +4 -4
 - package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +1 -1
 - package/artifacts/contracts/type/UFixed.sol/MathLib.json +2 -2
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +21 -2
 - package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -2
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.json +2 -2
 - package/contracts/authorization/AccessAdmin.sol +591 -0
 - package/contracts/authorization/AccessManagerCloneable.sol +16 -0
 - package/contracts/authorization/Authorization.sol +218 -0
 - package/contracts/authorization/IAccess.sol +48 -0
 - package/contracts/authorization/IAccessAdmin.sol +136 -0
 - package/contracts/authorization/IAuthorization.sol +54 -0
 - package/contracts/authorization/IModuleAuthorization.sol +21 -0
 - package/contracts/authorization/IServiceAuthorization.sol +38 -0
 - package/contracts/authorization/ModuleAuthorization.sol +78 -0
 - package/contracts/authorization/ServiceAuthorization.sol +90 -0
 - package/contracts/distribution/BasicDistribution.sol +149 -0
 - package/contracts/distribution/BasicDistributionAuthorization.sol +43 -0
 - package/contracts/distribution/Distribution.sol +126 -104
 - package/contracts/distribution/DistributionService.sol +13 -9
 - package/contracts/distribution/IDistributionComponent.sol +17 -35
 - package/contracts/distribution/IDistributionService.sol +5 -1
 - package/contracts/instance/IInstance.sol +11 -7
 - package/contracts/instance/IInstanceService.sol +29 -18
 - package/contracts/instance/Instance.sol +103 -85
 - package/contracts/instance/InstanceAdmin.sol +202 -267
 - package/contracts/instance/InstanceAuthorizationV3.sol +202 -0
 - package/contracts/instance/InstanceReader.sol +24 -9
 - package/contracts/instance/InstanceService.sol +151 -70
 - package/contracts/instance/InstanceStore.sol +15 -20
 - package/contracts/instance/base/BalanceStore.sol +11 -6
 - package/contracts/instance/base/Cloneable.sol +2 -25
 - package/contracts/instance/base/ObjectLifecycle.sol +106 -0
 - package/contracts/instance/base/ObjectManager.sol +7 -10
 - package/contracts/oracle/BasicOracle.sol +48 -0
 - package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
 - package/contracts/oracle/IOracle.sol +16 -0
 - package/contracts/oracle/Oracle.sol +61 -49
 - package/contracts/oracle/OracleService.sol +5 -4
 - package/contracts/pool/BasicPool.sol +164 -0
 - package/contracts/pool/BasicPoolAuthorization.sol +49 -0
 - package/contracts/pool/BundleService.sol +19 -19
 - package/contracts/pool/IPoolComponent.sol +0 -60
 - package/contracts/pool/Pool.sol +143 -131
 - package/contracts/pool/PoolService.sol +7 -8
 - package/contracts/product/ApplicationService.sol +5 -5
 - package/contracts/product/BasicProduct.sol +82 -0
 - package/contracts/product/BasicProductAuthorization.sol +40 -0
 - package/contracts/product/ClaimService.sol +5 -5
 - package/contracts/product/IProductComponent.sol +6 -9
 - package/contracts/product/PolicyService.sol +5 -5
 - package/contracts/product/PricingService.sol +4 -5
 - package/contracts/product/Product.sol +103 -88
 - package/contracts/product/ProductService.sol +5 -5
 - package/contracts/registry/IRegistry.sol +5 -8
 - package/contracts/registry/Registry.sol +6 -4
 - package/contracts/registry/RegistryAdmin.sol +276 -148
 - package/contracts/registry/RegistryService.sol +5 -5
 - package/contracts/registry/RegistryServiceManager.sol +0 -5
 - package/contracts/registry/ReleaseLifecycle.sol +27 -0
 - package/contracts/registry/ReleaseManager.sol +161 -274
 - package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
 - package/contracts/shared/ComponentService.sol +24 -61
 - package/contracts/shared/ComponentVerifyingService.sol +1 -1
 - package/contracts/shared/IInstanceLinkedComponent.sol +4 -0
 - package/contracts/shared/IKeyValueStore.sol +1 -0
 - package/contracts/shared/ILifecycle.sol +1 -2
 - package/contracts/shared/IService.sol +7 -0
 - package/contracts/shared/InstanceLinkedComponent.sol +26 -19
 - package/contracts/shared/KeyValueStore.sol +6 -2
 - package/contracts/shared/Lifecycle.sol +16 -69
 - package/contracts/shared/Service.sol +27 -21
 - package/contracts/staking/IStakingService.sol +11 -7
 - package/contracts/staking/StakeManagerLib.sol +52 -0
 - package/contracts/staking/Staking.sol +58 -96
 - package/contracts/staking/StakingLifecycle.sol +23 -0
 - package/contracts/staking/StakingService.sol +61 -56
 - package/contracts/staking/StakingServiceManager.sol +0 -1
 - package/contracts/staking/StakingStore.sol +82 -39
 - package/contracts/type/ObjectType.sol +169 -62
 - package/contracts/type/RoleId.sol +103 -75
 - package/contracts/type/Selector.sol +102 -0
 - package/contracts/type/String.sol +53 -0
 - package/contracts/type/UFixed.sol +6 -0
 - package/package.json +4 -1
 - package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +0 -4
 - package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +0 -228
 - package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +0 -4
 - package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +0 -137
 - package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +0 -4
 - package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +0 -1193
 - package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +0 -4
 - package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +0 -1715
 - package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +0 -4
 - package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +0 -1728
 - package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +0 -4
 - package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +0 -1806
 - package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +0 -4
 - package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +0 -1824
 - package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +0 -4
 - package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +0 -1562
 - package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +0 -4
 - package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +0 -1600
 - package/contracts/instance/InstanceAuthorizationsLib.sol +0 -377
 - package/contracts/registry/ServiceAuthorizationsLib.sol +0 -173
 - package/contracts/shared/AccessManagerCustom.sol +0 -736
 - package/contracts/shared/AccessManagerExtended.sol +0 -470
 - package/contracts/shared/AccessManagerExtendedInitializeable.sol +0 -13
 - package/contracts/shared/AccessManagerExtendedWithDisable.sol +0 -137
 - package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +0 -14
 - package/contracts/shared/IAccessManagerExtended.sol +0 -74
 - package/contracts/shared/IAccessManagerExtendedWithDisable.sol +0 -18
 
| 
         @@ -4,16 +4,13 @@ pragma solidity ^0.8.20; 
     | 
|
| 
       4 
4 
     | 
    
         
             
            import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
6 
     | 
    
         
             
            import {Amount} from "../type/Amount.sol";
         
     | 
| 
       7 
     | 
    
         
            -
            import {Key32 
     | 
| 
      
 7 
     | 
    
         
            +
            import {Key32} from "../type/Key32.sol";
         
     | 
| 
       8 
8 
     | 
    
         
             
            import {NftId} from "../type/NftId.sol";
         
     | 
| 
       9 
9 
     | 
    
         
             
            import {ClaimId} from "../type/ClaimId.sol";
         
     | 
| 
       10 
     | 
    
         
            -
            import {ObjectType, BUNDLE,  
     | 
| 
      
 10 
     | 
    
         
            +
            import {ObjectType, BUNDLE, POLICY, POOL, PRODUCT, COMPONENT, DISTRIBUTOR, DISTRIBUTOR_TYPE} from "../type/ObjectType.sol";
         
     | 
| 
       11 
11 
     | 
    
         
             
            import {RequestId} from "../type/RequestId.sol";
         
     | 
| 
       12 
     | 
    
         
            -
            import {RiskId 
     | 
| 
       13 
     | 
    
         
            -
            import { 
     | 
| 
       14 
     | 
    
         
            -
            import {StateId, ACTIVE} from "../type/StateId.sol";
         
     | 
| 
       15 
     | 
    
         
            -
            import {TimestampLib} from "../type/Timestamp.sol";
         
     | 
| 
       16 
     | 
    
         
            -
            import {VersionPart, VersionPartLib} from "../type/Version.sol";
         
     | 
| 
      
 12 
     | 
    
         
            +
            import {RiskId} from "../type/RiskId.sol";
         
     | 
| 
      
 13 
     | 
    
         
            +
            import {StateId} from "../type/StateId.sol";
         
     | 
| 
       17 
14 
     | 
    
         
             
            import {ReferralId} from "../type/Referral.sol";
         
     | 
| 
       18 
15 
     | 
    
         
             
            import {DistributorType} from "../type/DistributorType.sol";
         
     | 
| 
       19 
16 
     | 
    
         
             
            import {PayoutId} from "../type/PayoutId.sol";
         
     | 
| 
         @@ -21,7 +18,6 @@ import {PayoutId} from "../type/PayoutId.sol"; 
     | 
|
| 
       21 
18 
     | 
    
         
             
            import {BalanceStore} from "./base/BalanceStore.sol";
         
     | 
| 
       22 
19 
     | 
    
         
             
            import {IInstance} from "./IInstance.sol";
         
     | 
| 
       23 
20 
     | 
    
         
             
            import {KeyValueStore} from "../shared/KeyValueStore.sol";
         
     | 
| 
       24 
     | 
    
         
            -
            import {IKeyValueStore} from "../shared/KeyValueStore.sol";
         
     | 
| 
       25 
21 
     | 
    
         
             
            import {ObjectCounter} from "./base/ObjectCounter.sol";
         
     | 
| 
       26 
22 
     | 
    
         | 
| 
       27 
23 
     | 
    
         
             
            import {IBundle} from "./module/IBundle.sol";
         
     | 
| 
         @@ -31,21 +27,28 @@ import {IPolicy} from "./module/IPolicy.sol"; 
     | 
|
| 
       31 
27 
     | 
    
         
             
            import {IOracle} from "../oracle/IOracle.sol";
         
     | 
| 
       32 
28 
     | 
    
         
             
            import {IRisk} from "./module/IRisk.sol";
         
     | 
| 
       33 
29 
     | 
    
         | 
| 
      
 30 
     | 
    
         
            +
            import {ObjectLifecycle} from "./base/ObjectLifecycle.sol";
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
       34 
32 
     | 
    
         | 
| 
       35 
33 
     | 
    
         
             
            contract InstanceStore is
         
     | 
| 
       36 
34 
     | 
    
         
             
                AccessManagedUpgradeable, 
         
     | 
| 
       37 
35 
     | 
    
         
             
                BalanceStore,
         
     | 
| 
       38 
36 
     | 
    
         
             
                KeyValueStore,
         
     | 
| 
       39 
     | 
    
         
            -
                ObjectCounter
         
     | 
| 
      
 37 
     | 
    
         
            +
                ObjectCounter,
         
     | 
| 
      
 38 
     | 
    
         
            +
                ObjectLifecycle
         
     | 
| 
       40 
39 
     | 
    
         
             
            {
         
     | 
| 
       41 
     | 
    
         
            -
             
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
                /// @dev This initializer needs to be called from the instance itself.
         
     | 
| 
      
 42 
     | 
    
         
            +
                function initialize()
         
     | 
| 
       42 
43 
     | 
    
         
             
                    public 
         
     | 
| 
       43 
44 
     | 
    
         
             
                    initializer()
         
     | 
| 
       44 
45 
     | 
    
         
             
                {
         
     | 
| 
      
 46 
     | 
    
         
            +
                    address instance = msg.sender;
         
     | 
| 
       45 
47 
     | 
    
         
             
                    address authority = IInstance(instance).authority();
         
     | 
| 
       46 
     | 
    
         
            -
                    __AccessManaged_init(authority);
         
     | 
| 
       47 
48 
     | 
    
         | 
| 
       48 
     | 
    
         
            -
                     
     | 
| 
      
 49 
     | 
    
         
            +
                    __AccessManaged_init(authority);
         
     | 
| 
      
 50 
     | 
    
         
            +
                    // double initialization, safe
         
     | 
| 
      
 51 
     | 
    
         
            +
                    _initializeLifecycle();
         
     | 
| 
       49 
52 
     | 
    
         
             
                }
         
     | 
| 
       50 
53 
     | 
    
         | 
| 
       51 
54 
     | 
    
         
             
                //--- Component ---------------------------------------------------------//
         
     | 
| 
         @@ -82,10 +85,6 @@ contract InstanceStore is 
     | 
|
| 
       82 
85 
     | 
    
         
             
                    _update(_toNftKey32(productNftId, PRODUCT()), abi.encode(info), newState);
         
     | 
| 
       83 
86 
     | 
    
         
             
                }
         
     | 
| 
       84 
87 
     | 
    
         | 
| 
       85 
     | 
    
         
            -
                function updateProductSetupState(NftId productNftId, StateId newState) external restricted() {
         
     | 
| 
       86 
     | 
    
         
            -
                    _updateState(_toNftKey32(productNftId, PRODUCT()), newState);
         
     | 
| 
       87 
     | 
    
         
            -
                }
         
     | 
| 
       88 
     | 
    
         
            -
             
     | 
| 
       89 
88 
     | 
    
         
             
                //--- Pool --------------------------------------------------------------//
         
     | 
| 
       90 
89 
     | 
    
         | 
| 
       91 
90 
     | 
    
         
             
                function createPool(
         
     | 
| 
         @@ -102,10 +101,6 @@ contract InstanceStore is 
     | 
|
| 
       102 
101 
     | 
    
         
             
                    _update(_toNftKey32(poolNftId, POOL()), abi.encode(info), newState);
         
     | 
| 
       103 
102 
     | 
    
         
             
                }
         
     | 
| 
       104 
103 
     | 
    
         | 
| 
       105 
     | 
    
         
            -
                function updatePoolState(NftId poolNftId, StateId newState) external restricted() {
         
     | 
| 
       106 
     | 
    
         
            -
                    _updateState(_toNftKey32(poolNftId, POOL()), newState);
         
     | 
| 
       107 
     | 
    
         
            -
                }
         
     | 
| 
       108 
     | 
    
         
            -
             
     | 
| 
       109 
104 
     | 
    
         
             
                //--- DistributorType ---------------------------------------------------//
         
     | 
| 
       110 
105 
     | 
    
         
             
                function createDistributorType(DistributorType distributorType, IDistribution.DistributorTypeInfo memory info) external restricted() {
         
     | 
| 
       111 
106 
     | 
    
         
             
                    _create(distributorType.toKey32(), abi.encode(info));
         
     | 
| 
         @@ -60,7 +60,7 @@ contract BalanceStore { 
     | 
|
| 
       60 
60 
     | 
    
         
             
                    }
         
     | 
| 
       61 
61 
     | 
    
         | 
| 
       62 
62 
     | 
    
         
             
                    _isRegistered[targetNftId] = true;
         
     | 
| 
       63 
     | 
    
         
            -
                     
     | 
| 
      
 63 
     | 
    
         
            +
                    _setLastUpdatedIn(targetNftId);
         
     | 
| 
       64 
64 
     | 
    
         | 
| 
       65 
65 
     | 
    
         
             
                    emit LogBalanceStoreTargetRegistered(targetNftId);
         
     | 
| 
       66 
66 
     | 
    
         
             
                }
         
     | 
| 
         @@ -71,7 +71,7 @@ contract BalanceStore { 
     | 
|
| 
       71 
71 
     | 
    
         
             
                    _feeAmount[targetNftId] = newBalance;
         
     | 
| 
       72 
72 
     | 
    
         | 
| 
       73 
73 
     | 
    
         
             
                    emit LogBalanceStoreFeesIncreased(targetNftId, amount, newBalance, _lastUpdatedIn[targetNftId]);
         
     | 
| 
       74 
     | 
    
         
            -
                     
     | 
| 
      
 74 
     | 
    
         
            +
                    _setLastUpdatedIn(targetNftId);
         
     | 
| 
       75 
75 
     | 
    
         
             
                }
         
     | 
| 
       76 
76 
     | 
    
         | 
| 
       77 
77 
     | 
    
         
             
                function _decreaseFees(NftId targetNftId, Amount amount) internal onlyRegisteredTarget(targetNftId) returns (Amount newBalance) {
         
     | 
| 
         @@ -79,7 +79,7 @@ contract BalanceStore { 
     | 
|
| 
       79 
79 
     | 
    
         
             
                    _feeAmount[targetNftId] = newBalance;
         
     | 
| 
       80 
80 
     | 
    
         | 
| 
       81 
81 
     | 
    
         
             
                    emit LogBalanceStoreFeesDecreased(targetNftId, amount, newBalance, _lastUpdatedIn[targetNftId]);
         
     | 
| 
       82 
     | 
    
         
            -
                     
     | 
| 
      
 82 
     | 
    
         
            +
                    _setLastUpdatedIn(targetNftId);
         
     | 
| 
       83 
83 
     | 
    
         
             
                }
         
     | 
| 
       84 
84 
     | 
    
         | 
| 
       85 
85 
     | 
    
         
             
                //--- locked management -------------------------------------------------//
         
     | 
| 
         @@ -88,7 +88,7 @@ contract BalanceStore { 
     | 
|
| 
       88 
88 
     | 
    
         
             
                    _lockedAmount[targetNftId] = newBalance;
         
     | 
| 
       89 
89 
     | 
    
         | 
| 
       90 
90 
     | 
    
         
             
                    emit LogBalanceStoreLockedIncreased(targetNftId, amount, newBalance, _lastUpdatedIn[targetNftId]);
         
     | 
| 
       91 
     | 
    
         
            -
                     
     | 
| 
      
 91 
     | 
    
         
            +
                    _setLastUpdatedIn(targetNftId);
         
     | 
| 
       92 
92 
     | 
    
         
             
                }
         
     | 
| 
       93 
93 
     | 
    
         | 
| 
       94 
94 
     | 
    
         
             
                function _decreaseLocked(NftId targetNftId, Amount amount) internal onlyRegisteredTarget(targetNftId) returns (Amount newBalance) {
         
     | 
| 
         @@ -96,7 +96,7 @@ contract BalanceStore { 
     | 
|
| 
       96 
96 
     | 
    
         
             
                    _lockedAmount[targetNftId] = newBalance;
         
     | 
| 
       97 
97 
     | 
    
         | 
| 
       98 
98 
     | 
    
         
             
                    emit LogBalanceStoreLockedDecreased(targetNftId, amount, newBalance, _lastUpdatedIn[targetNftId]);
         
     | 
| 
       99 
     | 
    
         
            -
                     
     | 
| 
      
 99 
     | 
    
         
            +
                    _setLastUpdatedIn(targetNftId);
         
     | 
| 
       100 
100 
     | 
    
         
             
                }
         
     | 
| 
       101 
101 
     | 
    
         | 
| 
       102 
102 
     | 
    
         
             
                //--- balance management ------------------------------------------------//
         
     | 
| 
         @@ -105,7 +105,7 @@ contract BalanceStore { 
     | 
|
| 
       105 
105 
     | 
    
         
             
                    _balanceAmount[targetNftId] = newBalance;
         
     | 
| 
       106 
106 
     | 
    
         | 
| 
       107 
107 
     | 
    
         
             
                    emit LogBalanceStoreBalanceIncreased(targetNftId, amount, newBalance, _lastUpdatedIn[targetNftId]);
         
     | 
| 
       108 
     | 
    
         
            -
                     
     | 
| 
      
 108 
     | 
    
         
            +
                    _setLastUpdatedIn(targetNftId);
         
     | 
| 
       109 
109 
     | 
    
         
             
                }
         
     | 
| 
       110 
110 
     | 
    
         | 
| 
       111 
111 
     | 
    
         
             
                function _decreaseBalance(NftId targetNftId, Amount amount) internal onlyRegisteredTarget(targetNftId) returns (Amount newBalance) {
         
     | 
| 
         @@ -113,6 +113,11 @@ contract BalanceStore { 
     | 
|
| 
       113 
113 
     | 
    
         
             
                    _balanceAmount[targetNftId] = newBalance;
         
     | 
| 
       114 
114 
     | 
    
         | 
| 
       115 
115 
     | 
    
         
             
                    emit LogBalanceStoreBalanceDecreased(targetNftId, amount, newBalance, _lastUpdatedIn[targetNftId]);
         
     | 
| 
      
 116 
     | 
    
         
            +
                    _setLastUpdatedIn(targetNftId);
         
     | 
| 
      
 117 
     | 
    
         
            +
                }
         
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
                //--- internal/private functions ----------------------------------------//
         
     | 
| 
      
 120 
     | 
    
         
            +
                function _setLastUpdatedIn(NftId targetNftId) internal {
         
     | 
| 
       116 
121 
     | 
    
         
             
                    _lastUpdatedIn[targetNftId] = BlocknumberLib.currentBlocknumber();
         
     | 
| 
       117 
122 
     | 
    
         
             
                }
         
     | 
| 
       118 
123 
     | 
    
         
             
            }
         
     | 
| 
         @@ -2,47 +2,24 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            pragma solidity ^0.8.20;
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
            import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
         
     | 
| 
       5 
     | 
    
         
            -
            import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            import {IRegistry} from "../../registry/IRegistry.sol";
         
     | 
| 
       8 
7 
     | 
    
         | 
| 
       9 
8 
     | 
    
         
             
            abstract contract Cloneable is 
         
     | 
| 
       10 
9 
     | 
    
         
             
                AccessManagedUpgradeable
         
     | 
| 
       11 
10 
     | 
    
         
             
            {
         
     | 
| 
       12 
     | 
    
         
            -
                event CloneableInitialized(address authority, address registry);
         
     | 
| 
       13 
     | 
    
         
            -
                
         
     | 
| 
       14 
     | 
    
         
            -
                error CloneableAuthorityZero();
         
     | 
| 
       15 
     | 
    
         
            -
                error CloneableRegistryInvalid(address registry);
         
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
11 
     | 
    
         
             
                IRegistry internal _registry;
         
     | 
| 
       18 
12 
     | 
    
         | 
| 
       19 
     | 
    
         
            -
                constructor() {
         
     | 
| 
       20 
     | 
    
         
            -
                    _registry = IRegistry(address(0));
         
     | 
| 
       21 
     | 
    
         
            -
                }
         
     | 
| 
       22 
     | 
    
         
            -
             
     | 
| 
       23 
13 
     | 
    
         
             
                /// @dev call to initialize MUST be made in the same transaction as cloning of the contract
         
     | 
| 
       24 
     | 
    
         
            -
                function  
     | 
| 
      
 14 
     | 
    
         
            +
                function __Cloneable_init(
         
     | 
| 
       25 
15 
     | 
    
         
             
                    address authority,
         
     | 
| 
       26 
16 
     | 
    
         
             
                    address registry
         
     | 
| 
       27 
17 
     | 
    
         
             
                )
         
     | 
| 
       28 
     | 
    
         
            -
                     
     | 
| 
      
 18 
     | 
    
         
            +
                    internal 
         
     | 
| 
       29 
19 
     | 
    
         
             
                    onlyInitializing
         
     | 
| 
       30 
20 
     | 
    
         
             
                {
         
     | 
| 
       31 
     | 
    
         
            -
                    // check/handle access managed
         
     | 
| 
       32 
     | 
    
         
            -
                    if(authority == address(0)) {
         
     | 
| 
       33 
     | 
    
         
            -
                        revert CloneableAuthorityZero();
         
     | 
| 
       34 
     | 
    
         
            -
                    }
         
     | 
| 
       35 
     | 
    
         
            -
                    
         
     | 
| 
       36 
21 
     | 
    
         
             
                    __AccessManaged_init(authority);
         
     | 
| 
       37 
     | 
    
         
            -
             
     | 
| 
       38 
     | 
    
         
            -
                    // check/handle registry
         
     | 
| 
       39 
     | 
    
         
            -
                    if (registry.code.length == 0) {
         
     | 
| 
       40 
     | 
    
         
            -
                        revert CloneableRegistryInvalid(registry);
         
     | 
| 
       41 
     | 
    
         
            -
                    }
         
     | 
| 
       42 
     | 
    
         
            -
             
     | 
| 
       43 
22 
     | 
    
         
             
                    _registry = IRegistry(registry);
         
     | 
| 
       44 
     | 
    
         
            -
             
     | 
| 
       45 
     | 
    
         
            -
                    emit CloneableInitialized(authority, registry);
         
     | 
| 
       46 
23 
     | 
    
         
             
                }
         
     | 
| 
       47 
24 
     | 
    
         | 
| 
       48 
25 
     | 
    
         
             
                function getRegistry() external view returns (IRegistry) {
         
     | 
| 
         @@ -0,0 +1,106 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; 
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            import {COMPONENT, BUNDLE, POLICY, REQUEST, RISK, CLAIM, PAYOUT, POOL, PRODUCT, DISTRIBUTION, DISTRIBUTOR, DISTRIBUTOR_TYPE, REFERRAL} from "../../type/ObjectType.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {ACTIVE, PAUSED, ARCHIVED, CLOSED, APPLIED, COLLATERALIZED, REVOKED, SUBMITTED, CONFIRMED, DECLINED, EXPECTED, PAID, FULFILLED, FAILED, CANCELLED} from "../../type/StateId.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {Lifecycle} from "../../shared/Lifecycle.sol";
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            contract ObjectLifecycle is
         
     | 
| 
      
 11 
     | 
    
         
            +
                Lifecycle,
         
     | 
| 
      
 12 
     | 
    
         
            +
                Initializable
         
     | 
| 
      
 13 
     | 
    
         
            +
            {
         
     | 
| 
      
 14 
     | 
    
         
            +
                function _initializeLifecycle() internal onlyInitializing
         
     | 
| 
      
 15 
     | 
    
         
            +
                {
         
     | 
| 
      
 16 
     | 
    
         
            +
                    _setupLifecycle();
         
     | 
| 
      
 17 
     | 
    
         
            +
                }
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
                function _setupLifecycle()
         
     | 
| 
      
 20 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 21 
     | 
    
         
            +
                    override
         
     | 
| 
      
 22 
     | 
    
         
            +
                {
         
     | 
| 
      
 23 
     | 
    
         
            +
                    _setupBundleLifecycle();
         
     | 
| 
      
 24 
     | 
    
         
            +
                    _setupComponentLifecycle();
         
     | 
| 
      
 25 
     | 
    
         
            +
                    _setupPolicyLifecycle();
         
     | 
| 
      
 26 
     | 
    
         
            +
                    _setupClaimLifecycle();
         
     | 
| 
      
 27 
     | 
    
         
            +
                    _setupPayoutLifecycle();
         
     | 
| 
      
 28 
     | 
    
         
            +
                    _setupRiskLifecycle();
         
     | 
| 
      
 29 
     | 
    
         
            +
                    _setupRequestLifecycle();
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
                    // setup dummy lifecycles to manage with key value store 
         
     | 
| 
      
 32 
     | 
    
         
            +
                    _setUpPoolLifecycle();
         
     | 
| 
      
 33 
     | 
    
         
            +
                    _setUpProductLifecycle();
         
     | 
| 
      
 34 
     | 
    
         
            +
                    _setUpDistributionLifecycle();
         
     | 
| 
      
 35 
     | 
    
         
            +
                }
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
                function _setupComponentLifecycle() private {
         
     | 
| 
      
 38 
     | 
    
         
            +
                    setInitialState(COMPONENT(), ACTIVE());
         
     | 
| 
      
 39 
     | 
    
         
            +
                    setStateTransition(COMPONENT(), ACTIVE(), PAUSED());
         
     | 
| 
      
 40 
     | 
    
         
            +
                    setStateTransition(COMPONENT(), PAUSED(), ACTIVE());
         
     | 
| 
      
 41 
     | 
    
         
            +
                    setStateTransition(COMPONENT(), PAUSED(), ARCHIVED());
         
     | 
| 
      
 42 
     | 
    
         
            +
                }
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
                function _setupBundleLifecycle() private {
         
     | 
| 
      
 45 
     | 
    
         
            +
                    setInitialState(BUNDLE(), ACTIVE());
         
     | 
| 
      
 46 
     | 
    
         
            +
                    setStateTransition(BUNDLE(), ACTIVE(), PAUSED());
         
     | 
| 
      
 47 
     | 
    
         
            +
                    setStateTransition(BUNDLE(), ACTIVE(), CLOSED());
         
     | 
| 
      
 48 
     | 
    
         
            +
                    setStateTransition(BUNDLE(), PAUSED(), ACTIVE());
         
     | 
| 
      
 49 
     | 
    
         
            +
                    setStateTransition(BUNDLE(), PAUSED(), CLOSED());
         
     | 
| 
      
 50 
     | 
    
         
            +
                }
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
                function _setupPolicyLifecycle() private {
         
     | 
| 
      
 53 
     | 
    
         
            +
                    setInitialState(POLICY(), APPLIED());
         
     | 
| 
      
 54 
     | 
    
         
            +
                    setStateTransition(POLICY(), APPLIED(), REVOKED());
         
     | 
| 
      
 55 
     | 
    
         
            +
                    setStateTransition(POLICY(), APPLIED(), DECLINED());
         
     | 
| 
      
 56 
     | 
    
         
            +
                    setStateTransition(POLICY(), APPLIED(), COLLATERALIZED());
         
     | 
| 
      
 57 
     | 
    
         
            +
                    setStateTransition(POLICY(), APPLIED(), ACTIVE());
         
     | 
| 
      
 58 
     | 
    
         
            +
                    setStateTransition(POLICY(), COLLATERALIZED(), ACTIVE());
         
     | 
| 
      
 59 
     | 
    
         
            +
                    setStateTransition(POLICY(), ACTIVE(), CLOSED());
         
     | 
| 
      
 60 
     | 
    
         
            +
                }
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
                function _setupClaimLifecycle() private {
         
     | 
| 
      
 63 
     | 
    
         
            +
                    setInitialState(CLAIM(), SUBMITTED());
         
     | 
| 
      
 64 
     | 
    
         
            +
                    setStateTransition(CLAIM(), SUBMITTED(), CONFIRMED());
         
     | 
| 
      
 65 
     | 
    
         
            +
                    setStateTransition(CLAIM(), SUBMITTED(), DECLINED());
         
     | 
| 
      
 66 
     | 
    
         
            +
                    setStateTransition(CLAIM(), CONFIRMED(), CLOSED());
         
     | 
| 
      
 67 
     | 
    
         
            +
                }
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
                function _setupPayoutLifecycle() private {
         
     | 
| 
      
 70 
     | 
    
         
            +
                    setInitialState(PAYOUT(), EXPECTED());
         
     | 
| 
      
 71 
     | 
    
         
            +
                    setStateTransition(PAYOUT(), EXPECTED(), PAID());
         
     | 
| 
      
 72 
     | 
    
         
            +
                }
         
     | 
| 
      
 73 
     | 
    
         
            +
             
     | 
| 
      
 74 
     | 
    
         
            +
                function _setupRiskLifecycle() private {
         
     | 
| 
      
 75 
     | 
    
         
            +
                    setInitialState(RISK(), ACTIVE());
         
     | 
| 
      
 76 
     | 
    
         
            +
                    setStateTransition(RISK(), ACTIVE(), PAUSED());
         
     | 
| 
      
 77 
     | 
    
         
            +
                    setStateTransition(RISK(), PAUSED(), ACTIVE());
         
     | 
| 
      
 78 
     | 
    
         
            +
                    setStateTransition(RISK(), PAUSED(), ARCHIVED());
         
     | 
| 
      
 79 
     | 
    
         
            +
                }
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
                function _setupRequestLifecycle() private {
         
     | 
| 
      
 82 
     | 
    
         
            +
                    setInitialState(REQUEST(), ACTIVE());
         
     | 
| 
      
 83 
     | 
    
         
            +
                    setStateTransition(REQUEST(), ACTIVE(), FULFILLED());
         
     | 
| 
      
 84 
     | 
    
         
            +
                    setStateTransition(REQUEST(), ACTIVE(), FAILED());
         
     | 
| 
      
 85 
     | 
    
         
            +
                    setStateTransition(REQUEST(), FAILED(), FULFILLED());
         
     | 
| 
      
 86 
     | 
    
         
            +
                    setStateTransition(REQUEST(), ACTIVE(), CANCELLED());
         
     | 
| 
      
 87 
     | 
    
         
            +
                }
         
     | 
| 
      
 88 
     | 
    
         
            +
             
     | 
| 
      
 89 
     | 
    
         
            +
                // dummy lifecycle only
         
     | 
| 
      
 90 
     | 
    
         
            +
                function _setUpPoolLifecycle() private {
         
     | 
| 
      
 91 
     | 
    
         
            +
                    setInitialState(POOL(), ACTIVE());
         
     | 
| 
      
 92 
     | 
    
         
            +
                }
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
                // dummy lifecycle only
         
     | 
| 
      
 95 
     | 
    
         
            +
                function _setUpProductLifecycle() private {
         
     | 
| 
      
 96 
     | 
    
         
            +
                    setInitialState(PRODUCT(), ACTIVE());
         
     | 
| 
      
 97 
     | 
    
         
            +
                }
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
                // dummy lifecycles only
         
     | 
| 
      
 100 
     | 
    
         
            +
                function _setUpDistributionLifecycle() private {
         
     | 
| 
      
 101 
     | 
    
         
            +
                    setInitialState(DISTRIBUTION(), ACTIVE());
         
     | 
| 
      
 102 
     | 
    
         
            +
                    setInitialState(DISTRIBUTOR(), ACTIVE());
         
     | 
| 
      
 103 
     | 
    
         
            +
                    setInitialState(DISTRIBUTOR_TYPE(), ACTIVE());
         
     | 
| 
      
 104 
     | 
    
         
            +
                    setInitialState(REFERRAL(), ACTIVE());
         
     | 
| 
      
 105 
     | 
    
         
            +
                }
         
     | 
| 
      
 106 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -17,23 +17,20 @@ contract ObjectManager is 
     | 
|
| 
       17 
17 
     | 
    
         
             
                event LogObjectManagerInitialized(address instance);
         
     | 
| 
       18 
18 
     | 
    
         | 
| 
       19 
19 
     | 
    
         
             
                error ErrorObjectManagerNftIdInvalid(NftId instanceNftId);
         
     | 
| 
       20 
     | 
    
         
            -
                error ErrorObjectManagerAlreadyAdded(NftId componentNftId, NftId objectNftId);
         
     | 
| 
       21 
20 
     | 
    
         | 
| 
       22 
21 
     | 
    
         
             
                mapping(NftId compnentNftId => LibNftIdSet.Set objects) internal _activeObjects;
         
     | 
| 
       23 
22 
     | 
    
         
             
                mapping(NftId compnentNftId => LibNftIdSet.Set objects) internal _allObjects;
         
     | 
| 
       24 
23 
     | 
    
         
             
                IInstance internal _instance; // store instance address -> more flexible, instance may not be registered during ObjectManager initialization
         
     | 
| 
       25 
24 
     | 
    
         | 
| 
       26 
     | 
    
         
            -
                /// @dev  
     | 
| 
       27 
     | 
    
         
            -
                function initialize( 
     | 
| 
       28 
     | 
    
         
            -
                     
     | 
| 
       29 
     | 
    
         
            -
                     
     | 
| 
      
 25 
     | 
    
         
            +
                /// @dev This initializer needs to be called from the instance itself.
         
     | 
| 
      
 26 
     | 
    
         
            +
                function initialize() 
         
     | 
| 
      
 27 
     | 
    
         
            +
                    external
         
     | 
| 
      
 28 
     | 
    
         
            +
                    initializer()
         
     | 
| 
       30 
29 
     | 
    
         
             
                {
         
     | 
| 
       31 
     | 
    
         
            -
                     
     | 
| 
       32 
     | 
    
         
            -
                     
     | 
| 
       33 
     | 
    
         
            -
             
     | 
| 
       34 
     | 
    
         
            -
                    _instance = instance;
         
     | 
| 
      
 30 
     | 
    
         
            +
                    _instance = IInstance(msg.sender);
         
     | 
| 
      
 31 
     | 
    
         
            +
                    __Cloneable_init(_instance.authority(), address(_instance.getRegistry()));
         
     | 
| 
       35 
32 
     | 
    
         | 
| 
       36 
     | 
    
         
            -
                    emit LogObjectManagerInitialized( 
     | 
| 
      
 33 
     | 
    
         
            +
                    emit LogObjectManagerInitialized(address(_instance));
         
     | 
| 
       37 
34 
     | 
    
         
             
                }
         
     | 
| 
       38 
35 
     | 
    
         | 
| 
       39 
36 
     | 
    
         
             
                function getInstance() external view returns (IInstance) {
         
     | 
| 
         @@ -0,0 +1,48 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {IAuthorization} from "../../contracts/authorization/IAuthorization.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {NftId} from "../../contracts/type/NftId.sol";
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {Oracle} from "../../contracts/oracle/Oracle.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {RequestId} from "../../contracts/type/RequestId.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            contract BasicOracle is
         
     | 
| 
      
 10 
     | 
    
         
            +
                Oracle
         
     | 
| 
      
 11 
     | 
    
         
            +
            {
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
                /// Function to provide reponse data releated to request id.
         
     | 
| 
      
 14 
     | 
    
         
            +
                function respond(
         
     | 
| 
      
 15 
     | 
    
         
            +
                    RequestId requestId,
         
     | 
| 
      
 16 
     | 
    
         
            +
                    bytes memory responseData
         
     | 
| 
      
 17 
     | 
    
         
            +
                )
         
     | 
| 
      
 18 
     | 
    
         
            +
                    external
         
     | 
| 
      
 19 
     | 
    
         
            +
                    virtual
         
     | 
| 
      
 20 
     | 
    
         
            +
                    restricted()
         
     | 
| 
      
 21 
     | 
    
         
            +
                {
         
     | 
| 
      
 22 
     | 
    
         
            +
                    _respond(requestId, responseData);
         
     | 
| 
      
 23 
     | 
    
         
            +
                }
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
                function _initializeBasicOracle(
         
     | 
| 
      
 26 
     | 
    
         
            +
                    address registry,
         
     | 
| 
      
 27 
     | 
    
         
            +
                    NftId instanceNftId,
         
     | 
| 
      
 28 
     | 
    
         
            +
                    IAuthorization authorization,
         
     | 
| 
      
 29 
     | 
    
         
            +
                    address initialOwner,
         
     | 
| 
      
 30 
     | 
    
         
            +
                    string memory name,
         
     | 
| 
      
 31 
     | 
    
         
            +
                    address token
         
     | 
| 
      
 32 
     | 
    
         
            +
                )
         
     | 
| 
      
 33 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 34 
     | 
    
         
            +
                    virtual
         
     | 
| 
      
 35 
     | 
    
         
            +
                    onlyInitializing()
         
     | 
| 
      
 36 
     | 
    
         
            +
                {
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
                    _initializeOracle(
         
     | 
| 
      
 39 
     | 
    
         
            +
                        registry,
         
     | 
| 
      
 40 
     | 
    
         
            +
                        instanceNftId,
         
     | 
| 
      
 41 
     | 
    
         
            +
                        authorization,
         
     | 
| 
      
 42 
     | 
    
         
            +
                        initialOwner,
         
     | 
| 
      
 43 
     | 
    
         
            +
                        name,
         
     | 
| 
      
 44 
     | 
    
         
            +
                        token,
         
     | 
| 
      
 45 
     | 
    
         
            +
                        "",
         
     | 
| 
      
 46 
     | 
    
         
            +
                        "");
         
     | 
| 
      
 47 
     | 
    
         
            +
                }
         
     | 
| 
      
 48 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,46 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {Authorization} from "../authorization/Authorization.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {BasicOracle} from "./BasicOracle.sol"; 
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {ORACLE} from "../type/ObjectType.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {IAccess} from "../authorization/IAccess.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {IOracle} from "./IOracle.sol"; 
         
     | 
| 
      
 9 
     | 
    
         
            +
            import {PUBLIC_ROLE} from "../../contracts/type/RoleId.sol";
         
     | 
| 
      
 10 
     | 
    
         
            +
            import {RoleId} from "../type/RoleId.sol";
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            contract BasicOracleAuthorization
         
     | 
| 
      
 14 
     | 
    
         
            +
                 is Authorization
         
     | 
| 
      
 15 
     | 
    
         
            +
            {
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
                 constructor(string memory componentName)
         
     | 
| 
      
 18 
     | 
    
         
            +
                      Authorization(componentName)
         
     | 
| 
      
 19 
     | 
    
         
            +
                 {}
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
                 function _setupTargets()
         
     | 
| 
      
 22 
     | 
    
         
            +
                      internal
         
     | 
| 
      
 23 
     | 
    
         
            +
                      virtual override
         
     | 
| 
      
 24 
     | 
    
         
            +
                 {
         
     | 
| 
      
 25 
     | 
    
         
            +
                      // basic component target
         
     | 
| 
      
 26 
     | 
    
         
            +
                      _addComponentTargetWithRole(ORACLE()); 
         
     | 
| 
      
 27 
     | 
    
         
            +
                 }
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
                 function _setupTargetAuthorizations()
         
     | 
| 
      
 31 
     | 
    
         
            +
                      internal
         
     | 
| 
      
 32 
     | 
    
         
            +
                      virtual override
         
     | 
| 
      
 33 
     | 
    
         
            +
                 {
         
     | 
| 
      
 34 
     | 
    
         
            +
                      IAccess.FunctionInfo[] storage functions;
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                      // authorize public role (open access to any account, only allows to lock target)
         
     | 
| 
      
 37 
     | 
    
         
            +
                      functions = _authorizeForTarget(getTargetName(), getServiceRole(ORACLE()));
         
     | 
| 
      
 38 
     | 
    
         
            +
                      _authorize(functions, IOracle.request.selector, "request");
         
     | 
| 
      
 39 
     | 
    
         
            +
                      _authorize(functions, IOracle.cancel.selector, "cancel");
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
                      // authorize public role (open access to any account, only allows to lock target)
         
     | 
| 
      
 42 
     | 
    
         
            +
                      functions = _authorizeForTarget(getTargetName(), PUBLIC_ROLE());
         
     | 
| 
      
 43 
     | 
    
         
            +
                      _authorize(functions, BasicOracle.respond.selector, "respond");
         
     | 
| 
      
 44 
     | 
    
         
            +
                 }
         
     | 
| 
      
 45 
     | 
    
         
            +
            }
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
         @@ -2,6 +2,7 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            pragma solidity ^0.8.20;
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
            import {NftId} from "../type/NftId.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {RequestId} from "../type/RequestId.sol";
         
     | 
| 
       5 
6 
     | 
    
         
             
            import {Timestamp} from "../type/Timestamp.sol";
         
     | 
| 
       6 
7 
     | 
    
         | 
| 
       7 
8 
     | 
    
         | 
| 
         @@ -17,4 +18,19 @@ interface IOracle { 
     | 
|
| 
       17 
18 
     | 
    
         
             
                    Timestamp expiredAt; // expiry timestamp
         
     | 
| 
       18 
19 
     | 
    
         
             
                    bool isCancelled;
         
     | 
| 
       19 
20 
     | 
    
         
             
                }
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
                /// @dev Callback function for oracle service to notify this oracle component to retreive some oracle data.
         
     | 
| 
      
 24 
     | 
    
         
            +
                function request(
         
     | 
| 
      
 25 
     | 
    
         
            +
                    RequestId requestId,
         
     | 
| 
      
 26 
     | 
    
         
            +
                    NftId requesterId,
         
     | 
| 
      
 27 
     | 
    
         
            +
                    bytes calldata requestData,
         
     | 
| 
      
 28 
     | 
    
         
            +
                    Timestamp expiryAt
         
     | 
| 
      
 29 
     | 
    
         
            +
                ) external;
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
                /// @dev Callback function for oracle service to notify this oracle component that the specified oracle request has ben cancelled by the requestor.
         
     | 
| 
      
 33 
     | 
    
         
            +
                function cancel(
         
     | 
| 
      
 34 
     | 
    
         
            +
                    RequestId requestId
         
     | 
| 
      
 35 
     | 
    
         
            +
                ) external;
         
     | 
| 
       20 
36 
     | 
    
         
             
            }
         
     | 
| 
         @@ -2,16 +2,17 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            pragma solidity ^0.8.20;
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
            import {COMPONENT, ORACLE} from "../type/ObjectType.sol";
         
     | 
| 
       5 
     | 
    
         
            -
            import { 
     | 
| 
       6 
     | 
    
         
            -
            import {NftId, NftIdLib} from "../type/NftId.sol";
         
     | 
| 
       7 
     | 
    
         
            -
            import {InstanceLinkedComponent} from "../shared/InstanceLinkedComponent.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {IAuthorization} from "../authorization/IAuthorization.sol";
         
     | 
| 
       8 
6 
     | 
    
         
             
            import {IComponentService} from "../shared/IComponentService.sol";
         
     | 
| 
       9 
7 
     | 
    
         
             
            import {IOracleComponent} from "./IOracleComponent.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {IOracleService} from "./IOracleService.sol";
         
     | 
| 
       10 
9 
     | 
    
         
             
            import {IRegistry} from "../registry/IRegistry.sol";
         
     | 
| 
      
 10 
     | 
    
         
            +
            import {ITransferInterceptor} from "../registry/ITransferInterceptor.sol";
         
     | 
| 
      
 11 
     | 
    
         
            +
            import {NftId, NftIdLib} from "../type/NftId.sol";
         
     | 
| 
      
 12 
     | 
    
         
            +
            import {InstanceLinkedComponent} from "../shared/InstanceLinkedComponent.sol";
         
     | 
| 
       11 
13 
     | 
    
         
             
            import {InstanceReader} from "../instance/InstanceReader.sol";
         
     | 
| 
       12 
14 
     | 
    
         
             
            import {RequestId} from "../type/RequestId.sol";
         
     | 
| 
       13 
15 
     | 
    
         
             
            import {Timestamp, TimestampLib} from "../type/Timestamp.sol";
         
     | 
| 
       14 
     | 
    
         
            -
            import {ITransferInterceptor} from "../registry/ITransferInterceptor.sol";
         
     | 
| 
       15 
16 
     | 
    
         
             
            import {UFixed} from "../type/UFixed.sol";
         
     | 
| 
       16 
17 
     | 
    
         | 
| 
       17 
18 
     | 
    
         | 
| 
         @@ -28,29 +29,6 @@ abstract contract Oracle is 
     | 
|
| 
       28 
29 
     | 
    
         
             
                }
         
     | 
| 
       29 
30 
     | 
    
         | 
| 
       30 
31 
     | 
    
         | 
| 
       31 
     | 
    
         
            -
                function initializeOracle(
         
     | 
| 
       32 
     | 
    
         
            -
                    address registry,
         
     | 
| 
       33 
     | 
    
         
            -
                    NftId instanceNftId,
         
     | 
| 
       34 
     | 
    
         
            -
                    address initialOwner,
         
     | 
| 
       35 
     | 
    
         
            -
                    string memory name,
         
     | 
| 
       36 
     | 
    
         
            -
                    address token,
         
     | 
| 
       37 
     | 
    
         
            -
                    bytes memory registryData, // writeonly data that will saved in the object info record of the registry
         
     | 
| 
       38 
     | 
    
         
            -
                    bytes memory componentData // component specifidc data 
         
     | 
| 
       39 
     | 
    
         
            -
                )
         
     | 
| 
       40 
     | 
    
         
            -
                    public
         
     | 
| 
       41 
     | 
    
         
            -
                    virtual
         
     | 
| 
       42 
     | 
    
         
            -
                    onlyInitializing()
         
     | 
| 
       43 
     | 
    
         
            -
                {
         
     | 
| 
       44 
     | 
    
         
            -
                    initializeInstanceLinkedComponent(registry, instanceNftId, name, token, ORACLE(), true, initialOwner, registryData, componentData);
         
     | 
| 
       45 
     | 
    
         
            -
             
     | 
| 
       46 
     | 
    
         
            -
                    OracleStorage storage $ = _getOracleStorage();
         
     | 
| 
       47 
     | 
    
         
            -
                    $._oracleService = IOracleService(_getServiceAddress(ORACLE())); 
         
     | 
| 
       48 
     | 
    
         
            -
                    $._componentService = IComponentService(_getServiceAddress(COMPONENT())); 
         
     | 
| 
       49 
     | 
    
         
            -
             
     | 
| 
       50 
     | 
    
         
            -
                    registerInterface(type(IOracleComponent).interfaceId);
         
     | 
| 
       51 
     | 
    
         
            -
                }
         
     | 
| 
       52 
     | 
    
         
            -
             
     | 
| 
       53 
     | 
    
         
            -
             
     | 
| 
       54 
32 
     | 
    
         
             
                function register()
         
     | 
| 
       55 
33 
     | 
    
         
             
                    external
         
     | 
| 
       56 
34 
     | 
    
         
             
                    virtual
         
     | 
| 
         @@ -60,16 +38,6 @@ abstract contract Oracle is 
     | 
|
| 
       60 
38 
     | 
    
         
             
                }
         
     | 
| 
       61 
39 
     | 
    
         | 
| 
       62 
40 
     | 
    
         | 
| 
       63 
     | 
    
         
            -
                function isVerifying()
         
     | 
| 
       64 
     | 
    
         
            -
                    external 
         
     | 
| 
       65 
     | 
    
         
            -
                    virtual 
         
     | 
| 
       66 
     | 
    
         
            -
                    view 
         
     | 
| 
       67 
     | 
    
         
            -
                    returns (bool verifying)
         
     | 
| 
       68 
     | 
    
         
            -
                {
         
     | 
| 
       69 
     | 
    
         
            -
                    return false;
         
     | 
| 
       70 
     | 
    
         
            -
                }
         
     | 
| 
       71 
     | 
    
         
            -
             
     | 
| 
       72 
     | 
    
         
            -
             
     | 
| 
       73 
41 
     | 
    
         
             
                function request(
         
     | 
| 
       74 
42 
     | 
    
         
             
                    RequestId requestId,
         
     | 
| 
       75 
43 
     | 
    
         
             
                    NftId requesterId,
         
     | 
| 
         @@ -78,7 +46,7 @@ abstract contract Oracle is 
     | 
|
| 
       78 
46 
     | 
    
         
             
                )
         
     | 
| 
       79 
47 
     | 
    
         
             
                    external
         
     | 
| 
       80 
48 
     | 
    
         
             
                    virtual
         
     | 
| 
       81 
     | 
    
         
            -
                     
     | 
| 
      
 49 
     | 
    
         
            +
                    restricted()
         
     | 
| 
       82 
50 
     | 
    
         
             
                {
         
     | 
| 
       83 
51 
     | 
    
         
             
                    _request(requestId, requesterId, requestData, expiryAt);
         
     | 
| 
       84 
52 
     | 
    
         
             
                }
         
     | 
| 
         @@ -89,16 +57,60 @@ abstract contract Oracle is 
     | 
|
| 
       89 
57 
     | 
    
         
             
                )
         
     | 
| 
       90 
58 
     | 
    
         
             
                    external
         
     | 
| 
       91 
59 
     | 
    
         
             
                    virtual
         
     | 
| 
       92 
     | 
    
         
            -
                     
     | 
| 
      
 60 
     | 
    
         
            +
                    restricted()
         
     | 
| 
       93 
61 
     | 
    
         
             
                {
         
     | 
| 
       94 
62 
     | 
    
         
             
                    _cancel(requestId);
         
     | 
| 
       95 
63 
     | 
    
         
             
                }
         
     | 
| 
       96 
64 
     | 
    
         | 
| 
       97 
65 
     | 
    
         | 
| 
       98 
     | 
    
         
            -
                /// @dev  
     | 
| 
       99 
     | 
    
         
            -
                 
     | 
| 
       100 
     | 
    
         
            -
             
     | 
| 
       101 
     | 
    
         
            -
             
     | 
| 
      
 66 
     | 
    
         
            +
                /// @dev Not relevant for oracle components, always returns false.
         
     | 
| 
      
 67 
     | 
    
         
            +
                function isVerifying()
         
     | 
| 
      
 68 
     | 
    
         
            +
                    external 
         
     | 
| 
      
 69 
     | 
    
         
            +
                    virtual 
         
     | 
| 
      
 70 
     | 
    
         
            +
                    view 
         
     | 
| 
      
 71 
     | 
    
         
            +
                    returns (bool verifying)
         
     | 
| 
      
 72 
     | 
    
         
            +
                {
         
     | 
| 
      
 73 
     | 
    
         
            +
                    return false;
         
     | 
| 
      
 74 
     | 
    
         
            +
                }
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
                function _initializeOracle(
         
     | 
| 
      
 78 
     | 
    
         
            +
                    address registry,
         
     | 
| 
      
 79 
     | 
    
         
            +
                    NftId instanceNftId,
         
     | 
| 
      
 80 
     | 
    
         
            +
                    IAuthorization authorization,
         
     | 
| 
      
 81 
     | 
    
         
            +
                    address initialOwner,
         
     | 
| 
      
 82 
     | 
    
         
            +
                    string memory name,
         
     | 
| 
      
 83 
     | 
    
         
            +
                    address token,
         
     | 
| 
      
 84 
     | 
    
         
            +
                    bytes memory registryData, // writeonly data that will saved in the object info record of the registry
         
     | 
| 
      
 85 
     | 
    
         
            +
                    bytes memory componentData // component specifidc data 
         
     | 
| 
      
 86 
     | 
    
         
            +
                )
         
     | 
| 
      
 87 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 88 
     | 
    
         
            +
                    virtual
         
     | 
| 
      
 89 
     | 
    
         
            +
                    onlyInitializing()
         
     | 
| 
      
 90 
     | 
    
         
            +
                {
         
     | 
| 
      
 91 
     | 
    
         
            +
                    _initializeInstanceLinkedComponent(
         
     | 
| 
      
 92 
     | 
    
         
            +
                        registry, 
         
     | 
| 
      
 93 
     | 
    
         
            +
                        instanceNftId, 
         
     | 
| 
      
 94 
     | 
    
         
            +
                        name, 
         
     | 
| 
      
 95 
     | 
    
         
            +
                        token, 
         
     | 
| 
      
 96 
     | 
    
         
            +
                        ORACLE(), 
         
     | 
| 
      
 97 
     | 
    
         
            +
                        authorization,
         
     | 
| 
      
 98 
     | 
    
         
            +
                        true, 
         
     | 
| 
      
 99 
     | 
    
         
            +
                        initialOwner, 
         
     | 
| 
      
 100 
     | 
    
         
            +
                        registryData, 
         
     | 
| 
      
 101 
     | 
    
         
            +
                        componentData);
         
     | 
| 
      
 102 
     | 
    
         
            +
             
     | 
| 
      
 103 
     | 
    
         
            +
                    OracleStorage storage $ = _getOracleStorage();
         
     | 
| 
      
 104 
     | 
    
         
            +
                    $._oracleService = IOracleService(_getServiceAddress(ORACLE())); 
         
     | 
| 
      
 105 
     | 
    
         
            +
                    $._componentService = IComponentService(_getServiceAddress(COMPONENT())); 
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
                    registerInterface(type(IOracleComponent).interfaceId);
         
     | 
| 
      
 108 
     | 
    
         
            +
                }
         
     | 
| 
      
 109 
     | 
    
         
            +
             
     | 
| 
      
 110 
     | 
    
         
            +
             
     | 
| 
      
 111 
     | 
    
         
            +
                /// @dev Internal function for handling requests.
         
     | 
| 
      
 112 
     | 
    
         
            +
                /// Empty implementation.
         
     | 
| 
      
 113 
     | 
    
         
            +
                /// Overwrite this function to implement use case specific handling for oracle calls.
         
     | 
| 
       102 
114 
     | 
    
         
             
                function _request(
         
     | 
| 
       103 
115 
     | 
    
         
             
                    RequestId requestId,
         
     | 
| 
       104 
116 
     | 
    
         
             
                    NftId requesterId,
         
     | 
| 
         @@ -111,9 +123,9 @@ abstract contract Oracle is 
     | 
|
| 
       111 
123 
     | 
    
         
             
                }
         
     | 
| 
       112 
124 
     | 
    
         | 
| 
       113 
125 
     | 
    
         | 
| 
       114 
     | 
    
         
            -
                /// @dev  
     | 
| 
       115 
     | 
    
         
            -
                ///  
     | 
| 
       116 
     | 
    
         
            -
                ///  
     | 
| 
      
 126 
     | 
    
         
            +
                /// @dev Internal function for cancelling requests.
         
     | 
| 
      
 127 
     | 
    
         
            +
                /// Empty implementation.
         
     | 
| 
      
 128 
     | 
    
         
            +
                /// Overwrite this function to implement use case specific cancelling.
         
     | 
| 
       117 
129 
     | 
    
         
             
                function _cancel(
         
     | 
| 
       118 
130 
     | 
    
         
             
                    RequestId requestId
         
     | 
| 
       119 
131 
     | 
    
         
             
                )
         
     | 
| 
         @@ -123,9 +135,9 @@ abstract contract Oracle is 
     | 
|
| 
       123 
135 
     | 
    
         
             
                }
         
     | 
| 
       124 
136 
     | 
    
         | 
| 
       125 
137 
     | 
    
         | 
| 
       126 
     | 
    
         
            -
                /// @dev  
     | 
| 
       127 
     | 
    
         
            -
                ///  
     | 
| 
       128 
     | 
    
         
            -
                /// to handle use case specific response handling.
         
     | 
| 
      
 138 
     | 
    
         
            +
                /// @dev Internal function for handling oracle responses.
         
     | 
| 
      
 139 
     | 
    
         
            +
                /// Default implementation sends response back to oracle service.
         
     | 
| 
      
 140 
     | 
    
         
            +
                /// Use this function in use case specific external/public functions to handle use case specific response handling.
         
     | 
| 
       129 
141 
     | 
    
         
             
                function _respond(
         
     | 
| 
       130 
142 
     | 
    
         
             
                    RequestId requestId,
         
     | 
| 
       131 
143 
     | 
    
         
             
                    bytes memory responseData
         
     | 
| 
         @@ -37,10 +37,6 @@ contract OracleService is 
     | 
|
| 
       37 
37 
     | 
    
         
             
                    registerInterface(type(IOracleService).interfaceId);
         
     | 
| 
       38 
38 
     | 
    
         
             
                }
         
     | 
| 
       39 
39 
     | 
    
         | 
| 
       40 
     | 
    
         
            -
                function getDomain() public pure override returns(ObjectType) {
         
     | 
| 
       41 
     | 
    
         
            -
                    return ORACLE();
         
     | 
| 
       42 
     | 
    
         
            -
                }
         
     | 
| 
       43 
     | 
    
         
            -
             
     | 
| 
       44 
40 
     | 
    
         
             
                function request(
         
     | 
| 
       45 
41 
     | 
    
         
             
                    NftId oracleNftId,
         
     | 
| 
       46 
42 
     | 
    
         
             
                    bytes calldata requestData,
         
     | 
| 
         @@ -274,4 +270,9 @@ contract OracleService is 
     | 
|
| 
       274 
270 
     | 
    
         
             
                    address instanceAddress = getRegistry().getObjectInfo(instanceNftId).objectAddress;
         
     | 
| 
       275 
271 
     | 
    
         
             
                    return IInstance(instanceAddress);
         
     | 
| 
       276 
272 
     | 
    
         
             
                }
         
     | 
| 
      
 273 
     | 
    
         
            +
             
     | 
| 
      
 274 
     | 
    
         
            +
             
     | 
| 
      
 275 
     | 
    
         
            +
                function _getDomain() internal pure override returns(ObjectType) {
         
     | 
| 
      
 276 
     | 
    
         
            +
                    return ORACLE();
         
     | 
| 
      
 277 
     | 
    
         
            +
                }
         
     | 
| 
       277 
278 
     | 
    
         
             
            }
         
     |