@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
@@ -8,9 +8,64 @@
8
8
  "stateMutability": "nonpayable",
9
9
  "type": "constructor"
10
10
  },
11
+ {
12
+ "inputs": [
13
+ {
14
+ "internalType": "string",
15
+ "name": "commitHash",
16
+ "type": "string"
17
+ }
18
+ ],
19
+ "name": "ErrorAuthorizationCommitHashInvalid",
20
+ "type": "error"
21
+ },
22
+ {
23
+ "inputs": [],
24
+ "name": "ErrorAuthorizationMainTargetNameEmpty",
25
+ "type": "error"
26
+ },
27
+ {
28
+ "inputs": [
29
+ {
30
+ "internalType": "uint8",
31
+ "name": "release",
32
+ "type": "uint8"
33
+ }
34
+ ],
35
+ "name": "ErrorAuthorizationReleaseInvalid",
36
+ "type": "error"
37
+ },
38
+ {
39
+ "inputs": [],
40
+ "name": "ErrorAuthorizationTargetDomainZero",
41
+ "type": "error"
42
+ },
43
+ {
44
+ "inputs": [],
45
+ "name": "InvalidInitialization",
46
+ "type": "error"
47
+ },
48
+ {
49
+ "inputs": [],
50
+ "name": "NotInitializing",
51
+ "type": "error"
52
+ },
53
+ {
54
+ "anonymous": false,
55
+ "inputs": [
56
+ {
57
+ "indexed": false,
58
+ "internalType": "uint64",
59
+ "name": "version",
60
+ "type": "uint64"
61
+ }
62
+ ],
63
+ "name": "Initialized",
64
+ "type": "event"
65
+ },
11
66
  {
12
67
  "inputs": [],
13
- "name": "BUNDLE_SET_TARGET_NAME",
68
+ "name": "COMMIT_HASH",
14
69
  "outputs": [
15
70
  {
16
71
  "internalType": "string",
@@ -23,7 +78,7 @@
23
78
  },
24
79
  {
25
80
  "inputs": [],
26
- "name": "GIF_RELEASE",
81
+ "name": "COMMIT_HASH_LENGTH",
27
82
  "outputs": [
28
83
  {
29
84
  "internalType": "uint256",
@@ -36,12 +91,12 @@
36
91
  },
37
92
  {
38
93
  "inputs": [],
39
- "name": "INSTANCE_ADMIN_TARGET_NAME",
94
+ "name": "COMPONENT_ROLE_MIN",
40
95
  "outputs": [
41
96
  {
42
- "internalType": "string",
97
+ "internalType": "uint64",
43
98
  "name": "",
44
- "type": "string"
99
+ "type": "uint64"
45
100
  }
46
101
  ],
47
102
  "stateMutability": "view",
@@ -49,12 +104,25 @@
49
104
  },
50
105
  {
51
106
  "inputs": [],
52
- "name": "INSTANCE_ROLE_NAME",
107
+ "name": "DOMAIN",
53
108
  "outputs": [
54
109
  {
55
- "internalType": "string",
110
+ "internalType": "ObjectType",
56
111
  "name": "",
57
- "type": "string"
112
+ "type": "uint8"
113
+ }
114
+ ],
115
+ "stateMutability": "view",
116
+ "type": "function"
117
+ },
118
+ {
119
+ "inputs": [],
120
+ "name": "GIF_INITIAL_VERSION",
121
+ "outputs": [
122
+ {
123
+ "internalType": "uint256",
124
+ "name": "",
125
+ "type": "uint256"
58
126
  }
59
127
  ],
60
128
  "stateMutability": "view",
@@ -62,7 +130,7 @@
62
130
  },
63
131
  {
64
132
  "inputs": [],
65
- "name": "INSTANCE_STORE_TARGET_NAME",
133
+ "name": "INSTANCE_OWNER_ROLE_NAME",
66
134
  "outputs": [
67
135
  {
68
136
  "internalType": "string",
@@ -75,7 +143,7 @@
75
143
  },
76
144
  {
77
145
  "inputs": [],
78
- "name": "INSTANCE_TARGET_NAME",
146
+ "name": "INSTANCE_ROLE_NAME",
79
147
  "outputs": [
80
148
  {
81
149
  "internalType": "string",
@@ -101,7 +169,7 @@
101
169
  },
102
170
  {
103
171
  "inputs": [],
104
- "name": "SERVICE_ROLE_NAME_SUFFIX",
172
+ "name": "SERVICE_NAME_SUFFIX",
105
173
  "outputs": [
106
174
  {
107
175
  "internalType": "string",
@@ -172,19 +240,58 @@
172
240
  "stateMutability": "view",
173
241
  "type": "function"
174
242
  },
243
+ {
244
+ "inputs": [],
245
+ "name": "getCommitHash",
246
+ "outputs": [
247
+ {
248
+ "internalType": "string",
249
+ "name": "commitHash",
250
+ "type": "string"
251
+ }
252
+ ],
253
+ "stateMutability": "view",
254
+ "type": "function"
255
+ },
256
+ {
257
+ "inputs": [],
258
+ "name": "getDomain",
259
+ "outputs": [
260
+ {
261
+ "internalType": "ObjectType",
262
+ "name": "targetDomain",
263
+ "type": "uint8"
264
+ }
265
+ ],
266
+ "stateMutability": "view",
267
+ "type": "function"
268
+ },
175
269
  {
176
270
  "inputs": [],
177
271
  "name": "getMainTarget",
178
272
  "outputs": [
179
273
  {
180
274
  "internalType": "Str",
181
- "name": "",
275
+ "name": "target",
182
276
  "type": "bytes32"
183
277
  }
184
278
  ],
185
279
  "stateMutability": "view",
186
280
  "type": "function"
187
281
  },
282
+ {
283
+ "inputs": [],
284
+ "name": "getMainTargetName",
285
+ "outputs": [
286
+ {
287
+ "internalType": "string",
288
+ "name": "name",
289
+ "type": "string"
290
+ }
291
+ ],
292
+ "stateMutability": "view",
293
+ "type": "function"
294
+ },
188
295
  {
189
296
  "inputs": [],
190
297
  "name": "getRelease",
@@ -195,7 +302,7 @@
195
302
  "type": "uint8"
196
303
  }
197
304
  ],
198
- "stateMutability": "pure",
305
+ "stateMutability": "view",
199
306
  "type": "function"
200
307
  },
201
308
  {
@@ -225,11 +332,6 @@
225
332
  "name": "maxMemberCount",
226
333
  "type": "uint32"
227
334
  },
228
- {
229
- "internalType": "Str",
230
- "name": "name",
231
- "type": "bytes32"
232
- },
233
335
  {
234
336
  "internalType": "Timestamp",
235
337
  "name": "createdAt",
@@ -239,6 +341,11 @@
239
341
  "internalType": "Timestamp",
240
342
  "name": "pausedAt",
241
343
  "type": "uint40"
344
+ },
345
+ {
346
+ "internalType": "Str",
347
+ "name": "name",
348
+ "type": "bytes32"
242
349
  }
243
350
  ],
244
351
  "internalType": "struct IAccess.RoleInfo",
@@ -249,6 +356,25 @@
249
356
  "stateMutability": "view",
250
357
  "type": "function"
251
358
  },
359
+ {
360
+ "inputs": [
361
+ {
362
+ "internalType": "RoleId",
363
+ "name": "roleId",
364
+ "type": "uint64"
365
+ }
366
+ ],
367
+ "name": "getRoleName",
368
+ "outputs": [
369
+ {
370
+ "internalType": "string",
371
+ "name": "roleName",
372
+ "type": "string"
373
+ }
374
+ ],
375
+ "stateMutability": "view",
376
+ "type": "function"
377
+ },
252
378
  {
253
379
  "inputs": [],
254
380
  "name": "getRoles",
@@ -262,6 +388,44 @@
262
388
  "stateMutability": "view",
263
389
  "type": "function"
264
390
  },
391
+ {
392
+ "inputs": [
393
+ {
394
+ "internalType": "ObjectType",
395
+ "name": "serviceDomain",
396
+ "type": "uint8"
397
+ }
398
+ ],
399
+ "name": "getServiceAddress",
400
+ "outputs": [
401
+ {
402
+ "internalType": "address",
403
+ "name": "service",
404
+ "type": "address"
405
+ }
406
+ ],
407
+ "stateMutability": "view",
408
+ "type": "function"
409
+ },
410
+ {
411
+ "inputs": [
412
+ {
413
+ "internalType": "uint256",
414
+ "name": "idx",
415
+ "type": "uint256"
416
+ }
417
+ ],
418
+ "name": "getServiceDomain",
419
+ "outputs": [
420
+ {
421
+ "internalType": "ObjectType",
422
+ "name": "serviceDomain",
423
+ "type": "uint8"
424
+ }
425
+ ],
426
+ "stateMutability": "view",
427
+ "type": "function"
428
+ },
265
429
  {
266
430
  "inputs": [],
267
431
  "name": "getServiceDomains",
@@ -291,7 +455,7 @@
291
455
  "type": "uint64"
292
456
  }
293
457
  ],
294
- "stateMutability": "pure",
458
+ "stateMutability": "view",
295
459
  "type": "function"
296
460
  },
297
461
  {
@@ -306,7 +470,7 @@
306
470
  "outputs": [
307
471
  {
308
472
  "internalType": "Str",
309
- "name": "serviceTarget",
473
+ "name": "target",
310
474
  "type": "bytes32"
311
475
  }
312
476
  ],
@@ -329,20 +493,7 @@
329
493
  "type": "bytes32"
330
494
  }
331
495
  ],
332
- "stateMutability": "view",
333
- "type": "function"
334
- },
335
- {
336
- "inputs": [],
337
- "name": "getTargetName",
338
- "outputs": [
339
- {
340
- "internalType": "string",
341
- "name": "name",
342
- "type": "string"
343
- }
344
- ],
345
- "stateMutability": "view",
496
+ "stateMutability": "pure",
346
497
  "type": "function"
347
498
  },
348
499
  {
@@ -377,6 +528,32 @@
377
528
  "stateMutability": "view",
378
529
  "type": "function"
379
530
  },
531
+ {
532
+ "inputs": [],
533
+ "name": "getTokenHandlerName",
534
+ "outputs": [
535
+ {
536
+ "internalType": "string",
537
+ "name": "",
538
+ "type": "string"
539
+ }
540
+ ],
541
+ "stateMutability": "view",
542
+ "type": "function"
543
+ },
544
+ {
545
+ "inputs": [],
546
+ "name": "getTokenHandlerTarget",
547
+ "outputs": [
548
+ {
549
+ "internalType": "Str",
550
+ "name": "",
551
+ "type": "bytes32"
552
+ }
553
+ ],
554
+ "stateMutability": "view",
555
+ "type": "function"
556
+ },
380
557
  {
381
558
  "inputs": [
382
559
  {
@@ -396,6 +573,25 @@
396
573
  "stateMutability": "view",
397
574
  "type": "function"
398
575
  },
576
+ {
577
+ "inputs": [
578
+ {
579
+ "internalType": "bytes4",
580
+ "name": "interfaceId",
581
+ "type": "bytes4"
582
+ }
583
+ ],
584
+ "name": "supportsInterface",
585
+ "outputs": [
586
+ {
587
+ "internalType": "bool",
588
+ "name": "",
589
+ "type": "bool"
590
+ }
591
+ ],
592
+ "stateMutability": "view",
593
+ "type": "function"
594
+ },
399
595
  {
400
596
  "inputs": [
401
597
  {
@@ -416,18 +612,38 @@
416
612
  "type": "function"
417
613
  }
418
614
  ],
419
- "bytecode": "0x60c0604052600960809081526810dbdb5c1bdb995b9d60ba1b60a0526002906100289082611e0d565b50348015610034575f80fd5b50604080518082019091526008815267496e7374616e636560c01b602082015260026100608282611e0d565b50610069610079565b6100716101ba565b50612102565b565b604080518082019091526008815267496e7374616e636560c01b60208201526100d3906100ab600a6101df565b6101df565b60408051808201909152600c81526b496e7374616e6365526f6c6560a01b602082015261025c565b60408051808201909152600d81526c496e7374616e636553746f726560981b6020820152610100906103f2565b60408051808201909152600d81526c24b739ba30b731b2a0b236b4b760991b602082015261012d906103f2565b604080518082019091526009815268109d5b991b1954d95d60ba1b6020820152610156906103f2565b610160600a610477565b61016a600b610477565b610174600e610477565b61017e600d610477565b610188600f610477565b610192601f610477565b61019c600c610477565b6101a66014610477565b6101b06015610477565b6100776017610477565b6101c2610829565b6101ca6108ac565b6101d2610922565b6100776114da565b600a90565b60405163369e953f60e11b815260ff821660048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90636d3d2a7e906024015b602060405180830381865af4158015610232573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102569190611ec7565b92915050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610295908790600401611f22565b602060405180830381865af41580156102b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102d49190611f34565b6003805460018181019092557fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b018290555f82815260056020908152604091829020805460ff1916909317909255805163bc1b392d60e01b815290519293506103a992869273__$1d92393fa9ccd763988368ce8a1cb90d26$__9263bc1b392d92600480830193928290030181865af4158015610373573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103979190611ec7565b6001600160401b039081169116141590565b156103ec576103b783611612565b6103c5576103c58383611654565b5f81815260046020526040902080546001600160401b0319166001600160401b0385161790555b50505050565b6104748173__$1d92393fa9ccd763988368ce8a1cb90d26$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561043d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104619190611ec7565b60408051602081019091525f815261025c565b50565b5f8054600181018255818052602081047f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56301805460ff858116601f9094166101000a848102910219909116179055604051632b95d28f60e21b8152600481019190915273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__9063f7fa7a7c90829063ae574a3c906024015f60405180830381865af415801561051b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105429190810190611f4b565b61054a611675565b604051632b10f60d60e21b815260ff909116600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af415801561059b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105bf9190611f34565b6040518363ffffffff1660e01b81526004016105dc929190611ffb565b5f60405180830381865af41580156105f6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261061d9190810190611f4b565b60405163cdc23e6960e01b815290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610657908490600401611f22565b602060405180830381865af4158015610672573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106969190611f34565b60ff83165f908152600160205260408120919091556106b4836116ee565b604051632b95d28f60e21b815260ff851660048201529091505f9073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__9063f7fa7a7c90829063ae574a3c906024015f60405180830381865af4158015610710573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107379190810190611f4b565b61073f611675565b604051632b10f60d60e21b815260ff909116600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af4158015610790573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107b49190611f34565b6040518363ffffffff1660e01b81526004016107d192919061203d565b5f60405180830381865af41580156107eb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108129190810190611f4b565b90506103ec83838361025c565b600b90565b601f90565b5f61086960405180604001604052806008815260200167496e7374616e636560c01b81525061086461085f6101da60201b60201c565b6116ee565b61173f565b90506104748163f7bc431c60e01b6040518060400160405280601181526020017039b2ba24b739ba30b731b2a932b0b232b960791b81525061181960201b60201c565b5f6108e76040518060400160405280600d81526020016c24b739ba30b731b2a0b236b4b760991b8152506108646100a66101da60201b60201c565b90506104748163b428b0b060e01b604051806040016040528060098152602001686772616e74526f6c6560b81b81525061181960201b60201c565b5f61095d6040518060400160405280600d81526020016c496e7374616e636553746f726560981b81525061086461085f61081f60201b60201c565b905061099e81637064ffd260e01b6040518060400160405280600f81526020016e18dc99585d1950dbdb5c1bdb995b9d608a1b81525061181960201b60201c565b60408051808201909152600f81526e1d5c19185d1950dbdb5c1bdb995b9d608a1b60208201526109d890829063d3eb4e4760e01b90611819565b60408051808201909152600a81526918dc99585d19541bdbdb60b21b6020820152610a0d908290633ec2437f60e11b90611819565b60408051808201909152600d81526c18dc99585d19541c9bd91d58dd609a1b6020820152610a4590829063046129e360e11b90611819565b60408051808201909152600d81526c1d5c19185d19541c9bd91d58dd609a1b6020820152610a7d908290638ad6e02360e01b90611819565b60408051808201909152600f81526e696e63726561736542616c616e636560881b6020820152610ab7908290639f8151e560e01b90611819565b60408051808201909152600f81526e646563726561736542616c616e636560881b6020820152610af190829063b0628dc360e01b90611819565b60408051808201909152600c81526b696e6372656173654665657360a01b6020820152610b2890829063e80c61ed60e01b90611819565b60408051808201909152600c81526b64656372656173654665657360a01b6020820152610b5f9082906314cc21b560e21b90611819565b60408051808201909152600d81526c496e7374616e636553746f726560981b6020820152610b9190610864600e6116ee565b9050610be0816330a130ba60e01b6040518060400160405280601581526020017f6372656174654469737472696275746f7254797065000000000000000000000081525061181960201b60201c565b60408051808201909152601581527f7570646174654469737472696275746f725479706500000000000000000000006020820152610c289082906305a8416b60e41b90611819565b60408051808201909152601a81527f7570646174654469737472696275746f725479706553746174650000000000006020820152610c7090829063a284222960e01b90611819565b60408051808201909152601181527031b932b0ba32a234b9ba3934b13aba37b960791b6020820152610cac908290637b8ebfff60e11b90611819565b6040805180820190915260118152703ab83230ba32a234b9ba3934b13aba37b960791b6020820152610ce8908290632a72b0c760e11b90611819565b60408051808201909152601681527f7570646174654469737472696275746f725374617465000000000000000000006020820152610d309082906340529b0f60e01b90611819565b60408051808201909152600e81526d18dc99585d19549959995c9c985b60921b6020820152610d69908290631941cfe160e31b90611819565b60408051808201909152600e81526d1d5c19185d19549959995c9c985b60921b6020820152610da29082906330882f0760e11b90611819565b60408051808201909152601381527f757064617465526566657272616c5374617465000000000000000000000000006020820152610de990829062af902560e81b90611819565b60408051808201909152600d81526c496e7374616e636553746f726560981b6020820152610e1c9061086461085f600d90565b9050610e5b81630632b17d60e01b6040518060400160405280600d81526020016c18dc99585d1954995c5d595cdd609a1b81525061181960201b60201c565b60408051808201909152600d81526c1d5c19185d1954995c5d595cdd609a1b6020820152610e9390829063275c059560e01b90611819565b60408051808201909152601281527175706461746552657175657374537461746560701b6020820152610ed0908290635a6bf7f160e11b90611819565b60408051808201909152600d81526c496e7374616e636553746f726560981b6020820152610f0290610864600f6116ee565b9050610f3e81637cd81ef860e01b6040518060400160405280600a8152602001691d5c19185d19541bdbdb60b21b81525061181960201b60201c565b60408051808201909152600d81526c496e7374616e636553746f726560981b6020820152610f7090610864601f6116ee565b9050610fae8163a46eb8dc60e01b6040518060400160405280600c81526020016b63726561746542756e646c6560a01b81525061181960201b60201c565b60408051808201909152600c81526b75706461746542756e646c6560a01b6020820152610fe59082906351dd844b60e01b90611819565b60408051808201909152601181527075706461746542756e646c65537461746560781b6020820152611021908290637f0f8c6b60e11b90611819565b60408051808201909152600e81526d1a5b98dc99585cd9531bd8dad95960921b602082015261105a90829063248a77dd60e01b90611819565b60408051808201909152600e81526d191958dc99585cd9531bd8dad95960921b60208201526110939082906353ebe12960e01b90611819565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526110c590610864600c6116ee565b905061110181632f61088a60e01b6040518060400160405280600a8152602001696372656174655269736b60b01b81525061181960201b60201c565b60408051808201909152600a8152697570646174655269736b60b01b60208201526111369082906314eddc0360e31b90611819565b60408051808201909152600f81526e7570646174655269736b537461746560881b6020820152611170908290633e77a42160e11b90611819565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526111a29061086460146116ee565b90506111e581636fac862260e01b6040518060400160405280601181526020017031b932b0ba32a0b8383634b1b0ba34b7b760791b81525061181960201b60201c565b6040805180820190915260118152703ab83230ba32a0b8383634b1b0ba34b7b760791b60208201526112219082906381d32d6b60e01b90611819565b60408051808201909152601681527f7570646174654170706c69636174696f6e5374617465000000000000000000006020820152611269908290630fad0eb160e01b90611819565b60408051808201909152600d81526c496e7374616e636553746f726560981b602082015261129b9061086460156116ee565b90506112d98163425d08e260e01b6040518060400160405280600c81526020016b757064617465506f6c69637960a01b81525061181960201b60201c565b604080518082019091526011815270757064617465506f6c696379537461746560781b6020820152611315908290631750d17360e21b90611819565b60408051808201909152600d81526c6372656174655072656d69756d60981b602082015261134d908290634d4a7ae960e01b90611819565b6040805180820190915260128152717570646174655072656d69756d537461746560701b602082015261138a908290632ae5819d60e01b90611819565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526113bc9061086460176116ee565b90506114008163d625d75860e01b60405180604001604052806012815260200171757064617465506f6c696379436c61696d7360701b81525061181960201b60201c565b60408051808201909152600b81526a637265617465436c61696d60a81b602082015261143690829063e145b68b60e01b90611819565b60408051808201909152600b81526a757064617465436c61696d60a81b602082015261146c90829063d78c599b60e01b90611819565b60408051808201909152600c81526b18dc99585d1954185e5bdd5d60a21b60208201526114a390829063bcd65e2160e01b90611819565b60408051808201909152600c81526b1d5c19185d1954185e5bdd5d60a21b6020820152610474908290631e1fc68760e11b90611819565b5f61151160405180604001604052806009815260200168109d5b991b1954d95d60ba1b81525061086461085f61082460201b60201c565b905061154d81630cc7e61460e01b6040518060400160405280600a8152602001696c696e6b506f6c69637960b01b81525061181960201b60201c565b60408051808201909152600c81526b756e6c696e6b506f6c69637960a01b6020820152611584908290631351fccf60e31b90611819565b60408051808201909152600381526218591960ea1b60208201526115b29082906346f0e8a760e11b90611819565b6040805180820190915260048152636c6f636b60e01b60208201526115e190829063b5346af560e01b90611819565b604080518082019091526006815265756e6c6f636b60d01b60208201526104749082906306fa456560e01b90611819565b5f806001600160401b0383165f9081526007602052604090205468010000000000000000900460ff16600381111561164c5761164c612083565b141592915050565b6116718261166c6116636119f6565b60018086611a6a565b611c47565b5050565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156116c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116e99190612097565b905090565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d383611712611675565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401610217565b5f8073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b81526004016117789190611f22565b602060405180830381865af4158015611793573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117b79190611f34565b5f8181526008602081815260408084208054600181018255908552828520600482040180546001600160401b03808c1660039094169096026101000a838102960219169490941790935593835260098152838320918352522091505092915050565b60408051606081019182905263cdc23e6960e01b90915283908073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e6961185a8660648501611f22565b602060405180830381865af4158015611875573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118999190611f34565b8152604051636b15ee8b60e01b81526001600160e01b03198616600482015260209091019073__$0904195350e4c23ecb1d51df0a32586dcd$__90636b15ee8b90602401602060405180830381865af41580156118f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061191c91906120b7565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611972573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061199691906120de565b64ffffffffff9081169091528254600181810185555f94855260209485902084516002909302019182559383015193018054604090930151909116640100000000026001600160481b031990921660e09390931c92909217179055505050565b604051637c3940bf60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401602060405180830381865af4158015611a46573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116e99190611ec7565b6040805160c0810182525f80825260208201819052918101829052606081018290526080810182905260a08101919091526040518060c00160405280866001600160401b03168152602001856003811115611ac757611ac7612083565b81526020018463ffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401611b0f9190611f22565b602060405180830381865af4158015611b2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b4e9190611f34565b815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b9a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bbe91906120de565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611c11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c3591906120de565b64ffffffffff16905295945050505050565b6006805460018101909155600481047ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160401b0380861660086003958616026101000a81810290830219909316929092179092555f9081526007602090815260409091208451815493166001600160401b03198416811782559185015185949193909284926001600160481b0319909216179068010000000000000000908490811115611cfd57611cfd612083565b02179055506040820151815463ffffffff90911669010000000000000000000263ffffffff60481b199091161781556060820151600182015560808201516002909101805460a09093015164ffffffffff90811665010000000000026001600160501b03199094169216919091179190911790555050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680611d9d57607f821691505b602082108103611dbb57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115611e0857805f5260205f20601f840160051c81016020851015611de65750805b601f840160051c820191505b81811015611e05575f8155600101611df2565b50505b505050565b81516001600160401b03811115611e2657611e26611d75565b611e3a81611e348454611d89565b84611dc1565b6020601f821160018114611e6c575f8315611e555750848201515b5f19600385901b1c1916600184901b178455611e05565b5f84815260208120601f198516915b82811015611e9b5787850151825560209485019460019092019101611e7b565b5084821015611eb857868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215611ed7575f80fd5b81516001600160401b0381168114611eed575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611eed6020830184611ef4565b5f60208284031215611f44575f80fd5b5051919050565b5f60208284031215611f5b575f80fd5b81516001600160401b03811115611f70575f80fd5b8201601f81018413611f80575f80fd5b80516001600160401b03811115611f9957611f99611d75565b604051601f8201601f19908116603f011681016001600160401b0381118282101715611fc757611fc7611d75565b604052818152828201602001861015611fde575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b606081525f61200d6060830185611ef4565b828103602084015260078152665365727669636560c81b6020820152604081019150508260408301529392505050565b606081525f61204f6060830185611ef4565b8281036020840152600b81526a53657276696365526f6c6560a81b6020820152604081019150508260408301529392505050565b634e487b7160e01b5f52602160045260245ffd5b5f602082840312156120a7575f80fd5b815160ff81168114611eed575f80fd5b5f602082840312156120c7575f80fd5b81516001600160e01b031981168114611eed575f80fd5b5f602082840312156120ee575f80fd5b815164ffffffffff81168114611eed575f80fd5b610e878061210f5f395ff3fe608060405234801561000f575f80fd5b5060043610610148575f3560e01c806376b707b7116100bf578063c5f3484411610079578063c5f3484414610371578063c6a0017914610394578063d0540443146103a7578063da1b620b146103d2578063e8eba435146103e5578063e9b891a8146103f8575f80fd5b806376b707b7146102ab578063775f14b1146102c55780638899278a146103055780638c5397b01461030d578063aa689ae514610320578063c143892b14610347575f80fd5b80635bfa5027116101105780635bfa5027146101ee5780635c935ce01461020e578063608b081e1461024057806363fe3b561461026c57806368c55b13146102815780637106139814610296575f80fd5b80631e4afbbf1461014c5780632f8ade12146101755780634322699b146101ae578063433f95d6146101c457806354e17da9146101cc575b5f80fd5b61015f61015a366004610a7b565b610420565b60405161016c9190610aa9565b60405180910390f35b6101a16040518060400160405280600d81526020016c496e7374616e636553746f726560981b81525081565b60405161016c9190610b43565b6101b66104cd565b60405190815260200161016c565b6101a1610564565b6101b66101da366004610b6a565b60ff165f9081526001602052604090205490565b6102016101fc366004610b85565b6105f4565b60405161016c9190610bb4565b61023061021c366004610c40565b5f9081526005602052604090205460ff1690565b604051901515815260200161016c565b6101a16040518060400160405280600d81526020016c24b739ba30b731b2a0b236b4b760991b81525081565b6102746106ce565b60405161016c9190610c57565b610289610723565b60405161016c9190610c8e565b61029e610794565b60405161016c9190610cc8565b6102b361081a565b60405160ff909116815260200161016c565b6102ed6102d3366004610c40565b5f908152600460205260409020546001600160401b031690565b6040516001600160401b03909116815260200161016c565b6101b6600381565b61029e61031b366004610c40565b61088e565b6101a160405180604001604052806008815260200167496e7374616e636560c01b81525081565b6101a16040518060400160405280600b81526020016a53657276696365526f6c6560a81b81525081565b6101a160405180604001604052806004815260200163526f6c6560e01b81525081565b6102306103a2366004610b85565b61091e565b6101a16040518060400160405280600c81526020016b496e7374616e6365526f6c6560a01b81525081565b6101b66103e0366004610d1c565b61095b565b6102ed6103f3366004610b6a565b6109d9565b6101a160405180604001604052806009815260200168109d5b991b1954d95d60ba1b81525081565b5f8281526009602090815260408083206001600160401b03851684528252808320805482518185028101850190935280835260609492939192909184015b828210156104c1575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff1691830191909152908352909201910161045e565b50505050905092915050565b5f61055f600280546104de90610dcc565b80601f016020809104026020016040519081016040528092919081815260200182805461050a90610dcc565b80156105555780601f1061052c57610100808354040283529160200191610555565b820191905f5260205f20905b81548152906001019060200180831161053857829003601f168201915b505050505061095b565b905090565b60606002805461057390610dcc565b80601f016020809104026020016040519081016040528092919081815260200182805461059f90610dcc565b80156105ea5780601f106105c1576101008083540402835291602001916105ea565b820191905f5260205f20905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600782529185902085519384019095528454918216835292939192830190600160401b900460ff16600381111561066c5761066c610ba0565b600381111561067d5761067d610ba0565b815281546901000000000000000000900463ffffffff1660208201526001820154604082015260029091015464ffffffffff8082166060840152650100000000009091041660809091015292915050565b606060038054806020026020016040519081016040528092919081815260200182805480156105ea57602002820191905f5260205f20905b815481526020019060010190808311610706575050505050905090565b60605f8054806020026020016040519081016040528092919081815260200182805480156105ea57602002820191905f5260205f20905f905b825461010083900a900460ff1681526020600192830181810494850194909303909202910180841161075c5790505050505050905090565b606060068054806020026020016040519081016040528092919081815260200182805480156105ea57602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b0316815260200190600801906020826007010492830192600103820291508084116107ce5790505050505050905090565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af415801561086a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061055f9190610e04565b5f8181526008602090815260409182902080548351818402810184019094528084526060939283018282801561091257602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b0316815260200190600801906020826007010492830192600103820291508084116108cf5790505b50505050509050919050565b5f806001600160401b0383165f90815260076020526040902054600160401b900460ff16600381111561095357610953610ba0565b141592915050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610994908590600401610b43565b602060405180830381865af41580156109af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d39190610e1f565b92915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3836109fd61081a565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015610a40573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d39190610e36565b6001600160401b0381168114610a78575f80fd5b50565b5f8060408385031215610a8c575f80fd5b823591506020830135610a9e81610a64565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610b0a578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff169185019190915290930192606090920191600101610ac2565b509095945050505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b556020830184610b15565b9392505050565b60ff81168114610a78575f80fd5b5f60208284031215610b7a575f80fd5b8135610b5581610b5c565b5f60208284031215610b95575f80fd5b8135610b5581610a64565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c082019060048110610be757634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff6040840151166040830152606083015160608301526080830151610c20608084018264ffffffffff169052565b5060a0830151610c3960a084018264ffffffffff169052565b5092915050565b5f60208284031215610c50575f80fd5b5035919050565b602080825282518282018190525f918401906040840190835b81811015610b0a578351835260209384019390920191600101610c70565b602080825282518282018190525f918401906040840190835b81811015610b0a57835160ff16835260209384019390920191600101610ca7565b602080825282518282018190525f918401906040840190835b81811015610b0a5783516001600160401b0316835260209384019390920191600101610ce1565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610d2c575f80fd5b81356001600160401b03811115610d41575f80fd5b8201601f81018413610d51575f80fd5b80356001600160401b03811115610d6a57610d6a610d08565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610d9857610d98610d08565b604052818152828201602001861015610daf575f80fd5b816020840160208301375f91810160200191909152949350505050565b600181811c90821680610de057607f821691505b602082108103610dfe57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610e14575f80fd5b8151610b5581610b5c565b5f60208284031215610e2f575f80fd5b5051919050565b5f60208284031215610e46575f80fd5b8151610b5581610a6456fea2646970667358221220b7c8e056b899890a1d78c30e0b1ad136c9c3b526421512c1b057b5b5b538839964736f6c634300081a0033",
420
- "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610148575f3560e01c806376b707b7116100bf578063c5f3484411610079578063c5f3484414610371578063c6a0017914610394578063d0540443146103a7578063da1b620b146103d2578063e8eba435146103e5578063e9b891a8146103f8575f80fd5b806376b707b7146102ab578063775f14b1146102c55780638899278a146103055780638c5397b01461030d578063aa689ae514610320578063c143892b14610347575f80fd5b80635bfa5027116101105780635bfa5027146101ee5780635c935ce01461020e578063608b081e1461024057806363fe3b561461026c57806368c55b13146102815780637106139814610296575f80fd5b80631e4afbbf1461014c5780632f8ade12146101755780634322699b146101ae578063433f95d6146101c457806354e17da9146101cc575b5f80fd5b61015f61015a366004610a7b565b610420565b60405161016c9190610aa9565b60405180910390f35b6101a16040518060400160405280600d81526020016c496e7374616e636553746f726560981b81525081565b60405161016c9190610b43565b6101b66104cd565b60405190815260200161016c565b6101a1610564565b6101b66101da366004610b6a565b60ff165f9081526001602052604090205490565b6102016101fc366004610b85565b6105f4565b60405161016c9190610bb4565b61023061021c366004610c40565b5f9081526005602052604090205460ff1690565b604051901515815260200161016c565b6101a16040518060400160405280600d81526020016c24b739ba30b731b2a0b236b4b760991b81525081565b6102746106ce565b60405161016c9190610c57565b610289610723565b60405161016c9190610c8e565b61029e610794565b60405161016c9190610cc8565b6102b361081a565b60405160ff909116815260200161016c565b6102ed6102d3366004610c40565b5f908152600460205260409020546001600160401b031690565b6040516001600160401b03909116815260200161016c565b6101b6600381565b61029e61031b366004610c40565b61088e565b6101a160405180604001604052806008815260200167496e7374616e636560c01b81525081565b6101a16040518060400160405280600b81526020016a53657276696365526f6c6560a81b81525081565b6101a160405180604001604052806004815260200163526f6c6560e01b81525081565b6102306103a2366004610b85565b61091e565b6101a16040518060400160405280600c81526020016b496e7374616e6365526f6c6560a01b81525081565b6101b66103e0366004610d1c565b61095b565b6102ed6103f3366004610b6a565b6109d9565b6101a160405180604001604052806009815260200168109d5b991b1954d95d60ba1b81525081565b5f8281526009602090815260408083206001600160401b03851684528252808320805482518185028101850190935280835260609492939192909184015b828210156104c1575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff1691830191909152908352909201910161045e565b50505050905092915050565b5f61055f600280546104de90610dcc565b80601f016020809104026020016040519081016040528092919081815260200182805461050a90610dcc565b80156105555780601f1061052c57610100808354040283529160200191610555565b820191905f5260205f20905b81548152906001019060200180831161053857829003601f168201915b505050505061095b565b905090565b60606002805461057390610dcc565b80601f016020809104026020016040519081016040528092919081815260200182805461059f90610dcc565b80156105ea5780601f106105c1576101008083540402835291602001916105ea565b820191905f5260205f20905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600782529185902085519384019095528454918216835292939192830190600160401b900460ff16600381111561066c5761066c610ba0565b600381111561067d5761067d610ba0565b815281546901000000000000000000900463ffffffff1660208201526001820154604082015260029091015464ffffffffff8082166060840152650100000000009091041660809091015292915050565b606060038054806020026020016040519081016040528092919081815260200182805480156105ea57602002820191905f5260205f20905b815481526020019060010190808311610706575050505050905090565b60605f8054806020026020016040519081016040528092919081815260200182805480156105ea57602002820191905f5260205f20905f905b825461010083900a900460ff1681526020600192830181810494850194909303909202910180841161075c5790505050505050905090565b606060068054806020026020016040519081016040528092919081815260200182805480156105ea57602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b0316815260200190600801906020826007010492830192600103820291508084116107ce5790505050505050905090565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af415801561086a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061055f9190610e04565b5f8181526008602090815260409182902080548351818402810184019094528084526060939283018282801561091257602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b0316815260200190600801906020826007010492830192600103820291508084116108cf5790505b50505050509050919050565b5f806001600160401b0383165f90815260076020526040902054600160401b900460ff16600381111561095357610953610ba0565b141592915050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610994908590600401610b43565b602060405180830381865af41580156109af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d39190610e1f565b92915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3836109fd61081a565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015610a40573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d39190610e36565b6001600160401b0381168114610a78575f80fd5b50565b5f8060408385031215610a8c575f80fd5b823591506020830135610a9e81610a64565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610b0a578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff169185019190915290930192606090920191600101610ac2565b509095945050505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b556020830184610b15565b9392505050565b60ff81168114610a78575f80fd5b5f60208284031215610b7a575f80fd5b8135610b5581610b5c565b5f60208284031215610b95575f80fd5b8135610b5581610a64565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c082019060048110610be757634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff6040840151166040830152606083015160608301526080830151610c20608084018264ffffffffff169052565b5060a0830151610c3960a084018264ffffffffff169052565b5092915050565b5f60208284031215610c50575f80fd5b5035919050565b602080825282518282018190525f918401906040840190835b81811015610b0a578351835260209384019390920191600101610c70565b602080825282518282018190525f918401906040840190835b81811015610b0a57835160ff16835260209384019390920191600101610ca7565b602080825282518282018190525f918401906040840190835b81811015610b0a5783516001600160401b0316835260209384019390920191600101610ce1565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610d2c575f80fd5b81356001600160401b03811115610d41575f80fd5b8201601f81018413610d51575f80fd5b80356001600160401b03811115610d6a57610d6a610d08565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610d9857610d98610d08565b604052818152828201602001861015610daf575f80fd5b816020840160208301375f91810160200191909152949350505050565b600181811c90821680610de057607f821691505b602082108103610dfe57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610e14575f80fd5b8151610b5581610b5c565b5f60208284031215610e2f575f80fd5b5051919050565b5f60208284031215610e46575f80fd5b8151610b5581610a6456fea2646970667358221220b7c8e056b899890a1d78c30e0b1ad136c9c3b526421512c1b057b5b5b538839964736f6c634300081a0033",
615
+ "bytecode": "0x610100604052600b60c09081526a086dedae0dedccadce8a8d60ab1b60e052600e9061002b9082613304565b50348015610037575f80fd5b50604080518082019091526008815267496e7374616e636560c01b6020820152600a6003604051806060016040528060288152602001614c35602891395f808585858583515f0361009b5760405163c0348f3560e01b815260040160405180910390fd5b6101158373__$0d958e68cba84670b8f4a3f2f2686b1c6b$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156100e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061010a91906133cc565b60ff90811691161490565b15610133576040516302e3f24160e11b815260040160405180910390fd5b73__$b659da7d8a6d2d32aa6c1e17da23dc2174$__63bb41432a6040518163ffffffff1660e01b8152600401602060405180830381865af415801561017a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061019e91906133cc565b604051632b10f60d60e21b815260ff909116600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af41580156101ef573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061021391906133e7565b8260ff161080610305575073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__63fbcaa8ed6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610265573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061028991906133cc565b604051632b10f60d60e21b815260ff909116600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af41580156102da573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102fe91906133e7565b8260ff1610155b1561032d57604051636164474d60e01b815260ff831660048201526024015b60405180910390fd5b602881511461035157806040516369306ec360e01b8152600401610324919061342c565b6103916301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b62d1d15b60e11b5f9081526020527fbfdfbaeb6ce3cef2dc92e70fc8227f58737fb6598199eb8999f7714e506efecb805460ff1916600117905560026103d78582613304565b5060405163cdc23e6960e01b815273__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e699061040f90879060040161342c565b602060405180830381865af415801561042a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061044e91906133e7565b60035560ff808416608052821660a052600161046a8282613304565b506104b4610476610990565b6104af610481610990565b6001806104aa60408051808201909152600981526841646d696e526f6c6560b81b602082015290565b610a0a565b610be7565b6104f46104bf610d2d565b6104af6104ca610990565b6001806104aa60408051808201909152600a8152695075626c6963526f6c6560b01b602082015290565b5050600d80546001600160401b031916600a179055505081156107505760405163037c8cb160e51b815260ff8616600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015610561573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610585919061343e565b156105a3576040516302e3f24160e11b815260040160405180910390fd5b6040516368aebf7b60e01b81526201adb060048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af41580156105f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106199190613478565b90505f6106ae6002805461062c90613281565b80601f016020809104026020016040519081016040528092919081815260200182805461065890613281565b80156106a35780601f1061067a576101008083540402835291602001916106a3565b820191905f5260205f20905b81548152906001019060200180831161068657829003601f168201915b5050610d6f92505050565b9050610749600280546106c090613281565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90613281565b80156107375780601f1061070e57610100808354040283529160200191610737565b820191905f5260205f20905b81548152906001019060200180831161071a57829003601f168201915b50505050508383610db760201b60201c565b50506107e2565b6107e26002805461076090613281565b80601f016020809104026020016040519081016040528092919081815260200182805461078c90613281565b80156107d75780601f106107ae576101008083540402835291602001916107d7565b820191905f5260205f20905b8154815290600101906020018083116107ba57829003601f168201915b5050610f4d92505050565b6107ea611068565b6107f26110ea565b6107fa6111a2565b610802611278565b8015610945578560405160200161081991906134a8565b604051602081830303815290604052600e90816108369190613304565b5060405163cdc23e6960e01b815273__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e699061086f90600e906004016134c5565b602060405180830381865af415801561088a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ae91906133e7565b600f55600e805461094591906108c390613281565b80601f01602080910402602001604051908101604052809291908181526020018280546108ef90613281565b801561093a5780601f106109115761010080835404028352916020019161093a565b820191905f5260205f20905b81548152906001019060200180831161091d57829003601f168201915b50506112a892505050565b635a183bdb60e11b5f9081526020527f7eca8d71090247e4ddb022896f9503bf26cbfa0d8fb0110212f077e5ed799af8805460ff19166001179055505050505050613852565b600a90565b6040516368aebf7b60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024015b602060405180830381865af41580156109e1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a059190613478565b905090565b6040805160c0810182525f80825260208201819052918101829052606081018290526080810182905260a08101919091526040518060c00160405280866001600160401b03168152602001856003811115610a6757610a6761354c565b81526020018463ffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015610abf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae39190613574565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5a9190613574565b64ffffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401610b9d919061342c565b602060405180830381865af4158015610bb8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bdc91906133e7565b905295945050505050565b6006805460018101909155600481047ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160401b0380861660086003958616026101000a81810290830219909316929092179092555f9081526007602090815260409091208451815493166001600160401b03198416811782559185015185949193909284926001600160481b0319909216179068010000000000000000908490811115610c9d57610c9d61354c565b0217905550604082015181546060840151608085015164ffffffffff908116600160901b0264ffffffffff60901b19919092166d01000000000000000000000000000264ffffffffff60681b1963ffffffff90951669010000000000000000000294909416600160481b600160901b031990931692909217929092171617815560a0909101516001909101555050565b6040516368aebf7b60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016109c6565b565b606081604051806040016040528060058152602001645f526f6c6560d81b815250604051602001610da192919061358d565b6040516020818303038152906040529050919050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610df090879060040161342c565b602060405180830381865af4158015610e0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2f91906133e7565b6008805460018181019092557ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3018290555f82815260096020908152604091829020805460ff1916909317909255805163bc1b392d60e01b81529051929350610f0492869273__$1d92393fa9ccd763988368ce8a1cb90d26$__9263bc1b392d92600480830193928290030181865af4158015610ece573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ef29190613478565b6001600160401b039081169116141590565b15610f4757610f128361132d565b610f2057610f20838361136f565b5f818152600a6020526040902080546001600160401b0319166001600160401b0385161790555b50505050565b600d80545f9173__$1d92393fa9ccd763988368ce8a1cb90d26$__916368aebf7b916001600160401b039091169084610f85836135a9565b91906101000a8154816001600160401b0302191690836001600160401b031602179055506040518263ffffffff1660e01b8152600401610fd491906001600160401b0391909116815260200190565b602060405180830381865af4158015610fef573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110139190613478565b90505f82604051806040016040528060058152602001645f526f6c6560d81b81525060405160200161104692919061358d565b60408051601f198184030181529190529050611063838383610db7565b505050565b611073600a8061138c565b61107f6028600b61138c565b61108b600b600c61138c565b611097600e600d61138c565b6110a3600d600e61138c565b6110ae600f8061138c565b6110ba6016601061138c565b6110c6602c601161138c565b6110d26014601261138c565b6110de6015601361138c565b610d6d602d601461138c565b610d6d6110f56115f6565b73__$7ca0443fea8aec4ba68c2e8d18c5a8d73e$__635a819662611117610990565b60035f60405180604001604052806011815260200170496e7374616e63654f776e6572526f6c6560781b8152506040518563ffffffff1660e01b815260040161116394939291906135e0565b60c060405180830381865af415801561117e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104af9190613691565b60408051808201909152600d81526c24b739ba30b731b2a0b236b4b760991b60208201526111cf906112a8565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526111fc906112a8565b60408051808201909152600c81526b50726f6475637453746f726560a01b6020820152611228906112a8565b604080518082019091526009815268109d5b991b1954d95d60ba1b6020820152611251906112a8565b604080518082019091526007815266149a5cdad4d95d60ca1b6020820152610d6d906112a8565b611280611630565b611288611a60565b611290611d68565b611298612854565b6112a0612a75565b610d6d612be2565b61132a8173__$1d92393fa9ccd763988368ce8a1cb90d26$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156112f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113179190613478565b60408051602081019091525f8152610db7565b50565b5f806001600160401b0383165f9081526007602052604090205468010000000000000000900460ff1660038111156113675761136761354c565b141592915050565b611388826104af61137e610990565b6002600186610a0a565b5050565b6004805460018101825560208082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805460ff808816601f9095166101000a8581029102199091161790555f91825260059052604080822080546001600160a01b0386166001600160a01b031990911617905551632b95d28f60e21b8152909173__$0d958e68cba84670b8f4a3f2f2686b1c6b$__91630c3258f991839163ae574a3c916114479189910160ff91909116815260200190565b5f60405180830381865af4158015611461573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611488919081019061371c565b6040805180820190915260078152665365727669636560c81b60208201526114ae612d53565b6040518463ffffffff1660e01b81526004016114cc939291906137ae565b5f60405180830381865af41580156114e6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261150d919081019061371c565b90506110638173__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe86611536612d53565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611579573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061159d9190613478565b83604051806040016040528060058152602001645f526f6c6560d81b8152506040516020016115cd92919061358d565b60408051601f19818403018152919052610db7565b602890565b601690565b602c90565b601490565b6040516368aebf7b60e01b8152600560048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016109c6565b5f61166860405180604001604052806008815260200167496e7374616e636560c01b815250611663610d2d60201b60201c565b612dd0565b90506116a981635d96628960e01b6040518060400160405280600f81526020016e1c9959da5cdd195c941c9bd91d58dd608a1b815250612ee460201b60201c565b60408051808201909152601581527f75706772616465496e7374616e6365526561646572000000000000000000000060208201526116f190829063c265172560e01b90612ee4565b60408051808201909152601781527f7365745374616b696e674c6f636b696e67506572696f6400000000000000000060208201526117399082906305aec9df60e31b90612ee4565b60408051808201909152601481527f7365745374616b696e675265776172645261746500000000000000000000000060208201526117819082906311f7784360e01b90612ee4565b60408051808201909152601381527f7365745374616b696e674d6178416d6f756e740000000000000000000000000060208201526117c9908290637de45f1360e01b90612ee4565b60408051808201909152601b81527f726566696c6c5374616b696e675265776172645265736572766573000000000060208201526118119082906327c5c55d60e11b90612ee4565b60408051808201909152601d81527f77697468647261775374616b696e675265776172645265736572766573000000602082015261185990829063e52ba1cb60e01b90612ee4565b60408051808201909152600a815269637265617465526f6c6560b01b602082015261188e9082906307d2075960e21b90612ee4565b60408051808201909152600d81526c736574526f6c6541637469766560981b60208201526118c69082906311effbc960e11b90612ee4565b6040805180820190915260098152686772616e74526f6c6560b81b60208201526118fa908290630b428b0b60e41b90612ee4565b60408051808201909152600a8152697265766f6b65526f6c6560b01b602082015261192f908290635be958b160e11b90612ee4565b60408051808201909152600c81526b18dc99585d1955185c99d95d60a21b60208201526119669082906317ea2ab560e21b90612ee4565b604080518082019091526012815271617574686f72697a6546756e6374696f6e7360701b60208201526119a390829063f4b4ee4d60e01b90612ee4565b60408051808201909152601481527f756e617574686f72697a6546756e6374696f6e7300000000000000000000000060208201526119eb908290633c54fe0960e21b90612ee4565b604080518082019091526008815267496e7374616e636560c01b6020820152611a1d90611663600a6130c1565b6130c1565b905061132a8163f7bc431c60e01b6040518060400160405280601181526020017039b2ba24b739ba30b731b2a932b0b232b960791b815250612ee460201b60201c565b5f611a9b6040518060400160405280600d81526020016c24b739ba30b731b2a0b236b4b760991b815250611663611a1861098b60201b60201c565b9050611ad781631f481d6460e01b6040518060400160405280600a815260200169637265617465526f6c6560b01b815250612ee460201b60201c565b60408051808201909152600d81526c736574526f6c6541637469766560981b6020820152611b0f9082906311effbc960e11b90612ee4565b6040805180820190915260098152686772616e74526f6c6560b81b6020820152611b43908290630b428b0b60e41b90612ee4565b60408051808201909152600a8152697265766f6b65526f6c6560b01b6020820152611b78908290635be958b160e11b90612ee4565b60408051808201909152600c81526b18dc99585d1955185c99d95d60a21b6020820152611baf9082906317ea2ab560e21b90612ee4565b604080518082019091526012815271617574686f72697a6546756e6374696f6e7360701b6020820152611bec90829063f4b4ee4d60e01b90612ee4565b60408051808201909152601481527f756e617574686f72697a6546756e6374696f6e730000000000000000000000006020820152611c34908290633c54fe0960e21b90612ee4565b60408051808201909152600f81526e1cd95d15185c99d95d131bd8dad959608a1b6020820152611c6e908290638689231360e01b90612ee4565b6040805180820190915260118152701cd95d125b9cdd185b98d9531bd8dad959607a1b6020820152611caa9082906396cdfa3f60e01b90612ee4565b60408051808201909152600d81526c24b739ba30b731b2a0b236b4b760991b6020820152611cdc90611663600b6130c1565b9050611d2b816366704a7d60e01b6040518060400160405280601b81526020017f696e697469616c697a65436f6d706f6e656e74417574686f72697a0000000000815250612ee460201b60201c565b6040805180820190915260128152711cd95d10dbdb5c1bdb995b9d131bd8dad95960721b602082015261132a908290630d99633160e01b90612ee4565b5f611da36040518060400160405280600d81526020016c496e7374616e636553746f726560981b815250611663611a186115e260201b60201c565b9050611de481639f8151e560e01b6040518060400160405280600f81526020016e696e63726561736542616c616e636560881b815250612ee460201b60201c565b60408051808201909152600f81526e646563726561736542616c616e636560881b6020820152611e1e90829063b0628dc360e01b90612ee4565b60408051808201909152600c81526b696e6372656173654665657360a01b6020820152611e5590829063e80c61ed60e01b90612ee4565b60408051808201909152600c81526b64656372656173654665657360a01b6020820152611e8c9082906314cc21b560e21b90612ee4565b60408051808201909152600d81526c496e7374616e636553746f726560981b6020820152611ebe90611663600b6130c1565b9050611eff8163e2586c5860e01b6040518060400160405280600f81526020016e18dc99585d1950dbdb5c1bdb995b9d608a1b815250612ee460201b60201c565b60408051808201909152600f81526e1d5c19185d1950dbdb5c1bdb995b9d608a1b6020820152611f3990829063623e7a0f60e01b90612ee4565b60408051808201909152600a81526918dc99585d19541bdbdb60b21b6020820152611f6e908290631242102d60e21b90612ee4565b60408051808201909152600d81526c18dc99585d19541c9bd91d58dd609a1b6020820152611fa6908290637f1773c960e11b90612ee4565b60408051808201909152600d81526c1d5c19185d19541c9bd91d58dd609a1b6020820152611fde90829063659743e960e11b90612ee4565b60408051808201909152600981526863726561746546656560b81b6020820152612012908290631aa4116360e01b90612ee4565b60408051808201909152600981526875706461746546656560b81b6020820152612046908290633aed070360e21b90612ee4565b60408051808201909152600d81526c496e7374616e636553746f726560981b602082015261207890611663600e6130c1565b90506120c781634bb2d19760e01b6040518060400160405280601581526020017f6372656174654469737472696275746f72547970650000000000000000000000815250612ee460201b60201c565b60408051808201909152601581527f7570646174654469737472696275746f72547970650000000000000000000000602082015261210f908290637d417f0d60e01b90612ee4565b60408051808201909152601a81527f7570646174654469737472696275746f72547970655374617465000000000000602082015261215790829063a284222960e01b90612ee4565b60408051808201909152601181527031b932b0ba32a234b9ba3934b13aba37b960791b6020820152612193908290633e6cff8f60e21b90612ee4565b6040805180820190915260118152703ab83230ba32a234b9ba3934b13aba37b960791b60208201526121cf908290630af38b5f60e21b90612ee4565b60408051808201909152601681527f7570646174654469737472696275746f7253746174650000000000000000000060208201526122179082906340529b0f60e01b90612ee4565b60408051808201909152600e81526d18dc99585d19549959995c9c985b60921b602082015261225090829063254121c960e11b90612ee4565b60408051808201909152600e81526d1d5c19185d19549959995c9c985b60921b6020820152612289908290639626055960e01b90612ee4565b60408051808201909152601381527f757064617465526566657272616c53746174650000000000000000000000000060208201526122d090829062af902560e81b90612ee4565b60408051808201909152600d81526c496e7374616e636553746f726560981b602082015261230390611663611a18600d90565b905061234281633477771260e01b6040518060400160405280600d81526020016c18dc99585d1954995c5d595cdd609a1b815250612ee460201b60201c565b60408051808201909152600d81526c1d5c19185d1954995c5d595cdd609a1b602082015261237a908290633998226560e11b90612ee4565b60408051808201909152601281527175706461746552657175657374537461746560701b60208201526123b7908290635a6bf7f160e11b90612ee4565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526123e990611663600f6130c1565b9050612425816396f4df2f60e01b6040518060400160405280600a8152602001691d5c19185d19541bdbdb60b21b815250612ee460201b60201c565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526124579061166360166130c1565b90506124958163d7719f4660e01b6040518060400160405280600c81526020016b63726561746542756e646c6560a01b815250612ee460201b60201c565b60408051808201909152600c81526b75706461746542756e646c6560a01b60208201526124cc9082906308077cd960e01b90612ee4565b60408051808201909152601181527075706461746542756e646c65537461746560781b6020820152612508908290637f0f8c6b60e11b90612ee4565b60408051808201909152600e81526d1a5b98dc99585cd9531bd8dad95960921b602082015261254190829063248a77dd60e01b90612ee4565b60408051808201909152600e81526d191958dc99585cd9531bd8dad95960921b602082015261257a9082906353ebe12960e01b90612ee4565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526125ac90611663602c6130c1565b90506125e88163ea11332260e01b6040518060400160405280600a8152602001696372656174655269736b60b01b815250612ee460201b60201c565b60408051808201909152600a8152697570646174655269736b60b01b602082015261261d90829063555e559160e01b90612ee4565b60408051808201909152600f81526e7570646174655269736b537461746560881b6020820152612657908290633e77a42160e11b90612ee4565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526126899061166360156130c1565b90506126c881634d4a7ae960e01b6040518060400160405280600d81526020016c6372656174655072656d69756d60981b815250612ee460201b60201c565b6040805180820190915260128152717570646174655072656d69756d537461746560701b6020820152612705908290632ae5819d60e01b90612ee4565b60408051808201909152600d81526c496e7374616e636553746f726560981b602082015261273790611663602d6130c1565b905061277481631c7c815560e01b6040518060400160405280600b81526020016a637265617465436c61696d60a81b815250612ee460201b60201c565b60408051808201909152600b81526a757064617465436c61696d60a81b60208201526127aa9082906355f78dd960e11b90612ee4565b60408051808201909152600c81526b18dc99585d1954185e5bdd5d60a21b60208201526127e190829063599f7a0d60e11b90612ee4565b60408051808201909152600c81526b1d5c19185d1954185e5bdd5d60a21b6020820152612818908290630ccd44d760e01b90612ee4565b6040805180820190915260118152707570646174655061796f7574537461746560781b602082015261132a90829063353e5b7560e01b90612ee4565b5f61288e6040518060400160405280600c81526020016b50726f6475637453746f726560a01b815250611663611a186115f160201b60201c565b90506128d181639505838e60e01b6040518060400160405280601181526020017031b932b0ba32a0b8383634b1b0ba34b7b760791b815250612ee460201b60201c565b6040805180820190915260118152703ab83230ba32a0b8383634b1b0ba34b7b760791b602082015261290d9082906331d7a68760e21b90612ee4565b60408051808201909152601681527f7570646174654170706c69636174696f6e5374617465000000000000000000006020820152612955908290630fad0eb160e01b90612ee4565b60408051808201909152600c81526b50726f6475637453746f726560a01b60208201526129869061166360156130c1565b90506129c48163036b1ffb60e01b6040518060400160405280600c81526020016b757064617465506f6c69637960a01b815250612ee460201b60201c565b604080518082019091526011815270757064617465506f6c696379537461746560781b6020820152612a00908290631750d17360e21b90612ee4565b60408051808201909152600c81526b50726f6475637453746f726560a01b6020820152612a3190611663602d6130c1565b905061132a8163297023ef60e01b60405180604001604052806012815260200171757064617465506f6c696379436c61696d7360701b815250612ee460201b60201c565b5f612aac60405180604001604052806009815260200168109d5b991b1954d95d60ba1b815250611663611a186115e760201b60201c565b9050612ae181638de1d14e60e01b6040518060400160405280600381526020016218591960ea1b815250612ee460201b60201c565b6040805180820190915260048152636c6f636b60e01b6020820152612b1090829063b5346af560e01b90612ee4565b604080518082019091526006815265756e6c6f636b60d01b6020820152612b419082906306fa456560e01b90612ee4565b604080518082019091526009815268109d5b991b1954d95d60ba1b6020820152612b6f9061166360156130c1565b9050612bab8163ff4fe25c60e01b6040518060400160405280600a8152602001696c696e6b506f6c69637960b01b815250612ee460201b60201c565b60408051808201909152600c81526b756e6c696e6b506f6c69637960a01b602082015261132a90829063752723bf60e11b90612ee4565b5f612c1760405180604001604052806007815260200166149a5cdad4d95d60ca1b815250611663611a186115ec60201b60201c565b9050612c4c8163d0c9bd7660e01b6040518060400160405280600381526020016218591960ea1b815250612ee460201b60201c565b60408051808201909152600a8152696465616374697661746560b01b6020820152612c81908290631b3c292760e11b90612ee4565b604080518082019091526008815267616374697661746560c01b6020820152612cb4908290630100d3b560e51b90612ee4565b604080518082019091526007815266149a5cdad4d95d60ca1b6020820152612ce09061166360156130c1565b9050612d1c81639ad7533f60e01b6040518060400160405280600a8152602001696c696e6b506f6c69637960b01b815250612ee460201b60201c565b60408051808201909152600c81526b756e6c696e6b506f6c69637960a01b602082015261132a90829063903a264b60e01b90612ee4565b60a051604051632392b61b60e21b81525f9173__$b659da7d8a6d2d32aa6c1e17da23dc2174$__91638e4ad86c91612d919160040190815260200190565b602060405180830381865af4158015612dac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0591906133cc565b5f8073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401612e09919061342c565b602060405180830381865af4158015612e24573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e4891906133e7565b5f818152600c602090815260408083206001600160401b038816845290915281205491925003612ebb575f818152600b602090815260408220805460018101825590835291206004820401805460039092166008026101000a6001600160401b0381810219909316928616029190911790555b5f908152600c602090815260408083206001600160401b03861684529091529020905092915050565b60408051606081019182905263cdc23e6960e01b90915283908073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69612f25866064850161342c565b602060405180830381865af4158015612f40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f6491906133e7565b8152604051636b15ee8b60e01b81526001600160e01b03198616600482015260209091019073__$0904195350e4c23ecb1d51df0a32586dcd$__90636b15ee8b90602401602060405180830381865af4158015612fc3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fe791906137e6565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af415801561303d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130619190613574565b64ffffffffff9081169091528254600181810185555f94855260209485902084516002909302019182559383015193018054604090930151909116640100000000026001600160481b031990921660e09390931c92909217179055505050565b5f6130cd82606361010a565b156130e0576130da610d2d565b92915050565b5f6130ea8361310c565b5f818152600a60205260409020549091506001600160401b03165b9392505050565b604051632b95d28f60e21b815260ff821660048201525f90819073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90630c3258f990829063ae574a3c906024015f60405180830381865af4158015613167573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261318e919081019061371c565b613196612d53565b6040518363ffffffff1660e01b81526004016131b392919061380d565b5f60405180830381865af41580156131cd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526131f4919081019061371c565b60405163cdc23e6960e01b815290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e699061322e90849060040161342c565b602060405180830381865af4158015613249573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061310591906133e7565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061329557607f821691505b6020821081036132b357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561106357805f5260205f20601f840160051c810160208510156132de5750805b601f840160051c820191505b818110156132fd575f81556001016132ea565b5050505050565b81516001600160401b0381111561331d5761331d61326d565b6133318161332b8454613281565b846132b9565b6020601f821160018114613363575f831561334c5750848201515b5f19600385901b1c1916600184901b1784556132fd565b5f84815260208120601f198516915b828110156133925787850151825560209485019460019092019101613372565b50848210156133af57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b60ff8116811461132a575f80fd5b5f602082840312156133dc575f80fd5b8151613105816133be565b5f602082840312156133f7575f80fd5b5051919050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61310560208301846133fe565b5f6020828403121561344e575f80fd5b81518015158114613105575f80fd5b80516001600160401b0381168114613473575f80fd5b919050565b5f60208284031215613488575f80fd5b6131058261345d565b5f81518060208401855e5f93019283525090919050565b5f6134b38284613491565b610a8d60f31b81526002019392505050565b602081525f8083546134d681613281565b806020860152600182165f81146134f4576001811461351057613541565b60ff1983166040870152604082151560051b8701019350613541565b865f5260205f205f5b8381101561353857815488820160400152600190910190602001613519565b87016040019450505b509195945050505050565b634e487b7160e01b5f52602160045260245ffd5b805164ffffffffff81168114613473575f80fd5b5f60208284031215613584575f80fd5b61310582613560565b5f6135a161359b8386613491565b84613491565b949350505050565b5f6001600160401b0382166002600160401b031981016135d757634e487b7160e01b5f52601160045260245ffd5b60010192915050565b6001600160401b03851681525f6004851061360957634e487b7160e01b5f52602160045260245ffd5b84602083015263ffffffff841660408301526080606083015261362f60808301846133fe565b9695505050505050565b60405160c081016001600160401b038111828210171561365b5761365b61326d565b60405290565b604051601f8201601f191681016001600160401b03811182821017156136895761368961326d565b604052919050565b5f60c08284031280156136a2575f80fd5b506136ab613639565b6136b48361345d565b81526020830151600481106136c7575f80fd5b6020820152604083015163ffffffff811681146136e2575f80fd5b60408201526136f360608401613560565b606082015261370460808401613560565b608082015260a0928301519281019290925250919050565b5f6020828403121561372c575f80fd5b81516001600160401b03811115613741575f80fd5b8201601f81018413613751575f80fd5b80516001600160401b0381111561376a5761376a61326d565b61377d601f8201601f1916602001613661565b818152856020838501011115613791575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b606081525f6137c060608301866133fe565b82810360208401526137d281866133fe565b91505060ff83166040830152949350505050565b5f602082840312156137f6575f80fd5b81516001600160e01b031981168114613105575f80fd5b606081525f61381f60608301856133fe565b828103602084015260078152665365727669636560c81b60208201526040810191505060ff831660408301529392505050565b60805160a0516113bb61387a5f395f610ae301525f8181610324015261046701526113bb5ff3fe608060405234801561000f575f80fd5b50600436106101e7575f3560e01c806376b707b711610109578063c5f348441161009e578063da44d6af1161006e578063da44d6af14610508578063e8eba43514610510578063f1d0102714610523578063fef303341461052b575f80fd5b8063c5f3484414610493578063c6a00179146104b7578063d0540443146104ca578063da1b620b146104f5575f80fd5b8063a43e3281116100d9578063a43e328114610453578063b1040cf81461045d578063b68d180914610465578063b79e14941461048b575f80fd5b806376b707b7146103e5578063775f14b1146103ed57806384be8c001461042d5780638c5397b014610440575f80fd5b806352a9674b1161017f57806363fe3b561161014f57806363fe3b561461039e57806368c55b13146103b3578063694ca5d3146103c857806371061398146103d0575f80fd5b806352a9674b1461031f57806354e17da9146103585780635bfa50271461036b5780635c935ce01461038b575f80fd5b80633a591cf8116101ba5780633a591cf8146102cc5780634322699b146102d45780634a34a4de146102e657806350a388ea1461030c575f80fd5b806301ffc9a7146101eb578063131021d91461022c57806313efdd7a146102695780631e4afbbf146102ac575b5f80fd5b6102176101f9366004610e47565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61025c60405180604001604052806011815260200170496e7374616e63654f776e6572526f6c6560781b81525081565b6040516102239190610e9c565b610294610277366004610ebf565b60ff165f908152600560205260409020546001600160a01b031690565b6040516001600160a01b039091168152602001610223565b6102bf6102ba366004610eee565b610533565b6040516102239190610f1c565b61025c6105e0565b6003545b604051908152602001610223565b61025c604051806040016040528060078152602001665365727669636560c81b81525081565b61025c61031a366004610f88565b610670565b6103467f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff9091168152602001610223565b6102d8610366366004610ebf565b61070f565b61037e610379366004610f88565b610877565b6040516102239190610fb7565b610217610399366004611041565b610950565b6103a6610978565b6040516102239190611058565b6103bb6109cd565b604051610223919061108f565b61025c610a3f565b6103d8610a4e565b60405161022391906110c9565b610346610ad4565b6104156103fb366004611041565b5f908152600a60205260409020546001600160401b031690565b6040516001600160401b039091168152602001610223565b61034661043b366004611041565b610b6c565b6103d861044e366004611041565b610ba5565b6104156201adb081565b600f546102d8565b7f0000000000000000000000000000000000000000000000000000000000000000610346565b6102d8602881565b61025c604051806040016040528060058152602001645f526f6c6560d81b81525081565b6102176104c5366004610f88565b610c35565b61025c6040518060400160405280600c81526020016b496e7374616e6365526f6c6560a01b81525081565b6102d8610503366004611173565b610c72565b6102d8600381565b61041561051e366004610ebf565b610cea565b61025c610d27565b61025c610d36565b5f828152600c602090815260408083206001600160401b03851684528252808320805482518185028101850190935280835260609492939192909184015b828210156105d4575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff16918301919091529083529092019101610571565b50505050905092915050565b6060600e80546105ef906111ec565b80601f016020809104026020016040519081016040528092919081815260200182805461061b906111ec565b80156106665780601f1061063d57610100808354040283529160200191610666565b820191905f5260205f20905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b6001600160401b0381165f9081526007602052604090819020600101549051631623433d60e31b815260609173__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e8916106c89160040190815260200190565b5f60405180830381865af41580156106e2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107099190810190611224565b92915050565b604051632b95d28f60e21b815260ff821660048201525f90819073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90630c3258f990829063ae574a3c906024015f60405180830381865af415801561076a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107919190810190611224565b610799610ad4565b6040518363ffffffff1660e01b81526004016107b6929190611298565b5f60405180830381865af41580156107d0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107f79190810190611224565b60405163cdc23e6960e01b815290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610831908490600401610e9c565b602060405180830381865af415801561084c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087091906112dd565b9392505050565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600782529185902085519384019095528454918216835292939192830190600160401b900460ff1660038111156108ef576108ef610fa3565b600381111561090057610900610fa3565b8152815463ffffffff6901000000000000000000820416602083015264ffffffffff600160681b820481166040840152600160901b90910416606082015260019091015460809091015292915050565b5f61095d82600354610d52565b806107095750505f9081526009602052604090205460ff1690565b6060600880548060200260200160405190810160405280929190818152602001828054801561066657602002820191905f5260205f20905b8154815260200190600101908083116109b0575050505050905090565b6060600480548060200260200160405190810160405280929190818152602001828054801561066657602002820191905f5260205f20905f905b825461010083900a900460ff16815260206001928301818104948501949093039092029101808411610a075790505050505050905090565b6060600180546105ef906111ec565b6060600680548060200260200160405190810160405280929190818152602001828054801561066657602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b031681526020019060080190602082600701049283019260010382029150808411610a885790505050505050905090565b604051632392b61b60e21b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610b43573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b6791906112f4565b905090565b5f60048281548110610b8057610b8061130f565b905f5260205f2090602091828204019190069054906101000a900460ff169050919050565b5f818152600b6020908152604091829020805483518184028101840190945280845260609392830182828015610c2957602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b031681526020019060080190602082600701049283019260010382029150808411610be65790505b50505050509050919050565b5f806001600160401b0383165f90815260076020526040902054600160401b900460ff166003811115610c6a57610c6a610fa3565b141592915050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610cab908590600401610e9c565b602060405180830381865af4158015610cc6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061070991906112dd565b5f60ff8216606303610cfe57610709610dcd565b5f610d088361070f565b5f818152600a60205260409020549091506001600160401b0316610870565b6060600280546105ef906111ec565b60405180606001604052806028815260200161135e6028913981565b6040516303447c0360e41b815260048101839052602481018290525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__90633447c03090604401602060405180830381865af4158015610da9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108709190611323565b6040516368aebf7b60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af4158015610e23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b679190611342565b5f60208284031215610e57575f80fd5b81356001600160e01b031981168114610870575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6108706020830184610e6e565b60ff81168114610ebc575f80fd5b50565b5f60208284031215610ecf575f80fd5b813561087081610eae565b6001600160401b0381168114610ebc575f80fd5b5f8060408385031215610eff575f80fd5b823591506020830135610f1181610eda565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610f7d578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff169185019190915290930192606090920191600101610f35565b509095945050505050565b5f60208284031215610f98575f80fd5b813561087081610eda565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c082019060048110610fea57634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff60408401511660408301526060830151611019606084018264ffffffffff169052565b506080830151611032608084018264ffffffffff169052565b5060a092830151919092015290565b5f60208284031215611051575f80fd5b5035919050565b602080825282518282018190525f918401906040840190835b81811015610f7d578351835260209384019390920191600101611071565b602080825282518282018190525f918401906040840190835b81811015610f7d57835160ff168352602093840193909201916001016110a8565b602080825282518282018190525f918401906040840190835b81811015610f7d5783516001600160401b03168352602093840193909201916001016110e2565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b038111828210171561114557611145611109565b604052919050565b5f6001600160401b0382111561116557611165611109565b50601f01601f191660200190565b5f60208284031215611183575f80fd5b81356001600160401b03811115611198575f80fd5b8201601f810184136111a8575f80fd5b80356111bb6111b68261114d565b61111d565b8181528560208385010111156111cf575f80fd5b816020840160208301375f91810160200191909152949350505050565b600181811c9082168061120057607f821691505b60208210810361121e57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215611234575f80fd5b81516001600160401b03811115611249575f80fd5b8201601f81018413611259575f80fd5b80516112676111b68261114d565b81815285602083850101111561127b575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b606081525f6112aa6060830185610e6e565b828103602084015260078152665365727669636560c81b60208201526040810191505060ff831660408301529392505050565b5f602082840312156112ed575f80fd5b5051919050565b5f60208284031215611304575f80fd5b815161087081610eae565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611333575f80fd5b81518015158114610870575f80fd5b5f60208284031215611352575f80fd5b815161087081610eda56fe31613161316131613161316131613161316131613161316131613161316131613161316131613161a26469706673582212203c326e9ac24f6b306180939e806465114924516b352d4d7f29636e3a39fe0f1964736f6c634300081a003331613161316131613161316131613161316131613161316131613161316131613161316131613161",
616
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101e7575f3560e01c806376b707b711610109578063c5f348441161009e578063da44d6af1161006e578063da44d6af14610508578063e8eba43514610510578063f1d0102714610523578063fef303341461052b575f80fd5b8063c5f3484414610493578063c6a00179146104b7578063d0540443146104ca578063da1b620b146104f5575f80fd5b8063a43e3281116100d9578063a43e328114610453578063b1040cf81461045d578063b68d180914610465578063b79e14941461048b575f80fd5b806376b707b7146103e5578063775f14b1146103ed57806384be8c001461042d5780638c5397b014610440575f80fd5b806352a9674b1161017f57806363fe3b561161014f57806363fe3b561461039e57806368c55b13146103b3578063694ca5d3146103c857806371061398146103d0575f80fd5b806352a9674b1461031f57806354e17da9146103585780635bfa50271461036b5780635c935ce01461038b575f80fd5b80633a591cf8116101ba5780633a591cf8146102cc5780634322699b146102d45780634a34a4de146102e657806350a388ea1461030c575f80fd5b806301ffc9a7146101eb578063131021d91461022c57806313efdd7a146102695780631e4afbbf146102ac575b5f80fd5b6102176101f9366004610e47565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61025c60405180604001604052806011815260200170496e7374616e63654f776e6572526f6c6560781b81525081565b6040516102239190610e9c565b610294610277366004610ebf565b60ff165f908152600560205260409020546001600160a01b031690565b6040516001600160a01b039091168152602001610223565b6102bf6102ba366004610eee565b610533565b6040516102239190610f1c565b61025c6105e0565b6003545b604051908152602001610223565b61025c604051806040016040528060078152602001665365727669636560c81b81525081565b61025c61031a366004610f88565b610670565b6103467f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff9091168152602001610223565b6102d8610366366004610ebf565b61070f565b61037e610379366004610f88565b610877565b6040516102239190610fb7565b610217610399366004611041565b610950565b6103a6610978565b6040516102239190611058565b6103bb6109cd565b604051610223919061108f565b61025c610a3f565b6103d8610a4e565b60405161022391906110c9565b610346610ad4565b6104156103fb366004611041565b5f908152600a60205260409020546001600160401b031690565b6040516001600160401b039091168152602001610223565b61034661043b366004611041565b610b6c565b6103d861044e366004611041565b610ba5565b6104156201adb081565b600f546102d8565b7f0000000000000000000000000000000000000000000000000000000000000000610346565b6102d8602881565b61025c604051806040016040528060058152602001645f526f6c6560d81b81525081565b6102176104c5366004610f88565b610c35565b61025c6040518060400160405280600c81526020016b496e7374616e6365526f6c6560a01b81525081565b6102d8610503366004611173565b610c72565b6102d8600381565b61041561051e366004610ebf565b610cea565b61025c610d27565b61025c610d36565b5f828152600c602090815260408083206001600160401b03851684528252808320805482518185028101850190935280835260609492939192909184015b828210156105d4575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff16918301919091529083529092019101610571565b50505050905092915050565b6060600e80546105ef906111ec565b80601f016020809104026020016040519081016040528092919081815260200182805461061b906111ec565b80156106665780601f1061063d57610100808354040283529160200191610666565b820191905f5260205f20905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b6001600160401b0381165f9081526007602052604090819020600101549051631623433d60e31b815260609173__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e8916106c89160040190815260200190565b5f60405180830381865af41580156106e2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107099190810190611224565b92915050565b604051632b95d28f60e21b815260ff821660048201525f90819073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90630c3258f990829063ae574a3c906024015f60405180830381865af415801561076a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107919190810190611224565b610799610ad4565b6040518363ffffffff1660e01b81526004016107b6929190611298565b5f60405180830381865af41580156107d0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107f79190810190611224565b60405163cdc23e6960e01b815290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610831908490600401610e9c565b602060405180830381865af415801561084c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087091906112dd565b9392505050565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600782529185902085519384019095528454918216835292939192830190600160401b900460ff1660038111156108ef576108ef610fa3565b600381111561090057610900610fa3565b8152815463ffffffff6901000000000000000000820416602083015264ffffffffff600160681b820481166040840152600160901b90910416606082015260019091015460809091015292915050565b5f61095d82600354610d52565b806107095750505f9081526009602052604090205460ff1690565b6060600880548060200260200160405190810160405280929190818152602001828054801561066657602002820191905f5260205f20905b8154815260200190600101908083116109b0575050505050905090565b6060600480548060200260200160405190810160405280929190818152602001828054801561066657602002820191905f5260205f20905f905b825461010083900a900460ff16815260206001928301818104948501949093039092029101808411610a075790505050505050905090565b6060600180546105ef906111ec565b6060600680548060200260200160405190810160405280929190818152602001828054801561066657602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b031681526020019060080190602082600701049283019260010382029150808411610a885790505050505050905090565b604051632392b61b60e21b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610b43573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b6791906112f4565b905090565b5f60048281548110610b8057610b8061130f565b905f5260205f2090602091828204019190069054906101000a900460ff169050919050565b5f818152600b6020908152604091829020805483518184028101840190945280845260609392830182828015610c2957602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b031681526020019060080190602082600701049283019260010382029150808411610be65790505b50505050509050919050565b5f806001600160401b0383165f90815260076020526040902054600160401b900460ff166003811115610c6a57610c6a610fa3565b141592915050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610cab908590600401610e9c565b602060405180830381865af4158015610cc6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061070991906112dd565b5f60ff8216606303610cfe57610709610dcd565b5f610d088361070f565b5f818152600a60205260409020549091506001600160401b0316610870565b6060600280546105ef906111ec565b60405180606001604052806028815260200161135e6028913981565b6040516303447c0360e41b815260048101839052602481018290525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__90633447c03090604401602060405180830381865af4158015610da9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108709190611323565b6040516368aebf7b60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af4158015610e23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b679190611342565b5f60208284031215610e57575f80fd5b81356001600160e01b031981168114610870575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6108706020830184610e6e565b60ff81168114610ebc575f80fd5b50565b5f60208284031215610ecf575f80fd5b813561087081610eae565b6001600160401b0381168114610ebc575f80fd5b5f8060408385031215610eff575f80fd5b823591506020830135610f1181610eda565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610f7d578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff169185019190915290930192606090920191600101610f35565b509095945050505050565b5f60208284031215610f98575f80fd5b813561087081610eda565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c082019060048110610fea57634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff60408401511660408301526060830151611019606084018264ffffffffff169052565b506080830151611032608084018264ffffffffff169052565b5060a092830151919092015290565b5f60208284031215611051575f80fd5b5035919050565b602080825282518282018190525f918401906040840190835b81811015610f7d578351835260209384019390920191600101611071565b602080825282518282018190525f918401906040840190835b81811015610f7d57835160ff168352602093840193909201916001016110a8565b602080825282518282018190525f918401906040840190835b81811015610f7d5783516001600160401b03168352602093840193909201916001016110e2565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b038111828210171561114557611145611109565b604052919050565b5f6001600160401b0382111561116557611165611109565b50601f01601f191660200190565b5f60208284031215611183575f80fd5b81356001600160401b03811115611198575f80fd5b8201601f810184136111a8575f80fd5b80356111bb6111b68261114d565b61111d565b8181528560208385010111156111cf575f80fd5b816020840160208301375f91810160200191909152949350505050565b600181811c9082168061120057607f821691505b60208210810361121e57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215611234575f80fd5b81516001600160401b03811115611249575f80fd5b8201601f81018413611259575f80fd5b80516112676111b68261114d565b81815285602083850101111561127b575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b606081525f6112aa6060830185610e6e565b828103602084015260078152665365727669636560c81b60208201526040810191505060ff831660408301529392505050565b5f602082840312156112ed575f80fd5b5051919050565b5f60208284031215611304575f80fd5b815161087081610eae565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611333575f80fd5b81518015158114610870575f80fd5b5f60208284031215611352575f80fd5b815161087081610eda56fe31613161316131613161316131613161316131613161316131613161316131613161316131613161a26469706673582212203c326e9ac24f6b306180939e806465114924516b352d4d7f29636e3a39fe0f1964736f6c634300081a0033",
421
617
  "linkReferences": {
618
+ "contracts/authorization/AccessAdminLib.sol": {
619
+ "AccessAdminLib": [
620
+ {
621
+ "length": 20,
622
+ "start": 4343
623
+ }
624
+ ]
625
+ },
422
626
  "contracts/type/ObjectType.sol": {
423
627
  "ObjectTypeLib": [
424
628
  {
425
629
  "length": 20,
426
- "start": 1244
630
+ "start": 161
631
+ },
632
+ {
633
+ "length": 20,
634
+ "start": 1321
635
+ },
636
+ {
637
+ "length": 20,
638
+ "start": 5136
427
639
  },
428
640
  {
429
641
  "length": 20,
430
- "start": 1745
642
+ "start": 12584
643
+ },
644
+ {
645
+ "length": 20,
646
+ "start": 16293
431
647
  }
432
648
  ]
433
649
  },
@@ -435,27 +651,39 @@
435
651
  "RoleIdLib": [
436
652
  {
437
653
  "length": 20,
438
- "start": 505
654
+ "start": 1469
439
655
  },
440
656
  {
441
657
  "length": 20,
442
- "start": 827
658
+ "start": 2472
443
659
  },
444
660
  {
445
661
  "length": 20,
446
- "start": 1016
662
+ "start": 3403
447
663
  },
448
664
  {
449
665
  "length": 20,
450
- "start": 5873
666
+ "start": 3734
451
667
  },
452
668
  {
453
669
  "length": 20,
454
- "start": 6670
670
+ "start": 3925
455
671
  },
456
672
  {
457
673
  "length": 20,
458
- "start": 10987
674
+ "start": 4782
675
+ },
676
+ {
677
+ "length": 20,
678
+ "start": 5397
679
+ },
680
+ {
681
+ "length": 20,
682
+ "start": 5646
683
+ },
684
+ {
685
+ "length": 20,
686
+ "start": 18021
459
687
  }
460
688
  ]
461
689
  },
@@ -463,7 +691,7 @@
463
691
  "SelectorLib": [
464
692
  {
465
693
  "length": 20,
466
- "start": 6336
694
+ "start": 12171
467
695
  }
468
696
  ]
469
697
  },
@@ -471,27 +699,47 @@
471
699
  "StrLib": [
472
700
  {
473
701
  "length": 20,
474
- "start": 621
702
+ "start": 999
475
703
  },
476
704
  {
477
705
  "length": 20,
478
- "start": 1583
706
+ "start": 2118
479
707
  },
480
708
  {
481
709
  "length": 20,
482
- "start": 5955
710
+ "start": 2920
483
711
  },
484
712
  {
485
713
  "length": 20,
486
- "start": 6197
714
+ "start": 3528
487
715
  },
488
716
  {
489
717
  "length": 20,
490
- "start": 6874
718
+ "start": 11732
491
719
  },
492
720
  {
493
721
  "length": 20,
494
- "start": 10875
722
+ "start": 12032
723
+ },
724
+ {
725
+ "length": 20,
726
+ "start": 12806
727
+ },
728
+ {
729
+ "length": 20,
730
+ "start": 16152
731
+ },
732
+ {
733
+ "length": 20,
734
+ "start": 16515
735
+ },
736
+ {
737
+ "length": 20,
738
+ "start": 17661
739
+ },
740
+ {
741
+ "length": 20,
742
+ "start": 17899
495
743
  }
496
744
  ]
497
745
  },
@@ -499,15 +747,15 @@
499
747
  "TimestampLib": [
500
748
  {
501
749
  "length": 20,
502
- "start": 6445
750
+ "start": 2682
503
751
  },
504
752
  {
505
753
  "length": 20,
506
- "start": 6997
754
+ "start": 2801
507
755
  },
508
756
  {
509
757
  "length": 20,
510
- "start": 7116
758
+ "start": 12280
511
759
  }
512
760
  ]
513
761
  },
@@ -515,29 +763,45 @@
515
763
  "VersionPartLib": [
516
764
  {
517
765
  "length": 20,
518
- "start": 1379
766
+ "start": 309
767
+ },
768
+ {
769
+ "length": 20,
770
+ "start": 439
771
+ },
772
+ {
773
+ "length": 20,
774
+ "start": 544
519
775
  },
520
776
  {
521
777
  "length": 20,
522
- "start": 1880
778
+ "start": 674
523
779
  },
524
780
  {
525
781
  "length": 20,
526
- "start": 5773
782
+ "start": 11623
527
783
  },
528
784
  {
529
785
  "length": 20,
530
- "start": 10561
786
+ "start": 17285
531
787
  }
532
788
  ]
533
789
  }
534
790
  },
535
791
  "deployedLinkReferences": {
792
+ "contracts/type/ObjectType.sol": {
793
+ "ObjectTypeLib": [
794
+ {
795
+ "length": 20,
796
+ "start": 1835
797
+ }
798
+ ]
799
+ },
536
800
  "contracts/type/RoleId.sol": {
537
801
  "RoleIdLib": [
538
802
  {
539
803
  "length": 20,
540
- "start": 2524
804
+ "start": 3563
541
805
  }
542
806
  ]
543
807
  },
@@ -545,7 +809,19 @@
545
809
  "StrLib": [
546
810
  {
547
811
  "length": 20,
548
- "start": 2412
812
+ "start": 1694
813
+ },
814
+ {
815
+ "length": 20,
816
+ "start": 2057
817
+ },
818
+ {
819
+ "length": 20,
820
+ "start": 3203
821
+ },
822
+ {
823
+ "length": 20,
824
+ "start": 3441
549
825
  }
550
826
  ]
551
827
  },
@@ -553,7 +829,7 @@
553
829
  "VersionPartLib": [
554
830
  {
555
831
  "length": 20,
556
- "start": 2098
832
+ "start": 2827
557
833
  }
558
834
  ]
559
835
  }