@etherisc/gif-next 0.0.2-cc253b3 → 0.0.2-cd89a0b-062

Sign up to get free protection for your applications and to get access to all the features.
Files changed (390) hide show
  1. package/README.md +193 -6
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/components/{IProduct.sol/IProductComponent.json → BaseComponent.sol/BaseComponent.json} +88 -67
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +445 -0
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → IBaseComponent.sol/IBaseComponent.json} +69 -71
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +343 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +474 -0
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +373 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +445 -56
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +324 -53
  18. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +2 -2
  20. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +2 -2
  22. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
  24. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
  26. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  30. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
  33. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
  34. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
  35. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
  36. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
  37. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
  38. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
  39. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
  40. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
  41. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
  42. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  43. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
  44. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  45. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
  46. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  47. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1575 -295
  48. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
  49. package/artifacts/contracts/instance/{component/IComponent.sol → IInstanceLinked.sol}/IInstanceLinked.json +1 -1
  50. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  51. package/artifacts/contracts/instance/Instance.sol/Instance.json +1894 -374
  52. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  53. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +393 -0
  54. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  55. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
  56. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  57. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +560 -0
  58. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  59. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
  60. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +4 -0
  61. package/artifacts/contracts/instance/{component/ComponentModule.sol/ComponentModule.json → base/IService.sol/IService.json} +171 -154
  62. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  63. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +456 -0
  64. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  65. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +710 -0
  66. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  67. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  68. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +4 -0
  69. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.json +10 -0
  70. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
  71. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +380 -0
  72. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
  73. package/artifacts/contracts/instance/{access → module/access}/Access.sol/AccessModule.json +85 -152
  74. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
  75. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccess.json +1 -1
  76. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccessModule.json +96 -99
  78. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
  79. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +297 -0
  80. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
  81. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
  82. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
  83. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +297 -0
  84. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
  85. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +117 -0
  86. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
  87. package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponent.json +1 -1
  88. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
  89. package/artifacts/contracts/instance/{product/IProductService.sol/IProductService.json → module/component/IComponent.sol/IComponentModule.json} +56 -53
  90. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +4 -0
  91. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +10 -0
  92. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +4 -0
  93. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.json +10 -0
  94. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +4 -0
  95. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +10 -0
  96. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
  97. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicy.json +1 -1
  98. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
  99. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicyModule.json +159 -106
  100. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
  101. package/artifacts/contracts/instance/{policy → module/policy}/PolicyModule.sol/PolicyModule.json +159 -106
  102. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
  103. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPool.json +1 -1
  104. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
  105. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPoolModule.json +74 -59
  106. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
  107. package/artifacts/contracts/instance/{pool → module/pool}/PoolModule.sol/PoolModule.json +64 -62
  108. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +4 -0
  109. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.json +10 -0
  110. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +4 -0
  111. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +113 -0
  112. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +4 -0
  113. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +131 -0
  114. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
  115. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +10 -0
  116. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
  117. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +638 -0
  118. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  119. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
  120. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
  121. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +638 -0
  122. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  123. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +690 -0
  124. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  125. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +526 -0
  126. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  127. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +389 -0
  128. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  129. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +369 -0
  130. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  131. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +484 -0
  132. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  133. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +674 -0
  134. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  135. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +649 -0
  136. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  137. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +964 -0
  138. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  139. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +194 -2
  140. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
  141. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +5 -0
  142. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  143. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +351 -72
  144. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  145. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +668 -0
  146. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  147. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  148. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  149. package/artifacts/contracts/registry/Registry.sol/Registry.json +567 -79
  150. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  151. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +885 -0
  152. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  153. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +460 -0
  154. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  155. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  156. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  157. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  158. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +4 -0
  159. package/artifacts/contracts/{registry/IRegistry.sol → shared/IOwnable.sol}/IOwnable.json +1 -1
  160. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  161. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +124 -0
  162. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  163. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
  164. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  165. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +132 -0
  166. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  167. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +344 -0
  168. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  169. package/artifacts/contracts/{registry/Registry.sol → shared/Registerable.sol}/Registerable.json +71 -77
  170. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  171. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  172. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  173. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
  174. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +4 -0
  175. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +445 -0
  176. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  177. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  178. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +4 -0
  179. package/artifacts/contracts/test/TestPool.sol/TestPool.json +602 -0
  180. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
  181. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +632 -0
  182. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  183. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +191 -0
  184. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  185. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  186. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  187. package/artifacts/contracts/test/TestService.sol/TestService.json +472 -0
  188. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  189. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -0
  190. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  191. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  192. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  193. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +270 -0
  194. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  195. package/artifacts/contracts/test/Usdc.sol/USDC.json +338 -0
  196. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  197. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  198. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  199. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
  200. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  201. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
  202. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  203. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  204. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  205. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +111 -0
  206. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  207. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +91 -6
  208. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  209. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  210. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  211. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
  212. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +4 -0
  213. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +99 -0
  214. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  215. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  216. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  217. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +30 -0
  218. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  219. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  220. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
  221. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +236 -0
  222. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +4 -0
  223. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +479 -0
  224. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  225. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  226. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  227. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +30 -0
  228. package/contracts/components/BaseComponent.sol +79 -0
  229. package/contracts/components/Distribution.sol +155 -0
  230. package/contracts/components/IBaseComponent.sol +19 -0
  231. package/contracts/components/IDistributionComponent.sol +47 -0
  232. package/contracts/components/IPoolComponent.sol +65 -0
  233. package/contracts/components/IProductComponent.sol +39 -0
  234. package/contracts/components/Pool.sol +235 -18
  235. package/contracts/components/Product.sol +268 -35
  236. package/contracts/experiment/errors/Require.sol +10 -5
  237. package/contracts/experiment/errors/Revert.sol +13 -8
  238. package/contracts/experiment/inheritance/A.sol +8 -11
  239. package/contracts/experiment/inheritance/B.sol +10 -5
  240. package/contracts/experiment/inheritance/C.sol +11 -5
  241. package/contracts/experiment/inheritance/IA.sol +2 -7
  242. package/contracts/experiment/inheritance/IB.sol +3 -2
  243. package/contracts/experiment/inheritance/IC.sol +4 -3
  244. package/contracts/experiment/statemachine/Dummy.sol +27 -0
  245. package/contracts/experiment/statemachine/ISM.sol +25 -0
  246. package/contracts/experiment/statemachine/SM.sol +57 -0
  247. package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
  248. package/contracts/experiment/types/TypeA.sol +14 -9
  249. package/contracts/experiment/types/TypeB.sol +14 -9
  250. package/contracts/instance/IInstance.sol +42 -8
  251. package/contracts/instance/IInstanceLinked.sol +8 -0
  252. package/contracts/instance/Instance.sol +62 -41
  253. package/contracts/instance/base/ComponentServiceBase.sol +49 -0
  254. package/contracts/instance/base/IInstanceBase.sol +23 -0
  255. package/contracts/instance/base/IKeyValueStore.sol +50 -0
  256. package/contracts/instance/base/ILifecycle.sol +30 -0
  257. package/contracts/instance/base/IService.sol +15 -0
  258. package/contracts/instance/base/InstanceBase.sol +89 -0
  259. package/contracts/instance/base/KeyValueStore.sol +161 -0
  260. package/contracts/instance/base/Lifecycle.sol +100 -0
  261. package/contracts/instance/base/ModuleBase.sol +57 -0
  262. package/contracts/instance/base/ServiceBase.sol +43 -0
  263. package/contracts/instance/module/access/Access.sol +149 -0
  264. package/contracts/instance/module/access/IAccess.sol +53 -0
  265. package/contracts/instance/module/bundle/BundleModule.sol +134 -0
  266. package/contracts/instance/module/bundle/IBundle.sol +53 -0
  267. package/contracts/instance/module/component/ComponentModule.sol +71 -0
  268. package/contracts/instance/module/component/IComponent.sol +28 -0
  269. package/contracts/instance/module/distribution/DistributionModule.sol +17 -0
  270. package/contracts/instance/module/distribution/IDistribution.sol +10 -0
  271. package/contracts/instance/module/policy/IPolicy.sol +63 -0
  272. package/contracts/instance/module/policy/PolicyModule.sol +91 -0
  273. package/contracts/instance/module/pool/IPoolModule.sol +41 -0
  274. package/contracts/instance/module/pool/PoolModule.sol +95 -0
  275. package/contracts/instance/module/risk/IRisk.sol +26 -0
  276. package/contracts/instance/module/risk/RiskModule.sol +62 -0
  277. package/contracts/instance/module/treasury/ITreasury.sol +84 -0
  278. package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
  279. package/contracts/instance/module/treasury/TreasuryModule.sol +131 -0
  280. package/contracts/instance/service/ComponentOwnerService.sol +272 -0
  281. package/contracts/instance/service/DistributionService.sol +54 -0
  282. package/contracts/instance/service/IComponentOwnerService.sol +20 -0
  283. package/contracts/instance/service/IDistributionService.sol +12 -0
  284. package/contracts/instance/service/IPoolService.sol +37 -0
  285. package/contracts/instance/service/IProductService.sol +107 -0
  286. package/contracts/instance/service/PoolService.sol +149 -0
  287. package/contracts/instance/service/ProductService.sol +509 -0
  288. package/contracts/registry/ChainNft.sol +111 -97
  289. package/contracts/registry/IChainNft.sol +13 -9
  290. package/contracts/registry/IRegistry.sol +59 -56
  291. package/contracts/registry/IRegistryService.sol +29 -0
  292. package/contracts/registry/ITransferInterceptor.sol +6 -0
  293. package/contracts/registry/Registry.sol +429 -121
  294. package/contracts/registry/RegistryService.sol +375 -0
  295. package/contracts/registry/RegistryServiceManager.sol +52 -0
  296. package/contracts/shared/ContractDeployerLib.sol +72 -0
  297. package/contracts/shared/ERC165.sol +21 -0
  298. package/contracts/shared/IOwnable.sol +6 -0
  299. package/contracts/shared/IRegisterable.sol +22 -0
  300. package/contracts/shared/IVersionable.sol +96 -0
  301. package/contracts/shared/NftOwnable.sol +87 -0
  302. package/contracts/shared/ProxyManager.sol +103 -0
  303. package/contracts/shared/Registerable.sol +117 -0
  304. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  305. package/contracts/shared/Versionable.sol +147 -0
  306. package/contracts/test/TestDistribution.sol +22 -0
  307. package/contracts/test/TestFee.sol +25 -0
  308. package/contracts/test/TestPool.sol +27 -0
  309. package/contracts/test/TestProduct.sol +74 -0
  310. package/contracts/test/TestRegisterable.sol +18 -0
  311. package/contracts/test/TestRoleId.sol +14 -0
  312. package/contracts/test/TestService.sol +26 -0
  313. package/contracts/test/TestToken.sol +26 -0
  314. package/contracts/test/TestVersion.sol +44 -0
  315. package/contracts/test/TestVersionable.sol +17 -0
  316. package/contracts/test/Usdc.sol +26 -0
  317. package/contracts/types/AddressSet.sol +58 -0
  318. package/contracts/types/Blocknumber.sol +118 -0
  319. package/contracts/types/ChainId.sol +24 -10
  320. package/contracts/types/Fee.sol +56 -0
  321. package/contracts/types/Key32.sol +45 -0
  322. package/contracts/types/NftId.sol +55 -9
  323. package/contracts/types/NftIdSet.sol +60 -0
  324. package/contracts/types/ObjectType.sol +131 -0
  325. package/contracts/types/ReferralId.sol +48 -0
  326. package/contracts/types/RiskId.sol +43 -0
  327. package/contracts/types/RoleId.sol +38 -0
  328. package/contracts/types/StateId.sol +101 -0
  329. package/contracts/types/Timestamp.sol +123 -0
  330. package/contracts/types/UFixed.sol +209 -0
  331. package/contracts/types/Version.sol +104 -0
  332. package/package.json +19 -5
  333. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  334. package/artifacts/contracts/components/Component.sol/Component.json +0 -179
  335. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  336. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  337. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  338. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  339. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  340. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  341. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  342. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  343. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  344. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  345. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  346. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  347. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  348. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -147
  349. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  350. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  351. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
  352. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  353. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
  354. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  355. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  356. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  357. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  358. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  359. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  360. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  361. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  362. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  363. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  364. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  365. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  366. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  367. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  368. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  369. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -167
  370. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  371. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  372. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  373. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  374. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  375. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  376. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  377. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  378. package/contracts/components/Component.sol +0 -62
  379. package/contracts/components/IPool.sol +0 -9
  380. package/contracts/components/IProduct.sol +0 -12
  381. package/contracts/instance/access/Access.sol +0 -218
  382. package/contracts/instance/access/IAccess.sol +0 -83
  383. package/contracts/instance/component/ComponentModule.sol +0 -248
  384. package/contracts/instance/component/IComponent.sol +0 -95
  385. package/contracts/instance/policy/IPolicy.sol +0 -66
  386. package/contracts/instance/policy/PolicyModule.sol +0 -107
  387. package/contracts/instance/pool/IPoolModule.sol +0 -41
  388. package/contracts/instance/pool/PoolModule.sol +0 -86
  389. package/contracts/instance/product/IProductService.sol +0 -46
  390. package/contracts/instance/product/ProductService.sol +0 -108
@@ -0,0 +1,649 @@
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
+ "internalType": "address",
20
+ "name": "initialOwner",
21
+ "type": "address"
22
+ }
23
+ ],
24
+ "stateMutability": "nonpayable",
25
+ "type": "constructor"
26
+ },
27
+ {
28
+ "inputs": [],
29
+ "name": "InvalidInitialization",
30
+ "type": "error"
31
+ },
32
+ {
33
+ "inputs": [],
34
+ "name": "NotInitializing",
35
+ "type": "error"
36
+ },
37
+ {
38
+ "anonymous": false,
39
+ "inputs": [
40
+ {
41
+ "indexed": false,
42
+ "internalType": "uint64",
43
+ "name": "version",
44
+ "type": "uint64"
45
+ }
46
+ ],
47
+ "name": "Initialized",
48
+ "type": "event"
49
+ },
50
+ {
51
+ "anonymous": false,
52
+ "inputs": [
53
+ {
54
+ "indexed": false,
55
+ "internalType": "Version",
56
+ "name": "version",
57
+ "type": "uint24"
58
+ },
59
+ {
60
+ "indexed": false,
61
+ "internalType": "address",
62
+ "name": "implementation",
63
+ "type": "address"
64
+ },
65
+ {
66
+ "indexed": false,
67
+ "internalType": "address",
68
+ "name": "activatedBy",
69
+ "type": "address"
70
+ }
71
+ ],
72
+ "name": "LogVersionableInitialized",
73
+ "type": "event"
74
+ },
75
+ {
76
+ "inputs": [],
77
+ "name": "NAME",
78
+ "outputs": [
79
+ {
80
+ "internalType": "string",
81
+ "name": "",
82
+ "type": "string"
83
+ }
84
+ ],
85
+ "stateMutability": "view",
86
+ "type": "function"
87
+ },
88
+ {
89
+ "inputs": [],
90
+ "name": "REGISTERABLE_LOCATION_V1",
91
+ "outputs": [
92
+ {
93
+ "internalType": "bytes32",
94
+ "name": "",
95
+ "type": "bytes32"
96
+ }
97
+ ],
98
+ "stateMutability": "view",
99
+ "type": "function"
100
+ },
101
+ {
102
+ "inputs": [
103
+ {
104
+ "internalType": "address",
105
+ "name": "owner",
106
+ "type": "address"
107
+ },
108
+ {
109
+ "components": [
110
+ {
111
+ "internalType": "UFixed",
112
+ "name": "fractionalFee",
113
+ "type": "uint256"
114
+ },
115
+ {
116
+ "internalType": "uint256",
117
+ "name": "fixedFee",
118
+ "type": "uint256"
119
+ }
120
+ ],
121
+ "internalType": "struct Fee",
122
+ "name": "fee",
123
+ "type": "tuple"
124
+ },
125
+ {
126
+ "internalType": "uint256",
127
+ "name": "stakingAmount",
128
+ "type": "uint256"
129
+ },
130
+ {
131
+ "internalType": "uint256",
132
+ "name": "lifetime",
133
+ "type": "uint256"
134
+ },
135
+ {
136
+ "internalType": "bytes",
137
+ "name": "filter",
138
+ "type": "bytes"
139
+ }
140
+ ],
141
+ "name": "createBundle",
142
+ "outputs": [
143
+ {
144
+ "internalType": "NftId",
145
+ "name": "bundleNftId",
146
+ "type": "uint96"
147
+ }
148
+ ],
149
+ "stateMutability": "nonpayable",
150
+ "type": "function"
151
+ },
152
+ {
153
+ "inputs": [],
154
+ "name": "getInitialInfo",
155
+ "outputs": [
156
+ {
157
+ "components": [
158
+ {
159
+ "internalType": "NftId",
160
+ "name": "nftId",
161
+ "type": "uint96"
162
+ },
163
+ {
164
+ "internalType": "NftId",
165
+ "name": "parentNftId",
166
+ "type": "uint96"
167
+ },
168
+ {
169
+ "internalType": "ObjectType",
170
+ "name": "objectType",
171
+ "type": "uint8"
172
+ },
173
+ {
174
+ "internalType": "bool",
175
+ "name": "isInterceptor",
176
+ "type": "bool"
177
+ },
178
+ {
179
+ "internalType": "address",
180
+ "name": "objectAddress",
181
+ "type": "address"
182
+ },
183
+ {
184
+ "internalType": "address",
185
+ "name": "initialOwner",
186
+ "type": "address"
187
+ },
188
+ {
189
+ "internalType": "bytes",
190
+ "name": "data",
191
+ "type": "bytes"
192
+ }
193
+ ],
194
+ "internalType": "struct IRegistry.ObjectInfo",
195
+ "name": "",
196
+ "type": "tuple"
197
+ },
198
+ {
199
+ "internalType": "bytes",
200
+ "name": "data",
201
+ "type": "bytes"
202
+ }
203
+ ],
204
+ "stateMutability": "view",
205
+ "type": "function"
206
+ },
207
+ {
208
+ "inputs": [],
209
+ "name": "getInitializedVersion",
210
+ "outputs": [
211
+ {
212
+ "internalType": "uint64",
213
+ "name": "",
214
+ "type": "uint64"
215
+ }
216
+ ],
217
+ "stateMutability": "view",
218
+ "type": "function"
219
+ },
220
+ {
221
+ "inputs": [],
222
+ "name": "getMajorVersion",
223
+ "outputs": [
224
+ {
225
+ "internalType": "VersionPart",
226
+ "name": "majorVersion",
227
+ "type": "uint8"
228
+ }
229
+ ],
230
+ "stateMutability": "view",
231
+ "type": "function"
232
+ },
233
+ {
234
+ "inputs": [],
235
+ "name": "getName",
236
+ "outputs": [
237
+ {
238
+ "internalType": "string",
239
+ "name": "name",
240
+ "type": "string"
241
+ }
242
+ ],
243
+ "stateMutability": "pure",
244
+ "type": "function"
245
+ },
246
+ {
247
+ "inputs": [],
248
+ "name": "getNftId",
249
+ "outputs": [
250
+ {
251
+ "internalType": "NftId",
252
+ "name": "nftId",
253
+ "type": "uint96"
254
+ }
255
+ ],
256
+ "stateMutability": "view",
257
+ "type": "function"
258
+ },
259
+ {
260
+ "inputs": [],
261
+ "name": "getOwner",
262
+ "outputs": [
263
+ {
264
+ "internalType": "address",
265
+ "name": "",
266
+ "type": "address"
267
+ }
268
+ ],
269
+ "stateMutability": "view",
270
+ "type": "function"
271
+ },
272
+ {
273
+ "inputs": [],
274
+ "name": "getRegistry",
275
+ "outputs": [
276
+ {
277
+ "internalType": "contract IRegistry",
278
+ "name": "registry",
279
+ "type": "address"
280
+ }
281
+ ],
282
+ "stateMutability": "view",
283
+ "type": "function"
284
+ },
285
+ {
286
+ "inputs": [],
287
+ "name": "getRegistryService",
288
+ "outputs": [
289
+ {
290
+ "internalType": "contract IRegistryService",
291
+ "name": "",
292
+ "type": "address"
293
+ }
294
+ ],
295
+ "stateMutability": "view",
296
+ "type": "function"
297
+ },
298
+ {
299
+ "inputs": [],
300
+ "name": "getVersion",
301
+ "outputs": [
302
+ {
303
+ "internalType": "Version",
304
+ "name": "",
305
+ "type": "uint24"
306
+ }
307
+ ],
308
+ "stateMutability": "pure",
309
+ "type": "function"
310
+ },
311
+ {
312
+ "inputs": [
313
+ {
314
+ "internalType": "uint256",
315
+ "name": "idx",
316
+ "type": "uint256"
317
+ }
318
+ ],
319
+ "name": "getVersion",
320
+ "outputs": [
321
+ {
322
+ "internalType": "Version",
323
+ "name": "",
324
+ "type": "uint24"
325
+ }
326
+ ],
327
+ "stateMutability": "view",
328
+ "type": "function"
329
+ },
330
+ {
331
+ "inputs": [],
332
+ "name": "getVersionCount",
333
+ "outputs": [
334
+ {
335
+ "internalType": "uint256",
336
+ "name": "",
337
+ "type": "uint256"
338
+ }
339
+ ],
340
+ "stateMutability": "view",
341
+ "type": "function"
342
+ },
343
+ {
344
+ "inputs": [
345
+ {
346
+ "internalType": "Version",
347
+ "name": "_version",
348
+ "type": "uint24"
349
+ }
350
+ ],
351
+ "name": "getVersionInfo",
352
+ "outputs": [
353
+ {
354
+ "components": [
355
+ {
356
+ "internalType": "Version",
357
+ "name": "version",
358
+ "type": "uint24"
359
+ },
360
+ {
361
+ "internalType": "address",
362
+ "name": "implementation",
363
+ "type": "address"
364
+ },
365
+ {
366
+ "internalType": "address",
367
+ "name": "activatedBy",
368
+ "type": "address"
369
+ },
370
+ {
371
+ "internalType": "Timestamp",
372
+ "name": "activatedAt",
373
+ "type": "uint40"
374
+ },
375
+ {
376
+ "internalType": "Blocknumber",
377
+ "name": "activatedIn",
378
+ "type": "uint32"
379
+ }
380
+ ],
381
+ "internalType": "struct IVersionable.VersionInfo",
382
+ "name": "",
383
+ "type": "tuple"
384
+ }
385
+ ],
386
+ "stateMutability": "view",
387
+ "type": "function"
388
+ },
389
+ {
390
+ "inputs": [
391
+ {
392
+ "internalType": "address",
393
+ "name": "implementation",
394
+ "type": "address"
395
+ },
396
+ {
397
+ "internalType": "address",
398
+ "name": "activatedBy",
399
+ "type": "address"
400
+ },
401
+ {
402
+ "internalType": "bytes",
403
+ "name": "data",
404
+ "type": "bytes"
405
+ }
406
+ ],
407
+ "name": "initialize",
408
+ "outputs": [],
409
+ "stateMutability": "nonpayable",
410
+ "type": "function"
411
+ },
412
+ {
413
+ "inputs": [
414
+ {
415
+ "internalType": "Version",
416
+ "name": "_version",
417
+ "type": "uint24"
418
+ }
419
+ ],
420
+ "name": "isInitialized",
421
+ "outputs": [
422
+ {
423
+ "internalType": "bool",
424
+ "name": "",
425
+ "type": "bool"
426
+ }
427
+ ],
428
+ "stateMutability": "view",
429
+ "type": "function"
430
+ },
431
+ {
432
+ "inputs": [
433
+ {
434
+ "internalType": "NftId",
435
+ "name": "bundleNftId",
436
+ "type": "uint96"
437
+ },
438
+ {
439
+ "components": [
440
+ {
441
+ "internalType": "UFixed",
442
+ "name": "fractionalFee",
443
+ "type": "uint256"
444
+ },
445
+ {
446
+ "internalType": "uint256",
447
+ "name": "fixedFee",
448
+ "type": "uint256"
449
+ }
450
+ ],
451
+ "internalType": "struct Fee",
452
+ "name": "fee",
453
+ "type": "tuple"
454
+ }
455
+ ],
456
+ "name": "setBundleFee",
457
+ "outputs": [],
458
+ "stateMutability": "nonpayable",
459
+ "type": "function"
460
+ },
461
+ {
462
+ "inputs": [
463
+ {
464
+ "components": [
465
+ {
466
+ "internalType": "UFixed",
467
+ "name": "fractionalFee",
468
+ "type": "uint256"
469
+ },
470
+ {
471
+ "internalType": "uint256",
472
+ "name": "fixedFee",
473
+ "type": "uint256"
474
+ }
475
+ ],
476
+ "internalType": "struct Fee",
477
+ "name": "poolFee",
478
+ "type": "tuple"
479
+ },
480
+ {
481
+ "components": [
482
+ {
483
+ "internalType": "UFixed",
484
+ "name": "fractionalFee",
485
+ "type": "uint256"
486
+ },
487
+ {
488
+ "internalType": "uint256",
489
+ "name": "fixedFee",
490
+ "type": "uint256"
491
+ }
492
+ ],
493
+ "internalType": "struct Fee",
494
+ "name": "stakingFee",
495
+ "type": "tuple"
496
+ },
497
+ {
498
+ "components": [
499
+ {
500
+ "internalType": "UFixed",
501
+ "name": "fractionalFee",
502
+ "type": "uint256"
503
+ },
504
+ {
505
+ "internalType": "uint256",
506
+ "name": "fixedFee",
507
+ "type": "uint256"
508
+ }
509
+ ],
510
+ "internalType": "struct Fee",
511
+ "name": "performanceFee",
512
+ "type": "tuple"
513
+ }
514
+ ],
515
+ "name": "setFees",
516
+ "outputs": [],
517
+ "stateMutability": "nonpayable",
518
+ "type": "function"
519
+ },
520
+ {
521
+ "inputs": [
522
+ {
523
+ "internalType": "bytes4",
524
+ "name": "interfaceId",
525
+ "type": "bytes4"
526
+ }
527
+ ],
528
+ "name": "supportsInterface",
529
+ "outputs": [
530
+ {
531
+ "internalType": "bool",
532
+ "name": "",
533
+ "type": "bool"
534
+ }
535
+ ],
536
+ "stateMutability": "view",
537
+ "type": "function"
538
+ },
539
+ {
540
+ "inputs": [
541
+ {
542
+ "internalType": "address",
543
+ "name": "implementation",
544
+ "type": "address"
545
+ },
546
+ {
547
+ "internalType": "address",
548
+ "name": "activatedBy",
549
+ "type": "address"
550
+ },
551
+ {
552
+ "internalType": "bytes",
553
+ "name": "data",
554
+ "type": "bytes"
555
+ }
556
+ ],
557
+ "name": "upgrade",
558
+ "outputs": [],
559
+ "stateMutability": "nonpayable",
560
+ "type": "function"
561
+ }
562
+ ],
563
+ "bytecode": "0x60806040523480156200001157600080fd5b5060405162002d9838038062002d9883398101604081905262000034916200059b565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff191660011790558282826200007d620000d2565b6200008a83838362000186565b505050620000a46209196b60e61b620000ad60201b60201c565b50505062000835565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620001235760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001835780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6000620001b160408051808201909152600b81526a506f6f6c5365727669636560a81b602082015290565b620001bb62000234565b604051602001620001ce929190620005f3565b60408051808303601f190181529190529050620001f28484602860008686620002c1565b631b4612f160e31b60009081526020527ffc58a5a01198e68c5a5d0bcd463f9ab550fc4337b1df271aed6dbb33d25fef25805460ff1916600117905550505050565b600062000240620004f6565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc91906200064d565b905090565b6001600160a01b0386166200031d5760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a5247422d3031303a52454749535452595f5a45524f000000000060448201526064015b60405180910390fd5b6040516301ffc9a760e01b8152636882e63f60e11b600482015286906001600160a01b038216906301ffc9a790602401602060405180830381865afa1580156200036b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000391919062000679565b620003df5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a5247422d3031313a4e4f545f5245474953545259000000000000604482015260640162000314565b6001600160a01b03818116600160a01b6001600160601b0389168102919091177f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3009081557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30180546001600160a01b031961ffff60a01b1990911660ff8b1690940260ff60a81b191693909317600160a81b8915150217929092169286169290921790557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa302620004af848262000742565b5063a6d3826560e01b60009081526020527f164a5a3a3a16df858f794c5fc01b962add2c2151ae53ddb31581eabdf1156730805460ff191660011790555050505050505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562000558573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc91906200080e565b80516001600160a01b03811681146200059657600080fd5b919050565b600080600060608486031215620005b157600080fd5b620005bc846200057e565b60208501519093506001600160601b0381168114620005da57600080fd5b9150620005ea604085016200057e565b90509250925092565b604081526000835180604084015260005b8181101562000623576020818701810151606086840101520162000604565b506000606082850101526060601f19601f83011684010191505060ff831660208301529392505050565b6000602082840312156200066057600080fd5b815160ff811681146200067257600080fd5b9392505050565b6000602082840312156200068c57600080fd5b815180151581146200067257600080fd5b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006c857607f821691505b602082108103620006e957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200073d57600081815260208120601f850160051c81016020861015620007185750805b601f850160051c820191505b81811015620007395782815560010162000724565b5050505b505050565b81516001600160401b038111156200075e576200075e6200069d565b62000776816200076f8454620006b3565b84620006ef565b602080601f831160018114620007ae5760008415620007955750858301515b600019600386901b1c1916600185901b17855562000739565b600085815260208120601f198616915b82811015620007df57888601518255948401946001909101908401620007be565b5085821015620007fe5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200082157600080fd5b815162ffffff811681146200067257600080fd5b61255380620008456000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806382678766116100b8578063b3c650151161007c578063b3c6501514610403578063b88da75914610423578063caf4e3d414610436578063cde749f41461043e578063cf7a1d7714610458578063e3458d531461046b57600080fd5b80638267876614610384578063893d20e814610397578063946dfcfe1461039f578063a3f4df7e146103c6578063a745e3df146103f057600080fd5b80634d459c90116100ff5780634d459c90146102035780634f4213331461031c5780635ab1bd531461032f578063636450f51461034f578063644c45e01461036457600080fd5b806301ffc9a71461013c5780630d8e6e2c1461017e5780630fec111c1461019a57806317d7de7c146101b05780631eff4b22146101e0575b600080fd5b61016961014a3660046119ad565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61018661047e565b60405162ffffff9091168152602001610175565b6101a2610508565b604051610175929190611aa7565b60408051808201909152600b81526a506f6f6c5365727669636560a81b60208201525b6040516101759190611ad5565b6101f56000805160206124be83398151915281565b604051908152602001610175565b6102bf610211366004611afc565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526000805160206124fe83398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610175565b61016961032a366004611afc565b61066f565b610337610722565b6040516001600160a01b039091168152602001610175565b61036261035d366004611c34565b61073e565b005b61036c610972565b6040516001600160601b039091168152602001610175565b610362610392366004611c6a565b6109ed565b610337610b6f565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546101f5565b6101d36040518060400160405280600b81526020016a506f6f6c5365727669636560a81b81525081565b6103626103fe366004611cec565b610bea565b61040b610d44565b6040516001600160401b039091168152602001610175565b610186610431366004611d90565b610d65565b610337610db6565b610446610e67565b60405160ff9091168152602001610175565b610362610466366004611cec565b610eea565b61036c610479366004611da9565b610ff3565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105039190611e51565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060006000805160206124be83398151915290506040518060e0016040528061056b600090565b6001600160601b0390811682528354600160a01b908190049091166020830152600184015490810460ff9081166040840152600160a81b820416151560608301523060808301526001600160a01b031660a082015260028301805460c0909201916105d590611e6e565b80601f016020809104026020016040519081016040528092919081815260200182805461060190611e6e565b801561064e5780601f106106235761010080835404028352916020019161064e565b820191906000526020600020905b81548152906001019060200180831161063157829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6000806000805160206124fe83398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af41580156106f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071b9190611ea8565b1192915050565b6000805160206124be833981519152546001600160a01b031690565b60008061074b608c6111ef565b604051634793b4ab60e01b81526001600160601b038716600482015291935091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa1580156107a0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107c89190810190611f5b565b80516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610826573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084a919061203c565b61089b5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a504c532d3031303a42554e444c455f554e4b4e4f574e0000000060448201526064015b60405180910390fd5b825181516001600160601b039182169116146109045760405162461bcd60e51b815260206004820152602260248201527f4552524f523a504c532d3031313a42554e444c455f504f4f4c5f4d49534d4154604482015261086960f31b6064820152608401610892565b60208101849052604051637e8a1e3b60e11b81526001600160a01b0383169063fd143c76906109399088908590600401612057565b600060405180830381600087803b15801561095357600080fd5b505af1158015610967573d6000803e3d6000fd5b505050505050505050565b60006000805160206124be83398151915254604051636939560f60e11b81523060048201526001600160a01b039091169063d272ac1e90602401602060405180830381865afa1580156109c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105039190612106565b6000806109fa608c6111ef565b8151604051639ae31ff560e01b81526001600160601b03909116600482015291935091506000906001600160a01b03831690639ae31ff590602401602060405180830381865afa158015610a52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a769190612106565b60405163f2b246c360e01b81526001600160601b03821660048201529091506000906001600160a01b0384169063f2b246c3906024016101e060405180830381865afa158015610aca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aee919061212e565b60a0810188905260c0810187905260e081018690526040516306a5298b60e01b81529091506001600160a01b038416906306a5298b90610b3490859085906004016121ed565b600060405180830381600087803b158015610b4e57600080fd5b505af1158015610b62573d6000803e3d6000fd5b5050505050505050505050565b60006000805160206124be83398151915254604051630a57ebcf60e11b81523060048201526001600160a01b03909116906314afd79e90602401602060405180830381865afa158015610bc6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050391906122d4565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610c0c61047e565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7091906122f1565b6000805160206124de8339815191528054600160401b900460ff1680610ca3575080546001600160401b03808416911610155b15610cc15760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610cec85856114d1565b610cf58361170c565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006105036000805160206124de833981519152546001600160401b031690565b60006000805160206124fe8339815191526001018281548110610d8a57610d8a61231a565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080610dc1610722565b6001600160a01b031663a3bcd81d610dd7610e67565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015610e3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6191906122d4565b92915050565b6000610e7161047e565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015610ec6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610503919061234a565b6000805160206124de8339815191528054600160401b810460ff1615906001600160401b0316600081158015610f1d5750825b90506000826001600160401b03166001148015610f395750303b155b905081158015610f47575080155b15610f655760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f8f57845460ff60401b1916600160401b1785555b610f9988886114d1565b610fa3878761170c565b8315610fe957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b60008080611001608c6111ef565b81519193509150611010610db6565b6001600160a01b031663c2bf08c86040518060e00160405280611031600090565b6001600160601b03168152602001846001600160601b0316815260200161105660dc90565b60ff16815260200160001515815260200160006001600160a01b031681526020018d6001600160a01b03168152602001604051806020016040528060008152508152506040518263ffffffff1660e01b81526004016110b59190612367565b6020604051808303816000875af11580156110d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f89190612106565b6040516346aea9b760e11b81529094506001600160a01b03831690638d5d536e9061113390879085908e908e908e908e908e9060040161237a565b600060405180830381600087803b15801561114d57600080fd5b505af1158015611161573d6000803e3d6000fd5b5050604051639845743760e01b81526001600160601b03808816600483015284166024820152604481018b90526001600160a01b038516925063984574379150606401600060405180830381600087803b1580156111be57600080fd5b505af11580156111d2573d6000803e3d6000fd5b505050506111e28282868b611714565b5050509695505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201529080611230610722565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015611276573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129a9190612106565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156112f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611319919061203c565b6113655760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e0000000000000000006044820152606401610892565b61136d610722565b6040516305247a1760e51b81526001600160601b03831660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156113bc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113e491908101906123eb565b92506113fa83604001518560ff90811691161490565b61143c5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610892565b6000611446610722565b60208501516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801561149b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c391908101906123eb565b608001519395939450505050565b6114d9611974565b6000805160206124fe83398151915260006115096000805160206124de833981519152546001600160401b031690565b9050600061151561047e565b9050816001600160401b03166001036115425760028301805462ffffff191662ffffff8316179055611590565b600283015462ffffff908116908216116115905760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610892565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089169284019290925290861690820152606081016116044290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610d359083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b610137611974565b801561196e57604051639ae31ff560e01b81526001600160601b03841660048201526000906001600160a01b03861690639ae31ff590602401602060405180830381865afa15801561176a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178e9190612106565b60405163a310e2a360e01b81526001600160601b03821660048201529091506000906001600160a01b0387169063a310e2a390602401602060405180830381865afa1580156117e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180591906122d4565b90506000611811610722565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611860573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188491906122d4565b604051630d48c43b60e11b81526001600160601b03881660048201529091506000906001600160a01b03891690631a91887690602401602060405180830381865afa1580156118d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118fb91906122d4565b6040516317d5759960e31b81526001600160a01b0384811660048301528083166024830152604482018890529192509084169063beabacc890606401600060405180830381600087803b15801561195157600080fd5b505af1158015611965573d6000803e3d6000fd5b50505050505050505b50505050565b6000805160206124de83398151915254600160401b900460ff166119ab57604051631afcd79f60e31b815260040160405180910390fd5b565b6000602082840312156119bf57600080fd5b81356001600160e01b0319811681146119d757600080fd5b9392505050565b60005b838110156119f95781810151838201526020016119e1565b50506000910152565b60008151808452611a1a8160208601602086016119de565b601f01601f19169290920160200192915050565b60006001600160601b038083511684528060208401511660208501525060ff6040830151166040840152606082015115156060840152608082015160018060a01b0380821660808601528060a08501511660a0860152505060c082015160e060c0850152611a9f60e0850182611a02565b949350505050565b604081526000611aba6040830185611a2e565b8281036020840152611acc8185611a02565b95945050505050565b6020815260006119d76020830184611a02565b62ffffff81168114611af957600080fd5b50565b600060208284031215611b0e57600080fd5b81356119d781611ae8565b6001600160601b0381168114611af957600080fd5b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715611b6657611b66611b2e565b60405290565b60405161010081016001600160401b0381118282101715611b6657611b66611b2e565b60405161012081016001600160401b0381118282101715611b6657611b66611b2e565b60405160e081016001600160401b0381118282101715611b6657611b66611b2e565b604051601f8201601f191681016001600160401b0381118282101715611bfc57611bfc611b2e565b604052919050565b600060408284031215611c1657600080fd5b611c1e611b44565b9050813581526020820135602082015292915050565b60008060608385031215611c4757600080fd5b8235611c5281611b19565b9150611c618460208501611c04565b90509250929050565b600080600060c08486031215611c7f57600080fd5b611c898585611c04565b9250611c988560408601611c04565b9150611ca78560808601611c04565b90509250925092565b6001600160a01b0381168114611af957600080fd5b60006001600160401b03821115611cde57611cde611b2e565b50601f01601f191660200190565b600080600060608486031215611d0157600080fd5b8335611d0c81611cb0565b92506020840135611d1c81611cb0565b915060408401356001600160401b03811115611d3757600080fd5b8401601f81018613611d4857600080fd5b8035611d5b611d5682611cc5565b611bd4565b818152876020838501011115611d7057600080fd5b816020840160208301376000602083830101528093505050509250925092565b600060208284031215611da257600080fd5b5035919050565b60008060008060008060c08789031215611dc257600080fd5b8635611dcd81611cb0565b9550611ddc8860208901611c04565b9450606087013593506080870135925060a08701356001600160401b0380821115611e0657600080fd5b818901915089601f830112611e1a57600080fd5b813581811115611e2957600080fd5b8a6020828501011115611e3b57600080fd5b6020830194508093505050509295509295509295565b600060208284031215611e6357600080fd5b81516119d781611ae8565b600181811c90821680611e8257607f821691505b602082108103611ea257634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611eba57600080fd5b5051919050565b8051611ecc81611b19565b919050565b600060408284031215611ee357600080fd5b611eeb611b44565b9050815181526020820151602082015292915050565b600082601f830112611f1257600080fd5b8151611f20611d5682611cc5565b818152846020838601011115611f3557600080fd5b611a9f8260208301602087016119de565b805164ffffffffff81168114611ecc57600080fd5b600060208284031215611f6d57600080fd5b81516001600160401b0380821115611f8457600080fd5b908301906101208286031215611f9957600080fd5b611fa1611b6c565b611faa83611ec1565b8152611fb98660208501611ed1565b6020820152606083015182811115611fd057600080fd5b611fdc87828601611f01565b6040830152506080830151606082015260a0830151608082015260c083015160a082015261200c60e08401611f46565b60c082015261201e6101008401611f46565b60e082015295945050505050565b80518015158114611ecc57600080fd5b60006020828403121561204e57600080fd5b6119d78261202c565b60006001600160601b03808516835260406020840152808451166040840152506020830151612093606084018280518252602090810151910152565b5060408301516101208060a08501526120b0610160850183611a02565b9150606085015160c0850152608085015160e085015260a085015161010085015260c08501516120e88286018264ffffffffff169052565b505060e084015164ffffffffff811661014085015250949350505050565b60006020828403121561211857600080fd5b81516119d781611b19565b8051611ecc81611cb0565b60006101e0828403121561214157600080fd5b612149611b8f565b61215283611ec1565b815261216060208401611ec1565b602082015261217160408401612123565b60408201526121838460608501611ed1565b60608201526121958460a08501611ed1565b60808201526121a78460e08501611ed1565b60a08201526121ba846101208501611ed1565b60c08201526121cd846101608501611ed1565b60e08201526121e0846101a08501611ed1565b6101008201529392505050565b6001600160601b03838116825282511660208083019190915282015161020082019061222460408401826001600160601b03169052565b5060408301516001600160a01b038116606084015250606083015180516080840152602081015160a0840152506080830151805160c0840152602081015160e08401525060a08301516101006122868185018380518252602090810151910152565b60c0850151805161014086015260209081015161016086015260e086015180516101808701528101516101a086015294015180516101c0850152909301516101e09092019190915292915050565b6000602082840312156122e657600080fd5b81516119d781611cb0565b60006020828403121561230357600080fd5b81516001600160401b03811681146119d757600080fd5b634e487b7160e01b600052603260045260246000fd5b60ff81168114611af957600080fd5b8051611ecc81612330565b60006020828403121561235c57600080fd5b81516119d781612330565b6020815260006119d76020830184611a2e565b6001600160601b0388811682528716602082015260006123a7604083018880518252602090810151910152565b8560808301528460a083015260e060c08301528260e08301526101008385828501376000838501820152601f909301601f1916909101909101979650505050505050565b6000602082840312156123fd57600080fd5b81516001600160401b038082111561241457600080fd5b9083019060e0828603121561242857600080fd5b612430611bb2565b61243983611ec1565b815261244760208401611ec1565b60208201526124586040840161233f565b60408201526124696060840161202c565b606082015261247a60808401612123565b608082015261248b60a08401612123565b60a082015260c0830151828111156124a257600080fd5b6124ae87828601611f01565b60c0830152509594505050505056fe6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220241c747a1635e73526684e286820f6fb29d4a3c37dc21e25ac8d77cc1f46d46464736f6c63430008140033",
564
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101375760003560e01c806382678766116100b8578063b3c650151161007c578063b3c6501514610403578063b88da75914610423578063caf4e3d414610436578063cde749f41461043e578063cf7a1d7714610458578063e3458d531461046b57600080fd5b80638267876614610384578063893d20e814610397578063946dfcfe1461039f578063a3f4df7e146103c6578063a745e3df146103f057600080fd5b80634d459c90116100ff5780634d459c90146102035780634f4213331461031c5780635ab1bd531461032f578063636450f51461034f578063644c45e01461036457600080fd5b806301ffc9a71461013c5780630d8e6e2c1461017e5780630fec111c1461019a57806317d7de7c146101b05780631eff4b22146101e0575b600080fd5b61016961014a3660046119ad565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61018661047e565b60405162ffffff9091168152602001610175565b6101a2610508565b604051610175929190611aa7565b60408051808201909152600b81526a506f6f6c5365727669636560a81b60208201525b6040516101759190611ad5565b6101f56000805160206124be83398151915281565b604051908152602001610175565b6102bf610211366004611afc565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526000805160206124fe83398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610175565b61016961032a366004611afc565b61066f565b610337610722565b6040516001600160a01b039091168152602001610175565b61036261035d366004611c34565b61073e565b005b61036c610972565b6040516001600160601b039091168152602001610175565b610362610392366004611c6a565b6109ed565b610337610b6f565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546101f5565b6101d36040518060400160405280600b81526020016a506f6f6c5365727669636560a81b81525081565b6103626103fe366004611cec565b610bea565b61040b610d44565b6040516001600160401b039091168152602001610175565b610186610431366004611d90565b610d65565b610337610db6565b610446610e67565b60405160ff9091168152602001610175565b610362610466366004611cec565b610eea565b61036c610479366004611da9565b610ff3565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105039190611e51565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060006000805160206124be83398151915290506040518060e0016040528061056b600090565b6001600160601b0390811682528354600160a01b908190049091166020830152600184015490810460ff9081166040840152600160a81b820416151560608301523060808301526001600160a01b031660a082015260028301805460c0909201916105d590611e6e565b80601f016020809104026020016040519081016040528092919081815260200182805461060190611e6e565b801561064e5780601f106106235761010080835404028352916020019161064e565b820191906000526020600020905b81548152906001019060200180831161063157829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6000806000805160206124fe83398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af41580156106f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071b9190611ea8565b1192915050565b6000805160206124be833981519152546001600160a01b031690565b60008061074b608c6111ef565b604051634793b4ab60e01b81526001600160601b038716600482015291935091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa1580156107a0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107c89190810190611f5b565b80516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610826573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084a919061203c565b61089b5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a504c532d3031303a42554e444c455f554e4b4e4f574e0000000060448201526064015b60405180910390fd5b825181516001600160601b039182169116146109045760405162461bcd60e51b815260206004820152602260248201527f4552524f523a504c532d3031313a42554e444c455f504f4f4c5f4d49534d4154604482015261086960f31b6064820152608401610892565b60208101849052604051637e8a1e3b60e11b81526001600160a01b0383169063fd143c76906109399088908590600401612057565b600060405180830381600087803b15801561095357600080fd5b505af1158015610967573d6000803e3d6000fd5b505050505050505050565b60006000805160206124be83398151915254604051636939560f60e11b81523060048201526001600160a01b039091169063d272ac1e90602401602060405180830381865afa1580156109c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105039190612106565b6000806109fa608c6111ef565b8151604051639ae31ff560e01b81526001600160601b03909116600482015291935091506000906001600160a01b03831690639ae31ff590602401602060405180830381865afa158015610a52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a769190612106565b60405163f2b246c360e01b81526001600160601b03821660048201529091506000906001600160a01b0384169063f2b246c3906024016101e060405180830381865afa158015610aca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aee919061212e565b60a0810188905260c0810187905260e081018690526040516306a5298b60e01b81529091506001600160a01b038416906306a5298b90610b3490859085906004016121ed565b600060405180830381600087803b158015610b4e57600080fd5b505af1158015610b62573d6000803e3d6000fd5b5050505050505050505050565b60006000805160206124be83398151915254604051630a57ebcf60e11b81523060048201526001600160a01b03909116906314afd79e90602401602060405180830381865afa158015610bc6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050391906122d4565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610c0c61047e565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7091906122f1565b6000805160206124de8339815191528054600160401b900460ff1680610ca3575080546001600160401b03808416911610155b15610cc15760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610cec85856114d1565b610cf58361170c565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006105036000805160206124de833981519152546001600160401b031690565b60006000805160206124fe8339815191526001018281548110610d8a57610d8a61231a565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080610dc1610722565b6001600160a01b031663a3bcd81d610dd7610e67565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015610e3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6191906122d4565b92915050565b6000610e7161047e565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015610ec6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610503919061234a565b6000805160206124de8339815191528054600160401b810460ff1615906001600160401b0316600081158015610f1d5750825b90506000826001600160401b03166001148015610f395750303b155b905081158015610f47575080155b15610f655760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f8f57845460ff60401b1916600160401b1785555b610f9988886114d1565b610fa3878761170c565b8315610fe957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b60008080611001608c6111ef565b81519193509150611010610db6565b6001600160a01b031663c2bf08c86040518060e00160405280611031600090565b6001600160601b03168152602001846001600160601b0316815260200161105660dc90565b60ff16815260200160001515815260200160006001600160a01b031681526020018d6001600160a01b03168152602001604051806020016040528060008152508152506040518263ffffffff1660e01b81526004016110b59190612367565b6020604051808303816000875af11580156110d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f89190612106565b6040516346aea9b760e11b81529094506001600160a01b03831690638d5d536e9061113390879085908e908e908e908e908e9060040161237a565b600060405180830381600087803b15801561114d57600080fd5b505af1158015611161573d6000803e3d6000fd5b5050604051639845743760e01b81526001600160601b03808816600483015284166024820152604481018b90526001600160a01b038516925063984574379150606401600060405180830381600087803b1580156111be57600080fd5b505af11580156111d2573d6000803e3d6000fd5b505050506111e28282868b611714565b5050509695505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201529080611230610722565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015611276573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129a9190612106565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156112f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611319919061203c565b6113655760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e0000000000000000006044820152606401610892565b61136d610722565b6040516305247a1760e51b81526001600160601b03831660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156113bc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113e491908101906123eb565b92506113fa83604001518560ff90811691161490565b61143c5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610892565b6000611446610722565b60208501516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801561149b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c391908101906123eb565b608001519395939450505050565b6114d9611974565b6000805160206124fe83398151915260006115096000805160206124de833981519152546001600160401b031690565b9050600061151561047e565b9050816001600160401b03166001036115425760028301805462ffffff191662ffffff8316179055611590565b600283015462ffffff908116908216116115905760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610892565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089169284019290925290861690820152606081016116044290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610d359083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b610137611974565b801561196e57604051639ae31ff560e01b81526001600160601b03841660048201526000906001600160a01b03861690639ae31ff590602401602060405180830381865afa15801561176a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178e9190612106565b60405163a310e2a360e01b81526001600160601b03821660048201529091506000906001600160a01b0387169063a310e2a390602401602060405180830381865afa1580156117e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180591906122d4565b90506000611811610722565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611860573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188491906122d4565b604051630d48c43b60e11b81526001600160601b03881660048201529091506000906001600160a01b03891690631a91887690602401602060405180830381865afa1580156118d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118fb91906122d4565b6040516317d5759960e31b81526001600160a01b0384811660048301528083166024830152604482018890529192509084169063beabacc890606401600060405180830381600087803b15801561195157600080fd5b505af1158015611965573d6000803e3d6000fd5b50505050505050505b50505050565b6000805160206124de83398151915254600160401b900460ff166119ab57604051631afcd79f60e31b815260040160405180910390fd5b565b6000602082840312156119bf57600080fd5b81356001600160e01b0319811681146119d757600080fd5b9392505050565b60005b838110156119f95781810151838201526020016119e1565b50506000910152565b60008151808452611a1a8160208601602086016119de565b601f01601f19169290920160200192915050565b60006001600160601b038083511684528060208401511660208501525060ff6040830151166040840152606082015115156060840152608082015160018060a01b0380821660808601528060a08501511660a0860152505060c082015160e060c0850152611a9f60e0850182611a02565b949350505050565b604081526000611aba6040830185611a2e565b8281036020840152611acc8185611a02565b95945050505050565b6020815260006119d76020830184611a02565b62ffffff81168114611af957600080fd5b50565b600060208284031215611b0e57600080fd5b81356119d781611ae8565b6001600160601b0381168114611af957600080fd5b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715611b6657611b66611b2e565b60405290565b60405161010081016001600160401b0381118282101715611b6657611b66611b2e565b60405161012081016001600160401b0381118282101715611b6657611b66611b2e565b60405160e081016001600160401b0381118282101715611b6657611b66611b2e565b604051601f8201601f191681016001600160401b0381118282101715611bfc57611bfc611b2e565b604052919050565b600060408284031215611c1657600080fd5b611c1e611b44565b9050813581526020820135602082015292915050565b60008060608385031215611c4757600080fd5b8235611c5281611b19565b9150611c618460208501611c04565b90509250929050565b600080600060c08486031215611c7f57600080fd5b611c898585611c04565b9250611c988560408601611c04565b9150611ca78560808601611c04565b90509250925092565b6001600160a01b0381168114611af957600080fd5b60006001600160401b03821115611cde57611cde611b2e565b50601f01601f191660200190565b600080600060608486031215611d0157600080fd5b8335611d0c81611cb0565b92506020840135611d1c81611cb0565b915060408401356001600160401b03811115611d3757600080fd5b8401601f81018613611d4857600080fd5b8035611d5b611d5682611cc5565b611bd4565b818152876020838501011115611d7057600080fd5b816020840160208301376000602083830101528093505050509250925092565b600060208284031215611da257600080fd5b5035919050565b60008060008060008060c08789031215611dc257600080fd5b8635611dcd81611cb0565b9550611ddc8860208901611c04565b9450606087013593506080870135925060a08701356001600160401b0380821115611e0657600080fd5b818901915089601f830112611e1a57600080fd5b813581811115611e2957600080fd5b8a6020828501011115611e3b57600080fd5b6020830194508093505050509295509295509295565b600060208284031215611e6357600080fd5b81516119d781611ae8565b600181811c90821680611e8257607f821691505b602082108103611ea257634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611eba57600080fd5b5051919050565b8051611ecc81611b19565b919050565b600060408284031215611ee357600080fd5b611eeb611b44565b9050815181526020820151602082015292915050565b600082601f830112611f1257600080fd5b8151611f20611d5682611cc5565b818152846020838601011115611f3557600080fd5b611a9f8260208301602087016119de565b805164ffffffffff81168114611ecc57600080fd5b600060208284031215611f6d57600080fd5b81516001600160401b0380821115611f8457600080fd5b908301906101208286031215611f9957600080fd5b611fa1611b6c565b611faa83611ec1565b8152611fb98660208501611ed1565b6020820152606083015182811115611fd057600080fd5b611fdc87828601611f01565b6040830152506080830151606082015260a0830151608082015260c083015160a082015261200c60e08401611f46565b60c082015261201e6101008401611f46565b60e082015295945050505050565b80518015158114611ecc57600080fd5b60006020828403121561204e57600080fd5b6119d78261202c565b60006001600160601b03808516835260406020840152808451166040840152506020830151612093606084018280518252602090810151910152565b5060408301516101208060a08501526120b0610160850183611a02565b9150606085015160c0850152608085015160e085015260a085015161010085015260c08501516120e88286018264ffffffffff169052565b505060e084015164ffffffffff811661014085015250949350505050565b60006020828403121561211857600080fd5b81516119d781611b19565b8051611ecc81611cb0565b60006101e0828403121561214157600080fd5b612149611b8f565b61215283611ec1565b815261216060208401611ec1565b602082015261217160408401612123565b60408201526121838460608501611ed1565b60608201526121958460a08501611ed1565b60808201526121a78460e08501611ed1565b60a08201526121ba846101208501611ed1565b60c08201526121cd846101608501611ed1565b60e08201526121e0846101a08501611ed1565b6101008201529392505050565b6001600160601b03838116825282511660208083019190915282015161020082019061222460408401826001600160601b03169052565b5060408301516001600160a01b038116606084015250606083015180516080840152602081015160a0840152506080830151805160c0840152602081015160e08401525060a08301516101006122868185018380518252602090810151910152565b60c0850151805161014086015260209081015161016086015260e086015180516101808701528101516101a086015294015180516101c0850152909301516101e09092019190915292915050565b6000602082840312156122e657600080fd5b81516119d781611cb0565b60006020828403121561230357600080fd5b81516001600160401b03811681146119d757600080fd5b634e487b7160e01b600052603260045260246000fd5b60ff81168114611af957600080fd5b8051611ecc81612330565b60006020828403121561235c57600080fd5b81516119d781612330565b6020815260006119d76020830184611a2e565b6001600160601b0388811682528716602082015260006123a7604083018880518252602090810151910152565b8560808301528460a083015260e060c08301528260e08301526101008385828501376000838501820152601f909301601f1916909101909101979650505050505050565b6000602082840312156123fd57600080fd5b81516001600160401b038082111561241457600080fd5b9083019060e0828603121561242857600080fd5b612430611bb2565b61243983611ec1565b815261244760208401611ec1565b60208201526124586040840161233f565b60408201526124696060840161202c565b606082015261247a60808401612123565b608082015261248b60a08401612123565b60a082015260c0830151828111156124a257600080fd5b6124ae87828601611f01565b60c0830152509594505050505056fe6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220241c747a1635e73526684e286820f6fb29d4a3c37dc21e25ac8d77cc1f46d46464736f6c63430008140033",
565
+ "linkReferences": {
566
+ "contracts/types/Blocknumber.sol": {
567
+ "BlocknumberLib": [
568
+ {
569
+ "length": 20,
570
+ "start": 3842
571
+ }
572
+ ]
573
+ },
574
+ "contracts/types/NftId.sol": {
575
+ "NftIdLib": [
576
+ {
577
+ "length": 20,
578
+ "start": 4145
579
+ },
580
+ {
581
+ "length": 20,
582
+ "start": 6912
583
+ }
584
+ ]
585
+ },
586
+ "contracts/types/Version.sol": {
587
+ "VersionLib": [
588
+ {
589
+ "length": 20,
590
+ "start": 603
591
+ },
592
+ {
593
+ "length": 20,
594
+ "start": 1309
595
+ },
596
+ {
597
+ "length": 20,
598
+ "start": 3306
599
+ },
600
+ {
601
+ "length": 20,
602
+ "start": 5169
603
+ },
604
+ {
605
+ "length": 20,
606
+ "start": 5841
607
+ }
608
+ ]
609
+ }
610
+ },
611
+ "deployedLinkReferences": {
612
+ "contracts/types/Blocknumber.sol": {
613
+ "BlocknumberLib": [
614
+ {
615
+ "length": 20,
616
+ "start": 1725
617
+ }
618
+ ]
619
+ },
620
+ "contracts/types/NftId.sol": {
621
+ "NftIdLib": [
622
+ {
623
+ "length": 20,
624
+ "start": 2028
625
+ },
626
+ {
627
+ "length": 20,
628
+ "start": 4795
629
+ }
630
+ ]
631
+ },
632
+ "contracts/types/Version.sol": {
633
+ "VersionLib": [
634
+ {
635
+ "length": 20,
636
+ "start": 1189
637
+ },
638
+ {
639
+ "length": 20,
640
+ "start": 3052
641
+ },
642
+ {
643
+ "length": 20,
644
+ "start": 3724
645
+ }
646
+ ]
647
+ }
648
+ }
649
+ }