@etherisc/gif-next 0.0.2-9e6b423-414 → 0.0.2-9f1b659-471

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.
Files changed (416) hide show
  1. package/README.md +3 -0
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +1 -1
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +86 -34
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +1 -1
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +73 -35
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +1 -1
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +52 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +2 -2
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +1 -1
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +2 -2
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +2 -2
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +2 -2
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
  17. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
  18. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
  19. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
  20. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
  21. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +2 -2
  22. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
  23. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +37 -18
  24. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
  25. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +2 -2
  26. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
  27. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +19 -0
  28. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
  29. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +311 -151
  30. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  31. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +112 -86
  32. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  33. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +19 -0
  34. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  35. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +199 -15
  36. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +1 -1
  37. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +1 -1
  38. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +65 -42
  39. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +1 -1
  40. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +16 -16
  41. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +1 -1
  42. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +79 -44
  43. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +1 -1
  44. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +16 -16
  45. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +1 -1
  46. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +1 -1
  47. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +57 -22
  48. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +1 -1
  49. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +2 -2
  50. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +1 -1
  51. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +27 -8
  52. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +1 -1
  53. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +69 -50
  54. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +1 -1
  55. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +16 -16
  56. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +1 -1
  57. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +248 -68
  58. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +1 -1
  59. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +16 -16
  60. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
  61. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +2 -2
  62. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  63. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +26 -1
  64. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  65. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +96 -4
  66. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  67. package/artifacts/contracts/instance/Instance.sol/Instance.json +37 -12
  68. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
  69. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2 -2
  70. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
  71. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +16 -16
  72. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  73. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +56 -56
  74. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  75. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +118 -26
  76. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  77. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +69 -31
  78. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
  79. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +106 -98
  80. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +1 -1
  81. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +101 -88
  82. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
  83. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +8 -8
  84. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
  85. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
  86. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
  87. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
  88. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +2 -2
  89. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
  90. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +2 -2
  91. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +1 -1
  92. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +2 -2
  93. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  94. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  95. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  96. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  97. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  98. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
  99. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
  100. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +23 -4
  101. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
  102. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +2 -2
  103. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
  104. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
  105. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +19 -0
  106. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
  107. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +29 -0
  108. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
  109. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +19 -0
  110. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
  111. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +49 -20
  112. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
  113. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +78 -40
  114. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
  115. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +37 -26
  116. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
  117. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +19 -19
  118. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
  119. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +280 -119
  120. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
  121. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +106 -48
  122. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
  123. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +180 -27
  124. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  125. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +19 -0
  126. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
  127. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +220 -1
  128. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
  129. package/artifacts/contracts/pool/Pool.sol/Pool.json +19 -0
  130. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +1 -1
  131. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +36 -52
  132. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
  133. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +292 -65
  134. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  135. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +94 -52
  136. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
  137. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +202 -61
  138. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
  139. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +75 -33
  140. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
  141. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +19 -0
  142. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
  143. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +19 -19
  144. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
  145. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +128 -104
  146. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
  147. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +95 -65
  148. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
  149. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +166 -1
  150. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
  151. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +50 -10
  152. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
  153. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +55 -0
  154. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
  155. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +29 -0
  156. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  157. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +19 -0
  158. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +1 -1
  159. package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +203 -18
  160. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
  161. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +109 -46
  162. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +1 -1
  163. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +2 -2
  164. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
  165. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +91 -49
  166. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
  167. package/artifacts/contracts/product/PricingService.sol/PricingService.json +79 -74
  168. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
  169. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +82 -40
  170. package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
  171. package/artifacts/contracts/product/Product.sol/Product.json +19 -0
  172. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +1 -1
  173. package/artifacts/contracts/product/RiskService.sol/RiskService.json +231 -46
  174. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +1 -1
  175. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +70 -32
  176. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  177. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  178. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +18 -7
  179. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  180. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +29 -0
  181. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +1 -1
  182. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  183. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  184. package/artifacts/contracts/registry/Registry.sol/Registry.json +56 -45
  185. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
  186. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2 -2
  187. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +1 -1
  188. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +29 -21
  189. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  190. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +41 -12
  191. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  192. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +65 -27
  193. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +1 -1
  194. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2 -2
  195. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
  196. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
  197. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +81 -81
  198. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
  199. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +17 -17
  200. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  201. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +119 -59
  202. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
  203. package/artifacts/contracts/shared/Component.sol/Component.json +19 -0
  204. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
  205. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +120 -56
  206. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
  207. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +96 -50
  208. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +1 -1
  209. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +9 -9
  210. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +1 -1
  211. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +1 -1
  212. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +1 -1
  213. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +2 -2
  214. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
  215. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +19 -0
  216. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
  217. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +48 -0
  218. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
  219. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +19 -0
  220. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  221. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +6 -6
  222. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  223. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  224. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -0
  225. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  226. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  227. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +19 -0
  228. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  229. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  230. package/artifacts/contracts/shared/IService.sol/IService.json +29 -0
  231. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
  232. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
  233. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +19 -0
  234. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  235. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +6 -6
  236. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  237. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
  238. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
  239. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  240. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +21 -2
  241. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  242. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
  243. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  244. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +19 -0
  245. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  246. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
  247. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  248. package/artifacts/contracts/shared/Service.sol/Service.json +29 -0
  249. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  250. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
  251. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +1 -1
  252. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +2 -2
  253. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +1 -1
  254. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +2 -2
  255. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
  256. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1146 -53
  257. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
  258. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +91 -111
  259. package/artifacts/contracts/staking/ITargetManager.sol/ITargetManager.dbg.json +4 -0
  260. package/artifacts/contracts/staking/ITargetManager.sol/ITargetManager.json +69 -0
  261. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
  262. package/artifacts/contracts/staking/Staking.sol/Staking.json +1392 -181
  263. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +1 -1
  264. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +73 -72
  265. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +1 -1
  266. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
  267. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +138 -56
  268. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
  269. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +174 -180
  270. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
  271. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +115 -167
  272. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
  273. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +68 -46
  274. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
  275. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +1290 -599
  276. package/artifacts/contracts/staking/TargetManager.sol/TargetManager.dbg.json +4 -0
  277. package/artifacts/contracts/staking/TargetManager.sol/TargetManager.json +134 -0
  278. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
  279. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +72 -32
  280. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  281. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
  282. package/artifacts/contracts/type/Amount.sol/AmountLib.json +2 -2
  283. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  284. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +45 -19
  285. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
  286. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
  287. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
  288. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +2 -2
  289. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  290. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
  291. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
  292. package/artifacts/contracts/type/Fee.sol/FeeLib.json +2 -2
  293. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
  294. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +1 -1
  295. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
  296. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +2 -2
  297. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  298. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
  299. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  300. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
  301. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +2 -2
  302. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
  303. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +2 -2
  304. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
  305. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
  306. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +2 -2
  307. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
  308. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
  309. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +45 -2
  310. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
  311. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
  312. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
  313. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
  314. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
  315. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +3 -3
  316. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
  317. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +2 -2
  318. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
  319. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
  320. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
  321. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +10 -0
  322. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  323. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +55 -17
  324. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  325. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
  326. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
  327. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +10 -0
  328. package/contracts/accounting/AccountingService.sol +13 -0
  329. package/contracts/accounting/IAccountingService.sol +2 -0
  330. package/contracts/authorization/AccessAdmin.sol +5 -5
  331. package/contracts/authorization/AccessAdminLib.sol +2 -2
  332. package/contracts/authorization/Authorization.sol +2 -7
  333. package/contracts/authorization/IAuthorization.sol +0 -1
  334. package/contracts/authorization/ServiceAuthorization.sol +2 -2
  335. package/contracts/distribution/BasicDistribution.sol +2 -2
  336. package/contracts/distribution/Distribution.sol +5 -3
  337. package/contracts/distribution/DistributionService.sol +27 -21
  338. package/contracts/distribution/IDistributionService.sol +10 -4
  339. package/contracts/examples/fire/FireProduct.sol +6 -6
  340. package/contracts/examples/unpermissioned/SimpleProduct.sol +83 -19
  341. package/contracts/instance/IInstance.sol +1 -1
  342. package/contracts/instance/IInstanceService.sol +7 -3
  343. package/contracts/instance/Instance.sol +6 -4
  344. package/contracts/instance/InstanceAuthorizationV3.sol +2 -1
  345. package/contracts/instance/InstanceService.sol +21 -32
  346. package/contracts/instance/RiskSet.sol +10 -2
  347. package/contracts/instance/base/BalanceStore.sol +1 -1
  348. package/contracts/instance/base/ObjectLifecycle.sol +2 -6
  349. package/contracts/oracle/BasicOracle.sol +1 -1
  350. package/contracts/oracle/Oracle.sol +2 -2
  351. package/contracts/oracle/OracleService.sol +4 -4
  352. package/contracts/pool/BasicPool.sol +3 -14
  353. package/contracts/pool/BasicPoolAuthorization.sol +1 -2
  354. package/contracts/pool/BundleService.sol +34 -43
  355. package/contracts/pool/IBundleService.sol +14 -13
  356. package/contracts/pool/IPoolService.sol +7 -2
  357. package/contracts/pool/Pool.sol +4 -14
  358. package/contracts/pool/PoolLib.sol +10 -22
  359. package/contracts/pool/PoolService.sol +35 -8
  360. package/contracts/product/ApplicationService.sol +58 -9
  361. package/contracts/product/BasicProduct.sol +1 -1
  362. package/contracts/product/BasicProductAuthorization.sol +2 -0
  363. package/contracts/product/ClaimService.sol +39 -40
  364. package/contracts/product/IApplicationService.sol +21 -2
  365. package/contracts/product/IClaimService.sol +5 -4
  366. package/contracts/product/IPolicyService.sol +9 -2
  367. package/contracts/product/IRiskService.sol +18 -3
  368. package/contracts/product/PolicyService.sol +13 -8
  369. package/contracts/product/PolicyServiceLib.sol +7 -7
  370. package/contracts/product/PricingService.sol +22 -25
  371. package/contracts/product/Product.sol +38 -12
  372. package/contracts/product/RiskService.sol +48 -12
  373. package/contracts/registry/IRegistry.sol +11 -9
  374. package/contracts/registry/Registry.sol +15 -9
  375. package/contracts/registry/RegistryAuthorization.sol +55 -20
  376. package/contracts/registry/RegistryService.sol +1 -1
  377. package/contracts/registry/ReleaseRegistry.sol +8 -3
  378. package/contracts/registry/ServiceAuthorizationV3.sol +10 -12
  379. package/contracts/registry/TokenRegistry.sol +52 -49
  380. package/contracts/shared/Component.sol +6 -2
  381. package/contracts/shared/ComponentService.sol +15 -6
  382. package/contracts/shared/ContractLib.sol +3 -2
  383. package/contracts/shared/IComponent.sol +1 -1
  384. package/contracts/shared/IComponentService.sol +1 -0
  385. package/contracts/shared/IKeyValueStore.sol +1 -1
  386. package/contracts/shared/INftOwnable.sol +2 -0
  387. package/contracts/shared/InstanceLinkedComponent.sol +4 -4
  388. package/contracts/shared/KeyValueStore.sol +3 -3
  389. package/contracts/shared/NftOwnable.sol +2 -0
  390. package/contracts/shared/PolicyHolder.sol +3 -2
  391. package/contracts/staking/IStaking.sol +187 -65
  392. package/contracts/staking/IStakingService.sol +36 -84
  393. package/contracts/staking/ITargetManager.sol +28 -0
  394. package/contracts/staking/Staking.sol +458 -210
  395. package/contracts/staking/StakingLib.sol +38 -124
  396. package/contracts/staking/StakingManager.sol +1 -2
  397. package/contracts/staking/StakingReader.sol +45 -74
  398. package/contracts/staking/StakingService.sol +39 -185
  399. package/contracts/staking/StakingServiceManager.sol +1 -0
  400. package/contracts/staking/StakingStore.sol +866 -327
  401. package/contracts/staking/TargetManager.sol +103 -0
  402. package/contracts/type/Amount.sol +4 -0
  403. package/contracts/type/Blocknumber.sol +15 -15
  404. package/contracts/type/ChainId.sol +101 -0
  405. package/contracts/type/NftId.sol +3 -3
  406. package/contracts/type/Seconds.sol +14 -0
  407. package/contracts/type/Timestamp.sol +4 -2
  408. package/contracts/type/UFixed.sol +1 -0
  409. package/contracts/upgradeability/IVersionable.sol +3 -0
  410. package/contracts/upgradeability/ProxyManager.sol +13 -1
  411. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +6 -2
  412. package/contracts/upgradeability/Versionable.sol +2 -2
  413. package/package.json +1 -1
  414. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +0 -4
  415. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +0 -485
  416. package/contracts/shared/ComponentVerifyingService.sol +0 -128
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -423,16 +423,16 @@
423
423
  "name": "tokenRegistryAddress",
424
424
  "type": "address"
425
425
  },
426
+ {
427
+ "internalType": "ChainId",
428
+ "name": "chainId",
429
+ "type": "uint96"
430
+ },
426
431
  {
427
432
  "internalType": "address",
428
433
  "name": "token",
429
434
  "type": "address"
430
435
  },
431
- {
432
- "internalType": "uint256",
433
- "name": "chainId",
434
- "type": "uint256"
435
- },
436
436
  {
437
437
  "internalType": "VersionPart",
438
438
  "name": "release",
@@ -599,8 +599,8 @@
599
599
  "type": "function"
600
600
  }
601
601
  ],
602
- "bytecode": "0x6115a9610034600b8282823980515f1a607314602857634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106100f0575f3560e01c80637d482da111610093578063c52721a31161006e578063c52721a3146101ed578063ce64d28114610200578063d905700714610213578063e9d8dbfd14610226575f80fd5b80637d482da1146101b4578063aa13a988146101c7578063b6bbad12146101da575f80fd5b80632330f247116100ce5780632330f247146101425780633334d16b14610155578063398ac53c146101685780635c990ed314610193575f80fd5b80630f4809ac146100f4578063162790551461011c5780632227ca6d1461012f575b5f80fd5b610107610102366004610ef5565b610239565b60405190151581526020015b60405180910390f35b61010761012a366004610ef5565b6102d6565b61010761013d366004610f29565b6102f3565b610107610150366004610ef5565b61047a565b610107610163366004610ef5565b6104a6565b61017b61017636600461108f565b6104cc565b6040516001600160a01b039091168152602001610113565b6101a66101a1366004611176565b610702565b6040516101139291906111fd565b6101076101c23660046112a3565b610730565b6101a66101d53660046112e8565b6107b4565b6101076101e8366004610ef5565b61086f565b6101a66101fb366004611325565b610880565b61017b61020e366004611352565b61090d565b610107610221366004611389565b610a75565b610107610234366004610ef5565b610a80565b5f610243826102d6565b61024e57505f919050565b60408051600481526024810182526020810180516001600160e01b031663bf7e214f60e01b17905290515f916001600160a01b0385169161028f91906113c1565b5f60405180830381855afa9150503d805f81146102c7576040519150601f19603f3d011682016040523d82523d5f602084013e6102cc565b606091505b5090949350505050565b5f6001600160a01b0382166102ec57505f919050565b503b151590565b604051632f2a35f760e11b81526001600160a01b0383811660048301525f918291861690635e546bee90602401602060405180830381865afa15801561033b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061035f91906113e2565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156103b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103dc9190611408565b156103ea575f915050610473565b6040516305247a1760e51b81526001600160601b038216600482015261046f906001600160a01b0387169063a48f42e0906024015f60405180830381865afa158015610438573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261045f9190810190611486565b604001518460ff90811691161490565b9150505b9392505050565b5f610484826102d6565b61048f57505f919050565b6104a0826309990e3960e41b610a75565b92915050565b5f6104b0826102d6565b6104bb57505f919050565b6104a082630398724f60e11b610a75565b5f6104e882604001516104dd600c90565b60ff90811691161490565b156105cc5760208201516040516305247a1760e51b81526001600160601b0390911660048201525f906001600160a01b0385169063a48f42e0906024015f60405180830381865afa15801561053f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105669190810190611486565b90506105848160400151610578600a90565b60ff9081169116141590565b156105c1578251602084015160405163477f712160e01b81526001600160601b039283166004820152911660248201526044015b60405180910390fd5b6080015190506104a0565b60208201516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b0384169063a48f42e0906024015f60405180830381865afa15801561061c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526106439190810190611486565b91506106558260400151610578600c90565b1561068d578151602083015160405163695057c960e11b81526001600160601b039283166004820152911660248201526044016105b8565b602082015160405163bf8e179760e01b81526001600160601b0390911660048201526001600160a01b0384169063bf8e179790602401602060405180830381865afa1580156106de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104739190611558565b61070a610e91565b5f6107158686610aa6565b915061072386838686610c38565b9150915094509492505050565b604051634806e33f60e11b8152600481018390526001600160a01b03848116602483015260ff831660448301525f919086169063900dc67e90606401602060405180830381865afa158015610787573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ab9190611408565b95945050505050565b6107bc610e91565b5f6107c78585610aa6565b91506107d982604001516104dd600c90565b806107ef57506107ef82604001516104dd600f90565b80610805575061080582604001516104dd600e90565b8061081b575061081b82604001516104dd600d90565b610853578151604080840151905163447f933160e01b81526001600160601b03909216600483015260ff1660248201526044016105b8565b6108638583846040015186610c38565b91509150935093915050565b5f6104a082620b5ccf60e31b610cc0565b610888610e91565b6040516305247a1760e51b81526001600160601b03841660048201525f906001600160a01b0386169063a48f42e0906024015f60405180830381865afa1580156108d4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108fb9190810190611486565b91506108638583846040015186610c38565b60405163677d3feb60e11b81526001600160601b03821660048201525f9081906001600160a01b0385169063cefa7fd690602401602060405180830381865afa15801561095c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098091906113e2565b60405163677d3feb60e11b81526001600160601b03821660048201529091505f906001600160a01b0386169063cefa7fd690602401602060405180830381865afa1580156109d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f491906113e2565b6040516305247a1760e51b81526001600160601b03821660048201529091506001600160a01b0386169063a48f42e0906024015f60405180830381865afa158015610a41573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610a689190810190611486565b6080015195945050505050565b5f6104738383610cc0565b5f610a8a826102d6565b610a9557505f919050565b6104a08263daf9067160e01b610a75565b610aae610e91565b604051632f2a35f760e11b81526001600160a01b0383811660048301525f9190851690635e546bee90602401602060405180830381865afa158015610af5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b1991906113e2565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015610b72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b969190611408565b15610bbf57604051631988b69760e21b81526001600160a01b03841660048201526024016105b8565b6040516305247a1760e51b81526001600160601b03821660048201526001600160a01b0385169063a48f42e0906024015f60405180830381865afa158015610c09573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610c309190810190611486565b949350505050565b610c40610e91565b5f610c5685604001518560ff9081169116141590565b15610c97578451604080870151905163176bb19d60e21b81526001600160601b03909216600483015260ff80871660248401521660448201526064016105b8565b610ca186866104cc565b9050610cb6818660800151875f015186610cdb565b9395939450505050565b5f610cca83610dd9565b801561047357506104738383610e0b565b8015610dd357836001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d1d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d419190611558565b604051629b7b3560e61b81526001600160a01b03858116600483015291909116906326decd4090602401602060405180830381865afa158015610d86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610daa9190611408565b15610dd357604051633a31890160e11b81526001600160601b03831660048201526024016105b8565b50505050565b5f610deb826301ffc9a760e01b610e0b565b80156104a05750610e04826001600160e01b0319610e0b565b1592915050565b6040516001600160e01b0319821660248201525f90819060440160408051601f19818403018152919052602080820180516001600160e01b03166301ffc9a760e01b17815282519293505f9283928392909183918a617530fa92503d91505f519050828015610e7b575060208210155b8015610e8657505f81115b979650505050505050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6001600160a01b0381168114610ee2575f80fd5b50565b8035610ef081610ece565b919050565b5f60208284031215610f05575f80fd5b813561047381610ece565b60ff81168114610ee2575f80fd5b8035610ef081610f10565b5f805f60608486031215610f3b575f80fd5b8335610f4681610ece565b92506020840135610f5681610ece565b91506040840135610f6681610f10565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b60405160e0810167ffffffffffffffff81118282101715610fa857610fa8610f71565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715610fd757610fd7610f71565b604052919050565b6001600160601b0381168114610ee2575f80fd5b8035610ef081610fdf565b8015158114610ee2575f80fd5b8035610ef081610ffe565b5f67ffffffffffffffff82111561102f5761102f610f71565b50601f01601f191660200190565b5f82601f83011261104c575f80fd5b813561105f61105a82611016565b610fae565b818152846020838601011115611073575f80fd5b816020850160208301375f918101602001919091529392505050565b5f80604083850312156110a0575f80fd5b82356110ab81610ece565b9150602083013567ffffffffffffffff8111156110c6575f80fd5b830160e081860312156110d7575f80fd5b6110df610f85565b6110e882610ff3565b81526110f660208301610ff3565b602082015261110760408301610f1e565b60408201526111186060830161100b565b606082015261112960808301610ee5565b608082015261113a60a08301610ee5565b60a082015260c082013567ffffffffffffffff811115611158575f80fd5b6111648782850161103d565b60c08301525080925050509250929050565b5f805f8060808587031215611189575f80fd5b843561119481610ece565b935060208501356111a481610ece565b925060408501356111b481610f10565b915060608501356111c481610ffe565b939692955090935050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b604081526001600160601b0383511660408201526001600160601b03602084015116606082015260ff60408401511660808201525f606084015161124560a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261128b6101208401826111cf565b91505061047360208301846001600160a01b03169052565b5f805f80608085870312156112b6575f80fd5b84356112c181610ece565b935060208501356112d181610ece565b92506040850135915060608501356111c481610f10565b5f805f606084860312156112fa575f80fd5b833561130581610ece565b9250602084013561131581610ece565b91506040840135610f6681610ffe565b5f805f60608486031215611337575f80fd5b833561134281610ece565b9250602084013561131581610fdf565b5f8060408385031215611363575f80fd5b823561136e81610ece565b9150602083013561137e81610fdf565b809150509250929050565b5f806040838503121561139a575f80fd5b82356113a581610ece565b915060208301356001600160e01b03198116811461137e575f80fd5b5f82518060208501845e5f920191825250919050565b8051610ef081610fdf565b5f602082840312156113f2575f80fd5b815161047381610fdf565b8051610ef081610ffe565b5f60208284031215611418575f80fd5b815161047381610ffe565b8051610ef081610f10565b8051610ef081610ece565b5f82601f830112611448575f80fd5b815161145661105a82611016565b81815284602083860101111561146a575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215611496575f80fd5b815167ffffffffffffffff8111156114ac575f80fd5b820160e081850312156114bd575f80fd5b6114c5610f85565b6114ce826113d7565b81526114dc602083016113d7565b60208201526114ed60408301611423565b60408201526114fe606083016113fd565b606082015261150f6080830161142e565b608082015261152060a0830161142e565b60a082015260c082015167ffffffffffffffff81111561153e575f80fd5b61154a86828501611439565b60c083015250949350505050565b5f60208284031215611568575f80fd5b815161047381610ece56fea26469706673582212206345a402e349b5ca960bc713e3f943ddeb5244ea6f4e212d78c3cb1133daf72564736f6c634300081a0033",
603
- "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600436106100f0575f3560e01c80637d482da111610093578063c52721a31161006e578063c52721a3146101ed578063ce64d28114610200578063d905700714610213578063e9d8dbfd14610226575f80fd5b80637d482da1146101b4578063aa13a988146101c7578063b6bbad12146101da575f80fd5b80632330f247116100ce5780632330f247146101425780633334d16b14610155578063398ac53c146101685780635c990ed314610193575f80fd5b80630f4809ac146100f4578063162790551461011c5780632227ca6d1461012f575b5f80fd5b610107610102366004610ef5565b610239565b60405190151581526020015b60405180910390f35b61010761012a366004610ef5565b6102d6565b61010761013d366004610f29565b6102f3565b610107610150366004610ef5565b61047a565b610107610163366004610ef5565b6104a6565b61017b61017636600461108f565b6104cc565b6040516001600160a01b039091168152602001610113565b6101a66101a1366004611176565b610702565b6040516101139291906111fd565b6101076101c23660046112a3565b610730565b6101a66101d53660046112e8565b6107b4565b6101076101e8366004610ef5565b61086f565b6101a66101fb366004611325565b610880565b61017b61020e366004611352565b61090d565b610107610221366004611389565b610a75565b610107610234366004610ef5565b610a80565b5f610243826102d6565b61024e57505f919050565b60408051600481526024810182526020810180516001600160e01b031663bf7e214f60e01b17905290515f916001600160a01b0385169161028f91906113c1565b5f60405180830381855afa9150503d805f81146102c7576040519150601f19603f3d011682016040523d82523d5f602084013e6102cc565b606091505b5090949350505050565b5f6001600160a01b0382166102ec57505f919050565b503b151590565b604051632f2a35f760e11b81526001600160a01b0383811660048301525f918291861690635e546bee90602401602060405180830381865afa15801561033b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061035f91906113e2565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156103b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103dc9190611408565b156103ea575f915050610473565b6040516305247a1760e51b81526001600160601b038216600482015261046f906001600160a01b0387169063a48f42e0906024015f60405180830381865afa158015610438573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261045f9190810190611486565b604001518460ff90811691161490565b9150505b9392505050565b5f610484826102d6565b61048f57505f919050565b6104a0826309990e3960e41b610a75565b92915050565b5f6104b0826102d6565b6104bb57505f919050565b6104a082630398724f60e11b610a75565b5f6104e882604001516104dd600c90565b60ff90811691161490565b156105cc5760208201516040516305247a1760e51b81526001600160601b0390911660048201525f906001600160a01b0385169063a48f42e0906024015f60405180830381865afa15801561053f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105669190810190611486565b90506105848160400151610578600a90565b60ff9081169116141590565b156105c1578251602084015160405163477f712160e01b81526001600160601b039283166004820152911660248201526044015b60405180910390fd5b6080015190506104a0565b60208201516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b0384169063a48f42e0906024015f60405180830381865afa15801561061c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526106439190810190611486565b91506106558260400151610578600c90565b1561068d578151602083015160405163695057c960e11b81526001600160601b039283166004820152911660248201526044016105b8565b602082015160405163bf8e179760e01b81526001600160601b0390911660048201526001600160a01b0384169063bf8e179790602401602060405180830381865afa1580156106de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104739190611558565b61070a610e91565b5f6107158686610aa6565b915061072386838686610c38565b9150915094509492505050565b604051634806e33f60e11b8152600481018390526001600160a01b03848116602483015260ff831660448301525f919086169063900dc67e90606401602060405180830381865afa158015610787573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ab9190611408565b95945050505050565b6107bc610e91565b5f6107c78585610aa6565b91506107d982604001516104dd600c90565b806107ef57506107ef82604001516104dd600f90565b80610805575061080582604001516104dd600e90565b8061081b575061081b82604001516104dd600d90565b610853578151604080840151905163447f933160e01b81526001600160601b03909216600483015260ff1660248201526044016105b8565b6108638583846040015186610c38565b91509150935093915050565b5f6104a082620b5ccf60e31b610cc0565b610888610e91565b6040516305247a1760e51b81526001600160601b03841660048201525f906001600160a01b0386169063a48f42e0906024015f60405180830381865afa1580156108d4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108fb9190810190611486565b91506108638583846040015186610c38565b60405163677d3feb60e11b81526001600160601b03821660048201525f9081906001600160a01b0385169063cefa7fd690602401602060405180830381865afa15801561095c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098091906113e2565b60405163677d3feb60e11b81526001600160601b03821660048201529091505f906001600160a01b0386169063cefa7fd690602401602060405180830381865afa1580156109d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f491906113e2565b6040516305247a1760e51b81526001600160601b03821660048201529091506001600160a01b0386169063a48f42e0906024015f60405180830381865afa158015610a41573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610a689190810190611486565b6080015195945050505050565b5f6104738383610cc0565b5f610a8a826102d6565b610a9557505f919050565b6104a08263daf9067160e01b610a75565b610aae610e91565b604051632f2a35f760e11b81526001600160a01b0383811660048301525f9190851690635e546bee90602401602060405180830381865afa158015610af5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b1991906113e2565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015610b72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b969190611408565b15610bbf57604051631988b69760e21b81526001600160a01b03841660048201526024016105b8565b6040516305247a1760e51b81526001600160601b03821660048201526001600160a01b0385169063a48f42e0906024015f60405180830381865afa158015610c09573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610c309190810190611486565b949350505050565b610c40610e91565b5f610c5685604001518560ff9081169116141590565b15610c97578451604080870151905163176bb19d60e21b81526001600160601b03909216600483015260ff80871660248401521660448201526064016105b8565b610ca186866104cc565b9050610cb6818660800151875f015186610cdb565b9395939450505050565b5f610cca83610dd9565b801561047357506104738383610e0b565b8015610dd357836001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d1d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d419190611558565b604051629b7b3560e61b81526001600160a01b03858116600483015291909116906326decd4090602401602060405180830381865afa158015610d86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610daa9190611408565b15610dd357604051633a31890160e11b81526001600160601b03831660048201526024016105b8565b50505050565b5f610deb826301ffc9a760e01b610e0b565b80156104a05750610e04826001600160e01b0319610e0b565b1592915050565b6040516001600160e01b0319821660248201525f90819060440160408051601f19818403018152919052602080820180516001600160e01b03166301ffc9a760e01b17815282519293505f9283928392909183918a617530fa92503d91505f519050828015610e7b575060208210155b8015610e8657505f81115b979650505050505050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6001600160a01b0381168114610ee2575f80fd5b50565b8035610ef081610ece565b919050565b5f60208284031215610f05575f80fd5b813561047381610ece565b60ff81168114610ee2575f80fd5b8035610ef081610f10565b5f805f60608486031215610f3b575f80fd5b8335610f4681610ece565b92506020840135610f5681610ece565b91506040840135610f6681610f10565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b60405160e0810167ffffffffffffffff81118282101715610fa857610fa8610f71565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715610fd757610fd7610f71565b604052919050565b6001600160601b0381168114610ee2575f80fd5b8035610ef081610fdf565b8015158114610ee2575f80fd5b8035610ef081610ffe565b5f67ffffffffffffffff82111561102f5761102f610f71565b50601f01601f191660200190565b5f82601f83011261104c575f80fd5b813561105f61105a82611016565b610fae565b818152846020838601011115611073575f80fd5b816020850160208301375f918101602001919091529392505050565b5f80604083850312156110a0575f80fd5b82356110ab81610ece565b9150602083013567ffffffffffffffff8111156110c6575f80fd5b830160e081860312156110d7575f80fd5b6110df610f85565b6110e882610ff3565b81526110f660208301610ff3565b602082015261110760408301610f1e565b60408201526111186060830161100b565b606082015261112960808301610ee5565b608082015261113a60a08301610ee5565b60a082015260c082013567ffffffffffffffff811115611158575f80fd5b6111648782850161103d565b60c08301525080925050509250929050565b5f805f8060808587031215611189575f80fd5b843561119481610ece565b935060208501356111a481610ece565b925060408501356111b481610f10565b915060608501356111c481610ffe565b939692955090935050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b604081526001600160601b0383511660408201526001600160601b03602084015116606082015260ff60408401511660808201525f606084015161124560a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261128b6101208401826111cf565b91505061047360208301846001600160a01b03169052565b5f805f80608085870312156112b6575f80fd5b84356112c181610ece565b935060208501356112d181610ece565b92506040850135915060608501356111c481610f10565b5f805f606084860312156112fa575f80fd5b833561130581610ece565b9250602084013561131581610ece565b91506040840135610f6681610ffe565b5f805f60608486031215611337575f80fd5b833561134281610ece565b9250602084013561131581610fdf565b5f8060408385031215611363575f80fd5b823561136e81610ece565b9150602083013561137e81610fdf565b809150509250929050565b5f806040838503121561139a575f80fd5b82356113a581610ece565b915060208301356001600160e01b03198116811461137e575f80fd5b5f82518060208501845e5f920191825250919050565b8051610ef081610fdf565b5f602082840312156113f2575f80fd5b815161047381610fdf565b8051610ef081610ffe565b5f60208284031215611418575f80fd5b815161047381610ffe565b8051610ef081610f10565b8051610ef081610ece565b5f82601f830112611448575f80fd5b815161145661105a82611016565b81815284602083860101111561146a575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215611496575f80fd5b815167ffffffffffffffff8111156114ac575f80fd5b820160e081850312156114bd575f80fd5b6114c5610f85565b6114ce826113d7565b81526114dc602083016113d7565b60208201526114ed60408301611423565b60408201526114fe606083016113fd565b606082015261150f6080830161142e565b608082015261152060a0830161142e565b60a082015260c082015167ffffffffffffffff81111561153e575f80fd5b61154a86828501611439565b60c083015250949350505050565b5f60208284031215611568575f80fd5b815161047381610ece56fea26469706673582212206345a402e349b5ca960bc713e3f943ddeb5244ea6f4e212d78c3cb1133daf72564736f6c634300081a0033",
602
+ "bytecode": "0x6115ba610034600b8282823980515f1a607314602857634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106100f0575f3560e01c80635c990ed311610093578063c52721a31161006e578063c52721a3146101ed578063ce64d28114610200578063d905700714610213578063e9d8dbfd14610226575f80fd5b80635c990ed3146101a6578063aa13a988146101c7578063b6bbad12146101da575f80fd5b80632330f247116100ce5780632330f247146101425780632cb82458146101555780633334d16b14610168578063398ac53c1461017b575f80fd5b80630f4809ac146100f4578063162790551461011c5780632227ca6d1461012f575b5f80fd5b610107610102366004610efd565b610239565b60405190151581526020015b60405180910390f35b61010761012a366004610efd565b6102d6565b61010761013d366004610f31565b6102f3565b610107610150366004610efd565b61047a565b610107610163366004610f98565b6104a6565b610107610176366004610efd565b610532565b61018e6101893660046110f0565b610558565b6040516001600160a01b039091168152602001610113565b6101b96101b43660046111d7565b61078e565b604051610113929190611253565b6101b96101d53660046112f9565b6107bc565b6101076101e8366004610efd565b610877565b6101b96101fb366004611336565b610888565b61018e61020e366004611363565b610915565b61010761022136600461139a565b610a7d565b610107610234366004610efd565b610a88565b5f610243826102d6565b61024e57505f919050565b60408051600481526024810182526020810180516001600160e01b031663bf7e214f60e01b17905290515f916001600160a01b0385169161028f91906113d2565b5f60405180830381855afa9150503d805f81146102c7576040519150601f19603f3d011682016040523d82523d5f602084013e6102cc565b606091505b5090949350505050565b5f6001600160a01b0382166102ec57505f919050565b503b151590565b604051632f2a35f760e11b81526001600160a01b0383811660048301525f918291861690635e546bee90602401602060405180830381865afa15801561033b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061035f91906113f3565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156103b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103dc9190611419565b156103ea575f915050610473565b6040516305247a1760e51b81526001600160601b038216600482015261046f906001600160a01b0387169063a48f42e0906024015f60405180830381865afa158015610438573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261045f9190810190611497565b604001518460ff90811691161490565b9150505b9392505050565b5f610484826102d6565b61048f57505f919050565b6104a0826309990e3960e41b610a7d565b92915050565b60405163cf44b1eb60e01b81526001600160601b03841660048201526001600160a01b03838116602483015260ff831660448301525f919086169063cf44b1eb90606401602060405180830381865afa158015610505573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105299190611419565b95945050505050565b5f61053c826102d6565b61054757505f919050565b6104a082638e799a8960e01b610a7d565b5f6105748260400151610569600c90565b60ff90811691161490565b156106585760208201516040516305247a1760e51b81526001600160601b0390911660048201525f906001600160a01b0385169063a48f42e0906024015f60405180830381865afa1580156105cb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105f29190810190611497565b90506106108160400151610604600a90565b60ff9081169116141590565b1561064d578251602084015160405163477f712160e01b81526001600160601b039283166004820152911660248201526044015b60405180910390fd5b6080015190506104a0565b60208201516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b0384169063a48f42e0906024015f60405180830381865afa1580156106a8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526106cf9190810190611497565b91506106e18260400151610604600c90565b15610719578151602083015160405163695057c960e11b81526001600160601b03928316600482015291166024820152604401610644565b602082015160405163bf8e179760e01b81526001600160601b0390911660048201526001600160a01b0384169063bf8e179790602401602060405180830381865afa15801561076a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104739190611569565b610796610e99565b5f6107a18686610aae565b91506107af86838686610c40565b9150915094509492505050565b6107c4610e99565b5f6107cf8585610aae565b91506107e18260400151610569600c90565b806107f757506107f78260400151610569600f90565b8061080d575061080d8260400151610569600e90565b8061082357506108238260400151610569600d90565b61085b578151604080840151905163447f933160e01b81526001600160601b03909216600483015260ff166024820152604401610644565b61086b8583846040015186610c40565b91509150935093915050565b5f6104a082620b5ccf60e31b610cc8565b610890610e99565b6040516305247a1760e51b81526001600160601b03841660048201525f906001600160a01b0386169063a48f42e0906024015f60405180830381865afa1580156108dc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526109039190810190611497565b915061086b8583846040015186610c40565b60405163677d3feb60e11b81526001600160601b03821660048201525f9081906001600160a01b0385169063cefa7fd690602401602060405180830381865afa158015610964573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098891906113f3565b60405163677d3feb60e11b81526001600160601b03821660048201529091505f906001600160a01b0386169063cefa7fd690602401602060405180830381865afa1580156109d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109fc91906113f3565b6040516305247a1760e51b81526001600160601b03821660048201529091506001600160a01b0386169063a48f42e0906024015f60405180830381865afa158015610a49573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610a709190810190611497565b6080015195945050505050565b5f6104738383610cc8565b5f610a92826102d6565b610a9d57505f919050565b6104a08263daf9067160e01b610a7d565b610ab6610e99565b604051632f2a35f760e11b81526001600160a01b0383811660048301525f9190851690635e546bee90602401602060405180830381865afa158015610afd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b2191906113f3565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015610b7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b9e9190611419565b15610bc757604051631988b69760e21b81526001600160a01b0384166004820152602401610644565b6040516305247a1760e51b81526001600160601b03821660048201526001600160a01b0385169063a48f42e0906024015f60405180830381865afa158015610c11573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610c389190810190611497565b949350505050565b610c48610e99565b5f610c5e85604001518560ff9081169116141590565b15610c9f578451604080870151905163176bb19d60e21b81526001600160601b03909216600483015260ff8087166024840152166044820152606401610644565b610ca98686610558565b9050610cbe818660800151875f015186610ce3565b9395939450505050565b5f610cd283610de1565b801561047357506104738383610e13565b8015610ddb57836001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d499190611569565b604051629b7b3560e61b81526001600160a01b03858116600483015291909116906326decd4090602401602060405180830381865afa158015610d8e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db29190611419565b15610ddb57604051633a31890160e11b81526001600160601b0383166004820152602401610644565b50505050565b5f610df3826301ffc9a760e01b610e13565b80156104a05750610e0c826001600160e01b0319610e13565b1592915050565b6040516001600160e01b0319821660248201525f90819060440160408051601f19818403018152919052602080820180516001600160e01b03166301ffc9a760e01b17815282519293505f9283928392909183918a617530fa92503d91505f519050828015610e83575060208210155b8015610e8e57505f81115b979650505050505050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6001600160a01b0381168114610eea575f80fd5b50565b8035610ef881610ed6565b919050565b5f60208284031215610f0d575f80fd5b813561047381610ed6565b60ff81168114610eea575f80fd5b8035610ef881610f18565b5f805f60608486031215610f43575f80fd5b8335610f4e81610ed6565b92506020840135610f5e81610ed6565b91506040840135610f6e81610f18565b809150509250925092565b6001600160601b0381168114610eea575f80fd5b8035610ef881610f79565b5f805f8060808587031215610fab575f80fd5b8435610fb681610ed6565b93506020850135610fc681610f79565b92506040850135610fd681610ed6565b91506060850135610fe681610f18565b939692955090935050565b634e487b7160e01b5f52604160045260245ffd5b60405160e0810167ffffffffffffffff8111828210171561102857611028610ff1565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561105757611057610ff1565b604052919050565b8015158114610eea575f80fd5b8035610ef88161105f565b5f67ffffffffffffffff82111561109057611090610ff1565b50601f01601f191660200190565b5f82601f8301126110ad575f80fd5b81356110c06110bb82611077565b61102e565b8181528460208386010111156110d4575f80fd5b816020850160208301375f918101602001919091529392505050565b5f8060408385031215611101575f80fd5b823561110c81610ed6565b9150602083013567ffffffffffffffff811115611127575f80fd5b830160e08186031215611138575f80fd5b611140611005565b61114982610f8d565b815261115760208301610f8d565b602082015261116860408301610f26565b60408201526111796060830161106c565b606082015261118a60808301610eed565b608082015261119b60a08301610eed565b60a082015260c082013567ffffffffffffffff8111156111b9575f80fd5b6111c58782850161109e565b60c08301525080925050509250929050565b5f805f80608085870312156111ea575f80fd5b84356111f581610ed6565b9350602085013561120581610ed6565b9250604085013561121581610f18565b91506060850135610fe68161105f565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b604081526001600160601b0383511660408201526001600160601b03602084015116606082015260ff60408401511660808201525f606084015161129b60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e06101008401526112e1610120840182611225565b91505061047360208301846001600160a01b03169052565b5f805f6060848603121561130b575f80fd5b833561131681610ed6565b9250602084013561132681610ed6565b91506040840135610f6e8161105f565b5f805f60608486031215611348575f80fd5b833561135381610ed6565b9250602084013561132681610f79565b5f8060408385031215611374575f80fd5b823561137f81610ed6565b9150602083013561138f81610f79565b809150509250929050565b5f80604083850312156113ab575f80fd5b82356113b681610ed6565b915060208301356001600160e01b03198116811461138f575f80fd5b5f82518060208501845e5f920191825250919050565b8051610ef881610f79565b5f60208284031215611403575f80fd5b815161047381610f79565b8051610ef88161105f565b5f60208284031215611429575f80fd5b81516104738161105f565b8051610ef881610f18565b8051610ef881610ed6565b5f82601f830112611459575f80fd5b81516114676110bb82611077565b81815284602083860101111561147b575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f602082840312156114a7575f80fd5b815167ffffffffffffffff8111156114bd575f80fd5b820160e081850312156114ce575f80fd5b6114d6611005565b6114df826113e8565b81526114ed602083016113e8565b60208201526114fe60408301611434565b604082015261150f6060830161140e565b60608201526115206080830161143f565b608082015261153160a0830161143f565b60a082015260c082015167ffffffffffffffff81111561154f575f80fd5b61155b8682850161144a565b60c083015250949350505050565b5f60208284031215611579575f80fd5b815161047381610ed656fea264697066735822122060de21e06a9b62fc14db62c4aed50b23c28e51ee62a9d8725a8cd857dde475ac64736f6c634300081a0033",
603
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600436106100f0575f3560e01c80635c990ed311610093578063c52721a31161006e578063c52721a3146101ed578063ce64d28114610200578063d905700714610213578063e9d8dbfd14610226575f80fd5b80635c990ed3146101a6578063aa13a988146101c7578063b6bbad12146101da575f80fd5b80632330f247116100ce5780632330f247146101425780632cb82458146101555780633334d16b14610168578063398ac53c1461017b575f80fd5b80630f4809ac146100f4578063162790551461011c5780632227ca6d1461012f575b5f80fd5b610107610102366004610efd565b610239565b60405190151581526020015b60405180910390f35b61010761012a366004610efd565b6102d6565b61010761013d366004610f31565b6102f3565b610107610150366004610efd565b61047a565b610107610163366004610f98565b6104a6565b610107610176366004610efd565b610532565b61018e6101893660046110f0565b610558565b6040516001600160a01b039091168152602001610113565b6101b96101b43660046111d7565b61078e565b604051610113929190611253565b6101b96101d53660046112f9565b6107bc565b6101076101e8366004610efd565b610877565b6101b96101fb366004611336565b610888565b61018e61020e366004611363565b610915565b61010761022136600461139a565b610a7d565b610107610234366004610efd565b610a88565b5f610243826102d6565b61024e57505f919050565b60408051600481526024810182526020810180516001600160e01b031663bf7e214f60e01b17905290515f916001600160a01b0385169161028f91906113d2565b5f60405180830381855afa9150503d805f81146102c7576040519150601f19603f3d011682016040523d82523d5f602084013e6102cc565b606091505b5090949350505050565b5f6001600160a01b0382166102ec57505f919050565b503b151590565b604051632f2a35f760e11b81526001600160a01b0383811660048301525f918291861690635e546bee90602401602060405180830381865afa15801561033b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061035f91906113f3565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156103b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103dc9190611419565b156103ea575f915050610473565b6040516305247a1760e51b81526001600160601b038216600482015261046f906001600160a01b0387169063a48f42e0906024015f60405180830381865afa158015610438573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261045f9190810190611497565b604001518460ff90811691161490565b9150505b9392505050565b5f610484826102d6565b61048f57505f919050565b6104a0826309990e3960e41b610a7d565b92915050565b60405163cf44b1eb60e01b81526001600160601b03841660048201526001600160a01b03838116602483015260ff831660448301525f919086169063cf44b1eb90606401602060405180830381865afa158015610505573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105299190611419565b95945050505050565b5f61053c826102d6565b61054757505f919050565b6104a082638e799a8960e01b610a7d565b5f6105748260400151610569600c90565b60ff90811691161490565b156106585760208201516040516305247a1760e51b81526001600160601b0390911660048201525f906001600160a01b0385169063a48f42e0906024015f60405180830381865afa1580156105cb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105f29190810190611497565b90506106108160400151610604600a90565b60ff9081169116141590565b1561064d578251602084015160405163477f712160e01b81526001600160601b039283166004820152911660248201526044015b60405180910390fd5b6080015190506104a0565b60208201516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b0384169063a48f42e0906024015f60405180830381865afa1580156106a8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526106cf9190810190611497565b91506106e18260400151610604600c90565b15610719578151602083015160405163695057c960e11b81526001600160601b03928316600482015291166024820152604401610644565b602082015160405163bf8e179760e01b81526001600160601b0390911660048201526001600160a01b0384169063bf8e179790602401602060405180830381865afa15801561076a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104739190611569565b610796610e99565b5f6107a18686610aae565b91506107af86838686610c40565b9150915094509492505050565b6107c4610e99565b5f6107cf8585610aae565b91506107e18260400151610569600c90565b806107f757506107f78260400151610569600f90565b8061080d575061080d8260400151610569600e90565b8061082357506108238260400151610569600d90565b61085b578151604080840151905163447f933160e01b81526001600160601b03909216600483015260ff166024820152604401610644565b61086b8583846040015186610c40565b91509150935093915050565b5f6104a082620b5ccf60e31b610cc8565b610890610e99565b6040516305247a1760e51b81526001600160601b03841660048201525f906001600160a01b0386169063a48f42e0906024015f60405180830381865afa1580156108dc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526109039190810190611497565b915061086b8583846040015186610c40565b60405163677d3feb60e11b81526001600160601b03821660048201525f9081906001600160a01b0385169063cefa7fd690602401602060405180830381865afa158015610964573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098891906113f3565b60405163677d3feb60e11b81526001600160601b03821660048201529091505f906001600160a01b0386169063cefa7fd690602401602060405180830381865afa1580156109d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109fc91906113f3565b6040516305247a1760e51b81526001600160601b03821660048201529091506001600160a01b0386169063a48f42e0906024015f60405180830381865afa158015610a49573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610a709190810190611497565b6080015195945050505050565b5f6104738383610cc8565b5f610a92826102d6565b610a9d57505f919050565b6104a08263daf9067160e01b610a7d565b610ab6610e99565b604051632f2a35f760e11b81526001600160a01b0383811660048301525f9190851690635e546bee90602401602060405180830381865afa158015610afd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b2191906113f3565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015610b7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b9e9190611419565b15610bc757604051631988b69760e21b81526001600160a01b0384166004820152602401610644565b6040516305247a1760e51b81526001600160601b03821660048201526001600160a01b0385169063a48f42e0906024015f60405180830381865afa158015610c11573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610c389190810190611497565b949350505050565b610c48610e99565b5f610c5e85604001518560ff9081169116141590565b15610c9f578451604080870151905163176bb19d60e21b81526001600160601b03909216600483015260ff8087166024840152166044820152606401610644565b610ca98686610558565b9050610cbe818660800151875f015186610ce3565b9395939450505050565b5f610cd283610de1565b801561047357506104738383610e13565b8015610ddb57836001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d499190611569565b604051629b7b3560e61b81526001600160a01b03858116600483015291909116906326decd4090602401602060405180830381865afa158015610d8e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db29190611419565b15610ddb57604051633a31890160e11b81526001600160601b0383166004820152602401610644565b50505050565b5f610df3826301ffc9a760e01b610e13565b80156104a05750610e0c826001600160e01b0319610e13565b1592915050565b6040516001600160e01b0319821660248201525f90819060440160408051601f19818403018152919052602080820180516001600160e01b03166301ffc9a760e01b17815282519293505f9283928392909183918a617530fa92503d91505f519050828015610e83575060208210155b8015610e8e57505f81115b979650505050505050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6001600160a01b0381168114610eea575f80fd5b50565b8035610ef881610ed6565b919050565b5f60208284031215610f0d575f80fd5b813561047381610ed6565b60ff81168114610eea575f80fd5b8035610ef881610f18565b5f805f60608486031215610f43575f80fd5b8335610f4e81610ed6565b92506020840135610f5e81610ed6565b91506040840135610f6e81610f18565b809150509250925092565b6001600160601b0381168114610eea575f80fd5b8035610ef881610f79565b5f805f8060808587031215610fab575f80fd5b8435610fb681610ed6565b93506020850135610fc681610f79565b92506040850135610fd681610ed6565b91506060850135610fe681610f18565b939692955090935050565b634e487b7160e01b5f52604160045260245ffd5b60405160e0810167ffffffffffffffff8111828210171561102857611028610ff1565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561105757611057610ff1565b604052919050565b8015158114610eea575f80fd5b8035610ef88161105f565b5f67ffffffffffffffff82111561109057611090610ff1565b50601f01601f191660200190565b5f82601f8301126110ad575f80fd5b81356110c06110bb82611077565b61102e565b8181528460208386010111156110d4575f80fd5b816020850160208301375f918101602001919091529392505050565b5f8060408385031215611101575f80fd5b823561110c81610ed6565b9150602083013567ffffffffffffffff811115611127575f80fd5b830160e08186031215611138575f80fd5b611140611005565b61114982610f8d565b815261115760208301610f8d565b602082015261116860408301610f26565b60408201526111796060830161106c565b606082015261118a60808301610eed565b608082015261119b60a08301610eed565b60a082015260c082013567ffffffffffffffff8111156111b9575f80fd5b6111c58782850161109e565b60c08301525080925050509250929050565b5f805f80608085870312156111ea575f80fd5b84356111f581610ed6565b9350602085013561120581610ed6565b9250604085013561121581610f18565b91506060850135610fe68161105f565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b604081526001600160601b0383511660408201526001600160601b03602084015116606082015260ff60408401511660808201525f606084015161129b60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e06101008401526112e1610120840182611225565b91505061047360208301846001600160a01b03169052565b5f805f6060848603121561130b575f80fd5b833561131681610ed6565b9250602084013561132681610ed6565b91506040840135610f6e8161105f565b5f805f60608486031215611348575f80fd5b833561135381610ed6565b9250602084013561132681610f79565b5f8060408385031215611374575f80fd5b823561137f81610ed6565b9150602083013561138f81610f79565b809150509250929050565b5f80604083850312156113ab575f80fd5b82356113b681610ed6565b915060208301356001600160e01b03198116811461138f575f80fd5b5f82518060208501845e5f920191825250919050565b8051610ef881610f79565b5f60208284031215611403575f80fd5b815161047381610f79565b8051610ef88161105f565b5f60208284031215611429575f80fd5b81516104738161105f565b8051610ef881610f18565b8051610ef881610ed6565b5f82601f830112611459575f80fd5b81516114676110bb82611077565b81815284602083860101111561147b575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f602082840312156114a7575f80fd5b815167ffffffffffffffff8111156114bd575f80fd5b820160e081850312156114ce575f80fd5b6114d6611005565b6114df826113e8565b81526114ed602083016113e8565b60208201526114fe60408301611434565b604082015261150f6060830161140e565b60608201526115206080830161143f565b608082015261153160a0830161143f565b60a082015260c082015167ffffffffffffffff81111561154f575f80fd5b61155b8682850161144a565b60c083015250949350505050565b5f60208284031215611579575f80fd5b815161047381610ed656fea264697066735822122060de21e06a9b62fc14db62c4aed50b23c28e51ee62a9d8725a8cd857dde475ac64736f6c634300081a0033",
604
604
  "linkReferences": {
605
605
  "contracts/type/NftId.sol": {
606
606
  "NftIdLib": [
@@ -610,7 +610,7 @@
610
610
  },
611
611
  {
612
612
  "length": 20,
613
- "start": 2926
613
+ "start": 2934
614
614
  }
615
615
  ]
616
616
  }
@@ -624,7 +624,7 @@
624
624
  },
625
625
  {
626
626
  "length": 20,
627
- "start": 2874
627
+ "start": 2882
628
628
  }
629
629
  ]
630
630
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -6,9 +6,9 @@
6
6
  {
7
7
  "inputs": [
8
8
  {
9
- "internalType": "uint256",
9
+ "internalType": "ChainId",
10
10
  "name": "chainId",
11
- "type": "uint256"
11
+ "type": "uint96"
12
12
  },
13
13
  {
14
14
  "internalType": "address",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -251,6 +251,25 @@
251
251
  "name": "LogComponentWalletTokensTransferred",
252
252
  "type": "event"
253
253
  },
254
+ {
255
+ "anonymous": false,
256
+ "inputs": [
257
+ {
258
+ "indexed": false,
259
+ "internalType": "NftId",
260
+ "name": "nftId",
261
+ "type": "uint96"
262
+ },
263
+ {
264
+ "indexed": false,
265
+ "internalType": "address",
266
+ "name": "owner",
267
+ "type": "address"
268
+ }
269
+ ],
270
+ "name": "LogNftOwnableNftLinkedToAddress",
271
+ "type": "event"
272
+ },
254
273
  {
255
274
  "inputs": [],
256
275
  "name": "authority",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -389,6 +389,16 @@
389
389
  "name": "ErrorRegisterableNotActive",
390
390
  "type": "error"
391
391
  },
392
+ {
393
+ "inputs": [],
394
+ "name": "ErrorVersionableInitializeNotImplemented",
395
+ "type": "error"
396
+ },
397
+ {
398
+ "inputs": [],
399
+ "name": "ErrorVersionableUpgradeNotImplemented",
400
+ "type": "error"
401
+ },
392
402
  {
393
403
  "anonymous": false,
394
404
  "inputs": [
@@ -433,6 +443,25 @@
433
443
  "name": "LogComponentServiceComponentFeesWithdrawn",
434
444
  "type": "event"
435
445
  },
446
+ {
447
+ "anonymous": false,
448
+ "inputs": [
449
+ {
450
+ "indexed": false,
451
+ "internalType": "address",
452
+ "name": "component",
453
+ "type": "address"
454
+ },
455
+ {
456
+ "indexed": false,
457
+ "internalType": "bool",
458
+ "name": "locked",
459
+ "type": "bool"
460
+ }
461
+ ],
462
+ "name": "LogComponentServiceComponentLocked",
463
+ "type": "event"
464
+ },
436
465
  {
437
466
  "anonymous": false,
438
467
  "inputs": [
@@ -614,6 +643,25 @@
614
643
  "name": "LogComponentServiceWalletTokensTransferred",
615
644
  "type": "event"
616
645
  },
646
+ {
647
+ "anonymous": false,
648
+ "inputs": [
649
+ {
650
+ "indexed": false,
651
+ "internalType": "NftId",
652
+ "name": "nftId",
653
+ "type": "uint96"
654
+ },
655
+ {
656
+ "indexed": false,
657
+ "internalType": "address",
658
+ "name": "owner",
659
+ "type": "address"
660
+ }
661
+ ],
662
+ "name": "LogNftOwnableNftLinkedToAddress",
663
+ "type": "event"
664
+ },
617
665
  {
618
666
  "inputs": [
619
667
  {
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -283,6 +283,25 @@
283
283
  "name": "LogComponentWalletTokensTransferred",
284
284
  "type": "event"
285
285
  },
286
+ {
287
+ "anonymous": false,
288
+ "inputs": [
289
+ {
290
+ "indexed": false,
291
+ "internalType": "NftId",
292
+ "name": "nftId",
293
+ "type": "uint96"
294
+ },
295
+ {
296
+ "indexed": false,
297
+ "internalType": "address",
298
+ "name": "owner",
299
+ "type": "address"
300
+ }
301
+ ],
302
+ "name": "LogNftOwnableNftLinkedToAddress",
303
+ "type": "event"
304
+ },
286
305
  {
287
306
  "inputs": [],
288
307
  "name": "authority",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -205,7 +205,7 @@
205
205
  "indexed": false,
206
206
  "internalType": "Blocknumber",
207
207
  "name": "lastUpdatedIn",
208
- "type": "uint32"
208
+ "type": "uint40"
209
209
  }
210
210
  ],
211
211
  "name": "LogInfoUpdated",
@@ -254,7 +254,7 @@
254
254
  "indexed": false,
255
255
  "internalType": "Blocknumber",
256
256
  "name": "lastUpdatedIn",
257
- "type": "uint32"
257
+ "type": "uint40"
258
258
  }
259
259
  ],
260
260
  "name": "LogStateUpdated",
@@ -306,12 +306,12 @@
306
306
  {
307
307
  "internalType": "Blocknumber",
308
308
  "name": "updatedIn",
309
- "type": "uint32"
309
+ "type": "uint40"
310
310
  },
311
311
  {
312
312
  "internalType": "Blocknumber",
313
313
  "name": "createdIn",
314
- "type": "uint32"
314
+ "type": "uint40"
315
315
  }
316
316
  ],
317
317
  "internalType": "struct IKeyValueStore.Metadata",
@@ -395,12 +395,12 @@
395
395
  {
396
396
  "internalType": "Blocknumber",
397
397
  "name": "updatedIn",
398
- "type": "uint32"
398
+ "type": "uint40"
399
399
  },
400
400
  {
401
401
  "internalType": "Blocknumber",
402
402
  "name": "createdIn",
403
- "type": "uint32"
403
+ "type": "uint40"
404
404
  }
405
405
  ],
406
406
  "internalType": "struct IKeyValueStore.Metadata",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -68,6 +68,25 @@
68
68
  "name": "ErrorNotRegistry",
69
69
  "type": "error"
70
70
  },
71
+ {
72
+ "anonymous": false,
73
+ "inputs": [
74
+ {
75
+ "indexed": false,
76
+ "internalType": "NftId",
77
+ "name": "nftId",
78
+ "type": "uint96"
79
+ },
80
+ {
81
+ "indexed": false,
82
+ "internalType": "address",
83
+ "name": "owner",
84
+ "type": "address"
85
+ }
86
+ ],
87
+ "name": "LogNftOwnableNftLinkedToAddress",
88
+ "type": "event"
89
+ },
71
90
  {
72
91
  "inputs": [],
73
92
  "name": "getNftId",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -135,6 +135,25 @@
135
135
  "name": "AuthorityUpdated",
136
136
  "type": "event"
137
137
  },
138
+ {
139
+ "anonymous": false,
140
+ "inputs": [
141
+ {
142
+ "indexed": false,
143
+ "internalType": "NftId",
144
+ "name": "nftId",
145
+ "type": "uint96"
146
+ },
147
+ {
148
+ "indexed": false,
149
+ "internalType": "address",
150
+ "name": "owner",
151
+ "type": "address"
152
+ }
153
+ ],
154
+ "name": "LogNftOwnableNftLinkedToAddress",
155
+ "type": "event"
156
+ },
138
157
  {
139
158
  "inputs": [],
140
159
  "name": "authority",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -122,6 +122,16 @@
122
122
  "name": "ErrorRegisterableNotActive",
123
123
  "type": "error"
124
124
  },
125
+ {
126
+ "inputs": [],
127
+ "name": "ErrorVersionableInitializeNotImplemented",
128
+ "type": "error"
129
+ },
130
+ {
131
+ "inputs": [],
132
+ "name": "ErrorVersionableUpgradeNotImplemented",
133
+ "type": "error"
134
+ },
125
135
  {
126
136
  "anonymous": false,
127
137
  "inputs": [
@@ -135,6 +145,25 @@
135
145
  "name": "AuthorityUpdated",
136
146
  "type": "event"
137
147
  },
148
+ {
149
+ "anonymous": false,
150
+ "inputs": [
151
+ {
152
+ "indexed": false,
153
+ "internalType": "NftId",
154
+ "name": "nftId",
155
+ "type": "uint96"
156
+ },
157
+ {
158
+ "indexed": false,
159
+ "internalType": "address",
160
+ "name": "owner",
161
+ "type": "address"
162
+ }
163
+ ],
164
+ "name": "LogNftOwnableNftLinkedToAddress",
165
+ "type": "event"
166
+ },
138
167
  {
139
168
  "inputs": [],
140
169
  "name": "authority",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -306,6 +306,25 @@
306
306
  "name": "LogComponentWalletTokensTransferred",
307
307
  "type": "event"
308
308
  },
309
+ {
310
+ "anonymous": false,
311
+ "inputs": [
312
+ {
313
+ "indexed": false,
314
+ "internalType": "NftId",
315
+ "name": "nftId",
316
+ "type": "uint96"
317
+ },
318
+ {
319
+ "indexed": false,
320
+ "internalType": "address",
321
+ "name": "owner",
322
+ "type": "address"
323
+ }
324
+ ],
325
+ "name": "LogNftOwnableNftLinkedToAddress",
326
+ "type": "event"
327
+ },
309
328
  {
310
329
  "inputs": [],
311
330
  "name": "COMPONENT_LOCATION_V1",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -205,7 +205,7 @@
205
205
  "indexed": false,
206
206
  "internalType": "Blocknumber",
207
207
  "name": "lastUpdatedIn",
208
- "type": "uint32"
208
+ "type": "uint40"
209
209
  }
210
210
  ],
211
211
  "name": "LogInfoUpdated",
@@ -254,7 +254,7 @@
254
254
  "indexed": false,
255
255
  "internalType": "Blocknumber",
256
256
  "name": "lastUpdatedIn",
257
- "type": "uint32"
257
+ "type": "uint40"
258
258
  }
259
259
  ],
260
260
  "name": "LogStateUpdated",
@@ -334,12 +334,12 @@
334
334
  {
335
335
  "internalType": "Blocknumber",
336
336
  "name": "updatedIn",
337
- "type": "uint32"
337
+ "type": "uint40"
338
338
  },
339
339
  {
340
340
  "internalType": "Blocknumber",
341
341
  "name": "createdIn",
342
- "type": "uint32"
342
+ "type": "uint40"
343
343
  }
344
344
  ],
345
345
  "internalType": "struct IKeyValueStore.Metadata",
@@ -423,12 +423,12 @@
423
423
  {
424
424
  "internalType": "Blocknumber",
425
425
  "name": "updatedIn",
426
- "type": "uint32"
426
+ "type": "uint40"
427
427
  },
428
428
  {
429
429
  "internalType": "Blocknumber",
430
430
  "name": "createdIn",
431
- "type": "uint32"
431
+ "type": "uint40"
432
432
  }
433
433
  ],
434
434
  "internalType": "struct IKeyValueStore.Metadata",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5df0bb604666a4d2453a364d90e105b9.json"
3
+ "buildInfo": "../../../build-info/751a400f5e74f0e0d20023ecdc2bc107.json"
4
4
  }