@etherisc/gif-next 0.0.2-e875d61-189 → 0.0.2-e922e07-736
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +314 -27
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/components/Component.sol/Component.json +774 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +1261 -0
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → components/IComponent.sol/IComponent.json} +234 -239
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +811 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +804 -131
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +455 -62
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +1192 -196
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +865 -114
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1556 -1003
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +509 -0
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +2282 -1171
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +984 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1355 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1046 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +693 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +552 -0
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +27 -158
 - 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 +37 -245
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +4 -4
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +254 -0
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IDistribution.sol/IDistribution.json} +2 -2
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
 - package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/ISetup.sol/ISetup.json} +2 -2
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +968 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +665 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1096 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +661 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +754 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1724 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +801 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +556 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +633 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/{base/InstanceBase.sol/InstanceBase.json → service/IClaimService.sol/IClaimService.json} +221 -156
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +1013 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +540 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +136 -165
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +139 -232
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1021 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +689 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +416 -160
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +649 -0
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +401 -297
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +649 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +186 -12
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +466 -34
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +890 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +470 -103
 - 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 +4 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1177 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +670 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
 - 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 +4 -0
 - package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +38 -74
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/{instance/module/component/IComponent.sol/IComponentModule.json → shared/IPolicyHolder.sol/IPolicyHolder.json} +66 -73
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +100 -33
 - 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 +4 -0
 - package/artifacts/contracts/{instance/base/ServiceBase.sol/ServiceBase.json → shared/IService.sol/IService.json} +121 -152
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +16 -125
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +251 -0
 - 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 +4 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +582 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +256 -25
 - 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 +4 -0
 - package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → shared/Service.sol/Service.json} +220 -159
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.json +29 -115
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +4 -4
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +272 -26
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +14 -14
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
 - package/artifacts/contracts/test/TestService.sol/TestService.json +281 -139
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
 - 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 +38 -140
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
 - package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +52 -13
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
 - 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 +4 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +134 -8
 - 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 +38 -7
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/{experiment/types/TypeB.sol/TypeBLib.json → types/UFixed.sol/MathLib.json} +4 -4
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
 - package/contracts/components/Component.sol +221 -0
 - package/contracts/components/Distribution.sol +280 -0
 - package/contracts/components/IComponent.sol +68 -0
 - package/contracts/components/IDistributionComponent.sol +71 -0
 - package/contracts/components/IPoolComponent.sol +136 -42
 - package/contracts/components/IProductComponent.sol +30 -9
 - package/contracts/components/Pool.sol +308 -121
 - package/contracts/components/Product.sol +211 -56
 - package/contracts/instance/BundleManager.sol +125 -0
 - package/contracts/instance/Cloneable.sol +46 -0
 - package/contracts/instance/IInstance.sol +85 -43
 - package/contracts/instance/IInstanceService.sol +59 -0
 - package/contracts/instance/Instance.sol +277 -57
 - package/contracts/instance/InstanceAccessManager.sol +297 -0
 - package/contracts/instance/InstanceReader.sol +293 -0
 - package/contracts/instance/InstanceService.sol +489 -0
 - package/contracts/instance/InstanceServiceManager.sol +54 -0
 - package/contracts/instance/ObjectManager.sol +84 -0
 - package/contracts/instance/base/ComponentService.sol +134 -0
 - package/contracts/instance/base/IKeyValueStore.sol +13 -14
 - package/contracts/instance/base/ILifecycle.sol +3 -3
 - package/contracts/instance/base/KeyValueStore.sol +49 -38
 - package/contracts/instance/base/Lifecycle.sol +11 -3
 - package/contracts/instance/module/IAccess.sol +47 -0
 - package/contracts/instance/module/IBundle.sol +21 -0
 - package/contracts/instance/module/IDistribution.sol +41 -0
 - package/contracts/instance/module/IPolicy.sol +72 -0
 - package/contracts/instance/module/IRisk.sol +11 -0
 - package/contracts/instance/module/ISetup.sol +46 -0
 - package/contracts/instance/module/ITreasury.sol +23 -0
 - package/contracts/instance/service/ApplicationService.sol +349 -0
 - package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
 - package/contracts/instance/service/BundleService.sol +299 -0
 - package/contracts/instance/service/BundleServiceManager.sol +51 -0
 - package/contracts/instance/service/ClaimService.sol +151 -0
 - package/contracts/instance/service/ClaimServiceManager.sol +35 -0
 - package/contracts/instance/service/DistributionService.sol +450 -0
 - package/contracts/instance/service/DistributionServiceManager.sol +51 -0
 - package/contracts/instance/service/IApplicationService.sol +82 -0
 - package/contracts/instance/service/IBundleService.sol +55 -0
 - package/contracts/instance/service/IClaimService.sol +61 -0
 - package/contracts/instance/service/IDistributionService.sol +98 -0
 - package/contracts/instance/service/IPolicyService.sol +72 -0
 - package/contracts/instance/service/IPoolService.sol +8 -18
 - package/contracts/instance/service/IProductService.sol +21 -39
 - package/contracts/instance/service/PolicyService.sol +394 -0
 - package/contracts/instance/service/PolicyServiceManager.sol +54 -0
 - package/contracts/instance/service/PoolService.sol +77 -97
 - package/contracts/instance/service/PoolServiceManager.sol +51 -0
 - package/contracts/instance/service/ProductService.sol +168 -301
 - package/contracts/instance/service/ProductServiceManager.sol +54 -0
 - package/contracts/registry/ChainNft.sol +79 -36
 - package/contracts/registry/IRegistry.sol +66 -24
 - package/contracts/registry/IRegistryService.sol +67 -0
 - package/contracts/registry/ITransferInterceptor.sol +6 -0
 - package/contracts/registry/Registry.sol +366 -283
 - package/contracts/registry/RegistryAccessManager.sol +216 -0
 - package/contracts/registry/RegistryService.sol +283 -0
 - package/contracts/registry/RegistryServiceManager.sol +62 -0
 - package/contracts/registry/ReleaseManager.sol +322 -0
 - package/contracts/registry/TokenRegistry.sol +116 -0
 - package/contracts/shared/ContractDeployerLib.sol +72 -0
 - package/contracts/shared/ERC165.sol +14 -8
 - package/contracts/shared/INftOwnable.sol +23 -0
 - package/contracts/shared/IPolicyHolder.sol +26 -0
 - package/contracts/shared/IRegisterable.sol +10 -19
 - package/contracts/shared/IRegistryLinked.sol +12 -0
 - package/contracts/shared/IService.sol +18 -0
 - package/contracts/shared/IVersionable.sol +38 -37
 - package/contracts/shared/NftOwnable.sol +120 -0
 - package/contracts/shared/PolicyHolder.sol +81 -0
 - package/contracts/shared/ProxyManager.sol +169 -0
 - package/contracts/shared/Registerable.sol +54 -66
 - package/contracts/shared/RegistryLinked.sol +48 -0
 - package/contracts/shared/Service.sol +58 -0
 - package/contracts/shared/TokenHandler.sol +27 -0
 - package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
 - package/contracts/shared/Versionable.sol +38 -68
 - package/contracts/test/TestFee.sol +2 -2
 - package/contracts/test/TestRegisterable.sol +5 -6
 - package/contracts/test/TestRoleId.sol +1 -1
 - package/contracts/test/TestService.sol +7 -14
 - package/contracts/types/ClaimId.sol +52 -0
 - package/contracts/types/DistributorType.sol +55 -0
 - package/contracts/types/Fee.sol +10 -5
 - package/contracts/types/Key32.sol +8 -3
 - package/contracts/types/NftIdSet.sol +26 -24
 - package/contracts/types/NumberId.sol +52 -0
 - package/contracts/types/ObjectType.sol +44 -11
 - package/contracts/types/PayoutId.sol +54 -0
 - package/contracts/types/Referral.sol +89 -0
 - package/contracts/types/RiskId.sol +43 -0
 - package/contracts/types/RoleId.sol +67 -10
 - package/contracts/types/Seconds.sol +54 -0
 - package/contracts/types/StateId.sol +5 -1
 - package/contracts/types/Timestamp.sol +16 -13
 - package/contracts/types/UFixed.sol +128 -12
 - package/contracts/types/Version.sol +13 -1
 - package/package.json +6 -5
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
 - 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/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -81
 - package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
 - package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
 - package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
 - package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -265
 - package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -265
 - package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
 - package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -136
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -273
 - package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -273
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -144
 - package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -144
 - package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
 - package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -531
 - package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
 - package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -531
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +0 -24
 - package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
 - package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
 - package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
 - package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -455
 - package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
 - package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -436
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
 - package/contracts/components/BaseComponent.sol +0 -94
 - package/contracts/components/IBaseComponent.sol +0 -19
 - 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/README.md +0 -112
 - package/contracts/experiment/statemachine/SM.sol +0 -57
 - package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
 - package/contracts/experiment/types/TypeA.sol +0 -47
 - package/contracts/experiment/types/TypeB.sol +0 -29
 - package/contracts/instance/IInstanceLinked.sol +0 -8
 - package/contracts/instance/base/ComponentServiceBase.sol +0 -42
 - package/contracts/instance/base/IInstanceBase.sol +0 -19
 - package/contracts/instance/base/IService.sol +0 -15
 - package/contracts/instance/base/InstanceBase.sol +0 -84
 - package/contracts/instance/base/ModuleBase.sol +0 -46
 - package/contracts/instance/base/ServiceBase.sol +0 -37
 - package/contracts/instance/module/access/Access.sol +0 -149
 - package/contracts/instance/module/access/IAccess.sol +0 -53
 - package/contracts/instance/module/bundle/BundleModule.sol +0 -135
 - package/contracts/instance/module/bundle/IBundle.sol +0 -51
 - package/contracts/instance/module/compensation/CompensationModule.sol +0 -17
 - package/contracts/instance/module/compensation/ICompensation.sol +0 -10
 - package/contracts/instance/module/component/ComponentModule.sol +0 -81
 - package/contracts/instance/module/component/IComponent.sol +0 -29
 - package/contracts/instance/module/policy/IPolicy.sol +0 -59
 - package/contracts/instance/module/policy/PolicyModule.sol +0 -89
 - package/contracts/instance/module/pool/IPoolModule.sol +0 -40
 - package/contracts/instance/module/pool/PoolModule.sol +0 -90
 - package/contracts/instance/module/risk/IRisk.sol +0 -10
 - package/contracts/instance/module/risk/RiskModule.sol +0 -17
 - package/contracts/instance/module/treasury/ITreasury.sol +0 -96
 - package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
 - package/contracts/instance/module/treasury/TreasuryModule.sol +0 -171
 - package/contracts/instance/service/ComponentOwnerService.sol +0 -155
 - package/contracts/instance/service/IComponentOwnerService.sol +0 -22
 - package/contracts/registry/IChainNft.sol +0 -21
 - package/contracts/registry/IRegistryLinked.sol +0 -8
 - package/contracts/shared/IOwnable.sol +0 -6
 - package/contracts/test/TestPool.sol +0 -24
 - package/contracts/test/TestProduct.sol +0 -51
 
| 
         @@ -0,0 +1,1177 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "RegistryService",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/registry/RegistryService.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    }
         
     | 
| 
      
 13 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 14 
     | 
    
         
            +
                  "name": "AccessManagedInvalidAuthority",
         
     | 
| 
      
 15 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 16 
     | 
    
         
            +
                },
         
     | 
| 
      
 17 
     | 
    
         
            +
                {
         
     | 
| 
      
 18 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 19 
     | 
    
         
            +
                    {
         
     | 
| 
      
 20 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 21 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 22 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 23 
     | 
    
         
            +
                    },
         
     | 
| 
      
 24 
     | 
    
         
            +
                    {
         
     | 
| 
      
 25 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "name": "delay",
         
     | 
| 
      
 27 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 28 
     | 
    
         
            +
                    }
         
     | 
| 
      
 29 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "name": "AccessManagedRequiredDelay",
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 32 
     | 
    
         
            +
                },
         
     | 
| 
      
 33 
     | 
    
         
            +
                {
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 35 
     | 
    
         
            +
                    {
         
     | 
| 
      
 36 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 38 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 39 
     | 
    
         
            +
                    }
         
     | 
| 
      
 40 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "AccessManagedUnauthorized",
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 43 
     | 
    
         
            +
                },
         
     | 
| 
      
 44 
     | 
    
         
            +
                {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 46 
     | 
    
         
            +
                    {
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    }
         
     | 
| 
      
 51 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "ErrorIServiceCallerUnknown",
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 54 
     | 
    
         
            +
                },
         
     | 
| 
      
 55 
     | 
    
         
            +
                {
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 57 
     | 
    
         
            +
                    {
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 60 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 61 
     | 
    
         
            +
                    }
         
     | 
| 
      
 62 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
      
 64 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 65 
     | 
    
         
            +
                },
         
     | 
| 
      
 66 
     | 
    
         
            +
                {
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 68 
     | 
    
         
            +
                    {
         
     | 
| 
      
 69 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 70 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 71 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 72 
     | 
    
         
            +
                    }
         
     | 
| 
      
 73 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 74 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
      
 75 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 76 
     | 
    
         
            +
                },
         
     | 
| 
      
 77 
     | 
    
         
            +
                {
         
     | 
| 
      
 78 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
      
 80 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 81 
     | 
    
         
            +
                },
         
     | 
| 
      
 82 
     | 
    
         
            +
                {
         
     | 
| 
      
 83 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 84 
     | 
    
         
            +
                    {
         
     | 
| 
      
 85 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 86 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 87 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 88 
     | 
    
         
            +
                    }
         
     | 
| 
      
 89 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 90 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
      
 91 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 92 
     | 
    
         
            +
                },
         
     | 
| 
      
 93 
     | 
    
         
            +
                {
         
     | 
| 
      
 94 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 95 
     | 
    
         
            +
                    {
         
     | 
| 
      
 96 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 97 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 98 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 99 
     | 
    
         
            +
                    }
         
     | 
| 
      
 100 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 101 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 102 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 103 
     | 
    
         
            +
                },
         
     | 
| 
      
 104 
     | 
    
         
            +
                {
         
     | 
| 
      
 105 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 106 
     | 
    
         
            +
                    {
         
     | 
| 
      
 107 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 108 
     | 
    
         
            +
                      "name": "registerableAddress",
         
     | 
| 
      
 109 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 110 
     | 
    
         
            +
                    }
         
     | 
| 
      
 111 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 112 
     | 
    
         
            +
                  "name": "InvalidAddress",
         
     | 
| 
      
 113 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 114 
     | 
    
         
            +
                },
         
     | 
| 
      
 115 
     | 
    
         
            +
                {
         
     | 
| 
      
 116 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 117 
     | 
    
         
            +
                    {
         
     | 
| 
      
 118 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 119 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 120 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 121 
     | 
    
         
            +
                    }
         
     | 
| 
      
 122 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 123 
     | 
    
         
            +
                  "name": "InvalidInitialOwner",
         
     | 
| 
      
 124 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 125 
     | 
    
         
            +
                },
         
     | 
| 
      
 126 
     | 
    
         
            +
                {
         
     | 
| 
      
 127 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 128 
     | 
    
         
            +
                  "name": "InvalidInitialization",
         
     | 
| 
      
 129 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 130 
     | 
    
         
            +
                },
         
     | 
| 
      
 131 
     | 
    
         
            +
                {
         
     | 
| 
      
 132 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 133 
     | 
    
         
            +
                  "name": "NotDistribution",
         
     | 
| 
      
 134 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 135 
     | 
    
         
            +
                },
         
     | 
| 
      
 136 
     | 
    
         
            +
                {
         
     | 
| 
      
 137 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 138 
     | 
    
         
            +
                  "name": "NotInitializing",
         
     | 
| 
      
 139 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 140 
     | 
    
         
            +
                },
         
     | 
| 
      
 141 
     | 
    
         
            +
                {
         
     | 
| 
      
 142 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 143 
     | 
    
         
            +
                  "name": "NotInstance",
         
     | 
| 
      
 144 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 145 
     | 
    
         
            +
                },
         
     | 
| 
      
 146 
     | 
    
         
            +
                {
         
     | 
| 
      
 147 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 148 
     | 
    
         
            +
                  "name": "NotPool",
         
     | 
| 
      
 149 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 150 
     | 
    
         
            +
                },
         
     | 
| 
      
 151 
     | 
    
         
            +
                {
         
     | 
| 
      
 152 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 153 
     | 
    
         
            +
                  "name": "NotProduct",
         
     | 
| 
      
 154 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 155 
     | 
    
         
            +
                },
         
     | 
| 
      
 156 
     | 
    
         
            +
                {
         
     | 
| 
      
 157 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 158 
     | 
    
         
            +
                    {
         
     | 
| 
      
 159 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 160 
     | 
    
         
            +
                      "name": "expectedOwner",
         
     | 
| 
      
 161 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 162 
     | 
    
         
            +
                    }
         
     | 
| 
      
 163 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 164 
     | 
    
         
            +
                  "name": "NotRegisterableOwner",
         
     | 
| 
      
 165 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 166 
     | 
    
         
            +
                },
         
     | 
| 
      
 167 
     | 
    
         
            +
                {
         
     | 
| 
      
 168 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 169 
     | 
    
         
            +
                  "name": "NotRegistryOwner",
         
     | 
| 
      
 170 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 171 
     | 
    
         
            +
                },
         
     | 
| 
      
 172 
     | 
    
         
            +
                {
         
     | 
| 
      
 173 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 174 
     | 
    
         
            +
                  "name": "NotService",
         
     | 
| 
      
 175 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 176 
     | 
    
         
            +
                },
         
     | 
| 
      
 177 
     | 
    
         
            +
                {
         
     | 
| 
      
 178 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 179 
     | 
    
         
            +
                  "name": "RegisterableOwnerIsRegistered",
         
     | 
| 
      
 180 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 181 
     | 
    
         
            +
                },
         
     | 
| 
      
 182 
     | 
    
         
            +
                {
         
     | 
| 
      
 183 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 184 
     | 
    
         
            +
                  "name": "RegisterableOwnerIsZero",
         
     | 
| 
      
 185 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 186 
     | 
    
         
            +
                },
         
     | 
| 
      
 187 
     | 
    
         
            +
                {
         
     | 
| 
      
 188 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 189 
     | 
    
         
            +
                  "name": "SelfRegistration",
         
     | 
| 
      
 190 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 191 
     | 
    
         
            +
                },
         
     | 
| 
      
 192 
     | 
    
         
            +
                {
         
     | 
| 
      
 193 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 194 
     | 
    
         
            +
                    {
         
     | 
| 
      
 195 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 196 
     | 
    
         
            +
                      "name": "expected",
         
     | 
| 
      
 197 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 198 
     | 
    
         
            +
                    },
         
     | 
| 
      
 199 
     | 
    
         
            +
                    {
         
     | 
| 
      
 200 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 201 
     | 
    
         
            +
                      "name": "found",
         
     | 
| 
      
 202 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 203 
     | 
    
         
            +
                    }
         
     | 
| 
      
 204 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 205 
     | 
    
         
            +
                  "name": "UnexpectedRegisterableType",
         
     | 
| 
      
 206 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 207 
     | 
    
         
            +
                },
         
     | 
| 
      
 208 
     | 
    
         
            +
                {
         
     | 
| 
      
 209 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 210 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 211 
     | 
    
         
            +
                    {
         
     | 
| 
      
 212 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 213 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 214 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 215 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 216 
     | 
    
         
            +
                    }
         
     | 
| 
      
 217 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 218 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 219 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 220 
     | 
    
         
            +
                },
         
     | 
| 
      
 221 
     | 
    
         
            +
                {
         
     | 
| 
      
 222 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 223 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 224 
     | 
    
         
            +
                    {
         
     | 
| 
      
 225 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 226 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 227 
     | 
    
         
            +
                      "name": "version",
         
     | 
| 
      
 228 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 229 
     | 
    
         
            +
                    }
         
     | 
| 
      
 230 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 231 
     | 
    
         
            +
                  "name": "Initialized",
         
     | 
| 
      
 232 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 233 
     | 
    
         
            +
                },
         
     | 
| 
      
 234 
     | 
    
         
            +
                {
         
     | 
| 
      
 235 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 236 
     | 
    
         
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         
     | 
| 
      
 237 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 238 
     | 
    
         
            +
                    {
         
     | 
| 
      
 239 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 240 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 241 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 242 
     | 
    
         
            +
                    }
         
     | 
| 
      
 243 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 244 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 245 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 246 
     | 
    
         
            +
                },
         
     | 
| 
      
 247 
     | 
    
         
            +
                {
         
     | 
| 
      
 248 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 249 
     | 
    
         
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         
     | 
| 
      
 250 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 251 
     | 
    
         
            +
                    {
         
     | 
| 
      
 252 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 253 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 254 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 255 
     | 
    
         
            +
                    }
         
     | 
| 
      
 256 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 257 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 258 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 259 
     | 
    
         
            +
                },
         
     | 
| 
      
 260 
     | 
    
         
            +
                {
         
     | 
| 
      
 261 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 262 
     | 
    
         
            +
                  "name": "REGISTRY_CREATION_CODE_HASH",
         
     | 
| 
      
 263 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 264 
     | 
    
         
            +
                    {
         
     | 
| 
      
 265 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 266 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 267 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 268 
     | 
    
         
            +
                    }
         
     | 
| 
      
 269 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 270 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 271 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 272 
     | 
    
         
            +
                },
         
     | 
| 
      
 273 
     | 
    
         
            +
                {
         
     | 
| 
      
 274 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 275 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 276 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 277 
     | 
    
         
            +
                    {
         
     | 
| 
      
 278 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 279 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 280 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 281 
     | 
    
         
            +
                    }
         
     | 
| 
      
 282 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 283 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 284 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 285 
     | 
    
         
            +
                },
         
     | 
| 
      
 286 
     | 
    
         
            +
                {
         
     | 
| 
      
 287 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 288 
     | 
    
         
            +
                  "name": "getDomain",
         
     | 
| 
      
 289 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 290 
     | 
    
         
            +
                    {
         
     | 
| 
      
 291 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 292 
     | 
    
         
            +
                      "name": "serviceDomain",
         
     | 
| 
      
 293 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 294 
     | 
    
         
            +
                    }
         
     | 
| 
      
 295 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 296 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 297 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 298 
     | 
    
         
            +
                },
         
     | 
| 
      
 299 
     | 
    
         
            +
                {
         
     | 
| 
      
 300 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 301 
     | 
    
         
            +
                  "name": "getFunctionConfigs",
         
     | 
| 
      
 302 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 303 
     | 
    
         
            +
                    {
         
     | 
| 
      
 304 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 305 
     | 
    
         
            +
                        {
         
     | 
| 
      
 306 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 307 
     | 
    
         
            +
                          "name": "serviceDomain",
         
     | 
| 
      
 308 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 309 
     | 
    
         
            +
                        },
         
     | 
| 
      
 310 
     | 
    
         
            +
                        {
         
     | 
| 
      
 311 
     | 
    
         
            +
                          "internalType": "bytes4[]",
         
     | 
| 
      
 312 
     | 
    
         
            +
                          "name": "selectors",
         
     | 
| 
      
 313 
     | 
    
         
            +
                          "type": "bytes4[]"
         
     | 
| 
      
 314 
     | 
    
         
            +
                        }
         
     | 
| 
      
 315 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 316 
     | 
    
         
            +
                      "internalType": "struct IRegistryService.FunctionConfig[]",
         
     | 
| 
      
 317 
     | 
    
         
            +
                      "name": "config",
         
     | 
| 
      
 318 
     | 
    
         
            +
                      "type": "tuple[]"
         
     | 
| 
      
 319 
     | 
    
         
            +
                    }
         
     | 
| 
      
 320 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 321 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 322 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 323 
     | 
    
         
            +
                },
         
     | 
| 
      
 324 
     | 
    
         
            +
                {
         
     | 
| 
      
 325 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 326 
     | 
    
         
            +
                  "name": "getInitialInfo",
         
     | 
| 
      
 327 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 328 
     | 
    
         
            +
                    {
         
     | 
| 
      
 329 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 330 
     | 
    
         
            +
                        {
         
     | 
| 
      
 331 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 332 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 333 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 334 
     | 
    
         
            +
                        },
         
     | 
| 
      
 335 
     | 
    
         
            +
                        {
         
     | 
| 
      
 336 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 337 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 338 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 339 
     | 
    
         
            +
                        },
         
     | 
| 
      
 340 
     | 
    
         
            +
                        {
         
     | 
| 
      
 341 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 342 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 343 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 344 
     | 
    
         
            +
                        },
         
     | 
| 
      
 345 
     | 
    
         
            +
                        {
         
     | 
| 
      
 346 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 347 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 348 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 349 
     | 
    
         
            +
                        },
         
     | 
| 
      
 350 
     | 
    
         
            +
                        {
         
     | 
| 
      
 351 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 352 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 353 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 354 
     | 
    
         
            +
                        },
         
     | 
| 
      
 355 
     | 
    
         
            +
                        {
         
     | 
| 
      
 356 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 357 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 358 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 359 
     | 
    
         
            +
                        },
         
     | 
| 
      
 360 
     | 
    
         
            +
                        {
         
     | 
| 
      
 361 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 362 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 363 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 364 
     | 
    
         
            +
                        }
         
     | 
| 
      
 365 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 366 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 367 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 368 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 369 
     | 
    
         
            +
                    }
         
     | 
| 
      
 370 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 371 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 372 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 373 
     | 
    
         
            +
                },
         
     | 
| 
      
 374 
     | 
    
         
            +
                {
         
     | 
| 
      
 375 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 376 
     | 
    
         
            +
                  "name": "getMajorVersion",
         
     | 
| 
      
 377 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 378 
     | 
    
         
            +
                    {
         
     | 
| 
      
 379 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 380 
     | 
    
         
            +
                      "name": "majorVersion",
         
     | 
| 
      
 381 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 382 
     | 
    
         
            +
                    }
         
     | 
| 
      
 383 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 384 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 385 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 386 
     | 
    
         
            +
                },
         
     | 
| 
      
 387 
     | 
    
         
            +
                {
         
     | 
| 
      
 388 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 389 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 390 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 391 
     | 
    
         
            +
                    {
         
     | 
| 
      
 392 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 393 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 394 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 395 
     | 
    
         
            +
                    }
         
     | 
| 
      
 396 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 397 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 398 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 399 
     | 
    
         
            +
                },
         
     | 
| 
      
 400 
     | 
    
         
            +
                {
         
     | 
| 
      
 401 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 402 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 403 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 404 
     | 
    
         
            +
                    {
         
     | 
| 
      
 405 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 406 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 407 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 408 
     | 
    
         
            +
                    }
         
     | 
| 
      
 409 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 410 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 411 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 412 
     | 
    
         
            +
                },
         
     | 
| 
      
 413 
     | 
    
         
            +
                {
         
     | 
| 
      
 414 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 415 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 416 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 417 
     | 
    
         
            +
                    {
         
     | 
| 
      
 418 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 419 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 420 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 421 
     | 
    
         
            +
                    }
         
     | 
| 
      
 422 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 423 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 424 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 425 
     | 
    
         
            +
                },
         
     | 
| 
      
 426 
     | 
    
         
            +
                {
         
     | 
| 
      
 427 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 428 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
      
 429 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 430 
     | 
    
         
            +
                    {
         
     | 
| 
      
 431 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 432 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 433 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 434 
     | 
    
         
            +
                    }
         
     | 
| 
      
 435 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 436 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 437 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 438 
     | 
    
         
            +
                },
         
     | 
| 
      
 439 
     | 
    
         
            +
                {
         
     | 
| 
      
 440 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 441 
     | 
    
         
            +
                  "name": "getVersion",
         
     | 
| 
      
 442 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 443 
     | 
    
         
            +
                    {
         
     | 
| 
      
 444 
     | 
    
         
            +
                      "internalType": "Version",
         
     | 
| 
      
 445 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 446 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
      
 447 
     | 
    
         
            +
                    }
         
     | 
| 
      
 448 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 449 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 450 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 451 
     | 
    
         
            +
                },
         
     | 
| 
      
 452 
     | 
    
         
            +
                {
         
     | 
| 
      
 453 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 454 
     | 
    
         
            +
                  "name": "initializeERC165",
         
     | 
| 
      
 455 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 456 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 457 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 458 
     | 
    
         
            +
                },
         
     | 
| 
      
 459 
     | 
    
         
            +
                {
         
     | 
| 
      
 460 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 461 
     | 
    
         
            +
                    {
         
     | 
| 
      
 462 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 463 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 464 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 465 
     | 
    
         
            +
                    },
         
     | 
| 
      
 466 
     | 
    
         
            +
                    {
         
     | 
| 
      
 467 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 468 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 469 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 470 
     | 
    
         
            +
                    }
         
     | 
| 
      
 471 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 472 
     | 
    
         
            +
                  "name": "initializeNftOwnable",
         
     | 
| 
      
 473 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 474 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 475 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 476 
     | 
    
         
            +
                },
         
     | 
| 
      
 477 
     | 
    
         
            +
                {
         
     | 
| 
      
 478 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 479 
     | 
    
         
            +
                    {
         
     | 
| 
      
 480 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 481 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 482 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 483 
     | 
    
         
            +
                    },
         
     | 
| 
      
 484 
     | 
    
         
            +
                    {
         
     | 
| 
      
 485 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 486 
     | 
    
         
            +
                      "name": "parentNftId",
         
     | 
| 
      
 487 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 488 
     | 
    
         
            +
                    },
         
     | 
| 
      
 489 
     | 
    
         
            +
                    {
         
     | 
| 
      
 490 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 491 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 492 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 493 
     | 
    
         
            +
                    },
         
     | 
| 
      
 494 
     | 
    
         
            +
                    {
         
     | 
| 
      
 495 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 496 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 497 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 498 
     | 
    
         
            +
                    },
         
     | 
| 
      
 499 
     | 
    
         
            +
                    {
         
     | 
| 
      
 500 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 501 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 502 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 503 
     | 
    
         
            +
                    },
         
     | 
| 
      
 504 
     | 
    
         
            +
                    {
         
     | 
| 
      
 505 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 506 
     | 
    
         
            +
                      "name": "registryData",
         
     | 
| 
      
 507 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 508 
     | 
    
         
            +
                    }
         
     | 
| 
      
 509 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 510 
     | 
    
         
            +
                  "name": "initializeRegisterable",
         
     | 
| 
      
 511 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 512 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 513 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 514 
     | 
    
         
            +
                },
         
     | 
| 
      
 515 
     | 
    
         
            +
                {
         
     | 
| 
      
 516 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 517 
     | 
    
         
            +
                    {
         
     | 
| 
      
 518 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 519 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 520 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 521 
     | 
    
         
            +
                    }
         
     | 
| 
      
 522 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 523 
     | 
    
         
            +
                  "name": "initializeRegistryLinked",
         
     | 
| 
      
 524 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 525 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 526 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 527 
     | 
    
         
            +
                },
         
     | 
| 
      
 528 
     | 
    
         
            +
                {
         
     | 
| 
      
 529 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 530 
     | 
    
         
            +
                    {
         
     | 
| 
      
 531 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 532 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 533 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 534 
     | 
    
         
            +
                    },
         
     | 
| 
      
 535 
     | 
    
         
            +
                    {
         
     | 
| 
      
 536 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 537 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 538 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 539 
     | 
    
         
            +
                    }
         
     | 
| 
      
 540 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 541 
     | 
    
         
            +
                  "name": "initializeService",
         
     | 
| 
      
 542 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 543 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 544 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 545 
     | 
    
         
            +
                },
         
     | 
| 
      
 546 
     | 
    
         
            +
                {
         
     | 
| 
      
 547 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 548 
     | 
    
         
            +
                    {
         
     | 
| 
      
 549 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 550 
     | 
    
         
            +
                      "name": "activatedBy",
         
     | 
| 
      
 551 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 552 
     | 
    
         
            +
                    },
         
     | 
| 
      
 553 
     | 
    
         
            +
                    {
         
     | 
| 
      
 554 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 555 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 556 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 557 
     | 
    
         
            +
                    }
         
     | 
| 
      
 558 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 559 
     | 
    
         
            +
                  "name": "initializeVersionable",
         
     | 
| 
      
 560 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 561 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 562 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 563 
     | 
    
         
            +
                },
         
     | 
| 
      
 564 
     | 
    
         
            +
                {
         
     | 
| 
      
 565 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 566 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 567 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 568 
     | 
    
         
            +
                    {
         
     | 
| 
      
 569 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 570 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 571 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 572 
     | 
    
         
            +
                    }
         
     | 
| 
      
 573 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 574 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 575 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 576 
     | 
    
         
            +
                },
         
     | 
| 
      
 577 
     | 
    
         
            +
                {
         
     | 
| 
      
 578 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 579 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 580 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 581 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 582 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 583 
     | 
    
         
            +
                },
         
     | 
| 
      
 584 
     | 
    
         
            +
                {
         
     | 
| 
      
 585 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 586 
     | 
    
         
            +
                    {
         
     | 
| 
      
 587 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 588 
     | 
    
         
            +
                        {
         
     | 
| 
      
 589 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 590 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 591 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 592 
     | 
    
         
            +
                        },
         
     | 
| 
      
 593 
     | 
    
         
            +
                        {
         
     | 
| 
      
 594 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 595 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 596 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 597 
     | 
    
         
            +
                        },
         
     | 
| 
      
 598 
     | 
    
         
            +
                        {
         
     | 
| 
      
 599 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 600 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 601 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 602 
     | 
    
         
            +
                        },
         
     | 
| 
      
 603 
     | 
    
         
            +
                        {
         
     | 
| 
      
 604 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 605 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 606 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 607 
     | 
    
         
            +
                        },
         
     | 
| 
      
 608 
     | 
    
         
            +
                        {
         
     | 
| 
      
 609 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 610 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 611 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 612 
     | 
    
         
            +
                        },
         
     | 
| 
      
 613 
     | 
    
         
            +
                        {
         
     | 
| 
      
 614 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 615 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 616 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 617 
     | 
    
         
            +
                        },
         
     | 
| 
      
 618 
     | 
    
         
            +
                        {
         
     | 
| 
      
 619 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 620 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 621 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 622 
     | 
    
         
            +
                        }
         
     | 
| 
      
 623 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 624 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 625 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 626 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 627 
     | 
    
         
            +
                    }
         
     | 
| 
      
 628 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 629 
     | 
    
         
            +
                  "name": "registerBundle",
         
     | 
| 
      
 630 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 631 
     | 
    
         
            +
                    {
         
     | 
| 
      
 632 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 633 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 634 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 635 
     | 
    
         
            +
                    }
         
     | 
| 
      
 636 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 637 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 638 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 639 
     | 
    
         
            +
                },
         
     | 
| 
      
 640 
     | 
    
         
            +
                {
         
     | 
| 
      
 641 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 642 
     | 
    
         
            +
                    {
         
     | 
| 
      
 643 
     | 
    
         
            +
                      "internalType": "contract IComponent",
         
     | 
| 
      
 644 
     | 
    
         
            +
                      "name": "distribution",
         
     | 
| 
      
 645 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 646 
     | 
    
         
            +
                    },
         
     | 
| 
      
 647 
     | 
    
         
            +
                    {
         
     | 
| 
      
 648 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 649 
     | 
    
         
            +
                      "name": "owner",
         
     | 
| 
      
 650 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 651 
     | 
    
         
            +
                    }
         
     | 
| 
      
 652 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 653 
     | 
    
         
            +
                  "name": "registerDistribution",
         
     | 
| 
      
 654 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 655 
     | 
    
         
            +
                    {
         
     | 
| 
      
 656 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 657 
     | 
    
         
            +
                        {
         
     | 
| 
      
 658 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 659 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 660 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 661 
     | 
    
         
            +
                        },
         
     | 
| 
      
 662 
     | 
    
         
            +
                        {
         
     | 
| 
      
 663 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 664 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 665 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 666 
     | 
    
         
            +
                        },
         
     | 
| 
      
 667 
     | 
    
         
            +
                        {
         
     | 
| 
      
 668 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 669 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 670 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 671 
     | 
    
         
            +
                        },
         
     | 
| 
      
 672 
     | 
    
         
            +
                        {
         
     | 
| 
      
 673 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 674 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 675 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 676 
     | 
    
         
            +
                        },
         
     | 
| 
      
 677 
     | 
    
         
            +
                        {
         
     | 
| 
      
 678 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 679 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 680 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 681 
     | 
    
         
            +
                        },
         
     | 
| 
      
 682 
     | 
    
         
            +
                        {
         
     | 
| 
      
 683 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 684 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 685 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 686 
     | 
    
         
            +
                        },
         
     | 
| 
      
 687 
     | 
    
         
            +
                        {
         
     | 
| 
      
 688 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 689 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 690 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 691 
     | 
    
         
            +
                        }
         
     | 
| 
      
 692 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 693 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 694 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 695 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 696 
     | 
    
         
            +
                    }
         
     | 
| 
      
 697 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 698 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 699 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 700 
     | 
    
         
            +
                },
         
     | 
| 
      
 701 
     | 
    
         
            +
                {
         
     | 
| 
      
 702 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 703 
     | 
    
         
            +
                    {
         
     | 
| 
      
 704 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 705 
     | 
    
         
            +
                        {
         
     | 
| 
      
 706 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 707 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 708 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 709 
     | 
    
         
            +
                        },
         
     | 
| 
      
 710 
     | 
    
         
            +
                        {
         
     | 
| 
      
 711 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 712 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 713 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 714 
     | 
    
         
            +
                        },
         
     | 
| 
      
 715 
     | 
    
         
            +
                        {
         
     | 
| 
      
 716 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 717 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 718 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 719 
     | 
    
         
            +
                        },
         
     | 
| 
      
 720 
     | 
    
         
            +
                        {
         
     | 
| 
      
 721 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 722 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 723 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 724 
     | 
    
         
            +
                        },
         
     | 
| 
      
 725 
     | 
    
         
            +
                        {
         
     | 
| 
      
 726 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 727 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 728 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 729 
     | 
    
         
            +
                        },
         
     | 
| 
      
 730 
     | 
    
         
            +
                        {
         
     | 
| 
      
 731 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 732 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 733 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 734 
     | 
    
         
            +
                        },
         
     | 
| 
      
 735 
     | 
    
         
            +
                        {
         
     | 
| 
      
 736 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 737 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 738 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 739 
     | 
    
         
            +
                        }
         
     | 
| 
      
 740 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 741 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 742 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 743 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 744 
     | 
    
         
            +
                    }
         
     | 
| 
      
 745 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 746 
     | 
    
         
            +
                  "name": "registerDistributor",
         
     | 
| 
      
 747 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 748 
     | 
    
         
            +
                    {
         
     | 
| 
      
 749 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 750 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 751 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 752 
     | 
    
         
            +
                    }
         
     | 
| 
      
 753 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 754 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 755 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 756 
     | 
    
         
            +
                },
         
     | 
| 
      
 757 
     | 
    
         
            +
                {
         
     | 
| 
      
 758 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 759 
     | 
    
         
            +
                    {
         
     | 
| 
      
 760 
     | 
    
         
            +
                      "internalType": "contract IRegisterable",
         
     | 
| 
      
 761 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 762 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 763 
     | 
    
         
            +
                    },
         
     | 
| 
      
 764 
     | 
    
         
            +
                    {
         
     | 
| 
      
 765 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 766 
     | 
    
         
            +
                      "name": "owner",
         
     | 
| 
      
 767 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 768 
     | 
    
         
            +
                    }
         
     | 
| 
      
 769 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 770 
     | 
    
         
            +
                  "name": "registerInstance",
         
     | 
| 
      
 771 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 772 
     | 
    
         
            +
                    {
         
     | 
| 
      
 773 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 774 
     | 
    
         
            +
                        {
         
     | 
| 
      
 775 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 776 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 777 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 778 
     | 
    
         
            +
                        },
         
     | 
| 
      
 779 
     | 
    
         
            +
                        {
         
     | 
| 
      
 780 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 781 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 782 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 783 
     | 
    
         
            +
                        },
         
     | 
| 
      
 784 
     | 
    
         
            +
                        {
         
     | 
| 
      
 785 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 786 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 787 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 788 
     | 
    
         
            +
                        },
         
     | 
| 
      
 789 
     | 
    
         
            +
                        {
         
     | 
| 
      
 790 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 791 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 792 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 793 
     | 
    
         
            +
                        },
         
     | 
| 
      
 794 
     | 
    
         
            +
                        {
         
     | 
| 
      
 795 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 796 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 797 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 798 
     | 
    
         
            +
                        },
         
     | 
| 
      
 799 
     | 
    
         
            +
                        {
         
     | 
| 
      
 800 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 801 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 802 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 803 
     | 
    
         
            +
                        },
         
     | 
| 
      
 804 
     | 
    
         
            +
                        {
         
     | 
| 
      
 805 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 806 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 807 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 808 
     | 
    
         
            +
                        }
         
     | 
| 
      
 809 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 810 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 811 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 812 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 813 
     | 
    
         
            +
                    }
         
     | 
| 
      
 814 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 815 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 816 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 817 
     | 
    
         
            +
                },
         
     | 
| 
      
 818 
     | 
    
         
            +
                {
         
     | 
| 
      
 819 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 820 
     | 
    
         
            +
                    {
         
     | 
| 
      
 821 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 822 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 823 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 824 
     | 
    
         
            +
                    }
         
     | 
| 
      
 825 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 826 
     | 
    
         
            +
                  "name": "registerInterface",
         
     | 
| 
      
 827 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 828 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 829 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 830 
     | 
    
         
            +
                },
         
     | 
| 
      
 831 
     | 
    
         
            +
                {
         
     | 
| 
      
 832 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 833 
     | 
    
         
            +
                    {
         
     | 
| 
      
 834 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 835 
     | 
    
         
            +
                        {
         
     | 
| 
      
 836 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 837 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 838 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 839 
     | 
    
         
            +
                        },
         
     | 
| 
      
 840 
     | 
    
         
            +
                        {
         
     | 
| 
      
 841 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 842 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 843 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 844 
     | 
    
         
            +
                        },
         
     | 
| 
      
 845 
     | 
    
         
            +
                        {
         
     | 
| 
      
 846 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 847 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 848 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 849 
     | 
    
         
            +
                        },
         
     | 
| 
      
 850 
     | 
    
         
            +
                        {
         
     | 
| 
      
 851 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 852 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 853 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 854 
     | 
    
         
            +
                        },
         
     | 
| 
      
 855 
     | 
    
         
            +
                        {
         
     | 
| 
      
 856 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 857 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 858 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 859 
     | 
    
         
            +
                        },
         
     | 
| 
      
 860 
     | 
    
         
            +
                        {
         
     | 
| 
      
 861 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 862 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 863 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 864 
     | 
    
         
            +
                        },
         
     | 
| 
      
 865 
     | 
    
         
            +
                        {
         
     | 
| 
      
 866 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 867 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 868 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 869 
     | 
    
         
            +
                        }
         
     | 
| 
      
 870 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 871 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 872 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 873 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 874 
     | 
    
         
            +
                    }
         
     | 
| 
      
 875 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 876 
     | 
    
         
            +
                  "name": "registerPolicy",
         
     | 
| 
      
 877 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 878 
     | 
    
         
            +
                    {
         
     | 
| 
      
 879 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 880 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 881 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 882 
     | 
    
         
            +
                    }
         
     | 
| 
      
 883 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 884 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 885 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 886 
     | 
    
         
            +
                },
         
     | 
| 
      
 887 
     | 
    
         
            +
                {
         
     | 
| 
      
 888 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 889 
     | 
    
         
            +
                    {
         
     | 
| 
      
 890 
     | 
    
         
            +
                      "internalType": "contract IComponent",
         
     | 
| 
      
 891 
     | 
    
         
            +
                      "name": "pool",
         
     | 
| 
      
 892 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 893 
     | 
    
         
            +
                    },
         
     | 
| 
      
 894 
     | 
    
         
            +
                    {
         
     | 
| 
      
 895 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 896 
     | 
    
         
            +
                      "name": "owner",
         
     | 
| 
      
 897 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 898 
     | 
    
         
            +
                    }
         
     | 
| 
      
 899 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 900 
     | 
    
         
            +
                  "name": "registerPool",
         
     | 
| 
      
 901 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 902 
     | 
    
         
            +
                    {
         
     | 
| 
      
 903 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 904 
     | 
    
         
            +
                        {
         
     | 
| 
      
 905 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 906 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 907 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 908 
     | 
    
         
            +
                        },
         
     | 
| 
      
 909 
     | 
    
         
            +
                        {
         
     | 
| 
      
 910 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 911 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 912 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 913 
     | 
    
         
            +
                        },
         
     | 
| 
      
 914 
     | 
    
         
            +
                        {
         
     | 
| 
      
 915 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 916 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 917 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 918 
     | 
    
         
            +
                        },
         
     | 
| 
      
 919 
     | 
    
         
            +
                        {
         
     | 
| 
      
 920 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 921 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 922 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 923 
     | 
    
         
            +
                        },
         
     | 
| 
      
 924 
     | 
    
         
            +
                        {
         
     | 
| 
      
 925 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 926 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 927 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 928 
     | 
    
         
            +
                        },
         
     | 
| 
      
 929 
     | 
    
         
            +
                        {
         
     | 
| 
      
 930 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 931 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 932 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 933 
     | 
    
         
            +
                        },
         
     | 
| 
      
 934 
     | 
    
         
            +
                        {
         
     | 
| 
      
 935 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 936 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 937 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 938 
     | 
    
         
            +
                        }
         
     | 
| 
      
 939 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 940 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 941 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 942 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 943 
     | 
    
         
            +
                    }
         
     | 
| 
      
 944 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 945 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 946 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 947 
     | 
    
         
            +
                },
         
     | 
| 
      
 948 
     | 
    
         
            +
                {
         
     | 
| 
      
 949 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 950 
     | 
    
         
            +
                    {
         
     | 
| 
      
 951 
     | 
    
         
            +
                      "internalType": "contract IComponent",
         
     | 
| 
      
 952 
     | 
    
         
            +
                      "name": "product",
         
     | 
| 
      
 953 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 954 
     | 
    
         
            +
                    },
         
     | 
| 
      
 955 
     | 
    
         
            +
                    {
         
     | 
| 
      
 956 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 957 
     | 
    
         
            +
                      "name": "owner",
         
     | 
| 
      
 958 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 959 
     | 
    
         
            +
                    }
         
     | 
| 
      
 960 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 961 
     | 
    
         
            +
                  "name": "registerProduct",
         
     | 
| 
      
 962 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 963 
     | 
    
         
            +
                    {
         
     | 
| 
      
 964 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 965 
     | 
    
         
            +
                        {
         
     | 
| 
      
 966 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 967 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 968 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 969 
     | 
    
         
            +
                        },
         
     | 
| 
      
 970 
     | 
    
         
            +
                        {
         
     | 
| 
      
 971 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 972 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 973 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 974 
     | 
    
         
            +
                        },
         
     | 
| 
      
 975 
     | 
    
         
            +
                        {
         
     | 
| 
      
 976 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 977 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 978 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 979 
     | 
    
         
            +
                        },
         
     | 
| 
      
 980 
     | 
    
         
            +
                        {
         
     | 
| 
      
 981 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 982 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 983 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 984 
     | 
    
         
            +
                        },
         
     | 
| 
      
 985 
     | 
    
         
            +
                        {
         
     | 
| 
      
 986 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 987 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 988 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 989 
     | 
    
         
            +
                        },
         
     | 
| 
      
 990 
     | 
    
         
            +
                        {
         
     | 
| 
      
 991 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 992 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 993 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 994 
     | 
    
         
            +
                        },
         
     | 
| 
      
 995 
     | 
    
         
            +
                        {
         
     | 
| 
      
 996 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 997 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 998 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 999 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1000 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1001 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 1002 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 1003 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1004 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1005 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1006 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1007 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1008 
     | 
    
         
            +
                },
         
     | 
| 
      
 1009 
     | 
    
         
            +
                {
         
     | 
| 
      
 1010 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1011 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1012 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1013 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1014 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1015 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 1016 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1017 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1018 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1019 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1020 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 1021 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1022 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1023 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1024 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 1025 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 1026 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 1027 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1028 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1029 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 1030 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 1031 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 1032 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1033 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1034 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 1035 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 1036 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 1037 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1038 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1039 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 1040 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 1041 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 1042 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1043 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1044 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 1045 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 1046 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 1047 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1048 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1049 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 1050 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 1051 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1052 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1053 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1054 
     | 
    
         
            +
                  "name": "registerStake",
         
     | 
| 
      
 1055 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1056 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1057 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1058 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 1059 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1060 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1061 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1062 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1063 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1064 
     | 
    
         
            +
                },
         
     | 
| 
      
 1065 
     | 
    
         
            +
                {
         
     | 
| 
      
 1066 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1067 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1068 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1069 
     | 
    
         
            +
                      "name": "newAuthority",
         
     | 
| 
      
 1070 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1071 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1072 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1073 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 1074 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1075 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1076 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1077 
     | 
    
         
            +
                },
         
     | 
| 
      
 1078 
     | 
    
         
            +
                {
         
     | 
| 
      
 1079 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1080 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1081 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 1082 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 1083 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 1084 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1085 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1086 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 1087 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1088 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1089 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1090 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1091 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1092 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1093 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1094 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1095 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1096 
     | 
    
         
            +
                },
         
     | 
| 
      
 1097 
     | 
    
         
            +
                {
         
     | 
| 
      
 1098 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1099 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1100 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 1101 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 1102 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 1103 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1104 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1105 
     | 
    
         
            +
                  "name": "upgradeVersionable",
         
     | 
| 
      
 1106 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1107 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1108 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1109 
     | 
    
         
            +
                }
         
     | 
| 
      
 1110 
     | 
    
         
            +
              ],
         
     | 
| 
      
 1111 
     | 
    
         
            +
              "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b612d6f80620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063675393bf1161011a578063b68d1809116100ad578063cde749f41161007c578063cde749f414610483578063ea8665721461048b578063ed841d0c1461049e578063f21de1e814610344578063f7c34ee0146104a657600080fd5b8063b68d18091461043e578063bf7e214f14610453578063c13de9971461045b578063c2bf08c81461047057600080fd5b8063893d20e8116100e9578063893d20e8146103f95780638fb36037146104015780638fbc2d8114610416578063ada9652e1461042957600080fd5b8063675393bf146103ad5780637286e5e5146103c05780637a9e5e4b146103d35780638105cc7f146103e657600080fd5b8063329d6e74116101925780635ab1bd53116101615780635ab1bd53146103445780635c992fed146103695780635d9662891461037c578063644c45e01461038f57600080fd5b8063329d6e74146102eb57806336fc697e146102fe57806349bb9e4b1461030657806357a8fba71461031957600080fd5b8063138461e0116101ce578063138461e0146102865780631eff4b2214610290578063214cdb80146102c557806327bb7a33146102d857600080fd5b806301ffc9a714610200578063026bc43b146102425780630d8e6e2c146102625780630fec111c1461027e575b600080fd5b61022d61020e3660046122fd565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610255610250366004612353565b6104b9565b60405161023991906123dc565b61026a610656565b60405162ffffff9091168152602001610239565b6102556106e0565b61028e61087c565b005b6102b77f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610239565b61028e6102d33660046122fd565b610a83565b61028e6102e63660046125a5565b610ab0565b61028e6102f936600461263d565b610b3c565b61028e610c89565b61028e610314366004612671565b610ccf565b61032c6103273660046126c0565b610dce565b6040516001600160601b039091168152602001610239565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610239565b61032c6103773660046126c0565b610e5d565b61025561038a366004612353565b610e73565b600080516020612cda833981519152546001600160601b031661032c565b61028e6103bb366004612792565b610fb3565b6102556103ce366004612353565b6110c6565b61028e6103e1366004612792565b611173565b61032c6103f43660046126c0565b6111f6565b61035161120c565b610409611343565b60405161023991906127af565b610255610424366004612353565b61137b565b6102b7600080516020612cda83398151915281565b60285b60405160ff9091168152602001610239565b610351611428565b610463611444565b60405161023991906127c4565b61032c61047e3660046126c0565b611a30565b610441611a46565b61028e610499366004612353565b611abd565b6102b7600081565b61028e6104b4366004612353565b611b55565b6104c16122bf565b6104ce335b600036611bcc565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906105009062e51dcd60e31b906004016127af565b602060405180830381865afa15801561051d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610541919061287c565b61055e57604051636795c76360e01b815260040160405180910390fd5b61056b8360465b84611cd2565b905061057f6001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016105aa91906123dc565b6020604051808303816000875af11580156105c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ed91906128a4565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b15801561063857600080fd5b505af115801561064c573d6000803e3d6000fd5b5050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156106b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106db91906128c1565b905090565b6106e86122bf565b604080516080810182527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116835260ff600160601b820481166020850152600160681b909104161515928201929092527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3018054600093916060840191610778906128e6565b80601f01602080910402602001604051908101604052809291908181526020018280546107a4906128e6565b80156107f15780601f106107c6576101008083540402835291602001916107f1565b820191906000526020600020905b8154815290600101906020018083116107d457829003601f168201915b50505050508152505090506040518060e0016040528061080f600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b0316815260200161086061120c565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020612cda83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156108eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090f919061287c565b156109405780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b306109536001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561099b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bf919061287c565b6109e75760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610937565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5f91906128a4565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b610a8b611ec2565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610ab8611ec2565b610ac28287611b55565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101610b328382612966565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610b5e610656565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610b9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc29190612a25565b600080516020612d1a8339815191528054600160401b900460ff1680610bf5575080546001600160401b03808416911610155b15610c135760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610c3d83611efb565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610c91611ec2565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020612d1a8339815191528054600160401b810460ff1615906001600160401b0316600081158015610d025750825b90506000826001600160401b03166001148015610d1e5750303b155b905081158015610d2c575080155b15610d4a5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610d7457845460ff60401b1916600160401b1785555b610d7e8787611f03565b8315610dc557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6000610dd9336104c6565b610de482607a61202a565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610e149085906004016123dc565b6020604051808303816000875af1158015610e33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5791906128a4565b92915050565b6000610e68336104c6565b610de48260d361202a565b610e7b6122bf565b610e84336104c6565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610eb790631e63cf4560e01b906004016127af565b602060405180830381865afa158015610ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef8919061287c565b610f1557604051637a71998760e01b815260040160405180910390fd5b610f2083606e610565565b9050610f346001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b8152600401610f5f91906123dc565b6020604051808303816000875af1158015610f7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa291906128a4565b6001600160601b0316815292915050565b610fbb611ec2565b806001600160a01b03163b600003610ff15760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610937565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a7906110379063230c0c8160e11b906004016127af565b602060405180830381865afa925050508015611070575060408051601f3d908101601f1916820190925261106d9181019061287c565b60015b6110985760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610937565b806110c15760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610937565b505b50565b6110ce6122bf565b6110d7336104c6565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061110a90634ba5830960e11b906004016127af565b602060405180830381865afa158015611127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114b919061287c565b61116857604051636f61f64160e01b815260040160405180910390fd5b610f2083608c610565565b3361117c611428565b6001600160a01b0316816001600160a01b0316146111b75760405162d1953b60e31b81526001600160a01b0382166004820152602401610937565b816001600160a01b03163b6000036111ed576040516361798f2f60e11b81526001600160a01b0383166004820152602401610937565b6110c182612135565b6000611201336104c6565b610de482605061202a565b600080600080516020612cda83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561127c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a0919061287c565b1561132d576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611303573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113279190612a59565b91505090565b54600160601b90046001600160a01b0316919050565b600080516020612cfa833981519152805460009190600160a01b900460ff1661136d576000611327565b638fb3603760e01b91505090565b6113836122bf565b61138c336104c6565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906113bf90637895d0ed60e01b906004016127af565b602060405180830381865afa1580156113dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611400919061287c565b61141d576040516308707e3160e41b815260040160405180910390fd5b610f20836078610565565b600080516020612cfa833981519152546001600160a01b031690565b6040805160088082526101208201909252606091816020015b60408051808201909152600081526060602082015281526020019060019003908161145d57905050905061148f60d390565b816000815181106114a2576114a2612a76565b60209081029190910181015160ff929092169091526040805160008082529281019091529050816000815181106114db576114db612a76565b6020026020010151602001819052506114f260d290565b8160018151811061150557611505612a76565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160018151811061154b5761154b612a76565b602002602001015160200181905250635c992fed60e01b8160018151811061157557611575612a76565b60200260200101516020015160008151811061159357611593612a76565b6001600160e01b0319909216602092830291909101909101526115b460d490565b816002815181106115c7576115c7612a76565b60209081029190910181015160ff92909216909152604080516000815291820190528151829060029081106115fe576115fe612a76565b60200260200101516020018190525061161560dc90565b8160038151811061162857611628612a76565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160038151811061166e5761166e612a76565b60200260200101516020018190525063c2bf08c860e01b8160038151811061169857611698612a76565b6020026020010151602001516000815181106116b6576116b6612a76565b6001600160e01b0319909216602092830291909101909101526116d7606e90565b816004815181106116ea576116ea612a76565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160048151811061173057611730612a76565b602002602001015160200181905250635d96628960e01b8160048151811061175a5761175a612a76565b60200260200101516020015160008151811061177857611778612a76565b6001600160e01b031990921660209283029190910190910152611799608c90565b816005815181106117ac576117ac612a76565b602090810291909101015160ff9190911690526040805160018082528183019092529081602001602082028036833701905050816005815181106117f2576117f2612a76565b602002602001015160200181905250637286e5e560e01b8160058151811061181c5761181c612a76565b60200260200101516020015160008151811061183a5761183a612a76565b6001600160e01b03199092166020928302919091019091015261185b607890565b8160068151811061186e5761186e612a76565b602090810291909101015160ff919091169052604080516002808252606082019092529081602001602082028036833701905050816006815181106118b5576118b5612a76565b602002602001015160200181905250638fbc2d8160e01b816006815181106118df576118df612a76565b6020026020010151602001516000815181106118fd576118fd612a76565b6001600160e01b03199092166020928302919091019091015280516357a8fba760e01b908290600690811061193457611934612a76565b60200260200101516020015160018151811061195257611952612a76565b6001600160e01b031990921660209283029190910190910152611973604690565b8160078151811061198657611986612a76565b602090810291909101015160ff9190911690526040805160018082528183019092529081602001602082028036833701905050816007815181106119cc576119cc612a76565b60200260200101516020018190525063026bc43b60e01b816007815181106119f6576119f6612a76565b602002602001015160200151600081518110611a1457611a14612a76565b6001600160e01b03199092166020928302919091019091015290565b6000611a3b336104c6565b610de48260dc61202a565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611a99573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106db9190612a97565b611ac5611ec2565b611b4582836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2b91906128a4565b603c60008560405180602001604052806000815250610ab0565b6110c1637b6a51fd60e01b610a83565b611b5d611ec2565b611b6681610fb3565b611b6e610c89565b6001600160a01b038216611b955760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020612cda83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080516020612cfa833981519152600080611c07611be9611428565b8730611bf9600460008a8c612ab4565b611c0291612ade565b612196565b9150915081611cca5763ffffffff811615611ca757825460ff60a01b1916600160a01b178355611c35611428565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c6493929190612b0e565b600060405180830381600087803b158015611c7e57600080fd5b505af1158015611c92573d6000803e3d6000fd5b5050845460ff60a01b1916855550611cca9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610937565b505050505050565b611cda6122bf565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611d18573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d409190810190612b93565b6001600160a01b0385166080820152604081015190915060ff848116911614611d8f576040808201519051632208245760e11b815260ff80861660048301529091166024820152604401610937565b60a08101516001600160a01b0380821690841614611dcb5760405163dfc430cb60e01b81526001600160a01b0384166004820152602401610937565b846001600160a01b0316816001600160a01b031603611dfd576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b038116611e2457604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611e78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9c919061287c565b15611eba57604051637142ceb360e11b815260040160405180910390fd5b509392505050565b600080516020612d1a83398151915254600160401b900460ff16611ef957604051631afcd79f60e31b815260040160405180910390fd5b565b6101fb611ec2565b600080516020612d1a8339815191528054600160401b810460ff1615906001600160401b0316600081158015611f365750825b90506000826001600160401b03166001148015611f525750303b155b905081158015611f60575080155b15611f7e5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611fa857845460ff60401b1916600160401b1785555b60008087806020019051810190611fbf9190612c56565b91509150611fcc816122a2565b611fd6828a611abd565b611fe663aa745bc360e01b610a83565b50508315610dc557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610dbc565b60006080830152604082015160ff82811691161461206e576040808301519051632208245760e11b815260ff80841660048301529091166024820152604401610937565b60a08201516001600160a01b03811661209a57604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156120ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612112919061287c565b1561213057604051637142ceb360e11b815260040160405180910390fd5b505050565b600080516020612cfa83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516122059190612c85565b600060405180830381855afa9150503d8060008114612240576040519150601f19603f3d011682016040523d82523d6000602084013e612245565b606091505b50915091508115612297576040815110612277578080602001905181019061226d9190612ca1565b9094509250612297565b60208151106122975780806020019051810190612294919061287c565b93505b505094509492505050565b6122aa611ec2565b6110c3816122b6611ec2565b6110c381612135565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561230f57600080fd5b81356001600160e01b03198116811461232757600080fd5b9392505050565b6001600160a01b03811681146110c357600080fd5b803561234e8161232e565b919050565b6000806040838503121561236657600080fd5b82356123718161232e565b915060208301356123818161232e565b809150509250929050565b60005b838110156123a757818101518382015260200161238f565b50506000910152565b600081518084526123c881602086016020860161238c565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161244560c08401826001600160a01b03169052565b5060c083015160e08084015261245f6101008401826123b0565b949350505050565b6001600160601b03811681146110c357600080fd5b803561234e81612467565b60ff811681146110c357600080fd5b803561234e81612487565b80151581146110c357600080fd5b803561234e816124a1565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156124f2576124f26124ba565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612520576125206124ba565b604052919050565b60006001600160401b03821115612541576125416124ba565b50601f01601f191660200190565b600082601f83011261256057600080fd5b813561257361256e82612528565b6124f8565b81815284602083860101111561258857600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c087890312156125be57600080fd5b86356125c98161232e565b955060208701356125d981612467565b945060408701356125e981612487565b935060608701356125f9816124a1565b925060808701356126098161232e565b915060a08701356001600160401b0381111561262457600080fd5b61263089828a0161254f565b9150509295509295509295565b60006020828403121561264f57600080fd5b81356001600160401b0381111561266557600080fd5b61245f8482850161254f565b6000806040838503121561268457600080fd5b823561268f8161232e565b915060208301356001600160401b038111156126aa57600080fd5b6126b68582860161254f565b9150509250929050565b6000602082840312156126d257600080fd5b81356001600160401b03808211156126e957600080fd5b9083019060e082860312156126fd57600080fd5b6127056124d0565b61270e8361247c565b815261271c6020840161247c565b602082015261272d60408401612496565b604082015261273e606084016124af565b606082015261274f60808401612343565b608082015261276060a08401612343565b60a082015260c08301358281111561277757600080fd5b6127838782860161254f565b60c08301525095945050505050565b6000602082840312156127a457600080fd5b81356123278161232e565b6001600160e01b031991909116815260200190565b60006020808301818452808551808352604092508286019150828160051b8701018488016000805b8481101561286257898403603f190186528251805160ff168552880151888501889052805188860181905290890190839060608701905b8083101561284d5783516001600160e01b0319168252928b019260019290920191908b0190612823565b50978a019795505050918701916001016127ec565b50919998505050505050505050565b805161234e816124a1565b60006020828403121561288e57600080fd5b8151612327816124a1565b805161234e81612467565b6000602082840312156128b657600080fd5b815161232781612467565b6000602082840312156128d357600080fd5b815162ffffff8116811461232757600080fd5b600181811c908216806128fa57607f821691505b60208210810361291a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561213057600081815260208120601f850160051c810160208610156129475750805b601f850160051c820191505b81811015611cca57828155600101612953565b81516001600160401b0381111561297f5761297f6124ba565b6129938161298d84546128e6565b84612920565b602080601f8311600181146129c857600084156129b05750858301515b600019600386901b1c1916600185901b178555611cca565b600085815260208120601f198616915b828110156129f7578886015182559484019460019091019084016129d8565b5085821015612a155787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612a3757600080fd5b81516001600160401b038116811461232757600080fd5b805161234e8161232e565b600060208284031215612a6b57600080fd5b81516123278161232e565b634e487b7160e01b600052603260045260246000fd5b805161234e81612487565b600060208284031215612aa957600080fd5b815161232781612487565b60008085851115612ac457600080fd5b83861115612ad157600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612b065780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612b5f57600080fd5b8151612b6d61256e82612528565b818152846020838601011115612b8257600080fd5b61245f82602083016020870161238c565b600060208284031215612ba557600080fd5b81516001600160401b0380821115612bbc57600080fd5b9083019060e08286031215612bd057600080fd5b612bd86124d0565b612be183612899565b8152612bef60208401612899565b6020820152612c0060408401612a8c565b6040820152612c1160608401612871565b6060820152612c2260808401612a4e565b6080820152612c3360a08401612a4e565b60a082015260c083015182811115612c4a57600080fd5b61278387828601612b4e565b60008060408385031215612c6957600080fd5b8251612c748161232e565b60208401519092506123818161232e565b60008251612c9781846020870161238c565b9190910192915050565b60008060408385031215612cb457600080fd5b8251612cbf816124a1565b602084015190925063ffffffff8116811461238157600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220ccb696fb3bff0c34e2dee77eabc654186d3fa0e227c36ee4d6cf89edcdba69c464736f6c63430008140033",
         
     | 
| 
      
 1112 
     | 
    
         
            +
              "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063675393bf1161011a578063b68d1809116100ad578063cde749f41161007c578063cde749f414610483578063ea8665721461048b578063ed841d0c1461049e578063f21de1e814610344578063f7c34ee0146104a657600080fd5b8063b68d18091461043e578063bf7e214f14610453578063c13de9971461045b578063c2bf08c81461047057600080fd5b8063893d20e8116100e9578063893d20e8146103f95780638fb36037146104015780638fbc2d8114610416578063ada9652e1461042957600080fd5b8063675393bf146103ad5780637286e5e5146103c05780637a9e5e4b146103d35780638105cc7f146103e657600080fd5b8063329d6e74116101925780635ab1bd53116101615780635ab1bd53146103445780635c992fed146103695780635d9662891461037c578063644c45e01461038f57600080fd5b8063329d6e74146102eb57806336fc697e146102fe57806349bb9e4b1461030657806357a8fba71461031957600080fd5b8063138461e0116101ce578063138461e0146102865780631eff4b2214610290578063214cdb80146102c557806327bb7a33146102d857600080fd5b806301ffc9a714610200578063026bc43b146102425780630d8e6e2c146102625780630fec111c1461027e575b600080fd5b61022d61020e3660046122fd565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610255610250366004612353565b6104b9565b60405161023991906123dc565b61026a610656565b60405162ffffff9091168152602001610239565b6102556106e0565b61028e61087c565b005b6102b77f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610239565b61028e6102d33660046122fd565b610a83565b61028e6102e63660046125a5565b610ab0565b61028e6102f936600461263d565b610b3c565b61028e610c89565b61028e610314366004612671565b610ccf565b61032c6103273660046126c0565b610dce565b6040516001600160601b039091168152602001610239565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610239565b61032c6103773660046126c0565b610e5d565b61025561038a366004612353565b610e73565b600080516020612cda833981519152546001600160601b031661032c565b61028e6103bb366004612792565b610fb3565b6102556103ce366004612353565b6110c6565b61028e6103e1366004612792565b611173565b61032c6103f43660046126c0565b6111f6565b61035161120c565b610409611343565b60405161023991906127af565b610255610424366004612353565b61137b565b6102b7600080516020612cda83398151915281565b60285b60405160ff9091168152602001610239565b610351611428565b610463611444565b60405161023991906127c4565b61032c61047e3660046126c0565b611a30565b610441611a46565b61028e610499366004612353565b611abd565b6102b7600081565b61028e6104b4366004612353565b611b55565b6104c16122bf565b6104ce335b600036611bcc565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906105009062e51dcd60e31b906004016127af565b602060405180830381865afa15801561051d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610541919061287c565b61055e57604051636795c76360e01b815260040160405180910390fd5b61056b8360465b84611cd2565b905061057f6001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016105aa91906123dc565b6020604051808303816000875af11580156105c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ed91906128a4565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b15801561063857600080fd5b505af115801561064c573d6000803e3d6000fd5b5050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156106b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106db91906128c1565b905090565b6106e86122bf565b604080516080810182527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116835260ff600160601b820481166020850152600160681b909104161515928201929092527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3018054600093916060840191610778906128e6565b80601f01602080910402602001604051908101604052809291908181526020018280546107a4906128e6565b80156107f15780601f106107c6576101008083540402835291602001916107f1565b820191906000526020600020905b8154815290600101906020018083116107d457829003601f168201915b50505050508152505090506040518060e0016040528061080f600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b0316815260200161086061120c565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020612cda83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156108eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090f919061287c565b156109405780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b306109536001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561099b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bf919061287c565b6109e75760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610937565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5f91906128a4565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b610a8b611ec2565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610ab8611ec2565b610ac28287611b55565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101610b328382612966565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610b5e610656565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610b9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc29190612a25565b600080516020612d1a8339815191528054600160401b900460ff1680610bf5575080546001600160401b03808416911610155b15610c135760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610c3d83611efb565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610c91611ec2565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020612d1a8339815191528054600160401b810460ff1615906001600160401b0316600081158015610d025750825b90506000826001600160401b03166001148015610d1e5750303b155b905081158015610d2c575080155b15610d4a5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610d7457845460ff60401b1916600160401b1785555b610d7e8787611f03565b8315610dc557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6000610dd9336104c6565b610de482607a61202a565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610e149085906004016123dc565b6020604051808303816000875af1158015610e33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5791906128a4565b92915050565b6000610e68336104c6565b610de48260d361202a565b610e7b6122bf565b610e84336104c6565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610eb790631e63cf4560e01b906004016127af565b602060405180830381865afa158015610ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef8919061287c565b610f1557604051637a71998760e01b815260040160405180910390fd5b610f2083606e610565565b9050610f346001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b8152600401610f5f91906123dc565b6020604051808303816000875af1158015610f7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa291906128a4565b6001600160601b0316815292915050565b610fbb611ec2565b806001600160a01b03163b600003610ff15760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610937565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a7906110379063230c0c8160e11b906004016127af565b602060405180830381865afa925050508015611070575060408051601f3d908101601f1916820190925261106d9181019061287c565b60015b6110985760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610937565b806110c15760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610937565b505b50565b6110ce6122bf565b6110d7336104c6565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061110a90634ba5830960e11b906004016127af565b602060405180830381865afa158015611127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114b919061287c565b61116857604051636f61f64160e01b815260040160405180910390fd5b610f2083608c610565565b3361117c611428565b6001600160a01b0316816001600160a01b0316146111b75760405162d1953b60e31b81526001600160a01b0382166004820152602401610937565b816001600160a01b03163b6000036111ed576040516361798f2f60e11b81526001600160a01b0383166004820152602401610937565b6110c182612135565b6000611201336104c6565b610de482605061202a565b600080600080516020612cda83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561127c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a0919061287c565b1561132d576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611303573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113279190612a59565b91505090565b54600160601b90046001600160a01b0316919050565b600080516020612cfa833981519152805460009190600160a01b900460ff1661136d576000611327565b638fb3603760e01b91505090565b6113836122bf565b61138c336104c6565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906113bf90637895d0ed60e01b906004016127af565b602060405180830381865afa1580156113dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611400919061287c565b61141d576040516308707e3160e41b815260040160405180910390fd5b610f20836078610565565b600080516020612cfa833981519152546001600160a01b031690565b6040805160088082526101208201909252606091816020015b60408051808201909152600081526060602082015281526020019060019003908161145d57905050905061148f60d390565b816000815181106114a2576114a2612a76565b60209081029190910181015160ff929092169091526040805160008082529281019091529050816000815181106114db576114db612a76565b6020026020010151602001819052506114f260d290565b8160018151811061150557611505612a76565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160018151811061154b5761154b612a76565b602002602001015160200181905250635c992fed60e01b8160018151811061157557611575612a76565b60200260200101516020015160008151811061159357611593612a76565b6001600160e01b0319909216602092830291909101909101526115b460d490565b816002815181106115c7576115c7612a76565b60209081029190910181015160ff92909216909152604080516000815291820190528151829060029081106115fe576115fe612a76565b60200260200101516020018190525061161560dc90565b8160038151811061162857611628612a76565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160038151811061166e5761166e612a76565b60200260200101516020018190525063c2bf08c860e01b8160038151811061169857611698612a76565b6020026020010151602001516000815181106116b6576116b6612a76565b6001600160e01b0319909216602092830291909101909101526116d7606e90565b816004815181106116ea576116ea612a76565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160048151811061173057611730612a76565b602002602001015160200181905250635d96628960e01b8160048151811061175a5761175a612a76565b60200260200101516020015160008151811061177857611778612a76565b6001600160e01b031990921660209283029190910190910152611799608c90565b816005815181106117ac576117ac612a76565b602090810291909101015160ff9190911690526040805160018082528183019092529081602001602082028036833701905050816005815181106117f2576117f2612a76565b602002602001015160200181905250637286e5e560e01b8160058151811061181c5761181c612a76565b60200260200101516020015160008151811061183a5761183a612a76565b6001600160e01b03199092166020928302919091019091015261185b607890565b8160068151811061186e5761186e612a76565b602090810291909101015160ff919091169052604080516002808252606082019092529081602001602082028036833701905050816006815181106118b5576118b5612a76565b602002602001015160200181905250638fbc2d8160e01b816006815181106118df576118df612a76565b6020026020010151602001516000815181106118fd576118fd612a76565b6001600160e01b03199092166020928302919091019091015280516357a8fba760e01b908290600690811061193457611934612a76565b60200260200101516020015160018151811061195257611952612a76565b6001600160e01b031990921660209283029190910190910152611973604690565b8160078151811061198657611986612a76565b602090810291909101015160ff9190911690526040805160018082528183019092529081602001602082028036833701905050816007815181106119cc576119cc612a76565b60200260200101516020018190525063026bc43b60e01b816007815181106119f6576119f6612a76565b602002602001015160200151600081518110611a1457611a14612a76565b6001600160e01b03199092166020928302919091019091015290565b6000611a3b336104c6565b610de48260dc61202a565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611a99573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106db9190612a97565b611ac5611ec2565b611b4582836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2b91906128a4565b603c60008560405180602001604052806000815250610ab0565b6110c1637b6a51fd60e01b610a83565b611b5d611ec2565b611b6681610fb3565b611b6e610c89565b6001600160a01b038216611b955760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020612cda83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080516020612cfa833981519152600080611c07611be9611428565b8730611bf9600460008a8c612ab4565b611c0291612ade565b612196565b9150915081611cca5763ffffffff811615611ca757825460ff60a01b1916600160a01b178355611c35611428565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c6493929190612b0e565b600060405180830381600087803b158015611c7e57600080fd5b505af1158015611c92573d6000803e3d6000fd5b5050845460ff60a01b1916855550611cca9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610937565b505050505050565b611cda6122bf565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611d18573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d409190810190612b93565b6001600160a01b0385166080820152604081015190915060ff848116911614611d8f576040808201519051632208245760e11b815260ff80861660048301529091166024820152604401610937565b60a08101516001600160a01b0380821690841614611dcb5760405163dfc430cb60e01b81526001600160a01b0384166004820152602401610937565b846001600160a01b0316816001600160a01b031603611dfd576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b038116611e2457604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611e78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9c919061287c565b15611eba57604051637142ceb360e11b815260040160405180910390fd5b509392505050565b600080516020612d1a83398151915254600160401b900460ff16611ef957604051631afcd79f60e31b815260040160405180910390fd5b565b6101fb611ec2565b600080516020612d1a8339815191528054600160401b810460ff1615906001600160401b0316600081158015611f365750825b90506000826001600160401b03166001148015611f525750303b155b905081158015611f60575080155b15611f7e5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611fa857845460ff60401b1916600160401b1785555b60008087806020019051810190611fbf9190612c56565b91509150611fcc816122a2565b611fd6828a611abd565b611fe663aa745bc360e01b610a83565b50508315610dc557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610dbc565b60006080830152604082015160ff82811691161461206e576040808301519051632208245760e11b815260ff80841660048301529091166024820152604401610937565b60a08201516001600160a01b03811661209a57604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156120ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612112919061287c565b1561213057604051637142ceb360e11b815260040160405180910390fd5b505050565b600080516020612cfa83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516122059190612c85565b600060405180830381855afa9150503d8060008114612240576040519150601f19603f3d011682016040523d82523d6000602084013e612245565b606091505b50915091508115612297576040815110612277578080602001905181019061226d9190612ca1565b9094509250612297565b60208151106122975780806020019051810190612294919061287c565b93505b505094509492505050565b6122aa611ec2565b6110c3816122b6611ec2565b6110c381612135565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561230f57600080fd5b81356001600160e01b03198116811461232757600080fd5b9392505050565b6001600160a01b03811681146110c357600080fd5b803561234e8161232e565b919050565b6000806040838503121561236657600080fd5b82356123718161232e565b915060208301356123818161232e565b809150509250929050565b60005b838110156123a757818101518382015260200161238f565b50506000910152565b600081518084526123c881602086016020860161238c565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161244560c08401826001600160a01b03169052565b5060c083015160e08084015261245f6101008401826123b0565b949350505050565b6001600160601b03811681146110c357600080fd5b803561234e81612467565b60ff811681146110c357600080fd5b803561234e81612487565b80151581146110c357600080fd5b803561234e816124a1565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156124f2576124f26124ba565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612520576125206124ba565b604052919050565b60006001600160401b03821115612541576125416124ba565b50601f01601f191660200190565b600082601f83011261256057600080fd5b813561257361256e82612528565b6124f8565b81815284602083860101111561258857600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c087890312156125be57600080fd5b86356125c98161232e565b955060208701356125d981612467565b945060408701356125e981612487565b935060608701356125f9816124a1565b925060808701356126098161232e565b915060a08701356001600160401b0381111561262457600080fd5b61263089828a0161254f565b9150509295509295509295565b60006020828403121561264f57600080fd5b81356001600160401b0381111561266557600080fd5b61245f8482850161254f565b6000806040838503121561268457600080fd5b823561268f8161232e565b915060208301356001600160401b038111156126aa57600080fd5b6126b68582860161254f565b9150509250929050565b6000602082840312156126d257600080fd5b81356001600160401b03808211156126e957600080fd5b9083019060e082860312156126fd57600080fd5b6127056124d0565b61270e8361247c565b815261271c6020840161247c565b602082015261272d60408401612496565b604082015261273e606084016124af565b606082015261274f60808401612343565b608082015261276060a08401612343565b60a082015260c08301358281111561277757600080fd5b6127838782860161254f565b60c08301525095945050505050565b6000602082840312156127a457600080fd5b81356123278161232e565b6001600160e01b031991909116815260200190565b60006020808301818452808551808352604092508286019150828160051b8701018488016000805b8481101561286257898403603f190186528251805160ff168552880151888501889052805188860181905290890190839060608701905b8083101561284d5783516001600160e01b0319168252928b019260019290920191908b0190612823565b50978a019795505050918701916001016127ec565b50919998505050505050505050565b805161234e816124a1565b60006020828403121561288e57600080fd5b8151612327816124a1565b805161234e81612467565b6000602082840312156128b657600080fd5b815161232781612467565b6000602082840312156128d357600080fd5b815162ffffff8116811461232757600080fd5b600181811c908216806128fa57607f821691505b60208210810361291a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561213057600081815260208120601f850160051c810160208610156129475750805b601f850160051c820191505b81811015611cca57828155600101612953565b81516001600160401b0381111561297f5761297f6124ba565b6129938161298d84546128e6565b84612920565b602080601f8311600181146129c857600084156129b05750858301515b600019600386901b1c1916600185901b178555611cca565b600085815260208120601f198616915b828110156129f7578886015182559484019460019091019084016129d8565b5085821015612a155787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612a3757600080fd5b81516001600160401b038116811461232757600080fd5b805161234e8161232e565b600060208284031215612a6b57600080fd5b81516123278161232e565b634e487b7160e01b600052603260045260246000fd5b805161234e81612487565b600060208284031215612aa957600080fd5b815161232781612487565b60008085851115612ac457600080fd5b83861115612ad157600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612b065780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612b5f57600080fd5b8151612b6d61256e82612528565b818152846020838601011115612b8257600080fd5b61245f82602083016020870161238c565b600060208284031215612ba557600080fd5b81516001600160401b0380821115612bbc57600080fd5b9083019060e08286031215612bd057600080fd5b612bd86124d0565b612be183612899565b8152612bef60208401612899565b6020820152612c0060408401612a8c565b6040820152612c1160608401612871565b6060820152612c2260808401612a4e565b6080820152612c3360a08401612a4e565b60a082015260c083015182811115612c4a57600080fd5b61278387828601612b4e565b60008060408385031215612c6957600080fd5b8251612c748161232e565b60208401519092506123818161232e565b60008251612c9781846020870161238c565b9190910192915050565b60008060408385031215612cb457600080fd5b8251612cbf816124a1565b602084015190925063ffffffff8116811461238157600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220ccb696fb3bff0c34e2dee77eabc654186d3fa0e227c36ee4d6cf89edcdba69c464736f6c63430008140033",
         
     | 
| 
      
 1113 
     | 
    
         
            +
              "linkReferences": {
         
     | 
| 
      
 1114 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 1115 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 1116 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1117 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1118 
     | 
    
         
            +
                      "start": 2455
         
     | 
| 
      
 1119 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1120 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1121 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1122 
     | 
    
         
            +
                      "start": 4904
         
     | 
| 
      
 1123 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1124 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1125 
     | 
    
         
            +
                },
         
     | 
| 
      
 1126 
     | 
    
         
            +
                "contracts/types/Version.sol": {
         
     | 
| 
      
 1127 
     | 
    
         
            +
                  "VersionLib": [
         
     | 
| 
      
 1128 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1129 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1130 
     | 
    
         
            +
                      "start": 1891
         
     | 
| 
      
 1131 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1132 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1133 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1134 
     | 
    
         
            +
                      "start": 3108
         
     | 
| 
      
 1135 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1136 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1137 
     | 
    
         
            +
                  "VersionPartLib": [
         
     | 
| 
      
 1138 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1139 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1140 
     | 
    
         
            +
                      "start": 6981
         
     | 
| 
      
 1141 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1142 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1143 
     | 
    
         
            +
                }
         
     | 
| 
      
 1144 
     | 
    
         
            +
              },
         
     | 
| 
      
 1145 
     | 
    
         
            +
              "deployedLinkReferences": {
         
     | 
| 
      
 1146 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 1147 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 1148 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1149 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1150 
     | 
    
         
            +
                      "start": 2225
         
     | 
| 
      
 1151 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1152 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1153 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1154 
     | 
    
         
            +
                      "start": 4674
         
     | 
| 
      
 1155 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1156 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1157 
     | 
    
         
            +
                },
         
     | 
| 
      
 1158 
     | 
    
         
            +
                "contracts/types/Version.sol": {
         
     | 
| 
      
 1159 
     | 
    
         
            +
                  "VersionLib": [
         
     | 
| 
      
 1160 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1161 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1162 
     | 
    
         
            +
                      "start": 1661
         
     | 
| 
      
 1163 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1164 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1165 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1166 
     | 
    
         
            +
                      "start": 2878
         
     | 
| 
      
 1167 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1168 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1169 
     | 
    
         
            +
                  "VersionPartLib": [
         
     | 
| 
      
 1170 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1171 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1172 
     | 
    
         
            +
                      "start": 6751
         
     | 
| 
      
 1173 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1174 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1175 
     | 
    
         
            +
                }
         
     | 
| 
      
 1176 
     | 
    
         
            +
              }
         
     | 
| 
      
 1177 
     | 
    
         
            +
            }
         
     |