@etherisc/gif-next 0.0.2-e9148e0-933 → 0.0.2-e9a637d-547
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 +65 -2
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/components/Component.sol/Component.json +842 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +941 -230
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → components/IComponent.sol/IComponent.json} +295 -132
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +848 -31
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +864 -49
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +682 -9
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +825 -231
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +638 -190
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +91 -2
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +346 -704
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +342 -168
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +405 -3100
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +609 -178
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +148 -247
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +536 -259
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +335 -98
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2677 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -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} +247 -180
 - 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 +40 -10
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +71 -45
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
 - 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 +1039 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +673 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1231 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +721 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +817 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +641 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1341 -259
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +440 -79
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +622 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +659 -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} +217 -208
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +804 -160
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +606 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +437 -154
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +90 -391
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1092 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +697 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +649 -251
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +305 -92
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +284 -502
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +304 -99
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +261 -131
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +149 -230
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +275 -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 +200 -335
 - 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 +559 -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 +86 -172
 - 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 +191 -163
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
 - 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/TestFee.sol/TestFee.json +2 -2
 - 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 +6 -6
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
 - package/artifacts/contracts/test/TestService.sol/TestService.json +210 -214
 - 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/TestVersion.sol/TestVersion.json +2 -2
 - 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/Amount.sol/AmountLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Amount.sol/AmountLib.json +161 -0
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
 - 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/Fee.sol/FeeLib.json +40 -9
 - 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 +17 -4
 - 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/StateId.sol/StateIdLib.json +2 -2
 - 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/MathLib.json +2 -2
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
 - package/contracts/components/Component.sol +253 -0
 - package/contracts/components/Distribution.sol +200 -79
 - package/contracts/components/IComponent.sol +76 -0
 - package/contracts/components/IDistributionComponent.sol +44 -17
 - package/contracts/components/IPoolComponent.sol +88 -37
 - package/contracts/components/IProductComponent.sol +10 -5
 - package/contracts/components/Pool.sol +221 -160
 - package/contracts/components/Product.sol +128 -119
 - package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
 - package/contracts/instance/BundleManager.sol +127 -0
 - package/contracts/instance/Cloneable.sol +51 -0
 - package/contracts/instance/IInstance.sol +43 -24
 - package/contracts/instance/IInstanceService.sol +59 -5
 - package/contracts/instance/Instance.sol +125 -369
 - package/contracts/instance/InstanceAccessManager.sol +428 -176
 - package/contracts/instance/InstanceReader.sol +21 -34
 - package/contracts/instance/InstanceService.sol +466 -128
 - package/contracts/instance/InstanceServiceManager.sol +6 -9
 - package/contracts/instance/InstanceStore.sol +219 -0
 - package/contracts/instance/ObjectManager.sol +82 -0
 - package/contracts/instance/base/ComponentService.sol +121 -0
 - package/contracts/instance/base/KeyValueStore.sol +13 -5
 - package/contracts/instance/base/Lifecycle.sol +11 -2
 - package/contracts/instance/module/IAccess.sol +36 -20
 - package/contracts/instance/module/IBundle.sol +8 -5
 - package/contracts/instance/module/IComponents.sol +41 -0
 - package/contracts/instance/module/IDistribution.sol +2 -0
 - package/contracts/instance/module/IPolicy.sol +30 -3
 - package/contracts/instance/module/ISetup.sol +9 -20
 - package/contracts/instance/service/ApplicationService.sol +351 -0
 - package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
 - package/contracts/instance/service/BundleService.sol +431 -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 +382 -33
 - package/contracts/instance/service/DistributionServiceManager.sol +7 -10
 - package/contracts/instance/service/IApplicationService.sol +82 -0
 - package/contracts/instance/service/IBundleService.sol +93 -0
 - package/contracts/instance/service/IClaimService.sol +61 -0
 - package/contracts/instance/service/IDistributionService.sol +87 -0
 - package/contracts/instance/service/IPolicyService.sol +72 -0
 - package/contracts/instance/service/IPoolService.sol +79 -17
 - package/contracts/instance/service/IProductService.sol +6 -73
 - package/contracts/instance/service/PolicyService.sol +362 -0
 - package/contracts/instance/service/PolicyServiceManager.sol +54 -0
 - package/contracts/instance/service/PoolService.sol +217 -108
 - package/contracts/instance/service/PoolServiceManager.sol +6 -9
 - package/contracts/instance/service/ProductService.sol +114 -453
 - package/contracts/instance/service/ProductServiceManager.sol +2 -2
 - package/contracts/registry/ChainNft.sol +9 -1
 - package/contracts/registry/IRegistry.sol +41 -19
 - package/contracts/registry/IRegistryService.sol +31 -13
 - package/contracts/registry/ITransferInterceptor.sol +1 -0
 - package/contracts/registry/Registry.sol +245 -222
 - package/contracts/registry/RegistryAccessManager.sol +216 -0
 - package/contracts/registry/RegistryService.sol +97 -173
 - package/contracts/registry/RegistryServiceManager.sol +21 -39
 - package/contracts/registry/ReleaseManager.sol +324 -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 +5 -4
 - 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 +41 -24
 - package/contracts/shared/TokenHandler.sol +11 -5
 - package/contracts/shared/Versionable.sol +4 -92
 - package/contracts/test/TestRegisterable.sol +1 -1
 - package/contracts/test/TestService.sol +4 -3
 - package/contracts/types/Amount.sol +60 -0
 - package/contracts/types/Blocknumber.sol +1 -0
 - package/contracts/types/ClaimId.sol +52 -0
 - package/contracts/types/DistributorType.sol +2 -2
 - package/contracts/types/Fee.sol +13 -5
 - package/contracts/types/NftId.sol +8 -0
 - package/contracts/types/NftIdSet.sol +26 -24
 - package/contracts/types/ObjectType.sol +10 -5
 - package/contracts/types/PayoutId.sol +54 -0
 - package/contracts/types/Referral.sol +4 -0
 - package/contracts/types/RoleId.sol +26 -19
 - package/contracts/types/Seconds.sol +54 -0
 - package/contracts/types/StateId.sol +1 -0
 - package/contracts/types/Timestamp.sol +13 -13
 - package/contracts/types/UFixed.sol +1 -0
 - package/contracts/types/Version.sol +1 -0
 - 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
 
| 
         @@ -6,381 +6,258 @@ 
     | 
|
| 
       6 
6 
     | 
    
         
             
                {
         
     | 
| 
       7 
7 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       8 
8 
     | 
    
         
             
                    {
         
     | 
| 
       9 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       10 
     | 
    
         
            -
                      "name": " 
     | 
| 
       11 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 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"
         
     | 
| 
       12 
23 
     | 
    
         
             
                    },
         
     | 
| 
       13 
24 
     | 
    
         
             
                    {
         
     | 
| 
       14 
     | 
    
         
            -
                      " 
     | 
| 
       15 
     | 
    
         
            -
             
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
                          "name": "poolNftId",
         
     | 
| 
       18 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       19 
     | 
    
         
            -
                        },
         
     | 
| 
       20 
     | 
    
         
            -
                        {
         
     | 
| 
       21 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       22 
     | 
    
         
            -
                            {
         
     | 
| 
       23 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       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"
         
     | 
| 
       36 
     | 
    
         
            -
                        },
         
     | 
| 
       37 
     | 
    
         
            -
                        {
         
     | 
| 
       38 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       39 
     | 
    
         
            -
                          "name": "filter",
         
     | 
| 
       40 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       41 
     | 
    
         
            -
                        },
         
     | 
| 
       42 
     | 
    
         
            -
                        {
         
     | 
| 
       43 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       44 
     | 
    
         
            -
                          "name": "capitalAmount",
         
     | 
| 
       45 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       46 
     | 
    
         
            -
                        },
         
     | 
| 
       47 
     | 
    
         
            -
                        {
         
     | 
| 
       48 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       49 
     | 
    
         
            -
                          "name": "lockedAmount",
         
     | 
| 
       50 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       51 
     | 
    
         
            -
                        },
         
     | 
| 
       52 
     | 
    
         
            -
                        {
         
     | 
| 
       53 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       54 
     | 
    
         
            -
                          "name": "balanceAmount",
         
     | 
| 
       55 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       56 
     | 
    
         
            -
                        },
         
     | 
| 
       57 
     | 
    
         
            -
                        {
         
     | 
| 
       58 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       59 
     | 
    
         
            -
                          "name": "lifetime",
         
     | 
| 
       60 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       61 
     | 
    
         
            -
                        },
         
     | 
| 
       62 
     | 
    
         
            -
                        {
         
     | 
| 
       63 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       64 
     | 
    
         
            -
                          "name": "expiredAt",
         
     | 
| 
       65 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       66 
     | 
    
         
            -
                        },
         
     | 
| 
       67 
     | 
    
         
            -
                        {
         
     | 
| 
       68 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       69 
     | 
    
         
            -
                          "name": "closedAt",
         
     | 
| 
       70 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       71 
     | 
    
         
            -
                        }
         
     | 
| 
       72 
     | 
    
         
            -
                      ],
         
     | 
| 
       73 
     | 
    
         
            -
                      "internalType": "struct IBundle.BundleInfo",
         
     | 
| 
       74 
     | 
    
         
            -
                      "name": "bundle",
         
     | 
| 
       75 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 25 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "name": "delay",
         
     | 
| 
      
 27 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
       76 
28 
     | 
    
         
             
                    }
         
     | 
| 
       77 
29 
     | 
    
         
             
                  ],
         
     | 
| 
       78 
     | 
    
         
            -
                  "name": " 
     | 
| 
       79 
     | 
    
         
            -
                  " 
     | 
| 
       80 
     | 
    
         
            -
             
     | 
| 
       81 
     | 
    
         
            -
             
     | 
| 
      
 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"
         
     | 
| 
       82 
43 
     | 
    
         
             
                },
         
     | 
| 
       83 
44 
     | 
    
         
             
                {
         
     | 
| 
       84 
45 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       85 
46 
     | 
    
         
             
                    {
         
     | 
| 
       86 
47 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       87 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
       88 
49 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    }
         
     | 
| 
      
 51 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 54 
     | 
    
         
            +
                },
         
     | 
| 
      
 55 
     | 
    
         
            +
                {
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 57 
     | 
    
         
            +
                    {
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 60 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 61 
     | 
    
         
            +
                    }
         
     | 
| 
      
 62 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
      
 64 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 65 
     | 
    
         
            +
                },
         
     | 
| 
      
 66 
     | 
    
         
            +
                {
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 68 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
      
 69 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 70 
     | 
    
         
            +
                },
         
     | 
| 
      
 71 
     | 
    
         
            +
                {
         
     | 
| 
      
 72 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 73 
     | 
    
         
            +
                    {
         
     | 
| 
      
 74 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 75 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 76 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 77 
     | 
    
         
            +
                    }
         
     | 
| 
      
 78 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
      
 80 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 81 
     | 
    
         
            +
                },
         
     | 
| 
      
 82 
     | 
    
         
            +
                {
         
     | 
| 
      
 83 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 84 
     | 
    
         
            +
                    {
         
     | 
| 
      
 85 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 86 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 87 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 88 
     | 
    
         
            +
                    }
         
     | 
| 
      
 89 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 90 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 91 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 92 
     | 
    
         
            +
                },
         
     | 
| 
      
 93 
     | 
    
         
            +
                {
         
     | 
| 
      
 94 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 95 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 96 
     | 
    
         
            +
                    {
         
     | 
| 
      
 97 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 98 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 99 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 100 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 101 
     | 
    
         
            +
                    }
         
     | 
| 
      
 102 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 103 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 104 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 105 
     | 
    
         
            +
                },
         
     | 
| 
      
 106 
     | 
    
         
            +
                {
         
     | 
| 
      
 107 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 108 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 109 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 110 
     | 
    
         
            +
                    {
         
     | 
| 
      
 111 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 112 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 113 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 114 
     | 
    
         
            +
                    }
         
     | 
| 
      
 115 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 116 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 117 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 118 
     | 
    
         
            +
                },
         
     | 
| 
      
 119 
     | 
    
         
            +
                {
         
     | 
| 
      
 120 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 121 
     | 
    
         
            +
                    {
         
     | 
| 
      
 122 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 123 
     | 
    
         
            +
                      "name": "roleName",
         
     | 
| 
      
 124 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
       89 
125 
     | 
    
         
             
                    },
         
     | 
| 
       90 
126 
     | 
    
         
             
                    {
         
     | 
| 
       91 
     | 
    
         
            -
                      " 
     | 
| 
       92 
     | 
    
         
            -
             
     | 
| 
       93 
     | 
    
         
            -
             
     | 
| 
       94 
     | 
    
         
            -
             
     | 
| 
       95 
     | 
    
         
            -
             
     | 
| 
       96 
     | 
    
         
            -
             
     | 
| 
       97 
     | 
    
         
            -
             
     | 
| 
       98 
     | 
    
         
            -
             
     | 
| 
       99 
     | 
    
         
            -
             
     | 
| 
       100 
     | 
    
         
            -
             
     | 
| 
       101 
     | 
    
         
            -
             
     | 
| 
       102 
     | 
    
         
            -
             
     | 
| 
       103 
     | 
    
         
            -
             
     | 
| 
       104 
     | 
    
         
            -
             
     | 
| 
       105 
     | 
    
         
            -
             
     | 
| 
       106 
     | 
    
         
            -
             
     | 
| 
       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"
         
     | 
| 
      
 127 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 128 
     | 
    
         
            +
                      "name": "adminName",
         
     | 
| 
      
 129 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 130 
     | 
    
         
            +
                    }
         
     | 
| 
      
 131 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 132 
     | 
    
         
            +
                  "name": "createRole",
         
     | 
| 
      
 133 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 134 
     | 
    
         
            +
                    {
         
     | 
| 
      
 135 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 136 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 137 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 138 
     | 
    
         
            +
                    },
         
     | 
| 
      
 139 
     | 
    
         
            +
                    {
         
     | 
| 
      
 140 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 141 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 142 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       133 
143 
     | 
    
         
             
                    }
         
     | 
| 
       134 
144 
     | 
    
         
             
                  ],
         
     | 
| 
       135 
     | 
    
         
            -
                  "name": "createDistributionSetup",
         
     | 
| 
       136 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       137 
145 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       138 
146 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       139 
147 
     | 
    
         
             
                },
         
     | 
| 
       140 
148 
     | 
    
         
             
                {
         
     | 
| 
       141 
149 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       142 
150 
     | 
    
         
             
                    {
         
     | 
| 
       143 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       144 
     | 
    
         
            -
                      "name": " 
     | 
| 
       145 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 151 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 152 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 153 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       146 
154 
     | 
    
         
             
                    },
         
     | 
| 
       147 
155 
     | 
    
         
             
                    {
         
     | 
| 
       148 
     | 
    
         
            -
                      " 
     | 
| 
       149 
     | 
    
         
            -
             
     | 
| 
       150 
     | 
    
         
            -
             
     | 
| 
       151 
     | 
    
         
            -
                          "name": "productNftId",
         
     | 
| 
       152 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       153 
     | 
    
         
            -
                        },
         
     | 
| 
       154 
     | 
    
         
            -
                        {
         
     | 
| 
       155 
     | 
    
         
            -
                          "internalType": "contract TokenHandler",
         
     | 
| 
       156 
     | 
    
         
            -
                          "name": "tokenHandler",
         
     | 
| 
       157 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       158 
     | 
    
         
            -
                        },
         
     | 
| 
       159 
     | 
    
         
            -
                        {
         
     | 
| 
       160 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       161 
     | 
    
         
            -
                          "name": "collateralizationLevel",
         
     | 
| 
       162 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       163 
     | 
    
         
            -
                        },
         
     | 
| 
       164 
     | 
    
         
            -
                        {
         
     | 
| 
       165 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       166 
     | 
    
         
            -
                            {
         
     | 
| 
       167 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       168 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       169 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       170 
     | 
    
         
            -
                            },
         
     | 
| 
       171 
     | 
    
         
            -
                            {
         
     | 
| 
       172 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       173 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       174 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       175 
     | 
    
         
            -
                            }
         
     | 
| 
       176 
     | 
    
         
            -
                          ],
         
     | 
| 
       177 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       178 
     | 
    
         
            -
                          "name": "poolFee",
         
     | 
| 
       179 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       180 
     | 
    
         
            -
                        },
         
     | 
| 
       181 
     | 
    
         
            -
                        {
         
     | 
| 
       182 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       183 
     | 
    
         
            -
                            {
         
     | 
| 
       184 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       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"
         
     | 
| 
       197 
     | 
    
         
            -
                        },
         
     | 
| 
       198 
     | 
    
         
            -
                        {
         
     | 
| 
       199 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       200 
     | 
    
         
            -
                            {
         
     | 
| 
       201 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       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"
         
     | 
| 
       214 
     | 
    
         
            -
                        },
         
     | 
| 
       215 
     | 
    
         
            -
                        {
         
     | 
| 
       216 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       217 
     | 
    
         
            -
                          "name": "isIntercepting",
         
     | 
| 
       218 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       219 
     | 
    
         
            -
                        },
         
     | 
| 
       220 
     | 
    
         
            -
                        {
         
     | 
| 
       221 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       222 
     | 
    
         
            -
                          "name": "wallet",
         
     | 
| 
       223 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       224 
     | 
    
         
            -
                        }
         
     | 
| 
       225 
     | 
    
         
            -
                      ],
         
     | 
| 
       226 
     | 
    
         
            -
                      "internalType": "struct ISetup.PoolSetupInfo",
         
     | 
| 
       227 
     | 
    
         
            -
                      "name": "setup",
         
     | 
| 
       228 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 156 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 157 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 158 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
       229 
159 
     | 
    
         
             
                    }
         
     | 
| 
       230 
160 
     | 
    
         
             
                  ],
         
     | 
| 
       231 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 161 
     | 
    
         
            +
                  "name": "createTarget",
         
     | 
| 
       232 
162 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       233 
163 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       234 
164 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       235 
165 
     | 
    
         
             
                },
         
     | 
| 
       236 
166 
     | 
    
         
             
                {
         
     | 
| 
       237 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
      
 167 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 168 
     | 
    
         
            +
                  "name": "getBundleManager",
         
     | 
| 
      
 169 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       238 
170 
     | 
    
         
             
                    {
         
     | 
| 
       239 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       240 
     | 
    
         
            -
                      "name": " 
     | 
| 
       241 
     | 
    
         
            -
                      "type": " 
     | 
| 
       242 
     | 
    
         
            -
                    } 
     | 
| 
      
 171 
     | 
    
         
            +
                      "internalType": "contract BundleManager",
         
     | 
| 
      
 172 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 173 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 174 
     | 
    
         
            +
                    }
         
     | 
| 
      
 175 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 176 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 177 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 178 
     | 
    
         
            +
                },
         
     | 
| 
      
 179 
     | 
    
         
            +
                {
         
     | 
| 
      
 180 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 181 
     | 
    
         
            +
                  "name": "getBundleService",
         
     | 
| 
      
 182 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 183 
     | 
    
         
            +
                    {
         
     | 
| 
      
 184 
     | 
    
         
            +
                      "internalType": "contract IBundleService",
         
     | 
| 
      
 185 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 186 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 187 
     | 
    
         
            +
                    }
         
     | 
| 
      
 188 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 189 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 190 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 191 
     | 
    
         
            +
                },
         
     | 
| 
      
 192 
     | 
    
         
            +
                {
         
     | 
| 
      
 193 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 194 
     | 
    
         
            +
                  "name": "getDistributionService",
         
     | 
| 
      
 195 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 196 
     | 
    
         
            +
                    {
         
     | 
| 
      
 197 
     | 
    
         
            +
                      "internalType": "contract IDistributionService",
         
     | 
| 
      
 198 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 199 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 200 
     | 
    
         
            +
                    }
         
     | 
| 
      
 201 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 202 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 203 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 204 
     | 
    
         
            +
                },
         
     | 
| 
      
 205 
     | 
    
         
            +
                {
         
     | 
| 
      
 206 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 207 
     | 
    
         
            +
                  "name": "getInitialInfo",
         
     | 
| 
      
 208 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       243 
209 
     | 
    
         
             
                    {
         
     | 
| 
       244 
210 
     | 
    
         
             
                      "components": [
         
     | 
| 
       245 
     | 
    
         
            -
                        {
         
     | 
| 
       246 
     | 
    
         
            -
                          "internalType": "contract IERC20Metadata",
         
     | 
| 
       247 
     | 
    
         
            -
                          "name": "token",
         
     | 
| 
       248 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       249 
     | 
    
         
            -
                        },
         
     | 
| 
       250 
     | 
    
         
            -
                        {
         
     | 
| 
       251 
     | 
    
         
            -
                          "internalType": "contract TokenHandler",
         
     | 
| 
       252 
     | 
    
         
            -
                          "name": "tokenHandler",
         
     | 
| 
       253 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       254 
     | 
    
         
            -
                        },
         
     | 
| 
       255 
211 
     | 
    
         
             
                        {
         
     | 
| 
       256 
212 
     | 
    
         
             
                          "internalType": "NftId",
         
     | 
| 
       257 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 213 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
       258 
214 
     | 
    
         
             
                          "type": "uint96"
         
     | 
| 
       259 
215 
     | 
    
         
             
                        },
         
     | 
| 
       260 
216 
     | 
    
         
             
                        {
         
     | 
| 
       261 
217 
     | 
    
         
             
                          "internalType": "NftId",
         
     | 
| 
       262 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 218 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
       263 
219 
     | 
    
         
             
                          "type": "uint96"
         
     | 
| 
       264 
220 
     | 
    
         
             
                        },
         
     | 
| 
       265 
221 
     | 
    
         
             
                        {
         
     | 
| 
       266 
     | 
    
         
            -
                          " 
     | 
| 
       267 
     | 
    
         
            -
             
     | 
| 
       268 
     | 
    
         
            -
             
     | 
| 
       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"
         
     | 
| 
       281 
     | 
    
         
            -
                        },
         
     | 
| 
       282 
     | 
    
         
            -
                        {
         
     | 
| 
       283 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       284 
     | 
    
         
            -
                            {
         
     | 
| 
       285 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       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"
         
     | 
| 
      
 222 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 223 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 224 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
       298 
225 
     | 
    
         
             
                        },
         
     | 
| 
       299 
226 
     | 
    
         
             
                        {
         
     | 
| 
       300 
     | 
    
         
            -
                          " 
     | 
| 
       301 
     | 
    
         
            -
             
     | 
| 
       302 
     | 
    
         
            -
             
     | 
| 
       303 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       304 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       305 
     | 
    
         
            -
                            },
         
     | 
| 
       306 
     | 
    
         
            -
                            {
         
     | 
| 
       307 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       308 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       309 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       310 
     | 
    
         
            -
                            }
         
     | 
| 
       311 
     | 
    
         
            -
                          ],
         
     | 
| 
       312 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       313 
     | 
    
         
            -
                          "name": "processingFee",
         
     | 
| 
       314 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 227 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 228 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 229 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
       315 
230 
     | 
    
         
             
                        },
         
     | 
| 
       316 
231 
     | 
    
         
             
                        {
         
     | 
| 
       317 
     | 
    
         
            -
                          " 
     | 
| 
       318 
     | 
    
         
            -
             
     | 
| 
       319 
     | 
    
         
            -
             
     | 
| 
       320 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       321 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       322 
     | 
    
         
            -
                            },
         
     | 
| 
       323 
     | 
    
         
            -
                            {
         
     | 
| 
       324 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       325 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       326 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       327 
     | 
    
         
            -
                            }
         
     | 
| 
       328 
     | 
    
         
            -
                          ],
         
     | 
| 
       329 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       330 
     | 
    
         
            -
                          "name": "poolFee",
         
     | 
| 
       331 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 232 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 233 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 234 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
       332 
235 
     | 
    
         
             
                        },
         
     | 
| 
       333 
236 
     | 
    
         
             
                        {
         
     | 
| 
       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"
         
     | 
| 
      
 237 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 238 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 239 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
       349 
240 
     | 
    
         
             
                        },
         
     | 
| 
       350 
241 
     | 
    
         
             
                        {
         
     | 
| 
       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"
         
     | 
| 
      
 242 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 243 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 244 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
       366 
245 
     | 
    
         
             
                        }
         
     | 
| 
       367 
246 
     | 
    
         
             
                      ],
         
     | 
| 
       368 
     | 
    
         
            -
                      "internalType": "struct  
     | 
| 
       369 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 247 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 248 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       370 
249 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       371 
250 
     | 
    
         
             
                    }
         
     | 
| 
       372 
251 
     | 
    
         
             
                  ],
         
     | 
| 
       373 
     | 
    
         
            -
                  " 
     | 
| 
       374 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       375 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 252 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       376 
253 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       377 
254 
     | 
    
         
             
                },
         
     | 
| 
       378 
255 
     | 
    
         
             
                {
         
     | 
| 
       379 
256 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       380 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 257 
     | 
    
         
            +
                  "name": "getInstanceAccessManager",
         
     | 
| 
       381 
258 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       382 
259 
     | 
    
         
             
                    {
         
     | 
| 
       383 
     | 
    
         
            -
                      "internalType": "contract  
     | 
| 
      
 260 
     | 
    
         
            +
                      "internalType": "contract InstanceAccessManager",
         
     | 
| 
       384 
261 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       385 
262 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       386 
263 
     | 
    
         
             
                    }
         
     | 
| 
         @@ -390,10 +267,10 @@ 
     | 
|
| 
       390 
267 
     | 
    
         
             
                },
         
     | 
| 
       391 
268 
     | 
    
         
             
                {
         
     | 
| 
       392 
269 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       393 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 270 
     | 
    
         
            +
                  "name": "getInstanceReader",
         
     | 
| 
       394 
271 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       395 
272 
     | 
    
         
             
                    {
         
     | 
| 
       396 
     | 
    
         
            -
                      "internalType": "contract  
     | 
| 
      
 273 
     | 
    
         
            +
                      "internalType": "contract InstanceReader",
         
     | 
| 
       397 
274 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       398 
275 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       399 
276 
     | 
    
         
             
                    }
         
     | 
| 
         @@ -403,10 +280,62 @@ 
     | 
|
| 
       403 
280 
     | 
    
         
             
                },
         
     | 
| 
       404 
281 
     | 
    
         
             
                {
         
     | 
| 
       405 
282 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       406 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 283 
     | 
    
         
            +
                  "name": "getInstanceStore",
         
     | 
| 
       407 
284 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       408 
285 
     | 
    
         
             
                    {
         
     | 
| 
       409 
     | 
    
         
            -
                      "internalType": "contract  
     | 
| 
      
 286 
     | 
    
         
            +
                      "internalType": "contract InstanceStore",
         
     | 
| 
      
 287 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 288 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 289 
     | 
    
         
            +
                    }
         
     | 
| 
      
 290 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 291 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 292 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 293 
     | 
    
         
            +
                },
         
     | 
| 
      
 294 
     | 
    
         
            +
                {
         
     | 
| 
      
 295 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 296 
     | 
    
         
            +
                  "name": "getMajorVersion",
         
     | 
| 
      
 297 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 298 
     | 
    
         
            +
                    {
         
     | 
| 
      
 299 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 300 
     | 
    
         
            +
                      "name": "majorVersion",
         
     | 
| 
      
 301 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 302 
     | 
    
         
            +
                    }
         
     | 
| 
      
 303 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 304 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 305 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 306 
     | 
    
         
            +
                },
         
     | 
| 
      
 307 
     | 
    
         
            +
                {
         
     | 
| 
      
 308 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 309 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 310 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 311 
     | 
    
         
            +
                    {
         
     | 
| 
      
 312 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 313 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 314 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 315 
     | 
    
         
            +
                    }
         
     | 
| 
      
 316 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 317 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 318 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 319 
     | 
    
         
            +
                },
         
     | 
| 
      
 320 
     | 
    
         
            +
                {
         
     | 
| 
      
 321 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 322 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 323 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 324 
     | 
    
         
            +
                    {
         
     | 
| 
      
 325 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 326 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 327 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 328 
     | 
    
         
            +
                    }
         
     | 
| 
      
 329 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 330 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 331 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 332 
     | 
    
         
            +
                },
         
     | 
| 
      
 333 
     | 
    
         
            +
                {
         
     | 
| 
      
 334 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 335 
     | 
    
         
            +
                  "name": "getPolicyService",
         
     | 
| 
      
 336 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 337 
     | 
    
         
            +
                    {
         
     | 
| 
      
 338 
     | 
    
         
            +
                      "internalType": "contract IPolicyService",
         
     | 
| 
       410 
339 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       411 
340 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       412 
341 
     | 
    
         
             
                    }
         
     | 
| 
         @@ -441,19 +370,26 @@ 
     | 
|
| 
       441 
370 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       442 
371 
     | 
    
         
             
                },
         
     | 
| 
       443 
372 
     | 
    
         
             
                {
         
     | 
| 
       444 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
      
 373 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 374 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 375 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       445 
376 
     | 
    
         
             
                    {
         
     | 
| 
       446 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       447 
     | 
    
         
            -
                      "name": " 
     | 
| 
       448 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 377 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 378 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 379 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       449 
380 
     | 
    
         
             
                    }
         
     | 
| 
       450 
381 
     | 
    
         
             
                  ],
         
     | 
| 
       451 
     | 
    
         
            -
                  " 
     | 
| 
      
 382 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 383 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 384 
     | 
    
         
            +
                },
         
     | 
| 
      
 385 
     | 
    
         
            +
                {
         
     | 
| 
      
 386 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 387 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
       452 
388 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       453 
389 
     | 
    
         
             
                    {
         
     | 
| 
       454 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 390 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
       455 
391 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       456 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 392 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       457 
393 
     | 
    
         
             
                    }
         
     | 
| 
       458 
394 
     | 
    
         
             
                  ],
         
     | 
| 
       459 
395 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -462,81 +398,37 @@ 
     | 
|
| 
       462 
398 
     | 
    
         
             
                {
         
     | 
| 
       463 
399 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       464 
400 
     | 
    
         
             
                    {
         
     | 
| 
       465 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       466 
     | 
    
         
            -
                      "name": " 
     | 
| 
       467 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 401 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 402 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 403 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       468 
404 
     | 
    
         
             
                    },
         
     | 
| 
       469 
405 
     | 
    
         
             
                    {
         
     | 
| 
       470 
     | 
    
         
            -
                      " 
     | 
| 
       471 
     | 
    
         
            -
             
     | 
| 
       472 
     | 
    
         
            -
             
     | 
| 
       473 
     | 
    
         
            -
             
     | 
| 
       474 
     | 
    
         
            -
             
     | 
| 
       475 
     | 
    
         
            -
             
     | 
| 
       476 
     | 
    
         
            -
             
     | 
| 
       477 
     | 
    
         
            -
             
     | 
| 
       478 
     | 
    
         
            -
             
     | 
| 
       479 
     | 
    
         
            -
             
     | 
| 
       480 
     | 
    
         
            -
             
     | 
| 
       481 
     | 
    
         
            -
             
     | 
| 
       482 
     | 
    
         
            -
             
     | 
| 
       483 
     | 
    
         
            -
             
     | 
| 
       484 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       485 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       486 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       487 
     | 
    
         
            -
                            }
         
     | 
| 
       488 
     | 
    
         
            -
                          ],
         
     | 
| 
       489 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       490 
     | 
    
         
            -
                          "name": "fee",
         
     | 
| 
       491 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       492 
     | 
    
         
            -
                        },
         
     | 
| 
       493 
     | 
    
         
            -
                        {
         
     | 
| 
       494 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       495 
     | 
    
         
            -
                          "name": "filter",
         
     | 
| 
       496 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       497 
     | 
    
         
            -
                        },
         
     | 
| 
       498 
     | 
    
         
            -
                        {
         
     | 
| 
       499 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       500 
     | 
    
         
            -
                          "name": "capitalAmount",
         
     | 
| 
       501 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       502 
     | 
    
         
            -
                        },
         
     | 
| 
       503 
     | 
    
         
            -
                        {
         
     | 
| 
       504 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       505 
     | 
    
         
            -
                          "name": "lockedAmount",
         
     | 
| 
       506 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       507 
     | 
    
         
            -
                        },
         
     | 
| 
       508 
     | 
    
         
            -
                        {
         
     | 
| 
       509 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       510 
     | 
    
         
            -
                          "name": "balanceAmount",
         
     | 
| 
       511 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       512 
     | 
    
         
            -
                        },
         
     | 
| 
       513 
     | 
    
         
            -
                        {
         
     | 
| 
       514 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       515 
     | 
    
         
            -
                          "name": "lifetime",
         
     | 
| 
       516 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       517 
     | 
    
         
            -
                        },
         
     | 
| 
       518 
     | 
    
         
            -
                        {
         
     | 
| 
       519 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       520 
     | 
    
         
            -
                          "name": "expiredAt",
         
     | 
| 
       521 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       522 
     | 
    
         
            -
                        },
         
     | 
| 
       523 
     | 
    
         
            -
                        {
         
     | 
| 
       524 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       525 
     | 
    
         
            -
                          "name": "closedAt",
         
     | 
| 
       526 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       527 
     | 
    
         
            -
                        }
         
     | 
| 
       528 
     | 
    
         
            -
                      ],
         
     | 
| 
       529 
     | 
    
         
            -
                      "internalType": "struct IBundle.BundleInfo",
         
     | 
| 
       530 
     | 
    
         
            -
                      "name": "bundle",
         
     | 
| 
       531 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       532 
     | 
    
         
            -
                    },
         
     | 
| 
      
 406 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 407 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 408 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 409 
     | 
    
         
            +
                    }
         
     | 
| 
      
 410 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 411 
     | 
    
         
            +
                  "name": "grantRole",
         
     | 
| 
      
 412 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 413 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 414 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 415 
     | 
    
         
            +
                },
         
     | 
| 
      
 416 
     | 
    
         
            +
                {
         
     | 
| 
      
 417 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 418 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 419 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       533 
420 
     | 
    
         
             
                    {
         
     | 
| 
       534 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       535 
     | 
    
         
            -
                      "name": " 
     | 
| 
       536 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 421 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 422 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 423 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
       537 
424 
     | 
    
         
             
                    }
         
     | 
| 
       538 
425 
     | 
    
         
             
                  ],
         
     | 
| 
       539 
     | 
    
         
            -
                  " 
     | 
| 
      
 426 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 427 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 428 
     | 
    
         
            +
                },
         
     | 
| 
      
 429 
     | 
    
         
            +
                {
         
     | 
| 
      
 430 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 431 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
       540 
432 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       541 
433 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       542 
434 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -544,17 +436,17 @@ 
     | 
|
| 
       544 
436 
     | 
    
         
             
                {
         
     | 
| 
       545 
437 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       546 
438 
     | 
    
         
             
                    {
         
     | 
| 
       547 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       548 
     | 
    
         
            -
                      "name": " 
     | 
| 
       549 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 439 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 440 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 441 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       550 
442 
     | 
    
         
             
                    },
         
     | 
| 
       551 
443 
     | 
    
         
             
                    {
         
     | 
| 
       552 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       553 
     | 
    
         
            -
                      "name": " 
     | 
| 
       554 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 444 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 445 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 446 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
       555 
447 
     | 
    
         
             
                    }
         
     | 
| 
       556 
448 
     | 
    
         
             
                  ],
         
     | 
| 
       557 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 449 
     | 
    
         
            +
                  "name": "nftMint",
         
     | 
| 
       558 
450 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       559 
451 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       560 
452 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -562,61 +454,22 @@ 
     | 
|
| 
       562 
454 
     | 
    
         
             
                {
         
     | 
| 
       563 
455 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       564 
456 
     | 
    
         
             
                    {
         
     | 
| 
       565 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       566 
     | 
    
         
            -
                      "name": " 
     | 
| 
       567 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 457 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 458 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
      
 459 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       568 
460 
     | 
    
         
             
                    },
         
     | 
| 
       569 
461 
     | 
    
         
             
                    {
         
     | 
| 
       570 
     | 
    
         
            -
                      " 
     | 
| 
       571 
     | 
    
         
            -
             
     | 
| 
       572 
     | 
    
         
            -
             
     | 
| 
       573 
     | 
    
         
            -
                          "name": "productNftId",
         
     | 
| 
       574 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       575 
     | 
    
         
            -
                        },
         
     | 
| 
       576 
     | 
    
         
            -
                        {
         
     | 
| 
       577 
     | 
    
         
            -
                          "internalType": "contract TokenHandler",
         
     | 
| 
       578 
     | 
    
         
            -
                          "name": "tokenHandler",
         
     | 
| 
       579 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       580 
     | 
    
         
            -
                        },
         
     | 
| 
       581 
     | 
    
         
            -
                        {
         
     | 
| 
       582 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       583 
     | 
    
         
            -
                            {
         
     | 
| 
       584 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       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"
         
     | 
| 
       597 
     | 
    
         
            -
                        },
         
     | 
| 
       598 
     | 
    
         
            -
                        {
         
     | 
| 
       599 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       600 
     | 
    
         
            -
                          "name": "isIntercepting",
         
     | 
| 
       601 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       602 
     | 
    
         
            -
                        },
         
     | 
| 
       603 
     | 
    
         
            -
                        {
         
     | 
| 
       604 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       605 
     | 
    
         
            -
                          "name": "wallet",
         
     | 
| 
       606 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       607 
     | 
    
         
            -
                        }
         
     | 
| 
       608 
     | 
    
         
            -
                      ],
         
     | 
| 
       609 
     | 
    
         
            -
                      "internalType": "struct ISetup.DistributionSetupInfo",
         
     | 
| 
       610 
     | 
    
         
            -
                      "name": "setup",
         
     | 
| 
       611 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 462 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 463 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 464 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       612 
465 
     | 
    
         
             
                    },
         
     | 
| 
       613 
466 
     | 
    
         
             
                    {
         
     | 
| 
       614 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       615 
     | 
    
         
            -
                      "name": " 
     | 
| 
       616 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 467 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 468 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 469 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
       617 
470 
     | 
    
         
             
                    }
         
     | 
| 
       618 
471 
     | 
    
         
             
                  ],
         
     | 
| 
       619 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 472 
     | 
    
         
            +
                  "name": "nftTransferFrom",
         
     | 
| 
       620 
473 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       621 
474 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       622 
475 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -624,17 +477,17 @@ 
     | 
|
| 
       624 
477 
     | 
    
         
             
                {
         
     | 
| 
       625 
478 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       626 
479 
     | 
    
         
             
                    {
         
     | 
| 
       627 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       628 
     | 
    
         
            -
                      "name": " 
     | 
| 
       629 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 480 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 481 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 482 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       630 
483 
     | 
    
         
             
                    },
         
     | 
| 
       631 
484 
     | 
    
         
             
                    {
         
     | 
| 
       632 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       633 
     | 
    
         
            -
                      "name": " 
     | 
| 
       634 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 485 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 486 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 487 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       635 
488 
     | 
    
         
             
                    }
         
     | 
| 
       636 
489 
     | 
    
         
             
                  ],
         
     | 
| 
       637 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 490 
     | 
    
         
            +
                  "name": "revokeRole",
         
     | 
| 
       638 
491 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       639 
492 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       640 
493 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -642,100 +495,12 @@ 
     | 
|
| 
       642 
495 
     | 
    
         
             
                {
         
     | 
| 
       643 
496 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       644 
497 
     | 
    
         
             
                    {
         
     | 
| 
       645 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       646 
     | 
    
         
            -
                      "name": " 
     | 
| 
       647 
     | 
    
         
            -
                      "type": " 
     | 
| 
       648 
     | 
    
         
            -
                    },
         
     | 
| 
       649 
     | 
    
         
            -
                    {
         
     | 
| 
       650 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       651 
     | 
    
         
            -
                        {
         
     | 
| 
       652 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       653 
     | 
    
         
            -
                          "name": "productNftId",
         
     | 
| 
       654 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       655 
     | 
    
         
            -
                        },
         
     | 
| 
       656 
     | 
    
         
            -
                        {
         
     | 
| 
       657 
     | 
    
         
            -
                          "internalType": "contract TokenHandler",
         
     | 
| 
       658 
     | 
    
         
            -
                          "name": "tokenHandler",
         
     | 
| 
       659 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       660 
     | 
    
         
            -
                        },
         
     | 
| 
       661 
     | 
    
         
            -
                        {
         
     | 
| 
       662 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       663 
     | 
    
         
            -
                          "name": "collateralizationLevel",
         
     | 
| 
       664 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       665 
     | 
    
         
            -
                        },
         
     | 
| 
       666 
     | 
    
         
            -
                        {
         
     | 
| 
       667 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       668 
     | 
    
         
            -
                            {
         
     | 
| 
       669 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       670 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       671 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       672 
     | 
    
         
            -
                            },
         
     | 
| 
       673 
     | 
    
         
            -
                            {
         
     | 
| 
       674 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       675 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       676 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       677 
     | 
    
         
            -
                            }
         
     | 
| 
       678 
     | 
    
         
            -
                          ],
         
     | 
| 
       679 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       680 
     | 
    
         
            -
                          "name": "poolFee",
         
     | 
| 
       681 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       682 
     | 
    
         
            -
                        },
         
     | 
| 
       683 
     | 
    
         
            -
                        {
         
     | 
| 
       684 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       685 
     | 
    
         
            -
                            {
         
     | 
| 
       686 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       687 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       688 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       689 
     | 
    
         
            -
                            },
         
     | 
| 
       690 
     | 
    
         
            -
                            {
         
     | 
| 
       691 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       692 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       693 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       694 
     | 
    
         
            -
                            }
         
     | 
| 
       695 
     | 
    
         
            -
                          ],
         
     | 
| 
       696 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       697 
     | 
    
         
            -
                          "name": "stakingFee",
         
     | 
| 
       698 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       699 
     | 
    
         
            -
                        },
         
     | 
| 
       700 
     | 
    
         
            -
                        {
         
     | 
| 
       701 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       702 
     | 
    
         
            -
                            {
         
     | 
| 
       703 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       704 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       705 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       706 
     | 
    
         
            -
                            },
         
     | 
| 
       707 
     | 
    
         
            -
                            {
         
     | 
| 
       708 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       709 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       710 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       711 
     | 
    
         
            -
                            }
         
     | 
| 
       712 
     | 
    
         
            -
                          ],
         
     | 
| 
       713 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       714 
     | 
    
         
            -
                          "name": "performanceFee",
         
     | 
| 
       715 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       716 
     | 
    
         
            -
                        },
         
     | 
| 
       717 
     | 
    
         
            -
                        {
         
     | 
| 
       718 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       719 
     | 
    
         
            -
                          "name": "isIntercepting",
         
     | 
| 
       720 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       721 
     | 
    
         
            -
                        },
         
     | 
| 
       722 
     | 
    
         
            -
                        {
         
     | 
| 
       723 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       724 
     | 
    
         
            -
                          "name": "wallet",
         
     | 
| 
       725 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       726 
     | 
    
         
            -
                        }
         
     | 
| 
       727 
     | 
    
         
            -
                      ],
         
     | 
| 
       728 
     | 
    
         
            -
                      "internalType": "struct ISetup.PoolSetupInfo",
         
     | 
| 
       729 
     | 
    
         
            -
                      "name": "setup",
         
     | 
| 
       730 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       731 
     | 
    
         
            -
                    },
         
     | 
| 
       732 
     | 
    
         
            -
                    {
         
     | 
| 
       733 
     | 
    
         
            -
                      "internalType": "StateId",
         
     | 
| 
       734 
     | 
    
         
            -
                      "name": "newState",
         
     | 
| 
       735 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
      
 498 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 499 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 500 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       736 
501 
     | 
    
         
             
                    }
         
     | 
| 
       737 
502 
     | 
    
         
             
                  ],
         
     | 
| 
       738 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 503 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
       739 
504 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       740 
505 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       741 
506 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -743,17 +508,22 @@ 
     | 
|
| 
       743 
508 
     | 
    
         
             
                {
         
     | 
| 
       744 
509 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       745 
510 
     | 
    
         
             
                    {
         
     | 
| 
       746 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       747 
     | 
    
         
            -
                      "name": " 
     | 
| 
       748 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 511 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 512 
     | 
    
         
            +
                      "name": "targetName",
         
     | 
| 
      
 513 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
       749 
514 
     | 
    
         
             
                    },
         
     | 
| 
       750 
515 
     | 
    
         
             
                    {
         
     | 
| 
       751 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       752 
     | 
    
         
            -
                      "name": " 
     | 
| 
       753 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 516 
     | 
    
         
            +
                      "internalType": "bytes4[]",
         
     | 
| 
      
 517 
     | 
    
         
            +
                      "name": "selectors",
         
     | 
| 
      
 518 
     | 
    
         
            +
                      "type": "bytes4[]"
         
     | 
| 
      
 519 
     | 
    
         
            +
                    },
         
     | 
| 
      
 520 
     | 
    
         
            +
                    {
         
     | 
| 
      
 521 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 522 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 523 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       754 
524 
     | 
    
         
             
                    }
         
     | 
| 
       755 
525 
     | 
    
         
             
                  ],
         
     | 
| 
       756 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 526 
     | 
    
         
            +
                  "name": "setTargetFunctionRole",
         
     | 
| 
       757 
527 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       758 
528 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       759 
529 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -761,146 +531,17 @@ 
     | 
|
| 
       761 
531 
     | 
    
         
             
                {
         
     | 
| 
       762 
532 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       763 
533 
     | 
    
         
             
                    {
         
     | 
| 
       764 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       765 
     | 
    
         
            -
                      "name": " 
     | 
| 
       766 
     | 
    
         
            -
                      "type": " 
     | 
| 
       767 
     | 
    
         
            -
                    },
         
     | 
| 
       768 
     | 
    
         
            -
                    {
         
     | 
| 
       769 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       770 
     | 
    
         
            -
                        {
         
     | 
| 
       771 
     | 
    
         
            -
                          "internalType": "contract IERC20Metadata",
         
     | 
| 
       772 
     | 
    
         
            -
                          "name": "token",
         
     | 
| 
       773 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       774 
     | 
    
         
            -
                        },
         
     | 
| 
       775 
     | 
    
         
            -
                        {
         
     | 
| 
       776 
     | 
    
         
            -
                          "internalType": "contract TokenHandler",
         
     | 
| 
       777 
     | 
    
         
            -
                          "name": "tokenHandler",
         
     | 
| 
       778 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       779 
     | 
    
         
            -
                        },
         
     | 
| 
       780 
     | 
    
         
            -
                        {
         
     | 
| 
       781 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       782 
     | 
    
         
            -
                          "name": "distributionNftId",
         
     | 
| 
       783 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       784 
     | 
    
         
            -
                        },
         
     | 
| 
       785 
     | 
    
         
            -
                        {
         
     | 
| 
       786 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       787 
     | 
    
         
            -
                          "name": "poolNftId",
         
     | 
| 
       788 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       789 
     | 
    
         
            -
                        },
         
     | 
| 
       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 
     | 
    
         
            -
                        {
         
     | 
| 
       808 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       809 
     | 
    
         
            -
                            {
         
     | 
| 
       810 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       811 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       812 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       813 
     | 
    
         
            -
                            },
         
     | 
| 
       814 
     | 
    
         
            -
                            {
         
     | 
| 
       815 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       816 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       817 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       818 
     | 
    
         
            -
                            }
         
     | 
| 
       819 
     | 
    
         
            -
                          ],
         
     | 
| 
       820 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       821 
     | 
    
         
            -
                          "name": "productFee",
         
     | 
| 
       822 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       823 
     | 
    
         
            -
                        },
         
     | 
| 
       824 
     | 
    
         
            -
                        {
         
     | 
| 
       825 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       826 
     | 
    
         
            -
                            {
         
     | 
| 
       827 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       828 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       829 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       830 
     | 
    
         
            -
                            },
         
     | 
| 
       831 
     | 
    
         
            -
                            {
         
     | 
| 
       832 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       833 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       834 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       835 
     | 
    
         
            -
                            }
         
     | 
| 
       836 
     | 
    
         
            -
                          ],
         
     | 
| 
       837 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       838 
     | 
    
         
            -
                          "name": "processingFee",
         
     | 
| 
       839 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       840 
     | 
    
         
            -
                        },
         
     | 
| 
       841 
     | 
    
         
            -
                        {
         
     | 
| 
       842 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       843 
     | 
    
         
            -
                            {
         
     | 
| 
       844 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       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"
         
     | 
| 
       874 
     | 
    
         
            -
                        },
         
     | 
| 
       875 
     | 
    
         
            -
                        {
         
     | 
| 
       876 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       877 
     | 
    
         
            -
                            {
         
     | 
| 
       878 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       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"
         
     | 
| 
       891 
     | 
    
         
            -
                        }
         
     | 
| 
       892 
     | 
    
         
            -
                      ],
         
     | 
| 
       893 
     | 
    
         
            -
                      "internalType": "struct ISetup.ProductSetupInfo",
         
     | 
| 
       894 
     | 
    
         
            -
                      "name": "setup",
         
     | 
| 
       895 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 534 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 535 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 536 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       896 
537 
     | 
    
         
             
                    },
         
     | 
| 
       897 
538 
     | 
    
         
             
                    {
         
     | 
| 
       898 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       899 
     | 
    
         
            -
                      "name": " 
     | 
| 
       900 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 539 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 540 
     | 
    
         
            +
                      "name": "locked",
         
     | 
| 
      
 541 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
       901 
542 
     | 
    
         
             
                    }
         
     | 
| 
       902 
543 
     | 
    
         
             
                  ],
         
     | 
| 
       903 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 544 
     | 
    
         
            +
                  "name": "setTargetLocked",
         
     | 
| 
       904 
545 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       905 
546 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       906 
547 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -908,19 +549,20 @@ 
     | 
|
| 
       908 
549 
     | 
    
         
             
                {
         
     | 
| 
       909 
550 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       910 
551 
     | 
    
         
             
                    {
         
     | 
| 
       911 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       912 
     | 
    
         
            -
                      "name": " 
     | 
| 
       913 
     | 
    
         
            -
                      "type": " 
     | 
| 
       914 
     | 
    
         
            -
                    } 
     | 
| 
      
 552 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 553 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 554 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 555 
     | 
    
         
            +
                    }
         
     | 
| 
      
 556 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 557 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 558 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       915 
559 
     | 
    
         
             
                    {
         
     | 
| 
       916 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       917 
     | 
    
         
            -
                      "name": " 
     | 
| 
       918 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 560 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 561 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 562 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
       919 
563 
     | 
    
         
             
                    }
         
     | 
| 
       920 
564 
     | 
    
         
             
                  ],
         
     | 
| 
       921 
     | 
    
         
            -
                  " 
     | 
| 
       922 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       923 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 565 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       924 
566 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       925 
567 
     | 
    
         
             
                }
         
     | 
| 
       926 
568 
     | 
    
         
             
              ],
         
     |