@etherisc/gif-next 0.0.2-ed4dd55 → 0.0.2-efdb520-159

Sign up to get free protection for your applications and to get access to all the features.
Files changed (319) hide show
  1. package/README.md +125 -0
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → BaseComponent.sol/BaseComponent.json} +55 -60
  4. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  5. package/artifacts/contracts/{instance/component/IComponent.sol/IComponentContract.json → components/IBaseComponent.sol/IBaseComponent.json} +54 -59
  6. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +356 -0
  8. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +279 -0
  10. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  11. package/artifacts/contracts/components/Pool.sol/Pool.json +225 -33
  12. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  13. package/artifacts/contracts/components/Product.sol/Product.json +154 -62
  14. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +4 -0
  15. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +105 -0
  16. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +4 -0
  17. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +105 -0
  18. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
  20. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
  22. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
  29. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
  30. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
  31. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
  32. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
  33. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
  34. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
  35. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
  36. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
  37. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
  38. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  39. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
  40. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  41. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
  42. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  43. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1364 -234
  44. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
  45. package/artifacts/contracts/instance/{component/IComponent.sol → IInstanceLinked.sol}/IInstanceLinked.json +1 -1
  46. package/artifacts/contracts/instance/IServiceLinked.sol/IServiceLinked.dbg.json +4 -0
  47. package/artifacts/contracts/instance/{access/IAccess.sol/IAccessComponentTypeRoles.json → IServiceLinked.sol/IServiceLinked.json} +14 -14
  48. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  49. package/artifacts/contracts/instance/Instance.sol/Instance.json +1652 -373
  50. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  51. package/artifacts/contracts/instance/{component/ComponentModule.sol/ComponentModule.json → InstanceBase.sol/InstanceBase.json} +130 -144
  52. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
  53. package/artifacts/contracts/instance/{access → module/access}/Access.sol/AccessModule.json +85 -152
  54. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
  55. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccess.json +1 -1
  56. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
  57. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccessModule.json +96 -99
  58. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
  59. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +276 -0
  60. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
  61. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
  62. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
  63. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +276 -0
  64. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
  65. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +188 -0
  66. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
  67. package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponent.json +1 -1
  68. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
  69. package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponentModule.json +54 -111
  70. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  71. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.json +134 -0
  72. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +4 -0
  73. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycleModule.json +182 -0
  74. package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +4 -0
  75. package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.json +221 -0
  76. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicy.json +1 -1
  78. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
  79. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicyModule.json +146 -116
  80. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
  81. package/artifacts/contracts/instance/{policy → module/policy}/PolicyModule.sol/PolicyModule.json +146 -116
  82. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
  83. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPool.json +1 -1
  84. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
  85. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPoolModule.json +63 -63
  86. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
  87. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +149 -0
  88. package/artifacts/contracts/instance/module/product/IProductModule.sol/IProductModule.dbg.json +4 -0
  89. package/artifacts/contracts/instance/module/product/IProductModule.sol/IProductModule.json +10 -0
  90. package/artifacts/contracts/instance/module/product/ProductModule.sol/ProductModule.dbg.json +4 -0
  91. package/artifacts/contracts/instance/module/product/ProductModule.sol/ProductModule.json +10 -0
  92. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
  93. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +10 -0
  94. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
  95. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +538 -0
  96. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  97. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
  98. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
  99. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +538 -0
  100. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +519 -0
  102. package/artifacts/contracts/instance/service/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  103. package/artifacts/contracts/instance/service/ComponentServiceBase.sol/ComponentServiceBase.json +300 -0
  104. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  105. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +364 -0
  106. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +376 -0
  108. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  109. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +477 -0
  110. package/artifacts/contracts/instance/service/IService.sol/IService.dbg.json +4 -0
  111. package/artifacts/contracts/instance/service/IService.sol/IService.json +300 -0
  112. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  113. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +499 -0
  114. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  115. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +685 -0
  116. package/artifacts/contracts/instance/service/ServiceBase.sol/ServiceBase.dbg.json +4 -0
  117. package/artifacts/contracts/instance/service/ServiceBase.sol/ServiceBase.json +300 -0
  118. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  119. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +65 -2
  120. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
  121. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  122. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +115 -89
  123. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  124. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +24 -0
  125. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  126. package/artifacts/contracts/registry/Registry.sol/Registry.json +244 -77
  127. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  128. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  129. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +4 -0
  130. package/artifacts/contracts/{registry/IRegistry.sol → shared/IOwnable.sol}/IOwnable.json +1 -1
  131. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  132. package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegisterable.sol}/IRegisterable.json +22 -67
  133. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  134. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +164 -0
  135. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  136. package/artifacts/contracts/{registry/Registry.sol → shared/Registerable.sol}/Registerable.json +23 -68
  137. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  138. package/artifacts/contracts/{instance/pool/PoolModule.sol/PoolModule.json → shared/Versionable.sol/Versionable.json} +72 -70
  139. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  140. package/artifacts/contracts/test/TestFee.sol/TestFee.json +95 -0
  141. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +4 -0
  142. package/artifacts/contracts/test/TestPool.sol/TestPool.json +387 -0
  143. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
  144. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +393 -0
  145. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  146. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +137 -0
  147. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  148. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +82 -0
  149. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  150. package/artifacts/contracts/test/TestService.sol/TestService.json +407 -0
  151. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  152. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -0
  153. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  154. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +222 -0
  155. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  156. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +230 -0
  157. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  158. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  159. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  160. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
  161. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  162. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
  163. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  164. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +85 -3
  165. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  166. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  167. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  168. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
  169. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  170. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  171. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
  172. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +236 -0
  173. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +4 -0
  174. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +453 -0
  175. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  176. package/artifacts/contracts/types/Version.sol/VersionLib.json +78 -0
  177. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  178. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +30 -0
  179. package/contracts/components/BaseComponent.sol +89 -0
  180. package/contracts/components/IBaseComponent.sol +19 -0
  181. package/contracts/components/IPoolComponent.sol +57 -0
  182. package/contracts/components/IProductComponent.sol +19 -0
  183. package/contracts/components/Pool.sol +161 -16
  184. package/contracts/components/Product.sol +79 -27
  185. package/contracts/experiment/errors/Require.sol +38 -0
  186. package/contracts/experiment/errors/Revert.sol +44 -0
  187. package/contracts/experiment/inheritance/A.sol +8 -11
  188. package/contracts/experiment/inheritance/B.sol +10 -5
  189. package/contracts/experiment/inheritance/C.sol +11 -5
  190. package/contracts/experiment/inheritance/IA.sol +2 -7
  191. package/contracts/experiment/inheritance/IB.sol +3 -2
  192. package/contracts/experiment/inheritance/IC.sol +4 -3
  193. package/contracts/experiment/statemachine/Dummy.sol +27 -0
  194. package/contracts/experiment/statemachine/ISM.sol +25 -0
  195. package/contracts/experiment/statemachine/README.md +112 -0
  196. package/contracts/experiment/statemachine/SM.sol +57 -0
  197. package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
  198. package/contracts/experiment/types/TypeA.sol +14 -9
  199. package/contracts/experiment/types/TypeB.sol +14 -9
  200. package/contracts/instance/IInstance.sol +38 -8
  201. package/contracts/instance/IInstanceLinked.sol +8 -0
  202. package/contracts/instance/IServiceLinked.sol +12 -0
  203. package/contracts/instance/Instance.sol +43 -44
  204. package/contracts/instance/InstanceBase.sol +74 -0
  205. package/contracts/instance/module/access/Access.sol +149 -0
  206. package/contracts/instance/module/access/IAccess.sol +53 -0
  207. package/contracts/instance/module/bundle/BundleModule.sol +228 -0
  208. package/contracts/instance/module/bundle/IBundle.sol +53 -0
  209. package/contracts/instance/module/component/ComponentModule.sol +104 -0
  210. package/contracts/instance/module/component/IComponent.sol +53 -0
  211. package/contracts/instance/module/lifecycle/ILifecycle.sol +47 -0
  212. package/contracts/instance/module/lifecycle/LifecycleModule.sol +89 -0
  213. package/contracts/instance/module/policy/IPolicy.sol +60 -0
  214. package/contracts/instance/module/policy/PolicyModule.sol +84 -0
  215. package/contracts/instance/module/pool/IPoolModule.sol +41 -0
  216. package/contracts/instance/module/pool/PoolModule.sol +87 -0
  217. package/contracts/instance/module/product/IProductModule.sol +6 -0
  218. package/contracts/instance/module/product/ProductModule.sol +8 -0
  219. package/contracts/instance/module/treasury/ITreasury.sol +104 -0
  220. package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
  221. package/contracts/instance/module/treasury/TreasuryModule.sol +148 -0
  222. package/contracts/instance/service/ComponentOwnerService.sol +174 -0
  223. package/contracts/instance/service/ComponentServiceBase.sol +41 -0
  224. package/contracts/instance/service/IComponentOwnerService.sol +22 -0
  225. package/contracts/instance/service/IPoolService.sol +30 -0
  226. package/contracts/instance/service/IProductService.sol +58 -0
  227. package/contracts/instance/service/IService.sol +15 -0
  228. package/contracts/instance/service/PoolService.sol +98 -0
  229. package/contracts/instance/service/ProductService.sol +358 -0
  230. package/contracts/instance/service/ServiceBase.sol +39 -0
  231. package/contracts/registry/ChainNft.sol +80 -94
  232. package/contracts/registry/IChainNft.sol +10 -7
  233. package/contracts/registry/IRegistry.sol +40 -51
  234. package/contracts/registry/IRegistryLinked.sol +8 -0
  235. package/contracts/registry/Registry.sol +312 -107
  236. package/contracts/shared/ERC165.sol +21 -0
  237. package/contracts/shared/IOwnable.sol +6 -0
  238. package/contracts/shared/IRegisterable.sol +24 -0
  239. package/contracts/shared/IVersionable.sol +52 -0
  240. package/contracts/shared/Registerable.sol +86 -0
  241. package/contracts/shared/Versionable.sol +92 -0
  242. package/contracts/test/TestFee.sol +25 -0
  243. package/contracts/test/TestPool.sol +22 -0
  244. package/contracts/test/TestProduct.sol +44 -0
  245. package/contracts/test/TestRegisterable.sol +19 -0
  246. package/contracts/test/TestRoleId.sol +14 -0
  247. package/contracts/test/TestService.sol +35 -0
  248. package/contracts/test/TestToken.sol +26 -0
  249. package/contracts/test/TestVersion.sol +47 -0
  250. package/contracts/test/TestVersionable.sol +20 -0
  251. package/contracts/types/AddressSet.sol +58 -0
  252. package/contracts/types/Blocknumber.sol +118 -0
  253. package/contracts/types/ChainId.sol +24 -10
  254. package/contracts/types/Fee.sol +32 -0
  255. package/contracts/types/NftId.sol +40 -8
  256. package/contracts/types/NftIdSet.sol +60 -0
  257. package/contracts/types/ObjectType.sol +115 -0
  258. package/contracts/types/RoleId.sol +36 -0
  259. package/contracts/types/StateId.sol +95 -0
  260. package/contracts/types/Timestamp.sol +123 -0
  261. package/contracts/types/UFixed.sol +206 -0
  262. package/contracts/types/Version.sol +91 -0
  263. package/package.json +19 -5
  264. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  265. package/artifacts/contracts/components/Component.sol/Component.json +0 -179
  266. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  267. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  268. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  269. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  270. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  271. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  272. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  273. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  274. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  275. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  276. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  277. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  278. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  279. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -105
  280. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  281. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  282. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  283. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  284. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  285. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  286. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  287. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  288. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  289. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  290. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  291. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  292. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  293. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  294. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  295. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
  296. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  297. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  298. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  299. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -125
  300. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  301. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  302. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  303. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  304. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  305. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  306. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  307. package/contracts/components/Component.sol +0 -62
  308. package/contracts/components/IPool.sol +0 -9
  309. package/contracts/components/IProduct.sol +0 -11
  310. package/contracts/instance/access/Access.sol +0 -218
  311. package/contracts/instance/access/IAccess.sol +0 -83
  312. package/contracts/instance/component/ComponentModule.sol +0 -259
  313. package/contracts/instance/component/IComponent.sol +0 -94
  314. package/contracts/instance/policy/IPolicy.sol +0 -66
  315. package/contracts/instance/policy/PolicyModule.sol +0 -106
  316. package/contracts/instance/pool/IPoolModule.sol +0 -40
  317. package/contracts/instance/pool/PoolModule.sol +0 -83
  318. package/contracts/instance/product/IProductService.sol +0 -45
  319. package/contracts/instance/product/ProductService.sol +0 -105
@@ -0,0 +1,499 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "PoolService",
4
+ "sourceName": "contracts/instance/service/PoolService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "registry",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "NftId",
15
+ "name": "registryNftId",
16
+ "type": "uint96"
17
+ }
18
+ ],
19
+ "stateMutability": "nonpayable",
20
+ "type": "constructor"
21
+ },
22
+ {
23
+ "anonymous": false,
24
+ "inputs": [
25
+ {
26
+ "indexed": false,
27
+ "internalType": "Version",
28
+ "name": "version",
29
+ "type": "uint24"
30
+ },
31
+ {
32
+ "indexed": false,
33
+ "internalType": "address",
34
+ "name": "implementation",
35
+ "type": "address"
36
+ },
37
+ {
38
+ "indexed": false,
39
+ "internalType": "address",
40
+ "name": "activatedBy",
41
+ "type": "address"
42
+ }
43
+ ],
44
+ "name": "LogVersionableActivated",
45
+ "type": "event"
46
+ },
47
+ {
48
+ "inputs": [],
49
+ "name": "NAME",
50
+ "outputs": [
51
+ {
52
+ "internalType": "string",
53
+ "name": "",
54
+ "type": "string"
55
+ }
56
+ ],
57
+ "stateMutability": "view",
58
+ "type": "function"
59
+ },
60
+ {
61
+ "inputs": [
62
+ {
63
+ "internalType": "address",
64
+ "name": "implementation",
65
+ "type": "address"
66
+ },
67
+ {
68
+ "internalType": "address",
69
+ "name": "activatedBy",
70
+ "type": "address"
71
+ }
72
+ ],
73
+ "name": "activate",
74
+ "outputs": [],
75
+ "stateMutability": "nonpayable",
76
+ "type": "function"
77
+ },
78
+ {
79
+ "inputs": [
80
+ {
81
+ "internalType": "address",
82
+ "name": "owner",
83
+ "type": "address"
84
+ },
85
+ {
86
+ "internalType": "uint256",
87
+ "name": "amount",
88
+ "type": "uint256"
89
+ },
90
+ {
91
+ "internalType": "uint256",
92
+ "name": "lifetime",
93
+ "type": "uint256"
94
+ },
95
+ {
96
+ "internalType": "bytes",
97
+ "name": "filter",
98
+ "type": "bytes"
99
+ }
100
+ ],
101
+ "name": "createBundle",
102
+ "outputs": [
103
+ {
104
+ "internalType": "NftId",
105
+ "name": "bundleNftId",
106
+ "type": "uint96"
107
+ }
108
+ ],
109
+ "stateMutability": "nonpayable",
110
+ "type": "function"
111
+ },
112
+ {
113
+ "inputs": [],
114
+ "name": "getData",
115
+ "outputs": [
116
+ {
117
+ "internalType": "bytes",
118
+ "name": "data",
119
+ "type": "bytes"
120
+ }
121
+ ],
122
+ "stateMutability": "view",
123
+ "type": "function"
124
+ },
125
+ {
126
+ "inputs": [],
127
+ "name": "getMajorVersion",
128
+ "outputs": [
129
+ {
130
+ "internalType": "VersionPart",
131
+ "name": "majorVersion",
132
+ "type": "uint8"
133
+ }
134
+ ],
135
+ "stateMutability": "view",
136
+ "type": "function"
137
+ },
138
+ {
139
+ "inputs": [],
140
+ "name": "getName",
141
+ "outputs": [
142
+ {
143
+ "internalType": "string",
144
+ "name": "name",
145
+ "type": "string"
146
+ }
147
+ ],
148
+ "stateMutability": "pure",
149
+ "type": "function"
150
+ },
151
+ {
152
+ "inputs": [],
153
+ "name": "getNftId",
154
+ "outputs": [
155
+ {
156
+ "internalType": "NftId",
157
+ "name": "nftId",
158
+ "type": "uint96"
159
+ }
160
+ ],
161
+ "stateMutability": "view",
162
+ "type": "function"
163
+ },
164
+ {
165
+ "inputs": [],
166
+ "name": "getOwner",
167
+ "outputs": [
168
+ {
169
+ "internalType": "address",
170
+ "name": "owner",
171
+ "type": "address"
172
+ }
173
+ ],
174
+ "stateMutability": "view",
175
+ "type": "function"
176
+ },
177
+ {
178
+ "inputs": [],
179
+ "name": "getParentNftId",
180
+ "outputs": [
181
+ {
182
+ "internalType": "NftId",
183
+ "name": "nftId",
184
+ "type": "uint96"
185
+ }
186
+ ],
187
+ "stateMutability": "view",
188
+ "type": "function"
189
+ },
190
+ {
191
+ "inputs": [],
192
+ "name": "getRegistry",
193
+ "outputs": [
194
+ {
195
+ "internalType": "contract IRegistry",
196
+ "name": "registry",
197
+ "type": "address"
198
+ }
199
+ ],
200
+ "stateMutability": "view",
201
+ "type": "function"
202
+ },
203
+ {
204
+ "inputs": [],
205
+ "name": "getType",
206
+ "outputs": [
207
+ {
208
+ "internalType": "ObjectType",
209
+ "name": "",
210
+ "type": "uint8"
211
+ }
212
+ ],
213
+ "stateMutability": "pure",
214
+ "type": "function"
215
+ },
216
+ {
217
+ "inputs": [],
218
+ "name": "getVersion",
219
+ "outputs": [
220
+ {
221
+ "internalType": "Version",
222
+ "name": "",
223
+ "type": "uint24"
224
+ }
225
+ ],
226
+ "stateMutability": "pure",
227
+ "type": "function"
228
+ },
229
+ {
230
+ "inputs": [
231
+ {
232
+ "internalType": "uint256",
233
+ "name": "idx",
234
+ "type": "uint256"
235
+ }
236
+ ],
237
+ "name": "getVersion",
238
+ "outputs": [
239
+ {
240
+ "internalType": "Version",
241
+ "name": "",
242
+ "type": "uint24"
243
+ }
244
+ ],
245
+ "stateMutability": "view",
246
+ "type": "function"
247
+ },
248
+ {
249
+ "inputs": [],
250
+ "name": "getVersionCount",
251
+ "outputs": [
252
+ {
253
+ "internalType": "uint256",
254
+ "name": "",
255
+ "type": "uint256"
256
+ }
257
+ ],
258
+ "stateMutability": "view",
259
+ "type": "function"
260
+ },
261
+ {
262
+ "inputs": [
263
+ {
264
+ "internalType": "Version",
265
+ "name": "_version",
266
+ "type": "uint24"
267
+ }
268
+ ],
269
+ "name": "getVersionInfo",
270
+ "outputs": [
271
+ {
272
+ "components": [
273
+ {
274
+ "internalType": "Version",
275
+ "name": "version",
276
+ "type": "uint24"
277
+ },
278
+ {
279
+ "internalType": "address",
280
+ "name": "implementation",
281
+ "type": "address"
282
+ },
283
+ {
284
+ "internalType": "address",
285
+ "name": "activatedBy",
286
+ "type": "address"
287
+ },
288
+ {
289
+ "internalType": "Blocknumber",
290
+ "name": "activatedIn",
291
+ "type": "uint32"
292
+ },
293
+ {
294
+ "internalType": "Timestamp",
295
+ "name": "activatedAt",
296
+ "type": "uint40"
297
+ }
298
+ ],
299
+ "internalType": "struct IVersionable.VersionInfo",
300
+ "name": "",
301
+ "type": "tuple"
302
+ }
303
+ ],
304
+ "stateMutability": "view",
305
+ "type": "function"
306
+ },
307
+ {
308
+ "inputs": [
309
+ {
310
+ "internalType": "Version",
311
+ "name": "_version",
312
+ "type": "uint24"
313
+ }
314
+ ],
315
+ "name": "isActivated",
316
+ "outputs": [
317
+ {
318
+ "internalType": "bool",
319
+ "name": "",
320
+ "type": "bool"
321
+ }
322
+ ],
323
+ "stateMutability": "view",
324
+ "type": "function"
325
+ },
326
+ {
327
+ "inputs": [],
328
+ "name": "register",
329
+ "outputs": [
330
+ {
331
+ "internalType": "NftId",
332
+ "name": "nftId",
333
+ "type": "uint96"
334
+ }
335
+ ],
336
+ "stateMutability": "nonpayable",
337
+ "type": "function"
338
+ },
339
+ {
340
+ "inputs": [
341
+ {
342
+ "components": [
343
+ {
344
+ "internalType": "UFixed",
345
+ "name": "fractionalFee",
346
+ "type": "uint256"
347
+ },
348
+ {
349
+ "internalType": "uint256",
350
+ "name": "fixedFee",
351
+ "type": "uint256"
352
+ }
353
+ ],
354
+ "internalType": "struct Fee",
355
+ "name": "stakingFee",
356
+ "type": "tuple"
357
+ },
358
+ {
359
+ "components": [
360
+ {
361
+ "internalType": "UFixed",
362
+ "name": "fractionalFee",
363
+ "type": "uint256"
364
+ },
365
+ {
366
+ "internalType": "uint256",
367
+ "name": "fixedFee",
368
+ "type": "uint256"
369
+ }
370
+ ],
371
+ "internalType": "struct Fee",
372
+ "name": "performanceFee",
373
+ "type": "tuple"
374
+ }
375
+ ],
376
+ "name": "setFees",
377
+ "outputs": [],
378
+ "stateMutability": "nonpayable",
379
+ "type": "function"
380
+ },
381
+ {
382
+ "inputs": [
383
+ {
384
+ "internalType": "bytes4",
385
+ "name": "interfaceId",
386
+ "type": "bytes4"
387
+ }
388
+ ],
389
+ "name": "supportsInterface",
390
+ "outputs": [
391
+ {
392
+ "internalType": "bool",
393
+ "name": "",
394
+ "type": "bool"
395
+ }
396
+ ],
397
+ "stateMutability": "view",
398
+ "type": "function"
399
+ }
400
+ ],
401
+ "bytecode": "0x60e06040523480156200001157600080fd5b506040516200230338038062002303833981016040819052620000349162000893565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff191660011790558181818181816001600160a01b038216620000d25760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a5247422d3031303a52454749535452595f5a45524f000000000060448201526064015b60405180910390fd5b6001600160a01b03821660808190526040516301ffc9a760e01b81526306ecd8ef60e01b60048201526301ffc9a790602401602060405180830381865afa15801562000122573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001489190620008e8565b620001965760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a5247422d3031313a4e4f545f52454749535452590000000000006044820152606401620000c9565b6001600160601b03811660a081905260805160405163e74d052f60e01b815260048101929092526001600160a01b03169063e74d052f90602401602060405180830381865afa158015620001ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002149190620008e8565b6200026e5760405162461bcd60e51b815260206004820152602360248201527f4552524f523a5247422d3031323a504152454e545f4e4f545f5245474953544560448201526214915160ea1b6064820152608401620000c9565b3360c052631dfba64760e11b60009081526020527f95e5a2564f7af40498dc043c6da135e06324c5edb1f60c2bf4dcdf2da207fa45805460ff1916600117905550620002be905060003362000343565b631b4612f160e31b60009081526020527ffc58a5a01198e68c5a5d0bcd463f9ab550fc4337b1df271aed6dbb33d25fef25805460ff191660011790555050505062000316630763f0d360e41b6200031e60201b60201c565b505062000985565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b60006200034f6200061b565b90506200035c8162000631565b15620003bb5760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b6064820152608401620000c9565b600254156200047c576002805460009190620003da9060019062000929565b81548110620003ed57620003ed6200093f565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050620004208282620006d7565b6200047a5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b6064820152608401620000c9565b505b60028054600181018255600091909152600a8082047f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b03808616602084015284169082015260608101620005064390565b63ffffffff1681526020014264ffffffffff90811690915262ffffff80841660009081526001602081815260409283902086518154928801516001600160a01b039081166301000000026001600160b81b0319909416919096161791909117815585830151910180546060870151608090970151909516600160c01b0264ffffffffff60c01b1963ffffffff909716600160a01b026001600160c01b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d4419906200060e9083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60405180910390a1505050565b60006200062c6003600080620006e9565b905090565b62ffffff81166000908152600160208190526040808320909101549051631bbffab160e21b8152600160a01b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015620006aa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006d0919062000955565b1192915050565b62ffffff808216908316115b92915050565b604051632b10f60d60e21b815260ff84166004820152600090819073__$9dab98ad7ae1a426029e5739f922230a41$__9063ac43d83490602401602060405180830381865af415801562000741573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000767919062000955565b604051632b10f60d60e21b815260ff8616600482015290915060009073__$9dab98ad7ae1a426029e5739f922230a41$__9063ac43d83490602401602060405180830381865af4158015620007c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007e6919062000955565b604051632b10f60d60e21b815260ff8616600482015290915060009073__$9dab98ad7ae1a426029e5739f922230a41$__9063ac43d83490602401602060405180830381865af41580156200083f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000865919062000955565b9050806200087c600884901b601086901b6200096f565b6200088891906200096f565b979650505050505050565b60008060408385031215620008a757600080fd5b82516001600160a01b0381168114620008bf57600080fd5b60208401519092506001600160601b0381168114620008dd57600080fd5b809150509250929050565b600060208284031215620008fb57600080fd5b815180151581146200090c57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b81810381811115620006e357620006e362000913565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156200096857600080fd5b5051919050565b80820180821115620006e357620006e362000913565b60805160a05160c051611916620009ed6000396000610732015260006101fe0152600081816102a8015281816104bc01528181610642015281816106b301528181610775015281816109210152818161106f015281816111cb01526112c101526119166000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80635ab1bd53116100ad578063a3f4df7e11610071578063a3f4df7e14610316578063b6b412ba14610340578063b88da75914610353578063c08b1f8a14610366578063cde749f41461037957600080fd5b80635ab1bd53146102a6578063644c45e0146102e0578063893d20e8146102e8578063946dfcfe146102f05780639555c4db1461030157600080fd5b806317d7de7c116100f457806317d7de7c146101ac5780631aa3a008146101dc57806331b62a3b146101fc5780633bc5de30146102225780634d459c901461023657600080fd5b806301ffc9a7146101265780630abd8434146101685780630d8e6e2c1461017b57806315dae03e14610197575b600080fd5b610153610134366004611346565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61015361017636600461138b565b610381565b610183610424565b60405162ffffff909116815260200161015f565b60285b60405160ff909116815260200161015f565b60408051808201909152600b81526a506f6f6c5365727669636560a81b60208201525b60405161015f91906113f8565b6101e4610438565b6040516001600160601b03909116815260200161015f565b7f00000000000000000000000000000000000000000000000000000000000000006101e4565b6040805160208101909152600081526101cf565b61024961024436600461138b565b610531565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015163ffffffff169082015260809182015164ffffffffff169181019190915260a00161015f565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b03909116815260200161015f565b6101e461062a565b6102c8610691565b60025460405190815260200161015f565b61031461030f366004611420565b6107ee565b005b6101cf6040518060400160405280600b81526020016a506f6f6c5365727669636560a81b81525081565b61031461034e3660046114e7565b6107fc565b61018361036136600461151c565b610877565b6101e4610374366004611535565b61090a565b61019a610ac8565b62ffffff81166000908152600160208190526040808320909101549051631bbffab160e21b8152600160a01b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af41580156103f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061041d91906115cb565b1192915050565b60006104336003600080610ba5565b905090565b6000610442610691565b6001600160a01b0316336001600160a01b0316146104a75760405162461bcd60e51b815260206004820152601760248201527f4552524f523a5247422d3030313a4e4f545f4f574e455200000000000000000060448201526064015b60405180910390fd5b604051632210724360e11b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634420e486906024016020604051808303816000875af115801561050d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104339190611600565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915261056582610381565b6105b15760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a56524e2d3032303a56455253494f4e5f554e4b4e4f574e000000604482015260640161049e565b5062ffffff908116600090815260016020818152604092839020835160a0810185528154958616815263010000009095046001600160a01b03908116928601929092529091015490811691830191909152600160a01b810463ffffffff166060830152600160c01b900464ffffffffff16608082015290565b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa15801561050d573d6000803e3d6000fd5b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa1580156106fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071e9190611600565b905061072b816000610d42565b15610757577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa1580156107c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e8919061161b565b91505090565b6107f88282610d58565b5050565b6000806108096082611026565b81516040516324e196bb60e21b81529294509092506001600160a01b038316916393865aec9161083f9188908890600401611638565b600060405180830381600087803b15801561085957600080fd5b505af115801561086d573d6000803e3d6000fd5b5050505050505050565b60025460009082106108cb5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a56524e2d3031303a494e4445585f544f4f5f4c41524745000000604482015260640161049e565b600282815481106108de576108de611678565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080806109186082611026565b815191935091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316635ef14b5e8260d26040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526001600160a01b038c166044820152608060648201526000608482015260a4016020604051808303816000875af11580156109bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e09190611600565b604051630164421d60e21b81529094506001600160a01b03831690630591087490610a1990879085908d908d908d908d9060040161168e565b600060405180830381600087803b158015610a3357600080fd5b505af1158015610a47573d6000803e3d6000fd5b5050604051639845743760e01b81526001600160601b03808816600483015284166024820152604481018b90526001600160a01b038516925063984574379150606401600060405180830381600087803b158015610aa457600080fd5b505af1158015610ab8573d6000803e3d6000fd5b5050505050505095945050505050565b6000306001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2c91906116e9565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015610b81573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104339190611715565b604051632b10f60d60e21b815260ff84166004820152600090819073__$9dab98ad7ae1a426029e5739f922230a41$__9063ac43d83490602401602060405180830381865af4158015610bfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2091906115cb565b604051632b10f60d60e21b815260ff8616600482015290915060009073__$9dab98ad7ae1a426029e5739f922230a41$__9063ac43d83490602401602060405180830381865af4158015610c78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9c91906115cb565b604051632b10f60d60e21b815260ff8616600482015290915060009073__$9dab98ad7ae1a426029e5739f922230a41$__9063ac43d83490602401602060405180830381865af4158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1891906115cb565b905080610d2d600884901b601086901b611748565b610d379190611748565b979650505050505050565b6001600160601b03828116908216145b92915050565b6000610d62610424565b9050610d6d81610381565b15610dca5760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b606482015260840161049e565b60025415610e89576002805460009190610de69060019061175b565b81548110610df657610df6611678565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050610e2f828262ffffff90811691161190565b610e875760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b606482015260840161049e565b505b60028054600181018255600091909152600a8082047f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b03808616602084015284169082015260608101610f124390565b63ffffffff1681526020014264ffffffffff90811690915262ffffff80841660009081526001602081815260409283902086518154928801516001600160a01b039081166301000000026001600160b81b0319909416919096161791909117815585830151910180546060870151608090970151909516600160c01b0264ffffffffff60c01b1963ffffffff909716600160a01b026001600160c01b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d4419906110199083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60405180910390a1505050565b6040805160c08101825260008082526020820181905281830181905260608083018290526080830182905260a08301529151636939560f60e11b815233600482015290919081907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa1580156110be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e29190611600565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561113d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611161919061176e565b6111ad5760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000604482015260640161049e565b6040516305247a1760e51b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a48f42e090602401600060405180830381865afa15801561121a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112429190810190611818565b925061125883604001518560ff90811691161490565b61129a5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b604482015260640161049e565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a48f42e090602401600060405180830381865afa158015611310573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113389190810190611818565b606001519395939450505050565b60006020828403121561135857600080fd5b81356001600160e01b03198116811461137057600080fd5b9392505050565b62ffffff8116811461138857600080fd5b50565b60006020828403121561139d57600080fd5b813561137081611377565b60005b838110156113c35781810151838201526020016113ab565b50506000910152565b600081518084526113e48160208601602086016113a8565b601f01601f19169290920160200192915050565b60208152600061137060208301846113cc565b6001600160a01b038116811461138857600080fd5b6000806040838503121561143357600080fd5b823561143e8161140b565b9150602083013561144e8161140b565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60405160c0810167ffffffffffffffff8111828210171561149257611492611459565b60405290565b6000604082840312156114aa57600080fd5b6040516040810181811067ffffffffffffffff821117156114cd576114cd611459565b604052823581526020928301359281019290925250919050565b600080608083850312156114fa57600080fd5b6115048484611498565b91506115138460408501611498565b90509250929050565b60006020828403121561152e57600080fd5b5035919050565b60008060008060006080868803121561154d57600080fd5b85356115588161140b565b94506020860135935060408601359250606086013567ffffffffffffffff8082111561158357600080fd5b818801915088601f83011261159757600080fd5b8135818111156115a657600080fd5b8960208285010111156115b857600080fd5b9699959850939650602001949392505050565b6000602082840312156115dd57600080fd5b5051919050565b80516001600160601b03811681146115fb57600080fd5b919050565b60006020828403121561161257600080fd5b611370826115e4565b60006020828403121561162d57600080fd5b81516113708161140b565b6001600160601b038416815260a0810161165f602083018580518252602090810151910152565b8251606083015260208301516080830152949350505050565b634e487b7160e01b600052603260045260246000fd5b60006001600160601b03808916835280881660208401525085604083015284606083015260a060808301528260a0830152828460c0840137600060c0848401015260c0601f19601f8501168301019050979650505050505050565b6000602082840312156116fb57600080fd5b815161137081611377565b60ff8116811461138857600080fd5b60006020828403121561172757600080fd5b815161137081611706565b634e487b7160e01b600052601160045260246000fd5b80820180821115610d5257610d52611732565b81810381811115610d5257610d52611732565b60006020828403121561178057600080fd5b8151801515811461137057600080fd5b600082601f8301126117a157600080fd5b815167ffffffffffffffff808211156117bc576117bc611459565b604051601f8301601f19908116603f011681019082821181831017156117e4576117e4611459565b816040528381528660208588010111156117fd57600080fd5b61180e8460208301602089016113a8565b9695505050505050565b60006020828403121561182a57600080fd5b815167ffffffffffffffff8082111561184257600080fd5b9083019060c0828603121561185657600080fd5b61185e61146f565b611867836115e4565b8152611875602084016115e4565b6020820152604083015161188881611706565b6040820152606083015161189b8161140b565b606082015260808301516118ae8161140b565b608082015260a0830151828111156118c557600080fd5b6118d187828601611790565b60a0830152509594505050505056fea264697066735822122070f9604aaf04d6a552dabe90cdcb65b4ad18ab5860c1fdb7cd9c73ad0330dabe64736f6c63430008140033",
402
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101215760003560e01c80635ab1bd53116100ad578063a3f4df7e11610071578063a3f4df7e14610316578063b6b412ba14610340578063b88da75914610353578063c08b1f8a14610366578063cde749f41461037957600080fd5b80635ab1bd53146102a6578063644c45e0146102e0578063893d20e8146102e8578063946dfcfe146102f05780639555c4db1461030157600080fd5b806317d7de7c116100f457806317d7de7c146101ac5780631aa3a008146101dc57806331b62a3b146101fc5780633bc5de30146102225780634d459c901461023657600080fd5b806301ffc9a7146101265780630abd8434146101685780630d8e6e2c1461017b57806315dae03e14610197575b600080fd5b610153610134366004611346565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61015361017636600461138b565b610381565b610183610424565b60405162ffffff909116815260200161015f565b60285b60405160ff909116815260200161015f565b60408051808201909152600b81526a506f6f6c5365727669636560a81b60208201525b60405161015f91906113f8565b6101e4610438565b6040516001600160601b03909116815260200161015f565b7f00000000000000000000000000000000000000000000000000000000000000006101e4565b6040805160208101909152600081526101cf565b61024961024436600461138b565b610531565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015163ffffffff169082015260809182015164ffffffffff169181019190915260a00161015f565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b03909116815260200161015f565b6101e461062a565b6102c8610691565b60025460405190815260200161015f565b61031461030f366004611420565b6107ee565b005b6101cf6040518060400160405280600b81526020016a506f6f6c5365727669636560a81b81525081565b61031461034e3660046114e7565b6107fc565b61018361036136600461151c565b610877565b6101e4610374366004611535565b61090a565b61019a610ac8565b62ffffff81166000908152600160208190526040808320909101549051631bbffab160e21b8152600160a01b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af41580156103f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061041d91906115cb565b1192915050565b60006104336003600080610ba5565b905090565b6000610442610691565b6001600160a01b0316336001600160a01b0316146104a75760405162461bcd60e51b815260206004820152601760248201527f4552524f523a5247422d3030313a4e4f545f4f574e455200000000000000000060448201526064015b60405180910390fd5b604051632210724360e11b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634420e486906024016020604051808303816000875af115801561050d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104339190611600565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915261056582610381565b6105b15760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a56524e2d3032303a56455253494f4e5f554e4b4e4f574e000000604482015260640161049e565b5062ffffff908116600090815260016020818152604092839020835160a0810185528154958616815263010000009095046001600160a01b03908116928601929092529091015490811691830191909152600160a01b810463ffffffff166060830152600160c01b900464ffffffffff16608082015290565b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa15801561050d573d6000803e3d6000fd5b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa1580156106fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071e9190611600565b905061072b816000610d42565b15610757577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa1580156107c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e8919061161b565b91505090565b6107f88282610d58565b5050565b6000806108096082611026565b81516040516324e196bb60e21b81529294509092506001600160a01b038316916393865aec9161083f9188908890600401611638565b600060405180830381600087803b15801561085957600080fd5b505af115801561086d573d6000803e3d6000fd5b5050505050505050565b60025460009082106108cb5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a56524e2d3031303a494e4445585f544f4f5f4c41524745000000604482015260640161049e565b600282815481106108de576108de611678565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080806109186082611026565b815191935091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316635ef14b5e8260d26040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526001600160a01b038c166044820152608060648201526000608482015260a4016020604051808303816000875af11580156109bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e09190611600565b604051630164421d60e21b81529094506001600160a01b03831690630591087490610a1990879085908d908d908d908d9060040161168e565b600060405180830381600087803b158015610a3357600080fd5b505af1158015610a47573d6000803e3d6000fd5b5050604051639845743760e01b81526001600160601b03808816600483015284166024820152604481018b90526001600160a01b038516925063984574379150606401600060405180830381600087803b158015610aa457600080fd5b505af1158015610ab8573d6000803e3d6000fd5b5050505050505095945050505050565b6000306001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2c91906116e9565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015610b81573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104339190611715565b604051632b10f60d60e21b815260ff84166004820152600090819073__$9dab98ad7ae1a426029e5739f922230a41$__9063ac43d83490602401602060405180830381865af4158015610bfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2091906115cb565b604051632b10f60d60e21b815260ff8616600482015290915060009073__$9dab98ad7ae1a426029e5739f922230a41$__9063ac43d83490602401602060405180830381865af4158015610c78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9c91906115cb565b604051632b10f60d60e21b815260ff8616600482015290915060009073__$9dab98ad7ae1a426029e5739f922230a41$__9063ac43d83490602401602060405180830381865af4158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1891906115cb565b905080610d2d600884901b601086901b611748565b610d379190611748565b979650505050505050565b6001600160601b03828116908216145b92915050565b6000610d62610424565b9050610d6d81610381565b15610dca5760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b606482015260840161049e565b60025415610e89576002805460009190610de69060019061175b565b81548110610df657610df6611678565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050610e2f828262ffffff90811691161190565b610e875760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b606482015260840161049e565b505b60028054600181018255600091909152600a8082047f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b03808616602084015284169082015260608101610f124390565b63ffffffff1681526020014264ffffffffff90811690915262ffffff80841660009081526001602081815260409283902086518154928801516001600160a01b039081166301000000026001600160b81b0319909416919096161791909117815585830151910180546060870151608090970151909516600160c01b0264ffffffffff60c01b1963ffffffff909716600160a01b026001600160c01b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d4419906110199083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60405180910390a1505050565b6040805160c08101825260008082526020820181905281830181905260608083018290526080830182905260a08301529151636939560f60e11b815233600482015290919081907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa1580156110be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e29190611600565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561113d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611161919061176e565b6111ad5760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000604482015260640161049e565b6040516305247a1760e51b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a48f42e090602401600060405180830381865afa15801561121a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112429190810190611818565b925061125883604001518560ff90811691161490565b61129a5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b604482015260640161049e565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a48f42e090602401600060405180830381865afa158015611310573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113389190810190611818565b606001519395939450505050565b60006020828403121561135857600080fd5b81356001600160e01b03198116811461137057600080fd5b9392505050565b62ffffff8116811461138857600080fd5b50565b60006020828403121561139d57600080fd5b813561137081611377565b60005b838110156113c35781810151838201526020016113ab565b50506000910152565b600081518084526113e48160208601602086016113a8565b601f01601f19169290920160200192915050565b60208152600061137060208301846113cc565b6001600160a01b038116811461138857600080fd5b6000806040838503121561143357600080fd5b823561143e8161140b565b9150602083013561144e8161140b565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60405160c0810167ffffffffffffffff8111828210171561149257611492611459565b60405290565b6000604082840312156114aa57600080fd5b6040516040810181811067ffffffffffffffff821117156114cd576114cd611459565b604052823581526020928301359281019290925250919050565b600080608083850312156114fa57600080fd5b6115048484611498565b91506115138460408501611498565b90509250929050565b60006020828403121561152e57600080fd5b5035919050565b60008060008060006080868803121561154d57600080fd5b85356115588161140b565b94506020860135935060408601359250606086013567ffffffffffffffff8082111561158357600080fd5b818801915088601f83011261159757600080fd5b8135818111156115a657600080fd5b8960208285010111156115b857600080fd5b9699959850939650602001949392505050565b6000602082840312156115dd57600080fd5b5051919050565b80516001600160601b03811681146115fb57600080fd5b919050565b60006020828403121561161257600080fd5b611370826115e4565b60006020828403121561162d57600080fd5b81516113708161140b565b6001600160601b038416815260a0810161165f602083018580518252602090810151910152565b8251606083015260208301516080830152949350505050565b634e487b7160e01b600052603260045260246000fd5b60006001600160601b03808916835280881660208401525085604083015284606083015260a060808301528260a0830152828460c0840137600060c0848401015260c0601f19601f8501168301019050979650505050505050565b6000602082840312156116fb57600080fd5b815161137081611377565b60ff8116811461138857600080fd5b60006020828403121561172757600080fd5b815161137081611706565b634e487b7160e01b600052601160045260246000fd5b80820180821115610d5257610d52611732565b81810381811115610d5257610d52611732565b60006020828403121561178057600080fd5b8151801515811461137057600080fd5b600082601f8301126117a157600080fd5b815167ffffffffffffffff808211156117bc576117bc611459565b604051601f8301601f19908116603f011681019082821181831017156117e4576117e4611459565b816040528381528660208588010111156117fd57600080fd5b61180e8460208301602089016113a8565b9695505050505050565b60006020828403121561182a57600080fd5b815167ffffffffffffffff8082111561184257600080fd5b9083019060c0828603121561185657600080fd5b61185e61146f565b611867836115e4565b8152611875602084016115e4565b6020820152604083015161188881611706565b6040820152606083015161189b8161140b565b606082015260808301516118ae8161140b565b608082015260a0830151828111156118c557600080fd5b6118d187828601611790565b60a0830152509594505050505056fea264697066735822122070f9604aaf04d6a552dabe90cdcb65b4ad18ab5860c1fdb7cd9c73ad0330dabe64736f6c63430008140033",
403
+ "linkReferences": {
404
+ "contracts/types/Blocknumber.sol": {
405
+ "BlocknumberLib": [
406
+ {
407
+ "length": 20,
408
+ "start": 1647
409
+ },
410
+ {
411
+ "length": 20,
412
+ "start": 3500
413
+ }
414
+ ]
415
+ },
416
+ "contracts/types/NftId.sol": {
417
+ "NftIdLib": [
418
+ {
419
+ "length": 20,
420
+ "start": 6896
421
+ }
422
+ ]
423
+ },
424
+ "contracts/types/Version.sol": {
425
+ "VersionLib": [
426
+ {
427
+ "length": 20,
428
+ "start": 5428
429
+ }
430
+ ],
431
+ "VersionPartLib": [
432
+ {
433
+ "length": 20,
434
+ "start": 1798
435
+ },
436
+ {
437
+ "length": 20,
438
+ "start": 1925
439
+ },
440
+ {
441
+ "length": 20,
442
+ "start": 2052
443
+ },
444
+ {
445
+ "length": 20,
446
+ "start": 5551
447
+ },
448
+ {
449
+ "length": 20,
450
+ "start": 5675
451
+ },
452
+ {
453
+ "length": 20,
454
+ "start": 5799
455
+ }
456
+ ]
457
+ }
458
+ },
459
+ "deployedLinkReferences": {
460
+ "contracts/types/Blocknumber.sol": {
461
+ "BlocknumberLib": [
462
+ {
463
+ "length": 20,
464
+ "start": 959
465
+ }
466
+ ]
467
+ },
468
+ "contracts/types/NftId.sol": {
469
+ "NftIdLib": [
470
+ {
471
+ "length": 20,
472
+ "start": 4355
473
+ }
474
+ ]
475
+ },
476
+ "contracts/types/Version.sol": {
477
+ "VersionLib": [
478
+ {
479
+ "length": 20,
480
+ "start": 2887
481
+ }
482
+ ],
483
+ "VersionPartLib": [
484
+ {
485
+ "length": 20,
486
+ "start": 3010
487
+ },
488
+ {
489
+ "length": 20,
490
+ "start": 3134
491
+ },
492
+ {
493
+ "length": 20,
494
+ "start": 3258
495
+ }
496
+ ]
497
+ }
498
+ }
499
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/73036ef8d3587a4d497b53a8e5f6bc33.json"
4
+ }