@etherisc/gif-next 0.0.2-e875d61-189 → 0.0.2-e9148e0-933
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 +179 -26
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +176 -23
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +618 -0
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +129 -23
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +74 -181
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +55 -177
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +397 -70
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +444 -73
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +101 -0
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +462 -1400
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +2412 -1075
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +917 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1388 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +931 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +508 -0
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +276 -36
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +33 -1
 - 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 +211 -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/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +381 -77
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +716 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +444 -0
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +177 -75
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/{base/ServiceBase.sol/ServiceBase.json → service/IDistributionService.sol/IDistributionService.json} +204 -58
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +235 -50
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +325 -51
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +421 -53
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +448 -0
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +479 -94
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +448 -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 +358 -37
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +947 -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 +466 -129
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1293 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +513 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +410 -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 +2 -2
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +117 -37
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base → shared}/IService.sol/IService.json +175 -54
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -14
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +190 -37
 - package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/RegisterableUpgradable.sol/RegisterableUpgradable.json} +188 -90
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
 - package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
 - 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 +78 -14
 - 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 +204 -36
 - 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 +283 -62
 - 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 +103 -23
 - 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/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 +2 -2
 - 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/Referral.sol/ReferralLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -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/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 +15 -2
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
 - 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/BaseComponent.sol +26 -29
 - package/contracts/components/Distribution.sol +159 -0
 - package/contracts/components/IBaseComponent.sol +9 -3
 - package/contracts/components/IDistributionComponent.sol +44 -0
 - package/contracts/components/IPoolComponent.sol +14 -9
 - package/contracts/components/IProductComponent.sol +25 -9
 - package/contracts/components/Pool.sol +89 -38
 - package/contracts/components/Product.sol +196 -46
 - package/contracts/experiment/cloning/Cloner.sol +47 -0
 - package/contracts/instance/AccessManagedSimple.sol +115 -0
 - package/contracts/instance/AccessManagerSimple.sol +692 -0
 - package/contracts/instance/IAccessManagerSimple.sol +391 -0
 - package/contracts/instance/IInstance.sol +34 -43
 - package/contracts/instance/IInstanceService.sol +30 -0
 - package/contracts/instance/Instance.sol +427 -55
 - package/contracts/instance/InstanceAccessManager.sol +288 -0
 - package/contracts/instance/InstanceReader.sol +306 -0
 - package/contracts/instance/InstanceService.sol +192 -0
 - package/contracts/instance/InstanceServiceManager.sol +57 -0
 - package/contracts/instance/base/ComponentServiceBase.sol +92 -10
 - package/contracts/instance/base/IInstanceBase.sol +6 -2
 - 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 +38 -0
 - package/contracts/instance/module/IBundle.sol +20 -0
 - package/contracts/instance/module/IDistribution.sol +39 -0
 - package/contracts/instance/module/IPolicy.sol +45 -0
 - package/contracts/instance/module/IRisk.sol +11 -0
 - package/contracts/instance/module/ISetup.sol +44 -0
 - package/contracts/instance/module/ITreasury.sol +23 -0
 - package/contracts/instance/service/ComponentOwnerService.sol +238 -76
 - package/contracts/instance/service/DistributionService.sol +88 -0
 - package/contracts/instance/service/DistributionServiceManager.sol +54 -0
 - package/contracts/instance/service/IComponentOwnerService.sol +1 -3
 - package/contracts/instance/service/IDistributionService.sol +12 -0
 - package/contracts/instance/service/IPoolService.sol +8 -1
 - package/contracts/instance/service/IProductService.sol +56 -7
 - package/contracts/instance/service/PoolService.sol +117 -52
 - package/contracts/instance/service/PoolServiceManager.sol +54 -0
 - package/contracts/instance/service/ProductService.sol +351 -169
 - package/contracts/instance/service/ProductServiceManager.sol +54 -0
 - package/contracts/registry/ChainNft.sol +80 -37
 - package/contracts/registry/IRegistry.sol +47 -25
 - package/contracts/registry/IRegistryService.sol +50 -0
 - package/contracts/registry/ITransferInterceptor.sol +6 -0
 - package/contracts/registry/Registry.sol +333 -270
 - package/contracts/registry/RegistryService.sol +358 -0
 - package/contracts/registry/RegistryServiceManager.sol +80 -0
 - package/contracts/registry/TokenRegistry.sol +111 -0
 - package/contracts/shared/ContractDeployerLib.sol +72 -0
 - package/contracts/shared/ERC165.sol +6 -2
 - package/contracts/shared/INftOwnable.sol +22 -0
 - package/contracts/shared/IRegisterable.sol +8 -15
 - package/contracts/{instance/base → shared}/IService.sol +3 -3
 - package/contracts/shared/IVersionable.sol +55 -11
 - package/contracts/shared/NftOwnable.sol +134 -0
 - package/contracts/shared/ProxyManager.sol +94 -0
 - package/contracts/shared/Registerable.sol +63 -59
 - package/contracts/shared/RegisterableUpgradable.sol +16 -0
 - package/contracts/shared/Service.sol +55 -0
 - package/contracts/shared/TokenHandler.sol +27 -0
 - package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
 - package/contracts/shared/Versionable.sol +113 -55
 - 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 +5 -13
 - package/contracts/types/DistributorType.sol +55 -0
 - package/contracts/types/Fee.sol +10 -5
 - package/contracts/types/Key32.sol +8 -3
 - package/contracts/types/NumberId.sol +52 -0
 - package/contracts/types/ObjectType.sol +40 -11
 - package/contracts/types/Referral.sol +85 -0
 - package/contracts/types/RiskId.sol +43 -0
 - package/contracts/types/RoleId.sol +62 -10
 - package/contracts/types/StateId.sol +5 -1
 - package/contracts/types/Timestamp.sol +7 -3
 - package/contracts/types/UFixed.sol +128 -12
 - package/contracts/types/Version.sol +13 -1
 - package/package.json +4 -3
 - 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/IService.sol/IService.dbg.json +0 -4
 - 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/component/IComponent.sol/IComponentModule.json +0 -136
 - 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/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
 - 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/experiment/statemachine/README.md +0 -112
 - package/contracts/instance/IInstanceLinked.sol +0 -8
 - 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/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
 
| 
         @@ -25,25 +25,20 @@ 
     | 
|
| 
       25 
25 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       26 
26 
     | 
    
         
             
                    }
         
     | 
| 
       27 
27 
     | 
    
         
             
                  ],
         
     | 
| 
       28 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 28 
     | 
    
         
            +
                  "name": "LogVersionableInitialized",
         
     | 
| 
       29 
29 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       30 
30 
     | 
    
         
             
                },
         
     | 
| 
       31 
31 
     | 
    
         
             
                {
         
     | 
| 
       32 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       33 
     | 
    
         
            -
             
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
       35 
     | 
    
         
            -
                      "name": "implementation",
         
     | 
| 
       36 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       37 
     | 
    
         
            -
                    },
         
     | 
| 
      
 32 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 33 
     | 
    
         
            +
                  "name": "getInitializedVersion",
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       38 
35 
     | 
    
         
             
                    {
         
     | 
| 
       39 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       40 
     | 
    
         
            -
                      "name": " 
     | 
| 
       41 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 36 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 38 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       42 
39 
     | 
    
         
             
                    }
         
     | 
| 
       43 
40 
     | 
    
         
             
                  ],
         
     | 
| 
       44 
     | 
    
         
            -
                  " 
     | 
| 
       45 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       46 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       47 
42 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       48 
43 
     | 
    
         
             
                },
         
     | 
| 
       49 
44 
     | 
    
         
             
                {
         
     | 
| 
         @@ -137,6 +132,29 @@ 
     | 
|
| 
       137 
132 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       138 
133 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       139 
134 
     | 
    
         
             
                },
         
     | 
| 
      
 135 
     | 
    
         
            +
                {
         
     | 
| 
      
 136 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 137 
     | 
    
         
            +
                    {
         
     | 
| 
      
 138 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 139 
     | 
    
         
            +
                      "name": "implementation",
         
     | 
| 
      
 140 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 141 
     | 
    
         
            +
                    },
         
     | 
| 
      
 142 
     | 
    
         
            +
                    {
         
     | 
| 
      
 143 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 144 
     | 
    
         
            +
                      "name": "activatedBy",
         
     | 
| 
      
 145 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 146 
     | 
    
         
            +
                    },
         
     | 
| 
      
 147 
     | 
    
         
            +
                    {
         
     | 
| 
      
 148 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 149 
     | 
    
         
            +
                      "name": "activationData",
         
     | 
| 
      
 150 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 151 
     | 
    
         
            +
                    }
         
     | 
| 
      
 152 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 153 
     | 
    
         
            +
                  "name": "initialize",
         
     | 
| 
      
 154 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 155 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 156 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 157 
     | 
    
         
            +
                },
         
     | 
| 
       140 
158 
     | 
    
         
             
                {
         
     | 
| 
       141 
159 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       142 
160 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -145,7 +163,7 @@ 
     | 
|
| 
       145 
163 
     | 
    
         
             
                      "type": "uint24"
         
     | 
| 
       146 
164 
     | 
    
         
             
                    }
         
     | 
| 
       147 
165 
     | 
    
         
             
                  ],
         
     | 
| 
       148 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 166 
     | 
    
         
            +
                  "name": "isInitialized",
         
     | 
| 
       149 
167 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       150 
168 
     | 
    
         
             
                    {
         
     | 
| 
       151 
169 
     | 
    
         
             
                      "internalType": "bool",
         
     | 
| 
         @@ -155,6 +173,29 @@ 
     | 
|
| 
       155 
173 
     | 
    
         
             
                  ],
         
     | 
| 
       156 
174 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       157 
175 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
      
 176 
     | 
    
         
            +
                },
         
     | 
| 
      
 177 
     | 
    
         
            +
                {
         
     | 
| 
      
 178 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 179 
     | 
    
         
            +
                    {
         
     | 
| 
      
 180 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 181 
     | 
    
         
            +
                      "name": "implementation",
         
     | 
| 
      
 182 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 183 
     | 
    
         
            +
                    },
         
     | 
| 
      
 184 
     | 
    
         
            +
                    {
         
     | 
| 
      
 185 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 186 
     | 
    
         
            +
                      "name": "activatedBy",
         
     | 
| 
      
 187 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 188 
     | 
    
         
            +
                    },
         
     | 
| 
      
 189 
     | 
    
         
            +
                    {
         
     | 
| 
      
 190 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 191 
     | 
    
         
            +
                      "name": "upgradeData",
         
     | 
| 
      
 192 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 193 
     | 
    
         
            +
                    }
         
     | 
| 
      
 194 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 195 
     | 
    
         
            +
                  "name": "upgrade",
         
     | 
| 
      
 196 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 197 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 198 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
       158 
199 
     | 
    
         
             
                }
         
     | 
| 
       159 
200 
     | 
    
         
             
              ],
         
     | 
| 
       160 
201 
     | 
    
         
             
              "bytecode": "0x",
         
     | 
| 
         @@ -0,0 +1,158 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "NftOwnable",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/shared/NftOwnable.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 8 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 9 
     | 
    
         
            +
                  "type": "constructor"
         
     | 
| 
      
 10 
     | 
    
         
            +
                },
         
     | 
| 
      
 11 
     | 
    
         
            +
                {
         
     | 
| 
      
 12 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 13 
     | 
    
         
            +
                    {
         
     | 
| 
      
 14 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 15 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 16 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 17 
     | 
    
         
            +
                    },
         
     | 
| 
      
 18 
     | 
    
         
            +
                    {
         
     | 
| 
      
 19 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 20 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 21 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 22 
     | 
    
         
            +
                    }
         
     | 
| 
      
 23 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 24 
     | 
    
         
            +
                  "name": "ErrorAlreadyLinked",
         
     | 
| 
      
 25 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 26 
     | 
    
         
            +
                },
         
     | 
| 
      
 27 
     | 
    
         
            +
                {
         
     | 
| 
      
 28 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 29 
     | 
    
         
            +
                    {
         
     | 
| 
      
 30 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 31 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 32 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 33 
     | 
    
         
            +
                    }
         
     | 
| 
      
 34 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 35 
     | 
    
         
            +
                  "name": "ErrorContractNotRegistered",
         
     | 
| 
      
 36 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 37 
     | 
    
         
            +
                },
         
     | 
| 
      
 38 
     | 
    
         
            +
                {
         
     | 
| 
      
 39 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 40 
     | 
    
         
            +
                    {
         
     | 
| 
      
 41 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 42 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 43 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 44 
     | 
    
         
            +
                    }
         
     | 
| 
      
 45 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 46 
     | 
    
         
            +
                  "name": "ErrorNotOwner",
         
     | 
| 
      
 47 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 48 
     | 
    
         
            +
                },
         
     | 
| 
      
 49 
     | 
    
         
            +
                {
         
     | 
| 
      
 50 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 51 
     | 
    
         
            +
                    {
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 54 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 55 
     | 
    
         
            +
                    }
         
     | 
| 
      
 56 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 57 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 58 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 59 
     | 
    
         
            +
                },
         
     | 
| 
      
 60 
     | 
    
         
            +
                {
         
     | 
| 
      
 61 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 62 
     | 
    
         
            +
                  "name": "ErrorRegistryAddressZero",
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 64 
     | 
    
         
            +
                },
         
     | 
| 
      
 65 
     | 
    
         
            +
                {
         
     | 
| 
      
 66 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 67 
     | 
    
         
            +
                    {
         
     | 
| 
      
 68 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 69 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 70 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 71 
     | 
    
         
            +
                    }
         
     | 
| 
      
 72 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 73 
     | 
    
         
            +
                  "name": "ErrorRegistryAlreadyInitialized",
         
     | 
| 
      
 74 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 75 
     | 
    
         
            +
                },
         
     | 
| 
      
 76 
     | 
    
         
            +
                {
         
     | 
| 
      
 77 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 78 
     | 
    
         
            +
                  "name": "ErrorRegistryNotInitialized",
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 80 
     | 
    
         
            +
                },
         
     | 
| 
      
 81 
     | 
    
         
            +
                {
         
     | 
| 
      
 82 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 83 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 85 
     | 
    
         
            +
                    {
         
     | 
| 
      
 86 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 87 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 88 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 89 
     | 
    
         
            +
                    }
         
     | 
| 
      
 90 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 91 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 92 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 93 
     | 
    
         
            +
                },
         
     | 
| 
      
 94 
     | 
    
         
            +
                {
         
     | 
| 
      
 95 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 96 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 97 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 98 
     | 
    
         
            +
                    {
         
     | 
| 
      
 99 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 100 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 101 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 102 
     | 
    
         
            +
                    }
         
     | 
| 
      
 103 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 104 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 105 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 106 
     | 
    
         
            +
                },
         
     | 
| 
      
 107 
     | 
    
         
            +
                {
         
     | 
| 
      
 108 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 109 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 110 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 111 
     | 
    
         
            +
                    {
         
     | 
| 
      
 112 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 113 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 114 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 115 
     | 
    
         
            +
                    }
         
     | 
| 
      
 116 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 117 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 118 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 119 
     | 
    
         
            +
                },
         
     | 
| 
      
 120 
     | 
    
         
            +
                {
         
     | 
| 
      
 121 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 122 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 123 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 124 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 125 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 126 
     | 
    
         
            +
                }
         
     | 
| 
      
 127 
     | 
    
         
            +
              ],
         
     | 
| 
      
 128 
     | 
    
         
            +
              "bytecode": "0x608060405234801561001057600080fd5b50600180546001600160a01b031916331790556104a7806100326000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063138461e0146100515780635ab1bd531461005b578063644c45e014610085578063893d20e8146100b0575b600080fd5b6100596100b8565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b600054600160a01b90046001600160601b03166040516001600160601b03909116815260200161007c565b6100686102da565b6000546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561011a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061013e91906103f6565b15610185576000546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6000546001600160a01b03166101ae5760405163cf29926160e01b815260040160405180910390fd5b60005460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156101f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061021b91906103f6565b610243576040516372657a5160e01b81526001600160a01b038216600482015260240161017c565b600054604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561028d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b1919061041f565b600060146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561033d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061036191906103f6565b156103e657600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa1580156103bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103e19190610448565b905090565b506001546001600160a01b031690565b60006020828403121561040857600080fd5b8151801515811461041857600080fd5b9392505050565b60006020828403121561043157600080fd5b81516001600160601b038116811461041857600080fd5b60006020828403121561045a57600080fd5b81516001600160a01b038116811461041857600080fdfea2646970667358221220440fc0eb0fa70cf833b5193cdffd0ac2440c8252d85b8604e497a4237eaf96f464736f6c63430008140033",
         
     | 
| 
      
 129 
     | 
    
         
            +
              "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c8063138461e0146100515780635ab1bd531461005b578063644c45e014610085578063893d20e8146100b0575b600080fd5b6100596100b8565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b600054600160a01b90046001600160601b03166040516001600160601b03909116815260200161007c565b6100686102da565b6000546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561011a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061013e91906103f6565b15610185576000546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6000546001600160a01b03166101ae5760405163cf29926160e01b815260040160405180910390fd5b60005460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156101f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061021b91906103f6565b610243576040516372657a5160e01b81526001600160a01b038216600482015260240161017c565b600054604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561028d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b1919061041f565b600060146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561033d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061036191906103f6565b156103e657600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa1580156103bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103e19190610448565b905090565b506001546001600160a01b031690565b60006020828403121561040857600080fd5b8151801515811461041857600080fd5b9392505050565b60006020828403121561043157600080fd5b81516001600160601b038116811461041857600080fd5b60006020828403121561045a57600080fd5b81516001600160a01b038116811461041857600080fdfea2646970667358221220440fc0eb0fa70cf833b5193cdffd0ac2440c8252d85b8604e497a4237eaf96f464736f6c63430008140033",
         
     | 
| 
      
 130 
     | 
    
         
            +
              "linkReferences": {
         
     | 
| 
      
 131 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 132 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 133 
     | 
    
         
            +
                    {
         
     | 
| 
      
 134 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 135 
     | 
    
         
            +
                      "start": 274
         
     | 
| 
      
 136 
     | 
    
         
            +
                    },
         
     | 
| 
      
 137 
     | 
    
         
            +
                    {
         
     | 
| 
      
 138 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 139 
     | 
    
         
            +
                      "start": 821
         
     | 
| 
      
 140 
     | 
    
         
            +
                    }
         
     | 
| 
      
 141 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 142 
     | 
    
         
            +
                }
         
     | 
| 
      
 143 
     | 
    
         
            +
              },
         
     | 
| 
      
 144 
     | 
    
         
            +
              "deployedLinkReferences": {
         
     | 
| 
      
 145 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 146 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 147 
     | 
    
         
            +
                    {
         
     | 
| 
      
 148 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 149 
     | 
    
         
            +
                      "start": 224
         
     | 
| 
      
 150 
     | 
    
         
            +
                    },
         
     | 
| 
      
 151 
     | 
    
         
            +
                    {
         
     | 
| 
      
 152 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 153 
     | 
    
         
            +
                      "start": 771
         
     | 
| 
      
 154 
     | 
    
         
            +
                    }
         
     | 
| 
      
 155 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 156 
     | 
    
         
            +
                }
         
     | 
| 
      
 157 
     | 
    
         
            +
              }
         
     | 
| 
      
 158 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,349 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "ProxyManager",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/shared/ProxyManager.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 8 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 9 
     | 
    
         
            +
                  "type": "constructor"
         
     | 
| 
      
 10 
     | 
    
         
            +
                },
         
     | 
| 
      
 11 
     | 
    
         
            +
                {
         
     | 
| 
      
 12 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 13 
     | 
    
         
            +
                  "name": "ErrorAlreadyDeployed",
         
     | 
| 
      
 14 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 15 
     | 
    
         
            +
                },
         
     | 
| 
      
 16 
     | 
    
         
            +
                {
         
     | 
| 
      
 17 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 18 
     | 
    
         
            +
                  "name": "ErrorAlreadyDeployedWithSalt",
         
     | 
| 
      
 19 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 20 
     | 
    
         
            +
                },
         
     | 
| 
      
 21 
     | 
    
         
            +
                {
         
     | 
| 
      
 22 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 23 
     | 
    
         
            +
                    {
         
     | 
| 
      
 24 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 25 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 27 
     | 
    
         
            +
                    },
         
     | 
| 
      
 28 
     | 
    
         
            +
                    {
         
     | 
| 
      
 29 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 30 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 31 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 32 
     | 
    
         
            +
                    }
         
     | 
| 
      
 33 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "name": "ErrorAlreadyLinked",
         
     | 
| 
      
 35 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 36 
     | 
    
         
            +
                },
         
     | 
| 
      
 37 
     | 
    
         
            +
                {
         
     | 
| 
      
 38 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 39 
     | 
    
         
            +
                    {
         
     | 
| 
      
 40 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 41 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 42 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 43 
     | 
    
         
            +
                    }
         
     | 
| 
      
 44 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "name": "ErrorContractNotRegistered",
         
     | 
| 
      
 46 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 47 
     | 
    
         
            +
                },
         
     | 
| 
      
 48 
     | 
    
         
            +
                {
         
     | 
| 
      
 49 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 50 
     | 
    
         
            +
                    {
         
     | 
| 
      
 51 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 54 
     | 
    
         
            +
                    }
         
     | 
| 
      
 55 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "name": "ErrorNotOwner",
         
     | 
| 
      
 57 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 58 
     | 
    
         
            +
                },
         
     | 
| 
      
 59 
     | 
    
         
            +
                {
         
     | 
| 
      
 60 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 61 
     | 
    
         
            +
                    {
         
     | 
| 
      
 62 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 63 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 64 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 65 
     | 
    
         
            +
                    }
         
     | 
| 
      
 66 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 68 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 69 
     | 
    
         
            +
                },
         
     | 
| 
      
 70 
     | 
    
         
            +
                {
         
     | 
| 
      
 71 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 72 
     | 
    
         
            +
                  "name": "ErrorNotYetDeployed",
         
     | 
| 
      
 73 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 74 
     | 
    
         
            +
                },
         
     | 
| 
      
 75 
     | 
    
         
            +
                {
         
     | 
| 
      
 76 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 77 
     | 
    
         
            +
                  "name": "ErrorRegistryAddressZero",
         
     | 
| 
      
 78 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 79 
     | 
    
         
            +
                },
         
     | 
| 
      
 80 
     | 
    
         
            +
                {
         
     | 
| 
      
 81 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 82 
     | 
    
         
            +
                    {
         
     | 
| 
      
 83 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 84 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 85 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 86 
     | 
    
         
            +
                    }
         
     | 
| 
      
 87 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 88 
     | 
    
         
            +
                  "name": "ErrorRegistryAlreadyInitialized",
         
     | 
| 
      
 89 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 90 
     | 
    
         
            +
                },
         
     | 
| 
      
 91 
     | 
    
         
            +
                {
         
     | 
| 
      
 92 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 93 
     | 
    
         
            +
                  "name": "ErrorRegistryNotInitialized",
         
     | 
| 
      
 94 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 95 
     | 
    
         
            +
                },
         
     | 
| 
      
 96 
     | 
    
         
            +
                {
         
     | 
| 
      
 97 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 98 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 99 
     | 
    
         
            +
                    {
         
     | 
| 
      
 100 
     | 
    
         
            +
                      "indexed": true,
         
     | 
| 
      
 101 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 102 
     | 
    
         
            +
                      "name": "proxy",
         
     | 
| 
      
 103 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 104 
     | 
    
         
            +
                    },
         
     | 
| 
      
 105 
     | 
    
         
            +
                    {
         
     | 
| 
      
 106 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 107 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 108 
     | 
    
         
            +
                      "name": "initialImplementation",
         
     | 
| 
      
 109 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 110 
     | 
    
         
            +
                    }
         
     | 
| 
      
 111 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 112 
     | 
    
         
            +
                  "name": "LogProxyDeployed",
         
     | 
| 
      
 113 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 114 
     | 
    
         
            +
                },
         
     | 
| 
      
 115 
     | 
    
         
            +
                {
         
     | 
| 
      
 116 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 117 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 118 
     | 
    
         
            +
                    {
         
     | 
| 
      
 119 
     | 
    
         
            +
                      "indexed": true,
         
     | 
| 
      
 120 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 121 
     | 
    
         
            +
                      "name": "proxy",
         
     | 
| 
      
 122 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 123 
     | 
    
         
            +
                    },
         
     | 
| 
      
 124 
     | 
    
         
            +
                    {
         
     | 
| 
      
 125 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 126 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 127 
     | 
    
         
            +
                      "name": "initialImplementation",
         
     | 
| 
      
 128 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 129 
     | 
    
         
            +
                    }
         
     | 
| 
      
 130 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 131 
     | 
    
         
            +
                  "name": "LogProxyDeployedWithSalt",
         
     | 
| 
      
 132 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 133 
     | 
    
         
            +
                },
         
     | 
| 
      
 134 
     | 
    
         
            +
                {
         
     | 
| 
      
 135 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 136 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 137 
     | 
    
         
            +
                    {
         
     | 
| 
      
 138 
     | 
    
         
            +
                      "indexed": true,
         
     | 
| 
      
 139 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 140 
     | 
    
         
            +
                      "name": "proxy",
         
     | 
| 
      
 141 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 142 
     | 
    
         
            +
                    },
         
     | 
| 
      
 143 
     | 
    
         
            +
                    {
         
     | 
| 
      
 144 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 145 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 146 
     | 
    
         
            +
                      "name": "upgradedImplementation",
         
     | 
| 
      
 147 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 148 
     | 
    
         
            +
                    }
         
     | 
| 
      
 149 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 150 
     | 
    
         
            +
                  "name": "LogProxyUpgraded",
         
     | 
| 
      
 151 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 152 
     | 
    
         
            +
                },
         
     | 
| 
      
 153 
     | 
    
         
            +
                {
         
     | 
| 
      
 154 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 155 
     | 
    
         
            +
                    {
         
     | 
| 
      
 156 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 157 
     | 
    
         
            +
                      "name": "initialImplementation",
         
     | 
| 
      
 158 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 159 
     | 
    
         
            +
                    },
         
     | 
| 
      
 160 
     | 
    
         
            +
                    {
         
     | 
| 
      
 161 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 162 
     | 
    
         
            +
                      "name": "initializationData",
         
     | 
| 
      
 163 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 164 
     | 
    
         
            +
                    }
         
     | 
| 
      
 165 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 166 
     | 
    
         
            +
                  "name": "deploy",
         
     | 
| 
      
 167 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 168 
     | 
    
         
            +
                    {
         
     | 
| 
      
 169 
     | 
    
         
            +
                      "internalType": "contract IVersionable",
         
     | 
| 
      
 170 
     | 
    
         
            +
                      "name": "versionable",
         
     | 
| 
      
 171 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 172 
     | 
    
         
            +
                    }
         
     | 
| 
      
 173 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 174 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 175 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 176 
     | 
    
         
            +
                },
         
     | 
| 
      
 177 
     | 
    
         
            +
                {
         
     | 
| 
      
 178 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 179 
     | 
    
         
            +
                    {
         
     | 
| 
      
 180 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 181 
     | 
    
         
            +
                      "name": "implementation",
         
     | 
| 
      
 182 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 183 
     | 
    
         
            +
                    },
         
     | 
| 
      
 184 
     | 
    
         
            +
                    {
         
     | 
| 
      
 185 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 186 
     | 
    
         
            +
                      "name": "proxyOwner",
         
     | 
| 
      
 187 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 188 
     | 
    
         
            +
                    },
         
     | 
| 
      
 189 
     | 
    
         
            +
                    {
         
     | 
| 
      
 190 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 191 
     | 
    
         
            +
                      "name": "deployData",
         
     | 
| 
      
 192 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 193 
     | 
    
         
            +
                    }
         
     | 
| 
      
 194 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 195 
     | 
    
         
            +
                  "name": "getDeployData",
         
     | 
| 
      
 196 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 197 
     | 
    
         
            +
                    {
         
     | 
| 
      
 198 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 199 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 200 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 201 
     | 
    
         
            +
                    }
         
     | 
| 
      
 202 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 203 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 204 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 205 
     | 
    
         
            +
                },
         
     | 
| 
      
 206 
     | 
    
         
            +
                {
         
     | 
| 
      
 207 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 208 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 209 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 210 
     | 
    
         
            +
                    {
         
     | 
| 
      
 211 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 212 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 213 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 214 
     | 
    
         
            +
                    }
         
     | 
| 
      
 215 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 216 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 217 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 218 
     | 
    
         
            +
                },
         
     | 
| 
      
 219 
     | 
    
         
            +
                {
         
     | 
| 
      
 220 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 221 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 222 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 223 
     | 
    
         
            +
                    {
         
     | 
| 
      
 224 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 225 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 226 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 227 
     | 
    
         
            +
                    }
         
     | 
| 
      
 228 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 229 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 230 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 231 
     | 
    
         
            +
                },
         
     | 
| 
      
 232 
     | 
    
         
            +
                {
         
     | 
| 
      
 233 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 234 
     | 
    
         
            +
                  "name": "getProxy",
         
     | 
| 
      
 235 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 236 
     | 
    
         
            +
                    {
         
     | 
| 
      
 237 
     | 
    
         
            +
                      "internalType": "contract UpgradableProxyWithAdmin",
         
     | 
| 
      
 238 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 239 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 240 
     | 
    
         
            +
                    }
         
     | 
| 
      
 241 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 242 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 243 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 244 
     | 
    
         
            +
                },
         
     | 
| 
      
 245 
     | 
    
         
            +
                {
         
     | 
| 
      
 246 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 247 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 248 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 249 
     | 
    
         
            +
                    {
         
     | 
| 
      
 250 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 251 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 252 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 253 
     | 
    
         
            +
                    }
         
     | 
| 
      
 254 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 255 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 256 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 257 
     | 
    
         
            +
                },
         
     | 
| 
      
 258 
     | 
    
         
            +
                {
         
     | 
| 
      
 259 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 260 
     | 
    
         
            +
                    {
         
     | 
| 
      
 261 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 262 
     | 
    
         
            +
                      "name": "implementation",
         
     | 
| 
      
 263 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 264 
     | 
    
         
            +
                    },
         
     | 
| 
      
 265 
     | 
    
         
            +
                    {
         
     | 
| 
      
 266 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 267 
     | 
    
         
            +
                      "name": "proxyOwner",
         
     | 
| 
      
 268 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 269 
     | 
    
         
            +
                    },
         
     | 
| 
      
 270 
     | 
    
         
            +
                    {
         
     | 
| 
      
 271 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 272 
     | 
    
         
            +
                      "name": "upgradeData",
         
     | 
| 
      
 273 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 274 
     | 
    
         
            +
                    }
         
     | 
| 
      
 275 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 276 
     | 
    
         
            +
                  "name": "getUpgradeData",
         
     | 
| 
      
 277 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 278 
     | 
    
         
            +
                    {
         
     | 
| 
      
 279 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 280 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 281 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 282 
     | 
    
         
            +
                    }
         
     | 
| 
      
 283 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 284 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 285 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 286 
     | 
    
         
            +
                },
         
     | 
| 
      
 287 
     | 
    
         
            +
                {
         
     | 
| 
      
 288 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 289 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 290 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 291 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 292 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 293 
     | 
    
         
            +
                },
         
     | 
| 
      
 294 
     | 
    
         
            +
                {
         
     | 
| 
      
 295 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 296 
     | 
    
         
            +
                    {
         
     | 
| 
      
 297 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 298 
     | 
    
         
            +
                      "name": "newImplementation",
         
     | 
| 
      
 299 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 300 
     | 
    
         
            +
                    },
         
     | 
| 
      
 301 
     | 
    
         
            +
                    {
         
     | 
| 
      
 302 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 303 
     | 
    
         
            +
                      "name": "upgradeData",
         
     | 
| 
      
 304 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 305 
     | 
    
         
            +
                    }
         
     | 
| 
      
 306 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 307 
     | 
    
         
            +
                  "name": "upgrade",
         
     | 
| 
      
 308 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 309 
     | 
    
         
            +
                    {
         
     | 
| 
      
 310 
     | 
    
         
            +
                      "internalType": "contract IVersionable",
         
     | 
| 
      
 311 
     | 
    
         
            +
                      "name": "versionable",
         
     | 
| 
      
 312 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 313 
     | 
    
         
            +
                    }
         
     | 
| 
      
 314 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 315 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 316 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 317 
     | 
    
         
            +
                }
         
     | 
| 
      
 318 
     | 
    
         
            +
              ],
         
     | 
| 
      
 319 
     | 
    
         
            +
              "bytecode": "0x608060405234801561001057600080fd5b50600180546001600160a01b03191633179055611a5c806100326000396000f3fe60806040523480156200001157600080fd5b50600436106200009f5760003560e01c8063933a9ce8116200006e578063933a9ce81462000110578063aef485a01462000122578063c987336c1462000148578063e97fac05146200015f578063f6876768146200017657600080fd5b8063138461e014620000a45780635ab1bd5314620000b0578063644c45e014620000da578063893d20e81462000106575b600080fd5b620000ae6200018d565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b600054600160a01b90046001600160601b03166040516001600160601b039091168152602001620000d1565b620000bd620003bc565b6002546001600160a01b0316620000bd565b62000139620001333660046200092d565b620004df565b604051620000d19190620009df565b620000bd62000159366004620009fb565b6200053b565b620000bd62000170366004620009fb565b62000708565b62000139620001873660046200092d565b6200083a565b6000546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015620001f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000216919062000a51565b156200025e576000546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6000546001600160a01b0316620002885760405163cf29926160e01b815260040160405180910390fd5b60005460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015620002d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f8919062000a51565b62000322576040516372657a5160e01b81526001600160a01b038216600482015260240162000255565b600054604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156200036d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000393919062000a75565b600060146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562000420573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000446919062000a51565b15620004cf57600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015620004a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004ca919062000aa0565b905090565b506001546001600160a01b031690565b606063a745e3df60e01b848484604051602401620005009392919062000ac0565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290509392505050565b600062000547620003bc565b6001600160a01b0316336001600160a01b0316146200057c5760405163700dd81160e01b815233600482015260240162000255565b600254600160a01b900460ff16620005a757604051631e35411160e31b815260040160405180910390fd5b6000620005b3620003bc565b90506000620005ca6002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303816000875af11580156200060a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000630919062000aa0565b6002549091506001600160a01b031660006200064e878588620004df565b604051639623609d60e01b81529091506001600160a01b03841690639623609d90620006839085908b90869060040162000ac0565b600060405180830381600087803b1580156200069e57600080fd5b505af1158015620006b3573d6000803e3d6000fd5b50506002546040516001600160a01b038b8116825290911697508792507f5f1d3094af018381967fbedd54b80ffb09c5a9799db985f5e17e322672686306915060200160405180910390a25050505092915050565b600062000714620003bc565b6001600160a01b0316336001600160a01b031614620007495760405163700dd81160e01b815233600482015260240162000255565b600254600160a01b900460ff161562000775576040516375842f8760e01b815260040160405180910390fd5b600062000781620003bc565b9050306000620007938684876200083a565b9050858282604051620007a6906200085b565b620007b49392919062000ac0565b604051809103906000f080158015620007d1573d6000803e3d6000fd5b50600280546001600160a81b0319166001600160a01b0392831617600160a01b179081905560405188831681529116945084907fc5c7b8d20d7cac78e56fc596f8d26c700e5077f096017736e3526ab8af4850359060200160405180910390a250505092915050565b606063cf7a1d7760e01b848484604051602401620005009392919062000ac0565b610f2f8062000af883390190565b6001600160a01b03811681146200087f57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620008aa57600080fd5b813567ffffffffffffffff80821115620008c857620008c862000882565b604051601f8301601f19908116603f01168101908282118183101715620008f357620008f362000882565b816040528381528660208588010111156200090d57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156200094357600080fd5b8335620009508162000869565b92506020840135620009628162000869565b9150604084013567ffffffffffffffff8111156200097f57600080fd5b6200098d8682870162000898565b9150509250925092565b6000815180845260005b81811015620009bf57602081850181015186830182015201620009a1565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000620009f4602083018462000997565b9392505050565b6000806040838503121562000a0f57600080fd5b823562000a1c8162000869565b9150602083013567ffffffffffffffff81111562000a3957600080fd5b62000a478582860162000898565b9150509250929050565b60006020828403121562000a6457600080fd5b81518015158114620009f457600080fd5b60006020828403121562000a8857600080fd5b81516001600160601b0381168114620009f457600080fd5b60006020828403121562000ab357600080fd5b8151620009f48162000869565b6001600160a01b0384811682528316602082015260606040820181905260009062000aee9083018462000997565b9594505050505056fe60a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea264697066735822122061d21ea0f293a274302e47ad0e30c5fb666a07dc4f8e1cfa79d3064668655aa064736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a2646970667358221220fea6c221f9932cce5351aca69706cac7bb206bb656768f3fb18258a0442314b664736f6c63430008140033",
         
     | 
| 
      
 320 
     | 
    
         
            +
              "deployedBytecode": "0x60806040523480156200001157600080fd5b50600436106200009f5760003560e01c8063933a9ce8116200006e578063933a9ce81462000110578063aef485a01462000122578063c987336c1462000148578063e97fac05146200015f578063f6876768146200017657600080fd5b8063138461e014620000a45780635ab1bd5314620000b0578063644c45e014620000da578063893d20e81462000106575b600080fd5b620000ae6200018d565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b600054600160a01b90046001600160601b03166040516001600160601b039091168152602001620000d1565b620000bd620003bc565b6002546001600160a01b0316620000bd565b62000139620001333660046200092d565b620004df565b604051620000d19190620009df565b620000bd62000159366004620009fb565b6200053b565b620000bd62000170366004620009fb565b62000708565b62000139620001873660046200092d565b6200083a565b6000546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015620001f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000216919062000a51565b156200025e576000546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6000546001600160a01b0316620002885760405163cf29926160e01b815260040160405180910390fd5b60005460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015620002d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f8919062000a51565b62000322576040516372657a5160e01b81526001600160a01b038216600482015260240162000255565b600054604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156200036d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000393919062000a75565b600060146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562000420573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000446919062000a51565b15620004cf57600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015620004a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004ca919062000aa0565b905090565b506001546001600160a01b031690565b606063a745e3df60e01b848484604051602401620005009392919062000ac0565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290509392505050565b600062000547620003bc565b6001600160a01b0316336001600160a01b0316146200057c5760405163700dd81160e01b815233600482015260240162000255565b600254600160a01b900460ff16620005a757604051631e35411160e31b815260040160405180910390fd5b6000620005b3620003bc565b90506000620005ca6002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303816000875af11580156200060a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000630919062000aa0565b6002549091506001600160a01b031660006200064e878588620004df565b604051639623609d60e01b81529091506001600160a01b03841690639623609d90620006839085908b90869060040162000ac0565b600060405180830381600087803b1580156200069e57600080fd5b505af1158015620006b3573d6000803e3d6000fd5b50506002546040516001600160a01b038b8116825290911697508792507f5f1d3094af018381967fbedd54b80ffb09c5a9799db985f5e17e322672686306915060200160405180910390a25050505092915050565b600062000714620003bc565b6001600160a01b0316336001600160a01b031614620007495760405163700dd81160e01b815233600482015260240162000255565b600254600160a01b900460ff161562000775576040516375842f8760e01b815260040160405180910390fd5b600062000781620003bc565b9050306000620007938684876200083a565b9050858282604051620007a6906200085b565b620007b49392919062000ac0565b604051809103906000f080158015620007d1573d6000803e3d6000fd5b50600280546001600160a81b0319166001600160a01b0392831617600160a01b179081905560405188831681529116945084907fc5c7b8d20d7cac78e56fc596f8d26c700e5077f096017736e3526ab8af4850359060200160405180910390a250505092915050565b606063cf7a1d7760e01b848484604051602401620005009392919062000ac0565b610f2f8062000af883390190565b6001600160a01b03811681146200087f57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620008aa57600080fd5b813567ffffffffffffffff80821115620008c857620008c862000882565b604051601f8301601f19908116603f01168101908282118183101715620008f357620008f362000882565b816040528381528660208588010111156200090d57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156200094357600080fd5b8335620009508162000869565b92506020840135620009628162000869565b9150604084013567ffffffffffffffff8111156200097f57600080fd5b6200098d8682870162000898565b9150509250925092565b6000815180845260005b81811015620009bf57602081850181015186830182015201620009a1565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000620009f4602083018462000997565b9392505050565b6000806040838503121562000a0f57600080fd5b823562000a1c8162000869565b9150602083013567ffffffffffffffff81111562000a3957600080fd5b62000a478582860162000898565b9150509250929050565b60006020828403121562000a6457600080fd5b81518015158114620009f457600080fd5b60006020828403121562000a8857600080fd5b81516001600160601b0381168114620009f457600080fd5b60006020828403121562000ab357600080fd5b8151620009f48162000869565b6001600160a01b0384811682528316602082015260606040820181905260009062000aee9083018462000997565b9594505050505056fe60a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea264697066735822122061d21ea0f293a274302e47ad0e30c5fb666a07dc4f8e1cfa79d3064668655aa064736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a2646970667358221220fea6c221f9932cce5351aca69706cac7bb206bb656768f3fb18258a0442314b664736f6c63430008140033",
         
     | 
| 
      
 321 
     | 
    
         
            +
              "linkReferences": {
         
     | 
| 
      
 322 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 323 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 324 
     | 
    
         
            +
                    {
         
     | 
| 
      
 325 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 326 
     | 
    
         
            +
                      "start": 487
         
     | 
| 
      
 327 
     | 
    
         
            +
                    },
         
     | 
| 
      
 328 
     | 
    
         
            +
                    {
         
     | 
| 
      
 329 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 330 
     | 
    
         
            +
                      "start": 1047
         
     | 
| 
      
 331 
     | 
    
         
            +
                    }
         
     | 
| 
      
 332 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 333 
     | 
    
         
            +
                }
         
     | 
| 
      
 334 
     | 
    
         
            +
              },
         
     | 
| 
      
 335 
     | 
    
         
            +
              "deployedLinkReferences": {
         
     | 
| 
      
 336 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 337 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 338 
     | 
    
         
            +
                    {
         
     | 
| 
      
 339 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 340 
     | 
    
         
            +
                      "start": 437
         
     | 
| 
      
 341 
     | 
    
         
            +
                    },
         
     | 
| 
      
 342 
     | 
    
         
            +
                    {
         
     | 
| 
      
 343 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 344 
     | 
    
         
            +
                      "start": 997
         
     | 
| 
      
 345 
     | 
    
         
            +
                    }
         
     | 
| 
      
 346 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 347 
     | 
    
         
            +
                }
         
     | 
| 
      
 348 
     | 
    
         
            +
              }
         
     | 
| 
      
 349 
     | 
    
         
            +
            }
         
     |