@etherisc/gif-next 0.0.2-f619be3-760 → 0.0.2-f626d92-602

Sign up to get free protection for your applications and to get access to all the features.
Files changed (474) hide show
  1. package/README.md +324 -22
  2. package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
  3. package/artifacts/contracts/components/Component.sol/Component.json +672 -35
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +1329 -0
  6. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IComponent.sol/IComponent.json +605 -0
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +969 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +1064 -0
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +830 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +1180 -132
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +977 -156
  18. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
  19. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
  20. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  21. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
  22. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
  23. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +190 -0
  24. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  25. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1698 -810
  26. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  27. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +633 -0
  28. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  29. package/artifacts/contracts/instance/Instance.sol/Instance.json +2413 -849
  30. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  31. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1330 -0
  32. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  33. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1289 -0
  34. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  35. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1179 -0
  36. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  37. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +741 -0
  38. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  39. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
  40. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
  41. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +607 -0
  42. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  43. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
  44. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  45. package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
  46. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  47. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +532 -0
  48. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  49. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +194 -0
  50. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  51. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
  52. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  53. package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
  54. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  55. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
  56. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  57. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
  58. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  59. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  60. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  61. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
  62. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  63. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
  64. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  65. package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
  66. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  67. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1039 -0
  68. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  69. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +673 -0
  70. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
  71. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1231 -0
  72. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  73. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +721 -0
  74. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
  75. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +817 -0
  76. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  77. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +641 -0
  78. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  79. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1798 -0
  80. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  81. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +805 -0
  82. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  83. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +622 -0
  84. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
  85. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +659 -0
  86. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
  87. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +475 -0
  88. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  89. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +1090 -0
  90. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  91. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +606 -0
  92. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  93. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +844 -0
  94. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  95. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +450 -0
  96. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
  97. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1092 -0
  98. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  99. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +697 -0
  100. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1237 -0
  102. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  103. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +661 -0
  104. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  105. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +840 -0
  106. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +653 -0
  108. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  109. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
  110. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  111. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +595 -27
  112. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  113. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +866 -0
  114. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  115. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  116. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  117. package/artifacts/contracts/registry/Registry.sol/Registry.json +652 -50
  118. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
  119. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
  120. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  121. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1158 -0
  122. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  123. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +670 -0
  124. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  125. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
  126. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  127. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
  128. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  129. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  130. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  131. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
  132. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  133. package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +46 -74
  134. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  135. package/artifacts/contracts/{instance/product/IProductService.sol/IProductService.json → shared/IPolicyHolder.sol/IPolicyHolder.json} +68 -66
  136. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  137. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +188 -0
  138. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  139. package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +18 -19
  140. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  141. package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → shared/IService.sol/IService.json} +168 -132
  142. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  143. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
  144. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  145. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +251 -0
  146. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  147. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
  148. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  149. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +582 -0
  150. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  151. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +352 -0
  152. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  153. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
  154. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  155. package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +261 -217
  156. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  157. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
  158. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  159. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  160. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  161. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
  162. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  163. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  164. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  165. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +383 -0
  166. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  167. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  168. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  169. package/artifacts/contracts/test/TestService.sol/TestService.json +596 -0
  170. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  171. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
  172. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  173. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  174. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  175. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +104 -0
  176. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  177. package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
  178. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  179. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  180. package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
  181. package/artifacts/contracts/types/Amount.sol/AmountLib.json +161 -0
  182. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  183. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
  184. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  185. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  186. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
  187. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  188. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  189. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  190. package/artifacts/contracts/types/Fee.sol/FeeLib.json +288 -0
  191. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  192. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
  193. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  194. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +78 -4
  195. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  196. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
  197. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  198. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  199. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  200. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  201. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  202. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
  203. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  204. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
  205. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  206. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  207. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  208. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  209. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
  210. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
  211. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  212. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  213. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  214. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +97 -4
  215. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  216. package/artifacts/contracts/{experiment/types/TypeB.sol/TypeBLib.json → types/UFixed.sol/MathLib.json} +4 -4
  217. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  218. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
  219. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  220. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  221. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  222. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
  223. package/contracts/components/Component.sol +227 -51
  224. package/contracts/components/Distribution.sol +280 -0
  225. package/contracts/components/IComponent.sol +76 -0
  226. package/contracts/components/IDistributionComponent.sol +71 -0
  227. package/contracts/components/IPoolComponent.sol +113 -0
  228. package/contracts/components/IProductComponent.sol +40 -0
  229. package/contracts/components/Pool.sol +281 -30
  230. package/contracts/components/Product.sol +252 -48
  231. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
  232. package/contracts/instance/BundleManager.sol +127 -0
  233. package/contracts/instance/Cloneable.sol +51 -0
  234. package/contracts/instance/IInstance.sol +95 -22
  235. package/contracts/instance/IInstanceService.sol +72 -0
  236. package/contracts/instance/Instance.sol +306 -51
  237. package/contracts/instance/InstanceAccessManager.sol +527 -0
  238. package/contracts/instance/InstanceReader.sol +291 -0
  239. package/contracts/instance/InstanceService.sol +495 -0
  240. package/contracts/instance/InstanceServiceManager.sol +54 -0
  241. package/contracts/instance/ObjectManager.sol +82 -0
  242. package/contracts/instance/base/ComponentService.sol +121 -0
  243. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  244. package/contracts/instance/base/ILifecycle.sol +30 -0
  245. package/contracts/instance/base/KeyValueStore.sol +180 -0
  246. package/contracts/instance/base/Lifecycle.sol +109 -0
  247. package/contracts/instance/module/IAccess.sol +54 -0
  248. package/contracts/instance/module/IBundle.sol +23 -0
  249. package/contracts/instance/module/IComponents.sol +41 -0
  250. package/contracts/instance/module/IDistribution.sol +41 -0
  251. package/contracts/instance/module/IPolicy.sol +72 -0
  252. package/contracts/instance/module/IRisk.sol +11 -0
  253. package/contracts/instance/module/ISetup.sol +33 -0
  254. package/contracts/instance/module/ITreasury.sol +23 -0
  255. package/contracts/instance/service/ApplicationService.sol +350 -0
  256. package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
  257. package/contracts/instance/service/BundleService.sol +431 -0
  258. package/contracts/instance/service/BundleServiceManager.sol +51 -0
  259. package/contracts/instance/service/ClaimService.sol +151 -0
  260. package/contracts/instance/service/ClaimServiceManager.sol +35 -0
  261. package/contracts/instance/service/DistributionService.sol +435 -0
  262. package/contracts/instance/service/DistributionServiceManager.sol +51 -0
  263. package/contracts/instance/service/IApplicationService.sol +82 -0
  264. package/contracts/instance/service/IBundleService.sol +93 -0
  265. package/contracts/instance/service/IClaimService.sol +61 -0
  266. package/contracts/instance/service/IDistributionService.sol +99 -0
  267. package/contracts/instance/service/IPolicyService.sol +72 -0
  268. package/contracts/instance/service/IPoolService.sol +99 -0
  269. package/contracts/instance/service/IProductService.sol +40 -0
  270. package/contracts/instance/service/PolicyService.sol +362 -0
  271. package/contracts/instance/service/PolicyServiceManager.sol +54 -0
  272. package/contracts/instance/service/PoolService.sol +303 -0
  273. package/contracts/instance/service/PoolServiceManager.sol +51 -0
  274. package/contracts/instance/service/ProductService.sol +210 -0
  275. package/contracts/instance/service/ProductServiceManager.sol +54 -0
  276. package/contracts/registry/ChainNft.sol +137 -62
  277. package/contracts/registry/IRegistry.sol +75 -41
  278. package/contracts/registry/IRegistryService.sol +68 -0
  279. package/contracts/registry/ITransferInterceptor.sol +7 -0
  280. package/contracts/registry/Registry.sol +413 -128
  281. package/contracts/registry/RegistryAccessManager.sol +216 -0
  282. package/contracts/registry/RegistryService.sol +282 -0
  283. package/contracts/registry/RegistryServiceManager.sol +62 -0
  284. package/contracts/registry/ReleaseManager.sol +324 -0
  285. package/contracts/registry/TokenRegistry.sol +116 -0
  286. package/contracts/shared/ContractDeployerLib.sol +72 -0
  287. package/contracts/shared/ERC165.sol +27 -0
  288. package/contracts/shared/INftOwnable.sol +23 -0
  289. package/contracts/shared/IPolicyHolder.sol +26 -0
  290. package/contracts/shared/IRegisterable.sol +15 -0
  291. package/contracts/shared/IRegistryLinked.sol +12 -0
  292. package/contracts/shared/IService.sol +16 -0
  293. package/contracts/shared/IVersionable.sol +53 -0
  294. package/contracts/shared/NftOwnable.sol +120 -0
  295. package/contracts/shared/PolicyHolder.sol +81 -0
  296. package/contracts/shared/ProxyManager.sol +169 -0
  297. package/contracts/shared/Registerable.sol +74 -0
  298. package/contracts/shared/RegistryLinked.sol +48 -0
  299. package/contracts/shared/Service.sol +72 -0
  300. package/contracts/shared/TokenHandler.sol +33 -0
  301. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  302. package/contracts/shared/Versionable.sol +59 -0
  303. package/contracts/test/TestFee.sol +25 -0
  304. package/contracts/test/TestRegisterable.sol +18 -0
  305. package/contracts/test/TestRoleId.sol +14 -0
  306. package/contracts/test/TestService.sol +25 -0
  307. package/contracts/{mock/Dip.sol → test/TestToken.sol} +5 -5
  308. package/contracts/test/TestVersion.sol +44 -0
  309. package/contracts/test/TestVersionable.sol +17 -0
  310. package/contracts/{mock → test}/Usdc.sol +1 -1
  311. package/contracts/types/AddressSet.sol +58 -0
  312. package/contracts/types/Amount.sol +60 -0
  313. package/contracts/types/Blocknumber.sol +1 -0
  314. package/contracts/types/ClaimId.sol +52 -0
  315. package/contracts/types/DistributorType.sol +55 -0
  316. package/contracts/types/Fee.sol +52 -20
  317. package/contracts/types/Key32.sol +50 -0
  318. package/contracts/types/NftId.sol +30 -1
  319. package/contracts/types/NftIdSet.sol +62 -0
  320. package/contracts/types/NumberId.sol +52 -0
  321. package/contracts/types/ObjectType.sol +65 -15
  322. package/contracts/types/PayoutId.sol +54 -0
  323. package/contracts/types/Referral.sol +89 -0
  324. package/contracts/types/RiskId.sol +43 -0
  325. package/contracts/types/RoleId.sol +97 -0
  326. package/contracts/types/Seconds.sol +54 -0
  327. package/contracts/types/StateId.sol +19 -4
  328. package/contracts/types/Timestamp.sol +31 -6
  329. package/contracts/types/UFixed.sol +139 -23
  330. package/contracts/types/Version.sol +108 -0
  331. package/package.json +11 -5
  332. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  333. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  334. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  335. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
  336. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  337. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
  338. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  339. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  340. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  341. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  342. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  343. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  344. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  345. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  346. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  347. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  348. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  349. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  350. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  351. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  352. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  353. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  354. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  355. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  356. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  357. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  358. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  359. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  360. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  361. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  362. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  363. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  364. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  365. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  366. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  367. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  368. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  369. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  370. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  371. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  372. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  373. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  374. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  375. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  376. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  377. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  378. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  379. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  380. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  381. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  382. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
  383. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  384. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  385. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
  386. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  387. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
  388. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  389. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
  390. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  391. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
  392. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  393. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
  394. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
  395. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
  396. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
  397. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  398. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  399. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
  400. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  401. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
  402. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  403. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  404. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
  405. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  406. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
  407. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  408. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  409. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  410. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  411. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  412. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  413. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
  414. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  415. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  416. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
  417. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  418. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
  419. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  420. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
  421. package/artifacts/contracts/mock/Dip.sol/DIP.dbg.json +0 -4
  422. package/artifacts/contracts/mock/Dip.sol/DIP.json +0 -338
  423. package/artifacts/contracts/mock/TestPool.sol/TestPool.dbg.json +0 -4
  424. package/artifacts/contracts/mock/TestPool.sol/TestPool.json +0 -294
  425. package/artifacts/contracts/mock/TestProduct.sol/TestProduct.dbg.json +0 -4
  426. package/artifacts/contracts/mock/TestProduct.sol/TestProduct.json +0 -384
  427. package/artifacts/contracts/mock/Usdc.sol/USDC.dbg.json +0 -4
  428. package/artifacts/contracts/mock/Usdc.sol/USDC.json +0 -338
  429. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  430. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  431. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
  432. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  433. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  434. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  435. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  436. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  437. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  438. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  439. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
  440. package/contracts/components/IPool.sol +0 -15
  441. package/contracts/components/IProduct.sol +0 -16
  442. package/contracts/experiment/errors/Require.sol +0 -38
  443. package/contracts/experiment/errors/Revert.sol +0 -44
  444. package/contracts/experiment/inheritance/A.sol +0 -53
  445. package/contracts/experiment/inheritance/B.sol +0 -28
  446. package/contracts/experiment/inheritance/C.sol +0 -34
  447. package/contracts/experiment/inheritance/IA.sol +0 -13
  448. package/contracts/experiment/inheritance/IB.sol +0 -10
  449. package/contracts/experiment/inheritance/IC.sol +0 -12
  450. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  451. package/contracts/experiment/statemachine/ISM.sol +0 -25
  452. package/contracts/experiment/statemachine/README.md +0 -112
  453. package/contracts/experiment/statemachine/SM.sol +0 -57
  454. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  455. package/contracts/experiment/types/TypeA.sol +0 -47
  456. package/contracts/experiment/types/TypeB.sol +0 -29
  457. package/contracts/instance/access/Access.sol +0 -165
  458. package/contracts/instance/access/IAccess.sol +0 -63
  459. package/contracts/instance/component/ComponentModule.sol +0 -274
  460. package/contracts/instance/component/IComponent.sol +0 -74
  461. package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
  462. package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
  463. package/contracts/instance/policy/IPolicy.sol +0 -50
  464. package/contracts/instance/policy/PolicyModule.sol +0 -114
  465. package/contracts/instance/pool/IPoolModule.sol +0 -23
  466. package/contracts/instance/pool/PoolModule.sol +0 -81
  467. package/contracts/instance/product/IProductService.sol +0 -36
  468. package/contracts/instance/product/ProductService.sol +0 -136
  469. package/contracts/instance/treasury/ITreasury.sol +0 -91
  470. package/contracts/instance/treasury/TokenHandler.sol +0 -24
  471. package/contracts/instance/treasury/TreasuryModule.sol +0 -168
  472. package/contracts/mock/TestPool.sol +0 -16
  473. package/contracts/mock/TestProduct.sol +0 -39
  474. package/contracts/registry/IChainNft.sol +0 -21
@@ -0,0 +1,840 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ProductService",
4
+ "sourceName": "contracts/instance/service/ProductService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "component",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorComponentServiceComponentLocked",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "NftId",
59
+ "name": "instanceNftId",
60
+ "type": "uint96"
61
+ },
62
+ {
63
+ "internalType": "RoleId",
64
+ "name": "requiredRole",
65
+ "type": "uint64"
66
+ },
67
+ {
68
+ "internalType": "address",
69
+ "name": "sender",
70
+ "type": "address"
71
+ }
72
+ ],
73
+ "name": "ErrorComponentServiceExpectedRoleMissing",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [
78
+ {
79
+ "internalType": "address",
80
+ "name": "component",
81
+ "type": "address"
82
+ },
83
+ {
84
+ "internalType": "ObjectType",
85
+ "name": "requiredType",
86
+ "type": "uint8"
87
+ },
88
+ {
89
+ "internalType": "ObjectType",
90
+ "name": "componentType",
91
+ "type": "uint8"
92
+ }
93
+ ],
94
+ "name": "ErrorComponentServiceInvalidType",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [
99
+ {
100
+ "internalType": "address",
101
+ "name": "component",
102
+ "type": "address"
103
+ }
104
+ ],
105
+ "name": "ErrorComponentServiceNotComponent",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {
111
+ "internalType": "address",
112
+ "name": "component",
113
+ "type": "address"
114
+ },
115
+ {
116
+ "internalType": "address",
117
+ "name": "initialOwner",
118
+ "type": "address"
119
+ },
120
+ {
121
+ "internalType": "address",
122
+ "name": "sender",
123
+ "type": "address"
124
+ }
125
+ ],
126
+ "name": "ErrorComponentServiceSenderNotOwner",
127
+ "type": "error"
128
+ },
129
+ {
130
+ "inputs": [
131
+ {
132
+ "internalType": "address",
133
+ "name": "target",
134
+ "type": "address"
135
+ }
136
+ ],
137
+ "name": "ErrorIAccessTargetLocked",
138
+ "type": "error"
139
+ },
140
+ {
141
+ "inputs": [
142
+ {
143
+ "internalType": "NftId",
144
+ "name": "nftId",
145
+ "type": "uint96"
146
+ }
147
+ ],
148
+ "name": "ErrorNftOwnableAlreadyLinked",
149
+ "type": "error"
150
+ },
151
+ {
152
+ "inputs": [
153
+ {
154
+ "internalType": "address",
155
+ "name": "contractAddress",
156
+ "type": "address"
157
+ }
158
+ ],
159
+ "name": "ErrorNftOwnableContractNotRegistered",
160
+ "type": "error"
161
+ },
162
+ {
163
+ "inputs": [],
164
+ "name": "ErrorNftOwnableInitialOwnerZero",
165
+ "type": "error"
166
+ },
167
+ {
168
+ "inputs": [
169
+ {
170
+ "internalType": "address",
171
+ "name": "account",
172
+ "type": "address"
173
+ }
174
+ ],
175
+ "name": "ErrorNftOwnableNotOwner",
176
+ "type": "error"
177
+ },
178
+ {
179
+ "inputs": [
180
+ {
181
+ "internalType": "address",
182
+ "name": "registryAddress",
183
+ "type": "address"
184
+ }
185
+ ],
186
+ "name": "ErrorNotRegistry",
187
+ "type": "error"
188
+ },
189
+ {
190
+ "inputs": [],
191
+ "name": "InvalidInitialization",
192
+ "type": "error"
193
+ },
194
+ {
195
+ "inputs": [],
196
+ "name": "NotInitializing",
197
+ "type": "error"
198
+ },
199
+ {
200
+ "anonymous": false,
201
+ "inputs": [
202
+ {
203
+ "indexed": false,
204
+ "internalType": "address",
205
+ "name": "authority",
206
+ "type": "address"
207
+ }
208
+ ],
209
+ "name": "AuthorityUpdated",
210
+ "type": "event"
211
+ },
212
+ {
213
+ "anonymous": false,
214
+ "inputs": [
215
+ {
216
+ "indexed": false,
217
+ "internalType": "uint64",
218
+ "name": "version",
219
+ "type": "uint64"
220
+ }
221
+ ],
222
+ "name": "Initialized",
223
+ "type": "event"
224
+ },
225
+ {
226
+ "anonymous": false,
227
+ "inputs": [
228
+ {
229
+ "indexed": false,
230
+ "internalType": "address",
231
+ "name": "sender",
232
+ "type": "address"
233
+ }
234
+ ],
235
+ "name": "LogProductServiceSender",
236
+ "type": "event"
237
+ },
238
+ {
239
+ "inputs": [],
240
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
241
+ "outputs": [
242
+ {
243
+ "internalType": "bytes32",
244
+ "name": "",
245
+ "type": "bytes32"
246
+ }
247
+ ],
248
+ "stateMutability": "view",
249
+ "type": "function"
250
+ },
251
+ {
252
+ "inputs": [],
253
+ "name": "REGISTERABLE_LOCATION_V1",
254
+ "outputs": [
255
+ {
256
+ "internalType": "bytes32",
257
+ "name": "",
258
+ "type": "bytes32"
259
+ }
260
+ ],
261
+ "stateMutability": "view",
262
+ "type": "function"
263
+ },
264
+ {
265
+ "inputs": [],
266
+ "name": "authority",
267
+ "outputs": [
268
+ {
269
+ "internalType": "address",
270
+ "name": "",
271
+ "type": "address"
272
+ }
273
+ ],
274
+ "stateMutability": "view",
275
+ "type": "function"
276
+ },
277
+ {
278
+ "inputs": [
279
+ {
280
+ "internalType": "RiskId",
281
+ "name": "riskId",
282
+ "type": "bytes8"
283
+ },
284
+ {
285
+ "internalType": "bytes",
286
+ "name": "data",
287
+ "type": "bytes"
288
+ }
289
+ ],
290
+ "name": "createRisk",
291
+ "outputs": [],
292
+ "stateMutability": "nonpayable",
293
+ "type": "function"
294
+ },
295
+ {
296
+ "inputs": [],
297
+ "name": "getDomain",
298
+ "outputs": [
299
+ {
300
+ "internalType": "ObjectType",
301
+ "name": "",
302
+ "type": "uint8"
303
+ }
304
+ ],
305
+ "stateMutability": "pure",
306
+ "type": "function"
307
+ },
308
+ {
309
+ "inputs": [],
310
+ "name": "getInitialInfo",
311
+ "outputs": [
312
+ {
313
+ "components": [
314
+ {
315
+ "internalType": "NftId",
316
+ "name": "nftId",
317
+ "type": "uint96"
318
+ },
319
+ {
320
+ "internalType": "NftId",
321
+ "name": "parentNftId",
322
+ "type": "uint96"
323
+ },
324
+ {
325
+ "internalType": "ObjectType",
326
+ "name": "objectType",
327
+ "type": "uint8"
328
+ },
329
+ {
330
+ "internalType": "bool",
331
+ "name": "isInterceptor",
332
+ "type": "bool"
333
+ },
334
+ {
335
+ "internalType": "address",
336
+ "name": "objectAddress",
337
+ "type": "address"
338
+ },
339
+ {
340
+ "internalType": "address",
341
+ "name": "initialOwner",
342
+ "type": "address"
343
+ },
344
+ {
345
+ "internalType": "bytes",
346
+ "name": "data",
347
+ "type": "bytes"
348
+ }
349
+ ],
350
+ "internalType": "struct IRegistry.ObjectInfo",
351
+ "name": "info",
352
+ "type": "tuple"
353
+ }
354
+ ],
355
+ "stateMutability": "view",
356
+ "type": "function"
357
+ },
358
+ {
359
+ "inputs": [],
360
+ "name": "getInstanceService",
361
+ "outputs": [
362
+ {
363
+ "internalType": "contract InstanceService",
364
+ "name": "",
365
+ "type": "address"
366
+ }
367
+ ],
368
+ "stateMutability": "view",
369
+ "type": "function"
370
+ },
371
+ {
372
+ "inputs": [],
373
+ "name": "getNftId",
374
+ "outputs": [
375
+ {
376
+ "internalType": "NftId",
377
+ "name": "",
378
+ "type": "uint96"
379
+ }
380
+ ],
381
+ "stateMutability": "view",
382
+ "type": "function"
383
+ },
384
+ {
385
+ "inputs": [],
386
+ "name": "getOwner",
387
+ "outputs": [
388
+ {
389
+ "internalType": "address",
390
+ "name": "",
391
+ "type": "address"
392
+ }
393
+ ],
394
+ "stateMutability": "view",
395
+ "type": "function"
396
+ },
397
+ {
398
+ "inputs": [],
399
+ "name": "getRegistry",
400
+ "outputs": [
401
+ {
402
+ "internalType": "contract IRegistry",
403
+ "name": "",
404
+ "type": "address"
405
+ }
406
+ ],
407
+ "stateMutability": "view",
408
+ "type": "function"
409
+ },
410
+ {
411
+ "inputs": [],
412
+ "name": "getRegistryAddress",
413
+ "outputs": [
414
+ {
415
+ "internalType": "address",
416
+ "name": "",
417
+ "type": "address"
418
+ }
419
+ ],
420
+ "stateMutability": "view",
421
+ "type": "function"
422
+ },
423
+ {
424
+ "inputs": [],
425
+ "name": "getRegistryService",
426
+ "outputs": [
427
+ {
428
+ "internalType": "contract IRegistryService",
429
+ "name": "",
430
+ "type": "address"
431
+ }
432
+ ],
433
+ "stateMutability": "view",
434
+ "type": "function"
435
+ },
436
+ {
437
+ "inputs": [],
438
+ "name": "getVersion",
439
+ "outputs": [
440
+ {
441
+ "internalType": "Version",
442
+ "name": "",
443
+ "type": "uint24"
444
+ }
445
+ ],
446
+ "stateMutability": "pure",
447
+ "type": "function"
448
+ },
449
+ {
450
+ "inputs": [],
451
+ "name": "initializeERC165",
452
+ "outputs": [],
453
+ "stateMutability": "nonpayable",
454
+ "type": "function"
455
+ },
456
+ {
457
+ "inputs": [
458
+ {
459
+ "internalType": "address",
460
+ "name": "initialOwner",
461
+ "type": "address"
462
+ },
463
+ {
464
+ "internalType": "address",
465
+ "name": "registryAddress",
466
+ "type": "address"
467
+ }
468
+ ],
469
+ "name": "initializeNftOwnable",
470
+ "outputs": [],
471
+ "stateMutability": "nonpayable",
472
+ "type": "function"
473
+ },
474
+ {
475
+ "inputs": [
476
+ {
477
+ "internalType": "address",
478
+ "name": "registryAddress",
479
+ "type": "address"
480
+ },
481
+ {
482
+ "internalType": "NftId",
483
+ "name": "parentNftId",
484
+ "type": "uint96"
485
+ },
486
+ {
487
+ "internalType": "ObjectType",
488
+ "name": "objectType",
489
+ "type": "uint8"
490
+ },
491
+ {
492
+ "internalType": "bool",
493
+ "name": "isInterceptor",
494
+ "type": "bool"
495
+ },
496
+ {
497
+ "internalType": "address",
498
+ "name": "initialOwner",
499
+ "type": "address"
500
+ },
501
+ {
502
+ "internalType": "bytes",
503
+ "name": "registryData",
504
+ "type": "bytes"
505
+ }
506
+ ],
507
+ "name": "initializeRegisterable",
508
+ "outputs": [],
509
+ "stateMutability": "nonpayable",
510
+ "type": "function"
511
+ },
512
+ {
513
+ "inputs": [
514
+ {
515
+ "internalType": "address",
516
+ "name": "registryAddress",
517
+ "type": "address"
518
+ }
519
+ ],
520
+ "name": "initializeRegistryLinked",
521
+ "outputs": [],
522
+ "stateMutability": "nonpayable",
523
+ "type": "function"
524
+ },
525
+ {
526
+ "inputs": [
527
+ {
528
+ "internalType": "address",
529
+ "name": "registry",
530
+ "type": "address"
531
+ },
532
+ {
533
+ "internalType": "address",
534
+ "name": "authority",
535
+ "type": "address"
536
+ },
537
+ {
538
+ "internalType": "address",
539
+ "name": "initialOwner",
540
+ "type": "address"
541
+ }
542
+ ],
543
+ "name": "initializeService",
544
+ "outputs": [],
545
+ "stateMutability": "nonpayable",
546
+ "type": "function"
547
+ },
548
+ {
549
+ "inputs": [
550
+ {
551
+ "internalType": "address",
552
+ "name": "activatedBy",
553
+ "type": "address"
554
+ },
555
+ {
556
+ "internalType": "bytes",
557
+ "name": "data",
558
+ "type": "bytes"
559
+ }
560
+ ],
561
+ "name": "initializeVersionable",
562
+ "outputs": [],
563
+ "stateMutability": "nonpayable",
564
+ "type": "function"
565
+ },
566
+ {
567
+ "inputs": [],
568
+ "name": "isConsumingScheduledOp",
569
+ "outputs": [
570
+ {
571
+ "internalType": "bytes4",
572
+ "name": "",
573
+ "type": "bytes4"
574
+ }
575
+ ],
576
+ "stateMutability": "view",
577
+ "type": "function"
578
+ },
579
+ {
580
+ "inputs": [],
581
+ "name": "linkToRegisteredNftId",
582
+ "outputs": [],
583
+ "stateMutability": "nonpayable",
584
+ "type": "function"
585
+ },
586
+ {
587
+ "inputs": [
588
+ {
589
+ "internalType": "address",
590
+ "name": "productAddress",
591
+ "type": "address"
592
+ }
593
+ ],
594
+ "name": "register",
595
+ "outputs": [
596
+ {
597
+ "internalType": "NftId",
598
+ "name": "productNftId",
599
+ "type": "uint96"
600
+ }
601
+ ],
602
+ "stateMutability": "nonpayable",
603
+ "type": "function"
604
+ },
605
+ {
606
+ "inputs": [
607
+ {
608
+ "internalType": "bytes4",
609
+ "name": "interfaceId",
610
+ "type": "bytes4"
611
+ }
612
+ ],
613
+ "name": "registerInterface",
614
+ "outputs": [],
615
+ "stateMutability": "nonpayable",
616
+ "type": "function"
617
+ },
618
+ {
619
+ "inputs": [
620
+ {
621
+ "internalType": "address",
622
+ "name": "newAuthority",
623
+ "type": "address"
624
+ }
625
+ ],
626
+ "name": "setAuthority",
627
+ "outputs": [],
628
+ "stateMutability": "nonpayable",
629
+ "type": "function"
630
+ },
631
+ {
632
+ "inputs": [
633
+ {
634
+ "components": [
635
+ {
636
+ "internalType": "UFixed",
637
+ "name": "fractionalFee",
638
+ "type": "uint256"
639
+ },
640
+ {
641
+ "internalType": "uint256",
642
+ "name": "fixedFee",
643
+ "type": "uint256"
644
+ }
645
+ ],
646
+ "internalType": "struct Fee",
647
+ "name": "productFee",
648
+ "type": "tuple"
649
+ },
650
+ {
651
+ "components": [
652
+ {
653
+ "internalType": "UFixed",
654
+ "name": "fractionalFee",
655
+ "type": "uint256"
656
+ },
657
+ {
658
+ "internalType": "uint256",
659
+ "name": "fixedFee",
660
+ "type": "uint256"
661
+ }
662
+ ],
663
+ "internalType": "struct Fee",
664
+ "name": "processingFee",
665
+ "type": "tuple"
666
+ }
667
+ ],
668
+ "name": "setFees",
669
+ "outputs": [],
670
+ "stateMutability": "nonpayable",
671
+ "type": "function"
672
+ },
673
+ {
674
+ "inputs": [
675
+ {
676
+ "internalType": "bytes4",
677
+ "name": "interfaceId",
678
+ "type": "bytes4"
679
+ }
680
+ ],
681
+ "name": "supportsInterface",
682
+ "outputs": [
683
+ {
684
+ "internalType": "bool",
685
+ "name": "",
686
+ "type": "bool"
687
+ }
688
+ ],
689
+ "stateMutability": "view",
690
+ "type": "function"
691
+ },
692
+ {
693
+ "inputs": [
694
+ {
695
+ "internalType": "RiskId",
696
+ "name": "riskId",
697
+ "type": "bytes8"
698
+ },
699
+ {
700
+ "internalType": "bytes",
701
+ "name": "data",
702
+ "type": "bytes"
703
+ }
704
+ ],
705
+ "name": "updateRisk",
706
+ "outputs": [],
707
+ "stateMutability": "nonpayable",
708
+ "type": "function"
709
+ },
710
+ {
711
+ "inputs": [
712
+ {
713
+ "internalType": "RiskId",
714
+ "name": "riskId",
715
+ "type": "bytes8"
716
+ },
717
+ {
718
+ "internalType": "StateId",
719
+ "name": "state",
720
+ "type": "uint8"
721
+ }
722
+ ],
723
+ "name": "updateRiskState",
724
+ "outputs": [],
725
+ "stateMutability": "nonpayable",
726
+ "type": "function"
727
+ },
728
+ {
729
+ "inputs": [
730
+ {
731
+ "internalType": "bytes",
732
+ "name": "data",
733
+ "type": "bytes"
734
+ }
735
+ ],
736
+ "name": "upgradeVersionable",
737
+ "outputs": [],
738
+ "stateMutability": "nonpayable",
739
+ "type": "function"
740
+ }
741
+ ],
742
+ "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61347180620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063675393bf11610104578063ada9652e116100a2578063caf4e3d411610071578063caf4e3d414610438578063cc9fc59a14610440578063f21de1e814610318578063f7c34ee01461044857600080fd5b8063ada9652e146103e3578063b68d1809146103f8578063b6b412ba14610407578063bf7e214f1461041a57600080fd5b8063893d20e8116100de578063893d20e8146103945780638e32e9791461039c5780638f997f6d146103af5780638fb36037146103c257600080fd5b8063675393bf1461035b5780637a9e5e4b1461036e5780637cef48421461038157600080fd5b806327bb7a33116101715780634420e4861161014b5780634420e486146102da57806349bb9e4b146103055780635ab1bd5314610318578063644c45e01461033d57600080fd5b806327bb7a33146102ac578063329d6e74146102bf57806336fc697e146102d257600080fd5b80630fec111c116101ad5780630fec111c14610247578063138461e01461025c5780631eff4b2214610264578063214cdb801461029957600080fd5b806301ffc9a7146101d4578063095e2b72146102165780630d8e6e2c1461022b575b600080fd5b6102016101e236600461270f565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61022961022436600461288d565b61045b565b005b6102336104f5565b60405162ffffff909116815260200161020d565b61024f61057f565b60405161020d919061292a565b610229610733565b61028b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161020d565b6102296102a736600461270f565b61093a565b6102296102ba3660046129fc565b610967565b6102296102cd366004612a94565b6109f3565b610229610b40565b6102ed6102e8366004612ac8565b610b86565b6040516001600160601b03909116815260200161020d565b610229610313366004612ae5565b610c4b565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161020d565b6000805160206133dc833981519152546001600160601b03166102ed565b610229610369366004612ac8565b610d4a565b61022961037c366004612ac8565b610e58565b61022961038f366004612b03565b610ef2565b610325610f6b565b6102296103aa366004612b3a565b6110a2565b6102296103bd36600461288d565b6112db565b6103ca61143f565b6040516001600160e01b0319909116815260200161020d565b61028b6000805160206133dc83398151915281565b604051606e815260200161020d565b610229610415366004612bb5565b611477565b6000805160206133fc833981519152546001600160a01b0316610325565b6103256115e4565b6103256115f0565b610229610456366004612bea565b6115fc565b60008080610469606e611673565b6040805180820182526001600160601b03851681526020810189905290516317b0844560e11b81529396509194509250906001600160a01b03831690632f61088a906104bb9089908590600401612c40565b600060405180830381600087803b1580156104d557600080fd5b505af11580156104e9573d6000803e3d6000fd5b50505050505050505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610556573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057a9190612c65565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b9091041615159181019190915260018201805491929160608401919061062f90612c8a565b80601f016020809104026020016040519081016040528092919081815260200182805461065b90612c8a565b80156106a85780601f1061067d576101008083540402835291602001916106a8565b820191906000526020600020905b81548152906001019060200180831161068b57829003601f168201915b50505050508152505090506040518060e001604052806106c6600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610717610f6b565b6001600160a01b03168152602001826060015181525091505090565b60006000805160206133dc83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156107a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c69190612ccf565b156107f75780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061080a6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015610852573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108769190612ccf565b61089e5760405163b9304b0d60e01b81526001600160a01b03821660048201526024016107ee565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa1580156108f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109169190612cf7565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6109426118a3565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61096f6118a3565b61097982876115fc565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016109e98382612d62565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610a156104f5565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610a55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a799190612e36565b60008051602061341c8339815191528054600160401b900460ff1680610aac575080546001600160401b03808416911610155b15610aca5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610af4836118dc565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610b486118a3565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080808080610b9f86606e610b9a6118e4565b61195b565b92965090945092509050856000610bb46115e4565b604051635d96628960e01b81526001600160a01b03848116600483015287811660248301529190911690635d966289906044016000604051808303816000875af1158015610c06573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c2e9190810190612eb9565b805197509050610c3f848389611c4c565b50505050505050919050565b60008051602061341c8339815191528054600160401b810460ff1615906001600160401b0316600081158015610c7e5750825b90506000826001600160401b03166001148015610c9a5750303b155b905081158015610ca8575080155b15610cc65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610cf057845460ff60401b1916600160401b1785555b610cfa87876122a6565b8315610d4157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610d526118a3565b806001600160a01b03163b600003610d885760405163fdeac91f60e01b81526001600160a01b03821660048201526024016107ee565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610e02575060408051601f3d908101601f19168201909252610dff91810190612ccf565b60015b610e2a5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016107ee565b80610e535760405163fdeac91f60e01b81526001600160a01b03831660048201526024016107ee565b505b50565b33610e786000805160206133fc833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614610eb35760405162d1953b60e31b81526001600160a01b03821660048201526024016107ee565b816001600160a01b03163b600003610ee9576040516361798f2f60e11b81526001600160a01b03831660048201526024016107ee565b610e53826124e4565b6000610efe606e611673565b604051633e77a42160e11b81526001600160c01b03198716600482015260ff861660248201529093506001600160a01b0384169250637cef48429150604401600060405180830381600087803b158015610f5757600080fd5b505af1158015610d41573d6000803e3d6000fd5b6000806000805160206133dc83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610fdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fff9190612ccf565b1561108c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611062573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110869190612f8b565b91505090565b54600160601b90046001600160a01b0316919050565b6110aa6118a3565b61112a83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111109190612cf7565b603c60008560405180602001604052806000815250610967565b6001600160a01b038216156111475761114282612545565b6112b6565b600061115b6001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af41580156111bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111df9190612fa8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112489190612f8b565b90506112b4816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561128b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112af9190612f8b565b612545565b505b6112c6634a531f3360e01b61093a565b6112d663b68d180960e01b61093a565b505050565b60006112e7606e611673565b925050506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561132b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134f9190612f8b565b60405163887b1fa960e01b81526001600160c01b0319861660048201529091506000906001600160a01b0383169063887b1fa990602401600060405180830381865afa1580156113a3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113cb9190810190612fc5565b602081018590526040516314eddc0360e31b81529091506001600160a01b0384169063a76ee01890611406908890859060ff90600401613044565b600060405180830381600087803b15801561142057600080fd5b505af1158015611434573d6000803e3d6000fd5b505050505050505050565b6000805160206133fc833981519152805460009190600160a01b900460ff16611469576000611086565b638fb3603760e01b91505090565b60008080611485606e611673565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ef9190612f8b565b60405163242bdc1960e21b81526001600160601b03861660048201529091506000906001600160a01b038316906390af70649060240161014060405180830381865afa158015611543573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156791906130ac565b6080810188905260a08101879052604051630cbc6b8960e01b81529091506001600160a01b03841690630cbc6b89906115a9908890859060ff906004016131e8565b600060405180830381600087803b1580156115c357600080fd5b505af11580156115d7573d6000803e3d6000fd5b5050505050505050505050565b600061057a6028612556565b600061057a6046612556565b6116046118a3565b61160d81610d4a565b611615610b40565b6001600160a01b03821661163c5760405163f17ef42d60e01b815260040160405180910390fd5b506000805160206133dc83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201526000806116bf6001546001600160a01b031690565b6040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa158015611706573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261172e9190810190612eb9565b925061174483604001518660ff90811691161490565b6117865760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b60448201526064016107ee565b8260000151935061179a8360200151612669565b9150816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117fe9190612f8b565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015611848573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186c9190612ccf565b1561189b57608083015160405163d53987e560e01b81526001600160a01b0390911660048201526024016107ee565b509193909250565b60008051602061341c83398151915254600160401b900460ff166118da57604051631afcd79f60e31b815260040160405180910390fd5b565b6101cf6118a3565b6040516368aebf7b60e01b81526005600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057a9190612e36565b6040516301ffc9a760e01b81526396c8ab0560e01b60048201528390339060009081906001600160a01b038516906301ffc9a790602401602060405180830381865afa1580156119af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d39190612ccf565b6119fb576040516359bff0e360e11b81526001600160a01b03881660048201526024016107ee565b6000846001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611a3b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a639190810190612eb9565b9050611a7a81604001518860ff9081169116141590565b15611aba576040808201519051634a2e948760e11b81526001600160a01b038a16600482015260ff808a16602483015290911660448201526064016107ee565b60a08101516001600160a01b0385811690821614611b0c5760a0820151604051632b50a20960e21b81526001600160a01b03808c166004830152918216602482015290861660448201526064016107ee565b81602001519250611b1c83612669565b9350836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b809190612f8b565b6040516368fc2b7760e11b81526001600160401b03891660048201526001600160a01b038781166024830152919091169063d1f856ee90604401602060405180830381865afa158015611bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfb9190612ccf565b611c4157604051636af540d960e01b81526001600160601b03841660048201526001600160401b03881660248201526001600160a01b03861660448201526064016107ee565b505093509350935093565b60606000836001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161014060405180830381865afa158015611c8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb391906130ac565b90506000611cc96001546001600160a01b031690565b60408084015190516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611d1e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d469190810190612eb9565b6080015190506000611d606001546001600160a01b031690565b60608401516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611db5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ddd9190810190612eb9565b6080015160405163054cb8d160e31b81526001600160601b03871660048201529091506001600160a01b03831690632a65c68890602401600060405180830381600087803b158015611e2e57600080fd5b505af1158015611e42573d6000803e3d6000fd5b505060405163054cb8d160e31b81526001600160601b03881660048201526001600160a01b0384169250632a65c6889150602401600060405180830381600087803b158015611e9057600080fd5b505af1158015611ea4573d6000803e3d6000fd5b505060405163054cb8d160e31b81526001600160601b03881660048201526001600160a01b0389169250632a65c6889150602401600060405180830381600087803b158015611ef257600080fd5b505af1158015611f06573d6000803e3d6000fd5b50505050856001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611f4557600080fd5b505af1158015611f59573d6000803e3d6000fd5b50505050866001600160a01b031663fbc1a3a086886001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161014060405180830381865afa158015611fac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd091906130ac565b6040518363ffffffff1660e01b8152600401611fed929190613218565b600060405180830381600087803b15801561200757600080fd5b505af115801561201b573d6000803e3d6000fd5b50600092506001915061202b9050565b60405190808252806020026020018201604052801561205e57816020015b60608152602001906001900390816120495790505b5060408051600180825281830190925291925060208083019080368337019050508160008151811061209257612092613236565b602002602001018190525063b6b412ba60e01b816000815181106120b8576120b8613236565b60200260200101516000815181106120d2576120d2613236565b6001600160e01b031992909216602092830291909101909101526040805160018082528183019092526000918160200160208202803683370190505090506121186118e4565b8160008151811061212b5761212b613236565b60200260200101906001600160401b031690816001600160401b0316815250506121536115f0565b6001600160a01b0316636c6fbb286121736001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038d81166004830152919091169063d272ac1e90602401602060405180830381865afa1580156121bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121df9190612cf7565b8a8b6001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801561221e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612246919081019061324c565b86866040518663ffffffff1660e01b81526004016122689594939291906132d8565b600060405180830381600087803b15801561228257600080fd5b505af1158015612296573d6000803e3d6000fd5b5050505050505050509392505050565b60008051602061341c8339815191528054600160401b810460ff1615906001600160401b03166000811580156122d95750825b90506000826001600160401b031660011480156122f55750303b155b905081158015612303575080155b156123215760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561234b57845460ff60401b1916600160401b1785555b6000808780602001905181019061236291906133ac565b90925090506123738260008b6110a2565b6001546001600160a01b031663d39e6043608c61238e6104f5565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156123e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124079190612fa8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561244c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124709190612f8b565b600280546001600160a01b0319166001600160a01b03929092169190911790556124a06308bcea6160e01b61093a565b50508315610d4157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610d38565b6000805160206133fc83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61254d6118a3565b610e55816126fe565b600061256a6001546001600160a01b031690565b6001600160a01b031663d39e6043836125816104f5565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156125d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125fa9190612fa8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561263f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126639190612f8b565b92915050565b600061267d6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156126cc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526126f49190810190612eb9565b6080015192915050565b6127066118a3565b610e55816124e4565b60006020828403121561272157600080fd5b81356001600160e01b03198116811461273957600080fd5b9392505050565b80356001600160c01b03198116811461275857600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156127955761279561275d565b60405290565b60405160e081016001600160401b03811182821017156127955761279561275d565b60405161010081016001600160401b03811182821017156127955761279561275d565b604051601f8201601f191681016001600160401b03811182821017156128085761280861275d565b604052919050565b60006001600160401b038211156128295761282961275d565b50601f01601f191660200190565b600082601f83011261284857600080fd5b813561285b61285682612810565b6127e0565b81815284602083860101111561287057600080fd5b816020850160208301376000918101602001919091529392505050565b600080604083850312156128a057600080fd5b6128a983612740565b915060208301356001600160401b038111156128c457600080fd5b6128d085828601612837565b9150509250929050565b60005b838110156128f55781810151838201526020016128dd565b50506000910152565b600081518084526129168160208601602086016128da565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161299360c08401826001600160a01b03169052565b5060c083015160e0808401526129ad6101008401826128fe565b949350505050565b6001600160a01b0381168114610e5557600080fd5b6001600160601b0381168114610e5557600080fd5b60ff81168114610e5557600080fd5b8015158114610e5557600080fd5b60008060008060008060c08789031215612a1557600080fd5b8635612a20816129b5565b95506020870135612a30816129ca565b94506040870135612a40816129df565b93506060870135612a50816129ee565b92506080870135612a60816129b5565b915060a08701356001600160401b03811115612a7b57600080fd5b612a8789828a01612837565b9150509295509295509295565b600060208284031215612aa657600080fd5b81356001600160401b03811115612abc57600080fd5b6129ad84828501612837565b600060208284031215612ada57600080fd5b8135612739816129b5565b60008060408385031215612af857600080fd5b82356128a9816129b5565b60008060408385031215612b1657600080fd5b612b1f83612740565b91506020830135612b2f816129df565b809150509250929050565b600080600060608486031215612b4f57600080fd5b8335612b5a816129b5565b92506020840135612b6a816129b5565b91506040840135612b7a816129b5565b809150509250925092565b600060408284031215612b9757600080fd5b612b9f612773565b9050813581526020820135602082015292915050565b60008060808385031215612bc857600080fd5b612bd28484612b85565b9150612be18460408501612b85565b90509250929050565b60008060408385031215612bfd57600080fd5b8235612c08816129b5565b91506020830135612b2f816129b5565b6001600160601b03815116825260006020820151604060208501526129ad60408501826128fe565b6001600160401b0360c01b831681526040602082015260006129ad6040830184612c18565b600060208284031215612c7757600080fd5b815162ffffff8116811461273957600080fd5b600181811c90821680612c9e57607f821691505b602082108103612cbe57634e487b7160e01b600052602260045260246000fd5b50919050565b8051612758816129ee565b600060208284031215612ce157600080fd5b8151612739816129ee565b8051612758816129ca565b600060208284031215612d0957600080fd5b8151612739816129ca565b601f8211156112d657600081815260208120601f850160051c81016020861015612d3b5750805b601f850160051c820191505b81811015612d5a57828155600101612d47565b505050505050565b81516001600160401b03811115612d7b57612d7b61275d565b612d8f81612d898454612c8a565b84612d14565b602080601f831160018114612dc45760008415612dac5750858301515b600019600386901b1c1916600185901b178555612d5a565b600085815260208120601f198616915b82811015612df357888601518255948401946001909101908401612dd4565b5085821015612e115787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b0381168114610e5557600080fd5b600060208284031215612e4857600080fd5b815161273981612e21565b8051612758816129df565b8051612758816129b5565b6000612e7761285684612810565b9050828152838383011115612e8b57600080fd5b6127398360208301846128da565b600082601f830112612eaa57600080fd5b61273983835160208501612e69565b600060208284031215612ecb57600080fd5b81516001600160401b0380821115612ee257600080fd5b9083019060e08286031215612ef657600080fd5b612efe61279b565b612f0783612cec565b8152612f1560208401612cec565b6020820152612f2660408401612e53565b6040820152612f3760608401612cc4565b6060820152612f4860808401612e5e565b6080820152612f5960a08401612e5e565b60a082015260c083015182811115612f7057600080fd5b612f7c87828601612e99565b60c08301525095945050505050565b600060208284031215612f9d57600080fd5b8151612739816129b5565b600060208284031215612fba57600080fd5b8151612739816129df565b600060208284031215612fd757600080fd5b81516001600160401b0380821115612fee57600080fd5b908301906040828603121561300257600080fd5b61300a612773565b8251613015816129ca565b815260208301518281111561302957600080fd5b61303587828601612e99565b60208301525095945050505050565b6001600160401b0360c01b841681526060602082015260006130696060830185612c18565b905060ff83166040830152949350505050565b60006040828403121561308e57600080fd5b613096612773565b9050815181526020820151602082015292915050565b600061014082840312156130bf57600080fd5b6130c76127bd565b6130d083612e5e565b81526130de60208401612e5e565b60208201526130ef60408401612cec565b604082015261310060608401612cec565b6060820152613112846080850161307c565b60808201526131248460c0850161307c565b60a08201526131366101008401612cc4565b60c08201526131486101208401612e5e565b60e08201529392505050565b60018060a01b038082511683528060208301511660208401525060408101516001600160601b038082166040850152806060840151166060850152505060808101516131ad608084018280518252602090810151910152565b5060a0810151805160c0840152602081015160e08401525060c0810151151561010083015260e001516001600160a01b031661012090910152565b6001600160601b038416815261018081016132066020830185613154565b60ff8316610160830152949350505050565b6001600160601b038316815261016081016127396020830184613154565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561325e57600080fd5b81516001600160401b0381111561327457600080fd5b8201601f8101841361328557600080fd5b6129ad84825160208401612e69565b600081518084526020808501945080840160005b838110156132cd5781516001600160401b0316875295820195908201906001016132a8565b509495945050505050565b6001600160601b03861681526000602060018060a01b0387168184015260a0604084015261330960a08401876128fe565b8381036060850152855180825282820190600581901b830184018489016000805b8481101561338757868403601f19018652825180518086529089019089860190845b818110156133725783516001600160e01b0319168352928b0192918b019160010161334c565b5050968901969450509187019160010161332a565b505050868103608088015261339c8189613294565b9c9b505050505050505050505050565b600080604083850312156133bf57600080fd5b82516133ca816129b5565b6020840151909250612b2f816129b556fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220d5d54eb3c16752780db0811dc18659dc03dd648283b74cee25e53f68126e517464736f6c63430008140033",
743
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063675393bf11610104578063ada9652e116100a2578063caf4e3d411610071578063caf4e3d414610438578063cc9fc59a14610440578063f21de1e814610318578063f7c34ee01461044857600080fd5b8063ada9652e146103e3578063b68d1809146103f8578063b6b412ba14610407578063bf7e214f1461041a57600080fd5b8063893d20e8116100de578063893d20e8146103945780638e32e9791461039c5780638f997f6d146103af5780638fb36037146103c257600080fd5b8063675393bf1461035b5780637a9e5e4b1461036e5780637cef48421461038157600080fd5b806327bb7a33116101715780634420e4861161014b5780634420e486146102da57806349bb9e4b146103055780635ab1bd5314610318578063644c45e01461033d57600080fd5b806327bb7a33146102ac578063329d6e74146102bf57806336fc697e146102d257600080fd5b80630fec111c116101ad5780630fec111c14610247578063138461e01461025c5780631eff4b2214610264578063214cdb801461029957600080fd5b806301ffc9a7146101d4578063095e2b72146102165780630d8e6e2c1461022b575b600080fd5b6102016101e236600461270f565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61022961022436600461288d565b61045b565b005b6102336104f5565b60405162ffffff909116815260200161020d565b61024f61057f565b60405161020d919061292a565b610229610733565b61028b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161020d565b6102296102a736600461270f565b61093a565b6102296102ba3660046129fc565b610967565b6102296102cd366004612a94565b6109f3565b610229610b40565b6102ed6102e8366004612ac8565b610b86565b6040516001600160601b03909116815260200161020d565b610229610313366004612ae5565b610c4b565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161020d565b6000805160206133dc833981519152546001600160601b03166102ed565b610229610369366004612ac8565b610d4a565b61022961037c366004612ac8565b610e58565b61022961038f366004612b03565b610ef2565b610325610f6b565b6102296103aa366004612b3a565b6110a2565b6102296103bd36600461288d565b6112db565b6103ca61143f565b6040516001600160e01b0319909116815260200161020d565b61028b6000805160206133dc83398151915281565b604051606e815260200161020d565b610229610415366004612bb5565b611477565b6000805160206133fc833981519152546001600160a01b0316610325565b6103256115e4565b6103256115f0565b610229610456366004612bea565b6115fc565b60008080610469606e611673565b6040805180820182526001600160601b03851681526020810189905290516317b0844560e11b81529396509194509250906001600160a01b03831690632f61088a906104bb9089908590600401612c40565b600060405180830381600087803b1580156104d557600080fd5b505af11580156104e9573d6000803e3d6000fd5b50505050505050505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610556573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057a9190612c65565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b9091041615159181019190915260018201805491929160608401919061062f90612c8a565b80601f016020809104026020016040519081016040528092919081815260200182805461065b90612c8a565b80156106a85780601f1061067d576101008083540402835291602001916106a8565b820191906000526020600020905b81548152906001019060200180831161068b57829003601f168201915b50505050508152505090506040518060e001604052806106c6600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610717610f6b565b6001600160a01b03168152602001826060015181525091505090565b60006000805160206133dc83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156107a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c69190612ccf565b156107f75780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061080a6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015610852573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108769190612ccf565b61089e5760405163b9304b0d60e01b81526001600160a01b03821660048201526024016107ee565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa1580156108f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109169190612cf7565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6109426118a3565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61096f6118a3565b61097982876115fc565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016109e98382612d62565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610a156104f5565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610a55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a799190612e36565b60008051602061341c8339815191528054600160401b900460ff1680610aac575080546001600160401b03808416911610155b15610aca5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610af4836118dc565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610b486118a3565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080808080610b9f86606e610b9a6118e4565b61195b565b92965090945092509050856000610bb46115e4565b604051635d96628960e01b81526001600160a01b03848116600483015287811660248301529190911690635d966289906044016000604051808303816000875af1158015610c06573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c2e9190810190612eb9565b805197509050610c3f848389611c4c565b50505050505050919050565b60008051602061341c8339815191528054600160401b810460ff1615906001600160401b0316600081158015610c7e5750825b90506000826001600160401b03166001148015610c9a5750303b155b905081158015610ca8575080155b15610cc65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610cf057845460ff60401b1916600160401b1785555b610cfa87876122a6565b8315610d4157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610d526118a3565b806001600160a01b03163b600003610d885760405163fdeac91f60e01b81526001600160a01b03821660048201526024016107ee565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610e02575060408051601f3d908101601f19168201909252610dff91810190612ccf565b60015b610e2a5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016107ee565b80610e535760405163fdeac91f60e01b81526001600160a01b03831660048201526024016107ee565b505b50565b33610e786000805160206133fc833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614610eb35760405162d1953b60e31b81526001600160a01b03821660048201526024016107ee565b816001600160a01b03163b600003610ee9576040516361798f2f60e11b81526001600160a01b03831660048201526024016107ee565b610e53826124e4565b6000610efe606e611673565b604051633e77a42160e11b81526001600160c01b03198716600482015260ff861660248201529093506001600160a01b0384169250637cef48429150604401600060405180830381600087803b158015610f5757600080fd5b505af1158015610d41573d6000803e3d6000fd5b6000806000805160206133dc83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610fdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fff9190612ccf565b1561108c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611062573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110869190612f8b565b91505090565b54600160601b90046001600160a01b0316919050565b6110aa6118a3565b61112a83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111109190612cf7565b603c60008560405180602001604052806000815250610967565b6001600160a01b038216156111475761114282612545565b6112b6565b600061115b6001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af41580156111bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111df9190612fa8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112489190612f8b565b90506112b4816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561128b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112af9190612f8b565b612545565b505b6112c6634a531f3360e01b61093a565b6112d663b68d180960e01b61093a565b505050565b60006112e7606e611673565b925050506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561132b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134f9190612f8b565b60405163887b1fa960e01b81526001600160c01b0319861660048201529091506000906001600160a01b0383169063887b1fa990602401600060405180830381865afa1580156113a3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113cb9190810190612fc5565b602081018590526040516314eddc0360e31b81529091506001600160a01b0384169063a76ee01890611406908890859060ff90600401613044565b600060405180830381600087803b15801561142057600080fd5b505af1158015611434573d6000803e3d6000fd5b505050505050505050565b6000805160206133fc833981519152805460009190600160a01b900460ff16611469576000611086565b638fb3603760e01b91505090565b60008080611485606e611673565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ef9190612f8b565b60405163242bdc1960e21b81526001600160601b03861660048201529091506000906001600160a01b038316906390af70649060240161014060405180830381865afa158015611543573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156791906130ac565b6080810188905260a08101879052604051630cbc6b8960e01b81529091506001600160a01b03841690630cbc6b89906115a9908890859060ff906004016131e8565b600060405180830381600087803b1580156115c357600080fd5b505af11580156115d7573d6000803e3d6000fd5b5050505050505050505050565b600061057a6028612556565b600061057a6046612556565b6116046118a3565b61160d81610d4a565b611615610b40565b6001600160a01b03821661163c5760405163f17ef42d60e01b815260040160405180910390fd5b506000805160206133dc83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201526000806116bf6001546001600160a01b031690565b6040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa158015611706573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261172e9190810190612eb9565b925061174483604001518660ff90811691161490565b6117865760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b60448201526064016107ee565b8260000151935061179a8360200151612669565b9150816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117fe9190612f8b565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015611848573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186c9190612ccf565b1561189b57608083015160405163d53987e560e01b81526001600160a01b0390911660048201526024016107ee565b509193909250565b60008051602061341c83398151915254600160401b900460ff166118da57604051631afcd79f60e31b815260040160405180910390fd5b565b6101cf6118a3565b6040516368aebf7b60e01b81526005600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057a9190612e36565b6040516301ffc9a760e01b81526396c8ab0560e01b60048201528390339060009081906001600160a01b038516906301ffc9a790602401602060405180830381865afa1580156119af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d39190612ccf565b6119fb576040516359bff0e360e11b81526001600160a01b03881660048201526024016107ee565b6000846001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611a3b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a639190810190612eb9565b9050611a7a81604001518860ff9081169116141590565b15611aba576040808201519051634a2e948760e11b81526001600160a01b038a16600482015260ff808a16602483015290911660448201526064016107ee565b60a08101516001600160a01b0385811690821614611b0c5760a0820151604051632b50a20960e21b81526001600160a01b03808c166004830152918216602482015290861660448201526064016107ee565b81602001519250611b1c83612669565b9350836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b809190612f8b565b6040516368fc2b7760e11b81526001600160401b03891660048201526001600160a01b038781166024830152919091169063d1f856ee90604401602060405180830381865afa158015611bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfb9190612ccf565b611c4157604051636af540d960e01b81526001600160601b03841660048201526001600160401b03881660248201526001600160a01b03861660448201526064016107ee565b505093509350935093565b60606000836001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161014060405180830381865afa158015611c8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb391906130ac565b90506000611cc96001546001600160a01b031690565b60408084015190516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611d1e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d469190810190612eb9565b6080015190506000611d606001546001600160a01b031690565b60608401516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611db5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ddd9190810190612eb9565b6080015160405163054cb8d160e31b81526001600160601b03871660048201529091506001600160a01b03831690632a65c68890602401600060405180830381600087803b158015611e2e57600080fd5b505af1158015611e42573d6000803e3d6000fd5b505060405163054cb8d160e31b81526001600160601b03881660048201526001600160a01b0384169250632a65c6889150602401600060405180830381600087803b158015611e9057600080fd5b505af1158015611ea4573d6000803e3d6000fd5b505060405163054cb8d160e31b81526001600160601b03881660048201526001600160a01b0389169250632a65c6889150602401600060405180830381600087803b158015611ef257600080fd5b505af1158015611f06573d6000803e3d6000fd5b50505050856001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611f4557600080fd5b505af1158015611f59573d6000803e3d6000fd5b50505050866001600160a01b031663fbc1a3a086886001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161014060405180830381865afa158015611fac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd091906130ac565b6040518363ffffffff1660e01b8152600401611fed929190613218565b600060405180830381600087803b15801561200757600080fd5b505af115801561201b573d6000803e3d6000fd5b50600092506001915061202b9050565b60405190808252806020026020018201604052801561205e57816020015b60608152602001906001900390816120495790505b5060408051600180825281830190925291925060208083019080368337019050508160008151811061209257612092613236565b602002602001018190525063b6b412ba60e01b816000815181106120b8576120b8613236565b60200260200101516000815181106120d2576120d2613236565b6001600160e01b031992909216602092830291909101909101526040805160018082528183019092526000918160200160208202803683370190505090506121186118e4565b8160008151811061212b5761212b613236565b60200260200101906001600160401b031690816001600160401b0316815250506121536115f0565b6001600160a01b0316636c6fbb286121736001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038d81166004830152919091169063d272ac1e90602401602060405180830381865afa1580156121bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121df9190612cf7565b8a8b6001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801561221e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612246919081019061324c565b86866040518663ffffffff1660e01b81526004016122689594939291906132d8565b600060405180830381600087803b15801561228257600080fd5b505af1158015612296573d6000803e3d6000fd5b5050505050505050509392505050565b60008051602061341c8339815191528054600160401b810460ff1615906001600160401b03166000811580156122d95750825b90506000826001600160401b031660011480156122f55750303b155b905081158015612303575080155b156123215760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561234b57845460ff60401b1916600160401b1785555b6000808780602001905181019061236291906133ac565b90925090506123738260008b6110a2565b6001546001600160a01b031663d39e6043608c61238e6104f5565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156123e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124079190612fa8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561244c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124709190612f8b565b600280546001600160a01b0319166001600160a01b03929092169190911790556124a06308bcea6160e01b61093a565b50508315610d4157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610d38565b6000805160206133fc83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61254d6118a3565b610e55816126fe565b600061256a6001546001600160a01b031690565b6001600160a01b031663d39e6043836125816104f5565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156125d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125fa9190612fa8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561263f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126639190612f8b565b92915050565b600061267d6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156126cc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526126f49190810190612eb9565b6080015192915050565b6127066118a3565b610e55816124e4565b60006020828403121561272157600080fd5b81356001600160e01b03198116811461273957600080fd5b9392505050565b80356001600160c01b03198116811461275857600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156127955761279561275d565b60405290565b60405160e081016001600160401b03811182821017156127955761279561275d565b60405161010081016001600160401b03811182821017156127955761279561275d565b604051601f8201601f191681016001600160401b03811182821017156128085761280861275d565b604052919050565b60006001600160401b038211156128295761282961275d565b50601f01601f191660200190565b600082601f83011261284857600080fd5b813561285b61285682612810565b6127e0565b81815284602083860101111561287057600080fd5b816020850160208301376000918101602001919091529392505050565b600080604083850312156128a057600080fd5b6128a983612740565b915060208301356001600160401b038111156128c457600080fd5b6128d085828601612837565b9150509250929050565b60005b838110156128f55781810151838201526020016128dd565b50506000910152565b600081518084526129168160208601602086016128da565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161299360c08401826001600160a01b03169052565b5060c083015160e0808401526129ad6101008401826128fe565b949350505050565b6001600160a01b0381168114610e5557600080fd5b6001600160601b0381168114610e5557600080fd5b60ff81168114610e5557600080fd5b8015158114610e5557600080fd5b60008060008060008060c08789031215612a1557600080fd5b8635612a20816129b5565b95506020870135612a30816129ca565b94506040870135612a40816129df565b93506060870135612a50816129ee565b92506080870135612a60816129b5565b915060a08701356001600160401b03811115612a7b57600080fd5b612a8789828a01612837565b9150509295509295509295565b600060208284031215612aa657600080fd5b81356001600160401b03811115612abc57600080fd5b6129ad84828501612837565b600060208284031215612ada57600080fd5b8135612739816129b5565b60008060408385031215612af857600080fd5b82356128a9816129b5565b60008060408385031215612b1657600080fd5b612b1f83612740565b91506020830135612b2f816129df565b809150509250929050565b600080600060608486031215612b4f57600080fd5b8335612b5a816129b5565b92506020840135612b6a816129b5565b91506040840135612b7a816129b5565b809150509250925092565b600060408284031215612b9757600080fd5b612b9f612773565b9050813581526020820135602082015292915050565b60008060808385031215612bc857600080fd5b612bd28484612b85565b9150612be18460408501612b85565b90509250929050565b60008060408385031215612bfd57600080fd5b8235612c08816129b5565b91506020830135612b2f816129b5565b6001600160601b03815116825260006020820151604060208501526129ad60408501826128fe565b6001600160401b0360c01b831681526040602082015260006129ad6040830184612c18565b600060208284031215612c7757600080fd5b815162ffffff8116811461273957600080fd5b600181811c90821680612c9e57607f821691505b602082108103612cbe57634e487b7160e01b600052602260045260246000fd5b50919050565b8051612758816129ee565b600060208284031215612ce157600080fd5b8151612739816129ee565b8051612758816129ca565b600060208284031215612d0957600080fd5b8151612739816129ca565b601f8211156112d657600081815260208120601f850160051c81016020861015612d3b5750805b601f850160051c820191505b81811015612d5a57828155600101612d47565b505050505050565b81516001600160401b03811115612d7b57612d7b61275d565b612d8f81612d898454612c8a565b84612d14565b602080601f831160018114612dc45760008415612dac5750858301515b600019600386901b1c1916600185901b178555612d5a565b600085815260208120601f198616915b82811015612df357888601518255948401946001909101908401612dd4565b5085821015612e115787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b0381168114610e5557600080fd5b600060208284031215612e4857600080fd5b815161273981612e21565b8051612758816129df565b8051612758816129b5565b6000612e7761285684612810565b9050828152838383011115612e8b57600080fd5b6127398360208301846128da565b600082601f830112612eaa57600080fd5b61273983835160208501612e69565b600060208284031215612ecb57600080fd5b81516001600160401b0380821115612ee257600080fd5b9083019060e08286031215612ef657600080fd5b612efe61279b565b612f0783612cec565b8152612f1560208401612cec565b6020820152612f2660408401612e53565b6040820152612f3760608401612cc4565b6060820152612f4860808401612e5e565b6080820152612f5960a08401612e5e565b60a082015260c083015182811115612f7057600080fd5b612f7c87828601612e99565b60c08301525095945050505050565b600060208284031215612f9d57600080fd5b8151612739816129b5565b600060208284031215612fba57600080fd5b8151612739816129df565b600060208284031215612fd757600080fd5b81516001600160401b0380821115612fee57600080fd5b908301906040828603121561300257600080fd5b61300a612773565b8251613015816129ca565b815260208301518281111561302957600080fd5b61303587828601612e99565b60208301525095945050505050565b6001600160401b0360c01b841681526060602082015260006130696060830185612c18565b905060ff83166040830152949350505050565b60006040828403121561308e57600080fd5b613096612773565b9050815181526020820151602082015292915050565b600061014082840312156130bf57600080fd5b6130c76127bd565b6130d083612e5e565b81526130de60208401612e5e565b60208201526130ef60408401612cec565b604082015261310060608401612cec565b6060820152613112846080850161307c565b60808201526131248460c0850161307c565b60a08201526131366101008401612cc4565b60c08201526131486101208401612e5e565b60e08201529392505050565b60018060a01b038082511683528060208301511660208401525060408101516001600160601b038082166040850152806060840151166060850152505060808101516131ad608084018280518252602090810151910152565b5060a0810151805160c0840152602081015160e08401525060c0810151151561010083015260e001516001600160a01b031661012090910152565b6001600160601b038416815261018081016132066020830185613154565b60ff8316610160830152949350505050565b6001600160601b038316815261016081016127396020830184613154565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561325e57600080fd5b81516001600160401b0381111561327457600080fd5b8201601f8101841361328557600080fd5b6129ad84825160208401612e69565b600081518084526020808501945080840160005b838110156132cd5781516001600160401b0316875295820195908201906001016132a8565b509495945050505050565b6001600160601b03861681526000602060018060a01b0387168184015260a0604084015261330960a08401876128fe565b8381036060850152855180825282820190600581901b830184018489016000805b8481101561338757868403601f19018652825180518086529089019089860190845b818110156133725783516001600160e01b0319168352928b0192918b019160010161334c565b5050968901969450509187019160010161332a565b505050868103608088015261339c8189613294565b9c9b505050505050505050505050565b600080604083850312156133bf57600080fd5b82516133ca816129b5565b6020840151909250612b2f816129b556fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220d5d54eb3c16752780db0811dc18659dc03dd648283b74cee25e53f68126e517464736f6c63430008140033",
744
+ "linkReferences": {
745
+ "contracts/types/NftId.sol": {
746
+ "NftIdLib": [
747
+ {
748
+ "length": 20,
749
+ "start": 2126
750
+ },
751
+ {
752
+ "length": 20,
753
+ "start": 4231
754
+ }
755
+ ]
756
+ },
757
+ "contracts/types/RoleId.sol": {
758
+ "RoleIdLib": [
759
+ {
760
+ "length": 20,
761
+ "start": 6627
762
+ }
763
+ ]
764
+ },
765
+ "contracts/types/Version.sol": {
766
+ "VersionLib": [
767
+ {
768
+ "length": 20,
769
+ "start": 1538
770
+ },
771
+ {
772
+ "length": 20,
773
+ "start": 2779
774
+ },
775
+ {
776
+ "length": 20,
777
+ "start": 9359
778
+ },
779
+ {
780
+ "length": 20,
781
+ "start": 9858
782
+ }
783
+ ],
784
+ "VersionPartLib": [
785
+ {
786
+ "length": 20,
787
+ "start": 4711
788
+ }
789
+ ]
790
+ }
791
+ },
792
+ "deployedLinkReferences": {
793
+ "contracts/types/NftId.sol": {
794
+ "NftIdLib": [
795
+ {
796
+ "length": 20,
797
+ "start": 1896
798
+ },
799
+ {
800
+ "length": 20,
801
+ "start": 4001
802
+ }
803
+ ]
804
+ },
805
+ "contracts/types/RoleId.sol": {
806
+ "RoleIdLib": [
807
+ {
808
+ "length": 20,
809
+ "start": 6397
810
+ }
811
+ ]
812
+ },
813
+ "contracts/types/Version.sol": {
814
+ "VersionLib": [
815
+ {
816
+ "length": 20,
817
+ "start": 1308
818
+ },
819
+ {
820
+ "length": 20,
821
+ "start": 2549
822
+ },
823
+ {
824
+ "length": 20,
825
+ "start": 9129
826
+ },
827
+ {
828
+ "length": 20,
829
+ "start": 9628
830
+ }
831
+ ],
832
+ "VersionPartLib": [
833
+ {
834
+ "length": 20,
835
+ "start": 4481
836
+ }
837
+ ]
838
+ }
839
+ }
840
+ }