@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
 
    
        package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json
    CHANGED
    
    | 
         @@ -304,6 +304,19 @@ 
     | 
|
| 
       304 
304 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       305 
305 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       306 
306 
     | 
    
         
             
                },
         
     | 
| 
      
 307 
     | 
    
         
            +
                {
         
     | 
| 
      
 308 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 309 
     | 
    
         
            +
                  "name": "getRoleId",
         
     | 
| 
      
 310 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 311 
     | 
    
         
            +
                    {
         
     | 
| 
      
 312 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 313 
     | 
    
         
            +
                      "name": "serviceRoleId",
         
     | 
| 
      
 314 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 315 
     | 
    
         
            +
                    }
         
     | 
| 
      
 316 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 317 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 318 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 319 
     | 
    
         
            +
                },
         
     | 
| 
       307 
320 
     | 
    
         
             
                {
         
     | 
| 
       308 
321 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       309 
322 
     | 
    
         
             
                  "name": "getVersion",
         
     | 
| 
         @@ -66,8 +66,8 @@ 
     | 
|
| 
       66 
66 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       67 
67 
     | 
    
         
             
                }
         
     | 
| 
       68 
68 
     | 
    
         
             
              ],
         
     | 
| 
       69 
     | 
    
         
            -
              "bytecode": " 
     | 
| 
       70 
     | 
    
         
            -
              "deployedBytecode": " 
     | 
| 
      
 69 
     | 
    
         
            +
              "bytecode": "0x6080604052348015600e575f80fd5b506101c58061001c5f395ff3fe608060405234801561000f575f80fd5b506004361061003f575f3560e01c806301ffc9a714610043578063214cdb801461008357806336fc697e14610098575b5f80fd5b61006f610051366004610161565b6001600160e01b0319165f9081526020819052604090205460ff1690565b604051901515815260200160405180910390f35b610096610091366004610161565b6100a0565b005b6100966100cc565b6100a8610111565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6100d4610111565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661015f57604051631afcd79f60e31b815260040160405180910390fd5b565b5f60208284031215610171575f80fd5b81356001600160e01b031981168114610188575f80fd5b939250505056fea2646970667358221220b1ccd420974e58f3088b2000f8e386905e4cab1a87b76bd9a975ef000f649d0f64736f6c634300081a0033",
         
     | 
| 
      
 70 
     | 
    
         
            +
              "deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061003f575f3560e01c806301ffc9a714610043578063214cdb801461008357806336fc697e14610098575b5f80fd5b61006f610051366004610161565b6001600160e01b0319165f9081526020819052604090205460ff1690565b604051901515815260200160405180910390f35b610096610091366004610161565b6100a0565b005b6100966100cc565b6100a8610111565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6100d4610111565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661015f57604051631afcd79f60e31b815260040160405180910390fd5b565b5f60208284031215610171575f80fd5b81356001600160e01b031981168114610188575f80fd5b939250505056fea2646970667358221220b1ccd420974e58f3088b2000f8e386905e4cab1a87b76bd9a975ef000f649d0f64736f6c634300081a0033",
         
     | 
| 
       71 
71 
     | 
    
         
             
              "linkReferences": {},
         
     | 
| 
       72 
72 
     | 
    
         
             
              "deployedLinkReferences": {}
         
     | 
| 
       73 
73 
     | 
    
         
             
            }
         
     | 
| 
         @@ -452,6 +452,19 @@ 
     | 
|
| 
       452 
452 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       453 
453 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       454 
454 
     | 
    
         
             
                },
         
     | 
| 
      
 455 
     | 
    
         
            +
                {
         
     | 
| 
      
 456 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 457 
     | 
    
         
            +
                  "name": "getRoleId",
         
     | 
| 
      
 458 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 459 
     | 
    
         
            +
                    {
         
     | 
| 
      
 460 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 461 
     | 
    
         
            +
                      "name": "serviceRoleId",
         
     | 
| 
      
 462 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 463 
     | 
    
         
            +
                    }
         
     | 
| 
      
 464 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 465 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 466 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 467 
     | 
    
         
            +
                },
         
     | 
| 
       455 
468 
     | 
    
         
             
                {
         
     | 
| 
       456 
469 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       457 
470 
     | 
    
         
             
                  "name": "getVersion",
         
     | 
    
        package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json
    CHANGED
    
    | 
         @@ -281,6 +281,19 @@ 
     | 
|
| 
       281 
281 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       282 
282 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       283 
283 
     | 
    
         
             
                },
         
     | 
| 
      
 284 
     | 
    
         
            +
                {
         
     | 
| 
      
 285 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 286 
     | 
    
         
            +
                  "name": "getAuthorization",
         
     | 
| 
      
 287 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 288 
     | 
    
         
            +
                    {
         
     | 
| 
      
 289 
     | 
    
         
            +
                      "internalType": "contract IAuthorization",
         
     | 
| 
      
 290 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 291 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 292 
     | 
    
         
            +
                    }
         
     | 
| 
      
 293 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 294 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 295 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 296 
     | 
    
         
            +
                },
         
     | 
| 
       284 
297 
     | 
    
         
             
                {
         
     | 
| 
       285 
298 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       286 
299 
     | 
    
         
             
                  "name": "getComponentInfo",
         
     | 
| 
         @@ -40,6 +40,17 @@ 
     | 
|
| 
       40 
40 
     | 
    
         
             
                  "name": "ErrorKeyValueStoreAlreadyCreated",
         
     | 
| 
       41 
41 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       42 
42 
     | 
    
         
             
                },
         
     | 
| 
      
 43 
     | 
    
         
            +
                {
         
     | 
| 
      
 44 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 45 
     | 
    
         
            +
                    {
         
     | 
| 
      
 46 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 49 
     | 
    
         
            +
                    }
         
     | 
| 
      
 50 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 51 
     | 
    
         
            +
                  "name": "ErrorKeyValueStoreNoLifecycle",
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 53 
     | 
    
         
            +
                },
         
     | 
| 
       43 
54 
     | 
    
         
             
                {
         
     | 
| 
       44 
55 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       45 
56 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -75,11 +86,6 @@ 
     | 
|
| 
       75 
86 
     | 
    
         
             
                },
         
     | 
| 
       76 
87 
     | 
    
         
             
                {
         
     | 
| 
       77 
88 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       78 
     | 
    
         
            -
                    {
         
     | 
| 
       79 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       80 
     | 
    
         
            -
                      "name": "nftId",
         
     | 
| 
       81 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       82 
     | 
    
         
            -
                    },
         
     | 
| 
       83 
89 
     | 
    
         
             
                    {
         
     | 
| 
       84 
90 
     | 
    
         
             
                      "internalType": "ObjectType",
         
     | 
| 
       85 
91 
     | 
    
         
             
                      "name": "objectType",
         
     | 
| 
         @@ -223,6 +223,19 @@ 
     | 
|
| 
       223 
223 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       224 
224 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       225 
225 
     | 
    
         
             
                },
         
     | 
| 
      
 226 
     | 
    
         
            +
                {
         
     | 
| 
      
 227 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 228 
     | 
    
         
            +
                  "name": "getRoleId",
         
     | 
| 
      
 229 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 230 
     | 
    
         
            +
                    {
         
     | 
| 
      
 231 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 232 
     | 
    
         
            +
                      "name": "serviceRoleId",
         
     | 
| 
      
 233 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 234 
     | 
    
         
            +
                    }
         
     | 
| 
      
 235 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 236 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 237 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 238 
     | 
    
         
            +
                },
         
     | 
| 
       226 
239 
     | 
    
         
             
                {
         
     | 
| 
       227 
240 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       228 
241 
     | 
    
         
             
                  "name": "getVersion",
         
     | 
| 
         @@ -412,6 +412,19 @@ 
     | 
|
| 
       412 
412 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       413 
413 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       414 
414 
     | 
    
         
             
                },
         
     | 
| 
      
 415 
     | 
    
         
            +
                {
         
     | 
| 
      
 416 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 417 
     | 
    
         
            +
                  "name": "getAuthorization",
         
     | 
| 
      
 418 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 419 
     | 
    
         
            +
                    {
         
     | 
| 
      
 420 
     | 
    
         
            +
                      "internalType": "contract IAuthorization",
         
     | 
| 
      
 421 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 422 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 423 
     | 
    
         
            +
                    }
         
     | 
| 
      
 424 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 425 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 426 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 427 
     | 
    
         
            +
                },
         
     | 
| 
       415 
428 
     | 
    
         
             
                {
         
     | 
| 
       416 
429 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       417 
430 
     | 
    
         
             
                  "name": "getComponentInfo",
         
     | 
| 
         @@ -734,59 +747,6 @@ 
     | 
|
| 
       734 
747 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       735 
748 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       736 
749 
     | 
    
         
             
                },
         
     | 
| 
       737 
     | 
    
         
            -
                {
         
     | 
| 
       738 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       739 
     | 
    
         
            -
                    {
         
     | 
| 
       740 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       741 
     | 
    
         
            -
                      "name": "registry",
         
     | 
| 
       742 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       743 
     | 
    
         
            -
                    },
         
     | 
| 
       744 
     | 
    
         
            -
                    {
         
     | 
| 
       745 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       746 
     | 
    
         
            -
                      "name": "instanceNftId",
         
     | 
| 
       747 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       748 
     | 
    
         
            -
                    },
         
     | 
| 
       749 
     | 
    
         
            -
                    {
         
     | 
| 
       750 
     | 
    
         
            -
                      "internalType": "string",
         
     | 
| 
       751 
     | 
    
         
            -
                      "name": "name",
         
     | 
| 
       752 
     | 
    
         
            -
                      "type": "string"
         
     | 
| 
       753 
     | 
    
         
            -
                    },
         
     | 
| 
       754 
     | 
    
         
            -
                    {
         
     | 
| 
       755 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       756 
     | 
    
         
            -
                      "name": "token",
         
     | 
| 
       757 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       758 
     | 
    
         
            -
                    },
         
     | 
| 
       759 
     | 
    
         
            -
                    {
         
     | 
| 
       760 
     | 
    
         
            -
                      "internalType": "ObjectType",
         
     | 
| 
       761 
     | 
    
         
            -
                      "name": "componentType",
         
     | 
| 
       762 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       763 
     | 
    
         
            -
                    },
         
     | 
| 
       764 
     | 
    
         
            -
                    {
         
     | 
| 
       765 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       766 
     | 
    
         
            -
                      "name": "isInterceptor",
         
     | 
| 
       767 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       768 
     | 
    
         
            -
                    },
         
     | 
| 
       769 
     | 
    
         
            -
                    {
         
     | 
| 
       770 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       771 
     | 
    
         
            -
                      "name": "initialOwner",
         
     | 
| 
       772 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       773 
     | 
    
         
            -
                    },
         
     | 
| 
       774 
     | 
    
         
            -
                    {
         
     | 
| 
       775 
     | 
    
         
            -
                      "internalType": "bytes",
         
     | 
| 
       776 
     | 
    
         
            -
                      "name": "registryData",
         
     | 
| 
       777 
     | 
    
         
            -
                      "type": "bytes"
         
     | 
| 
       778 
     | 
    
         
            -
                    },
         
     | 
| 
       779 
     | 
    
         
            -
                    {
         
     | 
| 
       780 
     | 
    
         
            -
                      "internalType": "bytes",
         
     | 
| 
       781 
     | 
    
         
            -
                      "name": "componentData",
         
     | 
| 
       782 
     | 
    
         
            -
                      "type": "bytes"
         
     | 
| 
       783 
     | 
    
         
            -
                    }
         
     | 
| 
       784 
     | 
    
         
            -
                  ],
         
     | 
| 
       785 
     | 
    
         
            -
                  "name": "initializeInstanceLinkedComponent",
         
     | 
| 
       786 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       787 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       788 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       789 
     | 
    
         
            -
                },
         
     | 
| 
       790 
750 
     | 
    
         
             
                {
         
     | 
| 
       791 
751 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       792 
752 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -40,6 +40,17 @@ 
     | 
|
| 
       40 
40 
     | 
    
         
             
                  "name": "ErrorKeyValueStoreAlreadyCreated",
         
     | 
| 
       41 
41 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       42 
42 
     | 
    
         
             
                },
         
     | 
| 
      
 43 
     | 
    
         
            +
                {
         
     | 
| 
      
 44 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 45 
     | 
    
         
            +
                    {
         
     | 
| 
      
 46 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 49 
     | 
    
         
            +
                    }
         
     | 
| 
      
 50 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 51 
     | 
    
         
            +
                  "name": "ErrorKeyValueStoreNoLifecycle",
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 53 
     | 
    
         
            +
                },
         
     | 
| 
       43 
54 
     | 
    
         
             
                {
         
     | 
| 
       44 
55 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       45 
56 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -75,11 +86,6 @@ 
     | 
|
| 
       75 
86 
     | 
    
         
             
                },
         
     | 
| 
       76 
87 
     | 
    
         
             
                {
         
     | 
| 
       77 
88 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       78 
     | 
    
         
            -
                    {
         
     | 
| 
       79 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       80 
     | 
    
         
            -
                      "name": "nftId",
         
     | 
| 
       81 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       82 
     | 
    
         
            -
                    },
         
     | 
| 
       83 
89 
     | 
    
         
             
                    {
         
     | 
| 
       84 
90 
     | 
    
         
             
                      "internalType": "ObjectType",
         
     | 
| 
       85 
91 
     | 
    
         
             
                      "name": "objectType",
         
     | 
| 
         @@ -89,29 +95,6 @@ 
     | 
|
| 
       89 
95 
     | 
    
         
             
                  "name": "ErrorNoLifecycle",
         
     | 
| 
       90 
96 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       91 
97 
     | 
    
         
             
                },
         
     | 
| 
       92 
     | 
    
         
            -
                {
         
     | 
| 
       93 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       94 
     | 
    
         
            -
                  "name": "InvalidInitialization",
         
     | 
| 
       95 
     | 
    
         
            -
                  "type": "error"
         
     | 
| 
       96 
     | 
    
         
            -
                },
         
     | 
| 
       97 
     | 
    
         
            -
                {
         
     | 
| 
       98 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       99 
     | 
    
         
            -
                  "name": "NotInitializing",
         
     | 
| 
       100 
     | 
    
         
            -
                  "type": "error"
         
     | 
| 
       101 
     | 
    
         
            -
                },
         
     | 
| 
       102 
     | 
    
         
            -
                {
         
     | 
| 
       103 
     | 
    
         
            -
                  "anonymous": false,
         
     | 
| 
       104 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       105 
     | 
    
         
            -
                    {
         
     | 
| 
       106 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       107 
     | 
    
         
            -
                      "internalType": "uint64",
         
     | 
| 
       108 
     | 
    
         
            -
                      "name": "version",
         
     | 
| 
       109 
     | 
    
         
            -
                      "type": "uint64"
         
     | 
| 
       110 
     | 
    
         
            -
                    }
         
     | 
| 
       111 
     | 
    
         
            -
                  ],
         
     | 
| 
       112 
     | 
    
         
            -
                  "name": "Initialized",
         
     | 
| 
       113 
     | 
    
         
            -
                  "type": "event"
         
     | 
| 
       114 
     | 
    
         
            -
                },
         
     | 
| 
       115 
98 
     | 
    
         
             
                {
         
     | 
| 
       116 
99 
     | 
    
         
             
                  "anonymous": false,
         
     | 
| 
       117 
100 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
         @@ -453,13 +436,6 @@ 
     | 
|
| 
       453 
436 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       454 
437 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       455 
438 
     | 
    
         
             
                },
         
     | 
| 
       456 
     | 
    
         
            -
                {
         
     | 
| 
       457 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       458 
     | 
    
         
            -
                  "name": "initializeLifecycle",
         
     | 
| 
       459 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       460 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       461 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       462 
     | 
    
         
            -
                },
         
     | 
| 
       463 
439 
     | 
    
         
             
                {
         
     | 
| 
       464 
440 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       465 
441 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -514,58 +490,8 @@ 
     | 
|
| 
       514 
490 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       515 
491 
     | 
    
         
             
                }
         
     | 
| 
       516 
492 
     | 
    
         
             
              ],
         
     | 
| 
       517 
     | 
    
         
            -
              "bytecode": " 
     | 
| 
       518 
     | 
    
         
            -
              "deployedBytecode": " 
     | 
| 
       519 
     | 
    
         
            -
              "linkReferences": {
         
     | 
| 
       520 
     | 
    
         
            -
             
     | 
| 
       521 
     | 
    
         
            -
                  "Key32Lib": [
         
     | 
| 
       522 
     | 
    
         
            -
                    {
         
     | 
| 
       523 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       524 
     | 
    
         
            -
                      "start": 1721
         
     | 
| 
       525 
     | 
    
         
            -
                    }
         
     | 
| 
       526 
     | 
    
         
            -
                  ]
         
     | 
| 
       527 
     | 
    
         
            -
                },
         
     | 
| 
       528 
     | 
    
         
            -
                "contracts/type/StateId.sol": {
         
     | 
| 
       529 
     | 
    
         
            -
                  "StateIdLib": [
         
     | 
| 
       530 
     | 
    
         
            -
                    {
         
     | 
| 
       531 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       532 
     | 
    
         
            -
                      "start": 737
         
     | 
| 
       533 
     | 
    
         
            -
                    },
         
     | 
| 
       534 
     | 
    
         
            -
                    {
         
     | 
| 
       535 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       536 
     | 
    
         
            -
                      "start": 1400
         
     | 
| 
       537 
     | 
    
         
            -
                    },
         
     | 
| 
       538 
     | 
    
         
            -
                    {
         
     | 
| 
       539 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       540 
     | 
    
         
            -
                      "start": 1650
         
     | 
| 
       541 
     | 
    
         
            -
                    }
         
     | 
| 
       542 
     | 
    
         
            -
                  ]
         
     | 
| 
       543 
     | 
    
         
            -
                }
         
     | 
| 
       544 
     | 
    
         
            -
              },
         
     | 
| 
       545 
     | 
    
         
            -
              "deployedLinkReferences": {
         
     | 
| 
       546 
     | 
    
         
            -
                "contracts/type/Key32.sol": {
         
     | 
| 
       547 
     | 
    
         
            -
                  "Key32Lib": [
         
     | 
| 
       548 
     | 
    
         
            -
                    {
         
     | 
| 
       549 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       550 
     | 
    
         
            -
                      "start": 1689
         
     | 
| 
       551 
     | 
    
         
            -
                    }
         
     | 
| 
       552 
     | 
    
         
            -
                  ]
         
     | 
| 
       553 
     | 
    
         
            -
                },
         
     | 
| 
       554 
     | 
    
         
            -
                "contracts/type/StateId.sol": {
         
     | 
| 
       555 
     | 
    
         
            -
                  "StateIdLib": [
         
     | 
| 
       556 
     | 
    
         
            -
                    {
         
     | 
| 
       557 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       558 
     | 
    
         
            -
                      "start": 705
         
     | 
| 
       559 
     | 
    
         
            -
                    },
         
     | 
| 
       560 
     | 
    
         
            -
                    {
         
     | 
| 
       561 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       562 
     | 
    
         
            -
                      "start": 1368
         
     | 
| 
       563 
     | 
    
         
            -
                    },
         
     | 
| 
       564 
     | 
    
         
            -
                    {
         
     | 
| 
       565 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       566 
     | 
    
         
            -
                      "start": 1618
         
     | 
| 
       567 
     | 
    
         
            -
                    }
         
     | 
| 
       568 
     | 
    
         
            -
                  ]
         
     | 
| 
       569 
     | 
    
         
            -
                }
         
     | 
| 
       570 
     | 
    
         
            -
              }
         
     | 
| 
      
 493 
     | 
    
         
            +
              "bytecode": "0x",
         
     | 
| 
      
 494 
     | 
    
         
            +
              "deployedBytecode": "0x",
         
     | 
| 
      
 495 
     | 
    
         
            +
              "linkReferences": {},
         
     | 
| 
      
 496 
     | 
    
         
            +
              "deployedLinkReferences": {}
         
     | 
| 
       571 
497 
     | 
    
         
             
            }
         
     | 
| 
         @@ -26,11 +26,6 @@ 
     | 
|
| 
       26 
26 
     | 
    
         
             
                },
         
     | 
| 
       27 
27 
     | 
    
         
             
                {
         
     | 
| 
       28 
28 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       29 
     | 
    
         
            -
                    {
         
     | 
| 
       30 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       31 
     | 
    
         
            -
                      "name": "nftId",
         
     | 
| 
       32 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       33 
     | 
    
         
            -
                    },
         
     | 
| 
       34 
29 
     | 
    
         
             
                    {
         
     | 
| 
       35 
30 
     | 
    
         
             
                      "internalType": "ObjectType",
         
     | 
| 
       36 
31 
     | 
    
         
             
                      "name": "objectType",
         
     | 
| 
         @@ -40,29 +35,6 @@ 
     | 
|
| 
       40 
35 
     | 
    
         
             
                  "name": "ErrorNoLifecycle",
         
     | 
| 
       41 
36 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       42 
37 
     | 
    
         
             
                },
         
     | 
| 
       43 
     | 
    
         
            -
                {
         
     | 
| 
       44 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       45 
     | 
    
         
            -
                  "name": "InvalidInitialization",
         
     | 
| 
       46 
     | 
    
         
            -
                  "type": "error"
         
     | 
| 
       47 
     | 
    
         
            -
                },
         
     | 
| 
       48 
     | 
    
         
            -
                {
         
     | 
| 
       49 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       50 
     | 
    
         
            -
                  "name": "NotInitializing",
         
     | 
| 
       51 
     | 
    
         
            -
                  "type": "error"
         
     | 
| 
       52 
     | 
    
         
            -
                },
         
     | 
| 
       53 
     | 
    
         
            -
                {
         
     | 
| 
       54 
     | 
    
         
            -
                  "anonymous": false,
         
     | 
| 
       55 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       56 
     | 
    
         
            -
                    {
         
     | 
| 
       57 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       58 
     | 
    
         
            -
                      "internalType": "uint64",
         
     | 
| 
       59 
     | 
    
         
            -
                      "name": "version",
         
     | 
| 
       60 
     | 
    
         
            -
                      "type": "uint64"
         
     | 
| 
       61 
     | 
    
         
            -
                    }
         
     | 
| 
       62 
     | 
    
         
            -
                  ],
         
     | 
| 
       63 
     | 
    
         
            -
                  "name": "Initialized",
         
     | 
| 
       64 
     | 
    
         
            -
                  "type": "event"
         
     | 
| 
       65 
     | 
    
         
            -
                },
         
     | 
| 
       66 
38 
     | 
    
         
             
                {
         
     | 
| 
       67 
39 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       68 
40 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -124,13 +96,6 @@ 
     | 
|
| 
       124 
96 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       125 
97 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       126 
98 
     | 
    
         
             
                },
         
     | 
| 
       127 
     | 
    
         
            -
                {
         
     | 
| 
       128 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       129 
     | 
    
         
            -
                  "name": "initializeLifecycle",
         
     | 
| 
       130 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       131 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       132 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       133 
     | 
    
         
            -
                },
         
     | 
| 
       134 
99 
     | 
    
         
             
                {
         
     | 
| 
       135 
100 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       136 
101 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -161,34 +126,8 @@ 
     | 
|
| 
       161 
126 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       162 
127 
     | 
    
         
             
                }
         
     | 
| 
       163 
128 
     | 
    
         
             
              ],
         
     | 
| 
       164 
     | 
    
         
            -
              "bytecode": " 
     | 
| 
       165 
     | 
    
         
            -
              "deployedBytecode": " 
     | 
| 
       166 
     | 
    
         
            -
              "linkReferences": {
         
     | 
| 
       167 
     | 
    
         
            -
             
     | 
| 
       168 
     | 
    
         
            -
                  "StateIdLib": [
         
     | 
| 
       169 
     | 
    
         
            -
                    {
         
     | 
| 
       170 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       171 
     | 
    
         
            -
                      "start": 412
         
     | 
| 
       172 
     | 
    
         
            -
                    },
         
     | 
| 
       173 
     | 
    
         
            -
                    {
         
     | 
| 
       174 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       175 
     | 
    
         
            -
                      "start": 662
         
     | 
| 
       176 
     | 
    
         
            -
                    }
         
     | 
| 
       177 
     | 
    
         
            -
                  ]
         
     | 
| 
       178 
     | 
    
         
            -
                }
         
     | 
| 
       179 
     | 
    
         
            -
              },
         
     | 
| 
       180 
     | 
    
         
            -
              "deployedLinkReferences": {
         
     | 
| 
       181 
     | 
    
         
            -
                "contracts/type/StateId.sol": {
         
     | 
| 
       182 
     | 
    
         
            -
                  "StateIdLib": [
         
     | 
| 
       183 
     | 
    
         
            -
                    {
         
     | 
| 
       184 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       185 
     | 
    
         
            -
                      "start": 380
         
     | 
| 
       186 
     | 
    
         
            -
                    },
         
     | 
| 
       187 
     | 
    
         
            -
                    {
         
     | 
| 
       188 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       189 
     | 
    
         
            -
                      "start": 630
         
     | 
| 
       190 
     | 
    
         
            -
                    }
         
     | 
| 
       191 
     | 
    
         
            -
                  ]
         
     | 
| 
       192 
     | 
    
         
            -
                }
         
     | 
| 
       193 
     | 
    
         
            -
              }
         
     | 
| 
      
 129 
     | 
    
         
            +
              "bytecode": "0x",
         
     | 
| 
      
 130 
     | 
    
         
            +
              "deployedBytecode": "0x",
         
     | 
| 
      
 131 
     | 
    
         
            +
              "linkReferences": {},
         
     | 
| 
      
 132 
     | 
    
         
            +
              "deployedLinkReferences": {}
         
     | 
| 
       194 
133 
     | 
    
         
             
            }
         
     |