@etherisc/gif-next 0.0.2-a93582e-396 → 0.0.2-a996a07-088

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (586) hide show
  1. package/README.md +338 -19
  2. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  3. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1416 -0
  4. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  5. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1445 -0
  6. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  7. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +866 -0
  8. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +975 -0
  10. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  11. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +814 -0
  12. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  13. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +709 -0
  14. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  15. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +331 -1138
  16. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  17. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +650 -0
  18. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  19. package/artifacts/contracts/instance/Instance.sol/Instance.json +496 -1193
  20. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  21. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
  22. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
  23. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +316 -0
  24. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  25. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1765 -0
  26. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  27. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1101 -0
  28. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  29. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +758 -0
  30. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  31. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3678 -0
  32. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  33. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  34. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  35. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  36. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  37. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  38. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  39. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +187 -0
  40. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  41. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
  42. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  43. package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
  44. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  45. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
  46. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  47. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
  48. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  49. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  50. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  51. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
  52. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  53. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  54. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  55. package/artifacts/contracts/{instance/treasury/ITreasury.sol/ITreasury.json → oracle/IOracle.sol/IOracle.json} +2 -2
  56. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  57. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +759 -0
  58. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  59. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +662 -0
  60. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  61. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1146 -0
  62. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  63. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1077 -0
  64. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  65. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +758 -0
  66. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  67. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1193 -0
  68. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  69. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +790 -0
  70. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  71. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +690 -0
  72. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  73. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1154 -0
  74. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  75. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1065 -0
  76. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  77. package/artifacts/contracts/pool/Pool.sol/Pool.json +1565 -0
  78. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  79. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1528 -0
  80. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  81. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +786 -0
  82. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  83. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +938 -0
  84. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  85. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +774 -0
  86. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  87. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1366 -0
  88. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  89. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +854 -0
  90. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  91. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +499 -0
  92. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  93. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +759 -0
  94. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  95. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +707 -0
  96. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  97. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +536 -0
  98. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  99. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +995 -0
  100. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
  101. package/artifacts/contracts/product/IProductService.sol/IProductService.json +387 -0
  102. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  103. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1266 -0
  104. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  105. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +814 -0
  106. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  107. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1071 -0
  108. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  109. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +822 -0
  110. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  111. package/artifacts/contracts/product/Product.sol/Product.json +1397 -0
  112. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
  113. package/artifacts/contracts/product/ProductService.sol/ProductService.json +767 -0
  114. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  115. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +738 -0
  116. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  117. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
  118. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +744 -26
  120. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  121. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1110 -0
  122. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  123. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  124. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  125. package/artifacts/contracts/registry/Registry.sol/Registry.json +1200 -106
  126. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  127. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1627 -0
  128. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  129. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1519 -0
  130. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  131. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +761 -0
  132. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  133. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1348 -0
  134. package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +4 -0
  135. package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +249 -0
  136. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  137. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
  138. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  139. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.json +1492 -0
  140. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
  141. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
  142. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
  143. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1747 -0
  144. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
  145. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1760 -0
  146. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
  147. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1838 -0
  148. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
  149. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1856 -0
  150. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  151. package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
  152. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  153. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1578 -0
  154. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  155. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +836 -0
  156. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  157. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +526 -0
  158. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  159. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
  160. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  161. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.json +1126 -0
  162. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
  163. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
  164. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
  165. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
  166. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  167. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
  168. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  169. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +867 -0
  170. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  171. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
  172. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  173. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +468 -0
  174. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  175. package/artifacts/contracts/{instance/lifecycle/ILifecycle.sol/ILifecycleModule.json → shared/ILifecycle.sol/ILifecycle.json} +10 -77
  176. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  177. package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +42 -77
  178. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  179. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
  180. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  181. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +181 -0
  182. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  183. package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +11 -11
  184. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  185. package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → shared/IService.sol/IService.json} +168 -134
  186. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  187. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
  188. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  189. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  190. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  191. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
  192. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  193. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +635 -0
  194. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  195. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +258 -0
  196. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
  197. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
  198. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  199. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
  200. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  201. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
  202. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  203. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
  204. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  205. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +353 -0
  206. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  207. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  208. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  209. package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +260 -218
  210. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  211. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
  212. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  213. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  214. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  215. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
  216. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  217. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  218. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  219. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +993 -0
  220. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  221. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +444 -0
  222. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  223. package/artifacts/contracts/staking/Staking.sol/Staking.json +2061 -0
  224. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  225. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +785 -0
  226. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  227. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +616 -0
  228. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  229. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1388 -0
  230. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  231. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +758 -0
  232. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  233. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2261 -0
  234. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  235. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +619 -0
  236. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  237. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  238. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  239. package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
  240. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  241. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  242. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  243. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +195 -0
  244. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  245. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +120 -0
  246. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  247. package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
  248. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  249. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  250. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  251. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  252. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  253. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  254. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  255. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +148 -0
  256. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  257. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +225 -0
  258. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  259. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +158 -0
  260. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  261. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +220 -0
  262. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  263. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +102 -0
  264. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  265. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +191 -0
  266. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  267. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
  268. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  269. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  270. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  271. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  272. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  273. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +92 -0
  274. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  275. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  276. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  277. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
  278. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  279. package/artifacts/contracts/type/UFixed.sol/MathLib.json +10 -0
  280. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  281. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +479 -0
  282. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  283. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  284. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  285. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
  286. package/contracts/distribution/Distribution.sol +261 -0
  287. package/contracts/distribution/DistributionService.sol +298 -0
  288. package/contracts/distribution/DistributionServiceManager.sol +42 -0
  289. package/contracts/distribution/IDistributionComponent.sol +66 -0
  290. package/contracts/distribution/IDistributionService.sol +81 -0
  291. package/contracts/instance/BundleManager.sol +126 -0
  292. package/contracts/instance/IInstance.sol +79 -22
  293. package/contracts/instance/IInstanceService.sol +81 -0
  294. package/contracts/instance/Instance.sol +217 -53
  295. package/contracts/instance/InstanceAdmin.sol +331 -0
  296. package/contracts/instance/InstanceAuthorizationsLib.sol +377 -0
  297. package/contracts/instance/InstanceReader.sol +392 -0
  298. package/contracts/instance/InstanceService.sol +362 -0
  299. package/contracts/instance/InstanceServiceManager.sol +44 -0
  300. package/contracts/instance/InstanceStore.sol +269 -0
  301. package/contracts/instance/base/BalanceStore.sol +123 -0
  302. package/contracts/instance/base/Cloneable.sol +28 -0
  303. package/contracts/instance/base/ObjectCounter.sol +21 -0
  304. package/contracts/instance/base/ObjectManager.sol +80 -0
  305. package/contracts/instance/module/IAccess.sol +46 -0
  306. package/contracts/instance/module/IBundle.sol +20 -0
  307. package/contracts/instance/module/IComponents.sol +52 -0
  308. package/contracts/instance/module/IDistribution.sol +42 -0
  309. package/contracts/instance/module/IPolicy.sol +84 -0
  310. package/contracts/instance/module/IRisk.sol +11 -0
  311. package/contracts/mock/Dip.sol +26 -0
  312. package/contracts/oracle/IOracle.sol +20 -0
  313. package/contracts/oracle/IOracleComponent.sol +32 -0
  314. package/contracts/oracle/IOracleService.sol +65 -0
  315. package/contracts/oracle/Oracle.sol +145 -0
  316. package/contracts/oracle/OracleService.sol +277 -0
  317. package/contracts/oracle/OracleServiceManager.sol +42 -0
  318. package/contracts/pool/BundleService.sol +296 -0
  319. package/contracts/pool/BundleServiceManager.sol +42 -0
  320. package/contracts/pool/IBundleService.sol +106 -0
  321. package/contracts/pool/IPoolComponent.sol +112 -0
  322. package/contracts/pool/IPoolService.sol +150 -0
  323. package/contracts/pool/Pool.sol +299 -0
  324. package/contracts/pool/PoolService.sol +453 -0
  325. package/contracts/pool/PoolServiceManager.sol +42 -0
  326. package/contracts/product/ApplicationService.sol +254 -0
  327. package/contracts/product/ApplicationServiceManager.sol +38 -0
  328. package/contracts/product/ClaimService.sol +442 -0
  329. package/contracts/product/ClaimServiceManager.sol +38 -0
  330. package/contracts/product/IApplicationService.sol +62 -0
  331. package/contracts/product/IClaimService.sol +99 -0
  332. package/contracts/product/IPolicyService.sol +78 -0
  333. package/contracts/product/IPricingService.sol +39 -0
  334. package/contracts/product/IProductComponent.sol +42 -0
  335. package/contracts/product/IProductService.sol +33 -0
  336. package/contracts/product/PolicyService.sol +475 -0
  337. package/contracts/product/PolicyServiceManager.sol +42 -0
  338. package/contracts/product/PricingService.sol +301 -0
  339. package/contracts/product/PricingServiceManager.sol +42 -0
  340. package/contracts/product/Product.sol +377 -0
  341. package/contracts/product/ProductService.sol +124 -0
  342. package/contracts/product/ProductServiceManager.sol +42 -0
  343. package/contracts/registry/ChainNft.sol +144 -62
  344. package/contracts/registry/IRegistry.sol +99 -42
  345. package/contracts/registry/IRegistryService.sol +69 -0
  346. package/contracts/registry/ITransferInterceptor.sol +7 -0
  347. package/contracts/registry/Registry.sol +521 -127
  348. package/contracts/registry/RegistryAdmin.sol +126 -0
  349. package/contracts/registry/RegistryService.sol +266 -0
  350. package/contracts/registry/RegistryServiceManager.sol +58 -0
  351. package/contracts/registry/ReleaseManager.sol +590 -0
  352. package/contracts/registry/ServiceAuthorizationsLib.sol +173 -0
  353. package/contracts/registry/TokenRegistry.sol +315 -0
  354. package/contracts/shared/AccessAdmin.sol +696 -0
  355. package/contracts/shared/AccessManagerCustom.sol +741 -0
  356. package/contracts/shared/AccessManagerExtended.sol +481 -0
  357. package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
  358. package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
  359. package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
  360. package/contracts/shared/Component.sol +281 -0
  361. package/contracts/shared/ComponentService.sol +618 -0
  362. package/contracts/shared/ComponentServiceManager.sol +35 -0
  363. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  364. package/contracts/shared/ERC165.sol +27 -0
  365. package/contracts/shared/IAccessAdmin.sol +146 -0
  366. package/contracts/shared/IAccessManagerExtended.sol +74 -0
  367. package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
  368. package/contracts/shared/IComponent.sol +70 -0
  369. package/contracts/shared/IComponentService.sol +102 -0
  370. package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
  371. package/contracts/shared/IKeyValueStore.sol +53 -0
  372. package/contracts/shared/ILifecycle.sol +30 -0
  373. package/contracts/shared/INftOwnable.sol +23 -0
  374. package/contracts/shared/IPolicyHolder.sol +45 -0
  375. package/contracts/shared/IRegisterable.sol +15 -0
  376. package/contracts/shared/IRegistryLinked.sol +11 -0
  377. package/contracts/shared/IService.sol +18 -0
  378. package/contracts/shared/IVersionable.sol +53 -0
  379. package/contracts/shared/InitializableCustom.sol +177 -0
  380. package/contracts/shared/InstanceLinkedComponent.sol +144 -0
  381. package/contracts/shared/KeyValueStore.sol +127 -0
  382. package/contracts/shared/Lifecycle.sol +130 -0
  383. package/contracts/shared/NftIdSetManager.sol +65 -0
  384. package/contracts/shared/NftOwnable.sol +107 -0
  385. package/contracts/shared/PolicyHolder.sol +102 -0
  386. package/contracts/shared/ProxyManager.sol +199 -0
  387. package/contracts/shared/Registerable.sol +75 -0
  388. package/contracts/shared/RegistryLinked.sol +43 -0
  389. package/contracts/shared/Service.sol +77 -0
  390. package/contracts/shared/TokenHandler.sol +58 -0
  391. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  392. package/contracts/shared/Versionable.sol +59 -0
  393. package/contracts/staking/IStaking.sol +168 -0
  394. package/contracts/staking/IStakingService.sol +149 -0
  395. package/contracts/staking/StakeManagerLib.sol +179 -0
  396. package/contracts/staking/Staking.sol +550 -0
  397. package/contracts/staking/StakingManager.sol +54 -0
  398. package/contracts/staking/StakingReader.sol +187 -0
  399. package/contracts/staking/StakingService.sol +406 -0
  400. package/contracts/staking/StakingServiceManager.sol +45 -0
  401. package/contracts/staking/StakingStore.sol +572 -0
  402. package/contracts/staking/TargetManagerLib.sol +207 -0
  403. package/contracts/type/AddressSet.sol +58 -0
  404. package/contracts/type/Amount.sol +128 -0
  405. package/contracts/{types → type}/Blocknumber.sol +21 -3
  406. package/contracts/type/ClaimId.sol +75 -0
  407. package/contracts/type/DistributorType.sol +55 -0
  408. package/contracts/type/Fee.sol +66 -0
  409. package/contracts/type/Key32.sol +50 -0
  410. package/contracts/type/NftId.sol +78 -0
  411. package/contracts/type/NftIdSet.sol +62 -0
  412. package/contracts/type/ObjectType.sol +170 -0
  413. package/contracts/type/PayoutId.sol +82 -0
  414. package/contracts/type/Referral.sol +89 -0
  415. package/contracts/type/RequestId.sol +75 -0
  416. package/contracts/type/RiskId.sol +43 -0
  417. package/contracts/type/RoleId.sol +156 -0
  418. package/contracts/type/Seconds.sol +81 -0
  419. package/contracts/type/Selector.sol +102 -0
  420. package/contracts/{types → type}/StateId.sol +50 -6
  421. package/contracts/type/String.sol +53 -0
  422. package/contracts/{types → type}/Timestamp.sol +41 -7
  423. package/contracts/type/UFixed.sol +326 -0
  424. package/contracts/type/Version.sol +108 -0
  425. package/package.json +15 -7
  426. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  427. package/artifacts/contracts/components/Component.sol/Component.json +0 -205
  428. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  429. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  430. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  431. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
  432. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  433. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
  434. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  435. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -328
  436. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  437. package/artifacts/contracts/components/Product.sol/Product.json +0 -346
  438. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  439. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  440. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  441. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  442. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  443. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  444. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  445. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  446. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  447. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  448. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  449. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  450. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  451. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  452. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  453. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  454. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  455. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  456. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  457. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  458. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  459. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  460. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  461. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  462. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  463. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  464. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  465. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  466. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  467. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  468. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  469. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  470. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  471. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  472. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  473. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  474. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  475. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  476. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  477. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  478. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  479. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  480. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  481. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  482. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
  483. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  484. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  485. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
  486. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  487. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
  488. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  489. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
  490. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  491. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
  492. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  493. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
  494. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
  495. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
  496. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
  497. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  498. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  499. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
  500. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  501. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
  502. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  503. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  504. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
  505. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  506. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
  507. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  508. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  509. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  510. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
  511. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  512. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  513. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  514. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
  515. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  516. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  517. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
  518. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  519. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
  520. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  521. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
  522. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  523. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  524. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
  525. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  526. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  527. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  528. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  529. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  530. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  531. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  532. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  533. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  534. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  535. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  536. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  537. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -92
  538. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  539. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  540. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  541. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  542. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  543. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -174
  544. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  545. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -453
  546. package/contracts/components/Component.sol +0 -77
  547. package/contracts/components/IPool.sol +0 -15
  548. package/contracts/components/IProduct.sol +0 -16
  549. package/contracts/components/Pool.sol +0 -52
  550. package/contracts/components/Product.sol +0 -89
  551. package/contracts/experiment/errors/Require.sol +0 -38
  552. package/contracts/experiment/errors/Revert.sol +0 -44
  553. package/contracts/experiment/inheritance/A.sol +0 -53
  554. package/contracts/experiment/inheritance/B.sol +0 -28
  555. package/contracts/experiment/inheritance/C.sol +0 -34
  556. package/contracts/experiment/inheritance/IA.sol +0 -13
  557. package/contracts/experiment/inheritance/IB.sol +0 -10
  558. package/contracts/experiment/inheritance/IC.sol +0 -12
  559. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  560. package/contracts/experiment/statemachine/ISM.sol +0 -25
  561. package/contracts/experiment/statemachine/README.md +0 -112
  562. package/contracts/experiment/statemachine/SM.sol +0 -57
  563. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  564. package/contracts/experiment/types/TypeA.sol +0 -47
  565. package/contracts/experiment/types/TypeB.sol +0 -29
  566. package/contracts/instance/access/Access.sol +0 -165
  567. package/contracts/instance/access/IAccess.sol +0 -63
  568. package/contracts/instance/component/ComponentModule.sol +0 -274
  569. package/contracts/instance/component/IComponent.sol +0 -74
  570. package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
  571. package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
  572. package/contracts/instance/policy/IPolicy.sol +0 -50
  573. package/contracts/instance/policy/PolicyModule.sol +0 -114
  574. package/contracts/instance/pool/IPoolModule.sol +0 -23
  575. package/contracts/instance/pool/PoolModule.sol +0 -81
  576. package/contracts/instance/product/IProductService.sol +0 -36
  577. package/contracts/instance/product/ProductService.sol +0 -136
  578. package/contracts/instance/treasury/ITreasury.sol +0 -91
  579. package/contracts/instance/treasury/TokenHandler.sol +0 -24
  580. package/contracts/instance/treasury/TreasuryModule.sol +0 -168
  581. package/contracts/registry/IChainNft.sol +0 -21
  582. package/contracts/types/ChainId.sol +0 -38
  583. package/contracts/types/Fee.sol +0 -32
  584. package/contracts/types/NftId.sol +0 -51
  585. package/contracts/types/ObjectType.sol +0 -107
  586. package/contracts/types/UFixed.sol +0 -206
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/7e79b5761ea364962cf7ad9282b8c4ba.json"
4
+ }
@@ -0,0 +1,316 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "InstanceAuthorizationsLib",
4
+ "sourceName": "contracts/instance/InstanceAuthorizationsLib.sol",
5
+ "abi": [],
6
+ "bytecode": "0x61361861003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106100355760003560e01c8063965928021461003a575b600080fd5b81801561004657600080fd5b5061005a610055366004613294565b61005c565b005b61006587610117565b610071878787876109ad565b61007e8888868585610ac3565b61008b8888868585610e54565b61009888888685856110b2565b6100a58888868585611459565b6100b28888868585611649565b6100bf88888685856118a7565b6100cc8888868585611b05565b6100d98888868585611d2c565b6100e78888868886866120ed565b6100f488888885856125c2565b6101018888888585612910565b61010d87878484612a7b565b5050505050505050565b806001600160a01b0316634a3a1e0061012e612be5565b604080516001600160e01b031960e085901b1681526001600160401b03909216600483015260248201526013604482015272496e7374616e636553657276696365526f6c6560681b6064820152608401600060405180830381600087803b15801561019857600080fd5b505af11580156101ac573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e006101c7612c63565b604080516001600160e01b031960e085901b1681526001600160401b03909216600483015260248201526014604482015273436f6d706f6e656e7453657276696365526f6c6560601b6064820152608401600060405180830381600087803b15801561023257600080fd5b505af1158015610246573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e00610261612c9f565b604080516001600160e01b031960e085901b1681526001600160401b0390921660048301526024820152601760448201527f446973747269627574696f6e53657276696365526f6c650000000000000000006064820152608401600060405180830381600087803b1580156102d557600080fd5b505af11580156102e9573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e00610304612cdb565b604080516001600160e01b031960e085901b1681526001600160401b039092166004830152602482015260116044820152704f7261636c6553657276696365526f6c6560781b6064820152608401600060405180830381600087803b15801561036c57600080fd5b505af1158015610380573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e0061039b612d17565b604080516001600160e01b031960e085901b1681526001600160401b0390921660048301526024820152600f60448201526e506f6f6c53657276696365526f6c6560881b6064820152608401600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e00610430612d53565b604080516001600160e01b031960e085901b1681526001600160401b039092166004830152602482015260166044820152754170706c69636174696f6e53657276696365526f6c6560501b6064820152608401600060405180830381600087803b15801561049d57600080fd5b505af11580156104b1573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e006104cc612d8f565b604080516001600160e01b031960e085901b1681526001600160401b0390921660048301526024820152601260448201527150726f6475637453657276696365526f6c6560701b6064820152608401600060405180830381600087803b15801561053557600080fd5b505af1158015610549573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e00610564612dcb565b604080516001600160e01b031960e085901b1681526001600160401b0390921660048301526024820152601060448201526f436c61696d53657276696365526f6c6560801b6064820152608401600060405180830381600087803b1580156105cb57600080fd5b505af11580156105df573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e006105fa612e07565b604080516001600160e01b031960e085901b1681526001600160401b03909216600483015260248201526011604482015270506f6c69637953657276696365526f6c6560781b6064820152608401600060405180830381600087803b15801561066257600080fd5b505af1158015610676573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e00610691612e43565b604080516001600160e01b031960e085901b1681526001600160401b0390921660048301526024820152601160448201527042756e646c6553657276696365526f6c6560781b6064820152608401600060405180830381600087803b1580156106f957600080fd5b505af115801561070d573d6000803e3d6000fd5b50505050806001600160a01b031663f2345aea610728612e7f565b610730612eba565b6040516001600160e01b031960e085901b1681526001600160401b039283166004820152606060248201526015606482015274446973747269627574696f6e4f776e6572526f6c6560581b60848201529116604482015260a401600060405180830381600087803b1580156107a457600080fd5b505af11580156107b8573d6000803e3d6000fd5b50505050806001600160a01b031663f2345aea6107d3612ef6565b6107db612eba565b6040516001600160e01b031960e085901b1681526001600160401b03928316600482015260606024820152600f60648201526e4f7261636c654f776e6572526f6c6560881b60848201529116604482015260a401600060405180830381600087803b15801561084957600080fd5b505af115801561085d573d6000803e3d6000fd5b50505050806001600160a01b031663f2345aea610878612f31565b610880612eba565b6040516001600160e01b031960e085901b1681526001600160401b03928316600482015260606024820152600d60648201526c506f6f6c4f776e6572526f6c6560981b60848201529116604482015260a401600060405180830381600087803b1580156108ec57600080fd5b505af1158015610900573d6000803e3d6000fd5b50505050806001600160a01b031663f2345aea61091b612f6b565b610923612eba565b6040516001600160e01b031960e085901b1681526001600160401b03928316600482015260606024820152601060648201526f50726f647563744f776e6572526f6c6560801b60848201529116604482015260a401600060405180830381600087803b15801561099257600080fd5b505af11580156109a6573d6000803e3d6000fd5b5050505050565b6040516312f48f1560e01b81526001600160a01b038516906312f48f15906109d990869060040161333d565b600060405180830381600087803b1580156109f357600080fd5b505af1158015610a07573d6000803e3d6000fd5b50506040516312f48f1560e01b81526001600160a01b03871692506312f48f159150610a37908590600401613377565b600060405180830381600087803b158015610a5157600080fd5b505af1158015610a65573d6000803e3d6000fd5b50506040516312f48f1560e01b81526001600160a01b03871692506312f48f159150610a959084906004016133b3565b600060405180830381600087803b158015610aaf57600080fd5b505af115801561010d573d6000803e3d6000fd5b6000826001600160a01b031663d39e6043610adc612fa6565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015610b22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4691906133ef565b9050856001600160a01b03166325c471a0610b5f612c63565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015610bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdc9190613421565b8360006040518463ffffffff1660e01b8152600401610bfd9392919061343e565b600060405180830381600087803b158015610c1757600080fd5b505af1158015610c2b573d6000803e3d6000fd5b506000925060089150610c3b9050565b604051908082528060200260200182016040528015610c64578160200160208202803683370190505b509050634846003a60e01b81600081518110610c8257610c8261346e565b6001600160e01b031990921660209283029190910190910152805162f0266b60e21b9082906001908110610cb857610cb861346e565b6001600160e01b0319909216602092830291909101909101528051637892982360e01b9082906002908110610cef57610cef61346e565b6001600160e01b031990921660209283029190910190910152805163a6a67b1f60e01b9082906003908110610d2657610d2661346e565b6001600160e01b031990921660209283029190910190910152805163b5b3d9f960e01b9082906005908110610d5d57610d5d61346e565b6001600160e01b0319909216602092830291909101909101528051639f8151e560e01b9082906006908110610d9457610d9461346e565b6001600160e01b031990921660209283029190910190910152805163e80c61ed60e01b9082906007908110610dcb57610dcb61346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612c63565b6040518363ffffffff1660e01b8152600401610e199291906134c9565b600060405180830381600087803b158015610e3357600080fd5b505af1158015610e47573d6000803e3d6000fd5b5050505050505050505050565b6000826001600160a01b031663d39e6043610e6d61301e565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015610eb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed791906133ef565b9050856001600160a01b03166325c471a0610ef0612cdb565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015610f49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6d9190613421565b8360006040518463ffffffff1660e01b8152600401610f8e9392919061343e565b600060405180830381600087803b158015610fa857600080fd5b505af1158015610fbc573d6000803e3d6000fd5b506000925060039150610fcc9050565b604051908082528060200260200182016040528015610ff5578160200160208202803683370190505b509050630632b17d60e01b816000815181106110135761101361346e565b6001600160e01b031990921660209283029190910190910152805163275c059560e01b908290600190811061104a5761104a61346e565b6001600160e01b0319909216602092830291909101909101528051635a6bf7f160e11b90829060029081106110815761108161346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612cdb565b6000826001600160a01b031663d39e60436110cb613059565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015611111573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113591906133ef565b9050856001600160a01b03166325c471a061114e612c9f565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af41580156111a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cb9190613421565b8360006040518463ffffffff1660e01b81526004016111ec9392919061343e565b600060405180830381600087803b15801561120657600080fd5b505af115801561121a573d6000803e3d6000fd5b50600092506009915061122a9050565b604051908082528060200260200182016040528015611253578160200160208202803683370190505b5090506330a130ba60e01b816000815181106112715761127161346e565b6001600160e01b03199092166020928302919091019091015280516305a8416b60e41b90829060019081106112a8576112a861346e565b6001600160e01b031990921660209283029190910190910152805163a284222960e01b90829060029081106112df576112df61346e565b6001600160e01b0319909216602092830291909101909101528051631f32844960e21b90829060039081106113165761131661346e565b6001600160e01b0319909216602092830291909101909101528051631e40b36360e01b908290600490811061134d5761134d61346e565b6001600160e01b03199092166020928302919091019091015280516340529b0f60e01b90829060059081106113845761138461346e565b6001600160e01b0319909216602092830291909101909101528051631941cfe160e31b90829060069081106113bb576113bb61346e565b6001600160e01b03199092166020928302919091019091015280516330882f0760e11b90829060079081106113f2576113f261346e565b6001600160e01b031990921660209283029190910190910152805162af902560e81b90829060089081106114285761142861346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612c9f565b6000826001600160a01b031663d39e6043611472613094565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa1580156114b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114dc91906133ef565b9050856001600160a01b03166325c471a06114f5612d17565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af415801561154e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115729190613421565b8360006040518463ffffffff1660e01b81526004016115939392919061343e565b600060405180830381600087803b1580156115ad57600080fd5b505af11580156115c1573d6000803e3d6000fd5b5060009250600191506115d19050565b6040519080825280602002602001820160405280156115fa578160200160208202803683370190505b50905063763bb75460e01b816000815181106116185761161861346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612d17565b6000826001600160a01b031663d39e60436116626130cf565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa1580156116a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116cc91906133ef565b9050856001600160a01b03166325c471a06116e5612d8f565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af415801561173e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117629190613421565b8360006040518463ffffffff1660e01b81526004016117839392919061343e565b600060405180830381600087803b15801561179d57600080fd5b505af11580156117b1573d6000803e3d6000fd5b5060009250600391506117c19050565b6040519080825280602002602001820160405280156117ea578160200160208202803683370190505b509050632f61088a60e01b816000815181106118085761180861346e565b6001600160e01b03199092166020928302919091019091015280516314eddc0360e31b908290600190811061183f5761183f61346e565b6001600160e01b0319909216602092830291909101909101528051633e77a42160e11b90829060029081106118765761187661346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612d8f565b6000826001600160a01b031663d39e60436118c061310a565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015611906573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192a91906133ef565b9050856001600160a01b03166325c471a0611943612d53565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af415801561199c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c09190613421565b8360006040518463ffffffff1660e01b81526004016119e19392919061343e565b600060405180830381600087803b1580156119fb57600080fd5b505af1158015611a0f573d6000803e3d6000fd5b506000925060039150611a1f9050565b604051908082528060200260200182016040528015611a48578160200160208202803683370190505b509050632a8ea7ac60e01b81600081518110611a6657611a6661346e565b6001600160e01b031990921660209283029190910190910152805163287f040160e21b9082906001908110611a9d57611a9d61346e565b6001600160e01b0319909216602092830291909101909101528051630fad0eb160e01b9082906002908110611ad457611ad461346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612d53565b6000826001600160a01b031663d39e6043611b1e613145565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015611b64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8891906133ef565b9050856001600160a01b03166325c471a0611ba1612e07565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015611bfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c1e9190613421565b8360006040518463ffffffff1660e01b8152600401611c3f9392919061343e565b600060405180830381600087803b158015611c5957600080fd5b505af1158015611c6d573d6000803e3d6000fd5b506000925060029150611c7d9050565b604051908082528060200260200182016040528015611ca6578160200160208202803683370190505b50905063985aeba760e01b81600081518110611cc457611cc461346e565b6001600160e01b0319909216602092830291909101909101528051631750d17360e21b9082906001908110611cfb57611cfb61346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612e07565b6000826001600160a01b031663d39e6043611d45613180565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015611d8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611daf91906133ef565b9050856001600160a01b03166325c471a0611dc8612dcb565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015611e21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e459190613421565b8360006040518463ffffffff1660e01b8152600401611e669392919061343e565b600060405180830381600087803b158015611e8057600080fd5b505af1158015611e94573d6000803e3d6000fd5b506000925060019150611ea49050565b604051908082528060200260200182016040528015611ecd578160200160208202803683370190505b50905063f5884fc560e01b81600081518110611eeb57611eeb61346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882611f1c612dcb565b6040518363ffffffff1660e01b8152600401611f399291906134c9565b600060405180830381600087803b158015611f5357600080fd5b505af1158015611f67573d6000803e3d6000fd5b506000925060049150611f779050565b604051908082528060200260200182016040528015611fa0578160200160208202803683370190505b509050630cfc3ba360e01b81600081518110611fbe57611fbe61346e565b6001600160e01b031990921660209283029190910190910152805163fae5df9b60e01b9082906001908110611ff557611ff561346e565b6001600160e01b03199092166020928302919091019091015280516340e1594160e11b908290600290811061202c5761202c61346e565b6001600160e01b0319909216602092830291909101909101528051630f6c29ef60e01b90829060039081106120635761206361346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038716638462319882612094612dcb565b6040518363ffffffff1660e01b81526004016120b19291906134c9565b600060405180830381600087803b1580156120cb57600080fd5b505af11580156120df573d6000803e3d6000fd5b505050505050505050505050565b6000826001600160a01b031663d39e60436121066131bb565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa15801561214c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061217091906133ef565b9050866001600160a01b03166325c471a0612189612e43565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af41580156121e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122069190613421565b8360006040518463ffffffff1660e01b81526004016122279392919061343e565b600060405180830381600087803b15801561224157600080fd5b505af1158015612255573d6000803e3d6000fd5b5060009250600591506122659050565b60405190808252806020026020018201604052801561228e578160200160208202803683370190505b50905063a46eb8dc60e01b816000815181106122ac576122ac61346e565b6001600160e01b03199092166020928302919091019091015280516351dd844b60e01b90829060019081106122e3576122e361346e565b6001600160e01b0319909216602092830291909101909101528051637f0f8c6b60e11b908290600290811061231a5761231a61346e565b6001600160e01b031990921660209283029190910190910152805163248a77dd60e01b90829060039081106123515761235161346e565b6001600160e01b03199092166020928302919091019091015280516353ebe12960e01b90829060049081106123885761238861346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b0387166384623198826123b9612e43565b6040518363ffffffff1660e01b81526004016123d69291906134c9565b600060405180830381600087803b1580156123f057600080fd5b505af1158015612404573d6000803e3d6000fd5b5060009250600591506124149050565b60405190808252806020026020018201604052801561243d578160200160208202803683370190505b509050630cc7e61460e01b8160008151811061245b5761245b61346e565b6001600160e01b0319909216602092830291909101909101528051631351fccf60e31b90829060019081106124925761249261346e565b6001600160e01b03199092166020928302919091019091015280516346f0e8a760e11b90829060029081106124c9576124c961346e565b6001600160e01b031990921660209283029190910190910152805163b5346af560e01b90829060039081106125005761250061346e565b6001600160e01b03199092166020928302919091019091015280516306fa456560e01b90829060049081106125375761253761346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038816638462319882612568612e43565b6040518363ffffffff1660e01b8152600401612585929190613521565b600060405180830381600087803b15801561259f57600080fd5b505af11580156125b3573d6000803e3d6000fd5b50505050505050505050505050565b6000826001600160a01b031663d39e60436125db6131f6565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015612621573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061264591906133ef565b9050856001600160a01b03166325c471a061265e612be5565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af41580156126b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126db9190613421565b8360006040518463ffffffff1660e01b81526004016126fc9392919061343e565b600060405180830381600087803b15801561271657600080fd5b505af115801561272a573d6000803e3d6000fd5b50600092506001915061273a9050565b604051908082528060200260200182016040528015612763578160200160208202803683370190505b50905063f7bc431c60e01b816000815181106127815761278161346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b0386166384623198826127b2612be5565b6040518363ffffffff1660e01b81526004016127cf92919061354e565b600060405180830381600087803b1580156127e957600080fd5b505af11580156127fd573d6000803e3d6000fd5b50600092506003915061280d9050565b604051908082528060200260200182016040528015612836578160200160208202803683370190505b5090506344ec4c3060e01b816000815181106128545761285461346e565b6001600160e01b03199092166020928302919091019091015280516313bfaf6360e31b908290600190811061288b5761288b61346e565b6001600160e01b031990921660209283029190910190910152805163108c463360e31b90829060029081106128c2576128c261346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b0387166384623198826128f3612be5565b6040518363ffffffff1660e01b81526004016120b1929190613576565b60408051600480825260a082019092526000916020820160808036833701905050905063d2192dbf60e01b8160008151811061294e5761294e61346e565b6001600160e01b03199092166020928302919091019091015280516317ea2ab560e21b90829060019081106129855761298561346e565b6001600160e01b031990921660209283029190910190910152805163dc85dcb160e01b90829060029081106129bc576129bc61346e565b6001600160e01b03199092166020928302919091019091015280516308b6d1c760e21b90829060039081106129f3576129f361346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038516638462319882612a24613231565b6040518363ffffffff1660e01b8152600401612a41929190613576565b600060405180830381600087803b158015612a5b57600080fd5b505af1158015612a6f573d6000803e3d6000fd5b50505050505050505050565b60408051600480825260a082019092526000916020820160808036833701905050905063d2192dbf60e01b81600081518110612ab957612ab961346e565b6001600160e01b03199092166020928302919091019091015280516317ea2ab560e21b9082906001908110612af057612af061346e565b6001600160e01b03199092166020928302919091019091015280516329db8c3d60e01b9082906002908110612b2757612b2761346e565b6001600160e01b0319909216602092830291909101909101528051638689231360e01b9082906003908110612b5e57612b5e61346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038516638462319882612b8f612eba565b6040518363ffffffff1660e01b8152600401612bac92919061354e565b600060405180830381600087803b158015612bc657600080fd5b505af1158015612bda573d6000803e3d6000fd5b505050505050505050565b6040516368aebf7b60e01b81526107d0600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024015b602060405180830381865af4158015612c3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c5e9190613421565b905090565b6040516368aebf7b60e01b81526107d1600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b8152610834600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b8152610866600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b8152610898600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b8152610960600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b81526108fc600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b8152610974600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b815261096a600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b81526109c4600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b81526002600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b815261076c600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b81526003600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b815260048082015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b81526005600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b604051630dd958dd60e31b81526064600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024015b602060405180830381865af4158015612ffa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c5e91906135c5565b604051630dd958dd60e31b81526082600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b81526078600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b8152608c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b8152606e600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b815260d2600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b815260d3600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b815260d4600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b815260dc600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b81526046600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b6040516368aebf7b60e01b8152610a28600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6001600160a01b038116811461328257600080fd5b50565b60ff8116811461328257600080fd5b600080600080600080600080610100898b0312156132b157600080fd5b88356132bc8161326d565b975060208901356132cc8161326d565b965060408901356132dc8161326d565b955060608901356132ec8161326d565b945060808901356132fc8161326d565b935060a089013561330c8161326d565b925060c089013561331c8161326d565b915060e089013561332c81613285565b809150509295985092959890939650565b6001600160a01b038216815260406020820181905260089082015267496e7374616e636560c01b60608201526000608082015b9392505050565b6001600160a01b0382168152604060208201819052600d908201526c213ab7323632a6b0b730b3b2b960991b6060820152600060808201613370565b6001600160a01b0382168152604060208201819052600d908201526c496e7374616e636553746f726560981b6060820152600060808201613370565b60006020828403121561340157600080fd5b81516133708161326d565b6001600160401b038116811461328257600080fd5b60006020828403121561343357600080fd5b81516133708161340c565b6001600160401b039390931683526001600160a01b0391909116602083015263ffffffff16604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b838110156134be5781516001600160e01b03191687529582019590820190600101613498565b509495945050505050565b6060815260006134f660608301600d81526c496e7374616e636553746f726560981b602082015260400190565b82810360208401526135088186613484565b9150506001600160401b03831660408301529392505050565b6060815260006134f660608301600d81526c213ab7323632a6b0b730b3b2b960991b602082015260400190565b6060815260006134f6606083016008815267496e7374616e636560c01b602082015260400190565b60608152600d60608201526c24b739ba30b731b2a0b236b4b760991b608082015260a0602082015260006135ad60a0830185613484565b90506001600160401b03831660408301529392505050565b6000602082840312156135d757600080fd5b81516133708161328556fea264697066735822122045be5241cde1c586969b297a6828de5583486637a3de97a1014a2dd42f89b91c64736f6c63430008140033",
7
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600436106100355760003560e01c8063965928021461003a575b600080fd5b81801561004657600080fd5b5061005a610055366004613294565b61005c565b005b61006587610117565b610071878787876109ad565b61007e8888868585610ac3565b61008b8888868585610e54565b61009888888685856110b2565b6100a58888868585611459565b6100b28888868585611649565b6100bf88888685856118a7565b6100cc8888868585611b05565b6100d98888868585611d2c565b6100e78888868886866120ed565b6100f488888885856125c2565b6101018888888585612910565b61010d87878484612a7b565b5050505050505050565b806001600160a01b0316634a3a1e0061012e612be5565b604080516001600160e01b031960e085901b1681526001600160401b03909216600483015260248201526013604482015272496e7374616e636553657276696365526f6c6560681b6064820152608401600060405180830381600087803b15801561019857600080fd5b505af11580156101ac573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e006101c7612c63565b604080516001600160e01b031960e085901b1681526001600160401b03909216600483015260248201526014604482015273436f6d706f6e656e7453657276696365526f6c6560601b6064820152608401600060405180830381600087803b15801561023257600080fd5b505af1158015610246573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e00610261612c9f565b604080516001600160e01b031960e085901b1681526001600160401b0390921660048301526024820152601760448201527f446973747269627574696f6e53657276696365526f6c650000000000000000006064820152608401600060405180830381600087803b1580156102d557600080fd5b505af11580156102e9573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e00610304612cdb565b604080516001600160e01b031960e085901b1681526001600160401b039092166004830152602482015260116044820152704f7261636c6553657276696365526f6c6560781b6064820152608401600060405180830381600087803b15801561036c57600080fd5b505af1158015610380573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e0061039b612d17565b604080516001600160e01b031960e085901b1681526001600160401b0390921660048301526024820152600f60448201526e506f6f6c53657276696365526f6c6560881b6064820152608401600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e00610430612d53565b604080516001600160e01b031960e085901b1681526001600160401b039092166004830152602482015260166044820152754170706c69636174696f6e53657276696365526f6c6560501b6064820152608401600060405180830381600087803b15801561049d57600080fd5b505af11580156104b1573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e006104cc612d8f565b604080516001600160e01b031960e085901b1681526001600160401b0390921660048301526024820152601260448201527150726f6475637453657276696365526f6c6560701b6064820152608401600060405180830381600087803b15801561053557600080fd5b505af1158015610549573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e00610564612dcb565b604080516001600160e01b031960e085901b1681526001600160401b0390921660048301526024820152601060448201526f436c61696d53657276696365526f6c6560801b6064820152608401600060405180830381600087803b1580156105cb57600080fd5b505af11580156105df573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e006105fa612e07565b604080516001600160e01b031960e085901b1681526001600160401b03909216600483015260248201526011604482015270506f6c69637953657276696365526f6c6560781b6064820152608401600060405180830381600087803b15801561066257600080fd5b505af1158015610676573d6000803e3d6000fd5b50505050806001600160a01b0316634a3a1e00610691612e43565b604080516001600160e01b031960e085901b1681526001600160401b0390921660048301526024820152601160448201527042756e646c6553657276696365526f6c6560781b6064820152608401600060405180830381600087803b1580156106f957600080fd5b505af115801561070d573d6000803e3d6000fd5b50505050806001600160a01b031663f2345aea610728612e7f565b610730612eba565b6040516001600160e01b031960e085901b1681526001600160401b039283166004820152606060248201526015606482015274446973747269627574696f6e4f776e6572526f6c6560581b60848201529116604482015260a401600060405180830381600087803b1580156107a457600080fd5b505af11580156107b8573d6000803e3d6000fd5b50505050806001600160a01b031663f2345aea6107d3612ef6565b6107db612eba565b6040516001600160e01b031960e085901b1681526001600160401b03928316600482015260606024820152600f60648201526e4f7261636c654f776e6572526f6c6560881b60848201529116604482015260a401600060405180830381600087803b15801561084957600080fd5b505af115801561085d573d6000803e3d6000fd5b50505050806001600160a01b031663f2345aea610878612f31565b610880612eba565b6040516001600160e01b031960e085901b1681526001600160401b03928316600482015260606024820152600d60648201526c506f6f6c4f776e6572526f6c6560981b60848201529116604482015260a401600060405180830381600087803b1580156108ec57600080fd5b505af1158015610900573d6000803e3d6000fd5b50505050806001600160a01b031663f2345aea61091b612f6b565b610923612eba565b6040516001600160e01b031960e085901b1681526001600160401b03928316600482015260606024820152601060648201526f50726f647563744f776e6572526f6c6560801b60848201529116604482015260a401600060405180830381600087803b15801561099257600080fd5b505af11580156109a6573d6000803e3d6000fd5b5050505050565b6040516312f48f1560e01b81526001600160a01b038516906312f48f15906109d990869060040161333d565b600060405180830381600087803b1580156109f357600080fd5b505af1158015610a07573d6000803e3d6000fd5b50506040516312f48f1560e01b81526001600160a01b03871692506312f48f159150610a37908590600401613377565b600060405180830381600087803b158015610a5157600080fd5b505af1158015610a65573d6000803e3d6000fd5b50506040516312f48f1560e01b81526001600160a01b03871692506312f48f159150610a959084906004016133b3565b600060405180830381600087803b158015610aaf57600080fd5b505af115801561010d573d6000803e3d6000fd5b6000826001600160a01b031663d39e6043610adc612fa6565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015610b22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4691906133ef565b9050856001600160a01b03166325c471a0610b5f612c63565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015610bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdc9190613421565b8360006040518463ffffffff1660e01b8152600401610bfd9392919061343e565b600060405180830381600087803b158015610c1757600080fd5b505af1158015610c2b573d6000803e3d6000fd5b506000925060089150610c3b9050565b604051908082528060200260200182016040528015610c64578160200160208202803683370190505b509050634846003a60e01b81600081518110610c8257610c8261346e565b6001600160e01b031990921660209283029190910190910152805162f0266b60e21b9082906001908110610cb857610cb861346e565b6001600160e01b0319909216602092830291909101909101528051637892982360e01b9082906002908110610cef57610cef61346e565b6001600160e01b031990921660209283029190910190910152805163a6a67b1f60e01b9082906003908110610d2657610d2661346e565b6001600160e01b031990921660209283029190910190910152805163b5b3d9f960e01b9082906005908110610d5d57610d5d61346e565b6001600160e01b0319909216602092830291909101909101528051639f8151e560e01b9082906006908110610d9457610d9461346e565b6001600160e01b031990921660209283029190910190910152805163e80c61ed60e01b9082906007908110610dcb57610dcb61346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612c63565b6040518363ffffffff1660e01b8152600401610e199291906134c9565b600060405180830381600087803b158015610e3357600080fd5b505af1158015610e47573d6000803e3d6000fd5b5050505050505050505050565b6000826001600160a01b031663d39e6043610e6d61301e565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015610eb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed791906133ef565b9050856001600160a01b03166325c471a0610ef0612cdb565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015610f49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6d9190613421565b8360006040518463ffffffff1660e01b8152600401610f8e9392919061343e565b600060405180830381600087803b158015610fa857600080fd5b505af1158015610fbc573d6000803e3d6000fd5b506000925060039150610fcc9050565b604051908082528060200260200182016040528015610ff5578160200160208202803683370190505b509050630632b17d60e01b816000815181106110135761101361346e565b6001600160e01b031990921660209283029190910190910152805163275c059560e01b908290600190811061104a5761104a61346e565b6001600160e01b0319909216602092830291909101909101528051635a6bf7f160e11b90829060029081106110815761108161346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612cdb565b6000826001600160a01b031663d39e60436110cb613059565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015611111573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113591906133ef565b9050856001600160a01b03166325c471a061114e612c9f565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af41580156111a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cb9190613421565b8360006040518463ffffffff1660e01b81526004016111ec9392919061343e565b600060405180830381600087803b15801561120657600080fd5b505af115801561121a573d6000803e3d6000fd5b50600092506009915061122a9050565b604051908082528060200260200182016040528015611253578160200160208202803683370190505b5090506330a130ba60e01b816000815181106112715761127161346e565b6001600160e01b03199092166020928302919091019091015280516305a8416b60e41b90829060019081106112a8576112a861346e565b6001600160e01b031990921660209283029190910190910152805163a284222960e01b90829060029081106112df576112df61346e565b6001600160e01b0319909216602092830291909101909101528051631f32844960e21b90829060039081106113165761131661346e565b6001600160e01b0319909216602092830291909101909101528051631e40b36360e01b908290600490811061134d5761134d61346e565b6001600160e01b03199092166020928302919091019091015280516340529b0f60e01b90829060059081106113845761138461346e565b6001600160e01b0319909216602092830291909101909101528051631941cfe160e31b90829060069081106113bb576113bb61346e565b6001600160e01b03199092166020928302919091019091015280516330882f0760e11b90829060079081106113f2576113f261346e565b6001600160e01b031990921660209283029190910190910152805162af902560e81b90829060089081106114285761142861346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612c9f565b6000826001600160a01b031663d39e6043611472613094565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa1580156114b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114dc91906133ef565b9050856001600160a01b03166325c471a06114f5612d17565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af415801561154e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115729190613421565b8360006040518463ffffffff1660e01b81526004016115939392919061343e565b600060405180830381600087803b1580156115ad57600080fd5b505af11580156115c1573d6000803e3d6000fd5b5060009250600191506115d19050565b6040519080825280602002602001820160405280156115fa578160200160208202803683370190505b50905063763bb75460e01b816000815181106116185761161861346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612d17565b6000826001600160a01b031663d39e60436116626130cf565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa1580156116a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116cc91906133ef565b9050856001600160a01b03166325c471a06116e5612d8f565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af415801561173e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117629190613421565b8360006040518463ffffffff1660e01b81526004016117839392919061343e565b600060405180830381600087803b15801561179d57600080fd5b505af11580156117b1573d6000803e3d6000fd5b5060009250600391506117c19050565b6040519080825280602002602001820160405280156117ea578160200160208202803683370190505b509050632f61088a60e01b816000815181106118085761180861346e565b6001600160e01b03199092166020928302919091019091015280516314eddc0360e31b908290600190811061183f5761183f61346e565b6001600160e01b0319909216602092830291909101909101528051633e77a42160e11b90829060029081106118765761187661346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612d8f565b6000826001600160a01b031663d39e60436118c061310a565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015611906573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192a91906133ef565b9050856001600160a01b03166325c471a0611943612d53565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af415801561199c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c09190613421565b8360006040518463ffffffff1660e01b81526004016119e19392919061343e565b600060405180830381600087803b1580156119fb57600080fd5b505af1158015611a0f573d6000803e3d6000fd5b506000925060039150611a1f9050565b604051908082528060200260200182016040528015611a48578160200160208202803683370190505b509050632a8ea7ac60e01b81600081518110611a6657611a6661346e565b6001600160e01b031990921660209283029190910190910152805163287f040160e21b9082906001908110611a9d57611a9d61346e565b6001600160e01b0319909216602092830291909101909101528051630fad0eb160e01b9082906002908110611ad457611ad461346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612d53565b6000826001600160a01b031663d39e6043611b1e613145565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015611b64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8891906133ef565b9050856001600160a01b03166325c471a0611ba1612e07565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015611bfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c1e9190613421565b8360006040518463ffffffff1660e01b8152600401611c3f9392919061343e565b600060405180830381600087803b158015611c5957600080fd5b505af1158015611c6d573d6000803e3d6000fd5b506000925060029150611c7d9050565b604051908082528060200260200182016040528015611ca6578160200160208202803683370190505b50905063985aeba760e01b81600081518110611cc457611cc461346e565b6001600160e01b0319909216602092830291909101909101528051631750d17360e21b9082906001908110611cfb57611cfb61346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882610dfc612e07565b6000826001600160a01b031663d39e6043611d45613180565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015611d8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611daf91906133ef565b9050856001600160a01b03166325c471a0611dc8612dcb565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015611e21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e459190613421565b8360006040518463ffffffff1660e01b8152600401611e669392919061343e565b600060405180830381600087803b158015611e8057600080fd5b505af1158015611e94573d6000803e3d6000fd5b506000925060019150611ea49050565b604051908082528060200260200182016040528015611ecd578160200160208202803683370190505b50905063f5884fc560e01b81600081518110611eeb57611eeb61346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038616638462319882611f1c612dcb565b6040518363ffffffff1660e01b8152600401611f399291906134c9565b600060405180830381600087803b158015611f5357600080fd5b505af1158015611f67573d6000803e3d6000fd5b506000925060049150611f779050565b604051908082528060200260200182016040528015611fa0578160200160208202803683370190505b509050630cfc3ba360e01b81600081518110611fbe57611fbe61346e565b6001600160e01b031990921660209283029190910190910152805163fae5df9b60e01b9082906001908110611ff557611ff561346e565b6001600160e01b03199092166020928302919091019091015280516340e1594160e11b908290600290811061202c5761202c61346e565b6001600160e01b0319909216602092830291909101909101528051630f6c29ef60e01b90829060039081106120635761206361346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038716638462319882612094612dcb565b6040518363ffffffff1660e01b81526004016120b19291906134c9565b600060405180830381600087803b1580156120cb57600080fd5b505af11580156120df573d6000803e3d6000fd5b505050505050505050505050565b6000826001600160a01b031663d39e60436121066131bb565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa15801561214c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061217091906133ef565b9050866001600160a01b03166325c471a0612189612e43565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af41580156121e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122069190613421565b8360006040518463ffffffff1660e01b81526004016122279392919061343e565b600060405180830381600087803b15801561224157600080fd5b505af1158015612255573d6000803e3d6000fd5b5060009250600591506122659050565b60405190808252806020026020018201604052801561228e578160200160208202803683370190505b50905063a46eb8dc60e01b816000815181106122ac576122ac61346e565b6001600160e01b03199092166020928302919091019091015280516351dd844b60e01b90829060019081106122e3576122e361346e565b6001600160e01b0319909216602092830291909101909101528051637f0f8c6b60e11b908290600290811061231a5761231a61346e565b6001600160e01b031990921660209283029190910190910152805163248a77dd60e01b90829060039081106123515761235161346e565b6001600160e01b03199092166020928302919091019091015280516353ebe12960e01b90829060049081106123885761238861346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b0387166384623198826123b9612e43565b6040518363ffffffff1660e01b81526004016123d69291906134c9565b600060405180830381600087803b1580156123f057600080fd5b505af1158015612404573d6000803e3d6000fd5b5060009250600591506124149050565b60405190808252806020026020018201604052801561243d578160200160208202803683370190505b509050630cc7e61460e01b8160008151811061245b5761245b61346e565b6001600160e01b0319909216602092830291909101909101528051631351fccf60e31b90829060019081106124925761249261346e565b6001600160e01b03199092166020928302919091019091015280516346f0e8a760e11b90829060029081106124c9576124c961346e565b6001600160e01b031990921660209283029190910190910152805163b5346af560e01b90829060039081106125005761250061346e565b6001600160e01b03199092166020928302919091019091015280516306fa456560e01b90829060049081106125375761253761346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038816638462319882612568612e43565b6040518363ffffffff1660e01b8152600401612585929190613521565b600060405180830381600087803b15801561259f57600080fd5b505af11580156125b3573d6000803e3d6000fd5b50505050505050505050505050565b6000826001600160a01b031663d39e60436125db6131f6565b6040516001600160e01b031960e084901b16815260ff91821660048201529085166024820152604401602060405180830381865afa158015612621573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061264591906133ef565b9050856001600160a01b03166325c471a061265e612be5565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af41580156126b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126db9190613421565b8360006040518463ffffffff1660e01b81526004016126fc9392919061343e565b600060405180830381600087803b15801561271657600080fd5b505af115801561272a573d6000803e3d6000fd5b50600092506001915061273a9050565b604051908082528060200260200182016040528015612763578160200160208202803683370190505b50905063f7bc431c60e01b816000815181106127815761278161346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b0386166384623198826127b2612be5565b6040518363ffffffff1660e01b81526004016127cf92919061354e565b600060405180830381600087803b1580156127e957600080fd5b505af11580156127fd573d6000803e3d6000fd5b50600092506003915061280d9050565b604051908082528060200260200182016040528015612836578160200160208202803683370190505b5090506344ec4c3060e01b816000815181106128545761285461346e565b6001600160e01b03199092166020928302919091019091015280516313bfaf6360e31b908290600190811061288b5761288b61346e565b6001600160e01b031990921660209283029190910190910152805163108c463360e31b90829060029081106128c2576128c261346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b0387166384623198826128f3612be5565b6040518363ffffffff1660e01b81526004016120b1929190613576565b60408051600480825260a082019092526000916020820160808036833701905050905063d2192dbf60e01b8160008151811061294e5761294e61346e565b6001600160e01b03199092166020928302919091019091015280516317ea2ab560e21b90829060019081106129855761298561346e565b6001600160e01b031990921660209283029190910190910152805163dc85dcb160e01b90829060029081106129bc576129bc61346e565b6001600160e01b03199092166020928302919091019091015280516308b6d1c760e21b90829060039081106129f3576129f361346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038516638462319882612a24613231565b6040518363ffffffff1660e01b8152600401612a41929190613576565b600060405180830381600087803b158015612a5b57600080fd5b505af1158015612a6f573d6000803e3d6000fd5b50505050505050505050565b60408051600480825260a082019092526000916020820160808036833701905050905063d2192dbf60e01b81600081518110612ab957612ab961346e565b6001600160e01b03199092166020928302919091019091015280516317ea2ab560e21b9082906001908110612af057612af061346e565b6001600160e01b03199092166020928302919091019091015280516329db8c3d60e01b9082906002908110612b2757612b2761346e565b6001600160e01b0319909216602092830291909101909101528051638689231360e01b9082906003908110612b5e57612b5e61346e565b6001600160e01b0319909216602092830291909101909101526001600160a01b038516638462319882612b8f612eba565b6040518363ffffffff1660e01b8152600401612bac92919061354e565b600060405180830381600087803b158015612bc657600080fd5b505af1158015612bda573d6000803e3d6000fd5b505050505050505050565b6040516368aebf7b60e01b81526107d0600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024015b602060405180830381865af4158015612c3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c5e9190613421565b905090565b6040516368aebf7b60e01b81526107d1600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b8152610834600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b8152610866600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b8152610898600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b8152610960600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b81526108fc600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b8152610974600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b815261096a600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b81526109c4600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b81526002600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b815261076c600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b81526003600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b815260048082015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6040516368aebf7b60e01b81526005600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b604051630dd958dd60e31b81526064600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024015b602060405180830381865af4158015612ffa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c5e91906135c5565b604051630dd958dd60e31b81526082600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b81526078600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b8152608c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b8152606e600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b815260d2600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b815260d3600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b815260d4600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b815260dc600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b604051630dd958dd60e31b81526046600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e890602401612fdd565b6040516368aebf7b60e01b8152610a28600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612c1d565b6001600160a01b038116811461328257600080fd5b50565b60ff8116811461328257600080fd5b600080600080600080600080610100898b0312156132b157600080fd5b88356132bc8161326d565b975060208901356132cc8161326d565b965060408901356132dc8161326d565b955060608901356132ec8161326d565b945060808901356132fc8161326d565b935060a089013561330c8161326d565b925060c089013561331c8161326d565b915060e089013561332c81613285565b809150509295985092959890939650565b6001600160a01b038216815260406020820181905260089082015267496e7374616e636560c01b60608201526000608082015b9392505050565b6001600160a01b0382168152604060208201819052600d908201526c213ab7323632a6b0b730b3b2b960991b6060820152600060808201613370565b6001600160a01b0382168152604060208201819052600d908201526c496e7374616e636553746f726560981b6060820152600060808201613370565b60006020828403121561340157600080fd5b81516133708161326d565b6001600160401b038116811461328257600080fd5b60006020828403121561343357600080fd5b81516133708161340c565b6001600160401b039390931683526001600160a01b0391909116602083015263ffffffff16604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b838110156134be5781516001600160e01b03191687529582019590820190600101613498565b509495945050505050565b6060815260006134f660608301600d81526c496e7374616e636553746f726560981b602082015260400190565b82810360208401526135088186613484565b9150506001600160401b03831660408301529392505050565b6060815260006134f660608301600d81526c213ab7323632a6b0b730b3b2b960991b602082015260400190565b6060815260006134f6606083016008815267496e7374616e636560c01b602082015260400190565b60608152600d60608201526c24b739ba30b731b2a0b236b4b760991b608082015260a0602082015260006135ad60a0830185613484565b90506001600160401b03831660408301529392505050565b6000602082840312156135d757600080fd5b81516133708161328556fea264697066735822122045be5241cde1c586969b297a6828de5583486637a3de97a1014a2dd42f89b91c64736f6c63430008140033",
8
+ "linkReferences": {
9
+ "contracts/type/ObjectType.sol": {
10
+ "ObjectTypeLib": [
11
+ {
12
+ "length": 20,
13
+ "start": 12281
14
+ },
15
+ {
16
+ "length": 20,
17
+ "start": 12401
18
+ },
19
+ {
20
+ "length": 20,
21
+ "start": 12460
22
+ },
23
+ {
24
+ "length": 20,
25
+ "start": 12519
26
+ },
27
+ {
28
+ "length": 20,
29
+ "start": 12578
30
+ },
31
+ {
32
+ "length": 20,
33
+ "start": 12637
34
+ },
35
+ {
36
+ "length": 20,
37
+ "start": 12696
38
+ },
39
+ {
40
+ "length": 20,
41
+ "start": 12755
42
+ },
43
+ {
44
+ "length": 20,
45
+ "start": 12814
46
+ },
47
+ {
48
+ "length": 20,
49
+ "start": 12873
50
+ }
51
+ ]
52
+ },
53
+ "contracts/type/RoleId.sol": {
54
+ "RoleIdLib": [
55
+ {
56
+ "length": 20,
57
+ "start": 3000
58
+ },
59
+ {
60
+ "length": 20,
61
+ "start": 3913
62
+ },
63
+ {
64
+ "length": 20,
65
+ "start": 4519
66
+ },
67
+ {
68
+ "length": 20,
69
+ "start": 5454
70
+ },
71
+ {
72
+ "length": 20,
73
+ "start": 5950
74
+ },
75
+ {
76
+ "length": 20,
77
+ "start": 6556
78
+ },
79
+ {
80
+ "length": 20,
81
+ "start": 7162
82
+ },
83
+ {
84
+ "length": 20,
85
+ "start": 7713
86
+ },
87
+ {
88
+ "length": 20,
89
+ "start": 8674
90
+ },
91
+ {
92
+ "length": 20,
93
+ "start": 9911
94
+ },
95
+ {
96
+ "length": 20,
97
+ "start": 11321
98
+ },
99
+ {
100
+ "length": 20,
101
+ "start": 11447
102
+ },
103
+ {
104
+ "length": 20,
105
+ "start": 11507
106
+ },
107
+ {
108
+ "length": 20,
109
+ "start": 11567
110
+ },
111
+ {
112
+ "length": 20,
113
+ "start": 11627
114
+ },
115
+ {
116
+ "length": 20,
117
+ "start": 11687
118
+ },
119
+ {
120
+ "length": 20,
121
+ "start": 11747
122
+ },
123
+ {
124
+ "length": 20,
125
+ "start": 11807
126
+ },
127
+ {
128
+ "length": 20,
129
+ "start": 11867
130
+ },
131
+ {
132
+ "length": 20,
133
+ "start": 11927
134
+ },
135
+ {
136
+ "length": 20,
137
+ "start": 11986
138
+ },
139
+ {
140
+ "length": 20,
141
+ "start": 12046
142
+ },
143
+ {
144
+ "length": 20,
145
+ "start": 12105
146
+ },
147
+ {
148
+ "length": 20,
149
+ "start": 12163
150
+ },
151
+ {
152
+ "length": 20,
153
+ "start": 12222
154
+ },
155
+ {
156
+ "length": 20,
157
+ "start": 12933
158
+ }
159
+ ]
160
+ }
161
+ },
162
+ "deployedLinkReferences": {
163
+ "contracts/type/ObjectType.sol": {
164
+ "ObjectTypeLib": [
165
+ {
166
+ "length": 20,
167
+ "start": 12223
168
+ },
169
+ {
170
+ "length": 20,
171
+ "start": 12343
172
+ },
173
+ {
174
+ "length": 20,
175
+ "start": 12402
176
+ },
177
+ {
178
+ "length": 20,
179
+ "start": 12461
180
+ },
181
+ {
182
+ "length": 20,
183
+ "start": 12520
184
+ },
185
+ {
186
+ "length": 20,
187
+ "start": 12579
188
+ },
189
+ {
190
+ "length": 20,
191
+ "start": 12638
192
+ },
193
+ {
194
+ "length": 20,
195
+ "start": 12697
196
+ },
197
+ {
198
+ "length": 20,
199
+ "start": 12756
200
+ },
201
+ {
202
+ "length": 20,
203
+ "start": 12815
204
+ }
205
+ ]
206
+ },
207
+ "contracts/type/RoleId.sol": {
208
+ "RoleIdLib": [
209
+ {
210
+ "length": 20,
211
+ "start": 2942
212
+ },
213
+ {
214
+ "length": 20,
215
+ "start": 3855
216
+ },
217
+ {
218
+ "length": 20,
219
+ "start": 4461
220
+ },
221
+ {
222
+ "length": 20,
223
+ "start": 5396
224
+ },
225
+ {
226
+ "length": 20,
227
+ "start": 5892
228
+ },
229
+ {
230
+ "length": 20,
231
+ "start": 6498
232
+ },
233
+ {
234
+ "length": 20,
235
+ "start": 7104
236
+ },
237
+ {
238
+ "length": 20,
239
+ "start": 7655
240
+ },
241
+ {
242
+ "length": 20,
243
+ "start": 8616
244
+ },
245
+ {
246
+ "length": 20,
247
+ "start": 9853
248
+ },
249
+ {
250
+ "length": 20,
251
+ "start": 11263
252
+ },
253
+ {
254
+ "length": 20,
255
+ "start": 11389
256
+ },
257
+ {
258
+ "length": 20,
259
+ "start": 11449
260
+ },
261
+ {
262
+ "length": 20,
263
+ "start": 11509
264
+ },
265
+ {
266
+ "length": 20,
267
+ "start": 11569
268
+ },
269
+ {
270
+ "length": 20,
271
+ "start": 11629
272
+ },
273
+ {
274
+ "length": 20,
275
+ "start": 11689
276
+ },
277
+ {
278
+ "length": 20,
279
+ "start": 11749
280
+ },
281
+ {
282
+ "length": 20,
283
+ "start": 11809
284
+ },
285
+ {
286
+ "length": 20,
287
+ "start": 11869
288
+ },
289
+ {
290
+ "length": 20,
291
+ "start": 11928
292
+ },
293
+ {
294
+ "length": 20,
295
+ "start": 11988
296
+ },
297
+ {
298
+ "length": 20,
299
+ "start": 12047
300
+ },
301
+ {
302
+ "length": 20,
303
+ "start": 12105
304
+ },
305
+ {
306
+ "length": 20,
307
+ "start": 12164
308
+ },
309
+ {
310
+ "length": 20,
311
+ "start": 12875
312
+ }
313
+ ]
314
+ }
315
+ }
316
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/7e79b5761ea364962cf7ad9282b8c4ba.json"
4
+ }