@etherisc/gif-next 0.0.2-aa0bd77 → 0.0.2-aa8d0c4-506

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (389) hide show
  1. package/README.md +301 -7
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +327 -0
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +670 -0
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +280 -0
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +204 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +249 -0
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/{instance/pool/PoolModule.sol/PoolModule.json → components/IProductComponent.sol/IProductComponent.json} +81 -86
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +718 -40
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +615 -53
  18. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
  19. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
  20. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
  21. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
  22. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
  23. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
  24. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +4 -0
  25. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +105 -0
  26. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +4 -0
  27. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +105 -0
  28. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
  30. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
  32. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  34. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  36. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  37. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  38. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
  39. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
  40. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
  41. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
  42. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
  43. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
  44. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
  45. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
  46. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
  47. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
  48. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  49. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
  50. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  51. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
  52. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
  53. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +101 -0
  54. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
  55. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
  56. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
  57. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
  58. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  59. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +517 -656
  60. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  61. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
  62. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  63. package/artifacts/contracts/instance/Instance.sol/Instance.json +3063 -533
  64. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  65. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +917 -0
  66. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  67. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1388 -0
  68. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  69. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +891 -0
  70. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  71. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +492 -0
  72. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  73. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +510 -0
  74. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  75. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
  76. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  77. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
  78. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  79. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
  80. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  81. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
  82. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  83. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  84. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  85. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
  86. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  87. package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
  88. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  89. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  90. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  91. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  92. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  93. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
  94. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  95. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/ISetup.sol/ISetup.json} +2 -2
  96. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  97. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +10 -0
  98. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  99. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +827 -0
  100. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +681 -0
  102. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  103. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +436 -0
  104. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  105. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
  106. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
  108. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  109. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +561 -0
  110. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  111. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +751 -0
  112. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  113. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +820 -0
  114. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  115. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +448 -0
  116. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  117. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
  118. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +549 -75
  120. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  121. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +853 -0
  122. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  123. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  124. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  125. package/artifacts/contracts/registry/Registry.sol/Registry.json +723 -81
  126. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  127. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1237 -0
  128. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  129. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +525 -0
  130. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  131. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +410 -0
  132. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  133. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  134. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  135. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  136. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  137. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
  138. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  139. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +201 -0
  140. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  141. package/artifacts/contracts/shared/IService.sol/IService.json +421 -0
  142. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  143. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
  144. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  145. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
  146. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  147. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
  148. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  149. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
  150. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
  151. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +442 -0
  152. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  153. package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
  154. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  155. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
  156. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  157. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  158. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  159. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
  160. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  161. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  162. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  163. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
  164. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  165. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  166. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  167. package/artifacts/contracts/test/TestService.sol/TestService.json +600 -0
  168. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  169. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
  170. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  171. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  172. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  173. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
  174. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  175. package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
  176. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  177. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  178. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  179. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
  180. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  181. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
  182. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  183. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  184. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  185. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  186. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  187. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
  188. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  189. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +148 -5
  190. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  191. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  192. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  193. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  194. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  195. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
  196. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  197. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
  198. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  199. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  200. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  201. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  202. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  203. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  204. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
  205. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +249 -0
  206. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  207. package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
  208. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  209. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
  210. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  211. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  212. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  213. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
  214. package/contracts/components/BaseComponent.sol +91 -0
  215. package/contracts/components/Distribution.sol +166 -0
  216. package/contracts/components/IBaseComponent.sol +25 -0
  217. package/contracts/components/IDistributionComponent.sol +46 -0
  218. package/contracts/components/IPoolComponent.sol +62 -0
  219. package/contracts/components/IProductComponent.sol +35 -0
  220. package/contracts/components/Pool.sol +236 -18
  221. package/contracts/components/Product.sol +267 -35
  222. package/contracts/experiment/cloning/Cloner.sol +47 -0
  223. package/contracts/experiment/errors/Require.sol +38 -0
  224. package/contracts/experiment/errors/Revert.sol +44 -0
  225. package/contracts/experiment/inheritance/A.sol +8 -11
  226. package/contracts/experiment/inheritance/B.sol +10 -5
  227. package/contracts/experiment/inheritance/C.sol +11 -5
  228. package/contracts/experiment/inheritance/IA.sol +2 -7
  229. package/contracts/experiment/inheritance/IB.sol +3 -2
  230. package/contracts/experiment/inheritance/IC.sol +4 -3
  231. package/contracts/experiment/statemachine/Dummy.sol +27 -0
  232. package/contracts/experiment/statemachine/ISM.sol +25 -0
  233. package/contracts/experiment/statemachine/SM.sol +57 -0
  234. package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
  235. package/contracts/experiment/types/TypeA.sol +14 -9
  236. package/contracts/experiment/types/TypeB.sol +14 -9
  237. package/contracts/instance/AccessManagedSimple.sol +115 -0
  238. package/contracts/instance/AccessManagerSimple.sol +692 -0
  239. package/contracts/instance/IAccessManagerSimple.sol +391 -0
  240. package/contracts/instance/IInstance.sol +34 -15
  241. package/contracts/instance/IInstanceService.sol +30 -0
  242. package/contracts/instance/Instance.sol +423 -43
  243. package/contracts/instance/InstanceAccessManager.sol +288 -0
  244. package/contracts/instance/InstanceReader.sol +306 -0
  245. package/contracts/instance/InstanceService.sol +182 -0
  246. package/contracts/instance/InstanceServiceManager.sol +56 -0
  247. package/contracts/instance/base/ComponentServiceBase.sol +60 -0
  248. package/contracts/instance/base/IInstanceBase.sol +23 -0
  249. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  250. package/contracts/instance/base/ILifecycle.sol +30 -0
  251. package/contracts/instance/base/KeyValueStore.sol +172 -0
  252. package/contracts/instance/base/Lifecycle.sol +100 -0
  253. package/contracts/instance/module/IAccess.sol +38 -0
  254. package/contracts/instance/module/IBundle.sol +20 -0
  255. package/contracts/instance/module/IDistribution.sol +39 -0
  256. package/contracts/instance/module/IPolicy.sol +45 -0
  257. package/contracts/instance/module/IRisk.sol +11 -0
  258. package/contracts/instance/module/ISetup.sol +44 -0
  259. package/contracts/instance/module/ITreasury.sol +23 -0
  260. package/contracts/instance/service/ComponentOwnerService.sol +317 -0
  261. package/contracts/instance/service/DistributionService.sol +99 -0
  262. package/contracts/instance/service/DistributionServiceManager.sol +53 -0
  263. package/contracts/instance/service/IComponentOwnerService.sol +20 -0
  264. package/contracts/instance/service/IDistributionService.sol +12 -0
  265. package/contracts/instance/service/IPoolService.sol +37 -0
  266. package/contracts/instance/service/IProductService.sol +107 -0
  267. package/contracts/instance/service/PoolService.sol +205 -0
  268. package/contracts/instance/service/PoolServiceManager.sol +53 -0
  269. package/contracts/registry/ChainNft.sol +138 -109
  270. package/contracts/registry/IRegistry.sol +83 -57
  271. package/contracts/registry/IRegistryService.sol +33 -0
  272. package/contracts/registry/ITransferInterceptor.sol +6 -0
  273. package/contracts/registry/Registry.sol +426 -113
  274. package/contracts/registry/RegistryService.sol +399 -0
  275. package/contracts/registry/RegistryServiceManager.sol +80 -0
  276. package/contracts/registry/TokenRegistry.sol +111 -0
  277. package/contracts/shared/ContractDeployerLib.sol +72 -0
  278. package/contracts/shared/ERC165.sol +25 -0
  279. package/contracts/shared/INftOwnable.sol +22 -0
  280. package/contracts/shared/IRegisterable.sol +17 -0
  281. package/contracts/shared/IService.sol +15 -0
  282. package/contracts/shared/IVersionable.sol +96 -0
  283. package/contracts/shared/NftOwnable.sol +136 -0
  284. package/contracts/shared/ProxyManager.sol +94 -0
  285. package/contracts/shared/Registerable.sol +90 -0
  286. package/contracts/shared/RegisterableUpgradable.sol +16 -0
  287. package/contracts/shared/Service.sol +54 -0
  288. package/contracts/shared/TokenHandler.sol +27 -0
  289. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  290. package/contracts/shared/Versionable.sol +147 -0
  291. package/contracts/test/TestFee.sol +25 -0
  292. package/contracts/test/TestRegisterable.sol +18 -0
  293. package/contracts/test/TestRoleId.sol +14 -0
  294. package/contracts/test/TestService.sol +24 -0
  295. package/contracts/test/TestToken.sol +26 -0
  296. package/contracts/test/TestVersion.sol +44 -0
  297. package/contracts/test/TestVersionable.sol +17 -0
  298. package/contracts/test/Usdc.sol +26 -0
  299. package/contracts/types/AddressSet.sol +58 -0
  300. package/contracts/types/Blocknumber.sol +118 -0
  301. package/contracts/types/ChainId.sol +24 -10
  302. package/contracts/types/DistributorType.sol +55 -0
  303. package/contracts/types/Fee.sol +56 -0
  304. package/contracts/types/Key32.sol +50 -0
  305. package/contracts/types/NftId.sol +55 -8
  306. package/contracts/types/NftIdSet.sol +60 -0
  307. package/contracts/types/NumberId.sol +52 -0
  308. package/contracts/types/ObjectType.sol +152 -0
  309. package/contracts/types/Referral.sol +85 -0
  310. package/contracts/types/RiskId.sol +43 -0
  311. package/contracts/types/RoleId.sol +89 -0
  312. package/contracts/types/StateId.sol +105 -0
  313. package/contracts/types/Timestamp.sol +127 -0
  314. package/contracts/types/UFixed.sol +325 -0
  315. package/contracts/types/Version.sol +107 -0
  316. package/package.json +21 -6
  317. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  318. package/artifacts/contracts/components/Component.sol/Component.json +0 -179
  319. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  320. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  321. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  322. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
  323. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  324. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  325. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  326. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  327. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  328. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  329. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  330. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  331. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  332. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  333. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  334. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  335. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -327
  336. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  337. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -105
  338. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  339. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  340. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
  341. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  342. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
  343. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  344. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  345. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  346. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
  347. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  348. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  349. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
  350. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  351. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
  352. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  353. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  354. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
  355. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  356. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  357. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  358. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  359. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
  360. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  361. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  362. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  363. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -125
  364. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  365. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  366. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  367. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
  368. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  369. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  370. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  371. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  372. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  373. package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
  374. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  375. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  376. package/contracts/components/Component.sol +0 -62
  377. package/contracts/components/IPool.sol +0 -9
  378. package/contracts/components/IProduct.sol +0 -11
  379. package/contracts/instance/access/Access.sol +0 -218
  380. package/contracts/instance/access/IAccess.sol +0 -83
  381. package/contracts/instance/component/ComponentModule.sol +0 -259
  382. package/contracts/instance/component/IComponent.sol +0 -94
  383. package/contracts/instance/policy/IPolicy.sol +0 -66
  384. package/contracts/instance/policy/PolicyModule.sol +0 -106
  385. package/contracts/instance/pool/IPoolModule.sol +0 -40
  386. package/contracts/instance/pool/PoolModule.sol +0 -83
  387. package/contracts/instance/product/IProductService.sol +0 -45
  388. package/contracts/instance/product/ProductService.sol +0 -105
  389. package/contracts/registry/IChainNft.sol +0 -18
@@ -0,0 +1,681 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "DistributionService",
4
+ "sourceName": "contracts/instance/service/DistributionService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "registry",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "NftId",
15
+ "name": "nftId",
16
+ "type": "uint96"
17
+ }
18
+ ],
19
+ "name": "ErrorAlreadyLinked",
20
+ "type": "error"
21
+ },
22
+ {
23
+ "inputs": [
24
+ {
25
+ "internalType": "address",
26
+ "name": "contractAddress",
27
+ "type": "address"
28
+ }
29
+ ],
30
+ "name": "ErrorContractNotRegistered",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "account",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "ErrorNotOwner",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "registryAddress",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorNotRegistry",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "registryAddress",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorRegisterableNotRegistry",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [],
68
+ "name": "ErrorRegistryAddressZero",
69
+ "type": "error"
70
+ },
71
+ {
72
+ "inputs": [
73
+ {
74
+ "internalType": "address",
75
+ "name": "registry",
76
+ "type": "address"
77
+ }
78
+ ],
79
+ "name": "ErrorRegistryAlreadyInitialized",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [],
84
+ "name": "ErrorRegistryNotInitialized",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [],
89
+ "name": "InvalidInitialization",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [
94
+ {
95
+ "internalType": "RoleId",
96
+ "name": "expected",
97
+ "type": "uint64"
98
+ },
99
+ {
100
+ "internalType": "address",
101
+ "name": "caller",
102
+ "type": "address"
103
+ }
104
+ ],
105
+ "name": "InvalidRole",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [],
110
+ "name": "NotInitializing",
111
+ "type": "error"
112
+ },
113
+ {
114
+ "anonymous": false,
115
+ "inputs": [
116
+ {
117
+ "indexed": false,
118
+ "internalType": "uint64",
119
+ "name": "version",
120
+ "type": "uint64"
121
+ }
122
+ ],
123
+ "name": "Initialized",
124
+ "type": "event"
125
+ },
126
+ {
127
+ "anonymous": false,
128
+ "inputs": [
129
+ {
130
+ "indexed": false,
131
+ "internalType": "Version",
132
+ "name": "version",
133
+ "type": "uint24"
134
+ },
135
+ {
136
+ "indexed": false,
137
+ "internalType": "address",
138
+ "name": "implementation",
139
+ "type": "address"
140
+ },
141
+ {
142
+ "indexed": false,
143
+ "internalType": "address",
144
+ "name": "activatedBy",
145
+ "type": "address"
146
+ }
147
+ ],
148
+ "name": "LogVersionableInitialized",
149
+ "type": "event"
150
+ },
151
+ {
152
+ "inputs": [],
153
+ "name": "NAME",
154
+ "outputs": [
155
+ {
156
+ "internalType": "string",
157
+ "name": "",
158
+ "type": "string"
159
+ }
160
+ ],
161
+ "stateMutability": "view",
162
+ "type": "function"
163
+ },
164
+ {
165
+ "inputs": [],
166
+ "name": "REGISTERABLE_LOCATION_V1",
167
+ "outputs": [
168
+ {
169
+ "internalType": "bytes32",
170
+ "name": "",
171
+ "type": "bytes32"
172
+ }
173
+ ],
174
+ "stateMutability": "view",
175
+ "type": "function"
176
+ },
177
+ {
178
+ "inputs": [],
179
+ "name": "getInitialInfo",
180
+ "outputs": [
181
+ {
182
+ "components": [
183
+ {
184
+ "internalType": "NftId",
185
+ "name": "nftId",
186
+ "type": "uint96"
187
+ },
188
+ {
189
+ "internalType": "NftId",
190
+ "name": "parentNftId",
191
+ "type": "uint96"
192
+ },
193
+ {
194
+ "internalType": "ObjectType",
195
+ "name": "objectType",
196
+ "type": "uint8"
197
+ },
198
+ {
199
+ "internalType": "bool",
200
+ "name": "isInterceptor",
201
+ "type": "bool"
202
+ },
203
+ {
204
+ "internalType": "address",
205
+ "name": "objectAddress",
206
+ "type": "address"
207
+ },
208
+ {
209
+ "internalType": "address",
210
+ "name": "initialOwner",
211
+ "type": "address"
212
+ },
213
+ {
214
+ "internalType": "bytes",
215
+ "name": "data",
216
+ "type": "bytes"
217
+ }
218
+ ],
219
+ "internalType": "struct IRegistry.ObjectInfo",
220
+ "name": "",
221
+ "type": "tuple"
222
+ },
223
+ {
224
+ "internalType": "bytes",
225
+ "name": "data",
226
+ "type": "bytes"
227
+ }
228
+ ],
229
+ "stateMutability": "view",
230
+ "type": "function"
231
+ },
232
+ {
233
+ "inputs": [],
234
+ "name": "getInitializedVersion",
235
+ "outputs": [
236
+ {
237
+ "internalType": "uint64",
238
+ "name": "",
239
+ "type": "uint64"
240
+ }
241
+ ],
242
+ "stateMutability": "view",
243
+ "type": "function"
244
+ },
245
+ {
246
+ "inputs": [],
247
+ "name": "getInstanceService",
248
+ "outputs": [
249
+ {
250
+ "internalType": "contract InstanceService",
251
+ "name": "",
252
+ "type": "address"
253
+ }
254
+ ],
255
+ "stateMutability": "view",
256
+ "type": "function"
257
+ },
258
+ {
259
+ "inputs": [],
260
+ "name": "getMajorVersion",
261
+ "outputs": [
262
+ {
263
+ "internalType": "VersionPart",
264
+ "name": "majorVersion",
265
+ "type": "uint8"
266
+ }
267
+ ],
268
+ "stateMutability": "view",
269
+ "type": "function"
270
+ },
271
+ {
272
+ "inputs": [],
273
+ "name": "getName",
274
+ "outputs": [
275
+ {
276
+ "internalType": "string",
277
+ "name": "name",
278
+ "type": "string"
279
+ }
280
+ ],
281
+ "stateMutability": "pure",
282
+ "type": "function"
283
+ },
284
+ {
285
+ "inputs": [],
286
+ "name": "getNftId",
287
+ "outputs": [
288
+ {
289
+ "internalType": "NftId",
290
+ "name": "",
291
+ "type": "uint96"
292
+ }
293
+ ],
294
+ "stateMutability": "view",
295
+ "type": "function"
296
+ },
297
+ {
298
+ "inputs": [],
299
+ "name": "getOwner",
300
+ "outputs": [
301
+ {
302
+ "internalType": "address",
303
+ "name": "",
304
+ "type": "address"
305
+ }
306
+ ],
307
+ "stateMutability": "view",
308
+ "type": "function"
309
+ },
310
+ {
311
+ "inputs": [],
312
+ "name": "getRegistry",
313
+ "outputs": [
314
+ {
315
+ "internalType": "contract IRegistry",
316
+ "name": "",
317
+ "type": "address"
318
+ }
319
+ ],
320
+ "stateMutability": "view",
321
+ "type": "function"
322
+ },
323
+ {
324
+ "inputs": [],
325
+ "name": "getRegistryService",
326
+ "outputs": [
327
+ {
328
+ "internalType": "contract IRegistryService",
329
+ "name": "",
330
+ "type": "address"
331
+ }
332
+ ],
333
+ "stateMutability": "view",
334
+ "type": "function"
335
+ },
336
+ {
337
+ "inputs": [],
338
+ "name": "getVersion",
339
+ "outputs": [
340
+ {
341
+ "internalType": "Version",
342
+ "name": "",
343
+ "type": "uint24"
344
+ }
345
+ ],
346
+ "stateMutability": "pure",
347
+ "type": "function"
348
+ },
349
+ {
350
+ "inputs": [
351
+ {
352
+ "internalType": "uint256",
353
+ "name": "idx",
354
+ "type": "uint256"
355
+ }
356
+ ],
357
+ "name": "getVersion",
358
+ "outputs": [
359
+ {
360
+ "internalType": "Version",
361
+ "name": "",
362
+ "type": "uint24"
363
+ }
364
+ ],
365
+ "stateMutability": "view",
366
+ "type": "function"
367
+ },
368
+ {
369
+ "inputs": [],
370
+ "name": "getVersionCount",
371
+ "outputs": [
372
+ {
373
+ "internalType": "uint256",
374
+ "name": "",
375
+ "type": "uint256"
376
+ }
377
+ ],
378
+ "stateMutability": "view",
379
+ "type": "function"
380
+ },
381
+ {
382
+ "inputs": [
383
+ {
384
+ "internalType": "Version",
385
+ "name": "_version",
386
+ "type": "uint24"
387
+ }
388
+ ],
389
+ "name": "getVersionInfo",
390
+ "outputs": [
391
+ {
392
+ "components": [
393
+ {
394
+ "internalType": "Version",
395
+ "name": "version",
396
+ "type": "uint24"
397
+ },
398
+ {
399
+ "internalType": "address",
400
+ "name": "implementation",
401
+ "type": "address"
402
+ },
403
+ {
404
+ "internalType": "address",
405
+ "name": "activatedBy",
406
+ "type": "address"
407
+ },
408
+ {
409
+ "internalType": "Timestamp",
410
+ "name": "activatedAt",
411
+ "type": "uint40"
412
+ },
413
+ {
414
+ "internalType": "Blocknumber",
415
+ "name": "activatedIn",
416
+ "type": "uint32"
417
+ }
418
+ ],
419
+ "internalType": "struct IVersionable.VersionInfo",
420
+ "name": "",
421
+ "type": "tuple"
422
+ }
423
+ ],
424
+ "stateMutability": "view",
425
+ "type": "function"
426
+ },
427
+ {
428
+ "inputs": [
429
+ {
430
+ "internalType": "address",
431
+ "name": "implementation",
432
+ "type": "address"
433
+ },
434
+ {
435
+ "internalType": "address",
436
+ "name": "activatedBy",
437
+ "type": "address"
438
+ },
439
+ {
440
+ "internalType": "bytes",
441
+ "name": "data",
442
+ "type": "bytes"
443
+ }
444
+ ],
445
+ "name": "initialize",
446
+ "outputs": [],
447
+ "stateMutability": "nonpayable",
448
+ "type": "function"
449
+ },
450
+ {
451
+ "inputs": [
452
+ {
453
+ "internalType": "Version",
454
+ "name": "_version",
455
+ "type": "uint24"
456
+ }
457
+ ],
458
+ "name": "isInitialized",
459
+ "outputs": [
460
+ {
461
+ "internalType": "bool",
462
+ "name": "",
463
+ "type": "bool"
464
+ }
465
+ ],
466
+ "stateMutability": "view",
467
+ "type": "function"
468
+ },
469
+ {
470
+ "inputs": [],
471
+ "name": "linkToRegisteredNftId",
472
+ "outputs": [],
473
+ "stateMutability": "nonpayable",
474
+ "type": "function"
475
+ },
476
+ {
477
+ "inputs": [
478
+ {
479
+ "internalType": "address",
480
+ "name": "distributionComponentAddress",
481
+ "type": "address"
482
+ }
483
+ ],
484
+ "name": "register",
485
+ "outputs": [
486
+ {
487
+ "internalType": "NftId",
488
+ "name": "distributionNftId",
489
+ "type": "uint96"
490
+ }
491
+ ],
492
+ "stateMutability": "nonpayable",
493
+ "type": "function"
494
+ },
495
+ {
496
+ "inputs": [
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": "distributionFee",
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": "0x60806040523480156200001157600080fd5b50620000546301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600280546001600160a01b031916331790556200007062000076565b6200012a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001275780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6128f7806200013a6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063644c45e0116100b8578063b3c650151161007c578063b3c650151461044d578063b88da7591461046d578063caf4e3d414610480578063cc9fc59a14610488578063cde749f414610490578063cf7a1d77146104aa57600080fd5b8063644c45e0146103c1578063893d20e8146103d9578063946dfcfe146103e1578063a3f4df7e14610408578063a745e3df1461043a57600080fd5b80631eff4b221161010a5780631eff4b22146101fd5780633f52c0f6146102325780634420e486146102455780634d459c90146102705780634f421333146103895780635ab1bd531461039c57600080fd5b806301ffc9a7146101475780630d8e6e2c146101895780630fec111c146101a5578063138461e0146101bb57806317d7de7c146101c5575b600080fd5b610174610155366004611f4c565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101916104bd565b60405162ffffff9091168152602001610180565b6101ad610547565b604051610180929190611fcd565b6101c36106cd565b005b604080518082019091526013815272446973747269627574696f6e5365727669636560681b60208201525b6040516101809190612074565b6102247f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610180565b6101c3610240366004612117565b6108ef565b61025861025336600461215e565b610a52565b6040516001600160601b039091168152602001610180565b61032c61027e36600461218c565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526000805160206128a283398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610180565b61017461039736600461218c565b610ddd565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610180565b600154600160a01b90046001600160601b0316610258565b6103a9610e90565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed90154610224565b6101f060405180604001604052806013815260200172446973747269627574696f6e5365727669636560681b81525081565b6101c36104483660046121d0565b610faa565b610455611104565b6040516001600160401b039091168152602001610180565b61019161047b366004612274565b611125565b6103a9611176565b6103a9611231565b6104986112a9565b60405160ff9091168152602001610180565b6101c36104b83660046121d0565b61132c565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561051e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610542919061228d565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806105ce6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610616610e90565b6001600160a01b03168152602001826001018054610633906122aa565b80601f016020809104026020016040519081016040528092919081815260200182805461065f906122aa565b80156106ac5780601f10610681576101008083540402835291602001916106ac565b820191906000526020600020905b81548152906001019060200180831161068f57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561072f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061075391906122f9565b1561079a576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166107c35760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa15801561080c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083091906122f9565b610858576040516372657a5160e01b81526001600160a01b0382166004820152602401610791565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156108a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c6919061232b565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b6000806108fc6078611435565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610940573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109649190612346565b8351604051639ad69c6760e01b81526001600160601b0382166004820152919250906000906001600160a01b03841690639ad69c679060240160c060405180830381865afa1580156109ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109de919061236e565b60408181018890525163bd5947e360e01b81529091506001600160a01b0385169063bd5947e390610a18908590859060ff90600401612478565b600060405180830381600087803b158015610a3257600080fd5b505af1158015610a46573d6000803e3d6000fd5b50505050505050505050565b6000610a5c611726565b82600033905060008290506000816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acb9190612346565b9050610ad5611231565b6001600160a01b0316639c12c9c78487846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b47919061232b565b6040516001600160e01b031960e086901b1681526001600160a01b0390931660048401526001600160401b0390911660248301526001600160601b03166044820152606401602060405180830381865afa158015610ba9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcd91906122f9565b610c045760405163674a4efb60e01b81526001600160401b03861660048201526001600160a01b0384166024820152604401610791565b600033905060008890506000816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c729190612346565b90506000610c7e611176565b604051638fbc2d8160e01b81526001600160a01b0385811660048301528681166024830152919250600091831690638fbc2d81906044016000604051808303816000875af1158015610cd4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610cfc91908101906125bb565b50905080600001519a506000846001600160a01b0316638e7ff97e6040518163ffffffff1660e01b815260040160c060405180830381865afa158015610d46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6a919061236e565b604051630b24cf5f60e01b81529091506001600160a01b03851690630b24cf5f90610d9b908f90859060040161261e565b600060405180830381600087803b158015610db557600080fd5b505af1158015610dc9573d6000803e3d6000fd5b505050505050505050505050505050919050565b6000806000805160206128a283398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610e65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e89919061263b565b1192915050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1991906122f9565b15610f9a57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a906024015b602060405180830381865afa158015610f76573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105429190612346565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610fcc6104bd565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561100c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110309190612669565b6000805160206128828339815191528054600160401b900460ff1680611063575080546001600160401b03808416911610155b156110815760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556110ac858561179d565b6110b583611a3c565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b6000610542600080516020612882833981519152546001600160401b031690565b60006000805160206128a2833981519152600101828154811061114a5761114a612686565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60008061118b6001546001600160a01b031690565b6001600160a01b031663a3bcd81d6111a16112a9565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015611207573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122b9190612346565b92915050565b60006112456001546001600160a01b031690565b6001600160a01b031663a3bcd81d61125b6112a9565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e496e7374616e63655365727669636560881b606482015260ff9091166024820152608401610f59565b60006112b36104bd565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611308573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610542919061269c565b6000805160206128828339815191528054600160401b810460ff1615906001600160401b031660008115801561135f5750825b90506000826001600160401b0316600114801561137b5750303b155b905081158015611389575080155b156113a75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113d157845460ff60401b1916600160401b1785555b6113db888861179d565b6113e58787611a44565b831561142b57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152600154604051636939560f60e11b815233600482015260009182916001600160a01b039091169063d272ac1e90602401602060405180830381865afa1580156114bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e1919061232b565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561153c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156091906122f9565b6115ac5760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e0000000000000000006044820152606401610791565b6001546001600160a01b03166040516305247a1760e51b81526001600160601b03831660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611607573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261162f91908101906126b9565b925061164583604001518560ff90811691161490565b6116875760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610791565b600061169b6001546001600160a01b031690565b60208501516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156116f0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261171891908101906126b9565b608001519395939450505050565b6040516368aebf7b60e01b81526064600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611779573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105429190612669565b6117a5611b9a565b6000805160206128a283398151915260006117d5600080516020612882833981519152546001600160401b031690565b905060006117e16104bd565b9050816001600160401b031660010361180e5760028301805462ffffff191662ffffff831617905561185c565b600283015462ffffff9081169082161161185c5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610791565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611910573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193491906126ed565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906110f59083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b610142611b9a565b6000805160206128828339815191528054600160401b810460ff1615906001600160401b0316600081158015611a775750825b90506000826001600160401b03166001148015611a935750303b155b905081158015611aa1575080155b15611abf5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611ae957845460ff60401b1916600160401b1785555b600086806020019051810190611aff9190612714565b600380546001600160a01b039093166001600160a01b0319909316831790559150611b2a9082611bd3565b611b3a631b4612f160e31b611c64565b611b4a631fa9607b60e11b611c64565b508315611b9157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b60008051602061288283398151915254600160401b900460ff16611bd157604051631afcd79f60e31b815260040160405180910390fd5b565b6000611c05604080518082019091526013815272446973747269627574696f6e5365727669636560681b602082015290565b611c0d6112a9565b604051602001611c1e92919061274e565b60405160208183030381529060405290506000611c3a84611c89565b90506000611c4d8583603c848888611cf4565b611c5d631b4612f160e31b611c64565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015611cd0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122b919061232b565b611d356301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b611d3f8287611dc0565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101611daf83826127c2565b50611b916303fb044760e21b611c64565b600280546001600160a01b0319166001600160a01b038416179055611de481611de8565b5050565b6001546001600160a01b031615611e215760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610791565b6001600160a01b038116611e485760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003611e7e5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610791565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e14a543960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015611ef8575060408051601f3d908101601f19168201909252611ef5918101906122f9565b60015b611f205760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610791565b80611de45760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610791565b50565b600060208284031215611f5e57600080fd5b81356001600160e01b031981168114611f7657600080fd5b9392505050565b60005b83811015611f98578181015183820152602001611f80565b50506000910152565b60008151808452611fb9816020860160208601611f7d565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff6040850151166080830152606084015161201160a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152612057610120840182611fa1565b9050828103602084015261206b8185611fa1565b95945050505050565b602081526000611f766020830184611fa1565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156120bf576120bf612087565b60405290565b60405160e081016001600160401b03811182821017156120bf576120bf612087565b604051601f8201601f191681016001600160401b038111828210171561210f5761210f612087565b604052919050565b60006040828403121561212957600080fd5b61213161209d565b82358152602083013560208201528091505092915050565b6001600160a01b0381168114611f4957600080fd5b60006020828403121561217057600080fd5b8135611f7681612149565b62ffffff81168114611f4957600080fd5b60006020828403121561219e57600080fd5b8135611f768161217b565b60006001600160401b038211156121c2576121c2612087565b50601f01601f191660200190565b6000806000606084860312156121e557600080fd5b83356121f081612149565b9250602084013561220081612149565b915060408401356001600160401b0381111561221b57600080fd5b8401601f8101861361222c57600080fd5b803561223f61223a826121a9565b6120e7565b81815287602083850101111561225457600080fd5b816020840160208301376000602083830101528093505050509250925092565b60006020828403121561228657600080fd5b5035919050565b60006020828403121561229f57600080fd5b8151611f768161217b565b600181811c908216806122be57607f821691505b6020821081036122de57634e487b7160e01b600052602260045260246000fd5b50919050565b805180151581146122f457600080fd5b919050565b60006020828403121561230b57600080fd5b611f76826122e4565b80516001600160601b03811681146122f457600080fd5b60006020828403121561233d57600080fd5b611f7682612314565b60006020828403121561235857600080fd5b8151611f7681612149565b80516122f481612149565b600081830360c081121561238157600080fd5b60405160a081018181106001600160401b03821117156123a3576123a3612087565b6040526123af84612314565b815260208401516123bf81612149565b60208201526040603f19830112156123d657600080fd5b6123de61209d565b91506040840151825260608401516020830152816040820152612403608085016122e4565b606082015261241460a08501612363565b6080820152949350505050565b6001600160601b038151168252602081015160018060a01b0380821660208501526040830151915081516040850152602082015160608501526060830151151560808501528060808401511660a085015250505050565b6001600160601b038416815261010081016124966020830185612421565b60ff831660e0830152949350505050565b60ff81168114611f4957600080fd5b80516122f4816124a7565b600082601f8301126124d257600080fd5b81516124e061223a826121a9565b8181528460208386010111156124f557600080fd5b612506826020830160208701611f7d565b949350505050565b600060e0828403121561252057600080fd5b6125286120c5565b905061253382612314565b815261254160208301612314565b6020820152612552604083016124b6565b6040820152612563606083016122e4565b606082015261257460808301612363565b608082015261258560a08301612363565b60a082015260c08201516001600160401b038111156125a357600080fd5b6125af848285016124c1565b60c08301525092915050565b600080604083850312156125ce57600080fd5b82516001600160401b03808211156125e557600080fd5b6125f18683870161250e565b9350602085015191508082111561260757600080fd5b50612614858286016124c1565b9150509250929050565b6001600160601b038316815260e08101611f766020830184612421565b60006020828403121561264d57600080fd5b5051919050565b6001600160401b0381168114611f4957600080fd5b60006020828403121561267b57600080fd5b8151611f7681612654565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156126ae57600080fd5b8151611f76816124a7565b6000602082840312156126cb57600080fd5b81516001600160401b038111156126e157600080fd5b6125068482850161250e565b6000602082840312156126ff57600080fd5b815164ffffffffff81168114611f7657600080fd5b6000806040838503121561272757600080fd5b825161273281612149565b602084015190925061274381612149565b809150509250929050565b6040815260006127616040830185611fa1565b905060ff831660208301529392505050565b601f8211156127bd57600081815260208120601f850160051c8101602086101561279a5750805b601f850160051c820191505b818110156127b9578281556001016127a6565b5050505b505050565b81516001600160401b038111156127db576127db612087565b6127ef816127e984546122aa565b84612773565b602080601f831160018114612824576000841561280c5750858301515b600019600386901b1c1916600185901b1785556127b9565b600085815260208120601f198616915b8281101561285357888601518255948401946001909101908401612834565b50858210156128715787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a26469706673582212201127f6ad414ea954403fe411bd6b3c979c6ca9e2dc03e9a4d1f54d0dd653e43264736f6c63430008140033",
564
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063644c45e0116100b8578063b3c650151161007c578063b3c650151461044d578063b88da7591461046d578063caf4e3d414610480578063cc9fc59a14610488578063cde749f414610490578063cf7a1d77146104aa57600080fd5b8063644c45e0146103c1578063893d20e8146103d9578063946dfcfe146103e1578063a3f4df7e14610408578063a745e3df1461043a57600080fd5b80631eff4b221161010a5780631eff4b22146101fd5780633f52c0f6146102325780634420e486146102455780634d459c90146102705780634f421333146103895780635ab1bd531461039c57600080fd5b806301ffc9a7146101475780630d8e6e2c146101895780630fec111c146101a5578063138461e0146101bb57806317d7de7c146101c5575b600080fd5b610174610155366004611f4c565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101916104bd565b60405162ffffff9091168152602001610180565b6101ad610547565b604051610180929190611fcd565b6101c36106cd565b005b604080518082019091526013815272446973747269627574696f6e5365727669636560681b60208201525b6040516101809190612074565b6102247f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610180565b6101c3610240366004612117565b6108ef565b61025861025336600461215e565b610a52565b6040516001600160601b039091168152602001610180565b61032c61027e36600461218c565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526000805160206128a283398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610180565b61017461039736600461218c565b610ddd565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610180565b600154600160a01b90046001600160601b0316610258565b6103a9610e90565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed90154610224565b6101f060405180604001604052806013815260200172446973747269627574696f6e5365727669636560681b81525081565b6101c36104483660046121d0565b610faa565b610455611104565b6040516001600160401b039091168152602001610180565b61019161047b366004612274565b611125565b6103a9611176565b6103a9611231565b6104986112a9565b60405160ff9091168152602001610180565b6101c36104b83660046121d0565b61132c565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561051e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610542919061228d565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806105ce6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610616610e90565b6001600160a01b03168152602001826001018054610633906122aa565b80601f016020809104026020016040519081016040528092919081815260200182805461065f906122aa565b80156106ac5780601f10610681576101008083540402835291602001916106ac565b820191906000526020600020905b81548152906001019060200180831161068f57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561072f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061075391906122f9565b1561079a576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166107c35760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa15801561080c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083091906122f9565b610858576040516372657a5160e01b81526001600160a01b0382166004820152602401610791565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156108a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c6919061232b565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b6000806108fc6078611435565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610940573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109649190612346565b8351604051639ad69c6760e01b81526001600160601b0382166004820152919250906000906001600160a01b03841690639ad69c679060240160c060405180830381865afa1580156109ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109de919061236e565b60408181018890525163bd5947e360e01b81529091506001600160a01b0385169063bd5947e390610a18908590859060ff90600401612478565b600060405180830381600087803b158015610a3257600080fd5b505af1158015610a46573d6000803e3d6000fd5b50505050505050505050565b6000610a5c611726565b82600033905060008290506000816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acb9190612346565b9050610ad5611231565b6001600160a01b0316639c12c9c78487846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b47919061232b565b6040516001600160e01b031960e086901b1681526001600160a01b0390931660048401526001600160401b0390911660248301526001600160601b03166044820152606401602060405180830381865afa158015610ba9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcd91906122f9565b610c045760405163674a4efb60e01b81526001600160401b03861660048201526001600160a01b0384166024820152604401610791565b600033905060008890506000816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c729190612346565b90506000610c7e611176565b604051638fbc2d8160e01b81526001600160a01b0385811660048301528681166024830152919250600091831690638fbc2d81906044016000604051808303816000875af1158015610cd4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610cfc91908101906125bb565b50905080600001519a506000846001600160a01b0316638e7ff97e6040518163ffffffff1660e01b815260040160c060405180830381865afa158015610d46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6a919061236e565b604051630b24cf5f60e01b81529091506001600160a01b03851690630b24cf5f90610d9b908f90859060040161261e565b600060405180830381600087803b158015610db557600080fd5b505af1158015610dc9573d6000803e3d6000fd5b505050505050505050505050505050919050565b6000806000805160206128a283398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610e65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e89919061263b565b1192915050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1991906122f9565b15610f9a57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a906024015b602060405180830381865afa158015610f76573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105429190612346565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610fcc6104bd565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561100c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110309190612669565b6000805160206128828339815191528054600160401b900460ff1680611063575080546001600160401b03808416911610155b156110815760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556110ac858561179d565b6110b583611a3c565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b6000610542600080516020612882833981519152546001600160401b031690565b60006000805160206128a2833981519152600101828154811061114a5761114a612686565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60008061118b6001546001600160a01b031690565b6001600160a01b031663a3bcd81d6111a16112a9565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015611207573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122b9190612346565b92915050565b60006112456001546001600160a01b031690565b6001600160a01b031663a3bcd81d61125b6112a9565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e496e7374616e63655365727669636560881b606482015260ff9091166024820152608401610f59565b60006112b36104bd565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611308573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610542919061269c565b6000805160206128828339815191528054600160401b810460ff1615906001600160401b031660008115801561135f5750825b90506000826001600160401b0316600114801561137b5750303b155b905081158015611389575080155b156113a75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113d157845460ff60401b1916600160401b1785555b6113db888861179d565b6113e58787611a44565b831561142b57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152600154604051636939560f60e11b815233600482015260009182916001600160a01b039091169063d272ac1e90602401602060405180830381865afa1580156114bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e1919061232b565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561153c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156091906122f9565b6115ac5760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e0000000000000000006044820152606401610791565b6001546001600160a01b03166040516305247a1760e51b81526001600160601b03831660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611607573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261162f91908101906126b9565b925061164583604001518560ff90811691161490565b6116875760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610791565b600061169b6001546001600160a01b031690565b60208501516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156116f0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261171891908101906126b9565b608001519395939450505050565b6040516368aebf7b60e01b81526064600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611779573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105429190612669565b6117a5611b9a565b6000805160206128a283398151915260006117d5600080516020612882833981519152546001600160401b031690565b905060006117e16104bd565b9050816001600160401b031660010361180e5760028301805462ffffff191662ffffff831617905561185c565b600283015462ffffff9081169082161161185c5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610791565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611910573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193491906126ed565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906110f59083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b610142611b9a565b6000805160206128828339815191528054600160401b810460ff1615906001600160401b0316600081158015611a775750825b90506000826001600160401b03166001148015611a935750303b155b905081158015611aa1575080155b15611abf5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611ae957845460ff60401b1916600160401b1785555b600086806020019051810190611aff9190612714565b600380546001600160a01b039093166001600160a01b0319909316831790559150611b2a9082611bd3565b611b3a631b4612f160e31b611c64565b611b4a631fa9607b60e11b611c64565b508315611b9157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b60008051602061288283398151915254600160401b900460ff16611bd157604051631afcd79f60e31b815260040160405180910390fd5b565b6000611c05604080518082019091526013815272446973747269627574696f6e5365727669636560681b602082015290565b611c0d6112a9565b604051602001611c1e92919061274e565b60405160208183030381529060405290506000611c3a84611c89565b90506000611c4d8583603c848888611cf4565b611c5d631b4612f160e31b611c64565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015611cd0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122b919061232b565b611d356301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b611d3f8287611dc0565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101611daf83826127c2565b50611b916303fb044760e21b611c64565b600280546001600160a01b0319166001600160a01b038416179055611de481611de8565b5050565b6001546001600160a01b031615611e215760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610791565b6001600160a01b038116611e485760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003611e7e5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610791565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e14a543960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015611ef8575060408051601f3d908101601f19168201909252611ef5918101906122f9565b60015b611f205760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610791565b80611de45760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610791565b50565b600060208284031215611f5e57600080fd5b81356001600160e01b031981168114611f7657600080fd5b9392505050565b60005b83811015611f98578181015183820152602001611f80565b50506000910152565b60008151808452611fb9816020860160208601611f7d565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff6040850151166080830152606084015161201160a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152612057610120840182611fa1565b9050828103602084015261206b8185611fa1565b95945050505050565b602081526000611f766020830184611fa1565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156120bf576120bf612087565b60405290565b60405160e081016001600160401b03811182821017156120bf576120bf612087565b604051601f8201601f191681016001600160401b038111828210171561210f5761210f612087565b604052919050565b60006040828403121561212957600080fd5b61213161209d565b82358152602083013560208201528091505092915050565b6001600160a01b0381168114611f4957600080fd5b60006020828403121561217057600080fd5b8135611f7681612149565b62ffffff81168114611f4957600080fd5b60006020828403121561219e57600080fd5b8135611f768161217b565b60006001600160401b038211156121c2576121c2612087565b50601f01601f191660200190565b6000806000606084860312156121e557600080fd5b83356121f081612149565b9250602084013561220081612149565b915060408401356001600160401b0381111561221b57600080fd5b8401601f8101861361222c57600080fd5b803561223f61223a826121a9565b6120e7565b81815287602083850101111561225457600080fd5b816020840160208301376000602083830101528093505050509250925092565b60006020828403121561228657600080fd5b5035919050565b60006020828403121561229f57600080fd5b8151611f768161217b565b600181811c908216806122be57607f821691505b6020821081036122de57634e487b7160e01b600052602260045260246000fd5b50919050565b805180151581146122f457600080fd5b919050565b60006020828403121561230b57600080fd5b611f76826122e4565b80516001600160601b03811681146122f457600080fd5b60006020828403121561233d57600080fd5b611f7682612314565b60006020828403121561235857600080fd5b8151611f7681612149565b80516122f481612149565b600081830360c081121561238157600080fd5b60405160a081018181106001600160401b03821117156123a3576123a3612087565b6040526123af84612314565b815260208401516123bf81612149565b60208201526040603f19830112156123d657600080fd5b6123de61209d565b91506040840151825260608401516020830152816040820152612403608085016122e4565b606082015261241460a08501612363565b6080820152949350505050565b6001600160601b038151168252602081015160018060a01b0380821660208501526040830151915081516040850152602082015160608501526060830151151560808501528060808401511660a085015250505050565b6001600160601b038416815261010081016124966020830185612421565b60ff831660e0830152949350505050565b60ff81168114611f4957600080fd5b80516122f4816124a7565b600082601f8301126124d257600080fd5b81516124e061223a826121a9565b8181528460208386010111156124f557600080fd5b612506826020830160208701611f7d565b949350505050565b600060e0828403121561252057600080fd5b6125286120c5565b905061253382612314565b815261254160208301612314565b6020820152612552604083016124b6565b6040820152612563606083016122e4565b606082015261257460808301612363565b608082015261258560a08301612363565b60a082015260c08201516001600160401b038111156125a357600080fd5b6125af848285016124c1565b60c08301525092915050565b600080604083850312156125ce57600080fd5b82516001600160401b03808211156125e557600080fd5b6125f18683870161250e565b9350602085015191508082111561260757600080fd5b50612614858286016124c1565b9150509250929050565b6001600160601b038316815260e08101611f766020830184612421565b60006020828403121561264d57600080fd5b5051919050565b6001600160401b0381168114611f4957600080fd5b60006020828403121561267b57600080fd5b8151611f7681612654565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156126ae57600080fd5b8151611f76816124a7565b6000602082840312156126cb57600080fd5b81516001600160401b038111156126e157600080fd5b6125068482850161250e565b6000602082840312156126ff57600080fd5b815164ffffffffff81168114611f7657600080fd5b6000806040838503121561272757600080fd5b825161273281612149565b602084015190925061274381612149565b809150509250929050565b6040815260006127616040830185611fa1565b905060ff831660208301529392505050565b601f8211156127bd57600081815260208120601f850160051c8101602086101561279a5750805b601f850160051c820191505b818110156127b9578281556001016127a6565b5050505b505050565b81516001600160401b038111156127db576127db612087565b6127ef816127e984546122aa565b84612773565b602080601f831160018114612824576000841561280c5750858301515b600019600386901b1c1916600185901b1785556127b9565b600085815260208120601f198616915b8281101561285357888601518255948401946001909101908401612834565b50858210156128715787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a26469706673582212201127f6ad414ea954403fe411bd6b3c979c6ca9e2dc03e9a4d1f54d0dd653e43264736f6c63430008140033",
565
+ "linkReferences": {
566
+ "contracts/types/Blocknumber.sol": {
567
+ "BlocknumberLib": [
568
+ {
569
+ "length": 20,
570
+ "start": 3941
571
+ }
572
+ ]
573
+ },
574
+ "contracts/types/NftId.sol": {
575
+ "NftIdLib": [
576
+ {
577
+ "length": 20,
578
+ "start": 2095
579
+ },
580
+ {
581
+ "length": 20,
582
+ "start": 4085
583
+ },
584
+ {
585
+ "length": 20,
586
+ "start": 5692
587
+ }
588
+ ]
589
+ },
590
+ "contracts/types/RoleId.sol": {
591
+ "RoleIdLib": [
592
+ {
593
+ "length": 20,
594
+ "start": 6265
595
+ }
596
+ ]
597
+ },
598
+ "contracts/types/Timestamp.sol": {
599
+ "TimestampLib": [
600
+ {
601
+ "length": 20,
602
+ "start": 6672
603
+ }
604
+ ]
605
+ },
606
+ "contracts/types/Version.sol": {
607
+ "VersionLib": [
608
+ {
609
+ "length": 20,
610
+ "start": 1566
611
+ },
612
+ {
613
+ "length": 20,
614
+ "start": 4326
615
+ },
616
+ {
617
+ "length": 20,
618
+ "start": 5128
619
+ }
620
+ ]
621
+ }
622
+ },
623
+ "deployedLinkReferences": {
624
+ "contracts/types/Blocknumber.sol": {
625
+ "BlocknumberLib": [
626
+ {
627
+ "length": 20,
628
+ "start": 3627
629
+ }
630
+ ]
631
+ },
632
+ "contracts/types/NftId.sol": {
633
+ "NftIdLib": [
634
+ {
635
+ "length": 20,
636
+ "start": 1781
637
+ },
638
+ {
639
+ "length": 20,
640
+ "start": 3771
641
+ },
642
+ {
643
+ "length": 20,
644
+ "start": 5378
645
+ }
646
+ ]
647
+ },
648
+ "contracts/types/RoleId.sol": {
649
+ "RoleIdLib": [
650
+ {
651
+ "length": 20,
652
+ "start": 5951
653
+ }
654
+ ]
655
+ },
656
+ "contracts/types/Timestamp.sol": {
657
+ "TimestampLib": [
658
+ {
659
+ "length": 20,
660
+ "start": 6358
661
+ }
662
+ ]
663
+ },
664
+ "contracts/types/Version.sol": {
665
+ "VersionLib": [
666
+ {
667
+ "length": 20,
668
+ "start": 1252
669
+ },
670
+ {
671
+ "length": 20,
672
+ "start": 4012
673
+ },
674
+ {
675
+ "length": 20,
676
+ "start": 4814
677
+ }
678
+ ]
679
+ }
680
+ }
681
+ }