@etherisc/gif-next 0.0.2-e876b87-961 → 0.0.2-e8a628e-326

Sign up to get free protection for your applications and to get access to all the features.
Files changed (529) hide show
  1. package/README.md +90 -7
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1075 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +790 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +843 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +640 -269
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1289 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +202 -5
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +409 -33
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
  17. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +525 -213
  19. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +179 -19
  21. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +246 -16
  23. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +420 -27
  25. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +132 -290
  27. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +381 -46
  29. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +64 -163
  31. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +585 -231
  33. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +170 -78
  35. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +44 -125
  37. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +401 -78
  39. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +1 -1
  40. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +1 -1
  41. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +160 -214
  42. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +1 -1
  43. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +380 -45
  44. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +1 -1
  45. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +308 -327
  46. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +1 -1
  47. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +380 -45
  48. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +1 -1
  49. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +1 -1
  50. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +215 -247
  51. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +1 -1
  54. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +95 -155
  55. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +1 -1
  56. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +278 -223
  57. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +1 -1
  60. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +944 -454
  61. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
  63. package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
  64. package/artifacts/contracts/instance/BaseStore.sol/BaseStore.json +498 -0
  65. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
  66. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +193 -45
  67. package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +4 -0
  68. package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.json +470 -0
  69. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  70. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +541 -50
  71. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  72. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +407 -17
  73. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  74. package/artifacts/contracts/instance/Instance.sol/Instance.json +606 -106
  75. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
  76. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +990 -359
  77. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
  78. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +337 -61
  79. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  80. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1069 -481
  81. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  82. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +424 -81
  83. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  84. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +102 -52
  85. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
  86. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +648 -948
  87. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
  88. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +1759 -0
  89. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  90. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
  91. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
  92. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +8 -8
  93. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
  94. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
  95. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
  96. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
  97. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +2 -2
  98. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
  99. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +16 -5
  100. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  101. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  102. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  103. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  104. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  105. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  106. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  107. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
  108. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
  109. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +83 -165
  110. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
  111. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +379 -47
  112. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
  113. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
  114. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +48 -64
  115. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
  116. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +56 -3
  117. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
  118. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +67 -101
  119. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
  120. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +157 -81
  121. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
  122. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +134 -46
  123. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
  124. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +106 -163
  125. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
  126. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +380 -45
  127. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
  128. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +317 -344
  129. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
  130. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +125 -93
  131. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
  132. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +219 -146
  133. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  134. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +63 -118
  135. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
  136. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +380 -214
  137. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
  138. package/artifacts/contracts/pool/Pool.sol/Pool.json +76 -149
  139. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  140. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
  141. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
  142. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +621 -413
  143. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  144. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +168 -68
  145. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
  146. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +327 -62
  147. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
  148. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +123 -43
  149. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
  150. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +199 -213
  151. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
  152. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +380 -45
  153. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
  154. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +294 -189
  155. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
  156. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +134 -86
  157. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
  158. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +268 -10
  159. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
  160. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +181 -19
  161. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
  162. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +167 -56
  163. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
  164. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +77 -3
  165. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  166. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +175 -171
  167. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +1 -1
  168. package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +258 -22
  169. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
  170. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +296 -194
  171. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  172. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
  173. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
  174. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +150 -78
  175. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
  176. package/artifacts/contracts/product/PricingService.sol/PricingService.json +139 -114
  177. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
  178. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +112 -60
  179. package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
  180. package/artifacts/contracts/product/Product.sol/Product.json +193 -207
  181. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +1 -1
  182. package/artifacts/contracts/product/RiskService.sol/RiskService.json +338 -87
  183. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +1 -1
  184. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +123 -43
  185. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  186. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
  187. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  188. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +78 -19
  189. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  190. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +56 -3
  191. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  192. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  193. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  194. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  195. package/artifacts/contracts/registry/Registry.sol/Registry.json +116 -57
  196. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
  197. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +727 -453
  198. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  199. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1074 -0
  200. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  201. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +89 -37
  202. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  203. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +99 -39
  204. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  205. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2152 -0
  206. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
  207. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +2 -2
  208. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
  209. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +386 -64
  210. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
  211. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +437 -26
  212. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  213. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +120 -60
  214. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
  215. package/artifacts/contracts/shared/Component.sol/Component.json +66 -86
  216. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
  217. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +308 -542
  218. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
  219. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +136 -84
  220. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +1 -1
  221. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +544 -4
  222. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  223. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  224. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  225. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  226. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  227. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  228. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
  229. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +48 -50
  230. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
  231. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +171 -356
  232. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
  233. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +48 -64
  234. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  235. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +43 -6
  236. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  237. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  238. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -0
  239. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  240. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  241. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +139 -1
  242. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  243. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  244. package/artifacts/contracts/shared/IService.sol/IService.json +56 -3
  245. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
  246. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +2 -2
  247. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
  248. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +66 -100
  249. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  250. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +43 -6
  251. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  252. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
  253. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
  254. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  255. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +21 -2
  256. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  257. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
  258. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  259. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +137 -62
  260. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  261. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
  262. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  263. package/artifacts/contracts/shared/Service.sol/Service.json +51 -11
  264. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  265. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +289 -112
  266. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  267. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  268. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +1 -1
  269. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +70 -30
  270. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
  271. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1446 -154
  272. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
  273. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +214 -110
  274. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
  275. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
  276. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
  277. package/artifacts/contracts/staking/Staking.sol/Staking.json +1583 -286
  278. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  279. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
  280. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
  281. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +140 -69
  282. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
  283. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +294 -177
  284. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
  285. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +257 -162
  286. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
  287. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +102 -46
  288. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
  289. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +1632 -818
  290. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
  291. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +309 -0
  292. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
  293. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +160 -88
  294. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  295. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
  296. package/artifacts/contracts/type/Amount.sol/AmountLib.json +11 -11
  297. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  298. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +45 -19
  299. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
  300. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
  301. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
  302. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +2 -2
  303. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  304. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
  305. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
  306. package/artifacts/contracts/type/Fee.sol/FeeLib.json +94 -38
  307. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
  308. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
  309. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  310. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  311. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
  312. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +23 -4
  313. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  314. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
  315. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  316. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +33 -31
  317. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
  318. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +2 -2
  319. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
  320. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +2 -2
  321. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
  322. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
  323. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
  324. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +69 -7
  325. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
  326. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +42 -157
  327. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
  328. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +45 -2
  329. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
  330. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +21 -2
  331. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
  332. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +2 -2
  333. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
  334. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
  335. package/artifacts/contracts/type/String.sol/StrLib.json +50 -2
  336. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
  337. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +3 -3
  338. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
  339. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +61 -37
  340. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
  341. package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -21
  342. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
  343. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +101 -2
  344. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
  345. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +10 -0
  346. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  347. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +79 -25
  348. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  349. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +15 -2
  350. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
  351. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +10 -0
  352. package/contracts/accounting/AccountingService.sol +274 -0
  353. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  354. package/contracts/accounting/IAccountingService.sol +47 -0
  355. package/contracts/authorization/AccessAdmin.sol +429 -245
  356. package/contracts/authorization/AccessAdminLib.sol +396 -0
  357. package/contracts/authorization/AccessManagerCloneable.sol +146 -4
  358. package/contracts/authorization/Authorization.sol +142 -262
  359. package/contracts/authorization/IAccess.sol +25 -7
  360. package/contracts/authorization/IAccessAdmin.sol +87 -80
  361. package/contracts/authorization/IAuthorization.sol +9 -43
  362. package/contracts/authorization/IServiceAuthorization.sol +55 -17
  363. package/contracts/authorization/ServiceAuthorization.sol +248 -34
  364. package/contracts/distribution/BasicDistribution.sol +18 -16
  365. package/contracts/distribution/BasicDistributionAuthorization.sol +30 -10
  366. package/contracts/distribution/Distribution.sol +43 -81
  367. package/contracts/distribution/DistributionService.sol +192 -99
  368. package/contracts/distribution/DistributionServiceManager.sol +1 -1
  369. package/contracts/distribution/IDistributionComponent.sol +3 -10
  370. package/contracts/distribution/IDistributionService.sol +38 -24
  371. package/contracts/examples/fire/FirePool.sol +21 -8
  372. package/contracts/examples/fire/FirePoolAuthorization.sol +2 -1
  373. package/contracts/examples/fire/FireProduct.sol +38 -20
  374. package/contracts/examples/fire/FireProductAuthorization.sol +2 -1
  375. package/contracts/examples/unpermissioned/SimpleDistribution.sol +39 -8
  376. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  377. package/contracts/examples/unpermissioned/SimpleOracle.sol +4 -8
  378. package/contracts/examples/unpermissioned/SimplePool.sol +32 -6
  379. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  380. package/contracts/examples/unpermissioned/SimpleProduct.sol +132 -46
  381. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  382. package/contracts/instance/BaseStore.sol +97 -0
  383. package/contracts/instance/BundleSet.sol +42 -38
  384. package/contracts/instance/IBaseStore.sol +43 -0
  385. package/contracts/instance/IInstance.sol +109 -19
  386. package/contracts/instance/IInstanceService.sol +61 -14
  387. package/contracts/instance/Instance.sol +191 -65
  388. package/contracts/instance/InstanceAdmin.sol +271 -171
  389. package/contracts/instance/InstanceAuthorizationV3.sol +139 -58
  390. package/contracts/instance/InstanceReader.sol +451 -312
  391. package/contracts/instance/InstanceService.sol +315 -214
  392. package/contracts/instance/InstanceServiceManager.sol +1 -1
  393. package/contracts/instance/InstanceStore.sol +14 -30
  394. package/contracts/instance/ProductStore.sol +110 -0
  395. package/contracts/instance/RiskSet.sol +126 -0
  396. package/contracts/instance/TargetNames.sol +10 -0
  397. package/contracts/instance/base/BalanceStore.sol +4 -6
  398. package/contracts/instance/base/ObjectCounter.sol +1 -2
  399. package/contracts/instance/base/ObjectLifecycle.sol +6 -8
  400. package/contracts/instance/base/ObjectSet.sol +31 -33
  401. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  402. package/contracts/instance/module/IBundle.sol +6 -5
  403. package/contracts/instance/module/IComponents.sol +20 -9
  404. package/contracts/instance/module/IDistribution.sol +21 -8
  405. package/contracts/instance/module/IPolicy.sol +28 -7
  406. package/contracts/instance/module/IRisk.sol +5 -0
  407. package/contracts/oracle/BasicOracle.sol +2 -4
  408. package/contracts/oracle/BasicOracleAuthorization.sol +15 -8
  409. package/contracts/oracle/IOracle.sol +9 -4
  410. package/contracts/oracle/Oracle.sol +3 -5
  411. package/contracts/oracle/OracleService.sol +98 -79
  412. package/contracts/oracle/OracleServiceManager.sol +1 -1
  413. package/contracts/pool/BasicPool.sol +25 -17
  414. package/contracts/pool/BasicPoolAuthorization.sol +34 -10
  415. package/contracts/pool/BundleService.sol +75 -182
  416. package/contracts/pool/BundleServiceManager.sol +1 -1
  417. package/contracts/pool/IBundleService.sol +28 -55
  418. package/contracts/pool/IPoolComponent.sol +1 -7
  419. package/contracts/pool/IPoolService.sol +65 -62
  420. package/contracts/pool/Pool.sol +109 -111
  421. package/contracts/pool/PoolLib.sol +341 -0
  422. package/contracts/pool/PoolService.sol +299 -229
  423. package/contracts/pool/PoolServiceManager.sol +1 -1
  424. package/contracts/product/ApplicationService.sol +93 -25
  425. package/contracts/product/ApplicationServiceManager.sol +1 -1
  426. package/contracts/product/BasicProduct.sol +9 -13
  427. package/contracts/product/BasicProductAuthorization.sol +32 -11
  428. package/contracts/product/ClaimService.sol +221 -207
  429. package/contracts/product/ClaimServiceManager.sol +1 -1
  430. package/contracts/product/IApplicationService.sol +28 -3
  431. package/contracts/product/IClaimService.sol +18 -5
  432. package/contracts/product/IPolicyService.sol +34 -12
  433. package/contracts/product/IPricingService.sol +1 -0
  434. package/contracts/product/IProductComponent.sol +4 -1
  435. package/contracts/product/IRiskService.sol +25 -10
  436. package/contracts/product/PolicyService.sol +258 -304
  437. package/contracts/product/PolicyServiceLib.sol +139 -0
  438. package/contracts/product/PolicyServiceManager.sol +1 -1
  439. package/contracts/product/PricingService.sol +52 -46
  440. package/contracts/product/PricingServiceManager.sol +3 -3
  441. package/contracts/product/Product.sol +104 -66
  442. package/contracts/product/RiskService.sol +128 -34
  443. package/contracts/product/RiskServiceManager.sol +1 -1
  444. package/contracts/registry/ChainNft.sol +4 -2
  445. package/contracts/registry/IRegistry.sol +25 -24
  446. package/contracts/registry/IRelease.sol +29 -0
  447. package/contracts/registry/Registry.sol +31 -12
  448. package/contracts/registry/RegistryAdmin.sol +107 -364
  449. package/contracts/registry/RegistryAuthorization.sol +336 -0
  450. package/contracts/registry/RegistryService.sol +4 -4
  451. package/contracts/registry/RegistryServiceManager.sol +1 -1
  452. package/contracts/registry/ReleaseAdmin.sol +195 -0
  453. package/contracts/registry/ReleaseLifecycle.sol +2 -0
  454. package/contracts/registry/ReleaseRegistry.sol +158 -134
  455. package/contracts/registry/ServiceAuthorizationV3.sol +200 -52
  456. package/contracts/registry/TokenRegistry.sol +61 -59
  457. package/contracts/shared/Component.sol +56 -113
  458. package/contracts/shared/ComponentService.sol +392 -406
  459. package/contracts/shared/ComponentServiceManager.sol +1 -1
  460. package/contracts/shared/ContractLib.sol +277 -3
  461. package/contracts/shared/IComponent.sol +2 -18
  462. package/contracts/shared/IComponentService.sol +28 -38
  463. package/contracts/shared/IInstanceLinkedComponent.sol +0 -11
  464. package/contracts/shared/IKeyValueStore.sol +9 -1
  465. package/contracts/shared/INftOwnable.sol +2 -0
  466. package/contracts/shared/IRegisterable.sol +15 -5
  467. package/contracts/shared/IService.sol +3 -5
  468. package/contracts/shared/InitializableERC165.sol +9 -1
  469. package/contracts/shared/InstanceLinkedComponent.sol +8 -27
  470. package/contracts/shared/KeyValueStore.sol +3 -3
  471. package/contracts/shared/NftOwnable.sol +8 -6
  472. package/contracts/shared/PolicyHolder.sol +4 -3
  473. package/contracts/shared/Registerable.sol +41 -20
  474. package/contracts/shared/RegistryLinked.sol +7 -13
  475. package/contracts/shared/Service.sol +13 -30
  476. package/contracts/shared/TokenHandler.sol +264 -105
  477. package/contracts/shared/TokenHandlerDeployerLib.sol +10 -2
  478. package/contracts/staking/IStaking.sol +271 -72
  479. package/contracts/staking/IStakingService.sol +45 -75
  480. package/contracts/staking/ITargetLimitHandler.sol +17 -0
  481. package/contracts/staking/Staking.sol +521 -220
  482. package/contracts/staking/{StakeManagerLib.sol → StakingLib.sol} +55 -84
  483. package/contracts/staking/StakingManager.sol +4 -3
  484. package/contracts/staking/StakingReader.sol +58 -77
  485. package/contracts/staking/StakingService.sol +62 -148
  486. package/contracts/staking/StakingServiceManager.sol +6 -4
  487. package/contracts/staking/StakingStore.sol +1093 -330
  488. package/contracts/staking/TargetHandler.sol +132 -0
  489. package/contracts/staking/TargetManagerLib.sol +69 -46
  490. package/contracts/type/Amount.sol +4 -0
  491. package/contracts/type/Blocknumber.sol +15 -15
  492. package/contracts/type/ChainId.sol +101 -0
  493. package/contracts/type/Fee.sol +8 -8
  494. package/contracts/type/Key32.sol +2 -2
  495. package/contracts/type/Key32Set.sol +62 -0
  496. package/contracts/type/NftId.sol +6 -0
  497. package/contracts/type/ObjectType.sol +69 -38
  498. package/contracts/type/RiskId.sol +26 -8
  499. package/contracts/type/RoleId.sol +63 -45
  500. package/contracts/type/Seconds.sol +19 -0
  501. package/contracts/type/Selector.sol +5 -0
  502. package/contracts/type/String.sol +12 -0
  503. package/contracts/type/Timestamp.sol +4 -7
  504. package/contracts/type/UFixed.sol +35 -127
  505. package/contracts/type/Version.sol +54 -5
  506. package/contracts/upgradeability/IVersionable.sol +3 -0
  507. package/contracts/upgradeability/ProxyManager.sol +26 -12
  508. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +12 -2
  509. package/contracts/upgradeability/Versionable.sol +6 -3
  510. package/package.json +4 -4
  511. package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.dbg.json +0 -4
  512. package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.json +0 -1196
  513. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  514. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -129
  515. package/artifacts/contracts/shared/ComponentServiceHelperLib.sol/ComponentServiceHelperLib.dbg.json +0 -4
  516. package/artifacts/contracts/shared/ComponentServiceHelperLib.sol/ComponentServiceHelperLib.json +0 -206
  517. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +0 -4
  518. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +0 -474
  519. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +0 -4
  520. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +0 -440
  521. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +0 -4
  522. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +0 -205
  523. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +0 -4
  524. package/artifacts/contracts/type/UFixed.sol/MathLib.json +0 -16
  525. package/contracts/authorization/ReleaseAccessManager.sol +0 -38
  526. package/contracts/instance/module/IAccess.sol +0 -46
  527. package/contracts/shared/ComponentServiceHelperLib.sol +0 -118
  528. package/contracts/shared/ComponentVerifyingService.sol +0 -126
  529. package/contracts/staking/StakingLifecycle.sol +0 -23
@@ -14,6 +14,61 @@
14
14
  "stateMutability": "nonpayable",
15
15
  "type": "constructor"
16
16
  },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "string",
21
+ "name": "commitHash",
22
+ "type": "string"
23
+ }
24
+ ],
25
+ "name": "ErrorAuthorizationCommitHashInvalid",
26
+ "type": "error"
27
+ },
28
+ {
29
+ "inputs": [],
30
+ "name": "ErrorAuthorizationMainTargetNameEmpty",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "uint8",
37
+ "name": "release",
38
+ "type": "uint8"
39
+ }
40
+ ],
41
+ "name": "ErrorAuthorizationReleaseInvalid",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [],
46
+ "name": "ErrorAuthorizationTargetDomainZero",
47
+ "type": "error"
48
+ },
49
+ {
50
+ "inputs": [],
51
+ "name": "InvalidInitialization",
52
+ "type": "error"
53
+ },
54
+ {
55
+ "inputs": [],
56
+ "name": "NotInitializing",
57
+ "type": "error"
58
+ },
59
+ {
60
+ "anonymous": false,
61
+ "inputs": [
62
+ {
63
+ "indexed": false,
64
+ "internalType": "uint64",
65
+ "name": "version",
66
+ "type": "uint64"
67
+ }
68
+ ],
69
+ "name": "Initialized",
70
+ "type": "event"
71
+ },
17
72
  {
18
73
  "inputs": [],
19
74
  "name": "COMMIT_HASH",
@@ -42,12 +97,12 @@
42
97
  },
43
98
  {
44
99
  "inputs": [],
45
- "name": "GIF_INITIAL_VERSION",
100
+ "name": "DOMAIN",
46
101
  "outputs": [
47
102
  {
48
- "internalType": "uint256",
103
+ "internalType": "ObjectType",
49
104
  "name": "",
50
- "type": "uint256"
105
+ "type": "uint8"
51
106
  }
52
107
  ],
53
108
  "stateMutability": "view",
@@ -55,7 +110,7 @@
55
110
  },
56
111
  {
57
112
  "inputs": [],
58
- "name": "VERSION",
113
+ "name": "GIF_INITIAL_VERSION",
59
114
  "outputs": [
60
115
  {
61
116
  "internalType": "uint256",
@@ -67,19 +122,26 @@
67
122
  "type": "function"
68
123
  },
69
124
  {
70
- "inputs": [
125
+ "inputs": [],
126
+ "name": "ROLE_NAME_SUFFIX",
127
+ "outputs": [
71
128
  {
72
- "internalType": "ObjectType",
73
- "name": "serviceDomain",
74
- "type": "uint8"
129
+ "internalType": "string",
130
+ "name": "",
131
+ "type": "string"
75
132
  }
76
133
  ],
77
- "name": "getAuthorizedDomains",
134
+ "stateMutability": "view",
135
+ "type": "function"
136
+ },
137
+ {
138
+ "inputs": [],
139
+ "name": "SERVICE_NAME_SUFFIX",
78
140
  "outputs": [
79
141
  {
80
- "internalType": "ObjectType[]",
81
- "name": "authorizatedDomains",
82
- "type": "uint8[]"
142
+ "internalType": "string",
143
+ "name": "",
144
+ "type": "string"
83
145
  }
84
146
  ],
85
147
  "stateMutability": "view",
@@ -88,14 +150,14 @@
88
150
  {
89
151
  "inputs": [
90
152
  {
91
- "internalType": "ObjectType",
92
- "name": "serviceDomain",
93
- "type": "uint8"
153
+ "internalType": "Str",
154
+ "name": "target",
155
+ "type": "bytes32"
94
156
  },
95
157
  {
96
- "internalType": "ObjectType",
97
- "name": "authorizedDomain",
98
- "type": "uint8"
158
+ "internalType": "RoleId",
159
+ "name": "roleId",
160
+ "type": "uint64"
99
161
  }
100
162
  ],
101
163
  "name": "getAuthorizedFunctions",
@@ -126,6 +188,25 @@
126
188
  "stateMutability": "view",
127
189
  "type": "function"
128
190
  },
191
+ {
192
+ "inputs": [
193
+ {
194
+ "internalType": "Str",
195
+ "name": "target",
196
+ "type": "bytes32"
197
+ }
198
+ ],
199
+ "name": "getAuthorizedRoles",
200
+ "outputs": [
201
+ {
202
+ "internalType": "RoleId[]",
203
+ "name": "roleIds",
204
+ "type": "uint64[]"
205
+ }
206
+ ],
207
+ "stateMutability": "view",
208
+ "type": "function"
209
+ },
129
210
  {
130
211
  "inputs": [],
131
212
  "name": "getCommitHash",
@@ -139,6 +220,45 @@
139
220
  "stateMutability": "view",
140
221
  "type": "function"
141
222
  },
223
+ {
224
+ "inputs": [],
225
+ "name": "getDomain",
226
+ "outputs": [
227
+ {
228
+ "internalType": "ObjectType",
229
+ "name": "targetDomain",
230
+ "type": "uint8"
231
+ }
232
+ ],
233
+ "stateMutability": "view",
234
+ "type": "function"
235
+ },
236
+ {
237
+ "inputs": [],
238
+ "name": "getMainTarget",
239
+ "outputs": [
240
+ {
241
+ "internalType": "Str",
242
+ "name": "target",
243
+ "type": "bytes32"
244
+ }
245
+ ],
246
+ "stateMutability": "view",
247
+ "type": "function"
248
+ },
249
+ {
250
+ "inputs": [],
251
+ "name": "getMainTargetName",
252
+ "outputs": [
253
+ {
254
+ "internalType": "string",
255
+ "name": "name",
256
+ "type": "string"
257
+ }
258
+ ],
259
+ "stateMutability": "view",
260
+ "type": "function"
261
+ },
142
262
  {
143
263
  "inputs": [],
144
264
  "name": "getRelease",
@@ -152,6 +272,89 @@
152
272
  "stateMutability": "view",
153
273
  "type": "function"
154
274
  },
275
+ {
276
+ "inputs": [
277
+ {
278
+ "internalType": "RoleId",
279
+ "name": "roleId",
280
+ "type": "uint64"
281
+ }
282
+ ],
283
+ "name": "getRoleInfo",
284
+ "outputs": [
285
+ {
286
+ "components": [
287
+ {
288
+ "internalType": "RoleId",
289
+ "name": "adminRoleId",
290
+ "type": "uint64"
291
+ },
292
+ {
293
+ "internalType": "enum IAccess.RoleType",
294
+ "name": "roleType",
295
+ "type": "uint8"
296
+ },
297
+ {
298
+ "internalType": "uint32",
299
+ "name": "maxMemberCount",
300
+ "type": "uint32"
301
+ },
302
+ {
303
+ "internalType": "Timestamp",
304
+ "name": "createdAt",
305
+ "type": "uint40"
306
+ },
307
+ {
308
+ "internalType": "Timestamp",
309
+ "name": "pausedAt",
310
+ "type": "uint40"
311
+ },
312
+ {
313
+ "internalType": "Str",
314
+ "name": "name",
315
+ "type": "bytes32"
316
+ }
317
+ ],
318
+ "internalType": "struct IAccess.RoleInfo",
319
+ "name": "info",
320
+ "type": "tuple"
321
+ }
322
+ ],
323
+ "stateMutability": "view",
324
+ "type": "function"
325
+ },
326
+ {
327
+ "inputs": [
328
+ {
329
+ "internalType": "RoleId",
330
+ "name": "roleId",
331
+ "type": "uint64"
332
+ }
333
+ ],
334
+ "name": "getRoleName",
335
+ "outputs": [
336
+ {
337
+ "internalType": "string",
338
+ "name": "roleName",
339
+ "type": "string"
340
+ }
341
+ ],
342
+ "stateMutability": "view",
343
+ "type": "function"
344
+ },
345
+ {
346
+ "inputs": [],
347
+ "name": "getRoles",
348
+ "outputs": [
349
+ {
350
+ "internalType": "RoleId[]",
351
+ "name": "roles",
352
+ "type": "uint64[]"
353
+ }
354
+ ],
355
+ "stateMutability": "view",
356
+ "type": "function"
357
+ },
155
358
  {
156
359
  "inputs": [
157
360
  {
@@ -203,6 +406,82 @@
203
406
  "stateMutability": "view",
204
407
  "type": "function"
205
408
  },
409
+ {
410
+ "inputs": [
411
+ {
412
+ "internalType": "ObjectType",
413
+ "name": "serviceDomain",
414
+ "type": "uint8"
415
+ }
416
+ ],
417
+ "name": "getServiceRole",
418
+ "outputs": [
419
+ {
420
+ "internalType": "RoleId",
421
+ "name": "serviceRoleId",
422
+ "type": "uint64"
423
+ }
424
+ ],
425
+ "stateMutability": "view",
426
+ "type": "function"
427
+ },
428
+ {
429
+ "inputs": [
430
+ {
431
+ "internalType": "ObjectType",
432
+ "name": "serviceDomain",
433
+ "type": "uint8"
434
+ }
435
+ ],
436
+ "name": "getServiceTarget",
437
+ "outputs": [
438
+ {
439
+ "internalType": "Str",
440
+ "name": "target",
441
+ "type": "bytes32"
442
+ }
443
+ ],
444
+ "stateMutability": "view",
445
+ "type": "function"
446
+ },
447
+ {
448
+ "inputs": [
449
+ {
450
+ "internalType": "Str",
451
+ "name": "target",
452
+ "type": "bytes32"
453
+ }
454
+ ],
455
+ "name": "getTargetRole",
456
+ "outputs": [
457
+ {
458
+ "internalType": "RoleId",
459
+ "name": "roleId",
460
+ "type": "uint64"
461
+ }
462
+ ],
463
+ "stateMutability": "view",
464
+ "type": "function"
465
+ },
466
+ {
467
+ "inputs": [
468
+ {
469
+ "internalType": "RoleId",
470
+ "name": "roleId",
471
+ "type": "uint64"
472
+ }
473
+ ],
474
+ "name": "roleExists",
475
+ "outputs": [
476
+ {
477
+ "internalType": "bool",
478
+ "name": "exists",
479
+ "type": "bool"
480
+ }
481
+ ],
482
+ "stateMutability": "view",
483
+ "type": "function"
484
+ },
206
485
  {
207
486
  "inputs": [
208
487
  {
@@ -219,18 +498,62 @@
219
498
  "type": "bool"
220
499
  }
221
500
  ],
222
- "stateMutability": "pure",
501
+ "stateMutability": "view",
223
502
  "type": "function"
224
503
  }
225
504
  ],
226
- "bytecode": "0x60a060405234801561000f575f80fd5b5060405161194638038061194683398101604081905261002e91610eb9565b806003602882511461004257610042610f69565b600381101561005357610053610f69565b5f61005e8382611001565b50608081905261049c6001805480820182557fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf660208083048201805460ff601f95861661010090810a828102199093166002938402179093558184527f679795a0195a1b76cdebb7c51d74e058aee92919b8c3389af86ef24535e8a28c80546001600160a01b031990811689179091558754808901895585810487018054918916860a8085021990921660039283021790557f88601476d11616a71c5be67555bd1dff4b1cbf21533d2669b768b61518cfe1c3805483169094179093558754808901895585810487018054600a928a16870a838102908602199091161790557fd3604db978f6137b0d18816b77b2ce810487a3af08a922e0b184963be5f3adfc805483169094179093558754808901895585810487018054600b928a16870a838102908602199091161790557fab9952baf6478d8cfb7253ce86a6c53a7b7549582c76210b1581ae682b7e556f805460049084161790558854808a018a5586810488018054600e928b16880a92830292860219169190911790557f20de3dd312970f46a1d560f6c70f0e5bd10e638b9bb3836368f28838c607ea3e805460059084161790558854808a018a5586810488018054601a928b16880a92830292860219169190911790557f2cc0eb4b3ec5bf92d601b8938793073ef9a83f91d7e5985435824ae87524336a805460069084161790558854808a018a5586810488018054918a16870a808b02908602199092169190911790557f5859c04fd0363b95e824b76bab6d064bf500fe171eea5114a198e11ac4dfbbf0805460079084161790558854808a018a5586810488018054600f928b16880a92830292860219169190911790557f0353061a88c0592f32d7468be32ff6e5e91e49a3ea3ffb3c4fbe417c36501ba2805460089084161790558854808a018a5586810488018054600d928b16880a838102908702199091161790557feb5d92aa5b18af35c2d0c0d14a538792cf1a66aa06ab9dae49d32446e9063ca1805460099085161790558954808b018b5587810489018054600c928c16890a838102908802199091161790557fbd814762a7e35d5c162a7570d14baa68bd622cabb1ad83d40dd70f8a88aa67c0805485169096179095558954808b018b55878104890180546015928c16890a92830292870219169190911790557f44f9494ddace41673149b1ce2120e2a8dc5880bba93ff68e6b6c883c57a0c695805484169092179091558854808a018a55868104880180546017928b16880a92830292860219169190911790557ff3118d41e0deec621ee3de85ec11bfcf8aee617b34cd0b5f1496acc8de2cbdcc805483169094179093558754808901909855938704909401805460149790961690920a868102940219909416929092179091555f929092527f50d9dffd10eb4437a15e8bb1c50afee98ea231805f136fb9a057e7aaeec448ae8054909216179055565b6104a46104ae565b505050611159565b565b6104b66104d6565b6104be610752565b6104c6610a1e565b6104ce610aa3565b6104ac610bab565b5f610539600260145b60ff9182165f8181526003602090815260408083208054600181018255908452828420838204018054968816601f9092166101000a8281029802199096169690961790945591815260048252828120938152929052902090565b905061057981635c992fed60e01b6040518060400160405280600e81526020016d7265676973746572506f6c69637960901b815250610cc860201b60201c565b6105856002601f6104df565b90506105c58163c2bf08c860e01b6040518060400160405280600e81526020016d726567697374657242756e646c6560901b815250610cc860201b60201c565b6105d16002600b6104df565b905061061281635d96628960e01b6040518060400160405280600f81526020016e1c9959da5cdd195c941c9bd91d58dd608a1b815250610cc860201b60201c565b60408051808201909152601e81527f726567697374657250726f647563744c696e6b6564436f6d706f6e656e740000602082015261065a908290631fa14e4960e11b90610cc8565b6106666002600e6104df565b90506106b5816357a8fba760e01b6040518060400160405280601381526020017f72656769737465724469737472696275746f7200000000000000000000000000815250610cc860201b60201c565b6106c260025b600a6104df565b90506107048163026bc43b60e01b6040518060400160405280601081526020016f7265676973746572496e7374616e636560801b815250610cc860201b60201c565b610710600260036104df565b905061074f81638105cc7f60e01b6040518060400160405280600d81526020016c72656769737465725374616b6560981b815250610cc860201b60201c565b50565b5f61075d60036106bb565b90506107ac816381d9b45f60e01b6040518060400160405280601481526020017f637265617465496e7374616e6365546172676574000000000000000000000000815250610cc860201b60201c565b60408051808201909152601881527f736574496e7374616e63654c6f636b696e67506572696f64000000000000000060208201526107f490829063db1e36e760e01b90610cc8565b60408051808201909152601581527f736574496e7374616e6365526577617264526174650000000000000000000000602082015261083c90829063545c994560e11b90610cc8565b60408051808201909152601c81527f726566696c6c496e7374616e63655265776172645265736572766573000000006020820152610884908290636f61deef60e11b90610cc8565b60408051808201909152601e81527f7769746864726177496e7374616e63655265776172645265736572766573000060208201526108cc9082906321ece65760e01b90610cc8565b6108d8600360636104df565b90506109108163756b30de60e01b6040518060400160405280600681526020016563726561746560d01b815250610cc860201b60201c565b6040805180820190915260058152647374616b6560d81b6020820152610940908290636c1e9dff60e01b90610cc8565b6040805180820190915260128152711c995cdd185ad9551bd3995dd5185c99d95d60721b602082015261097d90829063f67fef6d60e01b90610cc8565b60408051808201909152600d81526c7570646174655265776172647360981b60208201526109b590829063085031c560e11b90610cc8565b60408051808201909152600c81526b636c61696d5265776172647360a01b60208201526109ec9082906338cfbb0d60e11b90610cc8565b604080518082019091526007815266756e7374616b6560c81b602082015261074f908290636f52667960e11b90610cc8565b5f610a2c600e5b60156104df565b9050610a6981637950d0e260e01b6040518060400160405280600b81526020016a70726f6365737353616c6560a81b815250610cc860201b60201c565b60408051808201909152600f81526e1c1c9bd8d95cdcd49959995c9c985b608a1b602082015261074f90829063038f0f2560e11b90610cc8565b5f610aae600f610a25565b9050610aee816384d1f7cf60e01b6040518060400160405280600e81526020016d1b1bd8dad0dbdb1b185d195c985b60921b815250610cc860201b60201c565b6040805180820190915260118152701c995b19585cd950dbdb1b185d195c985b607a1b6020820152610b2a9082906332f9f3df60e01b90610cc8565b60408051808201909152600b81526a70726f6365737353616c6560a81b6020820152610b6090829063fb3bcd1f60e01b90610cc8565b610b6c600f60176104df565b905061074f8163db02f7d360e01b6040518060400160405280600d81526020016c1c1c9bd8d95cdcd4185e5bdd5d609a1b815250610cc860201b60201c565b5f610bb8601f600f6104df565b9050610bf08163e283b4a960e01b6040518060400160405280600681526020016563726561746560d01b815250610cc860201b60201c565b604080518082019091526005815264636c6f736560d81b6020820152610c20908290632aa6b2cb60e21b90610cc8565b60408051808201909152600e81526d1b1bd8dad0dbdb1b185d195c985b60921b6020820152610c59908290634adcf90960e01b90610cc8565b6040805180820190915260118152701c995b19585cd950dbdb1b185d195c985b607a1b6020820152610c9590829063ad328d9f60e01b90610cc8565b60408051808201909152600c81526b756e6c696e6b506f6c69637960a01b602082015261074f9082906301d90a6f60e61b905b60408051606081019182905263cdc23e6960e01b90915283908073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69610d0986606485016110bb565b602060405180830381865af4158015610d24573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d4891906110f0565b8152604051636b15ee8b60e01b81526001600160e01b03198616600482015260209091019073__$0904195350e4c23ecb1d51df0a32586dcd$__90636b15ee8b90602401602060405180830381865af4158015610da7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dcb9190611107565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610e21573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e459190611135565b64ffffffffff9081169091528254600181810185555f94855260209485902084516002909302019182559383015193018054604090930151909116640100000000026001600160481b031990921660e09390931c92909217179055505050565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610ec9575f80fd5b81516001600160401b03811115610ede575f80fd5b8201601f81018413610eee575f80fd5b80516001600160401b03811115610f0757610f07610ea5565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610f3557610f35610ea5565b604052818152828201602001861015610f4c575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b634e487b7160e01b5f52600160045260245ffd5b600181811c90821680610f9157607f821691505b602082108103610faf57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610ffc57805f5260205f20601f840160051c81016020851015610fda5750805b601f840160051c820191505b81811015610ff9575f8155600101610fe6565b50505b505050565b81516001600160401b0381111561101a5761101a610ea5565b61102e816110288454610f7d565b84610fb5565b6020601f821160018114611060575f83156110495750848201515b5f19600385901b1c1916600184901b178455610ff9565b5f84815260208120601f198516915b8281101561108f578785015182556020948501946001909201910161106f565b50848210156110ac57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215611100575f80fd5b5051919050565b5f60208284031215611117575f80fd5b81516001600160e01b03198116811461112e575f80fd5b9392505050565b5f60208284031215611145575f80fd5b815164ffffffffff8116811461112e575f80fd5b6080516107ce6111785f395f81816101d501526103b501526107ce5ff3fe608060405234801561000f575f80fd5b50600436106100b1575f3560e01c806384be8c001161006e57806384be8c0014610177578063b79e14941461018a578063da44d6af146101a0578063e8ecdb36146101a8578063fef30334146101c8578063ffa1ad74146101d0575f80fd5b806301ffc9a7146100b557806313efdd7a146100dd5780633a526cd41461012057806368c55b1314610140578063694ca5d31461014857806376b707b71461015d575b5f80fd5b6100c86100c33660046105ae565b6101f7565b60405190151581526020015b60405180910390f35b6101086100eb3660046105ed565b60ff165f908152600260205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016100d4565b61013361012e3660046105ed565b61022d565b6040516100d49190610608565b6101336102ad565b610150610320565b6040516100d4919061064d565b6101656103a6565b60405160ff90911681526020016100d4565b610165610185366004610682565b61043e565b610192602881565b6040519081526020016100d4565b610192600381565b6101bb6101b6366004610699565b610477565b6040516100d491906106d0565b610150610523565b6101927f000000000000000000000000000000000000000000000000000000000000000081565b5f6001600160e01b031982166332d11fef60e01b148061022757506001600160e01b031982166301ffc9a760e01b145b92915050565b60ff81165f908152600360209081526040918290208054835181840281018401909452808452606093928301828280156102a157602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116102725790505b50505050509050919050565b6060600180548060200260200160405190810160405280929190818152602001828054801561031657602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116102e75790505b5050505050905090565b60605f805461032e90610731565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610731565b80156103165780601f1061037c57610100808354040283529160200191610316565b820191905f5260205f20905b81548152906001019060200180831161038857509395945050505050565b604051632392b61b60e21b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610415573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104399190610769565b905090565b5f6001828154811061045257610452610784565b905f5260205f2090602091828204019190069054906101000a900460ff169050919050565b60ff8083165f9081526004602090815260408083209385168352928152828220805484518184028101840190955280855260609493919290919084015b82821015610517575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff169183019190915290835290920191016104b4565b50505050905092915050565b5f805461052f90610731565b80601f016020809104026020016040519081016040528092919081815260200182805461055b90610731565b80156105a65780601f1061057d576101008083540402835291602001916105a6565b820191905f5260205f20905b81548152906001019060200180831161058957829003601f168201915b505050505081565b5f602082840312156105be575f80fd5b81356001600160e01b0319811681146105d5575f80fd5b9392505050565b60ff811681146105ea575f80fd5b50565b5f602082840312156105fd575f80fd5b81356105d5816105dc565b602080825282518282018190525f918401906040840190835b8181101561064257835160ff16835260209384019390920191600101610621565b509095945050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610692575f80fd5b5035919050565b5f80604083850312156106aa575f80fd5b82356106b5816105dc565b915060208301356106c5816105dc565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610642578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff1691850191909152909301926060909201916001016106e9565b600181811c9082168061074557607f821691505b60208210810361076357634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610779575f80fd5b81516105d5816105dc565b634e487b7160e01b5f52603260045260245ffdfea26469706673582212203a042175a1fea1de245ceef3312cbab130132656337a121f30d6abd2157cf2a264736f6c634300081a0033",
227
- "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106100b1575f3560e01c806384be8c001161006e57806384be8c0014610177578063b79e14941461018a578063da44d6af146101a0578063e8ecdb36146101a8578063fef30334146101c8578063ffa1ad74146101d0575f80fd5b806301ffc9a7146100b557806313efdd7a146100dd5780633a526cd41461012057806368c55b1314610140578063694ca5d31461014857806376b707b71461015d575b5f80fd5b6100c86100c33660046105ae565b6101f7565b60405190151581526020015b60405180910390f35b6101086100eb3660046105ed565b60ff165f908152600260205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016100d4565b61013361012e3660046105ed565b61022d565b6040516100d49190610608565b6101336102ad565b610150610320565b6040516100d4919061064d565b6101656103a6565b60405160ff90911681526020016100d4565b610165610185366004610682565b61043e565b610192602881565b6040519081526020016100d4565b610192600381565b6101bb6101b6366004610699565b610477565b6040516100d491906106d0565b610150610523565b6101927f000000000000000000000000000000000000000000000000000000000000000081565b5f6001600160e01b031982166332d11fef60e01b148061022757506001600160e01b031982166301ffc9a760e01b145b92915050565b60ff81165f908152600360209081526040918290208054835181840281018401909452808452606093928301828280156102a157602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116102725790505b50505050509050919050565b6060600180548060200260200160405190810160405280929190818152602001828054801561031657602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116102e75790505b5050505050905090565b60605f805461032e90610731565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610731565b80156103165780601f1061037c57610100808354040283529160200191610316565b820191905f5260205f20905b81548152906001019060200180831161038857509395945050505050565b604051632392b61b60e21b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610415573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104399190610769565b905090565b5f6001828154811061045257610452610784565b905f5260205f2090602091828204019190069054906101000a900460ff169050919050565b60ff8083165f9081526004602090815260408083209385168352928152828220805484518184028101840190955280855260609493919290919084015b82821015610517575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff169183019190915290835290920191016104b4565b50505050905092915050565b5f805461052f90610731565b80601f016020809104026020016040519081016040528092919081815260200182805461055b90610731565b80156105a65780601f1061057d576101008083540402835291602001916105a6565b820191905f5260205f20905b81548152906001019060200180831161058957829003601f168201915b505050505081565b5f602082840312156105be575f80fd5b81356001600160e01b0319811681146105d5575f80fd5b9392505050565b60ff811681146105ea575f80fd5b50565b5f602082840312156105fd575f80fd5b81356105d5816105dc565b602080825282518282018190525f918401906040840190835b8181101561064257835160ff16835260209384019390920191600101610621565b509095945050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610692575f80fd5b5035919050565b5f80604083850312156106aa575f80fd5b82356106b5816105dc565b915060208301356106c5816105dc565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610642578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff1691850191909152909301926060909201916001016106e9565b600181811c9082168061074557607f821691505b60208210810361076357634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610779575f80fd5b81516105d5816105dc565b634e487b7160e01b5f52603260045260245ffdfea26469706673582212203a042175a1fea1de245ceef3312cbab130132656337a121f30d6abd2157cf2a264736f6c634300081a0033",
505
+ "bytecode": "0x60c060405234801561000f575f80fd5b506040516143d33803806143d383398101604081905261002e91613002565b60408051808201909152600c81526b2932b632b0b9b2a0b236b4b760a11b602082015260066003836100d08373__$0d958e68cba84670b8f4a3f2f2686b1c6b$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156100a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906100c591906130c0565b60ff90811691161490565b156100ee576040516302e3f24160e11b815260040160405180910390fd5b73__$b659da7d8a6d2d32aa6c1e17da23dc2174$__63bb41432a6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610135573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061015991906130c0565b604051632b10f60d60e21b815260ff909116600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af41580156101aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101ce91906130db565b8260ff1610806102c0575073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__63fbcaa8ed6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610220573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061024491906130c0565b604051632b10f60d60e21b815260ff909116600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af4158015610295573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102b991906130db565b8260ff1610155b156102e857604051636164474d60e01b815260ff831660048201526024015b60405180910390fd5b602881511461030c57806040516369306ec360e01b81526004016102df9190613120565b61034c6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b62d1d15b60e11b5f9081526020527fbfdfbaeb6ce3cef2dc92e70fc8227f58737fb6598199eb8999f7714e506efecb805460ff19166001179055600261039285826131b5565b5060405163cdc23e6960e01b815273__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e69906103ca908790600401613120565b602060405180830381865af41580156103e5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061040991906130db565b60035560ff808416608052821660a052600161042582826131b5565b5061046f6104316104c9565b61046a61043c6104c9565b60018061046560408051808201909152600981526841646d696e526f6c6560b81b602082015290565b610543565b610720565b6104af61047a610866565b61046a6104856104c9565b60018061046560408051808201909152600a8152695075626c6963526f6c6560b01b602082015290565b6104b76108a6565b6104bf610950565b50505050506133a4565b6040516368aebf7b60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024015b602060405180830381865af415801561051a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061053e919061326f565b905090565b6040805160c0810182525f80825260208201819052918101829052606081018290526080810182905260a08101919091526040518060c00160405280866001600160401b031681526020018560038111156105a0576105a0613295565b81526020018463ffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af41580156105f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061061c91906132a9565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af415801561066f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069391906132a9565b64ffffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b81526004016106d69190613120565b602060405180830381865af41580156106f1573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061071591906130db565b905295945050505050565b6006805460018101909155600481047ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160401b0380861660086003958616026101000a81810290830219909316929092179092555f9081526007602090815260409091208451815493166001600160401b03198416811782559185015185949193909284926001600160481b03199092161790680100000000000000009084908111156107d6576107d6613295565b0217905550604082015181546060840151608085015164ffffffffff908116600160901b0264ffffffffff60901b19919092166d01000000000000000000000000000264ffffffffff60681b1963ffffffff90951669010000000000000000000294909416600160481b600160901b031990931692909217929092171617815560a0909101516001909101555050565b6040516368aebf7b60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016104ff565b6108b2600260016109b8565b6108be600360026109b8565b6108ca600a60036109b8565b6108d6602860046109b8565b6108e2600b60056109b8565b6108ee600e60066109b8565b6108fa602a60076109b8565b610906601660086109b8565b610912600f60096109b8565b61091e600d600a6109b8565b61092a602c600b6109b8565b6109366015600c6109b8565b610942602d600d6109b8565b61094e6014600e6109b8565b565b610958610c13565b610960610e3c565b6109686110bc565b610970611507565b61097861190b565b610980611b31565b610988611d3f565b610990611e27565b610998611ffc565b6109a06122e2565b6109a86124d3565b6109b06125ab565b61094e612680565b6004805460018101825560208082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805460ff808816601f9095166101000a8581029102199091161790555f91825260059052604080822080546001600160a01b0386166001600160a01b031990911617905551632b95d28f60e21b8152909173__$0d958e68cba84670b8f4a3f2f2686b1c6b$__91630c3258f991839163ae574a3c91610a739189910160ff91909116815260200190565b5f60405180830381865af4158015610a8d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610ab49190810190613002565b6040805180820190915260078152665365727669636560c81b6020820152610ada61283a565b6040518463ffffffff1660e01b8152600401610af8939291906132cd565b5f60405180830381865af4158015610b12573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610b399190810190613002565b9050610c0e8173__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe86610b6261283a565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015610ba5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc9919061326f565b83604051806040016040528060058152602001645f526f6c6560d81b815250604051602001610bf992919061331c565b60408051601f198184030181529190526128b7565b505050565b5f610c2060026014612a4d565b9050610c6081635c992fed60e01b6040518060400160405280600e81526020016d7265676973746572506f6c69637960901b815250612aee60201b60201c565b610c6d60025b6016612a4d565b9050610cad8163c2bf08c860e01b6040518060400160405280600e81526020016d726567697374657242756e646c6560901b815250612aee60201b60201c565b610cba60025b600b612a4d565b9050610cfb81635d96628960e01b6040518060400160405280600f81526020016e1c9959da5cdd195c941c9bd91d58dd608a1b815250612aee60201b60201c565b60408051808201909152601e81527f726567697374657250726f647563744c696e6b6564436f6d706f6e656e7400006020820152610d43908290631fa14e4960e11b90612aee565b610d5060025b600e612a4d565b9050610d9f816357a8fba760e01b6040518060400160405280601381526020017f72656769737465724469737472696275746f7200000000000000000000000000815250612aee60201b60201c565b610dac60025b600a612a4d565b9050610dee8163026bc43b60e01b6040518060400160405280601081526020016f7265676973746572496e7374616e636560801b815250612aee60201b60201c565b610dfa60026003612a4d565b9050610e3981638105cc7f60e01b6040518060400160405280600d81526020016c72656769737465725374616b6560981b815250612aee60201b60201c565b50565b5f610e476003610da5565b9050610e96816375cd310560e01b6040518060400160405280601481526020017f637265617465496e7374616e6365546172676574000000000000000000000000815250612aee60201b60201c565b60408051808201909152601881527f736574496e7374616e63654c6f636b696e67506572696f6400000000000000006020820152610ede90829063db1e36e760e01b90612aee565b60408051808201909152601581527f736574496e7374616e63655265776172645261746500000000000000000000006020820152610f2690829063c26efb0560e01b90612aee565b60408051808201909152601a81527f736574496e7374616e63654d61785374616b6564416d6f756e740000000000006020820152610f6e908290634bae314b60e01b90612aee565b60408051808201909152601c81527f726566696c6c496e7374616e63655265776172645265736572766573000000006020820152610fb6908290636f61deef60e11b90612aee565b60408051808201909152601e81527f7769746864726177496e7374616e6365526577617264526573657276657300006020820152610ffe9082906321ece65760e01b90612aee565b61100b60035b6063612a4d565b905061104e81633e0dbe8060e01b6040518060400160405280601181526020017018dc99585d1954dd185ad953d89a9958dd607a1b815250612aee60201b60201c565b60408051808201909152600c81526b383ab6362234b82a37b5b2b760a11b602082015261108590829063f71c4cef60e01b90612aee565b60408051808201909152600c81526b383ab9b42234b82a37b5b2b760a11b6020820152610e39908290630cb9145560e41b90612aee565b5f6110c7600a611004565b905061110381631f481d6460e01b6040518060400160405280600a815260200169637265617465526f6c6560b01b815250612aee60201b60201c565b60408051808201909152600d81526c736574526f6c6541637469766560981b602082015261113b9082906311effbc960e11b90612aee565b6040805180820190915260098152686772616e74526f6c6560b81b602082015261116f908290630b428b0b60e41b90612aee565b60408051808201909152600a8152697265766f6b65526f6c6560b01b60208201526111a4908290635be958b160e11b90612aee565b60408051808201909152600c81526b18dc99585d1955185c99d95d60a21b60208201526111db9082906317ea2ab560e21b90612aee565b604080518082019091526012815271617574686f72697a6546756e6374696f6e7360701b602082015261121890829063f4b4ee4d60e01b90612aee565b60408051808201909152601481527f756e617574686f72697a6546756e6374696f6e730000000000000000000000006020820152611260908290633c54fe0960e21b90612aee565b60408051808201909152600f81526e1cd95d15185c99d95d131bd8dad959608a1b602082015261129a908290638689231360e01b90612aee565b6040805180820190915260118152701cd95d125b9cdd185b98d9531bd8dad959607a1b60208201526112d69082906396cdfa3f60e01b90612aee565b60408051808201909152600e81526d637265617465496e7374616e636560901b602082015261130f90829063d127388760e01b90612aee565b60408051808201909152601581527f75706772616465496e7374616e63655265616465720000000000000000000000602082015261135790829063c265172560e01b90612aee565b60408051808201909152601b81527f757067726164654d6173746572496e7374616e63655265616465720000000000602082015261139f9082906312a7b43360e11b90612aee565b60408051808201909152601781527f7365745374616b696e674c6f636b696e67506572696f6400000000000000000060208201526113e79082906305aec9df60e31b90612aee565b60408051808201909152601481527f7365745374616b696e6752657761726452617465000000000000000000000000602082015261142f9082906311f7784360e01b90612aee565b60408051808201909152601381527f7365745374616b696e674d6178416d6f756e74000000000000000000000000006020820152611477908290637de45f1360e01b90612aee565b60408051808201909152601c81527f726566696c6c496e7374616e636552657761726452657365727665730000000060208201526114bf908290633dfa1a3d60e01b90612aee565b60408051808201909152601e81527f7769746864726177496e7374616e6365526577617264526573657276657300006020820152610e39908290633fa5261560e01b90612aee565b5f6115126028610c66565b9050611561816325e451d360e01b6040518060400160405280601581526020017f696e63726561736542756e646c6542616c616e63650000000000000000000000815250612aee60201b60201c565b60408051808201909152601581527f646563726561736542756e646c6542616c616e6365000000000000000000000060208201526115a990829063e618053f60e01b90612aee565b6115b36028610cb3565b90506116028163346696cc60e01b6040518060400160405280601581526020017f6465637265617365436f6d706f6e656e74466565730000000000000000000000815250612aee60201b60201c565b61160c6028610d49565b905061165b816374933c2f60e01b6040518060400160405280601b81526020017f696e637265617365446973747269627574696f6e42616c616e63650000000000815250612aee60201b60201c565b60408051808201909152601b81527f6465637265617365446973747269627574696f6e42616c616e6365000000000060208201526116a39082906311a1467760e01b90612aee565b60408051808201909152601a81527f696e6372656173654469737472696275746f7242616c616e636500000000000060208201526116eb90829063345972d960e21b90612aee565b60408051808201909152601a81527f64656372656173654469737472696275746f7242616c616e63650000000000006020820152611733908290636610178160e01b90612aee565b61174060285b6015612a4d565b905061178f816367438c5060e01b6040518060400160405280601381526020017f696e63726561736550726f647563744665657300000000000000000000000000815250612aee60201b60201c565b61179c60285b600f612a4d565b90506117eb8163d56cd3d560e01b6040518060400160405280601381526020017f696e637265617365506f6f6c42616c616e636500000000000000000000000000815250612aee60201b60201c565b60408051808201909152601381527f6465637265617365506f6f6c42616c616e63650000000000000000000000000060208201526118339082906344fd6c5160e11b90612aee565b60408051808201909152601c81527f696e63726561736542756e646c6542616c616e6365466f72506f6f6c00000000602082015261187b9082906317bb009960e21b90612aee565b60408051808201909152601c81527f646563726561736542756e646c6542616c616e6365466f72506f6f6c0000000060208201526118c3908290632267301360e21b90612aee565b60408051808201909152601a81527f696e63726561736550726f6475637446656573466f72506f6f6c0000000000006020820152610e39908290631bb297cd60e31b90612aee565b5f611916600b611004565b905061195981636078a3b260e01b604051806040016040528060118152602001701c9959da5cdd195c90dbdb5c1bdb995b9d607a1b815250612aee60201b60201c565b60408051808201909152601381527f617070726f7665546f6b656e48616e646c65720000000000000000000000000060208201526119a19082906320c8cbff60e11b90612aee565b6040805180820190915260098152681cd95d15d85b1b195d60ba1b60208201526119d590829063deaa59df60e01b90612aee565b6040805180820190915260098152681cd95d131bd8dad95960ba1b6020820152611a0990829063108f145b60e11b90612aee565b60408051808201909152600c81526b77697468647261774665657360a01b6020820152611a409082906301c6b21960e41b90612aee565b60408051808201909152600f81526e1c9959da5cdd195c941c9bd91d58dd608a1b6020820152611a7a908290635d96628960e01b90612aee565b60408051808201909152600e81526d73657450726f647563744665657360901b6020820152611ab3908290634698bf1160e01b90612aee565b60408051808201909152601381527f736574446973747269627574696f6e46656573000000000000000000000000006020820152611afb90829063feff0c9160e01b90612aee565b60408051808201909152600b81526a736574506f6f6c4665657360a81b6020820152610e3990829063cf2f336560e01b90612aee565b5f611b3c602d611004565b9050611b74816374b775eb60e01b604051806040016040528060068152602001651cdd589b5a5d60d21b815250612aee60201b60201c565b604080518082019091526007815266636f6e6669726d60c81b6020820152611ba6908290636e2cdce760e01b90612aee565b6040805180820190915260078152666465636c696e6560c81b6020820152611bd890829063f450e2b560e01b90612aee565b6040805180820190915260068152657265766f6b6560d01b6020820152611c09908290633838d73960e01b90612aee565b60408051808201909152601481527f63616e63656c436f6e6669726d6564436c61696d0000000000000000000000006020820152611c51908290633ca19bc160e01b90612aee565b60408051808201909152601a81527f6372656174655061796f7574466f7242656e65666963696172790000000000006020820152611c9990829063e01f7a4360e01b90612aee565b60408051808201909152600c81526b18dc99585d1954185e5bdd5d60a21b6020820152611cd0908290631e2992c760e11b90612aee565b60408051808201909152600d81526c1c1c9bd8d95cdcd4185e5bdd5d609a1b6020820152611d0890829063137a92a760e01b90612aee565b60408051808201909152600c81526b18d85b98d95b14185e5bdd5d60a21b6020820152610e39908290630c68938d60e41b90612aee565b5f611d4a602c611004565b9050611d868163c3fa12bb60e01b6040518060400160405280600a8152602001696372656174655269736b60b01b815250612aee60201b60201c565b60408051808201909152600a8152697570646174655269736b60b01b6020820152611dbb908290638f997f6d60e01b90612aee565b60408051808201909152600d81526c1cd95d149a5cdad31bd8dad959609a1b6020820152611df390829063544e9e5b60e01b90612aee565b604080518082019091526009815268636c6f73655269736b60b81b6020820152610e3990829063233bf20760e11b90612aee565b5f611e32600e611739565b9050611e6f81637950d0e260e01b6040518060400160405280600b81526020016a70726f6365737353616c6560a81b815250612aee60201b60201c565b60408051808201909152600f81526e1c1c9bd8d95cdcd49959995c9c985b608a1b6020820152611ea990829063038f0f2560e11b90612aee565b611eb3600e611004565b9050611f0281631bda5efa60e01b6040518060400160405280601581526020017f6372656174654469737472696275746f72547970650000000000000000000000815250612aee60201b60201c565b60408051808201909152601181527031b932b0ba32a234b9ba3934b13aba37b960791b6020820152611f3e908290632ee59dd760e11b90612aee565b60408051808201909152601581527f6368616e67654469737472696275746f725479706500000000000000000000006020820152611f8690829063ab3fc75f60e01b90612aee565b60408051808201909152600e81526d18dc99585d19549959995c9c985b60921b6020820152611fbf90829063987cb16160e01b90612aee565b6040805180820190915260128152713bb4ba34323930bba1b7b6b6b4b9b9b4b7b760711b6020820152610e399082906303f38d3760e11b90612aee565b5f612007600f611739565b9050612047816384d1f7cf60e01b6040518060400160405280600e81526020016d1b1bd8dad0dbdb1b185d195c985b60921b815250612aee60201b60201c565b6040805180820190915260118152701c995b19585cd950dbdb1b185d195c985b607a1b602082015261208390829063750787f560e01b90612aee565b60408051808201909152600b81526a70726f6365737353616c6560a81b60208201526120b990829063fb3bcd1f60e01b90612aee565b6120c5600f602d612a4d565b90506121048163125510a360e01b6040518060400160405280600d81526020016c1c1c9bd8d95cdcd4185e5bdd5d609a1b815250612aee60201b60201c565b61210e600f611004565b905061215d8163bca99e3960e01b6040518060400160405280601381526020017f7365744d617842616c616e6365416d6f756e7400000000000000000000000000815250612aee60201b60201c565b60408051808201909152600b81526a636c6f736542756e646c6560a81b602082015261219390829063d0d63b0960e01b90612aee565b60408051808201909152601281527170726f6365737346756e646564436c61696d60701b60208201526121d09082906370f90b7d60e11b90612aee565b6040805180820190915260058152647374616b6560d81b6020820152612200908290636c1e9dff60e01b90612aee565b604080518082019091526007815266756e7374616b6560c81b60208201526122329082906326889b0960e01b90612aee565b60408051808201909152600e81526d199d5b99141bdbdb15d85b1b195d60921b602082015261226b908290634725284760e11b90612aee565b60408051808201909152601081526f1919599d5b99141bdbdb15d85b1b195d60821b60208201526122a590829062ca71c760e61b90612aee565b604080518082019091526012815271776974686472617742756e646c654665657360701b6020820152610e399082906354e5077960e01b90612aee565b5f6122ed6016611795565b90506123248163c548949d60e01b604051806040016040528060058152602001647374616b6560d81b815250612aee60201b60201c565b604080518082019091526007815266756e7374616b6560c81b6020820152612356908290631696791160e11b90612aee565b604080518082019091526005815264636c6f736560d81b6020820152612386908290632aa6b2cb60e21b90612aee565b60408051808201909152600e81526d1b1bd8dad0dbdb1b185d195c985b60921b60208201526123bf908290634adcf90960e01b90612aee565b6040805180820190915260118152701c995b19585cd950dbdb1b185d195c985b607a1b60208201526123fb90829063ad328d9f60e01b90612aee565b6124056016611004565b905061243d8163fdbb929660e01b6040518060400160405280600681526020016563726561746560d01b815250612aee60201b60201c565b604080518082019091526006815265195e1d195b9960d21b602082015261246e9082906379e872e960e11b90612aee565b6040805180820190915260098152681cd95d131bd8dad95960ba1b60208201526124a290829063d42a24b160e01b90612aee565b60408051808201909152600681526573657446656560d01b6020820152610e3990829063a5fbe47960e01b90612aee565b5f6124de600d611004565b90506125178163f684566360e01b604051806040016040528060078152602001661c995c5d595cdd60ca1b815250612aee60201b60201c565b6040805180820190915260078152661c995cdc1bdb9960ca1b60208201526125499082906367a773bd60e11b90612aee565b6040805180820190915260068152651c995cd95b9960d21b602082015261257a908290630b331f6960e21b90612aee565b60408051808201909152600681526518d85b98d95b60d21b6020820152610e39908290634c125e7960e01b90612aee565b5f6125b66014611004565b90506125ee81639a83274160e01b6040518060400160405280600681526020016563726561746560d01b815250612aee60201b60201c565b60408051808201909152600581526472656e657760d81b602082015261261e90829063536ef74b60e01b90612aee565b60408051808201909152600681526518591a9d5cdd60d21b602082015261264f9082906362cbbd7b60e01b90612aee565b6040805180820190915260068152657265766f6b6560d01b6020820152610e3990829063603ccaad60e01b90612aee565b5f61268b6015611004565b90506126c481639ffcede960e01b604051806040016040528060078152602001666465636c696e6560c81b815250612aee60201b60201c565b60408051808201909152600c81526b637265617465506f6c69637960a01b60208201526126fb90829063d22413e560e01b90612aee565b60408051808201909152600e81526d636f6c6c6563745072656d69756d60901b6020820152612734908290635dfddfdd60e11b90612aee565b604080518082019091526008815267616374697661746560c01b6020820152612767908290634d5e16a960e01b90612aee565b60408051808201909152601081526f30b2353ab9ba20b1ba34bb30ba34b7b760811b60208201526127a290829063d322005160e01b90612aee565b60408051808201909152600681526565787069726560d01b60208201526127d3908290637baa9a0b60e01b90612aee565b60408051808201909152600c81526b657870697265506f6c69637960a01b602082015261280a90829063bc4a1c3560e01b90612aee565b604080518082019091526005815264636c6f736560d81b6020820152610e39908290630155751d60e31b90612aee565b60a051604051632392b61b60e21b81525f9173__$b659da7d8a6d2d32aa6c1e17da23dc2174$__91638e4ad86c916128789160040190815260200190565b602060405180830381865af4158015612893573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061053e91906130c0565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e69906128f0908790600401613120565b602060405180830381865af415801561290b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061292f91906130db565b6008805460018181019092557ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3018290555f82815260096020908152604091829020805460ff1916909317909255805163bc1b392d60e01b81529051929350612a0492869273__$1d92393fa9ccd763988368ce8a1cb90d26$__9263bc1b392d92600480830193928290030181865af41580156129ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129f2919061326f565b6001600160401b039081169116141590565b15612a4757612a1283612ccb565b612a2057612a208383612d0d565b5f818152600a6020526040902080546001600160401b0319166001600160401b0385161790555b50505050565b5f80612a5884612d2a565b90505f612a6484612e92565b604051631623433d60e31b815260048101849052909150612ae59073__$9a094f9b231ed0f5f85a69be8408d93180$__9063b11a19e8906024015f60405180830381865af4158015612ab8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612adf9190810190613002565b82612eda565b95945050505050565b60408051606081019182905263cdc23e6960e01b90915283908073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69612b2f8660648501613120565b602060405180830381865af4158015612b4a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b6e91906130db565b8152604051636b15ee8b60e01b81526001600160e01b03198616600482015260209091019073__$0904195350e4c23ecb1d51df0a32586dcd$__90636b15ee8b90602401602060405180830381865af4158015612bcd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bf19190613338565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612c47573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c6b91906132a9565b64ffffffffff9081169091528254600181810185555f94855260209485902084516002909302019182559383015193018054604090930151909116640100000000026001600160481b031990921660e09390931c92909217179055505050565b5f806001600160401b0383165f9081526007602052604090205468010000000000000000900460ff166003811115612d0557612d05613295565b141592915050565b612d268261046a612d1c6104c9565b6002600186610543565b5050565b604051632b95d28f60e21b815260ff821660048201525f90819073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90630c3258f990829063ae574a3c906024015f60405180830381865af4158015612d85573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612dac9190810190613002565b612db461283a565b6040518363ffffffff1660e01b8152600401612dd192919061335f565b5f60405180830381865af4158015612deb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e129190810190613002565b60405163cdc23e6960e01b815290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990612e4c908490600401613120565b602060405180830381865af4158015612e67573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e8b91906130db565b9392505050565b5f612e9e8260636100c5565b15612eb157612eab610866565b92915050565b5f612ebb83612d2a565b5f818152600a60205260409020549091506001600160401b0316612e8b565b5f8073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401612f139190613120565b602060405180830381865af4158015612f2e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f5291906130db565b5f818152600c602090815260408083206001600160401b038816845290915281205491925003612fc5575f818152600b602090815260408220805460018101825590835291206004820401805460039092166008026101000a6001600160401b0381810219909316928616029190911790555b5f908152600c602090815260408083206001600160401b03861684529091529020905092915050565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215613012575f80fd5b81516001600160401b03811115613027575f80fd5b8201601f81018413613037575f80fd5b80516001600160401b0381111561305057613050612fee565b604051601f8201601f19908116603f011681016001600160401b038111828210171561307e5761307e612fee565b604052818152828201602001861015613095575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b60ff81168114610e39575f80fd5b5f602082840312156130d0575f80fd5b8151612e8b816130b2565b5f602082840312156130eb575f80fd5b5051919050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f612e8b60208301846130f2565b600181811c9082168061314657607f821691505b60208210810361316457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610c0e57805f5260205f20601f840160051c8101602085101561318f5750805b601f840160051c820191505b818110156131ae575f815560010161319b565b5050505050565b81516001600160401b038111156131ce576131ce612fee565b6131e2816131dc8454613132565b8461316a565b6020601f821160018114613214575f83156131fd5750848201515b5f19600385901b1c1916600184901b1784556131ae565b5f84815260208120601f198516915b828110156132435787850151825560209485019460019092019101613223565b508482101561326057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f6020828403121561327f575f80fd5b81516001600160401b0381168114612e8b575f80fd5b634e487b7160e01b5f52602160045260245ffd5b5f602082840312156132b9575f80fd5b815164ffffffffff81168114612e8b575f80fd5b606081525f6132df60608301866130f2565b82810360208401526132f181866130f2565b91505060ff83166040830152949350505050565b5f81518060208401855e5f93019283525090919050565b5f61333061332a8386613305565b84613305565b949350505050565b5f60208284031215613348575f80fd5b81516001600160e01b031981168114612e8b575f80fd5b606081525f61337160608301856130f2565b828103602084015260078152665365727669636560c81b60208201526040810191505060ff831660408301529392505050565b60805160a0516110076133cc5f395f61090b01525f8181610258015261036101526110075ff3fe608060405234801561000f575f80fd5b5060043610610153575f3560e01c806376b707b7116100bf578063c5f3484411610079578063c5f348441461038d578063c6a00179146103b1578063da44d6af146103c4578063e8eba435146103cc578063f1d01027146103df578063fef30334146103e7575f80fd5b806376b707b7146102f1578063775f14b1146102f957806384be8c00146103395780638c5397b01461034c578063b68d18091461035f578063b79e149414610385575f80fd5b806352a9674b1161011057806352a9674b1461025357806354e17da91461028c5780635bfa50271461029f57806368c55b13146102bf578063694ca5d3146102d457806371061398146102dc575f80fd5b806301ffc9a71461015757806313efdd7a146101985780631e4afbbf146101db5780634322699b146101fb5780634a34a4de1461020d57806350a388ea14610240575b5f80fd5b610183610165366004610b7c565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101c36101a6366004610bb4565b60ff165f908152600560205260409020546001600160a01b031690565b6040516001600160a01b03909116815260200161018f565b6101ee6101e9366004610be3565b6103ef565b60405161018f9190610c11565b6003545b60405190815260200161018f565b610233604051806040016040528060078152602001665365727669636560c81b81525081565b60405161018f9190610cab565b61023361024e366004610cbd565b61049c565b61027a7f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161018f565b6101ff61029a366004610bb4565b61053b565b6102b26102ad366004610cbd565b6106a3565b60405161018f9190610cec565b6102c761077c565b60405161018f9190610d76565b6102336107ef565b6102e4610876565b60405161018f9190610db0565b61027a6108fc565b610321610307366004610df0565b5f908152600a60205260409020546001600160401b031690565b6040516001600160401b03909116815260200161018f565b61027a610347366004610df0565b610994565b6102e461035a366004610df0565b6109cd565b7f000000000000000000000000000000000000000000000000000000000000000061027a565b6101ff602881565b610233604051806040016040528060058152602001645f526f6c6560d81b81525081565b6101836103bf366004610cbd565b610a5d565b6101ff600381565b6103216103da366004610bb4565b610a9a565b610233610ad7565b610233610ae6565b5f828152600c602090815260408083206001600160401b03851684528252808320805482518185028101850190935280835260609492939192909184015b82821015610490575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff1691830191909152908352909201910161042d565b50505050905092915050565b6001600160401b0381165f9081526007602052604090819020600101549051631623433d60e31b815260609173__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e8916104f49160040190815260200190565b5f60405180830381865af415801561050e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105359190810190610e1b565b92915050565b604051632b95d28f60e21b815260ff821660048201525f90819073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90630c3258f990829063ae574a3c906024015f60405180830381865af4158015610596573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105bd9190810190610e1b565b6105c56108fc565b6040518363ffffffff1660e01b81526004016105e2929190610ecb565b5f60405180830381865af41580156105fc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526106239190810190610e1b565b60405163cdc23e6960e01b815290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e699061065d908490600401610cab565b602060405180830381865af4158015610678573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069c9190610f10565b9392505050565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600782529185902085519384019095528454918216835292939192830190600160401b900460ff16600381111561071b5761071b610cd8565b600381111561072c5761072c610cd8565b8152815463ffffffff6901000000000000000000820416602083015264ffffffffff600160681b820481166040840152600160901b90910416606082015260019091015460809091015292915050565b606060048054806020026020016040519081016040528092919081815260200182805480156107e557602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116107b65790505b5050505050905090565b6060600180546107fe90610f27565b80601f016020809104026020016040519081016040528092919081815260200182805461082a90610f27565b80156107e55780601f1061084c576101008083540402835291602001916107e5565b820191905f5260205f20905b81548152906001019060200180831161085857509395945050505050565b606060068054806020026020016040519081016040528092919081815260200182805480156107e557602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b0316815260200190600801906020826007010492830192600103820291508084116108b05790505050505050905090565b604051632392b61b60e21b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af415801561096b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098f9190610f5f565b905090565b5f600482815481106109a8576109a8610f7a565b905f5260205f2090602091828204019190069054906101000a900460ff169050919050565b5f818152600b6020908152604091829020805483518184028101840190945280845260609392830182828015610a5157602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b031681526020019060080190602082600701049283019260010382029150808411610a0e5790505b50505050509050919050565b5f806001600160401b0383165f90815260076020526040902054600160401b900460ff166003811115610a9257610a92610cd8565b141592915050565b5f60ff8216606303610aae57610535610b02565b5f610ab88361053b565b5f818152600a60205260409020549091506001600160401b031661069c565b6060600280546107fe90610f27565b604051806060016040528060288152602001610faa6028913981565b6040516368aebf7b60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af4158015610b58573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098f9190610f8e565b5f60208284031215610b8c575f80fd5b81356001600160e01b03198116811461069c575f80fd5b60ff81168114610bb1575f80fd5b50565b5f60208284031215610bc4575f80fd5b813561069c81610ba3565b6001600160401b0381168114610bb1575f80fd5b5f8060408385031215610bf4575f80fd5b823591506020830135610c0681610bcf565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610c72578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff169185019190915290930192606090920191600101610c2a565b509095945050505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61069c6020830184610c7d565b5f60208284031215610ccd575f80fd5b813561069c81610bcf565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c082019060048110610d1f57634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff60408401511660408301526060830151610d4e606084018264ffffffffff169052565b506080830151610d67608084018264ffffffffff169052565b5060a092830151919092015290565b602080825282518282018190525f918401906040840190835b81811015610c7257835160ff16835260209384019390920191600101610d8f565b602080825282518282018190525f918401906040840190835b81811015610c725783516001600160401b0316835260209384019390920191600101610dc9565b5f60208284031215610e00575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610e2b575f80fd5b81516001600160401b03811115610e40575f80fd5b8201601f81018413610e50575f80fd5b80516001600160401b03811115610e6957610e69610e07565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610e9757610e97610e07565b604052818152828201602001861015610eae575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b606081525f610edd6060830185610c7d565b828103602084015260078152665365727669636560c81b60208201526040810191505060ff831660408301529392505050565b5f60208284031215610f20575f80fd5b5051919050565b600181811c90821680610f3b57607f821691505b602082108103610f5957634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610f6f575f80fd5b815161069c81610ba3565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610f9e575f80fd5b815161069c81610bcf56fe31613161316131613161316131613161316131613161316131613161316131613161316131613161a2646970667358221220f25249c24422f0c78ca07e9ca10eb7c2b16bf6c8c2cb907e08167e3caf4ec58d64736f6c634300081a0033",
506
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610153575f3560e01c806376b707b7116100bf578063c5f3484411610079578063c5f348441461038d578063c6a00179146103b1578063da44d6af146103c4578063e8eba435146103cc578063f1d01027146103df578063fef30334146103e7575f80fd5b806376b707b7146102f1578063775f14b1146102f957806384be8c00146103395780638c5397b01461034c578063b68d18091461035f578063b79e149414610385575f80fd5b806352a9674b1161011057806352a9674b1461025357806354e17da91461028c5780635bfa50271461029f57806368c55b13146102bf578063694ca5d3146102d457806371061398146102dc575f80fd5b806301ffc9a71461015757806313efdd7a146101985780631e4afbbf146101db5780634322699b146101fb5780634a34a4de1461020d57806350a388ea14610240575b5f80fd5b610183610165366004610b7c565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101c36101a6366004610bb4565b60ff165f908152600560205260409020546001600160a01b031690565b6040516001600160a01b03909116815260200161018f565b6101ee6101e9366004610be3565b6103ef565b60405161018f9190610c11565b6003545b60405190815260200161018f565b610233604051806040016040528060078152602001665365727669636560c81b81525081565b60405161018f9190610cab565b61023361024e366004610cbd565b61049c565b61027a7f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161018f565b6101ff61029a366004610bb4565b61053b565b6102b26102ad366004610cbd565b6106a3565b60405161018f9190610cec565b6102c761077c565b60405161018f9190610d76565b6102336107ef565b6102e4610876565b60405161018f9190610db0565b61027a6108fc565b610321610307366004610df0565b5f908152600a60205260409020546001600160401b031690565b6040516001600160401b03909116815260200161018f565b61027a610347366004610df0565b610994565b6102e461035a366004610df0565b6109cd565b7f000000000000000000000000000000000000000000000000000000000000000061027a565b6101ff602881565b610233604051806040016040528060058152602001645f526f6c6560d81b81525081565b6101836103bf366004610cbd565b610a5d565b6101ff600381565b6103216103da366004610bb4565b610a9a565b610233610ad7565b610233610ae6565b5f828152600c602090815260408083206001600160401b03851684528252808320805482518185028101850190935280835260609492939192909184015b82821015610490575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff1691830191909152908352909201910161042d565b50505050905092915050565b6001600160401b0381165f9081526007602052604090819020600101549051631623433d60e31b815260609173__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e8916104f49160040190815260200190565b5f60405180830381865af415801561050e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105359190810190610e1b565b92915050565b604051632b95d28f60e21b815260ff821660048201525f90819073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90630c3258f990829063ae574a3c906024015f60405180830381865af4158015610596573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105bd9190810190610e1b565b6105c56108fc565b6040518363ffffffff1660e01b81526004016105e2929190610ecb565b5f60405180830381865af41580156105fc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526106239190810190610e1b565b60405163cdc23e6960e01b815290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e699061065d908490600401610cab565b602060405180830381865af4158015610678573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069c9190610f10565b9392505050565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600782529185902085519384019095528454918216835292939192830190600160401b900460ff16600381111561071b5761071b610cd8565b600381111561072c5761072c610cd8565b8152815463ffffffff6901000000000000000000820416602083015264ffffffffff600160681b820481166040840152600160901b90910416606082015260019091015460809091015292915050565b606060048054806020026020016040519081016040528092919081815260200182805480156107e557602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116107b65790505b5050505050905090565b6060600180546107fe90610f27565b80601f016020809104026020016040519081016040528092919081815260200182805461082a90610f27565b80156107e55780601f1061084c576101008083540402835291602001916107e5565b820191905f5260205f20905b81548152906001019060200180831161085857509395945050505050565b606060068054806020026020016040519081016040528092919081815260200182805480156107e557602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b0316815260200190600801906020826007010492830192600103820291508084116108b05790505050505050905090565b604051632392b61b60e21b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af415801561096b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098f9190610f5f565b905090565b5f600482815481106109a8576109a8610f7a565b905f5260205f2090602091828204019190069054906101000a900460ff169050919050565b5f818152600b6020908152604091829020805483518184028101840190945280845260609392830182828015610a5157602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b031681526020019060080190602082600701049283019260010382029150808411610a0e5790505b50505050509050919050565b5f806001600160401b0383165f90815260076020526040902054600160401b900460ff166003811115610a9257610a92610cd8565b141592915050565b5f60ff8216606303610aae57610535610b02565b5f610ab88361053b565b5f818152600a60205260409020549091506001600160401b031661069c565b6060600280546107fe90610f27565b604051806060016040528060288152602001610faa6028913981565b6040516368aebf7b60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af4158015610b58573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098f9190610f8e565b5f60208284031215610b8c575f80fd5b81356001600160e01b03198116811461069c575f80fd5b60ff81168114610bb1575f80fd5b50565b5f60208284031215610bc4575f80fd5b813561069c81610ba3565b6001600160401b0381168114610bb1575f80fd5b5f8060408385031215610bf4575f80fd5b823591506020830135610c0681610bcf565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610c72578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff169185019190915290930192606090920191600101610c2a565b509095945050505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61069c6020830184610c7d565b5f60208284031215610ccd575f80fd5b813561069c81610bcf565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c082019060048110610d1f57634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff60408401511660408301526060830151610d4e606084018264ffffffffff169052565b506080830151610d67608084018264ffffffffff169052565b5060a092830151919092015290565b602080825282518282018190525f918401906040840190835b81811015610c7257835160ff16835260209384019390920191600101610d8f565b602080825282518282018190525f918401906040840190835b81811015610c725783516001600160401b0316835260209384019390920191600101610dc9565b5f60208284031215610e00575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610e2b575f80fd5b81516001600160401b03811115610e40575f80fd5b8201601f81018413610e50575f80fd5b80516001600160401b03811115610e6957610e69610e07565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610e9757610e97610e07565b604052818152828201602001861015610eae575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b606081525f610edd6060830185610c7d565b828103602084015260078152665365727669636560c81b60208201526040810191505060ff831660408301529392505050565b5f60208284031215610f20575f80fd5b5051919050565b600181811c90821680610f3b57607f821691505b602082108103610f5957634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610f6f575f80fd5b815161069c81610ba3565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610f9e575f80fd5b815161069c81610bcf56fe31613161316131613161316131613161316131613161316131613161316131613161316131613161a2646970667358221220f25249c24422f0c78ca07e9ca10eb7c2b16bf6c8c2cb907e08167e3caf4ec58d64736f6c634300081a0033",
228
507
  "linkReferences": {
508
+ "contracts/type/ObjectType.sol": {
509
+ "ObjectTypeLib": [
510
+ {
511
+ "length": 20,
512
+ "start": 92
513
+ },
514
+ {
515
+ "length": 20,
516
+ "start": 2620
517
+ },
518
+ {
519
+ "length": 20,
520
+ "start": 11590
521
+ },
522
+ {
523
+ "length": 20,
524
+ "start": 14627
525
+ }
526
+ ]
527
+ },
528
+ "contracts/type/RoleId.sol": {
529
+ "RoleIdLib": [
530
+ {
531
+ "length": 20,
532
+ "start": 1249
533
+ },
534
+ {
535
+ "length": 20,
536
+ "start": 2180
537
+ },
538
+ {
539
+ "length": 20,
540
+ "start": 2881
541
+ },
542
+ {
543
+ "length": 20,
544
+ "start": 10646
545
+ },
546
+ {
547
+ "length": 20,
548
+ "start": 16108
549
+ }
550
+ ]
551
+ },
229
552
  "contracts/type/Selector.sol": {
230
553
  "SelectorLib": [
231
554
  {
232
555
  "length": 20,
233
- "start": 3439
556
+ "start": 11157
234
557
  }
235
558
  ]
236
559
  },
@@ -238,7 +561,39 @@
238
561
  "StrLib": [
239
562
  {
240
563
  "length": 20,
241
- "start": 3300
564
+ "start": 930
565
+ },
566
+ {
567
+ "length": 20,
568
+ "start": 1697
569
+ },
570
+ {
571
+ "length": 20,
572
+ "start": 10440
573
+ },
574
+ {
575
+ "length": 20,
576
+ "start": 10881
577
+ },
578
+ {
579
+ "length": 20,
580
+ "start": 11018
581
+ },
582
+ {
583
+ "length": 20,
584
+ "start": 11812
585
+ },
586
+ {
587
+ "length": 20,
588
+ "start": 11998
589
+ },
590
+ {
591
+ "length": 20,
592
+ "start": 14486
593
+ },
594
+ {
595
+ "length": 20,
596
+ "start": 14849
242
597
  }
243
598
  ]
244
599
  },
@@ -246,7 +601,15 @@
246
601
  "TimestampLib": [
247
602
  {
248
603
  "length": 20,
249
- "start": 3548
604
+ "start": 1459
605
+ },
606
+ {
607
+ "length": 20,
608
+ "start": 1578
609
+ },
610
+ {
611
+ "length": 20,
612
+ "start": 11266
250
613
  }
251
614
  ]
252
615
  },
@@ -254,17 +617,65 @@
254
617
  "VersionPartLib": [
255
618
  {
256
619
  "length": 20,
257
- "start": 5461
620
+ "start": 240
621
+ },
622
+ {
623
+ "length": 20,
624
+ "start": 370
625
+ },
626
+ {
627
+ "length": 20,
628
+ "start": 475
629
+ },
630
+ {
631
+ "length": 20,
632
+ "start": 605
633
+ },
634
+ {
635
+ "length": 20,
636
+ "start": 10318
637
+ },
638
+ {
639
+ "length": 20,
640
+ "start": 15615
258
641
  }
259
642
  ]
260
643
  }
261
644
  },
262
645
  "deployedLinkReferences": {
646
+ "contracts/type/ObjectType.sol": {
647
+ "ObjectTypeLib": [
648
+ {
649
+ "length": 20,
650
+ "start": 1367
651
+ }
652
+ ]
653
+ },
654
+ "contracts/type/RoleId.sol": {
655
+ "RoleIdLib": [
656
+ {
657
+ "length": 20,
658
+ "start": 2848
659
+ }
660
+ ]
661
+ },
662
+ "contracts/type/String.sol": {
663
+ "StrLib": [
664
+ {
665
+ "length": 20,
666
+ "start": 1226
667
+ },
668
+ {
669
+ "length": 20,
670
+ "start": 1589
671
+ }
672
+ ]
673
+ },
263
674
  "contracts/type/Version.sol": {
264
675
  "VersionPartLib": [
265
676
  {
266
677
  "length": 20,
267
- "start": 989
678
+ "start": 2355
268
679
  }
269
680
  ]
270
681
  }