@etherisc/gif-next 0.0.2-e9148e0-933 → 0.0.2-e922e07-736
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 +136 -2
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/components/Component.sol/Component.json +774 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +879 -236
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → components/IComponent.sol/IComponent.json} +164 -159
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +689 -30
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +838 -58
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +524 -9
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +950 -281
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +568 -188
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +86 -2
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1912 -421
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +194 -165
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +901 -1127
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +211 -144
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +126 -159
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +420 -305
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +297 -112
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +189 -177
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +2 -2
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +59 -16
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.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/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +968 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +665 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1096 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +661 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +754 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1221 -213
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +436 -79
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +556 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +633 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IClaimService.sol/IClaimService.json} +150 -207
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +727 -160
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +540 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +37 -251
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +47 -414
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1021 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +689 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +209 -321
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +296 -95
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +218 -499
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +299 -98
 - 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 +242 -131
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +158 -215
 - 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 +256 -226
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +202 -318
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +298 -141
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +141 -53
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +40 -29
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +21 -34
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +31 -183
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +120 -27
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -61
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -51
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +127 -170
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - 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/shared/Versionable.sol/Versionable.json +2 -152
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +129 -51
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
 - package/artifacts/contracts/test/TestService.sol/TestService.json +148 -227
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -190
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +25 -7
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/contracts/components/Component.sol +221 -0
 - package/contracts/components/Distribution.sol +200 -79
 - package/contracts/components/IComponent.sol +68 -0
 - package/contracts/components/IDistributionComponent.sol +44 -17
 - package/contracts/components/IPoolComponent.sol +126 -37
 - package/contracts/components/IProductComponent.sol +10 -5
 - package/contracts/components/Pool.sol +288 -152
 - package/contracts/components/Product.sol +124 -119
 - package/contracts/instance/BundleManager.sol +125 -0
 - package/contracts/instance/Cloneable.sol +46 -0
 - package/contracts/instance/IInstance.sol +56 -5
 - package/contracts/instance/IInstanceService.sol +33 -4
 - package/contracts/instance/Instance.sol +109 -261
 - package/contracts/instance/InstanceAccessManager.sol +87 -78
 - package/contracts/instance/InstanceReader.sol +12 -25
 - package/contracts/instance/InstanceService.sol +401 -104
 - package/contracts/instance/InstanceServiceManager.sol +6 -9
 - package/contracts/instance/ObjectManager.sol +84 -0
 - package/contracts/instance/base/ComponentService.sol +134 -0
 - package/contracts/instance/module/IAccess.sol +27 -18
 - package/contracts/instance/module/IBundle.sol +2 -1
 - package/contracts/instance/module/IDistribution.sol +2 -0
 - package/contracts/instance/module/IPolicy.sol +30 -3
 - package/contracts/instance/module/ISetup.sol +12 -10
 - package/contracts/instance/service/ApplicationService.sol +349 -0
 - package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
 - package/contracts/instance/service/BundleService.sol +299 -0
 - package/contracts/instance/service/BundleServiceManager.sol +51 -0
 - package/contracts/instance/service/ClaimService.sol +151 -0
 - package/contracts/instance/service/ClaimServiceManager.sol +35 -0
 - package/contracts/instance/service/DistributionService.sol +390 -28
 - package/contracts/instance/service/DistributionServiceManager.sol +7 -10
 - package/contracts/instance/service/IApplicationService.sol +82 -0
 - package/contracts/instance/service/IBundleService.sol +55 -0
 - package/contracts/instance/service/IClaimService.sol +61 -0
 - package/contracts/instance/service/IDistributionService.sol +86 -0
 - package/contracts/instance/service/IPolicyService.sol +72 -0
 - package/contracts/instance/service/IPoolService.sol +6 -23
 - package/contracts/instance/service/IProductService.sol +6 -73
 - package/contracts/instance/service/PolicyService.sol +394 -0
 - package/contracts/instance/service/PolicyServiceManager.sol +54 -0
 - package/contracts/instance/service/PoolService.sol +38 -123
 - package/contracts/instance/service/PoolServiceManager.sol +6 -9
 - package/contracts/instance/service/ProductService.sol +133 -448
 - package/contracts/instance/service/ProductServiceManager.sol +2 -2
 - package/contracts/registry/ChainNft.sol +1 -1
 - package/contracts/registry/IRegistry.sol +39 -19
 - package/contracts/registry/IRegistryService.sol +30 -13
 - package/contracts/registry/Registry.sol +236 -216
 - package/contracts/registry/RegistryAccessManager.sol +216 -0
 - package/contracts/registry/RegistryService.sol +96 -171
 - package/contracts/registry/RegistryServiceManager.sol +21 -39
 - package/contracts/registry/ReleaseManager.sol +322 -0
 - package/contracts/registry/TokenRegistry.sol +22 -17
 - package/contracts/shared/ERC165.sol +14 -12
 - package/contracts/shared/INftOwnable.sol +11 -10
 - package/contracts/shared/IPolicyHolder.sol +26 -0
 - package/contracts/shared/IRegisterable.sol +4 -6
 - package/contracts/shared/IRegistryLinked.sol +12 -0
 - package/contracts/shared/IService.sol +4 -1
 - package/contracts/shared/IVersionable.sol +4 -47
 - package/contracts/shared/NftOwnable.sol +66 -80
 - package/contracts/shared/PolicyHolder.sol +81 -0
 - package/contracts/shared/ProxyManager.sol +100 -25
 - package/contracts/shared/Registerable.sol +16 -32
 - package/contracts/shared/RegistryLinked.sol +48 -0
 - package/contracts/shared/Service.sol +25 -22
 - package/contracts/shared/Versionable.sol +4 -92
 - package/contracts/test/TestRegisterable.sol +1 -1
 - package/contracts/test/TestService.sol +4 -3
 - package/contracts/types/ClaimId.sol +52 -0
 - package/contracts/types/DistributorType.sol +2 -2
 - package/contracts/types/NftIdSet.sol +26 -24
 - package/contracts/types/ObjectType.sol +9 -5
 - package/contracts/types/PayoutId.sol +54 -0
 - package/contracts/types/Referral.sol +4 -0
 - package/contracts/types/RoleId.sol +19 -14
 - package/contracts/types/Seconds.sol +54 -0
 - package/contracts/types/Timestamp.sol +12 -13
 - package/package.json +3 -3
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
 - package/contracts/components/BaseComponent.sol +0 -91
 - package/contracts/components/IBaseComponent.sol +0 -25
 - package/contracts/experiment/cloning/Cloner.sol +0 -47
 - package/contracts/experiment/errors/Require.sol +0 -38
 - package/contracts/experiment/errors/Revert.sol +0 -44
 - package/contracts/experiment/inheritance/A.sol +0 -53
 - package/contracts/experiment/inheritance/B.sol +0 -28
 - package/contracts/experiment/inheritance/C.sol +0 -34
 - package/contracts/experiment/inheritance/IA.sol +0 -13
 - package/contracts/experiment/inheritance/IB.sol +0 -10
 - package/contracts/experiment/inheritance/IC.sol +0 -12
 - package/contracts/experiment/statemachine/Dummy.sol +0 -27
 - package/contracts/experiment/statemachine/ISM.sol +0 -25
 - package/contracts/experiment/statemachine/SM.sol +0 -57
 - package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
 - package/contracts/experiment/types/TypeA.sol +0 -47
 - package/contracts/experiment/types/TypeB.sol +0 -29
 - package/contracts/instance/AccessManagedSimple.sol +0 -115
 - package/contracts/instance/AccessManagerSimple.sol +0 -692
 - package/contracts/instance/IAccessManagerSimple.sol +0 -391
 - package/contracts/instance/base/ComponentServiceBase.sol +0 -124
 - package/contracts/instance/base/IInstanceBase.sol +0 -23
 - package/contracts/instance/service/ComponentOwnerService.sol +0 -317
 - package/contracts/instance/service/IComponentOwnerService.sol +0 -20
 - package/contracts/shared/RegisterableUpgradable.sol +0 -16
 
| 
         @@ -3,62 +3,1520 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
              "contractName": "IInstance",
         
     | 
| 
       4 
4 
     | 
    
         
             
              "sourceName": "contracts/instance/IInstance.sol",
         
     | 
| 
       5 
5 
     | 
    
         
             
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    }
         
     | 
| 
      
 13 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 14 
     | 
    
         
            +
                  "name": "AccessManagedInvalidAuthority",
         
     | 
| 
      
 15 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 16 
     | 
    
         
            +
                },
         
     | 
| 
      
 17 
     | 
    
         
            +
                {
         
     | 
| 
      
 18 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 19 
     | 
    
         
            +
                    {
         
     | 
| 
      
 20 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 21 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 22 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 23 
     | 
    
         
            +
                    },
         
     | 
| 
      
 24 
     | 
    
         
            +
                    {
         
     | 
| 
      
 25 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "name": "delay",
         
     | 
| 
      
 27 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 28 
     | 
    
         
            +
                    }
         
     | 
| 
      
 29 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "name": "AccessManagedRequiredDelay",
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 32 
     | 
    
         
            +
                },
         
     | 
| 
      
 33 
     | 
    
         
            +
                {
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 35 
     | 
    
         
            +
                    {
         
     | 
| 
      
 36 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 38 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 39 
     | 
    
         
            +
                    }
         
     | 
| 
      
 40 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "AccessManagedUnauthorized",
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 43 
     | 
    
         
            +
                },
         
     | 
| 
      
 44 
     | 
    
         
            +
                {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 46 
     | 
    
         
            +
                    {
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    },
         
     | 
| 
      
 51 
     | 
    
         
            +
                    {
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "name": "fromStateId",
         
     | 
| 
      
 54 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 55 
     | 
    
         
            +
                    },
         
     | 
| 
      
 56 
     | 
    
         
            +
                    {
         
     | 
| 
      
 57 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "name": "toStateId",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 60 
     | 
    
         
            +
                    }
         
     | 
| 
      
 61 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 62 
     | 
    
         
            +
                  "name": "ErrorInvalidStateTransition",
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 64 
     | 
    
         
            +
                },
         
     | 
| 
      
 65 
     | 
    
         
            +
                {
         
     | 
| 
      
 66 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 67 
     | 
    
         
            +
                    {
         
     | 
| 
      
 68 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 69 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 70 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 71 
     | 
    
         
            +
                    }
         
     | 
| 
      
 72 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 73 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
      
 74 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 75 
     | 
    
         
            +
                },
         
     | 
| 
      
 76 
     | 
    
         
            +
                {
         
     | 
| 
      
 77 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 78 
     | 
    
         
            +
                    {
         
     | 
| 
      
 79 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 80 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 81 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 82 
     | 
    
         
            +
                    }
         
     | 
| 
      
 83 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
      
 85 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 86 
     | 
    
         
            +
                },
         
     | 
| 
      
 87 
     | 
    
         
            +
                {
         
     | 
| 
      
 88 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 89 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
      
 90 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 91 
     | 
    
         
            +
                },
         
     | 
| 
      
 92 
     | 
    
         
            +
                {
         
     | 
| 
      
 93 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 94 
     | 
    
         
            +
                    {
         
     | 
| 
      
 95 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 96 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 97 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 98 
     | 
    
         
            +
                    }
         
     | 
| 
      
 99 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 100 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
      
 101 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 102 
     | 
    
         
            +
                },
         
     | 
| 
      
 103 
     | 
    
         
            +
                {
         
     | 
| 
      
 104 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 105 
     | 
    
         
            +
                    {
         
     | 
| 
      
 106 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 107 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 108 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 109 
     | 
    
         
            +
                    },
         
     | 
| 
      
 110 
     | 
    
         
            +
                    {
         
     | 
| 
      
 111 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 112 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 113 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 114 
     | 
    
         
            +
                    }
         
     | 
| 
      
 115 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 116 
     | 
    
         
            +
                  "name": "ErrorNoLifecycle",
         
     | 
| 
      
 117 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 118 
     | 
    
         
            +
                },
         
     | 
| 
      
 119 
     | 
    
         
            +
                {
         
     | 
| 
      
 120 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 121 
     | 
    
         
            +
                    {
         
     | 
| 
      
 122 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 123 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 124 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 125 
     | 
    
         
            +
                    }
         
     | 
| 
      
 126 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 127 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 128 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 129 
     | 
    
         
            +
                },
         
     | 
| 
      
 130 
     | 
    
         
            +
                {
         
     | 
| 
      
 131 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 132 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 133 
     | 
    
         
            +
                    {
         
     | 
| 
      
 134 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 135 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 136 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 137 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 138 
     | 
    
         
            +
                    }
         
     | 
| 
      
 139 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 140 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 141 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 142 
     | 
    
         
            +
                },
         
     | 
| 
      
 143 
     | 
    
         
            +
                {
         
     | 
| 
      
 144 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 145 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 146 
     | 
    
         
            +
                    {
         
     | 
| 
      
 147 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 148 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 149 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 150 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 151 
     | 
    
         
            +
                    },
         
     | 
| 
      
 152 
     | 
    
         
            +
                    {
         
     | 
| 
      
 153 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 154 
     | 
    
         
            +
                      "internalType": "KeyId",
         
     | 
| 
      
 155 
     | 
    
         
            +
                      "name": "keyId",
         
     | 
| 
      
 156 
     | 
    
         
            +
                      "type": "bytes31"
         
     | 
| 
      
 157 
     | 
    
         
            +
                    },
         
     | 
| 
      
 158 
     | 
    
         
            +
                    {
         
     | 
| 
      
 159 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 160 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 161 
     | 
    
         
            +
                      "name": "state",
         
     | 
| 
      
 162 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 163 
     | 
    
         
            +
                    },
         
     | 
| 
      
 164 
     | 
    
         
            +
                    {
         
     | 
| 
      
 165 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 166 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 167 
     | 
    
         
            +
                      "name": "createdBy",
         
     | 
| 
      
 168 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 169 
     | 
    
         
            +
                    },
         
     | 
| 
      
 170 
     | 
    
         
            +
                    {
         
     | 
| 
      
 171 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 172 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 173 
     | 
    
         
            +
                      "name": "txOrigin",
         
     | 
| 
      
 174 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 175 
     | 
    
         
            +
                    }
         
     | 
| 
      
 176 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 177 
     | 
    
         
            +
                  "name": "LogInfoCreated",
         
     | 
| 
      
 178 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 179 
     | 
    
         
            +
                },
         
     | 
| 
      
 180 
     | 
    
         
            +
                {
         
     | 
| 
      
 181 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 182 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 183 
     | 
    
         
            +
                    {
         
     | 
| 
      
 184 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 185 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 186 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 187 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 188 
     | 
    
         
            +
                    },
         
     | 
| 
      
 189 
     | 
    
         
            +
                    {
         
     | 
| 
      
 190 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 191 
     | 
    
         
            +
                      "internalType": "KeyId",
         
     | 
| 
      
 192 
     | 
    
         
            +
                      "name": "keyId",
         
     | 
| 
      
 193 
     | 
    
         
            +
                      "type": "bytes31"
         
     | 
| 
      
 194 
     | 
    
         
            +
                    },
         
     | 
| 
      
 195 
     | 
    
         
            +
                    {
         
     | 
| 
      
 196 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 197 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 198 
     | 
    
         
            +
                      "name": "state",
         
     | 
| 
      
 199 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 200 
     | 
    
         
            +
                    },
         
     | 
| 
      
 201 
     | 
    
         
            +
                    {
         
     | 
| 
      
 202 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 203 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 204 
     | 
    
         
            +
                      "name": "updatedBy",
         
     | 
| 
      
 205 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 206 
     | 
    
         
            +
                    },
         
     | 
| 
      
 207 
     | 
    
         
            +
                    {
         
     | 
| 
      
 208 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 209 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 210 
     | 
    
         
            +
                      "name": "txOrigin",
         
     | 
| 
      
 211 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 212 
     | 
    
         
            +
                    },
         
     | 
| 
      
 213 
     | 
    
         
            +
                    {
         
     | 
| 
      
 214 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 215 
     | 
    
         
            +
                      "internalType": "Blocknumber",
         
     | 
| 
      
 216 
     | 
    
         
            +
                      "name": "lastUpdatedIn",
         
     | 
| 
      
 217 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 218 
     | 
    
         
            +
                    }
         
     | 
| 
      
 219 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 220 
     | 
    
         
            +
                  "name": "LogInfoUpdated",
         
     | 
| 
      
 221 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 222 
     | 
    
         
            +
                },
         
     | 
| 
      
 223 
     | 
    
         
            +
                {
         
     | 
| 
      
 224 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 225 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 226 
     | 
    
         
            +
                    {
         
     | 
| 
      
 227 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 228 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 229 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 230 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 231 
     | 
    
         
            +
                    },
         
     | 
| 
      
 232 
     | 
    
         
            +
                    {
         
     | 
| 
      
 233 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 234 
     | 
    
         
            +
                      "internalType": "KeyId",
         
     | 
| 
      
 235 
     | 
    
         
            +
                      "name": "keyId",
         
     | 
| 
      
 236 
     | 
    
         
            +
                      "type": "bytes31"
         
     | 
| 
      
 237 
     | 
    
         
            +
                    },
         
     | 
| 
      
 238 
     | 
    
         
            +
                    {
         
     | 
| 
      
 239 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 240 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 241 
     | 
    
         
            +
                      "name": "stateOld",
         
     | 
| 
      
 242 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 243 
     | 
    
         
            +
                    },
         
     | 
| 
      
 244 
     | 
    
         
            +
                    {
         
     | 
| 
      
 245 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 246 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 247 
     | 
    
         
            +
                      "name": "stateNew",
         
     | 
| 
      
 248 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 249 
     | 
    
         
            +
                    },
         
     | 
| 
      
 250 
     | 
    
         
            +
                    {
         
     | 
| 
      
 251 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 252 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 253 
     | 
    
         
            +
                      "name": "updatedBy",
         
     | 
| 
      
 254 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 255 
     | 
    
         
            +
                    },
         
     | 
| 
      
 256 
     | 
    
         
            +
                    {
         
     | 
| 
      
 257 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 258 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 259 
     | 
    
         
            +
                      "name": "txOrigin",
         
     | 
| 
      
 260 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 261 
     | 
    
         
            +
                    },
         
     | 
| 
      
 262 
     | 
    
         
            +
                    {
         
     | 
| 
      
 263 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 264 
     | 
    
         
            +
                      "internalType": "Blocknumber",
         
     | 
| 
      
 265 
     | 
    
         
            +
                      "name": "lastUpdatedIn",
         
     | 
| 
      
 266 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 267 
     | 
    
         
            +
                    }
         
     | 
| 
      
 268 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 269 
     | 
    
         
            +
                  "name": "LogStateUpdated",
         
     | 
| 
      
 270 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 271 
     | 
    
         
            +
                },
         
     | 
| 
      
 272 
     | 
    
         
            +
                {
         
     | 
| 
      
 273 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 274 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 275 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 276 
     | 
    
         
            +
                    {
         
     | 
| 
      
 277 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 278 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 279 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 280 
     | 
    
         
            +
                    }
         
     | 
| 
      
 281 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 282 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 283 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 284 
     | 
    
         
            +
                },
         
     | 
| 
      
 285 
     | 
    
         
            +
                {
         
     | 
| 
      
 286 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 287 
     | 
    
         
            +
                    {
         
     | 
| 
      
 288 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 289 
     | 
    
         
            +
                      "name": "applicationNftId",
         
     | 
| 
      
 290 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 291 
     | 
    
         
            +
                    },
         
     | 
| 
      
 292 
     | 
    
         
            +
                    {
         
     | 
| 
      
 293 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 294 
     | 
    
         
            +
                        {
         
     | 
| 
      
 295 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 296 
     | 
    
         
            +
                          "name": "productNftId",
         
     | 
| 
      
 297 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 298 
     | 
    
         
            +
                        },
         
     | 
| 
      
 299 
     | 
    
         
            +
                        {
         
     | 
| 
      
 300 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 301 
     | 
    
         
            +
                          "name": "bundleNftId",
         
     | 
| 
      
 302 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 303 
     | 
    
         
            +
                        },
         
     | 
| 
      
 304 
     | 
    
         
            +
                        {
         
     | 
| 
      
 305 
     | 
    
         
            +
                          "internalType": "ReferralId",
         
     | 
| 
      
 306 
     | 
    
         
            +
                          "name": "referralId",
         
     | 
| 
      
 307 
     | 
    
         
            +
                          "type": "bytes8"
         
     | 
| 
      
 308 
     | 
    
         
            +
                        },
         
     | 
| 
      
 309 
     | 
    
         
            +
                        {
         
     | 
| 
      
 310 
     | 
    
         
            +
                          "internalType": "RiskId",
         
     | 
| 
      
 311 
     | 
    
         
            +
                          "name": "riskId",
         
     | 
| 
      
 312 
     | 
    
         
            +
                          "type": "bytes8"
         
     | 
| 
      
 313 
     | 
    
         
            +
                        },
         
     | 
| 
      
 314 
     | 
    
         
            +
                        {
         
     | 
| 
      
 315 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 316 
     | 
    
         
            +
                          "name": "sumInsuredAmount",
         
     | 
| 
      
 317 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 318 
     | 
    
         
            +
                        },
         
     | 
| 
      
 319 
     | 
    
         
            +
                        {
         
     | 
| 
      
 320 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 321 
     | 
    
         
            +
                          "name": "premiumAmount",
         
     | 
| 
      
 322 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 323 
     | 
    
         
            +
                        },
         
     | 
| 
      
 324 
     | 
    
         
            +
                        {
         
     | 
| 
      
 325 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 326 
     | 
    
         
            +
                          "name": "premiumPaidAmount",
         
     | 
| 
      
 327 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 328 
     | 
    
         
            +
                        },
         
     | 
| 
      
 329 
     | 
    
         
            +
                        {
         
     | 
| 
      
 330 
     | 
    
         
            +
                          "internalType": "Seconds",
         
     | 
| 
      
 331 
     | 
    
         
            +
                          "name": "lifetime",
         
     | 
| 
      
 332 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 333 
     | 
    
         
            +
                        },
         
     | 
| 
      
 334 
     | 
    
         
            +
                        {
         
     | 
| 
      
 335 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 336 
     | 
    
         
            +
                          "name": "applicationData",
         
     | 
| 
      
 337 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 338 
     | 
    
         
            +
                        },
         
     | 
| 
      
 339 
     | 
    
         
            +
                        {
         
     | 
| 
      
 340 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 341 
     | 
    
         
            +
                          "name": "policyData",
         
     | 
| 
      
 342 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 343 
     | 
    
         
            +
                        },
         
     | 
| 
      
 344 
     | 
    
         
            +
                        {
         
     | 
| 
      
 345 
     | 
    
         
            +
                          "internalType": "uint16",
         
     | 
| 
      
 346 
     | 
    
         
            +
                          "name": "claimsCount",
         
     | 
| 
      
 347 
     | 
    
         
            +
                          "type": "uint16"
         
     | 
| 
      
 348 
     | 
    
         
            +
                        },
         
     | 
| 
      
 349 
     | 
    
         
            +
                        {
         
     | 
| 
      
 350 
     | 
    
         
            +
                          "internalType": "uint16",
         
     | 
| 
      
 351 
     | 
    
         
            +
                          "name": "openClaimsCount",
         
     | 
| 
      
 352 
     | 
    
         
            +
                          "type": "uint16"
         
     | 
| 
      
 353 
     | 
    
         
            +
                        },
         
     | 
| 
      
 354 
     | 
    
         
            +
                        {
         
     | 
| 
      
 355 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 356 
     | 
    
         
            +
                          "name": "payoutAmount",
         
     | 
| 
      
 357 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 358 
     | 
    
         
            +
                        },
         
     | 
| 
      
 359 
     | 
    
         
            +
                        {
         
     | 
| 
      
 360 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 361 
     | 
    
         
            +
                          "name": "activatedAt",
         
     | 
| 
      
 362 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 363 
     | 
    
         
            +
                        },
         
     | 
| 
      
 364 
     | 
    
         
            +
                        {
         
     | 
| 
      
 365 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 366 
     | 
    
         
            +
                          "name": "expiredAt",
         
     | 
| 
      
 367 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 368 
     | 
    
         
            +
                        },
         
     | 
| 
      
 369 
     | 
    
         
            +
                        {
         
     | 
| 
      
 370 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 371 
     | 
    
         
            +
                          "name": "closedAt",
         
     | 
| 
      
 372 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 373 
     | 
    
         
            +
                        }
         
     | 
| 
      
 374 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 375 
     | 
    
         
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         
     | 
| 
      
 376 
     | 
    
         
            +
                      "name": "policy",
         
     | 
| 
      
 377 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 378 
     | 
    
         
            +
                    }
         
     | 
| 
      
 379 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 380 
     | 
    
         
            +
                  "name": "createApplication",
         
     | 
| 
      
 381 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 382 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 383 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 384 
     | 
    
         
            +
                },
         
     | 
| 
      
 385 
     | 
    
         
            +
                {
         
     | 
| 
      
 386 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 387 
     | 
    
         
            +
                    {
         
     | 
| 
      
 388 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 389 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 390 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 391 
     | 
    
         
            +
                    },
         
     | 
| 
      
 392 
     | 
    
         
            +
                    {
         
     | 
| 
      
 393 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 394 
     | 
    
         
            +
                        {
         
     | 
| 
      
 395 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 396 
     | 
    
         
            +
                          "name": "poolNftId",
         
     | 
| 
      
 397 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 398 
     | 
    
         
            +
                        },
         
     | 
| 
      
 399 
     | 
    
         
            +
                        {
         
     | 
| 
      
 400 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 401 
     | 
    
         
            +
                            {
         
     | 
| 
      
 402 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 403 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 404 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 405 
     | 
    
         
            +
                            },
         
     | 
| 
      
 406 
     | 
    
         
            +
                            {
         
     | 
| 
      
 407 
     | 
    
         
            +
                              "internalType": "uint256",
         
     | 
| 
      
 408 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 409 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 410 
     | 
    
         
            +
                            }
         
     | 
| 
      
 411 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 412 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 413 
     | 
    
         
            +
                          "name": "fee",
         
     | 
| 
      
 414 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 415 
     | 
    
         
            +
                        },
         
     | 
| 
      
 416 
     | 
    
         
            +
                        {
         
     | 
| 
      
 417 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 418 
     | 
    
         
            +
                          "name": "filter",
         
     | 
| 
      
 419 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 420 
     | 
    
         
            +
                        },
         
     | 
| 
      
 421 
     | 
    
         
            +
                        {
         
     | 
| 
      
 422 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 423 
     | 
    
         
            +
                          "name": "capitalAmount",
         
     | 
| 
      
 424 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 425 
     | 
    
         
            +
                        },
         
     | 
| 
      
 426 
     | 
    
         
            +
                        {
         
     | 
| 
      
 427 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 428 
     | 
    
         
            +
                          "name": "lockedAmount",
         
     | 
| 
      
 429 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 430 
     | 
    
         
            +
                        },
         
     | 
| 
      
 431 
     | 
    
         
            +
                        {
         
     | 
| 
      
 432 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 433 
     | 
    
         
            +
                          "name": "balanceAmount",
         
     | 
| 
      
 434 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 435 
     | 
    
         
            +
                        },
         
     | 
| 
      
 436 
     | 
    
         
            +
                        {
         
     | 
| 
      
 437 
     | 
    
         
            +
                          "internalType": "Seconds",
         
     | 
| 
      
 438 
     | 
    
         
            +
                          "name": "lifetime",
         
     | 
| 
      
 439 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 440 
     | 
    
         
            +
                        },
         
     | 
| 
      
 441 
     | 
    
         
            +
                        {
         
     | 
| 
      
 442 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 443 
     | 
    
         
            +
                          "name": "expiredAt",
         
     | 
| 
      
 444 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 445 
     | 
    
         
            +
                        },
         
     | 
| 
      
 446 
     | 
    
         
            +
                        {
         
     | 
| 
      
 447 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 448 
     | 
    
         
            +
                          "name": "closedAt",
         
     | 
| 
      
 449 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 450 
     | 
    
         
            +
                        }
         
     | 
| 
      
 451 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 452 
     | 
    
         
            +
                      "internalType": "struct IBundle.BundleInfo",
         
     | 
| 
      
 453 
     | 
    
         
            +
                      "name": "bundle",
         
     | 
| 
      
 454 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 455 
     | 
    
         
            +
                    }
         
     | 
| 
      
 456 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 457 
     | 
    
         
            +
                  "name": "createBundle",
         
     | 
| 
      
 458 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 459 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 460 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 461 
     | 
    
         
            +
                },
         
     | 
| 
      
 462 
     | 
    
         
            +
                {
         
     | 
| 
      
 463 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 464 
     | 
    
         
            +
                    {
         
     | 
| 
      
 465 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 466 
     | 
    
         
            +
                      "name": "distributionNftId",
         
     | 
| 
      
 467 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 468 
     | 
    
         
            +
                    },
         
     | 
| 
      
 469 
     | 
    
         
            +
                    {
         
     | 
| 
      
 470 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 471 
     | 
    
         
            +
                        {
         
     | 
| 
      
 472 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 473 
     | 
    
         
            +
                          "name": "productNftId",
         
     | 
| 
      
 474 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 475 
     | 
    
         
            +
                        },
         
     | 
| 
      
 476 
     | 
    
         
            +
                        {
         
     | 
| 
      
 477 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 478 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 479 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 480 
     | 
    
         
            +
                        },
         
     | 
| 
      
 481 
     | 
    
         
            +
                        {
         
     | 
| 
      
 482 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 483 
     | 
    
         
            +
                            {
         
     | 
| 
      
 484 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 485 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 486 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 487 
     | 
    
         
            +
                            },
         
     | 
| 
      
 488 
     | 
    
         
            +
                            {
         
     | 
| 
      
 489 
     | 
    
         
            +
                              "internalType": "uint256",
         
     | 
| 
      
 490 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 491 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 492 
     | 
    
         
            +
                            }
         
     | 
| 
      
 493 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 494 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 495 
     | 
    
         
            +
                          "name": "minDistributionOwnerFee",
         
     | 
| 
      
 496 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 497 
     | 
    
         
            +
                        },
         
     | 
| 
      
 498 
     | 
    
         
            +
                        {
         
     | 
| 
      
 499 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 500 
     | 
    
         
            +
                            {
         
     | 
| 
      
 501 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 502 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 503 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 504 
     | 
    
         
            +
                            },
         
     | 
| 
      
 505 
     | 
    
         
            +
                            {
         
     | 
| 
      
 506 
     | 
    
         
            +
                              "internalType": "uint256",
         
     | 
| 
      
 507 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 508 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 509 
     | 
    
         
            +
                            }
         
     | 
| 
      
 510 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 511 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 512 
     | 
    
         
            +
                          "name": "distributionFee",
         
     | 
| 
      
 513 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 514 
     | 
    
         
            +
                        },
         
     | 
| 
      
 515 
     | 
    
         
            +
                        {
         
     | 
| 
      
 516 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 517 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 518 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 519 
     | 
    
         
            +
                        },
         
     | 
| 
      
 520 
     | 
    
         
            +
                        {
         
     | 
| 
      
 521 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 522 
     | 
    
         
            +
                          "name": "sumDistributionOwnerFees",
         
     | 
| 
      
 523 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 524 
     | 
    
         
            +
                        }
         
     | 
| 
      
 525 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 526 
     | 
    
         
            +
                      "internalType": "struct ISetup.DistributionSetupInfo",
         
     | 
| 
      
 527 
     | 
    
         
            +
                      "name": "setup",
         
     | 
| 
      
 528 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 529 
     | 
    
         
            +
                    }
         
     | 
| 
      
 530 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 531 
     | 
    
         
            +
                  "name": "createDistributionSetup",
         
     | 
| 
      
 532 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 533 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 534 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 535 
     | 
    
         
            +
                },
         
     | 
| 
      
 536 
     | 
    
         
            +
                {
         
     | 
| 
      
 537 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 538 
     | 
    
         
            +
                    {
         
     | 
| 
      
 539 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 540 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 541 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 542 
     | 
    
         
            +
                    },
         
     | 
| 
      
 543 
     | 
    
         
            +
                    {
         
     | 
| 
      
 544 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 545 
     | 
    
         
            +
                        {
         
     | 
| 
      
 546 
     | 
    
         
            +
                          "internalType": "DistributorType",
         
     | 
| 
      
 547 
     | 
    
         
            +
                          "name": "distributorType",
         
     | 
| 
      
 548 
     | 
    
         
            +
                          "type": "bytes8"
         
     | 
| 
      
 549 
     | 
    
         
            +
                        },
         
     | 
| 
      
 550 
     | 
    
         
            +
                        {
         
     | 
| 
      
 551 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 552 
     | 
    
         
            +
                          "name": "active",
         
     | 
| 
      
 553 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 554 
     | 
    
         
            +
                        },
         
     | 
| 
      
 555 
     | 
    
         
            +
                        {
         
     | 
| 
      
 556 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 557 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 558 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 559 
     | 
    
         
            +
                        },
         
     | 
| 
      
 560 
     | 
    
         
            +
                        {
         
     | 
| 
      
 561 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 562 
     | 
    
         
            +
                          "name": "sumCommisions",
         
     | 
| 
      
 563 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 564 
     | 
    
         
            +
                        },
         
     | 
| 
      
 565 
     | 
    
         
            +
                        {
         
     | 
| 
      
 566 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 567 
     | 
    
         
            +
                          "name": "numPoliciesSold",
         
     | 
| 
      
 568 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 569 
     | 
    
         
            +
                        }
         
     | 
| 
      
 570 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 571 
     | 
    
         
            +
                      "internalType": "struct IDistribution.DistributorInfo",
         
     | 
| 
      
 572 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 573 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 574 
     | 
    
         
            +
                    }
         
     | 
| 
      
 575 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 576 
     | 
    
         
            +
                  "name": "createDistributor",
         
     | 
| 
      
 577 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 578 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 579 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 580 
     | 
    
         
            +
                },
         
     | 
| 
      
 581 
     | 
    
         
            +
                {
         
     | 
| 
      
 582 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 583 
     | 
    
         
            +
                    {
         
     | 
| 
      
 584 
     | 
    
         
            +
                      "internalType": "Key32",
         
     | 
| 
      
 585 
     | 
    
         
            +
                      "name": "distributorKey",
         
     | 
| 
      
 586 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 587 
     | 
    
         
            +
                    },
         
     | 
| 
      
 588 
     | 
    
         
            +
                    {
         
     | 
| 
      
 589 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 590 
     | 
    
         
            +
                        {
         
     | 
| 
      
 591 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 592 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 593 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 594 
     | 
    
         
            +
                        },
         
     | 
| 
      
 595 
     | 
    
         
            +
                        {
         
     | 
| 
      
 596 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 597 
     | 
    
         
            +
                          "name": "minDiscountPercentage",
         
     | 
| 
      
 598 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 599 
     | 
    
         
            +
                        },
         
     | 
| 
      
 600 
     | 
    
         
            +
                        {
         
     | 
| 
      
 601 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 602 
     | 
    
         
            +
                          "name": "maxDiscountPercentage",
         
     | 
| 
      
 603 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 604 
     | 
    
         
            +
                        },
         
     | 
| 
      
 605 
     | 
    
         
            +
                        {
         
     | 
| 
      
 606 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 607 
     | 
    
         
            +
                          "name": "commissionPercentage",
         
     | 
| 
      
 608 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 609 
     | 
    
         
            +
                        },
         
     | 
| 
      
 610 
     | 
    
         
            +
                        {
         
     | 
| 
      
 611 
     | 
    
         
            +
                          "internalType": "uint32",
         
     | 
| 
      
 612 
     | 
    
         
            +
                          "name": "maxReferralCount",
         
     | 
| 
      
 613 
     | 
    
         
            +
                          "type": "uint32"
         
     | 
| 
      
 614 
     | 
    
         
            +
                        },
         
     | 
| 
      
 615 
     | 
    
         
            +
                        {
         
     | 
| 
      
 616 
     | 
    
         
            +
                          "internalType": "uint32",
         
     | 
| 
      
 617 
     | 
    
         
            +
                          "name": "maxReferralLifetime",
         
     | 
| 
      
 618 
     | 
    
         
            +
                          "type": "uint32"
         
     | 
| 
      
 619 
     | 
    
         
            +
                        },
         
     | 
| 
      
 620 
     | 
    
         
            +
                        {
         
     | 
| 
      
 621 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 622 
     | 
    
         
            +
                          "name": "allowSelfReferrals",
         
     | 
| 
      
 623 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 624 
     | 
    
         
            +
                        },
         
     | 
| 
      
 625 
     | 
    
         
            +
                        {
         
     | 
| 
      
 626 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 627 
     | 
    
         
            +
                          "name": "allowRenewals",
         
     | 
| 
      
 628 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 629 
     | 
    
         
            +
                        },
         
     | 
| 
      
 630 
     | 
    
         
            +
                        {
         
     | 
| 
      
 631 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 632 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 633 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 634 
     | 
    
         
            +
                        }
         
     | 
| 
      
 635 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 636 
     | 
    
         
            +
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         
     | 
| 
      
 637 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 638 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 639 
     | 
    
         
            +
                    }
         
     | 
| 
      
 640 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 641 
     | 
    
         
            +
                  "name": "createDistributorType",
         
     | 
| 
      
 642 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 643 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 644 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 645 
     | 
    
         
            +
                },
         
     | 
| 
      
 646 
     | 
    
         
            +
                {
         
     | 
| 
      
 647 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 648 
     | 
    
         
            +
                    {
         
     | 
| 
      
 649 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 650 
     | 
    
         
            +
                      "name": "poolNftId",
         
     | 
| 
      
 651 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 652 
     | 
    
         
            +
                    },
         
     | 
| 
      
 653 
     | 
    
         
            +
                    {
         
     | 
| 
      
 654 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 655 
     | 
    
         
            +
                        {
         
     | 
| 
      
 656 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 657 
     | 
    
         
            +
                          "name": "productNftId",
         
     | 
| 
      
 658 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 659 
     | 
    
         
            +
                        },
         
     | 
| 
      
 660 
     | 
    
         
            +
                        {
         
     | 
| 
      
 661 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 662 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 663 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 664 
     | 
    
         
            +
                        },
         
     | 
| 
      
 665 
     | 
    
         
            +
                        {
         
     | 
| 
      
 666 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 667 
     | 
    
         
            +
                          "name": "maxCapitalAmount",
         
     | 
| 
      
 668 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 669 
     | 
    
         
            +
                        },
         
     | 
| 
      
 670 
     | 
    
         
            +
                        {
         
     | 
| 
      
 671 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 672 
     | 
    
         
            +
                          "name": "isInterceptingBundleTransfers",
         
     | 
| 
      
 673 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 674 
     | 
    
         
            +
                        },
         
     | 
| 
      
 675 
     | 
    
         
            +
                        {
         
     | 
| 
      
 676 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 677 
     | 
    
         
            +
                          "name": "isExternallyManaged",
         
     | 
| 
      
 678 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 679 
     | 
    
         
            +
                        },
         
     | 
| 
      
 680 
     | 
    
         
            +
                        {
         
     | 
| 
      
 681 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 682 
     | 
    
         
            +
                          "name": "isVerifyingApplications",
         
     | 
| 
      
 683 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 684 
     | 
    
         
            +
                        },
         
     | 
| 
      
 685 
     | 
    
         
            +
                        {
         
     | 
| 
      
 686 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 687 
     | 
    
         
            +
                          "name": "collateralizationLevel",
         
     | 
| 
      
 688 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 689 
     | 
    
         
            +
                        },
         
     | 
| 
      
 690 
     | 
    
         
            +
                        {
         
     | 
| 
      
 691 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 692 
     | 
    
         
            +
                          "name": "retentionLevel",
         
     | 
| 
      
 693 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 694 
     | 
    
         
            +
                        },
         
     | 
| 
      
 695 
     | 
    
         
            +
                        {
         
     | 
| 
      
 696 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 697 
     | 
    
         
            +
                            {
         
     | 
| 
      
 698 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 699 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 700 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 701 
     | 
    
         
            +
                            },
         
     | 
| 
      
 702 
     | 
    
         
            +
                            {
         
     | 
| 
      
 703 
     | 
    
         
            +
                              "internalType": "uint256",
         
     | 
| 
      
 704 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 705 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 706 
     | 
    
         
            +
                            }
         
     | 
| 
      
 707 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 708 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 709 
     | 
    
         
            +
                          "name": "poolFee",
         
     | 
| 
      
 710 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 711 
     | 
    
         
            +
                        },
         
     | 
| 
      
 712 
     | 
    
         
            +
                        {
         
     | 
| 
      
 713 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 714 
     | 
    
         
            +
                            {
         
     | 
| 
      
 715 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 716 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 717 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 718 
     | 
    
         
            +
                            },
         
     | 
| 
      
 719 
     | 
    
         
            +
                            {
         
     | 
| 
      
 720 
     | 
    
         
            +
                              "internalType": "uint256",
         
     | 
| 
      
 721 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 722 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 723 
     | 
    
         
            +
                            }
         
     | 
| 
      
 724 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 725 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 726 
     | 
    
         
            +
                          "name": "stakingFee",
         
     | 
| 
      
 727 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 728 
     | 
    
         
            +
                        },
         
     | 
| 
      
 729 
     | 
    
         
            +
                        {
         
     | 
| 
      
 730 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 731 
     | 
    
         
            +
                            {
         
     | 
| 
      
 732 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 733 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 734 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 735 
     | 
    
         
            +
                            },
         
     | 
| 
      
 736 
     | 
    
         
            +
                            {
         
     | 
| 
      
 737 
     | 
    
         
            +
                              "internalType": "uint256",
         
     | 
| 
      
 738 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 739 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 740 
     | 
    
         
            +
                            }
         
     | 
| 
      
 741 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 742 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 743 
     | 
    
         
            +
                          "name": "performanceFee",
         
     | 
| 
      
 744 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 745 
     | 
    
         
            +
                        },
         
     | 
| 
      
 746 
     | 
    
         
            +
                        {
         
     | 
| 
      
 747 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 748 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 749 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 750 
     | 
    
         
            +
                        }
         
     | 
| 
      
 751 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 752 
     | 
    
         
            +
                      "internalType": "struct ISetup.PoolSetupInfo",
         
     | 
| 
      
 753 
     | 
    
         
            +
                      "name": "setup",
         
     | 
| 
      
 754 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 755 
     | 
    
         
            +
                    }
         
     | 
| 
      
 756 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 757 
     | 
    
         
            +
                  "name": "createPoolSetup",
         
     | 
| 
      
 758 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 759 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 760 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 761 
     | 
    
         
            +
                },
         
     | 
| 
      
 762 
     | 
    
         
            +
                {
         
     | 
| 
      
 763 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 764 
     | 
    
         
            +
                    {
         
     | 
| 
      
 765 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 766 
     | 
    
         
            +
                      "name": "productNftId",
         
     | 
| 
      
 767 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 768 
     | 
    
         
            +
                    },
         
     | 
| 
      
 769 
     | 
    
         
            +
                    {
         
     | 
| 
      
 770 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 771 
     | 
    
         
            +
                        {
         
     | 
| 
      
 772 
     | 
    
         
            +
                          "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 773 
     | 
    
         
            +
                          "name": "token",
         
     | 
| 
      
 774 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 775 
     | 
    
         
            +
                        },
         
     | 
| 
      
 776 
     | 
    
         
            +
                        {
         
     | 
| 
      
 777 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 778 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 779 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 780 
     | 
    
         
            +
                        },
         
     | 
| 
      
 781 
     | 
    
         
            +
                        {
         
     | 
| 
      
 782 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 783 
     | 
    
         
            +
                          "name": "distributionNftId",
         
     | 
| 
      
 784 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 785 
     | 
    
         
            +
                        },
         
     | 
| 
      
 786 
     | 
    
         
            +
                        {
         
     | 
| 
      
 787 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 788 
     | 
    
         
            +
                          "name": "poolNftId",
         
     | 
| 
      
 789 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 790 
     | 
    
         
            +
                        },
         
     | 
| 
      
 791 
     | 
    
         
            +
                        {
         
     | 
| 
      
 792 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 793 
     | 
    
         
            +
                            {
         
     | 
| 
      
 794 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 795 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 796 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 797 
     | 
    
         
            +
                            },
         
     | 
| 
      
 798 
     | 
    
         
            +
                            {
         
     | 
| 
      
 799 
     | 
    
         
            +
                              "internalType": "uint256",
         
     | 
| 
      
 800 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 801 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 802 
     | 
    
         
            +
                            }
         
     | 
| 
      
 803 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 804 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 805 
     | 
    
         
            +
                          "name": "productFee",
         
     | 
| 
      
 806 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 807 
     | 
    
         
            +
                        },
         
     | 
| 
      
 808 
     | 
    
         
            +
                        {
         
     | 
| 
      
 809 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 810 
     | 
    
         
            +
                            {
         
     | 
| 
      
 811 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 812 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 813 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 814 
     | 
    
         
            +
                            },
         
     | 
| 
      
 815 
     | 
    
         
            +
                            {
         
     | 
| 
      
 816 
     | 
    
         
            +
                              "internalType": "uint256",
         
     | 
| 
      
 817 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 818 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 819 
     | 
    
         
            +
                            }
         
     | 
| 
      
 820 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 821 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 822 
     | 
    
         
            +
                          "name": "processingFee",
         
     | 
| 
      
 823 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 824 
     | 
    
         
            +
                        },
         
     | 
| 
      
 825 
     | 
    
         
            +
                        {
         
     | 
| 
      
 826 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 827 
     | 
    
         
            +
                          "name": "isIntercepting",
         
     | 
| 
      
 828 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 829 
     | 
    
         
            +
                        },
         
     | 
| 
      
 830 
     | 
    
         
            +
                        {
         
     | 
| 
      
 831 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 832 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 833 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 834 
     | 
    
         
            +
                        }
         
     | 
| 
      
 835 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 836 
     | 
    
         
            +
                      "internalType": "struct ISetup.ProductSetupInfo",
         
     | 
| 
      
 837 
     | 
    
         
            +
                      "name": "setup",
         
     | 
| 
      
 838 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 839 
     | 
    
         
            +
                    }
         
     | 
| 
      
 840 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 841 
     | 
    
         
            +
                  "name": "createProductSetup",
         
     | 
| 
      
 842 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 843 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 844 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 845 
     | 
    
         
            +
                },
         
     | 
| 
      
 846 
     | 
    
         
            +
                {
         
     | 
| 
      
 847 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 848 
     | 
    
         
            +
                    {
         
     | 
| 
      
 849 
     | 
    
         
            +
                      "internalType": "Key32",
         
     | 
| 
      
 850 
     | 
    
         
            +
                      "name": "referralKey",
         
     | 
| 
      
 851 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 852 
     | 
    
         
            +
                    },
         
     | 
| 
      
 853 
     | 
    
         
            +
                    {
         
     | 
| 
      
 854 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 855 
     | 
    
         
            +
                        {
         
     | 
| 
      
 856 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 857 
     | 
    
         
            +
                          "name": "distributorNftId",
         
     | 
| 
      
 858 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 859 
     | 
    
         
            +
                        },
         
     | 
| 
      
 860 
     | 
    
         
            +
                        {
         
     | 
| 
      
 861 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 862 
     | 
    
         
            +
                          "name": "referralCode",
         
     | 
| 
      
 863 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 864 
     | 
    
         
            +
                        },
         
     | 
| 
      
 865 
     | 
    
         
            +
                        {
         
     | 
| 
      
 866 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 867 
     | 
    
         
            +
                          "name": "discountPercentage",
         
     | 
| 
      
 868 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 869 
     | 
    
         
            +
                        },
         
     | 
| 
      
 870 
     | 
    
         
            +
                        {
         
     | 
| 
      
 871 
     | 
    
         
            +
                          "internalType": "uint32",
         
     | 
| 
      
 872 
     | 
    
         
            +
                          "name": "maxReferrals",
         
     | 
| 
      
 873 
     | 
    
         
            +
                          "type": "uint32"
         
     | 
| 
      
 874 
     | 
    
         
            +
                        },
         
     | 
| 
      
 875 
     | 
    
         
            +
                        {
         
     | 
| 
      
 876 
     | 
    
         
            +
                          "internalType": "uint32",
         
     | 
| 
      
 877 
     | 
    
         
            +
                          "name": "usedReferrals",
         
     | 
| 
      
 878 
     | 
    
         
            +
                          "type": "uint32"
         
     | 
| 
      
 879 
     | 
    
         
            +
                        },
         
     | 
| 
      
 880 
     | 
    
         
            +
                        {
         
     | 
| 
      
 881 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 882 
     | 
    
         
            +
                          "name": "expiryAt",
         
     | 
| 
      
 883 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 884 
     | 
    
         
            +
                        },
         
     | 
| 
      
 885 
     | 
    
         
            +
                        {
         
     | 
| 
      
 886 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 887 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 888 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 889 
     | 
    
         
            +
                        }
         
     | 
| 
      
 890 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 891 
     | 
    
         
            +
                      "internalType": "struct IDistribution.ReferralInfo",
         
     | 
| 
      
 892 
     | 
    
         
            +
                      "name": "referralInfo",
         
     | 
| 
      
 893 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 894 
     | 
    
         
            +
                    }
         
     | 
| 
      
 895 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 896 
     | 
    
         
            +
                  "name": "createReferral",
         
     | 
| 
      
 897 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 898 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 899 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 900 
     | 
    
         
            +
                },
         
     | 
| 
      
 901 
     | 
    
         
            +
                {
         
     | 
| 
      
 902 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 903 
     | 
    
         
            +
                    {
         
     | 
| 
      
 904 
     | 
    
         
            +
                      "internalType": "RiskId",
         
     | 
| 
      
 905 
     | 
    
         
            +
                      "name": "riskId",
         
     | 
| 
      
 906 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 907 
     | 
    
         
            +
                    },
         
     | 
| 
      
 908 
     | 
    
         
            +
                    {
         
     | 
| 
      
 909 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 910 
     | 
    
         
            +
                        {
         
     | 
| 
      
 911 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 912 
     | 
    
         
            +
                          "name": "productNftId",
         
     | 
| 
      
 913 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 914 
     | 
    
         
            +
                        },
         
     | 
| 
      
 915 
     | 
    
         
            +
                        {
         
     | 
| 
      
 916 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 917 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 918 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 919 
     | 
    
         
            +
                        }
         
     | 
| 
      
 920 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 921 
     | 
    
         
            +
                      "internalType": "struct IRisk.RiskInfo",
         
     | 
| 
      
 922 
     | 
    
         
            +
                      "name": "risk",
         
     | 
| 
      
 923 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 924 
     | 
    
         
            +
                    }
         
     | 
| 
      
 925 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 926 
     | 
    
         
            +
                  "name": "createRisk",
         
     | 
| 
      
 927 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 928 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 929 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 930 
     | 
    
         
            +
                },
         
     | 
| 
      
 931 
     | 
    
         
            +
                {
         
     | 
| 
      
 932 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 933 
     | 
    
         
            +
                    {
         
     | 
| 
      
 934 
     | 
    
         
            +
                      "internalType": "Key32",
         
     | 
| 
      
 935 
     | 
    
         
            +
                      "name": "key",
         
     | 
| 
      
 936 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 937 
     | 
    
         
            +
                    }
         
     | 
| 
      
 938 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 939 
     | 
    
         
            +
                  "name": "exists",
         
     | 
| 
      
 940 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 941 
     | 
    
         
            +
                    {
         
     | 
| 
      
 942 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 943 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 944 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 945 
     | 
    
         
            +
                    }
         
     | 
| 
      
 946 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 947 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 948 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 949 
     | 
    
         
            +
                },
         
     | 
| 
      
 950 
     | 
    
         
            +
                {
         
     | 
| 
      
 951 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 952 
     | 
    
         
            +
                    {
         
     | 
| 
      
 953 
     | 
    
         
            +
                      "internalType": "Key32",
         
     | 
| 
      
 954 
     | 
    
         
            +
                      "name": "key",
         
     | 
| 
      
 955 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 956 
     | 
    
         
            +
                    }
         
     | 
| 
      
 957 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 958 
     | 
    
         
            +
                  "name": "get",
         
     | 
| 
      
 959 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 960 
     | 
    
         
            +
                    {
         
     | 
| 
      
 961 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 962 
     | 
    
         
            +
                        {
         
     | 
| 
      
 963 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 964 
     | 
    
         
            +
                            {
         
     | 
| 
      
 965 
     | 
    
         
            +
                              "internalType": "ObjectType",
         
     | 
| 
      
 966 
     | 
    
         
            +
                              "name": "objectType",
         
     | 
| 
      
 967 
     | 
    
         
            +
                              "type": "uint8"
         
     | 
| 
      
 968 
     | 
    
         
            +
                            },
         
     | 
| 
      
 969 
     | 
    
         
            +
                            {
         
     | 
| 
      
 970 
     | 
    
         
            +
                              "internalType": "StateId",
         
     | 
| 
      
 971 
     | 
    
         
            +
                              "name": "state",
         
     | 
| 
      
 972 
     | 
    
         
            +
                              "type": "uint8"
         
     | 
| 
      
 973 
     | 
    
         
            +
                            },
         
     | 
| 
      
 974 
     | 
    
         
            +
                            {
         
     | 
| 
      
 975 
     | 
    
         
            +
                              "internalType": "address",
         
     | 
| 
      
 976 
     | 
    
         
            +
                              "name": "updatedBy",
         
     | 
| 
      
 977 
     | 
    
         
            +
                              "type": "address"
         
     | 
| 
      
 978 
     | 
    
         
            +
                            },
         
     | 
| 
      
 979 
     | 
    
         
            +
                            {
         
     | 
| 
      
 980 
     | 
    
         
            +
                              "internalType": "Blocknumber",
         
     | 
| 
      
 981 
     | 
    
         
            +
                              "name": "updatedIn",
         
     | 
| 
      
 982 
     | 
    
         
            +
                              "type": "uint32"
         
     | 
| 
      
 983 
     | 
    
         
            +
                            },
         
     | 
| 
      
 984 
     | 
    
         
            +
                            {
         
     | 
| 
      
 985 
     | 
    
         
            +
                              "internalType": "Blocknumber",
         
     | 
| 
      
 986 
     | 
    
         
            +
                              "name": "createdIn",
         
     | 
| 
      
 987 
     | 
    
         
            +
                              "type": "uint32"
         
     | 
| 
      
 988 
     | 
    
         
            +
                            }
         
     | 
| 
      
 989 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 990 
     | 
    
         
            +
                          "internalType": "struct IKeyValueStore.Metadata",
         
     | 
| 
      
 991 
     | 
    
         
            +
                          "name": "metadata",
         
     | 
| 
      
 992 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 993 
     | 
    
         
            +
                        },
         
     | 
| 
      
 994 
     | 
    
         
            +
                        {
         
     | 
| 
      
 995 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 996 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 997 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 998 
     | 
    
         
            +
                        }
         
     | 
| 
      
 999 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1000 
     | 
    
         
            +
                      "internalType": "struct IKeyValueStore.Value",
         
     | 
| 
      
 1001 
     | 
    
         
            +
                      "name": "value",
         
     | 
| 
      
 1002 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1003 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1004 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1005 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1006 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1007 
     | 
    
         
            +
                },
         
     | 
| 
      
 1008 
     | 
    
         
            +
                {
         
     | 
| 
      
 1009 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1010 
     | 
    
         
            +
                  "name": "getBundleManager",
         
     | 
| 
      
 1011 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1012 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1013 
     | 
    
         
            +
                      "internalType": "contract BundleManager",
         
     | 
| 
      
 1014 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1015 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1016 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1017 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1018 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1019 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1020 
     | 
    
         
            +
                },
         
     | 
| 
      
 1021 
     | 
    
         
            +
                {
         
     | 
| 
      
 1022 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1023 
     | 
    
         
            +
                  "name": "getBundleService",
         
     | 
| 
      
 1024 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1025 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1026 
     | 
    
         
            +
                      "internalType": "contract IBundleService",
         
     | 
| 
      
 1027 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1028 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1029 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1030 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1031 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1032 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1033 
     | 
    
         
            +
                },
         
     | 
| 
      
 1034 
     | 
    
         
            +
                {
         
     | 
| 
      
 1035 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1036 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1037 
     | 
    
         
            +
                      "internalType": "Key32",
         
     | 
| 
      
 1038 
     | 
    
         
            +
                      "name": "key",
         
     | 
| 
      
 1039 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 1040 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1041 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1042 
     | 
    
         
            +
                  "name": "getData",
         
     | 
| 
      
 1043 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1044 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1045 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 1046 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 1047 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 1048 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1049 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1050 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1051 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1052 
     | 
    
         
            +
                },
         
     | 
| 
      
 1053 
     | 
    
         
            +
                {
         
     | 
| 
      
 1054 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1055 
     | 
    
         
            +
                  "name": "getDistributionService",
         
     | 
| 
      
 1056 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1057 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1058 
     | 
    
         
            +
                      "internalType": "contract IDistributionService",
         
     | 
| 
      
 1059 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1060 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1061 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1062 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1063 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1064 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1065 
     | 
    
         
            +
                },
         
     | 
| 
      
 1066 
     | 
    
         
            +
                {
         
     | 
| 
      
 1067 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1068 
     | 
    
         
            +
                  "name": "getInitialInfo",
         
     | 
| 
      
 1069 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1070 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1071 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1072 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1073 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1074 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 1075 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1076 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1077 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1078 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1079 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 1080 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1081 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1082 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1083 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 1084 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 1085 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 1086 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1087 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1088 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 1089 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 1090 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 1091 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1092 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1093 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 1094 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 1095 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 1096 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1097 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1098 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 1099 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 1100 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 1101 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1102 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1103 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 1104 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 1105 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 1106 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1107 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1108 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 1109 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1110 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1111 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1112 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1113 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1114 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1115 
     | 
    
         
            +
                },
         
     | 
| 
      
 1116 
     | 
    
         
            +
                {
         
     | 
| 
      
 1117 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1118 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1119 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 1120 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 1121 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 1122 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1123 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1124 
     | 
    
         
            +
                  "name": "getInitialState",
         
     | 
| 
      
 1125 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1126 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1127 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 1128 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1129 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 1130 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1131 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1132 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1133 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1134 
     | 
    
         
            +
                },
         
     | 
| 
      
 1135 
     | 
    
         
            +
                {
         
     | 
| 
      
 1136 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1137 
     | 
    
         
            +
                  "name": "getInstanceReader",
         
     | 
| 
      
 1138 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1139 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1140 
     | 
    
         
            +
                      "internalType": "contract InstanceReader",
         
     | 
| 
      
 1141 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1142 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1143 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1144 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1145 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1146 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1147 
     | 
    
         
            +
                },
         
     | 
| 
      
 1148 
     | 
    
         
            +
                {
         
     | 
| 
      
 1149 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1150 
     | 
    
         
            +
                  "name": "getMajorVersion",
         
     | 
| 
      
 1151 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1152 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1153 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 1154 
     | 
    
         
            +
                      "name": "majorVersion",
         
     | 
| 
      
 1155 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 1156 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1157 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1158 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 1159 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1160 
     | 
    
         
            +
                },
         
     | 
| 
      
 1161 
     | 
    
         
            +
                {
         
     | 
| 
      
 1162 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1163 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1164 
     | 
    
         
            +
                      "internalType": "Key32",
         
     | 
| 
      
 1165 
     | 
    
         
            +
                      "name": "key",
         
     | 
| 
      
 1166 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 1167 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1168 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1169 
     | 
    
         
            +
                  "name": "getMetadata",
         
     | 
| 
      
 1170 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1171 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1172 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1173 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1174 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 1175 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 1176 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 1177 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1178 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1179 
     | 
    
         
            +
                          "internalType": "StateId",
         
     | 
| 
      
 1180 
     | 
    
         
            +
                          "name": "state",
         
     | 
| 
      
 1181 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 1182 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1183 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1184 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 1185 
     | 
    
         
            +
                          "name": "updatedBy",
         
     | 
| 
      
 1186 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 1187 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1188 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1189 
     | 
    
         
            +
                          "internalType": "Blocknumber",
         
     | 
| 
      
 1190 
     | 
    
         
            +
                          "name": "updatedIn",
         
     | 
| 
      
 1191 
     | 
    
         
            +
                          "type": "uint32"
         
     | 
| 
      
 1192 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1193 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1194 
     | 
    
         
            +
                          "internalType": "Blocknumber",
         
     | 
| 
      
 1195 
     | 
    
         
            +
                          "name": "createdIn",
         
     | 
| 
      
 1196 
     | 
    
         
            +
                          "type": "uint32"
         
     | 
| 
      
 1197 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1198 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1199 
     | 
    
         
            +
                      "internalType": "struct IKeyValueStore.Metadata",
         
     | 
| 
      
 1200 
     | 
    
         
            +
                      "name": "metadata",
         
     | 
| 
      
 1201 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1202 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1203 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1204 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1205 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1206 
     | 
    
         
            +
                },
         
     | 
| 
      
 1207 
     | 
    
         
            +
                {
         
     | 
| 
      
 1208 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1209 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 1210 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1211 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1212 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1213 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1214 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1215 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1216 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1217 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1218 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1219 
     | 
    
         
            +
                },
         
     | 
| 
      
 1220 
     | 
    
         
            +
                {
         
     | 
| 
      
 1221 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1222 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 1223 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1224 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1225 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1226 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1227 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1228 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1229 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1230 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1231 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1232 
     | 
    
         
            +
                },
         
     | 
| 
      
 1233 
     | 
    
         
            +
                {
         
     | 
| 
      
 1234 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1235 
     | 
    
         
            +
                  "name": "getPolicyService",
         
     | 
| 
      
 1236 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1237 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1238 
     | 
    
         
            +
                      "internalType": "contract IPolicyService",
         
     | 
| 
      
 1239 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1240 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1241 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1242 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1243 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1244 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1245 
     | 
    
         
            +
                },
         
     | 
| 
      
 1246 
     | 
    
         
            +
                {
         
     | 
| 
      
 1247 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1248 
     | 
    
         
            +
                  "name": "getPoolService",
         
     | 
| 
      
 1249 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1250 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1251 
     | 
    
         
            +
                      "internalType": "contract IPoolService",
         
     | 
| 
      
 1252 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1253 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1254 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1255 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1256 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1257 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1258 
     | 
    
         
            +
                },
         
     | 
| 
      
 1259 
     | 
    
         
            +
                {
         
     | 
| 
      
 1260 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1261 
     | 
    
         
            +
                  "name": "getProductService",
         
     | 
| 
      
 1262 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1263 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1264 
     | 
    
         
            +
                      "internalType": "contract IProductService",
         
     | 
| 
      
 1265 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1266 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1267 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1268 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1269 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1270 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1271 
     | 
    
         
            +
                },
         
     | 
| 
      
 1272 
     | 
    
         
            +
                {
         
     | 
| 
      
 1273 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1274 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 1275 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1276 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1277 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 1278 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1279 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1280 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1281 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1282 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1283 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1284 
     | 
    
         
            +
                },
         
     | 
| 
      
 1285 
     | 
    
         
            +
                {
         
     | 
| 
      
 1286 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1287 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
      
 1288 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1289 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1290 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1291 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1292 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1293 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1294 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1295 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1296 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1297 
     | 
    
         
            +
                },
         
     | 
| 
      
 1298 
     | 
    
         
            +
                {
         
     | 
| 
      
 1299 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1300 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1301 
     | 
    
         
            +
                      "internalType": "Key32",
         
     | 
| 
      
 1302 
     | 
    
         
            +
                      "name": "key",
         
     | 
| 
      
 1303 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 1304 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1305 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1306 
     | 
    
         
            +
                  "name": "getState",
         
     | 
| 
      
 1307 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1308 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1309 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 1310 
     | 
    
         
            +
                      "name": "state",
         
     | 
| 
      
 1311 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 1312 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1313 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1314 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1315 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1316 
     | 
    
         
            +
                },
         
     | 
| 
      
 1317 
     | 
    
         
            +
                {
         
     | 
| 
      
 1318 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1319 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1320 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 1321 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 1322 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 1323 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1324 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1325 
     | 
    
         
            +
                  "name": "hasLifecycle",
         
     | 
| 
      
 1326 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1327 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1328 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1329 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1330 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1331 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1332 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1333 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1334 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1335 
     | 
    
         
            +
                },
         
     | 
| 
      
 1336 
     | 
    
         
            +
                {
         
     | 
| 
      
 1337 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1338 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 1339 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1340 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1341 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 1342 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1343 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 1344 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1345 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1346 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1347 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1348 
     | 
    
         
            +
                },
         
     | 
| 
      
 1349 
     | 
    
         
            +
                {
         
     | 
| 
      
 1350 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1351 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1352 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 1353 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 1354 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 1355 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1356 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1357 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 1358 
     | 
    
         
            +
                      "name": "fromId",
         
     | 
| 
      
 1359 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 1360 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1361 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1362 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 1363 
     | 
    
         
            +
                      "name": "toId",
         
     | 
| 
      
 1364 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 1365 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1366 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1367 
     | 
    
         
            +
                  "name": "isValidTransition",
         
     | 
| 
      
 1368 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1369 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1370 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1371 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1372 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1373 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1374 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1375 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1376 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1377 
     | 
    
         
            +
                },
         
     | 
| 
      
 1378 
     | 
    
         
            +
                {
         
     | 
| 
      
 1379 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1380 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 1381 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1382 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1383 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1384 
     | 
    
         
            +
                },
         
     | 
| 
      
 1385 
     | 
    
         
            +
                {
         
     | 
| 
      
 1386 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1387 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1388 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1389 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1390 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1391 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1392 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1393 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 1394 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1395 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1396 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1397 
     | 
    
         
            +
                },
         
     | 
| 
      
 1398 
     | 
    
         
            +
                {
         
     | 
| 
      
 1399 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1400 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1401 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 1402 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 1403 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 1404 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1405 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1406 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 1407 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1408 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1409 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1410 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1411 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1412 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1413 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1414 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1415 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1416 
     | 
    
         
            +
                },
         
     | 
| 
      
 1417 
     | 
    
         
            +
                {
         
     | 
| 
      
 1418 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1419 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1420 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 1421 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 1422 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 1423 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1424 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1425 
     | 
    
         
            +
                      "internalType": "KeyId",
         
     | 
| 
      
 1426 
     | 
    
         
            +
                      "name": "id",
         
     | 
| 
      
 1427 
     | 
    
         
            +
                      "type": "bytes31"
         
     | 
| 
      
 1428 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1429 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1430 
     | 
    
         
            +
                  "name": "toKey32",
         
     | 
| 
      
 1431 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1432 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1433 
     | 
    
         
            +
                      "internalType": "Key32",
         
     | 
| 
      
 1434 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1435 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 1436 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1437 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1438 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 1439 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1440 
     | 
    
         
            +
                },
         
     | 
| 
       6 
1441 
     | 
    
         
             
                {
         
     | 
| 
       7 
1442 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       8 
1443 
     | 
    
         
             
                    {
         
     | 
| 
       9 
1444 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       10 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 1445 
     | 
    
         
            +
                      "name": "applicationNftId",
         
     | 
| 
       11 
1446 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       12 
1447 
     | 
    
         
             
                    },
         
     | 
| 
       13 
1448 
     | 
    
         
             
                    {
         
     | 
| 
       14 
1449 
     | 
    
         
             
                      "components": [
         
     | 
| 
       15 
1450 
     | 
    
         
             
                        {
         
     | 
| 
       16 
1451 
     | 
    
         
             
                          "internalType": "NftId",
         
     | 
| 
       17 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 1452 
     | 
    
         
            +
                          "name": "productNftId",
         
     | 
| 
       18 
1453 
     | 
    
         
             
                          "type": "uint96"
         
     | 
| 
       19 
1454 
     | 
    
         
             
                        },
         
     | 
| 
       20 
1455 
     | 
    
         
             
                        {
         
     | 
| 
       21 
     | 
    
         
            -
                          " 
     | 
| 
       22 
     | 
    
         
            -
             
     | 
| 
       23 
     | 
    
         
            -
             
     | 
| 
       24 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       25 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       26 
     | 
    
         
            -
                            },
         
     | 
| 
       27 
     | 
    
         
            -
                            {
         
     | 
| 
       28 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       29 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       30 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       31 
     | 
    
         
            -
                            }
         
     | 
| 
       32 
     | 
    
         
            -
                          ],
         
     | 
| 
       33 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       34 
     | 
    
         
            -
                          "name": "fee",
         
     | 
| 
       35 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 1456 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1457 
     | 
    
         
            +
                          "name": "bundleNftId",
         
     | 
| 
      
 1458 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
       36 
1459 
     | 
    
         
             
                        },
         
     | 
| 
       37 
1460 
     | 
    
         
             
                        {
         
     | 
| 
       38 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       39 
     | 
    
         
            -
                          "name": " 
     | 
| 
       40 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1461 
     | 
    
         
            +
                          "internalType": "ReferralId",
         
     | 
| 
      
 1462 
     | 
    
         
            +
                          "name": "referralId",
         
     | 
| 
      
 1463 
     | 
    
         
            +
                          "type": "bytes8"
         
     | 
| 
      
 1464 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1465 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1466 
     | 
    
         
            +
                          "internalType": "RiskId",
         
     | 
| 
      
 1467 
     | 
    
         
            +
                          "name": "riskId",
         
     | 
| 
      
 1468 
     | 
    
         
            +
                          "type": "bytes8"
         
     | 
| 
       41 
1469 
     | 
    
         
             
                        },
         
     | 
| 
       42 
1470 
     | 
    
         
             
                        {
         
     | 
| 
       43 
1471 
     | 
    
         
             
                          "internalType": "uint256",
         
     | 
| 
       44 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 1472 
     | 
    
         
            +
                          "name": "sumInsuredAmount",
         
     | 
| 
       45 
1473 
     | 
    
         
             
                          "type": "uint256"
         
     | 
| 
       46 
1474 
     | 
    
         
             
                        },
         
     | 
| 
       47 
1475 
     | 
    
         
             
                        {
         
     | 
| 
       48 
1476 
     | 
    
         
             
                          "internalType": "uint256",
         
     | 
| 
       49 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 1477 
     | 
    
         
            +
                          "name": "premiumAmount",
         
     | 
| 
       50 
1478 
     | 
    
         
             
                          "type": "uint256"
         
     | 
| 
       51 
1479 
     | 
    
         
             
                        },
         
     | 
| 
       52 
1480 
     | 
    
         
             
                        {
         
     | 
| 
       53 
1481 
     | 
    
         
             
                          "internalType": "uint256",
         
     | 
| 
       54 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 1482 
     | 
    
         
            +
                          "name": "premiumPaidAmount",
         
     | 
| 
       55 
1483 
     | 
    
         
             
                          "type": "uint256"
         
     | 
| 
       56 
1484 
     | 
    
         
             
                        },
         
     | 
| 
       57 
1485 
     | 
    
         
             
                        {
         
     | 
| 
       58 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
      
 1486 
     | 
    
         
            +
                          "internalType": "Seconds",
         
     | 
| 
       59 
1487 
     | 
    
         
             
                          "name": "lifetime",
         
     | 
| 
      
 1488 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 1489 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1490 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1491 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 1492 
     | 
    
         
            +
                          "name": "applicationData",
         
     | 
| 
      
 1493 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 1494 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1495 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1496 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 1497 
     | 
    
         
            +
                          "name": "policyData",
         
     | 
| 
      
 1498 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 1499 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1500 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1501 
     | 
    
         
            +
                          "internalType": "uint16",
         
     | 
| 
      
 1502 
     | 
    
         
            +
                          "name": "claimsCount",
         
     | 
| 
      
 1503 
     | 
    
         
            +
                          "type": "uint16"
         
     | 
| 
      
 1504 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1505 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1506 
     | 
    
         
            +
                          "internalType": "uint16",
         
     | 
| 
      
 1507 
     | 
    
         
            +
                          "name": "openClaimsCount",
         
     | 
| 
      
 1508 
     | 
    
         
            +
                          "type": "uint16"
         
     | 
| 
      
 1509 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1510 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1511 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1512 
     | 
    
         
            +
                          "name": "payoutAmount",
         
     | 
| 
       60 
1513 
     | 
    
         
             
                          "type": "uint256"
         
     | 
| 
       61 
1514 
     | 
    
         
             
                        },
         
     | 
| 
      
 1515 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1516 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 1517 
     | 
    
         
            +
                          "name": "activatedAt",
         
     | 
| 
      
 1518 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 1519 
     | 
    
         
            +
                        },
         
     | 
| 
       62 
1520 
     | 
    
         
             
                        {
         
     | 
| 
       63 
1521 
     | 
    
         
             
                          "internalType": "Timestamp",
         
     | 
| 
       64 
1522 
     | 
    
         
             
                          "name": "expiredAt",
         
     | 
| 
         @@ -70,12 +1528,17 @@ 
     | 
|
| 
       70 
1528 
     | 
    
         
             
                          "type": "uint40"
         
     | 
| 
       71 
1529 
     | 
    
         
             
                        }
         
     | 
| 
       72 
1530 
     | 
    
         
             
                      ],
         
     | 
| 
       73 
     | 
    
         
            -
                      "internalType": "struct  
     | 
| 
       74 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 1531 
     | 
    
         
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         
     | 
| 
      
 1532 
     | 
    
         
            +
                      "name": "policy",
         
     | 
| 
       75 
1533 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
      
 1534 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1535 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1536 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 1537 
     | 
    
         
            +
                      "name": "newState",
         
     | 
| 
      
 1538 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       76 
1539 
     | 
    
         
             
                    }
         
     | 
| 
       77 
1540 
     | 
    
         
             
                  ],
         
     | 
| 
       78 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 1541 
     | 
    
         
            +
                  "name": "updateApplication",
         
     | 
| 
       79 
1542 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       80 
1543 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       81 
1544 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -84,55 +1547,16 @@ 
     | 
|
| 
       84 
1547 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       85 
1548 
     | 
    
         
             
                    {
         
     | 
| 
       86 
1549 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       87 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 1550 
     | 
    
         
            +
                      "name": "applicationNftId",
         
     | 
| 
       88 
1551 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       89 
1552 
     | 
    
         
             
                    },
         
     | 
| 
       90 
1553 
     | 
    
         
             
                    {
         
     | 
| 
       91 
     | 
    
         
            -
                      " 
     | 
| 
       92 
     | 
    
         
            -
             
     | 
| 
       93 
     | 
    
         
            -
             
     | 
| 
       94 
     | 
    
         
            -
                          "name": "productNftId",
         
     | 
| 
       95 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       96 
     | 
    
         
            -
                        },
         
     | 
| 
       97 
     | 
    
         
            -
                        {
         
     | 
| 
       98 
     | 
    
         
            -
                          "internalType": "contract TokenHandler",
         
     | 
| 
       99 
     | 
    
         
            -
                          "name": "tokenHandler",
         
     | 
| 
       100 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       101 
     | 
    
         
            -
                        },
         
     | 
| 
       102 
     | 
    
         
            -
                        {
         
     | 
| 
       103 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       104 
     | 
    
         
            -
                            {
         
     | 
| 
       105 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       106 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       107 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       108 
     | 
    
         
            -
                            },
         
     | 
| 
       109 
     | 
    
         
            -
                            {
         
     | 
| 
       110 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       111 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       112 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       113 
     | 
    
         
            -
                            }
         
     | 
| 
       114 
     | 
    
         
            -
                          ],
         
     | 
| 
       115 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       116 
     | 
    
         
            -
                          "name": "distributionFee",
         
     | 
| 
       117 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       118 
     | 
    
         
            -
                        },
         
     | 
| 
       119 
     | 
    
         
            -
                        {
         
     | 
| 
       120 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       121 
     | 
    
         
            -
                          "name": "isIntercepting",
         
     | 
| 
       122 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       123 
     | 
    
         
            -
                        },
         
     | 
| 
       124 
     | 
    
         
            -
                        {
         
     | 
| 
       125 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       126 
     | 
    
         
            -
                          "name": "wallet",
         
     | 
| 
       127 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       128 
     | 
    
         
            -
                        }
         
     | 
| 
       129 
     | 
    
         
            -
                      ],
         
     | 
| 
       130 
     | 
    
         
            -
                      "internalType": "struct ISetup.DistributionSetupInfo",
         
     | 
| 
       131 
     | 
    
         
            -
                      "name": "setup",
         
     | 
| 
       132 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 1554 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 1555 
     | 
    
         
            +
                      "name": "newState",
         
     | 
| 
      
 1556 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       133 
1557 
     | 
    
         
             
                    }
         
     | 
| 
       134 
1558 
     | 
    
         
             
                  ],
         
     | 
| 
       135 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 1559 
     | 
    
         
            +
                  "name": "updateApplicationState",
         
     | 
| 
       136 
1560 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       137 
1561 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       138 
1562 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -141,26 +1565,16 @@ 
     | 
|
| 
       141 
1565 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       142 
1566 
     | 
    
         
             
                    {
         
     | 
| 
       143 
1567 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       144 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 1568 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
       145 
1569 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       146 
1570 
     | 
    
         
             
                    },
         
     | 
| 
       147 
1571 
     | 
    
         
             
                    {
         
     | 
| 
       148 
1572 
     | 
    
         
             
                      "components": [
         
     | 
| 
       149 
1573 
     | 
    
         
             
                        {
         
     | 
| 
       150 
1574 
     | 
    
         
             
                          "internalType": "NftId",
         
     | 
| 
       151 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 1575 
     | 
    
         
            +
                          "name": "poolNftId",
         
     | 
| 
       152 
1576 
     | 
    
         
             
                          "type": "uint96"
         
     | 
| 
       153 
1577 
     | 
    
         
             
                        },
         
     | 
| 
       154 
     | 
    
         
            -
                        {
         
     | 
| 
       155 
     | 
    
         
            -
                          "internalType": "contract TokenHandler",
         
     | 
| 
       156 
     | 
    
         
            -
                          "name": "tokenHandler",
         
     | 
| 
       157 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       158 
     | 
    
         
            -
                        },
         
     | 
| 
       159 
     | 
    
         
            -
                        {
         
     | 
| 
       160 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       161 
     | 
    
         
            -
                          "name": "collateralizationLevel",
         
     | 
| 
       162 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       163 
     | 
    
         
            -
                        },
         
     | 
| 
       164 
1578 
     | 
    
         
             
                        {
         
     | 
| 
       165 
1579 
     | 
    
         
             
                          "components": [
         
     | 
| 
       166 
1580 
     | 
    
         
             
                            {
         
     | 
| 
         @@ -175,60 +1589,56 @@ 
     | 
|
| 
       175 
1589 
     | 
    
         
             
                            }
         
     | 
| 
       176 
1590 
     | 
    
         
             
                          ],
         
     | 
| 
       177 
1591 
     | 
    
         
             
                          "internalType": "struct Fee",
         
     | 
| 
       178 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 1592 
     | 
    
         
            +
                          "name": "fee",
         
     | 
| 
       179 
1593 
     | 
    
         
             
                          "type": "tuple"
         
     | 
| 
       180 
1594 
     | 
    
         
             
                        },
         
     | 
| 
       181 
1595 
     | 
    
         
             
                        {
         
     | 
| 
       182 
     | 
    
         
            -
                          " 
     | 
| 
       183 
     | 
    
         
            -
             
     | 
| 
       184 
     | 
    
         
            -
             
     | 
| 
       185 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       186 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       187 
     | 
    
         
            -
                            },
         
     | 
| 
       188 
     | 
    
         
            -
                            {
         
     | 
| 
       189 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       190 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       191 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       192 
     | 
    
         
            -
                            }
         
     | 
| 
       193 
     | 
    
         
            -
                          ],
         
     | 
| 
       194 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       195 
     | 
    
         
            -
                          "name": "stakingFee",
         
     | 
| 
       196 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 1596 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 1597 
     | 
    
         
            +
                          "name": "filter",
         
     | 
| 
      
 1598 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
       197 
1599 
     | 
    
         
             
                        },
         
     | 
| 
       198 
1600 
     | 
    
         
             
                        {
         
     | 
| 
       199 
     | 
    
         
            -
                          " 
     | 
| 
       200 
     | 
    
         
            -
             
     | 
| 
       201 
     | 
    
         
            -
             
     | 
| 
       202 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       203 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       204 
     | 
    
         
            -
                            },
         
     | 
| 
       205 
     | 
    
         
            -
                            {
         
     | 
| 
       206 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       207 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       208 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       209 
     | 
    
         
            -
                            }
         
     | 
| 
       210 
     | 
    
         
            -
                          ],
         
     | 
| 
       211 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       212 
     | 
    
         
            -
                          "name": "performanceFee",
         
     | 
| 
       213 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 1601 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1602 
     | 
    
         
            +
                          "name": "capitalAmount",
         
     | 
| 
      
 1603 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
       214 
1604 
     | 
    
         
             
                        },
         
     | 
| 
       215 
1605 
     | 
    
         
             
                        {
         
     | 
| 
       216 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       217 
     | 
    
         
            -
                          "name": " 
     | 
| 
       218 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1606 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1607 
     | 
    
         
            +
                          "name": "lockedAmount",
         
     | 
| 
      
 1608 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
       219 
1609 
     | 
    
         
             
                        },
         
     | 
| 
       220 
1610 
     | 
    
         
             
                        {
         
     | 
| 
       221 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       222 
     | 
    
         
            -
                          "name": " 
     | 
| 
       223 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1611 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1612 
     | 
    
         
            +
                          "name": "balanceAmount",
         
     | 
| 
      
 1613 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 1614 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1615 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1616 
     | 
    
         
            +
                          "internalType": "Seconds",
         
     | 
| 
      
 1617 
     | 
    
         
            +
                          "name": "lifetime",
         
     | 
| 
      
 1618 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 1619 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1620 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1621 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 1622 
     | 
    
         
            +
                          "name": "expiredAt",
         
     | 
| 
      
 1623 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 1624 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1625 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1626 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 1627 
     | 
    
         
            +
                          "name": "closedAt",
         
     | 
| 
      
 1628 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
       224 
1629 
     | 
    
         
             
                        }
         
     | 
| 
       225 
1630 
     | 
    
         
             
                      ],
         
     | 
| 
       226 
     | 
    
         
            -
                      "internalType": "struct  
     | 
| 
       227 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 1631 
     | 
    
         
            +
                      "internalType": "struct IBundle.BundleInfo",
         
     | 
| 
      
 1632 
     | 
    
         
            +
                      "name": "bundle",
         
     | 
| 
       228 
1633 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
      
 1634 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1635 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1636 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 1637 
     | 
    
         
            +
                      "name": "newState",
         
     | 
| 
      
 1638 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       229 
1639 
     | 
    
         
             
                    }
         
     | 
| 
       230 
1640 
     | 
    
         
             
                  ],
         
     | 
| 
       231 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 1641 
     | 
    
         
            +
                  "name": "updateBundle",
         
     | 
| 
       232 
1642 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       233 
1643 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       234 
1644 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -237,64 +1647,38 @@ 
     | 
|
| 
       237 
1647 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       238 
1648 
     | 
    
         
             
                    {
         
     | 
| 
       239 
1649 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       240 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 1650 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
       241 
1651 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       242 
1652 
     | 
    
         
             
                    },
         
     | 
| 
       243 
1653 
     | 
    
         
             
                    {
         
     | 
| 
       244 
     | 
    
         
            -
                      " 
     | 
| 
       245 
     | 
    
         
            -
             
     | 
| 
       246 
     | 
    
         
            -
             
     | 
| 
       247 
     | 
    
         
            -
             
     | 
| 
       248 
     | 
    
         
            -
             
     | 
| 
       249 
     | 
    
         
            -
             
     | 
| 
       250 
     | 
    
         
            -
             
     | 
| 
       251 
     | 
    
         
            -
             
     | 
| 
       252 
     | 
    
         
            -
             
     | 
| 
       253 
     | 
    
         
            -
             
     | 
| 
       254 
     | 
    
         
            -
             
     | 
| 
       255 
     | 
    
         
            -
             
     | 
| 
       256 
     | 
    
         
            -
             
     | 
| 
       257 
     | 
    
         
            -
             
     | 
| 
       258 
     | 
    
         
            -
             
     | 
| 
       259 
     | 
    
         
            -
             
     | 
| 
       260 
     | 
    
         
            -
             
     | 
| 
       261 
     | 
    
         
            -
             
     | 
| 
       262 
     | 
    
         
            -
             
     | 
| 
       263 
     | 
    
         
            -
             
     | 
| 
       264 
     | 
    
         
            -
             
     | 
| 
       265 
     | 
    
         
            -
             
     | 
| 
       266 
     | 
    
         
            -
                          " 
     | 
| 
       267 
     | 
    
         
            -
                            {
         
     | 
| 
       268 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       269 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       270 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       271 
     | 
    
         
            -
                            },
         
     | 
| 
       272 
     | 
    
         
            -
                            {
         
     | 
| 
       273 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       274 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       275 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       276 
     | 
    
         
            -
                            }
         
     | 
| 
       277 
     | 
    
         
            -
                          ],
         
     | 
| 
       278 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       279 
     | 
    
         
            -
                          "name": "distributionFee",
         
     | 
| 
       280 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 1654 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 1655 
     | 
    
         
            +
                      "name": "newState",
         
     | 
| 
      
 1656 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 1657 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1658 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1659 
     | 
    
         
            +
                  "name": "updateBundleState",
         
     | 
| 
      
 1660 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1661 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1662 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1663 
     | 
    
         
            +
                },
         
     | 
| 
      
 1664 
     | 
    
         
            +
                {
         
     | 
| 
      
 1665 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1666 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1667 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1668 
     | 
    
         
            +
                      "name": "distributionNftId",
         
     | 
| 
      
 1669 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1670 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1671 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1672 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1673 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1674 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1675 
     | 
    
         
            +
                          "name": "productNftId",
         
     | 
| 
      
 1676 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
       281 
1677 
     | 
    
         
             
                        },
         
     | 
| 
       282 
1678 
     | 
    
         
             
                        {
         
     | 
| 
       283 
     | 
    
         
            -
                          " 
     | 
| 
       284 
     | 
    
         
            -
             
     | 
| 
       285 
     | 
    
         
            -
             
     | 
| 
       286 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       287 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       288 
     | 
    
         
            -
                            },
         
     | 
| 
       289 
     | 
    
         
            -
                            {
         
     | 
| 
       290 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       291 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       292 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       293 
     | 
    
         
            -
                            }
         
     | 
| 
       294 
     | 
    
         
            -
                          ],
         
     | 
| 
       295 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       296 
     | 
    
         
            -
                          "name": "productFee",
         
     | 
| 
       297 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 1679 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 1680 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 1681 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
       298 
1682 
     | 
    
         
             
                        },
         
     | 
| 
       299 
1683 
     | 
    
         
             
                        {
         
     | 
| 
       300 
1684 
     | 
    
         
             
                          "components": [
         
     | 
| 
         @@ -310,7 +1694,7 @@ 
     | 
|
| 
       310 
1694 
     | 
    
         
             
                            }
         
     | 
| 
       311 
1695 
     | 
    
         
             
                          ],
         
     | 
| 
       312 
1696 
     | 
    
         
             
                          "internalType": "struct Fee",
         
     | 
| 
       313 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 1697 
     | 
    
         
            +
                          "name": "minDistributionOwnerFee",
         
     | 
| 
       314 
1698 
     | 
    
         
             
                          "type": "tuple"
         
     | 
| 
       315 
1699 
     | 
    
         
             
                        },
         
     | 
| 
       316 
1700 
     | 
    
         
             
                        {
         
     | 
| 
         @@ -327,207 +1711,178 @@ 
     | 
|
| 
       327 
1711 
     | 
    
         
             
                            }
         
     | 
| 
       328 
1712 
     | 
    
         
             
                          ],
         
     | 
| 
       329 
1713 
     | 
    
         
             
                          "internalType": "struct Fee",
         
     | 
| 
       330 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 1714 
     | 
    
         
            +
                          "name": "distributionFee",
         
     | 
| 
       331 
1715 
     | 
    
         
             
                          "type": "tuple"
         
     | 
| 
       332 
1716 
     | 
    
         
             
                        },
         
     | 
| 
       333 
1717 
     | 
    
         
             
                        {
         
     | 
| 
       334 
     | 
    
         
            -
                          " 
     | 
| 
       335 
     | 
    
         
            -
             
     | 
| 
       336 
     | 
    
         
            -
             
     | 
| 
       337 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       338 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       339 
     | 
    
         
            -
                            },
         
     | 
| 
       340 
     | 
    
         
            -
                            {
         
     | 
| 
       341 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       342 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       343 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       344 
     | 
    
         
            -
                            }
         
     | 
| 
       345 
     | 
    
         
            -
                          ],
         
     | 
| 
       346 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       347 
     | 
    
         
            -
                          "name": "stakingFee",
         
     | 
| 
       348 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 1718 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 1719 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 1720 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
       349 
1721 
     | 
    
         
             
                        },
         
     | 
| 
       350 
1722 
     | 
    
         
             
                        {
         
     | 
| 
       351 
     | 
    
         
            -
                          " 
     | 
| 
       352 
     | 
    
         
            -
             
     | 
| 
       353 
     | 
    
         
            -
             
     | 
| 
       354 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       355 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       356 
     | 
    
         
            -
                            },
         
     | 
| 
       357 
     | 
    
         
            -
                            {
         
     | 
| 
       358 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       359 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       360 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       361 
     | 
    
         
            -
                            }
         
     | 
| 
       362 
     | 
    
         
            -
                          ],
         
     | 
| 
       363 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       364 
     | 
    
         
            -
                          "name": "performanceFee",
         
     | 
| 
       365 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 1723 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1724 
     | 
    
         
            +
                          "name": "sumDistributionOwnerFees",
         
     | 
| 
      
 1725 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
       366 
1726 
     | 
    
         
             
                        }
         
     | 
| 
       367 
1727 
     | 
    
         
             
                      ],
         
     | 
| 
       368 
     | 
    
         
            -
                      "internalType": "struct ISetup. 
     | 
| 
      
 1728 
     | 
    
         
            +
                      "internalType": "struct ISetup.DistributionSetupInfo",
         
     | 
| 
       369 
1729 
     | 
    
         
             
                      "name": "setup",
         
     | 
| 
       370 
1730 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
      
 1731 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1732 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1733 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 1734 
     | 
    
         
            +
                      "name": "newState",
         
     | 
| 
      
 1735 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       371 
1736 
     | 
    
         
             
                    }
         
     | 
| 
       372 
1737 
     | 
    
         
             
                  ],
         
     | 
| 
       373 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 1738 
     | 
    
         
            +
                  "name": "updateDistributionSetup",
         
     | 
| 
       374 
1739 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       375 
1740 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       376 
1741 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       377 
1742 
     | 
    
         
             
                },
         
     | 
| 
       378 
1743 
     | 
    
         
             
                {
         
     | 
| 
       379 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       380 
     | 
    
         
            -
                  "name": "getComponentOwnerService",
         
     | 
| 
       381 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 1744 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       382 
1745 
     | 
    
         
             
                    {
         
     | 
| 
       383 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       384 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       385 
     | 
    
         
            -
                      "type": " 
     | 
| 
       386 
     | 
    
         
            -
                    }
         
     | 
| 
       387 
     | 
    
         
            -
                  ],
         
     | 
| 
       388 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       389 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       390 
     | 
    
         
            -
                },
         
     | 
| 
       391 
     | 
    
         
            -
                {
         
     | 
| 
       392 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       393 
     | 
    
         
            -
                  "name": "getDistributionService",
         
     | 
| 
       394 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 1746 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1747 
     | 
    
         
            +
                      "name": "distributionNftId",
         
     | 
| 
      
 1748 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1749 
     | 
    
         
            +
                    },
         
     | 
| 
       395 
1750 
     | 
    
         
             
                    {
         
     | 
| 
       396 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       397 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       398 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 1751 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 1752 
     | 
    
         
            +
                      "name": "newState",
         
     | 
| 
      
 1753 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       399 
1754 
     | 
    
         
             
                    }
         
     | 
| 
       400 
1755 
     | 
    
         
             
                  ],
         
     | 
| 
       401 
     | 
    
         
            -
                  " 
     | 
| 
      
 1756 
     | 
    
         
            +
                  "name": "updateDistributionSetupState",
         
     | 
| 
      
 1757 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1758 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
       402 
1759 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       403 
1760 
     | 
    
         
             
                },
         
     | 
| 
       404 
1761 
     | 
    
         
             
                {
         
     | 
| 
       405 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       406 
     | 
    
         
            -
                  "name": "getInstanceReader",
         
     | 
| 
       407 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 1762 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       408 
1763 
     | 
    
         
             
                    {
         
     | 
| 
       409 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       410 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       411 
     | 
    
         
            -
                      "type": " 
     | 
| 
       412 
     | 
    
         
            -
                    }
         
     | 
| 
       413 
     | 
    
         
            -
                  ],
         
     | 
| 
       414 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       415 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       416 
     | 
    
         
            -
                },
         
     | 
| 
       417 
     | 
    
         
            -
                {
         
     | 
| 
       418 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       419 
     | 
    
         
            -
                  "name": "getPoolService",
         
     | 
| 
       420 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 1764 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1765 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 1766 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1767 
     | 
    
         
            +
                    },
         
     | 
| 
       421 
1768 
     | 
    
         
             
                    {
         
     | 
| 
       422 
     | 
    
         
            -
                      " 
     | 
| 
       423 
     | 
    
         
            -
             
     | 
| 
       424 
     | 
    
         
            -
             
     | 
| 
       425 
     | 
    
         
            -
             
     | 
| 
       426 
     | 
    
         
            -
             
     | 
| 
       427 
     | 
    
         
            -
             
     | 
| 
       428 
     | 
    
         
            -
             
     | 
| 
       429 
     | 
    
         
            -
             
     | 
| 
       430 
     | 
    
         
            -
             
     | 
| 
       431 
     | 
    
         
            -
             
     | 
| 
       432 
     | 
    
         
            -
             
     | 
| 
       433 
     | 
    
         
            -
             
     | 
| 
      
 1769 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1770 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1771 
     | 
    
         
            +
                          "internalType": "DistributorType",
         
     | 
| 
      
 1772 
     | 
    
         
            +
                          "name": "distributorType",
         
     | 
| 
      
 1773 
     | 
    
         
            +
                          "type": "bytes8"
         
     | 
| 
      
 1774 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1775 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1776 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 1777 
     | 
    
         
            +
                          "name": "active",
         
     | 
| 
      
 1778 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 1779 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1780 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1781 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 1782 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 1783 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 1784 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1785 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1786 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1787 
     | 
    
         
            +
                          "name": "sumCommisions",
         
     | 
| 
      
 1788 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 1789 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1790 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1791 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1792 
     | 
    
         
            +
                          "name": "numPoliciesSold",
         
     | 
| 
      
 1793 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 1794 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1795 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1796 
     | 
    
         
            +
                      "internalType": "struct IDistribution.DistributorInfo",
         
     | 
| 
      
 1797 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 1798 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1799 
     | 
    
         
            +
                    },
         
     | 
| 
       434 
1800 
     | 
    
         
             
                    {
         
     | 
| 
       435 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       436 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       437 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 1801 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 1802 
     | 
    
         
            +
                      "name": "newState",
         
     | 
| 
      
 1803 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       438 
1804 
     | 
    
         
             
                    }
         
     | 
| 
       439 
1805 
     | 
    
         
             
                  ],
         
     | 
| 
       440 
     | 
    
         
            -
                  " 
     | 
| 
      
 1806 
     | 
    
         
            +
                  "name": "updateDistributor",
         
     | 
| 
      
 1807 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1808 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
       441 
1809 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       442 
1810 
     | 
    
         
             
                },
         
     | 
| 
       443 
1811 
     | 
    
         
             
                {
         
     | 
| 
       444 
1812 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       445 
1813 
     | 
    
         
             
                    {
         
     | 
| 
       446 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       447 
     | 
    
         
            -
                      "name": " 
     | 
| 
       448 
     | 
    
         
            -
                      "type": " 
     | 
| 
       449 
     | 
    
         
            -
                    }
         
     | 
| 
       450 
     | 
    
         
            -
                  ],
         
     | 
| 
       451 
     | 
    
         
            -
                  "name": "supportsInterface",
         
     | 
| 
       452 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 1814 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1815 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 1816 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1817 
     | 
    
         
            +
                    },
         
     | 
| 
       453 
1818 
     | 
    
         
             
                    {
         
     | 
| 
       454 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       455 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       456 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 1819 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 1820 
     | 
    
         
            +
                      "name": "newState",
         
     | 
| 
      
 1821 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       457 
1822 
     | 
    
         
             
                    }
         
     | 
| 
       458 
1823 
     | 
    
         
             
                  ],
         
     | 
| 
       459 
     | 
    
         
            -
                  " 
     | 
| 
      
 1824 
     | 
    
         
            +
                  "name": "updateDistributorState",
         
     | 
| 
      
 1825 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1826 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
       460 
1827 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       461 
1828 
     | 
    
         
             
                },
         
     | 
| 
       462 
1829 
     | 
    
         
             
                {
         
     | 
| 
       463 
1830 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       464 
1831 
     | 
    
         
             
                    {
         
     | 
| 
       465 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       466 
     | 
    
         
            -
                      "name": " 
     | 
| 
       467 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 1832 
     | 
    
         
            +
                      "internalType": "Key32",
         
     | 
| 
      
 1833 
     | 
    
         
            +
                      "name": "distributorKey",
         
     | 
| 
      
 1834 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
       468 
1835 
     | 
    
         
             
                    },
         
     | 
| 
       469 
1836 
     | 
    
         
             
                    {
         
     | 
| 
       470 
1837 
     | 
    
         
             
                      "components": [
         
     | 
| 
       471 
1838 
     | 
    
         
             
                        {
         
     | 
| 
       472 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       473 
     | 
    
         
            -
                          "name": " 
     | 
| 
       474 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1839 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 1840 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 1841 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
       475 
1842 
     | 
    
         
             
                        },
         
     | 
| 
       476 
1843 
     | 
    
         
             
                        {
         
     | 
| 
       477 
     | 
    
         
            -
                          " 
     | 
| 
       478 
     | 
    
         
            -
             
     | 
| 
       479 
     | 
    
         
            -
             
     | 
| 
       480 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       481 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       482 
     | 
    
         
            -
                            },
         
     | 
| 
       483 
     | 
    
         
            -
                            {
         
     | 
| 
       484 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       485 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       486 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       487 
     | 
    
         
            -
                            }
         
     | 
| 
       488 
     | 
    
         
            -
                          ],
         
     | 
| 
       489 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       490 
     | 
    
         
            -
                          "name": "fee",
         
     | 
| 
       491 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 1844 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 1845 
     | 
    
         
            +
                          "name": "minDiscountPercentage",
         
     | 
| 
      
 1846 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
       492 
1847 
     | 
    
         
             
                        },
         
     | 
| 
       493 
1848 
     | 
    
         
             
                        {
         
     | 
| 
       494 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       495 
     | 
    
         
            -
                          "name": " 
     | 
| 
       496 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1849 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 1850 
     | 
    
         
            +
                          "name": "maxDiscountPercentage",
         
     | 
| 
      
 1851 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
       497 
1852 
     | 
    
         
             
                        },
         
     | 
| 
       498 
1853 
     | 
    
         
             
                        {
         
     | 
| 
       499 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       500 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 1854 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 1855 
     | 
    
         
            +
                          "name": "commissionPercentage",
         
     | 
| 
       501 
1856 
     | 
    
         
             
                          "type": "uint256"
         
     | 
| 
       502 
1857 
     | 
    
         
             
                        },
         
     | 
| 
       503 
1858 
     | 
    
         
             
                        {
         
     | 
| 
       504 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       505 
     | 
    
         
            -
                          "name": " 
     | 
| 
       506 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1859 
     | 
    
         
            +
                          "internalType": "uint32",
         
     | 
| 
      
 1860 
     | 
    
         
            +
                          "name": "maxReferralCount",
         
     | 
| 
      
 1861 
     | 
    
         
            +
                          "type": "uint32"
         
     | 
| 
       507 
1862 
     | 
    
         
             
                        },
         
     | 
| 
       508 
1863 
     | 
    
         
             
                        {
         
     | 
| 
       509 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       510 
     | 
    
         
            -
                          "name": " 
     | 
| 
       511 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1864 
     | 
    
         
            +
                          "internalType": "uint32",
         
     | 
| 
      
 1865 
     | 
    
         
            +
                          "name": "maxReferralLifetime",
         
     | 
| 
      
 1866 
     | 
    
         
            +
                          "type": "uint32"
         
     | 
| 
       512 
1867 
     | 
    
         
             
                        },
         
     | 
| 
       513 
1868 
     | 
    
         
             
                        {
         
     | 
| 
       514 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       515 
     | 
    
         
            -
                          "name": " 
     | 
| 
       516 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1869 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 1870 
     | 
    
         
            +
                          "name": "allowSelfReferrals",
         
     | 
| 
      
 1871 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
       517 
1872 
     | 
    
         
             
                        },
         
     | 
| 
       518 
1873 
     | 
    
         
             
                        {
         
     | 
| 
       519 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       520 
     | 
    
         
            -
                          "name": " 
     | 
| 
       521 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1874 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 1875 
     | 
    
         
            +
                          "name": "allowRenewals",
         
     | 
| 
      
 1876 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
       522 
1877 
     | 
    
         
             
                        },
         
     | 
| 
       523 
1878 
     | 
    
         
             
                        {
         
     | 
| 
       524 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       525 
     | 
    
         
            -
                          "name": " 
     | 
| 
       526 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1879 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 1880 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 1881 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
       527 
1882 
     | 
    
         
             
                        }
         
     | 
| 
       528 
1883 
     | 
    
         
             
                      ],
         
     | 
| 
       529 
     | 
    
         
            -
                      "internalType": "struct  
     | 
| 
       530 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 1884 
     | 
    
         
            +
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         
     | 
| 
      
 1885 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
       531 
1886 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       532 
1887 
     | 
    
         
             
                    },
         
     | 
| 
       533 
1888 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -536,7 +1891,7 @@ 
     | 
|
| 
       536 
1891 
     | 
    
         
             
                      "type": "uint8"
         
     | 
| 
       537 
1892 
     | 
    
         
             
                    }
         
     | 
| 
       538 
1893 
     | 
    
         
             
                  ],
         
     | 
| 
       539 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 1894 
     | 
    
         
            +
                  "name": "updateDistributorType",
         
     | 
| 
       540 
1895 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       541 
1896 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       542 
1897 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -544,9 +1899,9 @@ 
     | 
|
| 
       544 
1899 
     | 
    
         
             
                {
         
     | 
| 
       545 
1900 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       546 
1901 
     | 
    
         
             
                    {
         
     | 
| 
       547 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       548 
     | 
    
         
            -
                      "name": " 
     | 
| 
       549 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 1902 
     | 
    
         
            +
                      "internalType": "Key32",
         
     | 
| 
      
 1903 
     | 
    
         
            +
                      "name": "distributorKey",
         
     | 
| 
      
 1904 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
       550 
1905 
     | 
    
         
             
                    },
         
     | 
| 
       551 
1906 
     | 
    
         
             
                    {
         
     | 
| 
       552 
1907 
     | 
    
         
             
                      "internalType": "StateId",
         
     | 
| 
         @@ -554,7 +1909,7 @@ 
     | 
|
| 
       554 
1909 
     | 
    
         
             
                      "type": "uint8"
         
     | 
| 
       555 
1910 
     | 
    
         
             
                    }
         
     | 
| 
       556 
1911 
     | 
    
         
             
                  ],
         
     | 
| 
       557 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 1912 
     | 
    
         
            +
                  "name": "updateDistributorTypeState",
         
     | 
| 
       558 
1913 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       559 
1914 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       560 
1915 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -563,51 +1918,94 @@ 
     | 
|
| 
       563 
1918 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       564 
1919 
     | 
    
         
             
                    {
         
     | 
| 
       565 
1920 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       566 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 1921 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
       567 
1922 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       568 
1923 
     | 
    
         
             
                    },
         
     | 
| 
       569 
1924 
     | 
    
         
             
                    {
         
     | 
| 
       570 
1925 
     | 
    
         
             
                      "components": [
         
     | 
| 
       571 
1926 
     | 
    
         
             
                        {
         
     | 
| 
       572 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       573 
     | 
    
         
            -
                          "name": "productNftId",
         
     | 
| 
       574 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
      
 1927 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1928 
     | 
    
         
            +
                          "name": "productNftId",
         
     | 
| 
      
 1929 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1930 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1931 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1932 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1933 
     | 
    
         
            +
                          "name": "bundleNftId",
         
     | 
| 
      
 1934 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1935 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1936 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1937 
     | 
    
         
            +
                          "internalType": "ReferralId",
         
     | 
| 
      
 1938 
     | 
    
         
            +
                          "name": "referralId",
         
     | 
| 
      
 1939 
     | 
    
         
            +
                          "type": "bytes8"
         
     | 
| 
      
 1940 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1941 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1942 
     | 
    
         
            +
                          "internalType": "RiskId",
         
     | 
| 
      
 1943 
     | 
    
         
            +
                          "name": "riskId",
         
     | 
| 
      
 1944 
     | 
    
         
            +
                          "type": "bytes8"
         
     | 
| 
      
 1945 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1946 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1947 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1948 
     | 
    
         
            +
                          "name": "sumInsuredAmount",
         
     | 
| 
      
 1949 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 1950 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1951 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1952 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1953 
     | 
    
         
            +
                          "name": "premiumAmount",
         
     | 
| 
      
 1954 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
       575 
1955 
     | 
    
         
             
                        },
         
     | 
| 
       576 
1956 
     | 
    
         
             
                        {
         
     | 
| 
       577 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       578 
     | 
    
         
            -
                          "name": " 
     | 
| 
       579 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1957 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1958 
     | 
    
         
            +
                          "name": "premiumPaidAmount",
         
     | 
| 
      
 1959 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
       580 
1960 
     | 
    
         
             
                        },
         
     | 
| 
       581 
1961 
     | 
    
         
             
                        {
         
     | 
| 
       582 
     | 
    
         
            -
                          " 
     | 
| 
       583 
     | 
    
         
            -
             
     | 
| 
       584 
     | 
    
         
            -
             
     | 
| 
       585 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       586 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       587 
     | 
    
         
            -
                            },
         
     | 
| 
       588 
     | 
    
         
            -
                            {
         
     | 
| 
       589 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       590 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       591 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       592 
     | 
    
         
            -
                            }
         
     | 
| 
       593 
     | 
    
         
            -
                          ],
         
     | 
| 
       594 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       595 
     | 
    
         
            -
                          "name": "distributionFee",
         
     | 
| 
       596 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 1962 
     | 
    
         
            +
                          "internalType": "Seconds",
         
     | 
| 
      
 1963 
     | 
    
         
            +
                          "name": "lifetime",
         
     | 
| 
      
 1964 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
       597 
1965 
     | 
    
         
             
                        },
         
     | 
| 
       598 
1966 
     | 
    
         
             
                        {
         
     | 
| 
       599 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       600 
     | 
    
         
            -
                          "name": " 
     | 
| 
       601 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1967 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 1968 
     | 
    
         
            +
                          "name": "applicationData",
         
     | 
| 
      
 1969 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
       602 
1970 
     | 
    
         
             
                        },
         
     | 
| 
       603 
1971 
     | 
    
         
             
                        {
         
     | 
| 
       604 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       605 
     | 
    
         
            -
                          "name": " 
     | 
| 
       606 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1972 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 1973 
     | 
    
         
            +
                          "name": "policyData",
         
     | 
| 
      
 1974 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 1975 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1976 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1977 
     | 
    
         
            +
                          "internalType": "uint16",
         
     | 
| 
      
 1978 
     | 
    
         
            +
                          "name": "claimsCount",
         
     | 
| 
      
 1979 
     | 
    
         
            +
                          "type": "uint16"
         
     | 
| 
      
 1980 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1981 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1982 
     | 
    
         
            +
                          "internalType": "uint16",
         
     | 
| 
      
 1983 
     | 
    
         
            +
                          "name": "openClaimsCount",
         
     | 
| 
      
 1984 
     | 
    
         
            +
                          "type": "uint16"
         
     | 
| 
      
 1985 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1986 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1987 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1988 
     | 
    
         
            +
                          "name": "payoutAmount",
         
     | 
| 
      
 1989 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 1990 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1991 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1992 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 1993 
     | 
    
         
            +
                          "name": "activatedAt",
         
     | 
| 
      
 1994 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 1995 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1996 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1997 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 1998 
     | 
    
         
            +
                          "name": "expiredAt",
         
     | 
| 
      
 1999 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 2000 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2001 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2002 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 2003 
     | 
    
         
            +
                          "name": "closedAt",
         
     | 
| 
      
 2004 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
       607 
2005 
     | 
    
         
             
                        }
         
     | 
| 
       608 
2006 
     | 
    
         
             
                      ],
         
     | 
| 
       609 
     | 
    
         
            -
                      "internalType": "struct  
     | 
| 
       610 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 2007 
     | 
    
         
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         
     | 
| 
      
 2008 
     | 
    
         
            +
                      "name": "policy",
         
     | 
| 
       611 
2009 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       612 
2010 
     | 
    
         
             
                    },
         
     | 
| 
       613 
2011 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -616,7 +2014,7 @@ 
     | 
|
| 
       616 
2014 
     | 
    
         
             
                      "type": "uint8"
         
     | 
| 
       617 
2015 
     | 
    
         
             
                    }
         
     | 
| 
       618 
2016 
     | 
    
         
             
                  ],
         
     | 
| 
       619 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 2017 
     | 
    
         
            +
                  "name": "updatePolicy",
         
     | 
| 
       620 
2018 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       621 
2019 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       622 
2020 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -625,7 +2023,7 @@ 
     | 
|
| 
       625 
2023 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       626 
2024 
     | 
    
         
             
                    {
         
     | 
| 
       627 
2025 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       628 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 2026 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
       629 
2027 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       630 
2028 
     | 
    
         
             
                    },
         
     | 
| 
       631 
2029 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -634,7 +2032,7 @@ 
     | 
|
| 
       634 
2032 
     | 
    
         
             
                      "type": "uint8"
         
     | 
| 
       635 
2033 
     | 
    
         
             
                    }
         
     | 
| 
       636 
2034 
     | 
    
         
             
                  ],
         
     | 
| 
       637 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 2035 
     | 
    
         
            +
                  "name": "updatePolicyState",
         
     | 
| 
       638 
2036 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       639 
2037 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       640 
2038 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -658,11 +2056,36 @@ 
     | 
|
| 
       658 
2056 
     | 
    
         
             
                          "name": "tokenHandler",
         
     | 
| 
       659 
2057 
     | 
    
         
             
                          "type": "address"
         
     | 
| 
       660 
2058 
     | 
    
         
             
                        },
         
     | 
| 
      
 2059 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2060 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 2061 
     | 
    
         
            +
                          "name": "maxCapitalAmount",
         
     | 
| 
      
 2062 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 2063 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2064 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2065 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 2066 
     | 
    
         
            +
                          "name": "isInterceptingBundleTransfers",
         
     | 
| 
      
 2067 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 2068 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2069 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2070 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 2071 
     | 
    
         
            +
                          "name": "isExternallyManaged",
         
     | 
| 
      
 2072 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 2073 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2074 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2075 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 2076 
     | 
    
         
            +
                          "name": "isVerifyingApplications",
         
     | 
| 
      
 2077 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 2078 
     | 
    
         
            +
                        },
         
     | 
| 
       661 
2079 
     | 
    
         
             
                        {
         
     | 
| 
       662 
2080 
     | 
    
         
             
                          "internalType": "UFixed",
         
     | 
| 
       663 
2081 
     | 
    
         
             
                          "name": "collateralizationLevel",
         
     | 
| 
       664 
2082 
     | 
    
         
             
                          "type": "uint256"
         
     | 
| 
       665 
2083 
     | 
    
         
             
                        },
         
     | 
| 
      
 2084 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2085 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 2086 
     | 
    
         
            +
                          "name": "retentionLevel",
         
     | 
| 
      
 2087 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 2088 
     | 
    
         
            +
                        },
         
     | 
| 
       666 
2089 
     | 
    
         
             
                        {
         
     | 
| 
       667 
2090 
     | 
    
         
             
                          "components": [
         
     | 
| 
       668 
2091 
     | 
    
         
             
                            {
         
     | 
| 
         @@ -714,11 +2137,6 @@ 
     | 
|
| 
       714 
2137 
     | 
    
         
             
                          "name": "performanceFee",
         
     | 
| 
       715 
2138 
     | 
    
         
             
                          "type": "tuple"
         
     | 
| 
       716 
2139 
     | 
    
         
             
                        },
         
     | 
| 
       717 
     | 
    
         
            -
                        {
         
     | 
| 
       718 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       719 
     | 
    
         
            -
                          "name": "isIntercepting",
         
     | 
| 
       720 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       721 
     | 
    
         
            -
                        },
         
     | 
| 
       722 
2140 
     | 
    
         
             
                        {
         
     | 
| 
       723 
2141 
     | 
    
         
             
                          "internalType": "address",
         
     | 
| 
       724 
2142 
     | 
    
         
             
                          "name": "wallet",
         
     | 
| 
         @@ -787,23 +2205,6 @@ 
     | 
|
| 
       787 
2205 
     | 
    
         
             
                          "name": "poolNftId",
         
     | 
| 
       788 
2206 
     | 
    
         
             
                          "type": "uint96"
         
     | 
| 
       789 
2207 
     | 
    
         
             
                        },
         
     | 
| 
       790 
     | 
    
         
            -
                        {
         
     | 
| 
       791 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       792 
     | 
    
         
            -
                            {
         
     | 
| 
       793 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       794 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       795 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       796 
     | 
    
         
            -
                            },
         
     | 
| 
       797 
     | 
    
         
            -
                            {
         
     | 
| 
       798 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       799 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       800 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       801 
     | 
    
         
            -
                            }
         
     | 
| 
       802 
     | 
    
         
            -
                          ],
         
     | 
| 
       803 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       804 
     | 
    
         
            -
                          "name": "distributionFee",
         
     | 
| 
       805 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       806 
     | 
    
         
            -
                        },
         
     | 
| 
       807 
2208 
     | 
    
         
             
                        {
         
     | 
| 
       808 
2209 
     | 
    
         
             
                          "components": [
         
     | 
| 
       809 
2210 
     | 
    
         
             
                            {
         
     | 
| 
         @@ -839,55 +2240,14 @@ 
     | 
|
| 
       839 
2240 
     | 
    
         
             
                          "type": "tuple"
         
     | 
| 
       840 
2241 
     | 
    
         
             
                        },
         
     | 
| 
       841 
2242 
     | 
    
         
             
                        {
         
     | 
| 
       842 
     | 
    
         
            -
                          " 
     | 
| 
       843 
     | 
    
         
            -
             
     | 
| 
       844 
     | 
    
         
            -
             
     | 
| 
       845 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       846 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       847 
     | 
    
         
            -
                            },
         
     | 
| 
       848 
     | 
    
         
            -
                            {
         
     | 
| 
       849 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       850 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       851 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       852 
     | 
    
         
            -
                            }
         
     | 
| 
       853 
     | 
    
         
            -
                          ],
         
     | 
| 
       854 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       855 
     | 
    
         
            -
                          "name": "poolFee",
         
     | 
| 
       856 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       857 
     | 
    
         
            -
                        },
         
     | 
| 
       858 
     | 
    
         
            -
                        {
         
     | 
| 
       859 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       860 
     | 
    
         
            -
                            {
         
     | 
| 
       861 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       862 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       863 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       864 
     | 
    
         
            -
                            },
         
     | 
| 
       865 
     | 
    
         
            -
                            {
         
     | 
| 
       866 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       867 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       868 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       869 
     | 
    
         
            -
                            }
         
     | 
| 
       870 
     | 
    
         
            -
                          ],
         
     | 
| 
       871 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       872 
     | 
    
         
            -
                          "name": "stakingFee",
         
     | 
| 
       873 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 2243 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 2244 
     | 
    
         
            +
                          "name": "isIntercepting",
         
     | 
| 
      
 2245 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
       874 
2246 
     | 
    
         
             
                        },
         
     | 
| 
       875 
2247 
     | 
    
         
             
                        {
         
     | 
| 
       876 
     | 
    
         
            -
                          " 
     | 
| 
       877 
     | 
    
         
            -
             
     | 
| 
       878 
     | 
    
         
            -
             
     | 
| 
       879 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       880 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       881 
     | 
    
         
            -
                            },
         
     | 
| 
       882 
     | 
    
         
            -
                            {
         
     | 
| 
       883 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       884 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       885 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       886 
     | 
    
         
            -
                            }
         
     | 
| 
       887 
     | 
    
         
            -
                          ],
         
     | 
| 
       888 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       889 
     | 
    
         
            -
                          "name": "performanceFee",
         
     | 
| 
       890 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 2248 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 2249 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 2250 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
       891 
2251 
     | 
    
         
             
                        }
         
     | 
| 
       892 
2252 
     | 
    
         
             
                      ],
         
     | 
| 
       893 
2253 
     | 
    
         
             
                      "internalType": "struct ISetup.ProductSetupInfo",
         
     | 
| 
         @@ -922,6 +2282,137 @@ 
     | 
|
| 
       922 
2282 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       923 
2283 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       924 
2284 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
      
 2285 
     | 
    
         
            +
                },
         
     | 
| 
      
 2286 
     | 
    
         
            +
                {
         
     | 
| 
      
 2287 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 2288 
     | 
    
         
            +
                    {
         
     | 
| 
      
 2289 
     | 
    
         
            +
                      "internalType": "Key32",
         
     | 
| 
      
 2290 
     | 
    
         
            +
                      "name": "referralKey",
         
     | 
| 
      
 2291 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 2292 
     | 
    
         
            +
                    },
         
     | 
| 
      
 2293 
     | 
    
         
            +
                    {
         
     | 
| 
      
 2294 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 2295 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2296 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 2297 
     | 
    
         
            +
                          "name": "distributorNftId",
         
     | 
| 
      
 2298 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 2299 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2300 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2301 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 2302 
     | 
    
         
            +
                          "name": "referralCode",
         
     | 
| 
      
 2303 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 2304 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2305 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2306 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 2307 
     | 
    
         
            +
                          "name": "discountPercentage",
         
     | 
| 
      
 2308 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 2309 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2310 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2311 
     | 
    
         
            +
                          "internalType": "uint32",
         
     | 
| 
      
 2312 
     | 
    
         
            +
                          "name": "maxReferrals",
         
     | 
| 
      
 2313 
     | 
    
         
            +
                          "type": "uint32"
         
     | 
| 
      
 2314 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2315 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2316 
     | 
    
         
            +
                          "internalType": "uint32",
         
     | 
| 
      
 2317 
     | 
    
         
            +
                          "name": "usedReferrals",
         
     | 
| 
      
 2318 
     | 
    
         
            +
                          "type": "uint32"
         
     | 
| 
      
 2319 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2320 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2321 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 2322 
     | 
    
         
            +
                          "name": "expiryAt",
         
     | 
| 
      
 2323 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 2324 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2325 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2326 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 2327 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 2328 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 2329 
     | 
    
         
            +
                        }
         
     | 
| 
      
 2330 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 2331 
     | 
    
         
            +
                      "internalType": "struct IDistribution.ReferralInfo",
         
     | 
| 
      
 2332 
     | 
    
         
            +
                      "name": "referralInfo",
         
     | 
| 
      
 2333 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 2334 
     | 
    
         
            +
                    },
         
     | 
| 
      
 2335 
     | 
    
         
            +
                    {
         
     | 
| 
      
 2336 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 2337 
     | 
    
         
            +
                      "name": "newState",
         
     | 
| 
      
 2338 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 2339 
     | 
    
         
            +
                    }
         
     | 
| 
      
 2340 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 2341 
     | 
    
         
            +
                  "name": "updateReferral",
         
     | 
| 
      
 2342 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 2343 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 2344 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 2345 
     | 
    
         
            +
                },
         
     | 
| 
      
 2346 
     | 
    
         
            +
                {
         
     | 
| 
      
 2347 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 2348 
     | 
    
         
            +
                    {
         
     | 
| 
      
 2349 
     | 
    
         
            +
                      "internalType": "Key32",
         
     | 
| 
      
 2350 
     | 
    
         
            +
                      "name": "referralKey",
         
     | 
| 
      
 2351 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 2352 
     | 
    
         
            +
                    },
         
     | 
| 
      
 2353 
     | 
    
         
            +
                    {
         
     | 
| 
      
 2354 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 2355 
     | 
    
         
            +
                      "name": "newState",
         
     | 
| 
      
 2356 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 2357 
     | 
    
         
            +
                    }
         
     | 
| 
      
 2358 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 2359 
     | 
    
         
            +
                  "name": "updateReferralState",
         
     | 
| 
      
 2360 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 2361 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 2362 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 2363 
     | 
    
         
            +
                },
         
     | 
| 
      
 2364 
     | 
    
         
            +
                {
         
     | 
| 
      
 2365 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 2366 
     | 
    
         
            +
                    {
         
     | 
| 
      
 2367 
     | 
    
         
            +
                      "internalType": "RiskId",
         
     | 
| 
      
 2368 
     | 
    
         
            +
                      "name": "riskId",
         
     | 
| 
      
 2369 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 2370 
     | 
    
         
            +
                    },
         
     | 
| 
      
 2371 
     | 
    
         
            +
                    {
         
     | 
| 
      
 2372 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 2373 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2374 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 2375 
     | 
    
         
            +
                          "name": "productNftId",
         
     | 
| 
      
 2376 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 2377 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2378 
     | 
    
         
            +
                        {
         
     | 
| 
      
 2379 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 2380 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 2381 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 2382 
     | 
    
         
            +
                        }
         
     | 
| 
      
 2383 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 2384 
     | 
    
         
            +
                      "internalType": "struct IRisk.RiskInfo",
         
     | 
| 
      
 2385 
     | 
    
         
            +
                      "name": "risk",
         
     | 
| 
      
 2386 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 2387 
     | 
    
         
            +
                    },
         
     | 
| 
      
 2388 
     | 
    
         
            +
                    {
         
     | 
| 
      
 2389 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 2390 
     | 
    
         
            +
                      "name": "newState",
         
     | 
| 
      
 2391 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 2392 
     | 
    
         
            +
                    }
         
     | 
| 
      
 2393 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 2394 
     | 
    
         
            +
                  "name": "updateRisk",
         
     | 
| 
      
 2395 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 2396 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 2397 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 2398 
     | 
    
         
            +
                },
         
     | 
| 
      
 2399 
     | 
    
         
            +
                {
         
     | 
| 
      
 2400 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 2401 
     | 
    
         
            +
                    {
         
     | 
| 
      
 2402 
     | 
    
         
            +
                      "internalType": "RiskId",
         
     | 
| 
      
 2403 
     | 
    
         
            +
                      "name": "riskId",
         
     | 
| 
      
 2404 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 2405 
     | 
    
         
            +
                    },
         
     | 
| 
      
 2406 
     | 
    
         
            +
                    {
         
     | 
| 
      
 2407 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 2408 
     | 
    
         
            +
                      "name": "newState",
         
     | 
| 
      
 2409 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 2410 
     | 
    
         
            +
                    }
         
     | 
| 
      
 2411 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 2412 
     | 
    
         
            +
                  "name": "updateRiskState",
         
     | 
| 
      
 2413 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 2414 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 2415 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
       925 
2416 
     | 
    
         
             
                }
         
     | 
| 
       926 
2417 
     | 
    
         
             
              ],
         
     | 
| 
       927 
2418 
     | 
    
         
             
              "bytecode": "0x",
         
     |